:root {
  --bg: #f7f4ef;
  --bg-soft: #fcfaf7;
  --surface: #ffffff;
  --surface-2: #f2eee8;
  --text: #353847;
  --text-soft: #68707c;
  --heading: #39404d;
  --primary: #6f9a93;
  --primary-dark: #587d77;
  --primary-light: #dfece8;
  --accent: #d8bfa3;
  --line: rgba(53, 56, 71, 0.10);
  --shadow: 0 14px 34px rgba(42, 46, 57, 0.08);
  --radius: 22px;
  --radius-sm: 14px;
  --container: 1180px;
  --header-h: 84px;
  --transition: 0.25s ease;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 18px);
}

body {
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.section {
  padding: 88px 0;
}

.section-sm {
  padding: 68px 0;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary-dark);
}

.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  line-height: 1.02;
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 16px;
}

.section-lead {
  max-width: 760px;
  color: var(--text-soft);
  font-size: 1.05rem;
}

.center {
  text-align: center;
}

.center .section-lead {
  margin-inline: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.98rem;
  font-weight: 600;
  white-space: nowrap;
  transition: var(--transition);
  cursor: pointer;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 10px 22px rgba(111, 154, 147, 0.22);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: var(--primary-dark);
  border-color: rgba(111, 154, 147, 0.4);
}

.btn-secondary:hover {
  background: rgba(111, 154, 147, 0.07);
  transform: translateY(-1px);
}

.btn-light {
  background: rgba(255,255,255,0.9);
  color: var(--primary-dark);
  border-color: rgba(255,255,255,0.5);
}

.btn-light:hover {
  background: #fff;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 10px 15px;
  border-radius: 999px;
  font-size: 0.93rem;
  font-weight: 600;
  background: rgba(111, 154, 147, 0.10);
  color: var(--primary-dark);
  border: 1px solid rgba(111, 154, 147, 0.12);
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height: var(--header-h);
  background: rgba(252, 250, 247, 0.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(53, 56, 71, 0.06);
}

.header-inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--heading);
  flex-shrink: 0;
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav a {
  color: var(--text);
  font-size: 0.96rem;
  transition: var(--transition);
}

