:root {
  --bg: #0f0d0b;
  --bg-soft: #17120f;
  --bg-elevated: rgba(24, 18, 15, 0.86);
  --surface: rgba(255, 248, 237, 0.08);
  --surface-strong: rgba(255, 248, 237, 0.13);
  --surface-light: #f7efdf;
  --ink: #f8f1e6;
  --ink-dark: #1a1612;
  --muted: rgba(248, 241, 230, 0.72);
  --muted-dark: #6e6257;
  --brand: #7f1f2f;
  --brand-rich: #53121f;
  --accent: #dcb46e;
  --accent-soft: #f1ddaf;
  --accent-glow: rgba(220, 180, 110, 0.22);
  --border: rgba(255, 236, 201, 0.16);
  --shadow: 0 28px 100px rgba(0, 0, 0, 0.38);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --content-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(220, 180, 110, 0.1), transparent 24%),
    radial-gradient(circle at top right, rgba(127, 31, 47, 0.12), transparent 28%),
    linear-gradient(180deg, #100d0c 0%, #17120f 48%, #0e0b09 100%);
  font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

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

.shell {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.shell::before,
.shell::after {
  content: "";
  position: fixed;
  width: 38vw;
  height: 38vw;
  border-radius: 50%;
  filter: blur(110px);
  pointer-events: none;
  z-index: 0;
}

.shell::before {
  top: -10vw;
  left: -8vw;
  background: rgba(127, 31, 47, 0.12);
}

.shell::after {
  right: -12vw;
  bottom: 8vh;
  background: rgba(220, 180, 110, 0.08);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(255, 248, 237, 0.08);
  background: rgba(12, 10, 9, 0.78);
  backdrop-filter: blur(20px);
}

.topbar__inner,
.section,
.footer__inner,
.hero,
.page-hero,
.sticky-actions {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 32px), var(--content-width));
  margin: 0 auto;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
}

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

