:root {
  --bg: #f6f1eb;
  --bg-soft: #fbf7f2;
  --surface: rgba(255, 255, 255, 0.9);
  --surface-strong: #ffffff;
  --rose: #e7c7cb;
  --peach: #efd8ca;
  --clay: #916159;
  --clay-dark: #7a5049;
  --ink: #2f3442;
  --muted: #606678;
  --line: rgba(47, 52, 66, 0.14);
  --line-strong: rgba(47, 52, 66, 0.28);
  --accent: #1ba0b3;
  --accent-dark: #127989;
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --shadow: 0 22px 70px rgba(47, 52, 66, 0.12);
  --shell: min(1180px, 94%);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 84% 8%, rgba(231, 199, 203, 0.55), rgba(231, 199, 203, 0) 44%),
    radial-gradient(circle at 56% 33%, rgba(239, 216, 202, 0.38), rgba(239, 216, 202, 0) 42%),
    var(--bg);
  line-height: 1.65;
}

.bg-orb {
  position: fixed;
  z-index: -1;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(22px);
}

.bg-orb-one {
  width: 360px;
  height: 360px;
  top: 18vh;
  right: -120px;
  background: rgba(235, 200, 212, 0.42);
}

.bg-orb-two {
  width: 300px;
  height: 300px;
  left: -110px;
  bottom: 8vh;
  background: rgba(242, 219, 208, 0.42);
}

a {
  color: inherit;
}

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

.site-header {
  position: fixed;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1380px, calc(100% - 32px));
  margin: 0;
  padding: 10px 18px;
  border-radius: 22px;
  border: 1px solid rgba(77, 67, 62, 0.08);
  background: rgba(251, 248, 244, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 40px rgba(77, 67, 62, 0.08);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  z-index: 80;
}

.brand { grid-column: 1; justify-self: start; }

.main-nav {
  grid-column: 2;
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.main-nav a {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px solid transparent;
  padding: 4px 0;
  white-space: nowrap;
  color: var(--home-muted, #6b5e57);
}

.main-nav a:hover { border-color: rgba(77, 67, 62, 0.28); }

.nav-dropdown {
  position: relative;
  padding-bottom: 14px;
  margin-bottom: -14px;
}

.nav-dropdown-link {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px solid transparent;
  padding: 4px 0;
  white-space: nowrap;
  color: var(--home-muted, #6b5e57);
}

.nav-dropdown-link:hover { border-color: rgba(77, 67, 62, 0.28); }

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  display: grid;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: -12px;
  min-width: 260px;
  padding: 14px;
  border: 1px solid rgba(77, 67, 62, 0.08);
  border-radius: 18px;
  background: rgba(255, 253, 249, 0.98);
  box-shadow: 0 18px 40px rgba(77, 67, 62, 0.08);
  display: none;
  gap: 6px;
}

.nav-dropdown-menu a {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  padding: 8px 10px;
  border-radius: 10px;
  transition: background 0.15s;
}

.nav-dropdown-menu a:hover {
  background: rgba(77, 67, 62, 0.06);
}

.header-cta {
  grid-column: 3;
  justify-self: end;
  padding: 10px 18px;
}

body[data-page="home"] .site-header {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  background: rgba(26, 22, 21, 0.28);
  border-color: rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(10px);
}

body[data-page="home"] .main-nav a {
  color: #ffffff;
}

body[data-page="home"] .main-nav a:hover {
  border-color: rgba(255, 255, 255, 0.85);
}

body[data-page="home"] .header-cta.button-primary {
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
}

body[data-page="home"] .menu-button {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.12);
}

.brand {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  width: clamp(108px, 9vw, 144px);
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  display: block;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 16px;
}

.main-nav a {
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
}

.main-nav a:hover {
  border-color: rgba(47, 52, 66, 0.38);
}

.menu-button {
  display: none;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface-strong);
  color: var(--ink);
  font: inherit;
  padding: 8px 12px;
}

.shell {
  width: var(--shell);
  margin: 18px auto 70px;
  padding-top: 90px;
}

body[data-page="home"] .shell {
  margin-top: 0;
}

.section {
  margin: 74px 0;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.75rem;
  color: var(--accent-dark);
  font-weight: 700;
  margin: 0 0 10px;
}

h1,
h2,
h3 {
  margin: 0 0 14px;
  font-family: "Cormorant Garamond", serif;
  line-height: 1.08;
  color: var(--ink);
}

h1 {
  font-size: clamp(2.2rem, 4.8vw, 4.1rem);
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
}

h3 {
  font-size: clamp(1.35rem, 2.4vw, 2rem);
}

p {
  margin: 0 0 14px;
  color: var(--muted);
}

ul {
  padding-left: 18px;
  margin: 0;
  color: var(--muted);
}

li {
  margin-bottom: 8px;
}

.button {
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 11px 16px;
  text-decoration: none;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button:disabled {
  opacity: 0.58;
  cursor: not-allowed;
  transform: none;
}

.button-primary {
  background: var(--ink);
  color: #ffffff;
}

.button-primary:hover {
  background: #242a36;
}

.button-soft {
  background: var(--surface-strong);
  color: var(--ink);
  border-color: var(--line);
}

.button-soft:hover {
  border-color: var(--line-strong);
}

.button-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.64);
}

.hero {
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: min(74vh, 740px);
  position: relative;
  box-shadow: var(--shadow);
}

.hero img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center 35%;
}

.hero-home {
  min-height: clamp(520px, 76vh, 760px);
}

.hero-home-image {
  object-position: center 80%;
}

.hero-home .hero-overlay {
  background:
    linear-gradient(180deg, rgba(22, 20, 21, 0.14) 16%, rgba(22, 20, 21, 0.45) 68%, rgba(22, 20, 21, 0.64) 100%);
  padding-top: clamp(120px, 16vw, 200px);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(25, 26, 34, 0.08) 20%, rgba(25, 26, 34, 0.38) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(22px, 4vw, 44px);
}