.nav a:hover {
  color: var(--primary-dark);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.menu-toggle {
  display: none;
  border: none;
  background: none;
  color: var(--heading);
  font-size: 1.8rem;
  cursor: pointer;
}

.mobile-nav {
  display: none;
  padding-bottom: 18px;
}

.mobile-nav ul {
  display: grid;
  gap: 10px;
  list-style: none;
}

.mobile-nav a {
  display: block;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(111, 154, 147, 0.07);
  color: var(--text);
  font-weight: 500;
}

.site-header.is-open .mobile-nav {
  display: block;
}

/* HERO */
.hero {
  position: relative;
  overflow: hidden;
  padding: 84px 0 76px;
  background:
    radial-gradient(circle at top right, rgba(223,236,232,0.95), transparent 28%),
    linear-gradient(180deg, #fcfaf7 0%, #f5f0e9 100%);
}

.hero::after {
  content: "";
  position: absolute;
  left: -8%;
  right: -8%;
  bottom: -90px;
  height: 180px;
  background: linear-gradient(90deg, rgba(216,191,163,0.18), rgba(111,154,147,0.16));
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  transform: rotate(-1.5deg);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 54px;
  align-items: center;
}

.hero-copy h1 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: clamp(3rem, 7vw, 5.2rem);
  line-height: 0.94;
  color: var(--heading);
  margin-bottom: 16px;
}

.hero-copy h2 {
  color: var(--primary-dark);
  font-weight: 600;
  font-size: clamp(1.12rem, 1.8vw, 1.4rem);
  margin-bottom: 22px;
}

.hero-copy p {
  color: var(--text-soft);
  font-size: 1.08rem;
  max-width: 720px;
  margin-bottom: 26px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-card {
  position: relative;
  background: rgba(255,255,255,0.66);
  border-radius: 34px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,0.55);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.hero-media {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  min-height: 560px;
  background: linear-gradient(180deg, #f8f5f0 0%, #ecf3f0 100%);
}

.hero-photo,
.about-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.badge-card {
  position: absolute;
  left: 24px;
  bottom: 24px;
  max-width: 300px;
  background: rgba(255,255,255,0.94);
  border-radius: 18px;
  padding: 15px 16px;
  box-shadow: 0 12px 24px rgba(42, 46, 57, 0.10);
}

.badge-card strong {
  display: block;
  color: var(--heading);
  margin-bottom: 4px;
  font-size: 1rem;
}

.badge-card span {
  color: var(--text-soft);
  font-size: 0.92rem;
}

/* GENERIC CARDS */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 44px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: 0 10px 22px rgba(42, 46, 57, 0.04);
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 28px rgba(42, 46, 57, 0.08);
}

.icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  background: linear-gradient(135deg, rgba(111,154,147,0.18), rgba(216,191,163,0.22));
  color: var(--primary-dark);
  font-size: 1.35rem;
  font-weight: 700;
}

.card h3 {
  font-size: 1.18rem;
  color: var(--heading);
  margin-bottom: 10px;
}

.card p {
  color: var(--text-soft);
  font-size: 0.98rem;
  margin-bottom: 14px;
}

.card a {
  color: var(--primary-dark);
  font-weight: 600;
  font-size: 0.95rem;
}

/* INTRO */
.intro-wrap {
  max-width: 840px;
  margin-inline: auto;
  text-align: center;
}

.intro-wrap p {
  color: var(--text-soft);
  font-size: 1.07rem;
  margin-top: 18px;
}

/* VR */
.vr-section {
  background:
    radial-gradient(circle at right center, rgba(223,236,232,0.70), transparent 25%),
    linear-gradient(180deg, #f8f5ef 0%, #f4efe7 100%);
}

.vr-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.vr-content p {
  color: var(--text-soft);
  font-size: 1.05rem;
  margin-bottom: 16px;
}

.vr-list {
  display: grid;
  gap: 12px;
  margin: 22px 0 32px;
  list-style: none;
}

.vr-list li {
  position: relative;
  padding-left: 26px;
  color: var(--text);
}

.vr-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  position: absolute;
  left: 6px;
  top: 0.65em;
  transform: translateY(-50%);
}

.vr-panel {
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(53,56,71,0.08);
  border-radius: 30px;
  padding: 16px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.vr-media {
  min-height: 460px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(180deg, #f6f1ea 0%, #e6f0ec 100%);
}

.vr-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.vr-pill {
  position: relative;
  top: 362px;
  left: 22px;
  z-index: 2;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  color: var(--primary-dark);
  font-size: 0.86rem;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(42,46,57,0.08);
}

/* STEPS */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 42px;
}

.step {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: 0 10px 20px rgba(42,46,57,0.04);
}

.step::after {
  content: attr(data-step);
  position: absolute;
  right: 20px;
  top: 14px;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(111,154,147,0.12);
}

.step h3 {
  color: var(--heading);
  font-size: 1.18rem;
  margin-bottom: 10px;
}

.step p {
  color: var(--text-soft);
  font-size: 0.98rem;
}

/* ABOUT */
.about-section {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 48px;
  align-items: center;
}

.about-media {
  min-height: 500px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: linear-gradient(180deg, #f8f5ef 0%, #ebf1ee 100%);
}

.about-content p {
  color: var(--text-soft);
  font-size: 1.04rem;
  margin-bottom: 16px;
}

/* CONTACT */
.location-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(240px, 1fr));
  gap: 22px;
  max-width: 760px;
  margin: 44px auto 30px;
}

.location-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 10px 18px rgba(42,46,57,0.04);
}

.location-card h3 {
  color: var(--heading);
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.location-card p {
  color: var(--text-soft);
  font-size: 0.98rem;
}

.cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

/* FOOTER */
.site-footer {
  background: #e7efec;
  padding: 34px 0;
  border-top: 1px solid rgba(53,56,71,0.06);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--text-soft);
  font-size: 0.94rem;
}

.footer-copy {
  color: var(--text-soft);
  font-size: 0.94rem;
}

/* PLACEHOLDER SVG WRAPPERS */
.placeholder-svg {
  width: 100%;
  height: 100%;
}

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 980px) {
  :root {
    --header-h: 76px;
  }

  .nav,
  .header-actions > .btn {
    display: none;
  }

  .menu-toggle {
    display: inline-block;
  }

  .hero-grid,
  .vr-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .grid-3,
  .steps-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-media,
  .vr-media,
  .about-media {
    min-height: 420px;
  }
}

@media (max-width: 720px) {
  .section {
    padding: 68px 0;
  }

  .section-sm {
    padding: 56px 0;
  }

  .hero {
    padding: 54px 0 58px;
  }

  .brand {
    font-size: 1.75rem;
  }

  .hero-copy p,
  .section-lead,
  .about-content p,
  .vr-content p,
  .intro-wrap p {
    font-size: 1rem;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn,
  .cta-actions .btn {
    width: 100%;
  }

  .grid-3,
  .steps-grid,
  .location-grid {
    grid-template-columns: 1fr;
  }

  .hero-media,
  .vr-media,
  .about-media {
    min-height: 360px;
  }

  .badge-card {
    position: static;
    margin: 16px;
    max-width: none;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .reveal.visible,
  * {
    transition: none !important;
    animation: none !important;
  }
}
