:root {
  --ink: #0e1f3a;
  --navy: #0c1c36;
  --navy-deep: #081325;
  --navy-soft: #16294a;
  --gold: #c9972c;
  --gold-bright: #d8a83c;
  --gold-soft: #e0c16e;
  --paper: #eae8e4;
  --cream: #e2e0db;
  --blush: #e8b39f;
  --sand: #e6d6ac;
  --mauve: #d8c2cf;
  --sage: #cbd5c3;
  --line: rgba(12, 28, 54, 0.12);
  --line-soft: rgba(12, 28, 54, 0.07);
  --shadow-sm: 0 6px 18px rgba(12, 28, 54, 0.06);
  --shadow-md: 0 18px 48px rgba(12, 28, 54, 0.1);
  --shadow-lg: 0 34px 80px rgba(8, 19, 37, 0.16);
  --radius-sm: 16px;
  --radius: 22px;
  --radius-lg: 30px;
  --sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: "Playfair Display", Georgia, serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  color: var(--ink);
  background: var(--paper);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  background:
    radial-gradient(circle at 6% 12%, rgba(201, 151, 44, 0.1), transparent 28rem),
    radial-gradient(circle at 94% 2%, rgba(201, 151, 44, 0.07), transparent 26rem),
    radial-gradient(circle at 80% 90%, rgba(12, 28, 54, 0.05), transparent 30rem),
    var(--paper);
}

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

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

button,
input,
textarea {
  font: inherit;
}

::selection {
  background: rgba(201, 151, 44, 0.26);
  color: var(--navy-deep);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@keyframes navFade {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-header.is-open .site-nav,
  .site-header.is-open .nav-cta {
    animation: none;
  }
}

/* ---------- Scroll reveal ---------- */
.js-reveal [data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  will-change: opacity, transform;
}

.js-reveal [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .js-reveal [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  width: min(1180px, calc(100% - 32px));
  min-height: 76px;
  margin: 18px auto 0;
  padding: 12px 14px 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius);
  background: rgba(238, 237, 233, 0.78);
  box-shadow: 0 18px 45px rgba(8, 19, 37, 0.08);
  backdrop-filter: blur(22px) saturate(1.1);
  transition: box-shadow 0.4s var(--ease), background 0.4s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(240, 239, 235, 0.92);
  box-shadow: 0 16px 40px rgba(8, 19, 37, 0.14);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 188px;
}

.brand-logo {
  width: auto;
  height: 50px;
  display: block;
}

.brand-text {
  display: grid;
  gap: 3px;
  text-transform: uppercase;
}

.brand-text strong {
  font-size: 14px;
  letter-spacing: 0.16em;
}

.brand-text span {
  font-size: 11px;
  letter-spacing: 0.34em;
  color: var(--gold);
}

.site-nav {
  display: inline-flex;
  justify-content: center;
  gap: clamp(18px, 4vw, 44px);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding: 12px 0;
  transition: color 0.25s var(--ease);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--gold);
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s var(--ease);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
}

.nav-cta,
.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease);
}

.nav-cta {
  color: #fff9ee;
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  box-shadow: 0 12px 28px rgba(201, 151, 44, 0.32);
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.nav-cta:hover {
  box-shadow: 0 18px 36px rgba(201, 151, 44, 0.42);
}

.button svg,
.nav-cta svg,
.site-header svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.9;
}

.button-ghost svg,
.service-card a svg {
  transition: transform 0.3s var(--ease);
}

.button-ghost:hover svg,
.service-card a:hover svg {
  transform: translateX(4px);
}

/* ---------- Layout ---------- */
.section-shell {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(380px, 0.78fr);
  align-items: center;
  gap: clamp(30px, 6vw, 78px);
  padding: clamp(40px, 5vw, 70px) 0 clamp(28px, 3.6vw, 44px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 26px;
  height: 1.5px;
  content: "";
  background: linear-gradient(90deg, var(--gold), transparent);
}

.section-heading.compact .eyebrow,
.section-heading .eyebrow {
  margin-inline: auto;
}

.section-heading .eyebrow::before {
  background: var(--gold);
}

.hero h1,
.section-heading h2,
.about-copy h2,
.booking h2,
.testimonials h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 700;
  line-height: 1.04;
}