.hero-overlay .eyebrow,
.hero-overlay h1,
.hero-overlay p {
  color: #ffffff;
}

.hero-overlay p {
  max-width: 58ch;
  text-shadow: 0 1px 12px rgba(15, 10, 9, 0.45);
}

.hero-overlay h1,
.hero-overlay .eyebrow {
  text-shadow: 0 1px 16px rgba(15, 10, 9, 0.45);
}

.hero-overlay h1 {
  max-width: 20ch;
  line-height: 1.14;
  margin-bottom: 8px;
}

.hero-home .hero-overlay h1 {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: clamp(2.3rem, 4.9vw, 4.4rem);
  line-height: 1.12;
}

.hero-intro {
  margin: 0 0 10px;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: #ffffff;
}

.hero-meta {
  margin: 0 0 4px;
  font-size: 0.98rem;
  font-weight: 600;
  color: #ffffff;
  max-width: 56ch;
}

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

.logo-bubble {
  position: absolute;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 30px rgba(47, 52, 66, 0.2);
  overflow: hidden;
  z-index: 3;
  animation: logoFloat 6.5s ease-in-out infinite;
}

.logo-bubble img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.logo-bubble-hero {
  top: 22px;
  right: 22px;
}

.logo-bubble-inline {
  position: relative;
  margin: 0 auto 18px;
  animation-delay: 1.8s;
}

@keyframes logoFloat {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
  100% {
    transform: translateY(0px);
  }
}

.welcome {
  margin-left: auto;
  margin-right: auto;
  max-width: 900px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface);
  padding: clamp(28px, 4vw, 48px);
  box-shadow: var(--shadow);
}

.welcome-title {
  font-size: clamp(2rem, 4vw, 3rem);
}

.mood-strip {
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 300px;
  position: relative;
  box-shadow: var(--shadow);
}

.mood-strip img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.mood-strip::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(30, 20, 18, 0.14), rgba(30, 20, 18, 0.58));
}

.mood-text {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
}

.mood-text h2 {
  color: #ffffff;
  max-width: 22ch;
}

.section-head {
  max-width: 760px;
  margin-bottom: 24px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

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

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

.offer-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 12px 30px rgba(47, 52, 66, 0.08);
}

.offer-thumb {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center 62%;
  border-radius: 12px;
  border: 1px solid var(--line);
}

.offer-topline {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.offer-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(26, 160, 179, 0.14);
  color: var(--accent-dark);
}

.offer-description {
  margin-bottom: 0;
}

.offer-facts {
  margin-top: 2px;
  padding-left: 16px;
}

.offer-facts strong {
  color: var(--ink);
}

.offer-actions {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 8px;
}

.about-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
}

.about-copy {
  padding: clamp(26px, 4vw, 46px);
}

.about-image {
  min-height: 100%;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
}

.cta-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface);
  text-align: center;
  padding: 36px 22px;
}

.meta-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.meta-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface-strong);
  padding: 18px;
}

.video-panel {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 18px;
  align-items: center;
}

.video-copy p:last-of-type {
  margin-bottom: 0;
}

.video-copy .button {
  margin-top: 6px;
}

.video-frame {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #111111;
  aspect-ratio: 16 / 9;
  min-height: 280px;
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.video-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 20px;
  background:
    linear-gradient(130deg, rgba(145, 97, 89, 0.78), rgba(47, 52, 66, 0.85)),
    url("../images/img_3073.jpg") center 55% / cover no-repeat;
}

.video-placeholder p {
  color: #ffffff;
  font-weight: 600;
  margin: 0;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.benefit-card {
  padding: 22px;
}

.benefit-card p {
  margin-bottom: 0;
}

.page-intro {
  max-width: 760px;
}

.page-intro::before {
  content: "";
  display: block;
  width: 84px;
  height: 84px;
  margin: 0 0 20px;
  border-radius: 50%;
  background: url("../images/logo-circle-original.png?v=2") center / cover no-repeat;
}

.booking-wrap {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface);
  padding: clamp(24px, 3.4vw, 40px);
}

.booking-layout {
  display: grid;
  grid-template-columns: 1fr 0.88fr;
  gap: 14px;
}

.booking-summary {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface-strong);
  padding: 16px;
}

.summary-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 4px;
}

.summary-value {
  margin-bottom: 12px;
  color: var(--ink);
  font-weight: 600;
}

.booking-note {
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.62);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
}

input,
select,
textarea {
  width: 100%;
  margin-top: 6px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font: inherit;
  padding: 10px 12px;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(26, 160, 179, 0.22);
  border-color: var(--accent);
}

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  margin-top: 2px;
}

.checkbox input {
  width: auto;
  margin-top: 3px;
}

.checkbox span {
  color: var(--muted);
}

.status-message {
  font-size: 0.92rem;
  color: var(--accent-dark);
  min-height: 24px;
}

.small-legal {
  margin: 0;
  font-size: 0.84rem;
  color: var(--muted);
}

.small-legal a {
  color: var(--ink);
  font-weight: 600;
}

.detail-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface);
  padding: clamp(24px, 3.4vw, 44px);
}

.detail-lead {
  font-size: 1.05rem;
  color: var(--ink);
  font-weight: 500;
}

.detail-image {
  width: 100%;
  max-height: 600px;
  object-fit: cover;
  object-position: center 65%;
  border-radius: 16px;
  border: 1px solid var(--line);
  margin-bottom: 14px;
}

.detail-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.detail-box {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface-strong);
  padding: 14px;
  margin-top: 10px;
}

.detail-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: var(--accent-dark);
  margin-bottom: 4px;
}

.detail-actions {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 16px;
}

.panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  padding: 24px;
  position: relative;
}

