:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-2: #111111;
  --text: #1c1a18;
  --muted: #6d655d;
  --line: rgba(36, 30, 24, 0.12);
  --gold: #c89b45;
  --gold-2: #e0b86a;
  --shadow: 0 18px 50px rgba(0,0,0,.12);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --max: 1220px;
  --nav-h: 84px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: #ffffff;
  color: var(--text);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.container {
  width: min(calc(100% - 32px), var(--max));
  margin-inline: auto;
}

.topbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  transition: .35s ease;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0,0,0,.06);
}

.topbar.scrolled {
  background: rgba(255,255,255,.95);
  box-shadow: 0 10px 25px rgba(0,0,0,.06);
}

.nav {
  min-height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
}

.site-logo {
  height: 54px;
  width: auto;
  display: block;
}

.menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  color: #2f2a25;
  font-size: .95rem;
  flex: 1;
}

.menu a {
  position: relative;
  padding: 8px 0;
}

.menu a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .28s ease;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: .3s ease;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 100%);
  color: white;
  box-shadow: 0 14px 26px rgba(200,155,69,.25);
}

.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 30px rgba(200,155,69,.33); }

.btn-secondary {
  background: transparent;
  border-color: rgba(255,255,255,.45);
  color: white;
}

.btn-secondary:hover { background: rgba(255,255,255,.08); }

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,.08);
  background: white;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  content: '';
  display: block;
  width: 18px;
  height: 2px;
  background: #25201d;
  position: relative;
  transition: .3s ease;
}

.menu-toggle span::before { position: absolute; top: -6px; }
.menu-toggle span::after { position: absolute; top: 6px; }

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: calc(var(--nav-h) + 16px) 0 56px;
  background:
    linear-gradient(90deg, rgba(12,10,9,.78) 0%, rgba(12,10,9,.42) 42%, rgba(12,10,9,.18) 100%),
    url('images/1/head.jpeg') center/cover no-repeat;
  color: white;
  isolation: isolate;
}


.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 36px;
  align-items: end;
}

.eyebrow {
  color: var(--gold-2);
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: .8rem;
  margin-bottom: 18px;
}

h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  margin: 0;
  letter-spacing: -.02em;
}

h1 {
  font-size: clamp(3.3rem, 6vw, 6rem);
  line-height: .95;
  margin-bottom: 18px;
}

.hero-cinzel {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  font-weight: 600;
  letter-spacing: -.02em;
  line-height: .95;
  color: white;
  margin: 0 0 6px;
}

.hero-just-married {
  font-family: 'Southern', cursive;
  font-size: clamp(3rem, 5.5vw, 5.2rem);
  line-height: 1.1;
  font-weight: 400;
  letter-spacing: 0;
  margin: 0 0 22px;
  color: var(--gold-2);
}

.script {
  font-family: 'Southern', cursive;
  color: var(--gold-2);
  font-weight: 400;
}

i,
em,
[style*="font-style: italic"],
[style*="font-style:italic"] {
  font-family: 'Southern', cursive !important;
  font-style: normal !important;
}

.lead {
  max-width: 620px;
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255,255,255,.86);
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 700px;
}

.stat {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(8px);
  border-radius: 18px;
  padding: 18px;
}

.stat strong {
  display: block;
  font-size: 1.35rem;
  margin-bottom: 4px;
}

.stat span {
  color: rgba(255,255,255,.72);
  font-size: .92rem;
}

.hero-card {
  justify-self: end;
  width: min(100%, 430px);
  background: rgba(255,251,245,.92);
  color: var(--text);
  border-radius: var(--radius-xl);
  padding: 24px;
  box-shadow: var(--shadow);
  transform: translateY(26px);
}

.hero-card img {
  aspect-ratio: 4/4.6;
  object-fit: cover;
  border-radius: 22px;
  margin-bottom: 18px;
}

.hero-card h3 {
  font-size: 1.95rem;
  margin-bottom: 10px;
}

.hero-card p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0 0 18px;
}