.hero h1 {
  max-width: 680px;
  font-size: clamp(50px, 6.2vw, 80px);
  letter-spacing: -0.01em;
  background: linear-gradient(120deg, var(--navy) 30%, var(--navy-soft));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lede {
  margin: 20px 0 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1.06;
}

.hero-text {
  max-width: 590px;
  margin: 24px 0 0;
  color: rgba(14, 31, 58, 0.74);
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--navy-soft), var(--navy));
  box-shadow: 0 18px 38px rgba(8, 19, 37, 0.28);
}

.button-primary:hover {
  box-shadow: 0 24px 48px rgba(8, 19, 37, 0.36);
}

.button-ghost {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: inset 0 0 0 1px var(--line);
}

.button-ghost:hover {
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(201, 151, 44, 0.5);
}

.button-dark {
  color: #fff;
  background: var(--navy-deep);
}

.button-dark:hover {
  box-shadow: 0 18px 36px rgba(8, 19, 37, 0.5);
}

.button-light {
  color: var(--navy-deep);
  background: rgba(255, 255, 255, 0.92);
}

.button-light:hover {
  background: #fff;
}

/* ---------- Hero visual ---------- */
.hero-visual {
  position: relative;
  align-self: stretch;
  min-height: 480px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-lg);
}

.hero-visual::before,
.hero-visual::after {
  position: absolute;
  z-index: 1;
  content: "";
  pointer-events: none;
}

.hero-visual::before {
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(8, 19, 37, 0.34));
}

.hero-visual::after {
  right: -60px;
  bottom: -44px;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(201, 151, 44, 0.6);
  border-radius: 50%;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  transition: transform 1.2s var(--ease);
}

.hero-visual:hover img {
  transform: scale(1.04);
}

.hero-badge {
  position: absolute;
  right: 20px;
  bottom: 20px;
  z-index: 2;
  width: min(264px, calc(100% - 40px));
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-sm);
  color: #fff;
  background: rgba(8, 19, 37, 0.74);
  backdrop-filter: blur(16px);
  box-shadow: 0 16px 40px rgba(8, 19, 37, 0.32);
}

.hero-badge span {
  display: block;
  margin-bottom: 6px;
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-badge strong {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.18;
}

/* ---------- Pillars (merged keyword + detail section) ---------- */
.pillars {
  width: min(1180px, calc(100% - 32px));
  margin: clamp(48px, 6vw, 84px) auto clamp(72px, 8vw, 112px);
}

.pillars-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(40px, 5vw, 72px) clamp(28px, 4vw, 60px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  color: #fff;
  background:
    radial-gradient(circle at 12% 0%, rgba(201, 151, 44, 0.18), transparent 42%),
    radial-gradient(circle at 90% 104%, rgba(201, 151, 44, 0.1), transparent 46%),
    linear-gradient(135deg, var(--navy), var(--navy-deep));
  box-shadow: var(--shadow-lg);
}

.pillars-head {
  max-width: 640px;
  margin: 0 auto clamp(34px, 4vw, 50px);
  text-align: center;
}

.pillars-head .eyebrow {
  justify-content: center;
  color: var(--gold-soft);
}

.pillars-head .eyebrow::before {
  background: linear-gradient(90deg, var(--gold-soft), transparent);
}

.pillars-head h2 {
  margin: 0;
  color: #fff;
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.06;
  letter-spacing: -0.01em;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.pillar-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  transition: transform 0.4s var(--ease), background 0.4s var(--ease), border-color 0.4s var(--ease);
}

.pillar-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(201, 151, 44, 0.5);
}

.pillar-icon {
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  margin-bottom: 22px;
  border-radius: 50%;
  background: rgba(201, 151, 44, 0.14);
  box-shadow: inset 0 0 0 1px rgba(201, 151, 44, 0.32);
  transition: transform 0.4s var(--ease);
}

.pillar-card:hover .pillar-icon {
  transform: scale(1.06) rotate(-3deg);
}

.pillar-icon svg {
  width: 28px;
  height: 28px;
  color: var(--gold-soft);
  stroke-width: 1.5;
}

.pillar-card h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 16px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pillar-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
  line-height: 1.7;
}

