﻿:root {
  --bg: #f5fbff;
  --bg-strong: #dff3fb;
  --surface: rgba(255, 255, 255, 0.72);
  --line: rgba(14, 76, 108, 0.12);
  --line-strong: rgba(14, 76, 108, 0.2);
  --text: #123248;
  --muted: #55758c;
  --heading: #0c2437;
  --navy: #0f3550;
  --teal: #1587a5;
  --teal-strong: #0b728d;
  --sky: #7cd8f1;
  --accent: #ff9b7d;
  --shadow-lg: 0 30px 80px rgba(15, 53, 80, 0.18);
  --shadow-md: 0 18px 38px rgba(15, 53, 80, 0.12);
  --radius-lg: 30px;
  --radius-md: 22px;
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(124, 216, 241, 0.7), transparent 30%),
    radial-gradient(circle at 85% 10%, rgba(21, 135, 165, 0.18), transparent 20%),
    linear-gradient(180deg, #f0fbff 0%, #f7fcff 42%, #eef8fc 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 88px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(245, 251, 255, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.header-row {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 86px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--heading);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand small {
  margin-top: 2px;
  color: var(--muted);
}

.brand-logo {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 14px 28px rgba(21, 135, 165, 0.18);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-nav a {
  padding: 12px 16px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 600;
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--heading);
  background: rgba(255, 255, 255, 0.72);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.74);
  padding: 0 12px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--navy);
  border-radius: 999px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--teal) 0%, #4abfdd 100%);
  color: white;
  font-weight: 700;
  box-shadow: 0 18px 30px rgba(21, 135, 165, 0.22);
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 40px rgba(21, 135, 165, 0.28);
}

.button-small {
  min-height: 44px;
  padding: 0 18px;
}

.button-wide {
  width: 100%;
}

.button-ghost {
  background: rgba(255, 255, 255, 0.76);
  color: var(--navy);
  box-shadow: none;
  border: 1px solid rgba(15, 53, 80, 0.12);
}

.hero-section {
  position: relative;
  min-height: min(100vh, 920px);
  padding: 84px 0 88px;
  overflow: hidden;
}

.hero-video,
.hero-backdrop,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-backdrop {
  background:
    radial-gradient(circle at 20% 20%, rgba(146, 225, 246, 0.45), transparent 28%),
    radial-gradient(circle at 75% 12%, rgba(10, 114, 141, 0.22), transparent 18%),
    radial-gradient(circle at 80% 70%, rgba(124, 216, 241, 0.2), transparent 24%);
}

.hero-shade {
  background: linear-gradient(120deg, rgba(9, 29, 46, 0.72) 0%, rgba(12, 56, 82, 0.42) 42%, rgba(20, 119, 145, 0.22) 100%);
}

.hero-grid,
.about-grid,
.dual-grid,
.contact-grid,
.article-layout,
.pain-grid,
.steps-grid,
.blog-grid,
.form-grid {
  display: grid;
  gap: 24px;
}

.hero-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 42px;
}

.hero-copy h1,
.page-hero h1,
.article-hero h1,
.section-heading h2,
.feature-card h2,
.content-card h2,
.info-card h2,
.contact-card h2,
.sidebar-card h2,
.master-copy h2 {
  margin: 0;
  color: var(--heading);
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 0.95;
}

.hero-copy h1 {
  color: #ffffff;
  font-size: clamp(2.6rem, 4.8vw, 4.9rem);
  max-width: 12ch;
}

.lead,
.page-hero p,
.section-heading p,
.feature-card p,
.content-card p,
.step-card p,
.pain-card p,
.info-card p,
.contact-card p,
.booking-form p,
.article-body p,
.article-sidebar p,
.blog-card p,
.master-copy p {
  color: var(--muted);
  line-height: 1.72;
}

.hero-copy .lead {
  max-width: 60ch;
  margin: 22px 0 0;
  font-size: 1.04rem;
  color: rgba(255, 255, 255, 0.9);
}

.eyebrow {
  margin: 0 0 18px;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-strong);
}

.hero-eyebrow {
  color: rgba(206, 244, 255, 0.94);
}

.hero-actions,
.hero-meta,
.stats-row,
.footer-row,
.hero-panel,
.centered,
.blog-card-meta,
.article-meta,
.contact-link,
.sidebar-link,
.master-tags {
  display: flex;
}

.hero-actions,
.hero-meta,
.master-tags {
  flex-wrap: wrap;
  gap: 14px;
}

.hero-actions {
  margin-top: 32px;
}

.hero-meta {
  margin-top: 30px;
}

.glass-chip,
.feature-card,
.pain-card,
.step-card,
.info-card,
.content-card,
.contact-card,
.booking-form,
.blog-card,
.sidebar-card,
.article-body,
.master-card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-md);
}

.glass-chip {
  min-width: 210px;
  padding: 16px 20px;
  border-radius: 22px;
  color: white;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
}