.panel h2,
.panel h3 {
  margin-top: 0;
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-list li {
  margin-bottom: 10px;
  color: var(--muted);
}

.legal-text h2 {
  margin-top: 28px;
}

.site-footer {
  width: var(--shell);
  margin: 0 auto 28px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 10px;
}

.footer-logo {
  width: clamp(84px, 7vw, 104px);
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  display: block;
  margin-bottom: 4px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-links a {
  text-decoration: none;
  font-size: 0.92rem;
  color: var(--ink);
  font-weight: 600;
}

body[data-page="home"] {
  --home-ink: #2a1f19;
  --home-muted: #65574e;
  --home-line: rgba(94, 73, 59, 0.24);
  --home-cream: #f6ede2;
  --home-surface: rgba(255, 250, 244, 0.78);
  --home-surface-strong: rgba(255, 248, 240, 0.95);
  --home-accent: #a76a4a;
  font-family: "Urbanist", sans-serif;
  background:
    radial-gradient(circle at 82% 12%, rgba(222, 190, 164, 0.32), transparent 48%),
    radial-gradient(circle at 12% 34%, rgba(235, 211, 188, 0.34), transparent 44%),
    linear-gradient(170deg, #fdf8f2 0%, #f7ede1 48%, #f3e5d8 100%);
  color: var(--home-ink);
  overflow-x: clip;
  position: relative;
}

body[data-page="home"]::before {
  content: "";
  position: fixed;
  inset: -20% -10% auto;
  height: 72vh;
  background:
    radial-gradient(circle at 32% 48%, rgba(255, 237, 222, 0.84), transparent 60%),
    radial-gradient(circle at 76% 38%, rgba(188, 137, 108, 0.24), transparent 44%);
  z-index: -2;
  pointer-events: none;
  animation: homeDrift 14s ease-in-out infinite alternate;
}

body[data-page="home"]::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image: linear-gradient(125deg, rgba(255, 255, 255, 0.12) 0%, transparent 30%);
  mix-blend-mode: soft-light;
  opacity: 0.55;
  z-index: -1;
  pointer-events: none;
}

body[data-page="home"] p {
  color: var(--home-muted);
}

body[data-page="home"] h1,
body[data-page="home"] h2,
body[data-page="home"] h3 {
  font-family: "Prata", serif;
  color: var(--home-ink);
  letter-spacing: -0.01em;
}

body[data-page="home"] .eyebrow {
  color: #8f5e40;
  letter-spacing: 0.17em;
}

body[data-page="home"] .site-header {
  position: fixed;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  width: min(1320px, 96%);
  padding: 18px 4px 0;
  background: none;
  border: 0;
  border-radius: 0;
  backdrop-filter: none;
  box-shadow: none;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
}

body[data-page="home"] .brand {
  grid-column: 2;
  justify-self: center;
}

body[data-page="home"] .brand-logo {
  filter: none;
  width: clamp(190px, 16vw, 240px);
}

body[data-page="home"] .main-nav {
  grid-column: 1;
  justify-self: start;
  gap: 26px;
  padding-top: 6px;
}

body[data-page="home"] .main-nav a {
  color: #726760;
  font-size: 0.8rem;
  letter-spacing: 0.11em;
  font-weight: 600;
}

body[data-page="home"] .main-nav a:hover {
  border-color: rgba(114, 103, 96, 0.8);
}

body[data-page="home"] .header-cta.button-primary {
  grid-column: 3;
  justify-self: end;
  background: transparent;
  color: #726760;
  border: 1px solid rgba(114, 103, 96, 0.52);
  padding: 13px 24px;
  border-radius: 0;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

body[data-page="home"] .header-cta.button-primary:hover {
  background: rgba(255, 250, 243, 0.8);
}

body[data-page="home"] .menu-button {
  color: #726760;
  border-color: rgba(114, 103, 96, 0.42);
  background: rgba(255, 248, 240, 0.72);
}

.home-shell {
  width: min(1320px, 96%);
  margin-top: 0;
}

body[data-page="home"] .button {
  font-family: "Urbanist", sans-serif;
  letter-spacing: 0.02em;
}

body[data-page="home"] .button-primary {
  background: linear-gradient(120deg, #3c2a20, #5a3d2e);
  color: #fff8ef;
}

body[data-page="home"] .button-primary:hover {
  background: linear-gradient(120deg, #332217, #4f3528);
}

body[data-page="home"] .button-soft {
  background: rgba(255, 245, 236, 0.18);
  color: #fff6ec;
  border-color: rgba(255, 240, 226, 0.42);
  backdrop-filter: blur(2px);
}

body[data-page="home"] .button-soft:hover {
  border-color: rgba(255, 240, 226, 0.72);
  background: rgba(255, 248, 239, 0.24);
}

body[data-page="home"] .button-ghost {
  color: var(--home-ink);
  border-color: rgba(61, 46, 37, 0.3);
}

body[data-page="home"] .button-ghost:hover {
  background: rgba(255, 251, 246, 0.82);
}

body[data-page="home"] .hero-home {
  min-height: clamp(720px, 90vh, 860px);
  border-radius: 0 0 38px 38px;
  border: 0;
  box-shadow: none;
  background: linear-gradient(180deg, #ebe0d3 0%, #e7dacd 100%);
}

body[data-page="home"] .hero-home::before {
  display: none;
}

.hero-home-grid {
  min-height: inherit;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(430px, 0.98fr);
  gap: clamp(24px, 3.6vw, 56px);
  align-items: center;
  padding: clamp(168px, 15vw, 210px) clamp(18px, 3vw, 42px) clamp(42px, 5vw, 64px);
}

.hero-home-copy {
  padding: 0 0 0 clamp(6px, 1.2vw, 12px);
  max-width: 700px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.hero-home-visual {
  display: flex;
  align-items: center;
  justify-content: end;
  min-height: 0;
}

.hero-home-frame {
  width: min(100%, 560px);
  height: clamp(520px, 70vh, 720px);
  overflow: hidden;
  border-radius: 34px;
  background: rgba(255, 248, 240, 0.62);
  box-shadow: 0 24px 56px rgba(75, 56, 44, 0.1);
}

body[data-page="home"] .hero-home-image {
  width: 100%;
  height: 100%;
  min-height: 0;
  max-height: none;
  object-fit: cover;
  object-position: center 28%;
  transform: none;
  filter: none;
  animation: none;
}

body[data-page="home"] .hero-home-copy h1 {
  max-width: 11.2ch;
  margin-bottom: 14px;
  color: #89756f;
  font-size: clamp(2.5rem, 4.8vw, 4.75rem);
  line-height: 1;
}

body[data-page="home"] .hero-home-copy .hero-intro {
  color: rgba(121, 109, 100, 0.96);
  letter-spacing: 0.16em;
  font-size: 0.82rem;
  margin-bottom: 18px;
}

.hero-home-lead {
  color: #7f6a62;
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 10px;
}

body[data-page="home"] .hero-home-copy .hero-meta {
  margin: 0;
  max-width: 46ch;
  color: #75665e;
  font-size: 1.02rem;
  font-weight: 420;
  text-shadow: none;
}

.hero-pill-row {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-pill-row span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 6px 11px;
  font-size: 0.69rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #7a685f;
  border: 1px solid rgba(122, 104, 95, 0.22);
  background: rgba(255, 250, 244, 0.68);
}

.home-welcome {
  margin-top: 44px;
}

.home-welcome-head {
  max-width: 1180px;
  margin-bottom: 34px;
}

.home-welcome-head h2 {
  font-size: clamp(2.4rem, 5.6vw, 4.7rem);
  max-width: 11ch;
  margin-left: auto;
  margin-right: auto;
}

.home-welcome-head p {
  max-width: 72ch;
  margin-left: auto;
  margin-right: auto;
}

.home-welcome-actions {
  justify-content: center;
  margin-top: 24px;
}

.signature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.signature-card {
  background: var(--home-surface);
  border-color: var(--home-line);
  border-radius: 28px;
  padding: 18px;
  box-shadow: 0 16px 34px rgba(64, 45, 33, 0.1);
}

.signature-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 45%;
  border-radius: 18px;
  border: 1px solid rgba(97, 75, 61, 0.2);
  margin-bottom: 14px;
}

.signature-card h3 {
  margin-bottom: 8px;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
}

.signature-card p {
  margin-bottom: 0;
}

.offerings-shell {
  border-radius: 34px;
  border: 1px solid var(--home-line);
  background: linear-gradient(145deg, rgba(255, 250, 244, 0.92), rgba(246, 233, 220, 0.78));
  box-shadow: 0 28px 60px rgba(58, 40, 28, 0.12);
  padding: clamp(24px, 4vw, 42px);
}

body[data-page="home"] .home-offers .offer-card {
  background: var(--home-surface);
  border-color: var(--home-line);
  box-shadow: 0 20px 40px rgba(59, 41, 30, 0.12);
  backdrop-filter: blur(4px);
}

body[data-page="home"] .home-offers .offer-badge {
  background: rgba(167, 106, 74, 0.15);
  color: #7d4d34;
}

body[data-page="home"] .home-offers .offer-thumb {
  border-color: rgba(99, 78, 63, 0.24);
}

body[data-page="home"] .home-offers .offer-description,
body[data-page="home"] .home-offers .offer-facts {
  color: #5f5048;
}

.editorial-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: center;
}

.editorial-copy {
  background: var(--home-surface-strong);
  border-color: var(--home-line);
  border-radius: 32px;
  padding: clamp(24px, 4vw, 44px);
}

.editorial-copy h2 {
  font-size: clamp(2.05rem, 4.5vw, 3.8rem);
  line-height: 1.06;
  max-width: 15ch;
}

.editorial-stack {
  position: relative;
  min-height: 560px;
}

.editorial-main {
  width: 72%;
  margin-left: auto;
  min-height: 560px;
  height: 100%;
  object-fit: cover;
  object-position: center 52%;
  border-radius: 34px;
  border: 1px solid rgba(97, 75, 61, 0.25);
  box-shadow: 0 30px 70px rgba(52, 36, 27, 0.22);
}

.editorial-float {
  position: absolute;
  left: 0;
  bottom: 28px;
  width: 56%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 42%;
  border-radius: 26px;
  border: 1px solid rgba(97, 75, 61, 0.26);
  box-shadow: 0 24px 54px rgba(52, 36, 27, 0.16);
}

body[data-page="home"] .about-panel {
  border-radius: 34px;
  background: var(--home-surface-strong);
  border-color: var(--home-line);
  box-shadow: 0 26px 56px rgba(59, 41, 30, 0.11);
}

body[data-page="home"] .about-copy p {
  color: var(--home-muted);
}

body[data-page="home"] .about-image img {
  object-position: center 56%;
}

body[data-page="home"] .home-cta {
  border-radius: 34px;
  border: 1px solid rgba(91, 61, 44, 0.25);
  background: linear-gradient(165deg, rgba(255, 249, 241, 0.95), rgba(244, 228, 212, 0.92));
  box-shadow: 0 26px 52px rgba(64, 45, 33, 0.13);
}

body[data-page="home"] .home-cta h2 {
  font-size: clamp(2.1rem, 4.6vw, 4rem);
  max-width: 18ch;
  margin-left: auto;
  margin-right: auto;
}

body[data-page="home"] .home-cta p {
  max-width: 64ch;
  margin-left: auto;
  margin-right: auto;
  color: #5f4e43;
}

body[data-page="home"] .site-footer {
  border-top-color: rgba(93, 74, 60, 0.22);
  padding-top: 28px;
}

body[data-page="home"] .footer-links a {
  color: #3e2f25;
}

@keyframes homeHeroFloat {
  0% {
    transform: scale(1.03) translateY(0);
  }
  100% {
    transform: scale(1.05) translateY(-8px);
  }
}

@keyframes homeDrift {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(24px, -16px, 0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

@media (max-width: 1080px) {
  .card-grid,
  .detail-grid,
  .meta-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .booking-layout,
  .contact-grid,
  .about-panel,
  .video-panel {
    grid-template-columns: 1fr;
  }

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

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

  .editorial-band {
    grid-template-columns: 1fr;
  }

  .editorial-stack {
    min-height: 500px;
    max-width: 680px;
    margin: 0 auto;
  }

  .editorial-main {
    min-height: 500px;
  }

  .home-shell {
    margin-top: 0;
  }

  .hero-home-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-top: 144px;
  }

  .hero-home-copy {
    padding: 0 10px;
    max-width: 820px;
  }

  .hero-home-visual {
    justify-content: center;
    padding: 0 10px 10px;
  }

  .hero-home-frame {
    width: min(100%, 520px);
    height: min(64vh, 560px);
  }
}

@media (max-width: 760px) {
  .site-header {
    width: calc(100% - 14px);
    padding: 11px 12px;
    border-radius: 18px;
  }

  .brand-logo {
    width: 150px;
  }

  .menu-button {
    display: inline-flex;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #ffffff;
    box-shadow: var(--shadow);
    min-width: 210px;
    padding: 12px;
    flex-direction: column;
    align-items: flex-start;
    display: none;
  }

  .main-nav.open {
    display: flex;
  }

  .header-cta {
    display: none;
  }

  .shell {
    width: calc(100% - 14px);
    margin-top: 14px;
  }

  .section {
    margin: 56px 0;
  }

  .hero {
    min-height: 54vh;
    border-radius: 22px;
  }

  .hero-home {
    min-height: 62vh;
  }

  .hero-home-image {
    object-position: center 76%;
  }

  .hero-overlay p {
    font-size: 0.95rem;
  }

  .welcome,
  .booking-wrap,
  .panel,
  .cta-panel,
  .detail-card {
    padding: 20px;
  }

  .logo-bubble {
    width: 74px;
    height: 74px;
  }

  .logo-bubble-hero {
    top: 14px;
    right: 14px;
  }

  .card-grid,
  .detail-grid,
  .meta-grid,
  .form-row,
  .card-grid-home,
  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    width: calc(100% - 14px);
    grid-template-columns: 1fr;
  }

  body[data-page="home"] .home-shell {
    margin-top: 0;
  }

  body[data-page="home"] .site-header {
    width: calc(100% - 14px);
    top: 8px;
    border-radius: 16px;
    padding: 10px 12px;
    background: rgba(255, 249, 242, 0.96);
    border: 1px solid rgba(111, 93, 82, 0.14);
    box-shadow: 0 14px 34px rgba(77, 58, 45, 0.1);
    display: flex;
    backdrop-filter: blur(10px);
  }

  body[data-page="home"] .main-nav {
    background: rgba(255, 250, 245, 0.98);
    border-color: rgba(70, 52, 41, 0.18);
  }

  body[data-page="home"] .main-nav a {
    color: #2d231d;
    letter-spacing: 0.09em;
  }

  body[data-page="home"] .menu-button {
    color: #5b4a40;
  }

  body[data-page="home"] .hero-home {
    min-height: auto;
    border-radius: 0 0 26px 26px;
  }

  .hero-home-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 98px 10px 24px;
  }

  .hero-home-copy {
    padding: 0 10px;
  }

  body[data-page="home"] .hero-home-copy h1 {
    font-size: clamp(2rem, 8.8vw, 3rem);
    max-width: 10ch;
  }

  body[data-page="home"] .hero-home-copy .hero-meta {
    font-size: 0.94rem;
    max-width: 34ch;
  }

  .hero-home-lead {
    font-size: 1rem;
  }

  .hero-home-visual {
    padding: 0 10px 0;
    justify-content: center;
  }

  .hero-home-frame {
    width: min(100%, 360px);
    height: 420px;
    border-radius: 24px;
  }

  .hero-pill-row {
    gap: 6px;
  }

  .hero-pill-row span {
    font-size: 0.67rem;
  }

  .home-welcome-head h2 {
    font-size: clamp(2rem, 9vw, 3.2rem);
  }

  .signature-grid {
    grid-template-columns: 1fr;
  }

  .offerings-shell,
  .editorial-copy,
  body[data-page="home"] .about-panel,
  body[data-page="home"] .home-cta {
    border-radius: 24px;
  }

  .editorial-stack {
    min-height: 370px;
  }

  .editorial-main {
    width: 84%;
    min-height: 360px;
    border-radius: 22px;
  }

  .editorial-float {
    width: 62%;
    bottom: 12px;
    border-radius: 18px;
  }
}

/* Homepage one-page redesign */
body[data-page="home"] {
  --home-bg: #f4efe8;
  --home-bg-soft: #fbf8f4;
  --home-bg-accent: #e9dfd4;
  --home-panel: rgba(255, 252, 248, 0.88);
  --home-text: #4d433e;
  --home-muted: #6c625c;
  --home-line: rgba(77, 67, 62, 0.12);
  --home-primary: #8e7066;
  --home-primary-dark: #7a5e55;
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top right, rgba(233, 223, 212, 0.55), transparent 28%),
    linear-gradient(180deg, #f7f2eb 0%, #f4efe8 100%);
  color: var(--home-text);
}

body[data-page="home"]::before,
body[data-page="home"]::after {
  display: none;
}

body[data-page="home"] h1,
body[data-page="home"] h2,
body[data-page="home"] h3 {
  font-family: "Cormorant Garamond", serif;
  color: var(--home-text);
  letter-spacing: 0;
}

body[data-page="home"] p,
body[data-page="home"] li,
body[data-page="home"] summary,
body[data-page="home"] .main-nav a {
  color: var(--home-muted);
}

body[data-page="home"] .site-header {
  position: fixed;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1380px, calc(100% - 32px));
  margin: 0;
  padding: 10px 18px;
  border-radius: 22px;
  border: 1px solid var(--home-line);
  background: rgba(251, 248, 244, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 40px rgba(77, 67, 62, 0.08);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  z-index: 80;
}

body[data-page="home"] .brand {
  grid-column: 1;
  justify-self: start;
}

body[data-page="home"] .brand-logo {
  width: clamp(122px, 10vw, 168px);
  filter: none;
}

body[data-page="home"] .section-head.center::before,
body[data-page="home"] .home-about-brand .text-block-large::before,
body[data-page="home"] .home-qualifications .narrow-shell::before,
body[data-page="home"] .home-final-cta .narrow-shell::before {
  content: "";
  display: block;
  width: 70px;
  height: 70px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: url("../images/logo-circle-original.png?v=2") center / cover no-repeat;
  opacity: 0.16;
}

body[data-page="home"] .home-about-brand .text-block-large::before,
body[data-page="home"] .home-qualifications .narrow-shell::before,
body[data-page="home"] .home-final-cta .narrow-shell::before {
  margin-left: 0;
  margin-right: 0;
}

body[data-page="home"] .main-nav {
  grid-column: 2;
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: nowrap;
  white-space: nowrap;
}

body[data-page="home"] .main-nav a,
body[data-page="home"] .nav-dropdown-link {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px solid transparent;
  padding: 4px 0;
  white-space: nowrap;
}

body[data-page="home"] .main-nav a:hover,
body[data-page="home"] .nav-dropdown-link:hover {
  border-color: rgba(77, 67, 62, 0.28);
}

body[data-page="home"] .nav-dropdown {
  position: relative;
  padding-bottom: 14px;
  margin-bottom: -14px;
}

body[data-page="home"] .nav-dropdown:hover .nav-dropdown-menu,
body[data-page="home"] .nav-dropdown:focus-within .nav-dropdown-menu {
  display: grid;
}

body[data-page="home"] .nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: -12px;
  min-width: 260px;
  padding: 14px;
  border: 1px solid var(--home-line);
  border-radius: 18px;
  background: rgba(255, 253, 249, 0.98);
  box-shadow: 0 18px 40px rgba(77, 67, 62, 0.08);
  display: none;
  gap: 6px;
}

body[data-page="home"] .nav-dropdown-menu a {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  padding: 8px 10px;
  border-radius: 10px;
  transition: background 0.15s;
}

body[data-page="home"] .nav-dropdown-menu a:hover {
  background: rgba(77, 67, 62, 0.06);
}

body[data-page="home"] .header-cta {
  grid-column: 3;
  justify-self: end;
  padding: 10px 18px;
}

body[data-page="home"] .button,
body[data-page="home"] .button-primary,
body[data-page="home"] .button-soft,
body[data-page="home"] .button-ghost {
  background: var(--home-primary);
  color: #fffaf6;
  border: 1px solid var(--home-primary);
  border-radius: 999px;
  padding: 14px 24px;
  font-family: "Manrope", sans-serif;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 14px 28px rgba(142, 112, 102, 0.18);
}

body[data-page="home"] .button:hover,
body[data-page="home"] .button-primary:hover,
body[data-page="home"] .button-soft:hover,
body[data-page="home"] .button-ghost:hover {
  background: var(--home-primary-dark);
  border-color: var(--home-primary-dark);
}

body[data-page="home"] .home-page {
  padding-top: 108px;
}

body[data-page="home"] .shell {
  width: min(1160px, 90%);
  margin: 0 auto;
}

.home-anchor,
.offer-overview-card {
  scroll-margin-top: 120px;
}

.narrow-shell {
  max-width: 820px;
}

.home-section {
  padding: clamp(84px, 11vw, 128px) 0;
}

.home-hero {
  position: relative;
  min-height: calc(100svh - 142px);
  padding: 140px 0 86px;
  display: flex;
  align-items: center;
  overflow: visible;
  border-radius: 0;
}

.home-hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.8fr);
  align-items: center;
  gap: clamp(42px, 8vw, 110px);
}

.home-hero-copy {
  max-width: 760px;
  padding: 16px 0 28px;
}

.home-hero::after {
  display: none;
}

.home-hero-visual {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.home-hero-frame {
  position: relative;
  width: min(100%, 520px);
  aspect-ratio: 0.84;
  overflow: hidden;
  border-radius: 34px;
  background: rgba(233, 223, 212, 0.64);
  border: 1px solid rgba(77, 67, 62, 0.08);
  box-shadow: 0 24px 54px rgba(77, 67, 62, 0.12);
}

.home-hero-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 24%;
}

.home-kicker {
  margin-bottom: 18px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.home-hero h1 {
  margin-bottom: 22px;
  max-width: 8.2ch;
  font-size: clamp(4rem, 7vw, 6.3rem);
  line-height: 0.92;
}

.home-subline {
  max-width: 38rem;
  font-size: 1.08rem;
  margin-bottom: 14px;
}

.home-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.home-intro {
  text-align: center;
}

.home-intro-overlay-card {
  position: relative;
  width: min(100%, 100%);
  margin: 0 auto;
  aspect-ratio: 2.15;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid var(--home-line);
  box-shadow: 0 24px 54px rgba(77, 67, 62, 0.08);
}

.home-intro-overlay-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(35, 29, 25, 0.08) 0%, rgba(35, 29, 25, 0) 28%),
    linear-gradient(0deg, rgba(35, 29, 25, 0.36) 0%, rgba(35, 29, 25, 0.1) 34%, rgba(35, 29, 25, 0) 62%);
  pointer-events: none;
}