/* ---------- Sections ---------- */
.services,
.process {
  padding: clamp(76px, 8vw, 116px) 0;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-heading.compact {
  max-width: 680px;
}

.section-heading h2,
.about-copy h2,
.booking h2,
.testimonials h2 {
  font-size: clamp(34px, 4.8vw, 56px);
  letter-spacing: -0.01em;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-card,
.process-grid article,
.testimonial-row figure {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.66);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(6px);
}

.service-card {
  position: relative;
  min-height: 300px;
  padding: 34px;
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}

.service-card::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--line);
  box-shadow: var(--shadow-md);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  margin-bottom: 24px;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
  transition: transform 0.4s var(--ease);
}

.service-card:hover .service-icon {
  transform: scale(1.06) rotate(-3deg);
}

.service-icon svg {
  width: 32px;
  height: 32px;
  color: var(--navy);
  stroke-width: 1.4;
}

.sage {
  background: var(--sage);
}

.blush {
  background: var(--blush);
}

.mauve {
  background: var(--mauve);
}

.sand {
  background: var(--sand);
}

.service-card h3,
.process-grid h3 {
  margin: 0 0 12px;
  font-size: 17px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
}

.service-card p,
.process-grid p,
.about-copy p {
  color: rgba(14, 31, 58, 0.72);
  line-height: 1.75;
}

.service-card a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.service-card a svg {
  width: 15px;
  height: 15px;
}

/* ---------- About ---------- */
.about {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  align-items: stretch;
  overflow: hidden;
  background: linear-gradient(180deg, #f3f2ef, #edece8);
}

.about-image {
  position: relative;
  min-height: 480px;
  overflow: hidden;
}

.about-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(115deg, transparent 55%, rgba(8, 19, 37, 0.22));
  pointer-events: none;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 1.4s var(--ease);
}

.about:hover .about-image img {
  transform: scale(1.05);
}

.about-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 480px;
  padding: clamp(50px, 8vw, 104px);
  overflow: hidden;
}

.about-copy::after {
  position: absolute;
  right: -74px;
  bottom: -88px;
  width: 250px;
  height: 250px;
  content: "";
  border: 1px solid rgba(12, 28, 54, 0.18);
  border-radius: 50%;
  background: rgba(201, 151, 44, 0.18);
}

.about-copy p,
.about-copy .button {
  position: relative;
  z-index: 1;
}

.about-copy h2 {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin-bottom: 22px;
  color: var(--navy);
}

.about-copy .button {
  width: fit-content;
  margin-top: 18px;
}

.about-note {
  position: relative;
  z-index: 1;
  margin-top: 22px;
  padding: 18px 22px;
  border-left: 3px solid rgba(201, 151, 44, 0.5);
  border-radius: 0 12px 12px 0;
  background: rgba(12, 28, 54, 0.04);
  color: rgba(14, 31, 58, 0.62);
  font-size: 14px;
  line-height: 1.7;
}

/* ---------- Process ---------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.process-grid article {
  position: relative;
  min-height: 236px;
  padding: 28px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.process-grid article:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.process-grid span {
  display: block;
  margin-bottom: 30px;
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-family: var(--serif);
  font-size: 40px;
  line-height: 1;
}

/* ---------- Testimonials ---------- */
.testimonials {
  padding: clamp(72px, 8vw, 104px) max(16px, calc((100vw - 1180px) / 2));
  background: linear-gradient(180deg, #f0efeb, var(--cream));
}

.testimonial-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: min(1180px, calc(100vw - 32px));
  margin: 0 auto;
}