.section {
  padding: 90px 0;
  position: relative;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.section-head h2 {
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: .95;
}

.section-head p {
  max-width: 560px;
  color: var(--muted);
  line-height: 1.8;
  margin: 12px 0 0;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.02fr;
  gap: 34px;
  align-items: center;
}

.story-photos {
  display: grid;
  grid-template-columns: 1.05fr .75fr;
  gap: 18px;
}

.story-photos img,
.cta-grid img,
.gallery-card img,
.offer-card img,
.testimonial-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.story-photos .tall {
  aspect-ratio: 4/5.2;
}

.story-photos .stack {
  display: grid;
  gap: 18px;
}

.story-photos .stack img:first-child { aspect-ratio: 1/1.1; }
.story-photos .stack img:last-child { aspect-ratio: 1/1.45; }

.story-copy {
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(0,0,0,.05);
  border-radius: var(--radius-xl);
  padding: 34px;
}

.story-copy h2 { margin-bottom: 18px; }
.story-copy p { color: var(--muted); line-height: 1.9; }

.feature-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.feature-pill {
  background: white;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid var(--line);
  text-align: center;
}

.feature-pill strong {
  display: block;
  margin-top: 8px;
  font-size: .96rem;
}

.feature-pill span {
  color: var(--muted);
  font-size: .88rem;
}

.offers-wrap {
  background: radial-gradient(circle at top left, rgba(200,155,69,.15), transparent 30%), #0f0d0b;
  color: white;
  border-radius: 38px;
  padding: 36px;
  overflow: hidden;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 22px;
  margin-top: 28px;
}

.offer-card {
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 26px;
  overflow: hidden;
  transition: transform .35s ease, border-color .35s ease;
  height: 100%;
}

.offer-card:hover {
  transform: translateY(-8px);
  border-color: rgba(224,184,106,.55);
}

.offer-card img {
  aspect-ratio: 1.15/1;
  height: auto;
  border-radius: 0;
  box-shadow: none;
}

.offer-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 22px;
}

.offer-body h3 { font-size: 2rem; margin-bottom: 8px; }
.offer-body p { color: rgba(255,255,255,.72); line-height: 1.75; margin: 0 0 18px; }
.offer-subtitle { font-family: 'Southern', cursive; font-style: normal; font-size: 1.38rem; line-height: 1.35; color: var(--gold) !important; margin: 0 0 12px !important; }
.offer-tag { display: inline-flex; padding: 8px 12px; border-radius: 999px; background: rgba(200,155,69,.12); color: var(--gold-2); font-size: .86rem; }
.offer-body .btn { margin-top: auto !important; }

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

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  min-height: 260px;
  box-shadow: var(--shadow);
}

.gallery-card:nth-child(1) { grid-column: span 3; }
.gallery-card:nth-child(2) { grid-column: span 3; }
.gallery-card:nth-child(3) { grid-column: span 3; }
.gallery-card:nth-child(4) { grid-column: span 3; }
.gallery-card:nth-child(5) { grid-column: span 3; }
.gallery-card:nth-child(6) { grid-column: span 3; }

.gallery-card img {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  transition: transform .6s ease;
}

.gallery-card:hover img { transform: scale(1.08); }

.gallery-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,.88) 0%, rgba(0,0,0,.58) 48%, rgba(0,0,0,.16) 100%);
  color: white;
}

.gallery-overlay strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.gallery-overlay span {
  color: rgba(255,255,255,.78);
  font-size: .9rem;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 24px;
  align-items: stretch;
}

.testimonial-card,
.testimonial-quote {
  background: white;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,.05);
}

.testimonial-card {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
}

.testimonial-card img { border-radius: 0; box-shadow: none; }

.testimonial-copy {
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.testimonial-copy h3 { font-size: 2.1rem; margin-bottom: 14px; }
.testimonial-copy p,
.testimonial-quote p { line-height: 1.85; color: var(--muted); }

.testimonial-quote {
  padding: 30px;
  background: linear-gradient(135deg, #fffaf4 0%, #f6efe4 100%);
}

.quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  line-height: .7;
  color: rgba(200,155,69,.42);
}

.quote-author {
  margin-top: 20px;
  font-weight: 700;
}

/* Client testimonials */
.reviews-section {
  background: #0f0d0b;
}

.reviews-shell {
  position: relative;
  background:
    radial-gradient(circle at top left, rgba(200,155,69,.18), transparent 32%),
    radial-gradient(circle at bottom right, rgba(200,155,69,.1), transparent 28%),
    linear-gradient(135deg, #14110d 0%, #0b0907 100%);
  border: 1px solid rgba(200,155,69,.14);
  border-radius: 38px;
  padding: 42px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.reviews-head {
  margin-bottom: 24px;
}

.reviews-head h2,
.reviews-head p {
  color: white;
}

.reviews-head p {
  color: rgba(255,255,255,.68);
  max-width: 520px;
}

.reviews-slider {
  display: grid;
  gap: 24px;
}

.reviews-viewport {
  overflow: hidden;
}

.reviews-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 24px) / 2);
  gap: 24px;
  transition: transform .55s ease;
  will-change: transform;
}