.glass-chip strong,
.glass-chip .chip-label {
  color: white;
}

.chip-label,
.card-overline {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
}

.hero-panel {
  justify-content: flex-end;
}

.feature-card {
  width: min(100%, 420px);
  padding: 32px;
  border-radius: var(--radius-lg);
  position: relative;
}

.floating-card::before,
.floating-card::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(10px);
  z-index: -1;
}

.floating-card::before {
  width: 160px;
  height: 160px;
  top: -18px;
  right: -18px;
  background: rgba(124, 216, 241, 0.28);
}

.floating-card::after {
  width: 120px;
  height: 120px;
  bottom: -24px;
  left: -16px;
  background: rgba(255, 155, 125, 0.14);
}

.feature-card h2,
.content-card h2,
.info-card h2,
.contact-card h2,
.sidebar-card h2,
.master-copy h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 18px;
}

.feature-list,
.bullet-list {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li,
.bullet-list li {
  position: relative;
  padding-left: 26px;
  color: var(--text);
  line-height: 1.7;
}

.feature-list li + li,
.bullet-list li + li {
  margin-top: 12px;
}

.feature-list li::before,
.bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal) 0%, var(--sky) 100%);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-heading h2,
.page-hero h1,
.article-hero h1 {
  font-size: clamp(2.6rem, 5vw, 4.8rem);
}

.pain-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.pain-card,
.step-card,
.info-card {
  padding: 28px;
  border-radius: var(--radius-md);
}

.pain-card h3,
.step-card h3,
.blog-card h3,
.article-body h2,
.article-body h3 {
  margin: 0 0 12px;
  color: var(--heading);
}

.pain-card h3,
.step-card h3,
.blog-card h3 {
  font-size: 1.2rem;
}

.accent-section {
  position: relative;
}

.accent-section::before {
  content: "";
  position: absolute;
  inset: 60px 0;
  background: linear-gradient(180deg, rgba(223, 243, 251, 0.78), rgba(245, 251, 255, 0));
  border-radius: 48px;
}

.about-grid {
  position: relative;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
}

.image-stack {
  position: relative;
  min-height: 620px;
}

.image-card {
  position: absolute;
  border-radius: 32px;
  box-shadow: var(--shadow-lg);
  background-position: center;
  background-size: cover;
}

.image-card-large {
  inset: 0 80px 80px 0;
  background-image:
    linear-gradient(180deg, rgba(15, 53, 80, 0.1), rgba(15, 53, 80, 0.32)),
    url("https://images.unsplash.com/photo-1519046904884-53103b34b206?auto=format&fit=crop&w=1200&q=80");
}

.image-card-small {
  width: 280px;
  height: 320px;
  right: 0;
  bottom: 0;
  border: 10px solid rgba(255, 255, 255, 0.7);
  background-image:
    linear-gradient(180deg, rgba(15, 53, 80, 0.05), rgba(15, 53, 80, 0.2)),
    url("https://images.unsplash.com/photo-1500375592092-40eb2168fd21?auto=format&fit=crop&w=900&q=80");
}

.content-card {
  padding: 36px;
  border-radius: 32px;
}

.stats-row {
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 24px;
}

.stats-row div {
  min-width: 160px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
}

.stats-row strong {
  display: block;
  color: var(--navy);
  font-size: 1.5rem;
}

.stats-row span {
  color: var(--muted);
  line-height: 1.5;
}

.steps-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.step-card span {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(21, 135, 165, 0.14), rgba(124, 216, 241, 0.4));
  color: var(--teal-strong);
  font-weight: 800;
  margin-bottom: 16px;
}

.section-photo-break {
  padding-top: 0;
  padding-bottom: 24px;
}

.wide-photo {
  margin: 0;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.wide-photo img {
  width: 100%;
  height: min(52vw, 620px);
  object-fit: cover;
}

.master-section {
  padding-top: 24px;
}

.master-card {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 34px;
  align-items: center;
  padding: 34px 46px;
  border-radius: 34px;
  background: rgba(243, 247, 250, 0.92);
}

.master-photo-wrap {
  display: flex;
  justify-content: center;
}

.master-photo {
  width: 196px;
  height: 196px;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid #1392cd;
}

.master-copy h2 {
  margin-bottom: 8px;
  color: #0e4d96;
}

.master-subtitle {
  margin: 0 0 20px;
  color: #0e84cd;
  font-size: 1.45rem;
  font-weight: 700;
}

.master-description {
  max-width: 48rem;
  font-size: 1.04rem;
}

.master-note {
  margin-top: 18px;
  font-weight: 600;
  color: #3e6ea5;
}

.master-tags {
  margin-top: 22px;
}

.master-tag {
  padding: 12px 18px;
  border-radius: 999px;
  background: #d5f0f8;
  color: #0e5e9b;
  font-weight: 600;
}

.dual-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.blog-grid,
.full-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.blog-card {
  overflow: hidden;
  border-radius: 28px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.blog-card-image {
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: center;
}

.blog-card-content {
  padding: 24px;
}

.blog-card-meta,
.article-meta {
  flex-wrap: wrap;
  gap: 10px 16px;
  color: var(--muted);
  font-size: 0.92rem;
}

.centered {
  justify-content: center;
  margin-top: 28px;
}

.contact-grid {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
}

.contact-card,
.booking-form,
.article-body,
.sidebar-card {
  padding: 34px;
  border-radius: 30px;
}

.contact-items,
.sidebar-articles {
  display: grid;
  gap: 14px;
}

.contact-items {
  margin-top: 24px;
}

.contact-link,
.sidebar-link {
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
}

.contact-link span,
.sidebar-link span {
  color: var(--muted);
}

.form-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 20px;
}

.form-grid label {
  display: grid;
  gap: 10px;
}

.form-grid span {
  color: var(--heading);
  font-weight: 700;
}

.form-grid input,
.form-grid textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.84);
  padding: 15px 18px;
  color: var(--text);
}