.testimonial-row figure {
  margin: 0;
  min-height: 190px;
  padding: 30px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.testimonial-row figure:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.testimonial-row blockquote {
  position: relative;
  margin: 0;
  color: rgba(14, 31, 58, 0.8);
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.45;
}

.testimonial-row blockquote::before {
  display: block;
  margin-bottom: 12px;
  color: var(--gold);
  content: "\201C";
  font-family: var(--serif);
  font-size: 46px;
  line-height: 0.6;
}

.testimonial-row figcaption {
  margin-top: 18px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

/* ---------- FAQ ---------- */
.faq {
  padding: clamp(76px, 8vw, 116px) 0;
}

.faq-list {
  display: grid;
  gap: 14px;
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.66);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(6px);
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.faq-item[open] {
  border-color: var(--line);
  box-shadow: var(--shadow-md);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 26px;
  list-style: none;
  cursor: pointer;
  font-family: var(--serif);
  font-size: clamp(18px, 2vw, 22px);
  color: var(--navy);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  flex: none;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  content: "+";
  border-radius: 50%;
  background: rgba(12, 28, 54, 0.06);
  color: var(--gold);
  font-family: var(--sans);
  font-size: 22px;
  font-weight: 500;
  line-height: 1;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}

.faq-item[open] summary::after {
  content: "\2212";
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  color: #fff;
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 26px 24px;
}

.faq-answer p {
  margin: 0;
  color: rgba(14, 31, 58, 0.72);
  font-size: 16px;
  line-height: 1.75;
}

/* ---------- Blog ---------- */
.blog {
  width: min(1180px, calc(100% - 32px));
  margin: clamp(40px, 6vw, 80px) auto 0;
}

.blog-inner {
  position: relative;
  overflow: hidden;
  padding: clamp(44px, 6vw, 76px);
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  color: #fff;
  background:
    radial-gradient(circle at 14% 18%, rgba(201, 151, 44, 0.2), transparent 42%),
    radial-gradient(circle at 86% 88%, rgba(201, 151, 44, 0.12), transparent 46%),
    linear-gradient(135deg, var(--navy), var(--navy-deep));
  box-shadow: var(--shadow-lg);
}

.blog-inner .eyebrow {
  justify-content: center;
  color: var(--gold-soft);
}

.blog-inner .eyebrow::before {
  background: linear-gradient(90deg, var(--gold-soft), transparent);
}

.blog-badge {
  display: inline-block;
  margin-bottom: 18px;
  padding: 7px 16px;
  border: 1px solid rgba(201, 151, 44, 0.5);
  border-radius: 999px;
  color: var(--gold-soft);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.blog h2 {
  margin: 0 auto;
  max-width: 620px;
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(30px, 4.4vw, 50px);
  line-height: 1.05;
}

.blog-text {
  max-width: 560px;
  margin: 18px auto 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  line-height: 1.7;
}

.subscribe {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 540px;
  margin: 30px auto 0;
}

.subscribe input {
  flex: 1 1 260px;
  min-height: 54px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: #fff;
  font-size: 15px;
  background: rgba(255, 255, 255, 0.08);
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}

.subscribe input::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.subscribe input:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.12);
}

.subscribe .button {
  flex: none;
}

.subscribe-note {
  margin: 16px auto 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
}

.subscribe-note.is-success {
  color: var(--gold-soft);
  font-weight: 700;
}

/* ---------- Booking ---------- */
.booking {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  margin: clamp(76px, 8vw, 116px) auto 0;
  padding: clamp(42px, 6vw, 68px) clamp(34px, 6vw, 76px);
  overflow: hidden;
  color: #fff;
  border-radius: var(--radius-lg);
  width: min(1180px, calc(100% - 32px));
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.14), transparent 40%),
    linear-gradient(135deg, var(--gold-bright), var(--gold));
  box-shadow: 0 30px 70px rgba(201, 151, 44, 0.32);
}

.booking::after {
  position: absolute;
  right: -90px;
  top: -90px;
  width: 280px;
  height: 280px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  pointer-events: none;
}

.booking .eyebrow {
  color: rgba(255, 255, 255, 0.85);
}

.booking .eyebrow::before {
  background: rgba(255, 255, 255, 0.7);
}

.booking h2 {
  color: #fff;
}

.booking p {
  position: relative;
  margin: 14px 0 0;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.92);
}

.booking-actions {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

/* ---------- Footer ---------- */
.site-footer {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) repeat(2, minmax(160px, 0.6fr));
  gap: 40px;
  margin-top: clamp(60px, 7vw, 96px);
  padding: clamp(54px, 6vw, 76px) max(16px, calc((100vw - 1180px) / 2)) 32px;
  color: rgba(12, 28, 54, 0.66);
  background:
    radial-gradient(circle at 86% -12%, rgba(201, 151, 44, 0.16), transparent 44%),
    linear-gradient(180deg, #e4e2dc, #d8d6cf);
}

.site-footer::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  content: "";
  background: linear-gradient(
    90deg,
    transparent,
    var(--gold) 22%,
    var(--gold-soft) 50%,
    var(--gold) 78%,
    transparent
  );
  opacity: 0.85;
}