.review-slide {
  min-width: 0;
}

.review-card {
  background: #1a1713;
  border-radius: var(--radius-xl);
  padding: 26px 24px 24px;
  border: 1px solid rgba(200,155,69,.18);
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
  min-height: 100%;
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}

.review-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.03), transparent 45%);
  pointer-events: none;
}

.review-card:hover {
  transform: translateY(-8px);
  border-color: rgba(224,184,106,.38);
  box-shadow: 0 24px 55px rgba(0,0,0,.22);
}

.review-card-featured {
  background:
    linear-gradient(180deg, rgba(200,155,69,.12), rgba(200,155,69,0) 42%),
    #1a1713;
}

.review-quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4.4rem;
  line-height: 1;
  color: rgba(200,155,69,.18);
  position: absolute;
  top: 8px;
  right: 18px;
  font-weight: 700;
  pointer-events: none;
}

.review-stars {
  color: var(--gold);
  font-size: .9rem;
  letter-spacing: 3px;
}

.review-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.18rem;
  line-height: 1.72;
  color: rgba(255,255,255,.82);
  font-style: italic;
  flex: 1;
  margin: 0;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(200,155,69,.2);
  padding-top: 16px;
}

.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.review-author strong {
  display: block;
  font-size: .9rem;
  color: #fff;
}

.review-author span {
  font-size: .76rem;
  color: rgba(255,255,255,.5);
  margin-top: 2px;
  display: block;
}

.reviews-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.reviews-nav {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform .3s ease, border-color .3s ease, background .3s ease;
}

.reviews-nav:hover {
  transform: translateY(-2px);
  border-color: rgba(224,184,106,.55);
  background: rgba(255,255,255,.08);
}

.reviews-nav:disabled {
  opacity: .45;
  cursor: not-allowed;
  transform: none;
  border-color: rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
}

.reviews-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.reviews-dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.24);
  padding: 0;
  cursor: pointer;
  transition: width .3s ease, background .3s ease, transform .3s ease;
}

.reviews-dot.active {
  width: 34px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 100%);
}

.cta-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 28px;
  align-items: center;
  background: linear-gradient(135deg, #1b1713 0%, #0e0c0a 100%);
  border-radius: 36px;
  padding: 28px;
  color: white;
  box-shadow: var(--shadow);
}

.cta-grid img {
  aspect-ratio: 16/10;
  border-radius: 26px;
  box-shadow: none;
}

.cta-copy {
  padding: 18px;
}

.cta-copy h2 {
  font-size: clamp(2.6rem, 4vw, 4rem);
  margin-bottom: 14px;
}

.cta-copy p {
  color: rgba(255,255,255,.74);
  line-height: 1.85;
  margin: 0 0 24px;
  max-width: 520px;
}

.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

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

.social-btn {
  width: 100%;
  justify-content: flex-start;
  min-height: 62px;
  padding: 0 18px;
  border: 1px solid rgba(255,255,255,.26);
  background: linear-gradient(135deg, rgba(200,155,69,.95) 0%, rgba(224,184,106,.95) 100%);
  color: white;
  border-radius: 18px;
  font-weight: 600;
  box-shadow: 0 14px 30px rgba(200,155,69,.22);
  transition: transform .28s ease, box-shadow .28s ease, background .28s ease, border-color .28s ease, color .28s ease;
}

.social-btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.social-btn-icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.18);
  transition: background .25s ease, transform .25s ease, color .25s ease;
}

.social-btn-label {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
}

.social-btn-label strong {
  font-size: .98rem;
}

.social-btn-label span {
  font-size: .76rem;
  color: rgba(255,255,255,.82);
  margin-top: 4px;
  transition: color .25s ease;
}

.social-btn-instagram .social-btn-icon {
  color: white;
}

.social-btn-facebook .social-btn-icon {
  color: white;
}

.social-actions .social-btn:hover,
.social-actions .social-btn:focus-visible {
  transform: translateY(-3px);
  color: white;
  box-shadow: 0 18px 34px rgba(0,0,0,.16);
}

.social-actions .social-btn:hover .social-btn-icon,
.social-actions .social-btn:focus-visible .social-btn-icon {
  background: rgba(255,255,255,.2);
  color: white;
  transform: scale(1.05);
}

.social-actions .social-btn:hover .social-btn-label span,
.social-actions .social-btn:focus-visible .social-btn-label span {
  color: rgba(255,255,255,.9);
}