.brand__mark {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: #fff7eb;
  background:
    linear-gradient(145deg, rgba(220, 180, 110, 0.16), rgba(220, 180, 110, 0.03)),
    linear-gradient(145deg, #7f1f2f, #391018);
  border: 1px solid rgba(255, 236, 201, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
  font-family: "Bodoni Moda", Georgia, serif;
  font-size: 1.55rem;
}

.brand__text strong,
.eyebrow,
h1,
h2,
h3,
.hero-tagline,
.quote,
.feature-quote {
  font-family: "Bodoni Moda", Georgia, serif;
}

.brand__text strong {
  display: block;
  line-height: 1;
  font-size: 1.03rem;
  letter-spacing: 0.02em;
}

.brand__text span {
  font-size: 0.8rem;
  color: var(--muted);
}

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

.nav a {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.nav a.is-current,
.nav a:hover {
  color: var(--accent-soft);
}

.menu-button {
  display: none;
  border: 1px solid rgba(255, 236, 201, 0.15);
  background: rgba(255, 248, 237, 0.06);
  color: var(--ink);
  border-radius: 999px;
  padding: 9px 14px;
  font-size: 0.86rem;
  font-weight: 600;
}

.mobile-nav {
  display: none;
}

.mobile-nav a {
  color: var(--muted);
  padding: 10px 0;
}

.hero,
.page-hero {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 28px;
  align-items: stretch;
  padding: 42px 0 22px;
}

.hero-card,
.panel,
.photo-card,
.offer-card,
.contact-card,
.faq-card,
.timeline-card {
  background:
    linear-gradient(180deg, rgba(255, 248, 237, 0.1), rgba(255, 248, 237, 0.04)),
    rgba(24, 18, 15, 0.86);
  border: 1px solid rgba(255, 236, 201, 0.12);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: auto -10% -40% auto;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(220, 180, 110, 0.16), transparent 70%);
  pointer-events: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(220, 180, 110, 0.12);
  color: var(--accent-soft);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  margin: 12px 0 10px;
  font-size: clamp(2.5rem, 4.8vw, 4.5rem);
  line-height: 0.98;
  letter-spacing: -0.025em;
}

h2 {
  margin: 0 0 14px;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
}

h3 {
  margin: 0 0 10px;
  font-size: clamp(1.28rem, 1.7vw, 1.72rem);
  line-height: 1.12;
}

.hero-card p,
.page-hero__copy p,
.lead {
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 62ch;
}

.hero-tagline {
  margin: 18px 0 4px;
  font-size: clamp(1.2rem, 1.7vw, 1.6rem);
  color: #fff2d6;
  line-height: 1.2;
  max-width: 15ch;
}

.hero-tagline span {
  color: var(--accent);
}

.cta-row,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.button,
.button-secondary,
.button-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 18px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.015em;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button {
  background: linear-gradient(135deg, var(--accent) 0%, #f1d59a 100%);
  color: var(--ink-dark);
  box-shadow: 0 18px 36px rgba(220, 180, 110, 0.18);
}

.button-secondary {
  background: linear-gradient(135deg, var(--brand) 0%, #9f3449 100%);
  color: #fff;
  box-shadow: 0 18px 36px rgba(127, 31, 47, 0.22);
}

.button-ghost {
  border: 1px solid rgba(255, 236, 201, 0.18);
  background: rgba(255, 248, 237, 0.05);
  color: var(--ink);
}

.button:hover,
.button-secondary:hover,
.button-ghost:hover {
  transform: translateY(-2px);
}

.hero-visual,
.page-hero__visual {
  position: relative;
  min-height: 560px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  background:
    linear-gradient(180deg, rgba(16, 13, 11, 0.08), rgba(16, 13, 11, 0.68)),
    url("venue-garden.jpeg") center/cover;
}

.page-hero__visual {
  min-height: 400px;
}

.hero-visual--events,
.hero-visual--venue,
.hero-visual--packages,
.hero-visual--contact {
  background:
    linear-gradient(180deg, rgba(16, 13, 11, 0.06), rgba(16, 13, 11, 0.7)),
    url("venue-hall.jpeg") center/cover;
}

.hero-visual--gallery {
  background:
    linear-gradient(180deg, rgba(16, 13, 11, 0.06), rgba(16, 13, 11, 0.72)),
    url("venue-garden.jpeg") center/cover;
}

.hero-overlay {
  position: absolute;
  inset: auto 24px 24px 24px;
  display: grid;
  gap: 14px;
  padding: 22px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(16, 13, 11, 0.26), rgba(16, 13, 11, 0.7));
  border: 1px solid rgba(255, 236, 201, 0.12);
}

.hero-overlay strong {
  color: #fff7ec;
  line-height: 1.08;
}

.stat-grid,
.card-grid,
.photo-grid,
.offer-grid,
.contact-grid,
.faq-grid,
.timeline,
.showcase-grid,
.luxury-grid {
  display: grid;
  gap: 18px;
}

.stat-grid {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 24px;
}

.stat {
  padding: 16px;
  border-radius: 22px;
  background: rgba(255, 248, 237, 0.06);
  border: 1px solid rgba(255, 236, 201, 0.1);
}

.stat strong {
  display: block;
  font-size: 1.18rem;
  line-height: 1.05;
  color: var(--accent-soft);
  font-family: "Bodoni Moda", Georgia, serif;
}

.stat span {
  color: var(--muted);
  font-size: 0.82rem;
}

.section {
  padding: 28px 0 42px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.section-heading p {
  margin: 0;
}

.highlight-band {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: center;
  gap: 20px;
  width: min(calc(100% - 32px), var(--content-width));
  margin: 2px auto 16px;
  padding: 18px 22px;
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(87, 20, 33, 0.98), rgba(155, 61, 82, 0.85)),
    linear-gradient(135deg, rgba(220, 180, 110, 0.12), rgba(220, 180, 110, 0.04));
  border: 1px solid rgba(255, 236, 201, 0.12);
  box-shadow: var(--shadow);
}

.highlight-band strong {
  display: block;
  font-family: "Bodoni Moda", Georgia, serif;
  font-size: clamp(1.25rem, 1.7vw, 1.8rem);
  color: #fff4db;
  margin-bottom: 4px;
}

.highlight-band div:last-child {
  color: rgba(255, 247, 232, 0.82);
}

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

.panel,
.photo-card,
.offer-card,
.contact-card,
.faq-card,
.timeline-card {
  padding: 22px;
  border-radius: var(--radius-lg);
}

.panel p,
.photo-card p,
.offer-card p,
.contact-card p,
.faq-card p,
.timeline-card p,
li {
  color: var(--muted);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.pill {
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(220, 180, 110, 0.1);
  color: var(--accent-soft);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.showcase-grid {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: stretch;
}

.showcase-card {
  position: relative;
  min-height: 390px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.showcase-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase-card__overlay {
  position: absolute;
  inset: auto 0 0;
  padding: 22px;
  background: linear-gradient(180deg, rgba(16, 13, 11, 0), rgba(16, 13, 11, 0.82));
}

.feature-quote {
  margin: 0 0 14px;
  font-size: clamp(1.4rem, 1.9vw, 2rem);
  line-height: 1.08;
  color: #fff3da;
}

.quote {
  display: inline-block;
  margin-top: 18px;
  font-size: 1.02rem;
  color: var(--accent);
}

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

.photo-grid {
  grid-template-columns: repeat(3, 1fr);
}

.photo-card {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: end;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(16, 13, 11, 0.05), rgba(16, 13, 11, 0.84)),
    var(--photo-bg, linear-gradient(145deg, #75512d, #391018));
}

.photo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 22%, rgba(16, 13, 11, 0.84) 100%);
}

.photo-card > div {
  position: relative;
  z-index: 1;
}

.photo-card h3 {
  color: #fff8ed;
}

.photo-card p {
  color: rgba(255, 248, 237, 0.76);
}

.photo-card[data-tone="rose"] {
  --photo-bg: url("venue-hall.jpeg") center/cover;
}

.photo-card[data-tone="gold"] {
  --photo-bg: url("venue-garden.jpeg") center/cover;
}

.photo-card[data-tone="ivory"] {
  --photo-bg:
    url("https://images.unsplash.com/photo-1519741497674-611481863552?auto=format&fit=crop&w=900&q=80")
      center/cover;
}

.photo-card[data-tone="sage"] {
  --photo-bg:
    url("https://images.unsplash.com/photo-1520854221256-17451cc331bf?auto=format&fit=crop&w=900&q=80")
      center/cover;
}

.photo-card[data-tone="midnight"] {
  --photo-bg:
    url("https://images.unsplash.com/photo-1492684223066-81342ee5ff30?auto=format&fit=crop&w=900&q=80")
      center/cover;
}

.photo-card[data-tone="pearl"] {
  --photo-bg:
    url("https://images.unsplash.com/photo-1519225421980-715cb0215aed?auto=format&fit=crop&w=900&q=80")
      center/cover;
}

.timeline {
  grid-template-columns: repeat(3, 1fr);
}

.timeline-card h3 {
  color: var(--accent-soft);
}

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

.contact-card ul,
.panel ul {
  margin: 14px 0 0;
  padding-left: 18px;
}

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

.note {
  margin-top: 12px;
  font-size: 0.84rem;
  color: rgba(248, 241, 230, 0.58);
}

.footer {
  padding: 34px 0 104px;
}

.footer__inner {
  padding: 26px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 248, 237, 0.05), rgba(255, 248, 237, 0.02)),
    rgba(10, 8, 7, 0.95);
  border: 1px solid rgba(255, 236, 201, 0.1);
  color: rgba(255, 248, 237, 0.72);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  gap: 20px;
}

.footer__grid h3 {
  color: #fff5e1;
}

.footer a {
  color: rgba(255, 248, 237, 0.82);
}

.sticky-actions-wrap {
  position: fixed;
  inset: auto 0 0;
  z-index: 35;
  padding: 0 0 14px;
}

.sticky-actions {
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.sticky-actions a {
  padding: 12px 10px;
  text-align: center;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.28);
}

.sticky-actions a:nth-child(1) {
  background: linear-gradient(135deg, var(--accent), #e6c17c);
  color: var(--ink-dark);
}

.sticky-actions a:nth-child(2) {
  background: linear-gradient(135deg, #1b8d49, #38b365);
}

.sticky-actions a:nth-child(3) {
  background: linear-gradient(135deg, #7f1f2f, #a8384c);
}

@media (max-width: 980px) {
  .hero,
  .page-hero,
  .showcase-grid,
  .contact-grid,
  .footer__grid,
  .timeline,
  .faq-grid,
  .highlight-band {
    grid-template-columns: 1fr;
  }

  .card-grid,
  .photo-grid,
  .offer-grid,
  .luxury-grid,
  .stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-visual,
  .page-hero__visual {
    min-height: 420px;
  }

  .nav {
    display: none;
  }

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

  .mobile-nav[hidden] {
    display: none;
  }

  .mobile-nav:not([hidden]) {
    display: grid;
    gap: 6px;
    padding: 0 16px 18px;
    background: rgba(12, 10, 9, 0.92);
  }
}

@media (max-width: 680px) {
  .hero-card,
  .panel,
  .photo-card,
  .offer-card,
  .contact-card,
  .faq-card,
  .timeline-card {
    padding: 20px;
  }

  .card-grid,
  .photo-grid,
  .offer-grid,
  .luxury-grid,
  .stat-grid {
    grid-template-columns: 1fr;
  }

  .hero,
  .page-hero {
    padding-top: 28px;
  }

  .section-heading {
    flex-direction: column;
    align-items: start;
  }

  .sticky-actions {
    display: grid;
  }

  .hero-tagline {
    max-width: none;
  }

  .showcase-card {
    min-height: 360px;
  }
}