.site-footer img {
  width: auto;
  height: 124px;
}

.site-footer h2 {
  position: relative;
  margin: 0 0 20px;
  padding-bottom: 13px;
  color: var(--navy);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-footer h2::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  border-radius: 2px;
}

.site-footer a,
.site-footer span {
  display: block;
  margin: 11px 0;
  font-size: 14px;
  color: rgba(12, 28, 54, 0.68);
  transition: color 0.25s var(--ease), transform 0.25s var(--ease);
}

.site-footer a:hover {
  color: var(--gold);
  transform: translateX(3px);
}

.site-footer span {
  color: rgba(12, 28, 54, 0.48);
}

.footer-brand p {
  max-width: 290px;
  margin-top: 20px;
  color: rgba(12, 28, 54, 0.55);
  font-size: 14px;
  letter-spacing: 0.04em;
  line-height: 1.7;
}

.copyright {
  grid-column: 1 / -1;
  margin: 22px 0 0;
  padding-top: 28px;
  border-top: 1px solid rgba(12, 28, 54, 0.14);
  font-size: 13px;
  letter-spacing: 0.02em;
  color: rgba(12, 28, 54, 0.5);
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
    justify-self: end;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--navy);
    background: rgba(255, 255, 255, 0.74);
    transition: background 0.25s var(--ease);
  }

  .menu-toggle:hover {
    background: #fff;
  }

  .menu-toggle-bars,
  .menu-toggle-bars::before,
  .menu-toggle-bars::after {
    content: "";
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 2px;
    background: var(--navy);
    transition: transform 0.3s var(--ease), opacity 0.2s var(--ease), background 0.2s var(--ease);
  }

  .menu-toggle-bars {
    position: relative;
  }

  .menu-toggle-bars::before {
    position: absolute;
    top: -6px;
    left: 0;
  }

  .menu-toggle-bars::after {
    position: absolute;
    top: 6px;
    left: 0;
  }

  .site-header.is-open .menu-toggle-bars {
    background: transparent;
  }

  .site-header.is-open .menu-toggle-bars::before {
    transform: translateY(6px) rotate(45deg);
  }

  .site-header.is-open .menu-toggle-bars::after {
    transform: translateY(-6px) rotate(-45deg);
  }

  .site-nav,
  .nav-cta {
    display: none;
  }

  .site-header.is-open {
    grid-template-columns: auto auto;
  }

  .site-header.is-open {
    padding-bottom: 14px;
  }

  .site-header.is-open .site-nav {
    display: grid;
    grid-column: 1 / -1;
    justify-content: stretch;
    gap: 0;
    margin-top: 12px;
    padding-top: 4px;
    border-top: 1px solid var(--line);
    text-transform: none;
    animation: navFade 0.3s var(--ease);
  }

  .site-header.is-open .site-nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 54px;
    padding: 4px 8px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.03em;
    border-bottom: 1px solid var(--line-soft);
  }

  .site-header.is-open .site-nav a:last-of-type {
    border-bottom: 0;
  }

  /* Reset the desktop underline pseudo-element into a tap-affordance chevron */
  .site-header.is-open .site-nav a::after {
    position: static;
    width: auto;
    height: auto;
    background: none;
    transform: none;
    content: "\203A";
    color: var(--gold);
    font-size: 22px;
    line-height: 1;
    opacity: 0.65;
    transition: transform 0.25s var(--ease);
  }

  .site-header.is-open .site-nav a:active::after {
    transform: translateX(4px);
  }

  .site-header.is-open .nav-cta {
    display: inline-flex;
    grid-column: 1 / -1;
    width: 100%;
    min-height: 54px;
    margin-top: 14px;
    font-size: 13px;
    animation: navFade 0.4s var(--ease);
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-visual {
    min-height: 500px;
  }

  .pillars-grid,
  .service-grid,
  .process-grid,
  .testimonial-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .about,
  .booking,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .booking-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .site-header {
    width: calc(100% - 20px);
    margin-top: 10px;
    padding-inline: 12px;
  }

  .brand {
    min-width: 0;
  }

  .brand-text strong {
    font-size: 12px;
    letter-spacing: 0.12em;
  }

  .brand-text span {
    font-size: 10px;
    letter-spacing: 0.24em;
  }

  .section-shell {
    width: calc(100% - 24px);
  }

  .hero h1 {
    font-size: 44px;
  }

  .hero-lede {
    margin-top: 16px;
    font-size: 30px;
  }

  .hero {
    gap: 22px;
    padding-top: 28px;
    padding-bottom: 18px;
  }

  .hero-text {
    margin-top: 18px;
    line-height: 1.62;
  }

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

  .hero-actions,
  .booking-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button,
  .nav-cta {
    width: 100%;
    white-space: normal;
    text-align: center;
  }

  .hero-visual {
    align-self: auto;
    height: 360px;
    min-height: 0;
  }

  .pillars-grid,
  .service-grid,
  .process-grid,
  .testimonial-row {
    grid-template-columns: 1fr;
  }

  .value-item {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .booking,
  .blog {
    width: calc(100% - 24px);
  }

  .subscribe {
    flex-direction: column;
  }

  .subscribe input {
    flex: none;
    width: 100%;
  }

  .subscribe .button {
    width: 100%;
  }

  .faq-item summary {
    padding: 18px 20px;
  }

  .faq-answer {
    padding: 0 20px 20px;
  }

  .about-copy,
  .services,
  .process,
  .faq,
  .testimonials {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

/* ---------- Booking overlay (native, in-page) ---------- */
.bk-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 12px 12px max(12px, env(safe-area-inset-bottom));
  background: rgba(8, 19, 37, 0.55);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--ease), visibility 0.35s var(--ease);
}

.bk-overlay.open {
  opacity: 1;
  visibility: visible;
}

.bk-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 620px;
  max-height: min(92dvh, 760px);
  overflow: hidden;
  padding: clamp(20px, 4vw, 38px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 24px 24px 0 0;
  background: linear-gradient(180deg, #f6f5f2, #eceae6);
  box-shadow: 0 -24px 70px rgba(8, 19, 37, 0.32);
  transform: translateY(48px);
  transition: transform 0.42s var(--ease);
}

.bk-overlay.open .bk-panel {
  transform: none;
}

@media (min-width: 720px) {
  .bk-overlay {
    align-items: center;
    padding: 24px;
  }
  .bk-panel {
    border-radius: 28px;
    box-shadow: var(--shadow-lg);
    transform: translateY(24px) scale(0.98);
  }
}

.bk-scroll {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding-right: 4px;
  -webkit-overflow-scrolling: touch;
}

.bk-close {
  flex: none;
  align-self: flex-end;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin: -2px -2px 8px 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--navy);
  font-size: 20px;
  line-height: 1;
  background: rgba(255, 255, 255, 0.92);
  cursor: pointer;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}
.bk-close:hover {
  background: #fff;
  transform: rotate(90deg);
}
.bk-close svg {
  width: 20px;
  height: 20px;
}

.bk-title {
  margin: 4px 0 8px;
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(26px, 4vw, 36px);
  line-height: 1.05;
  color: var(--navy);
}

.bk-lede {
  margin: 0 0 18px;
  color: rgba(14, 31, 58, 0.72);
  font-size: 15px;
  line-height: 1.6;
}

.bk-legend {
  display: flex;
  gap: 18px;
  margin-bottom: 22px;
  font-size: 13px;
  color: rgba(14, 31, 58, 0.7);
}
.bk-dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 7px;
  border-radius: 50%;
  vertical-align: middle;
}
.bk-dot.online { background: var(--navy); }
.bk-dot.personal { background: var(--gold); }