.home-intro-overlay-card > img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 44%;
}

.home-intro-overlay-copy {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 14px;
  z-index: 1;
  width: auto;
  max-width: none;
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(0, 1.45fr);
  gap: 24px;
  align-items: end;
  padding: 18px 22px 16px;
  border-radius: 24px;
  background: rgba(247, 242, 235, 0.82);
  backdrop-filter: blur(10px);
  text-align: left;
}

.home-intro-overlay-copy h2 {
  margin: 0;
  font-size: clamp(2.3rem, 3.1vw, 3.2rem);
  line-height: 0.98;
}

.home-intro-overlay-copy p {
  margin: 0;
  font-size: 1rem;
}

.home-intro h2,
.home-about-brand h2,
.home-about-me h2,
.home-qualifications h2,
.home-final-cta h2,
.section-head h2 {
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 4vw, 4rem);
}

.section-head.center {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head.center p {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.image-block {
  width: min(1240px, 94%);
  margin: 0 auto;
}

.image-block img {
  width: 100%;
  height: clamp(320px, 48vw, 520px);
  object-fit: cover;
  object-position: center 45%;
  border-radius: 34px;
}

.offer-overview-grid,
.three-column-grid,
.benefit-grid-home {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.offer-overview-card,
.text-card,
.benefit-card-home {
  padding: 32px 28px;
  border: 1px solid var(--home-line);
  border-radius: 28px;
  background: var(--home-panel);
  box-shadow: 0 18px 38px rgba(77, 67, 62, 0.06);
}

.offer-overview-card h3,
.text-card h3,
.benefit-card-home h3 {
  margin-bottom: 14px;
  font-size: clamp(1.55rem, 2.2vw, 2.1rem);
}

.offer-overview-card p,
.text-card p,
.benefit-card-home p {
  margin-bottom: 22px;
}

.offer-overview-card .button {
  margin-top: auto;
}

.text-block-large p,
.about-me-copy p {
  margin-bottom: 18px;
}

.text-block-large {
  background: transparent;
}

.about-brand-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.82fr);
  gap: 46px;
  align-items: start;
}

.about-brand-image img {
  width: 100%;
  height: clamp(420px, 58vw, 700px);
  object-fit: cover;
  object-position: center 32%;
  border-radius: 32px;
  border: 1px solid var(--home-line);
  box-shadow: 0 24px 54px rgba(77, 67, 62, 0.08);
}

.about-me-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.88fr) minmax(0, 1.12fr);
  gap: 46px;
  align-items: start;
}