.form-grid input:focus,
.form-grid textarea:focus {
  outline: 2px solid rgba(21, 135, 165, 0.24);
  border-color: rgba(21, 135, 165, 0.34);
}

.full-width {
  grid-column: 1 / -1;
}

.hidden-field {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.form-status {
  min-height: 24px;
  margin: 16px 0 0;
}

.form-status.success {
  color: #13795b;
}

.form-status.error {
  color: #b33f46;
}

.page-hero,
.article-hero {
  padding: 80px 0 28px;
}

.page-hero-copy,
.article-hero-content {
  max-width: 860px;
}

.article-hero {
  position: relative;
}

.article-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(223, 243, 251, 0.7), transparent 95%),
    radial-gradient(circle at 80% 12%, rgba(124, 216, 241, 0.38), transparent 22%);
}

.article-layout {
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: start;
}

.article-body {
  line-height: 1.8;
}

.article-body h2,
.article-body h3 {
  font-family: "Cormorant Garamond", serif;
  color: var(--heading);
}

.article-body h2 {
  font-size: 2.4rem;
  margin-top: 36px;
}

.article-body h3 {
  font-size: 1.7rem;
  margin-top: 28px;
}

.article-body ul {
  padding-left: 22px;
}

.back-link {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--teal-strong);
  font-weight: 700;
}

.sidebar-card + .sidebar-card {
  margin-top: 20px;
}

.mini-article {
  display: block;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
}

.mini-article strong {
  display: block;
  margin-bottom: 6px;
}

.mini-article span {
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer {
  padding: 24px 0 40px;
}

.footer-row {
  justify-content: space-between;
  gap: 24px;
  padding: 26px 32px;
  border-radius: 28px;
  background: rgba(13, 41, 60, 0.92);
  color: rgba(255, 255, 255, 0.78);
}

.footer-row strong {
  display: block;
  color: white;
  margin-bottom: 6px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .hero-grid,
  .about-grid,
  .contact-grid,
  .article-layout,
  .master-card {
    grid-template-columns: 1fr;
  }

  .pain-grid,
  .steps-grid,
  .blog-grid,
  .full-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-panel {
    justify-content: flex-start;
  }

  .image-stack {
    min-height: 440px;
  }

  .master-card {
    text-align: center;
  }

  .master-tags {
    justify-content: center;
  }
}

@media (max-width: 820px) {
  .container {
    width: min(var(--container), calc(100% - 28px));
  }

  .section {
    padding: 72px 0;
  }

  .menu-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 12px);
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-md);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    text-align: center;
  }

  .pain-grid,
  .steps-grid,
  .dual-grid,
  .blog-grid,
  .full-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .image-card-large {
    inset: 0 50px 60px 0;
  }

  .image-card-small {
    width: 180px;
    height: 210px;
  }

  .footer-row,
  .contact-link,
  .sidebar-link {
    flex-direction: column;
  }

  .master-card {
    padding: 28px;
  }
}

@media (max-width: 560px) {
  .hero-section {
    min-height: auto;
    padding-top: 42px;
  }

  .hero-copy h1 {
    font-size: 2.8rem;
  }

  .feature-card,
  .content-card,
  .contact-card,
  .booking-form,
  .sidebar-card,
  .article-body,
  .master-card {
    padding: 24px;
    border-radius: 24px;
  }

  .stats-row div,
  .glass-chip {
    width: 100%;
  }

  .image-stack {
    min-height: 340px;
  }

  .image-card-large {
    inset: 0 32px 50px 0;
  }

  .image-card-small {
    width: 140px;
    height: 165px;
  }

  .brand-logo {
    width: 48px;
    height: 48px;
  }

  .master-photo {
    width: 164px;
    height: 164px;
  }

  .master-subtitle {
    font-size: 1.16rem;
  }

  .wide-photo img {
    height: 280px;
  }
}