.bk-muted { color: rgba(14, 31, 58, 0.55); font-size: 14px; }

.bk-day { margin-bottom: 20px; }
.bk-day-h {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--navy);
  margin: 0 0 2px;
}
.bk-day-sub {
  margin: 0 0 12px;
  font-size: 12px;
  color: rgba(14, 31, 58, 0.5);
  text-transform: capitalize;
}
.bk-slots { display: flex; flex-wrap: wrap; gap: 9px; }
.bk-slot {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 17px;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  transition: transform 0.2s var(--ease), border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.bk-slot:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
  box-shadow: 0 10px 26px rgba(12, 28, 54, 0.12);
}

.bk-empty {
  padding: 36px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.6);
  color: rgba(14, 31, 58, 0.6);
  font-size: 14px;
  line-height: 1.6;
}

.bk-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
  padding: 0;
  border: 0;
  background: none;
  color: var(--gold);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  cursor: pointer;
}
.bk-back svg { width: 16px; height: 16px; }

.bk-when {
  margin: 0 0 18px;
  color: var(--gold);
  font-weight: 700;
  font-size: 15px;
}

.bk-panel label {
  display: block;
  margin: 14px 0 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
}
.bk-panel input,
.bk-panel textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  font: inherit;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.85);
  transition: border-color 0.2s var(--ease);
}
.bk-panel input:focus,
.bk-panel textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: #fff;
}
.bk-row { display: flex; gap: 12px; }
.bk-row > div { flex: 1; }