.about-me-image img {
  width: 100%;
  height: clamp(460px, 62vw, 760px);
  object-fit: cover;
  object-position: center 26%;
  border-radius: 32px;
}

.qualification-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--home-line);
}

.qualification-list li {
  padding: 18px 0;
  margin: 0;
  border-bottom: 1px solid var(--home-line);
  font-size: 1rem;
}

.home-final-cta {
  background: var(--home-bg-accent);
  border-radius: 40px 40px 0 0;
}

.home-final-cta .narrow-shell {
  text-align: center;
}

.home-final-cta p {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.home-final-cta .button {
  margin-top: 18px;
}

body[data-page="home"] .site-footer {
  width: min(1240px, 94%);
  margin: 0 auto 28px;
  padding: 28px 0 8px;
  border-top: 1px solid var(--home-line);
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 18px;
  align-items: center;
  background: transparent;
}

body[data-page="home"] .footer-links {
  gap: 16px;
}

body[data-page="home"] .footer-links a {
  font-size: 0.9rem;
  color: var(--home-muted);
}

@media (max-width: 1100px) {
  body[data-page="home"] .site-header {
    width: calc(100% - 24px);
    padding: 8px 14px;
    gap: 14px;
  }

  body[data-page="home"] .brand-logo {
    width: 132px;
  }

  body[data-page="home"] .main-nav {
    gap: 14px;
  }

  body[data-page="home"] .main-nav a,
  body[data-page="home"] .nav-dropdown-link {
    font-size: 0.68rem;
    letter-spacing: 0.08em;
  }

  body[data-page="home"] .home-page {
    padding-top: 104px;
  }

  .home-hero {
    min-height: auto;
    padding: 28px 0 74px;
  }

  .home-hero-shell {
    grid-template-columns: 1fr;
    gap: 42px;
    align-items: start;
  }

  .home-hero-copy {
    max-width: 100%;
    padding-bottom: 0;
  }

  .home-hero-visual {
    justify-content: flex-start;
  }

  .home-hero-frame {
    width: min(100%, 520px);
    aspect-ratio: 0.92;
  }

  .offer-overview-grid,
  .three-column-grid,
  .benefit-grid-home {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-me-grid {
    grid-template-columns: 1fr;
  }

  .about-brand-grid {
    grid-template-columns: 1fr;
  }

  .home-hero h1 {
    max-width: 9ch;
    font-size: clamp(3.4rem, 8.2vw, 5rem);
  }
}

@media (max-width: 820px) {
  body[data-page="home"] .site-header {
    grid-template-columns: auto auto;
    width: calc(100% - 18px);
    padding: 8px 12px;
    border-radius: 20px;
  }

  body[data-page="home"] .brand {
    grid-column: 1;
    justify-self: start;
  }

  body[data-page="home"] .brand-logo {
    width: 104px;
  }

  body[data-page="home"] .section-head.center::before,
  body[data-page="home"] .home-about-brand .text-block-large::before,
  body[data-page="home"] .home-qualifications .narrow-shell::before,
  body[data-page="home"] .home-final-cta .narrow-shell::before {
    width: 58px;
    height: 58px;
    margin-bottom: 14px;
  }

  body[data-page="home"] .menu-button {
    display: inline-flex;
    grid-column: 2;
    justify-self: end;
    color: var(--home-text);
    border-color: var(--home-line);
    background: rgba(255, 253, 249, 0.92);
  }

  body[data-page="home"] .main-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: auto;
    width: min(320px, calc(100vw - 18px));
    padding: 18px;
    border: 1px solid var(--home-line);
    border-radius: 22px;
    background: rgba(255, 253, 249, 0.98);
    box-shadow: 0 18px 40px rgba(77, 67, 62, 0.1);
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    display: none;
    grid-column: 1 / -1;
    justify-self: end;
  }

  body[data-page="home"] .main-nav.open {
    display: flex;
  }

  body[data-page="home"] .nav-dropdown {
    width: 100%;
  }

  body[data-page="home"] .nav-dropdown-menu {
    position: static;
    min-width: 0;
    margin-top: 10px;
    padding: 10px 0 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    display: grid;
  }

  body[data-page="home"] .header-cta {
    display: none;
  }

  .home-hero {
    min-height: auto;
    padding: 22px 0 56px;
  }

  body[data-page="home"] .home-page {
    padding-top: 88px;
  }

  .home-hero-shell {
    gap: 34px;
  }

  .home-hero h1 {
    max-width: 8.8ch;
    font-size: clamp(2.9rem, 13.5vw, 4.4rem);
  }

  .home-subline {
    font-size: 0.96rem;
    max-width: 30rem;
  }

  .home-intro-overlay-card {
    width: 100%;
    aspect-ratio: 1.08;
    border-radius: 24px;
  }

  .page-intro::before {
    width: 66px;
    height: 66px;
    margin-bottom: 16px;
  }

  .home-intro-overlay-copy {
    left: 18px;
    right: 18px;
    bottom: 18px;
    width: auto;
    max-width: none;
    display: block;
    padding: 18px 18px 16px;
    border-radius: 18px;
  }

  .home-intro-overlay-copy h2 {
    margin-bottom: 12px;
  }

  .home-hero-frame {
    width: 100%;
    aspect-ratio: 0.92;
    border-radius: 24px;
  }

  .offer-overview-grid,
  .three-column-grid,
  .benefit-grid-home {
    grid-template-columns: 1fr;
  }

  .image-block img {
    height: 280px;
    border-radius: 24px;
  }

  .home-final-cta {
    border-radius: 28px 28px 0 0;
  }

  body[data-page="home"] .site-footer {
    width: calc(100% - 18px);
    grid-template-columns: 1fr;
    text-align: left;
  }
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: 18px 24px;
  background: rgba(251, 248, 244, 0.97);
  border-top: 1px solid rgba(77, 67, 62, 0.1);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-size: 0.82rem;
  line-height: 1.5;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-banner p {
  max-width: 520px;
  margin: 0;
  color: var(--text-muted);
}

.cookie-banner a {
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-btn {
  font-size: 0.75rem !important;
  padding: 8px 16px !important;
}

/* Workshop Popup */
.workshop-popup {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9998;
  width: min(360px, calc(100vw - 48px));
  padding: 24px;
  background: rgba(255, 253, 249, 0.98);
  border: 1px solid rgba(77, 67, 62, 0.1);
  border-radius: 22px;
  box-shadow: 0 20px 50px rgba(77, 67, 62, 0.14);
  backdrop-filter: blur(10px);
  animation: popupSlideIn 0.4s ease-out;
}

.workshop-popup.hidden {
  display: none;
}

@keyframes popupSlideIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.workshop-popup-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--text-muted);
  line-height: 1;
  padding: 4px;
}

.workshop-popup-close:hover {
  color: var(--text);
}

.workshop-popup-eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent, #b08c6a);
  margin-bottom: 14px;
}