.social-actions .social-btn.social-btn-instagram:hover,
.social-actions .social-btn.social-btn-instagram:focus-visible {
  background: linear-gradient(135deg, #f58529 0%, #dd2a7b 52%, #8134af 100%);
  border-color: rgba(255,255,255,.2);
}

.social-actions .social-btn.social-btn-facebook:hover,
.social-actions .social-btn.social-btn-facebook:focus-visible {
  background: #1877f2;
  border-color: #1877f2;
}

footer {
  padding: 26px 0 40px;
}

.footer-wrap {
  background: #0f0d0b;
  color: rgba(255,255,255,.78);
  border-radius: 34px;
  padding: 38px 28px 22px;
}

.footer-logo {
  filter: brightness(0) invert(1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .9fr;
  gap: 26px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,.09);
}

.footer-wrap h4 {
  color: white;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  margin: 0 0 16px;
}

.footer-wrap p,
.footer-wrap li,
.footer-wrap a { color: rgba(255,255,255,.72); line-height: 1.8; }

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: color .25s ease, transform .25s ease;
}

.footer-social-link:hover,
.footer-social-link:focus-visible {
  color: white;
  transform: translateX(2px);
}

.footer-social-icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-2);
}

.footer-social-icon svg {
  width: 100%;
  height: 100%;
}

.footer-bottom {
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  font-size: .92rem;
}

.booking-section {
  padding-top: 138px;
  background:
    radial-gradient(circle at top left, rgba(200,155,69,.12), transparent 24%),
    #ffffff;
}

.booking-hero {
  display: grid;
  grid-template-columns: 1.3fr .8fr;
  gap: 24px;
  margin-bottom: 34px;
  align-items: stretch;
}

.booking-hero-copy {
  background: linear-gradient(135deg, #201812 0%, #0f0d0b 100%);
  color: white;
  border-radius: 34px;
  padding: 38px 34px;
  position: relative;
  overflow: hidden;
}

.booking-hero-copy::after {
  content: "";
  position: absolute;
  inset: auto -40px -60px auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,155,69,.28) 0%, rgba(200,155,69,0) 72%);
}

.booking-hero-copy h1 {
  margin-bottom: 16px;
}

.booking-hero-copy p {
  max-width: 720px;
  margin: 0;
  color: rgba(255,255,255,.82);
  line-height: 1.8;
}

.booking-hero-card {
  background: linear-gradient(145deg, var(--gold) 0%, #9d6d2d 100%);
  color: white;
  border-radius: 34px;
  padding: 30px 28px;
  display: grid;
  align-content: start;
  gap: 14px;
  box-shadow: 0 22px 50px rgba(114, 81, 31, .2);
}

.booking-hero-kicker {
  display: inline-flex;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.16);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.booking-hero-card strong {
  font-size: 1.25rem;
  line-height: 1.45;
}

.booking-hero-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.booking-hero-points li {
  padding-left: 20px;
  position: relative;
  line-height: 1.6;
}

.booking-hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .68em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: white;
}

.booking-shell {
  background:
    radial-gradient(circle at top right, rgba(200,155,69,.14), transparent 24%),
    linear-gradient(145deg, #1a1510 0%, #0d0b09 100%);
  border: 1px solid rgba(200,155,69,.18);
  border-radius: 36px;
  padding: 38px;
  box-shadow: 0 28px 72px rgba(12, 10, 7, .34);
}

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

.booking-grid {
  display: grid;
  gap: 18px;
}

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

.booking-block {
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,.04) 0%, rgba(255,255,255,.02) 100%);
  border: 1px solid rgba(200,155,69,.14);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04), 0 16px 36px rgba(0,0,0,.16);
}

.booking-block-accent {
  background: linear-gradient(135deg, rgba(200,155,69,.16) 0%, rgba(255,255,255,.05) 55%);
}

.booking-block-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  margin-bottom: 18px;
}

.booking-step {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gold) 0%, #8f6224 100%);
  color: white;
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .08em;
  box-shadow: 0 12px 24px rgba(114, 81, 31, .25);
}

.booking-block h2 {
  margin: 0 0 6px;
  font-size: 1.3rem;
  color: white;
}

.booking-block p {
  margin: 0;
  color: rgba(255,255,255,.68);
  line-height: 1.7;
}

.booking-field {
  display: grid;
  gap: 9px;
}

.booking-field span {
  font-size: .94rem;
  font-weight: 600;
  color: rgba(255,255,255,.9);
}

.booking-field input,
.booking-field textarea {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid rgba(200,155,69,.16);
  border-radius: 16px;
  font: inherit;
  font-size: .96rem;
  color: white;
  background: rgba(255,255,255,.05);
  outline: none;
  transition: border-color .22s ease, box-shadow .22s ease, transform .22s ease;
}