.bk-submit { width: 100%; margin-top: 22px; }
#bkTurnstile:not(:empty) { margin-top: 16px; }

.bk-msg { margin: 12px 0 0; min-height: 16px; font-size: 13px; color: #b3261e; }

.bk-done { text-align: center; padding-top: 10px; }
.bk-check {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  margin: 6px auto 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a7f37, #15803d);
  color: #fff;
}
.bk-check svg { width: 34px; height: 34px; stroke-width: 2.4; }
.bk-done .button { margin-top: 20px; }

@media (max-width: 560px) {
  .bk-panel {
    max-height: 88dvh;
    padding: 18px;
  }

  .bk-scroll {
    padding-right: 0;
  }

  .bk-title {
    font-size: 27px;
  }

  .bk-legend {
    gap: 12px;
    margin-bottom: 18px;
  }

  .bk-day {
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--line-soft);
  }

  .bk-slots {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .bk-slot {
    justify-content: center;
    width: 100%;
    padding: 11px 10px;
  }

  .bk-row { flex-direction: column; gap: 0; }

  .bk-submit {
    margin-top: 18px;
  }
}

body.bk-lock { overflow: hidden; }

/* ---------- Coming soon (visszaszámláló kapu) ---------- */
html.site-live .coming-soon { display: none; }
html:not(.site-live) body { overflow: hidden; }

.coming-soon {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  text-align: center;
  overflow: auto;
  background:
    radial-gradient(circle at 14% 12%, rgba(201, 151, 44, 0.16), transparent 30rem),
    radial-gradient(circle at 86% 88%, rgba(201, 151, 44, 0.1), transparent 30rem),
    radial-gradient(circle at 82% 8%, rgba(12, 28, 54, 0.05), transparent 28rem),
    linear-gradient(180deg, #f1f0ec, var(--paper));
}

.cs-inner {
  max-width: 720px;
  animation: csIn 0.8s var(--ease) both;
}

@keyframes csIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}

.cs-logo {
  display: block;
  width: auto;
  height: clamp(92px, 15vw, 146px);
  margin: 0 auto 24px;
}

.cs-eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.cs-title {
  margin: 0 0 16px;
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(34px, 6vw, 60px);
  line-height: 1.04;
  letter-spacing: -0.01em;
  color: var(--navy);
}

.cs-lede {
  max-width: 520px;
  margin: 0 auto 40px;
  color: rgba(14, 31, 58, 0.7);
  font-size: clamp(15px, 1.8vw, 18px);
  line-height: 1.65;
}

.cs-countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(8px, 2vw, 16px);
  margin-bottom: 26px;
}

.cs-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: clamp(66px, 15vw, 108px);
  padding: clamp(16px, 2.4vw, 26px) clamp(8px, 1.6vw, 16px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.6);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(8px);
}

.cs-num {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(32px, 7vw, 60px);
  line-height: 1;
  color: var(--navy);
  font-variant-numeric: tabular-nums;
}

.cs-lab {
  font-size: clamp(10px, 1.4vw, 12px);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.cs-sep {
  align-self: center;
  font-family: var(--serif);
  font-size: clamp(24px, 5vw, 44px);
  color: rgba(201, 151, 44, 0.45);
}

.cs-date {
  margin: 0;
  color: rgba(14, 31, 58, 0.55);
  font-size: 14px;
  letter-spacing: 0.08em;
}

@media (max-width: 520px) {
  .cs-sep { display: none; }
  .cs-countdown { gap: 8px; }
  .cs-unit { min-width: 0; flex: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .cs-inner { animation: none; }
}