.workshop-popup-list {
  display: grid;
  gap: 10px;
}

.workshop-popup-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(77, 67, 62, 0.03);
  text-decoration: none;
  transition: background 0.15s;
}

.workshop-popup-item:hover {
  background: rgba(77, 67, 62, 0.07);
}

.workshop-popup-item strong {
  font-size: 0.88rem;
  color: var(--text);
}

.workshop-popup-item span {
  font-size: 0.76rem;
  color: var(--text-muted);
}

@media (max-width: 760px) {
  .cookie-banner {
    flex-direction: column;
    padding: 16px;
    gap: 12px;
    text-align: center;
  }

  .workshop-popup {
    bottom: 14px;
    right: 14px;
    left: 14px;
    width: auto;
  }
}

/* Booking Confirmation Overlay */
.booking-confirm-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(4px);
  animation: fadeIn 0.2s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.booking-confirm-dialog {
  background: #fff;
  border-radius: 18px;
  padding: 36px 32px 28px;
  max-width: 440px;
  width: calc(100% - 40px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
  text-align: left;
}

.booking-confirm-dialog h3 {
  font-family: var(--font-heading, "Cormorant Garamond", serif);
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: var(--text);
}

.booking-confirm-dialog p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.booking-confirm-dialog ul {
  list-style: none;
  padding: 0;
  margin: 14px 0 18px;
  background: var(--bg-soft, #fbf7f2);
  border-radius: 10px;
  padding: 16px 20px;
}

.booking-confirm-dialog li {
  font-size: 0.95rem;
  padding: 4px 0;
  color: var(--text);
}

.booking-confirm-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.booking-confirm-buttons .button-secondary {
  background: transparent;
  border: 1px solid var(--text-muted);
  color: var(--text-muted);
  cursor: pointer;
  padding: 12px 24px;
  border-radius: 999px;
  font-size: 0.9rem;
  transition: all 0.2s;
}

.booking-confirm-buttons .button-secondary:hover {
  border-color: var(--text);
  color: var(--text);
}