.booking-field input::placeholder,
.booking-field textarea::placeholder {
  color: rgba(255,255,255,.42);
}

.booking-field input:focus,
.booking-field textarea:focus {
  border-color: rgba(200,155,69,.5);
  box-shadow: 0 0 0 4px rgba(200,155,69,.12);
  transform: translateY(-1px);
}

.booking-field textarea {
  resize: vertical;
  min-height: 120px;
}

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

.booking-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 18px;
  border: 1px solid rgba(200,155,69,.14);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,.05) 0%, rgba(255,255,255,.02) 100%);
  cursor: pointer;
  transition: border-color .22s ease, transform .22s ease, box-shadow .22s ease;
}

.booking-check:hover {
  border-color: rgba(200,155,69,.4);
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(0,0,0,.22);
}

.booking-check input {
  margin-top: 3px;
  accent-color: var(--gold);
}

.booking-check span {
  color: rgba(255,255,255,.9);
  line-height: 1.55;
  font-weight: 600;
}

.booking-submit {
  width: 100%;
  justify-content: center;
  min-height: 58px;
  font-size: 1rem;
  letter-spacing: .04em;
}

.booking-note {
  margin: -2px 0 0;
  color: rgba(255,255,255,.66);
  text-align: center;
  line-height: 1.7;
}

.booking-feedback {
  margin-bottom: 24px;
  padding: 18px 20px;
  border-radius: 22px;
  font-weight: 500;
  line-height: 1.7;
}

.booking-feedback-success {
  border: 1px solid rgba(70, 132, 83, .28);
  background: rgba(70, 132, 83, .12);
  color: #d8f0de;
}

.booking-feedback-error {
  border: 1px solid rgba(164, 90, 90, .24);
  background: rgba(164, 90, 90, .12);
  color: #ffd6d6;
}

.booking-complete {
  display: grid;
  justify-items: center;
  gap: 16px;
  padding: 20px 4px 8px;
  text-align: center;
}

.booking-complete h2 {
  margin: 0;
  color: white;
}

.booking-complete p {
  max-width: 640px;
  color: rgba(255,255,255,.72);
  margin: 0;
}

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

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

.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }
.delay-3 { transition-delay: .24s; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(200,155,69,.12);
  color: var(--gold);
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .02em;
  margin-bottom: 16px;
}

.mobile-panel {
  display: none;
}

@media (max-width: 1100px) {
  .hero-grid,
  .story-grid,
  .testimonial-grid,
  .cta-grid,
  .offers-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-card { justify-self: start; transform: none; }
  .offers-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .gallery-card:nth-child(n) { grid-column: span 6; }
  .booking-hero { grid-template-columns: 1fr; }
  .booking-grid-two,
  .booking-services { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .menu, .nav > .btn-primary { display: none; }
  .menu-toggle { display: inline-flex; }
  .mobile-panel {
    display: grid;
    gap: 14px;
    padding: 0 16px 18px;
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
  }
  .mobile-panel.open { max-height: 460px; }
  .mobile-panel a {
    padding: 12px 4px;
    border-bottom: 1px solid rgba(0,0,0,.06);
  }
  .hero-stats,
  .feature-list,
  .story-photos {
    grid-template-columns: 1fr;
  }
  .offers-grid { grid-template-columns: 1fr; }
  .reviews-track { grid-auto-columns: 100%; }
  .gallery-card:nth-child(n) { grid-column: span 12; min-height: 300px; }
  .testimonial-card { grid-template-columns: 1fr; }
  .section { padding: 72px 0; }
  .section-head { align-items: start; flex-direction: column; }
  .hero { min-height: auto; padding-top: calc(var(--nav-h) + 34px); }
  .hero-card img { aspect-ratio: 16/12; }
}

@media (max-width: 560px) {
  .container { width: min(calc(100% - 22px), var(--max)); }
  h1 { font-size: 2.9rem; }
  .hero-actions, .cta-actions { flex-direction: column; }
  .social-actions { grid-template-columns: 1fr; }
  .btn { width: 100%; }
  .story-copy, .offers-wrap, .testimonial-quote, .cta-grid, .footer-wrap, .reviews-shell { padding-left: 20px; padding-right: 20px; }
  .booking-hero-copy,
  .booking-hero-card,
  .booking-shell { padding: 24px 20px; }
  .booking-block { padding: 22px 18px; }
  .booking-block-head { grid-template-columns: 1fr; }
  .booking-step { width: 42px; height: 42px; }
  .site-logo { height: 44px; }
}
