/* ============================================================
   Society Port Klang Hall — Quiet Luxury Editorial
   Palette: onyx + warm bone + aged gold leaf + oxblood
   Type:    Fraunces (display, variable) · Manrope (body)
   ============================================================ */

:root {
  --onyx:        #0d0c0a;
  --onyx-2:      #161410;
  --bone:        #f3ede1;
  --bone-2:      #e8dfcc;
  --paper:       #faf6ed;
  --ink:         #1a1814;
  --ink-soft:    #4a443a;
  --muted:       #7a7264;
  --hairline:    #d9cfb8;
  --hairline-2:  rgba(201, 169, 97, 0.28);
  --gold:        #c9a961;
  --gold-deep:   #a78947;
  --gold-glow:   #e9d49a;
  --oxblood:     #7a2c1f;
  --moss:        #3d4a3a;

  /* legacy tokens kept for admin/gallery + JS-injected status pills */
  --brand:       var(--moss);
  --brand-dark:  #1f2a1d;
  --accent:      var(--oxblood);
  --warning:     #8a5a14;
  --danger:      #8a2a2a;
  --line:        var(--hairline);
  --surface:     var(--paper);
  --soft:        var(--bone);
  --logo-gold:        var(--gold);
  --logo-gold-light:  var(--gold-glow);
  --shadow: 0 30px 80px rgba(13, 12, 10, 0.18);

  color-scheme: light;
  font-family: "Manrope", ui-sans-serif, system-ui, sans-serif;
  font-feature-settings: "ss01", "cv11";
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bone);
  color: var(--ink);
  font-weight: 400;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

::selection { background: var(--gold); color: var(--onyx); }

/* ----- Editorial keyframes ----- */
@keyframes rise {
  from { opacity: 0; transform: translateY(28px); filter: blur(6px); }
  to   { opacity: 1; transform: translateY(0);   filter: blur(0); }
}
@keyframes drawRule {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}
@keyframes shimmer {
  0%, 100% { background-position: -200% 0; }
  50%      { background-position: 200% 0; }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes heroPan {
  from { transform: scale(1.08) translate3d(0, 0, 0); }
  to   { transform: scale(1.18) translate3d(-2%, -2%, 0); }
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(18px, 4vw, 48px);
  padding: 14px clamp(20px, 4vw, 60px);
  background: rgba(13, 12, 10, 0.92);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid var(--hairline-2);
}

.brand {
  display: inline-flex;
  width: clamp(72px, 8vw, 104px);
  filter: drop-shadow(0 2px 12px rgba(201, 169, 97, 0.25));
  transition: transform 400ms cubic-bezier(.2,.8,.2,1);
}
.brand:hover { transform: translateY(-1px); }
.brand img { width: 100%; height: auto; display: block; border-radius: 2px; }

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(18px, 3.4vw, 38px);
  color: var(--bone);
  font-family: "Manrope", sans-serif;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

nav a {
  position: relative;
  padding: 4px 0;
  color: rgba(243, 237, 225, 0.78);
  transition: color 240ms ease;
}
nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 320ms cubic-bezier(.2,.8,.2,1);
}
nav a:hover { color: var(--gold-glow); }
nav a:hover::after { transform: scaleX(1); }

.site-header::after {
  content: "EST · KLANG, SELANGOR";
  justify-self: end;
  color: var(--gold);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.32em;
}

/* ----- Burger button ----- */
.burger {
  display: none;
  position: relative;
  z-index: 25;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 1px solid rgba(201, 169, 97, 0.42);
  cursor: pointer;
  justify-self: end;
}
.burger span {
  display: block;
  position: absolute;
  left: 10px;
  right: 10px;
  height: 1.5px;
  background: var(--gold);
  border-radius: 2px;
  transition: transform 320ms cubic-bezier(.2,.8,.2,1), opacity 220ms ease, top 320ms cubic-bezier(.2,.8,.2,1);
}
.burger span:nth-child(1) { top: 14px; }
.burger span:nth-child(2) { top: 21px; }
.burger span:nth-child(3) { top: 28px; }
.site-header.is-nav-open .burger { border-color: var(--gold); background: rgba(201, 169, 97, 0.1); }
.site-header.is-nav-open .burger span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.site-header.is-nav-open .burger span:nth-child(2) { opacity: 0; }
.site-header.is-nav-open .burger span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

/* ============================================================
   HERO — cinematic editorial
   ============================================================ */
.hero {
  position: relative;
  min-height: calc(100svh - 76px);
  display: grid;
  grid-template-rows: 1fr auto auto;
  padding: clamp(28px, 5vw, 72px);
  overflow: hidden;
  background: var(--onyx);
}

.hero__media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(13,12,10,0.55) 0%, rgba(13,12,10,0.15) 38%, rgba(13,12,10,0.88) 100%),
    linear-gradient(92deg, rgba(13,12,10,0.65), rgba(13,12,10,0.05) 65%),
    url("/assets/spk-hall-hero.jpg") center / cover no-repeat;
  animation: heroPan 22s ease-in-out infinite alternate;
}

/* film grain */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.7 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* corner crosshair marks */
.hero::after {
  content: "";
  position: absolute;
  inset: clamp(20px, 4vw, 48px);
  pointer-events: none;
  border: 1px solid rgba(201, 169, 97, 0.18);
  background:
    linear-gradient(var(--gold), var(--gold)) top    left  / 18px 1px no-repeat,
    linear-gradient(var(--gold), var(--gold)) top    left  / 1px 18px no-repeat,
    linear-gradient(var(--gold), var(--gold)) top    right / 18px 1px no-repeat,
    linear-gradient(var(--gold), var(--gold)) top    right / 1px 18px no-repeat,
    linear-gradient(var(--gold), var(--gold)) bottom left  / 18px 1px no-repeat,
    linear-gradient(var(--gold), var(--gold)) bottom left  / 1px 18px no-repeat,
    linear-gradient(var(--gold), var(--gold)) bottom right / 18px 1px no-repeat,
    linear-gradient(var(--gold), var(--gold)) bottom right / 1px 18px no-repeat;
}

.hero__content {
  position: relative;
  grid-row: 2;
  align-self: end;
  width: min(880px, 100%);
  color: var(--bone);
  animation: rise 1.1s cubic-bezier(.2,.8,.2,1) both;
  animation-delay: 200ms;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 22px;
  color: var(--gold);
  font-family: "Manrope", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.36em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  display: block;
  width: 36px;
  height: 1px;
  background: var(--gold);
  transform-origin: left;
  animation: drawRule 900ms cubic-bezier(.2,.8,.2,1) both;
  animation-delay: 600ms;
}

h1, h2, h3 {
  font-family: "Fraunces", "Cormorant Garamond", Georgia, serif;
  font-weight: 350;
  font-style: normal;
  letter-spacing: -0.02em;
  font-variation-settings: "SOFT" 100, "opsz" 144;
}

h1 {
  max-width: 14ch;
  margin: 0 0 26px;
  font-size: clamp(2.8rem, 7.4vw, 7rem);
  line-height: 0.92;
  color: var(--bone);
  text-wrap: balance;
}
h1 em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold-glow);
}

h2 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 4.2vw, 3.8rem);
  line-height: 1.0;
  color: var(--ink);
  text-wrap: balance;
}

h3 {
  margin: 0 0 12px;
  font-size: 1.35rem;
  line-height: 1.2;
  color: var(--ink);
}

p { margin: 0 0 1em; }

.hero p {
  max-width: 56ch;
  color: rgba(243, 237, 225, 0.82);
  font-size: clamp(1rem, 1.25vw, 1.15rem);
  font-weight: 350;
  line-height: 1.7;
  animation: rise 1.1s cubic-bezier(.2,.8,.2,1) both;
  animation-delay: 360ms;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
  animation: rise 1.1s cubic-bezier(.2,.8,.2,1) both;
  animation-delay: 480ms;
}

/* ----- Buttons ----- */
.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 28px;
  border: 0;
  border-radius: 0;
  font: inherit;
  font-family: "Manrope", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  overflow: hidden;
  transition:
    background 380ms cubic-bezier(.2,.8,.2,1),
    color 380ms ease,
    transform 380ms cubic-bezier(.2,.8,.2,1),
    box-shadow 380ms ease;
}
.button::after {
  content: "→";
  font-family: "Fraunces", serif;
  font-weight: 400;
  font-size: 1.05rem;
  letter-spacing: 0;
  transition: transform 380ms cubic-bezier(.2,.8,.2,1);
}
.button:hover::after { transform: translateX(4px); }

.button--primary {
  background: var(--gold);
  color: var(--onyx);
  box-shadow: 0 14px 36px rgba(201, 169, 97, 0.34);
}
.button--primary:hover {
  background: var(--gold-glow);
  transform: translateY(-2px);
  box-shadow: 0 22px 56px rgba(201, 169, 97, 0.46);
}

.button--ghost {
  background: transparent;
  color: var(--bone);
  border: 1px solid rgba(243, 237, 225, 0.32);
}
.button--ghost:hover {
  background: rgba(243, 237, 225, 0.08);
  border-color: var(--gold);
  color: var(--gold-glow);
}

.button--secondary {
  background: var(--ink);
  color: var(--bone);
}
.button--secondary:hover { background: var(--onyx); }

.text-link {
  color: var(--ink);
  font-weight: 600;
  border-bottom: 1px solid var(--gold);
  transition: color 220ms ease, border-color 220ms ease;
}
.text-link:hover { color: var(--gold-deep); border-color: var(--gold-deep); }

/* hero credit marquee */
.hero__content::after {
  content: "600 PAX  ·  9,100 SQ. FT.  ·  PILLAR-LESS  ·  30 FT CEILING  ·  COLD A/C  ·  FREE PARKING  ·  KLANG · SELANGOR";
  display: block;
  margin-top: 56px;
  padding-top: 22px;
  border-top: 1px solid rgba(201, 169, 97, 0.32);
  color: rgba(201, 169, 97, 0.82);
  font-family: "Manrope", sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.34em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ============================================================
   SECTIONS (shared)
   ============================================================ */
.section {
  padding: clamp(64px, 10vw, 130px) clamp(20px, 5vw, 80px);
  background: var(--bone);
}
.section--white {
  background: var(--paper);
  position: relative;
}
.section--white::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 50%, transparent);
  opacity: 0.5;
}

.section__heading {
  max-width: 880px;
  margin: 0 auto clamp(40px, 6vw, 72px);
  text-align: center;
}
.section__heading .eyebrow {
  justify-content: center;
  margin-bottom: 18px;
  color: var(--gold-deep);
}
.section__heading .eyebrow::before { background: var(--gold-deep); }
.section__heading h2 { margin: 0 auto 16px; }
.section__heading p {
  max-width: 60ch;
  margin: 0 auto;
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ============================================================
   OVERVIEW BAND
   ============================================================ */
.overview-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(320px, 1.1fr);
  gap: clamp(40px, 7vw, 90px);
  align-items: center;
  padding: clamp(64px, 10vw, 120px) clamp(20px, 5vw, 80px);
  background: var(--paper);
  position: relative;
}
.overview-band::before {
  content: "";
  position: absolute; top: 0; left: clamp(20px, 5vw, 80px); right: clamp(20px, 5vw, 80px);
  height: 1px;
  background: var(--hairline);
}
.overview-band > div:first-child h2 { font-size: clamp(2.2rem, 4.4vw, 4rem); line-height: 0.98; }
.overview-band > div:first-child p {
  margin-top: 22px;
  max-width: 46ch;
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.75;
}

.overview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--hairline);
  border-left: 1px solid var(--hairline);
}
.overview-grid article {
  display: grid;
  align-content: space-between;
  gap: 18px;
  padding: clamp(24px, 3vw, 36px);
  background: transparent;
  border-right: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  border-radius: 0;
  box-shadow: none;
  min-height: 180px;
  transition: background 400ms ease;
}
.overview-grid article:hover { background: rgba(201, 169, 97, 0.07); }
.overview-grid strong {
  font-family: "Fraunces", serif;
  font-weight: 350;
  font-style: italic;
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  line-height: 0.9;
  color: var(--onyx);
  letter-spacing: -0.04em;
}
.overview-grid span {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

/* ============================================================
   PACKAGES
   ============================================================ */
.package-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 2.4vw, 32px);
  max-width: 1200px;
  margin: 0 auto;
}

.package-card {
  position: relative;
  display: grid;
  gap: 18px;
  align-content: start;
  padding: clamp(28px, 3.4vw, 44px);
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: 0;
  box-shadow: none;
  overflow: hidden;
  transition:
    transform 500ms cubic-bezier(.2,.8,.2,1),
    border-color 400ms ease,
    box-shadow 500ms cubic-bezier(.2,.8,.2,1);
  animation: rise 800ms cubic-bezier(.2,.8,.2,1) both;
}
.package-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(201,169,97,0) 0%, rgba(201,169,97,0.06) 100%);
  opacity: 0;
  transition: opacity 500ms ease;
}
.package-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 30px 70px rgba(13, 12, 10, 0.14);
}
.package-card:hover::before { opacity: 1; }

.package-card--featured {
  background: linear-gradient(180deg, var(--onyx) 0%, var(--onyx-2) 100%);
  border-color: var(--gold);
  color: var(--bone);
  box-shadow: 0 40px 90px rgba(13, 12, 10, 0.32);
}
.package-card--featured::after {
  content: "PREMIUM";
  position: absolute;
  top: 22px;
  right: -42px;
  width: 160px;
  padding: 6px 0;
  text-align: center;
  background: var(--gold);
  color: var(--onyx);
  font-family: "Manrope", sans-serif;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.32em;
  transform: rotate(40deg);
  box-shadow: 0 4px 14px rgba(0,0,0,0.3);
}
.package-card.package-card--featured h3 { color: var(--gold-glow); }
.package-card.package-card--featured p { color: rgba(243, 237, 225, 0.82); }
.package-card.package-card--featured .package-price strong { color: var(--gold-glow); }
.package-card.package-card--featured .package-price del { color: rgba(243, 237, 225, 0.5); }
.package-card.package-card--featured ul { color: var(--bone); }
.package-card.package-card--featured ul li { color: var(--bone); }
.package-card.package-card--featured ul li::marker { color: var(--gold); }

.package-card h3 {
  margin-top: 4px;
  font-family: "Fraunces", serif;
  font-weight: 350;
  font-size: clamp(1.8rem, 2.6vw, 2.4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--onyx);
}

.package-card__head {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  background: transparent;
  color: var(--gold-deep);
  border: 1px solid var(--gold);
  border-radius: 999px;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.package-card--featured .pill {
  color: var(--gold-glow);
  border-color: rgba(233, 212, 154, 0.55);
}

.save-pill {
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  background: var(--oxblood);
  color: var(--bone);
  border-radius: 999px;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
}
.package-card--featured .amenities { color: rgba(243, 237, 225, 0.6); }

.package-price {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: baseline;
  margin-top: 8px;
  padding-top: 18px;
  border-top: 1px solid var(--hairline);
}
.package-card--featured .package-price { border-top-color: rgba(201, 169, 97, 0.28); }
.package-price del {
  color: var(--muted);
  font-weight: 500;
  font-size: 1.05rem;
}
.package-price strong {
  font-family: "Fraunces", serif;
  font-weight: 350;
  font-style: italic;
  font-size: clamp(2.4rem, 4.8vw, 3.6rem);
  line-height: 0.95;
  color: var(--onyx);
  letter-spacing: -0.03em;
}

.package-card p {
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.65;
}

.package-card ul {
  display: grid;
  gap: 12px;
  margin: 6px 0 0;
  padding-left: 18px;
  color: var(--ink);
  font-weight: 500;
  font-size: 0.95rem;
  line-height: 1.5;
}
.package-card ul li::marker { color: var(--gold-deep); }

/* ============================================================
   SELLING POINTS — numbered editorial
   ============================================================ */
.selling-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  max-width: 1280px;
  margin: 0 auto;
  border-top: 1px solid var(--hairline);
  border-left: 1px solid var(--hairline);
}
.selling-point {
  position: relative;
  display: grid;
  align-content: start;
  gap: 16px;
  padding: clamp(28px, 3vw, 40px);
  min-height: 240px;
  background: transparent;
  border: 0;
  border-right: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  border-radius: 0;
  box-shadow: none;
  transition: background 400ms ease;
}
.selling-point:hover { background: rgba(201, 169, 97, 0.06); }
.selling-point span {
  display: block;
  margin: 0 0 8px;
  font-family: "Fraunces", serif;
  font-weight: 350;
  font-style: italic;
  font-size: 2.4rem;
  line-height: 0.95;
  color: var(--gold-deep);
  letter-spacing: -0.03em;
}
.selling-point p {
  margin: 0;
  color: var(--ink);
  font-family: "Fraunces", serif;
  font-weight: 400;
  font-size: 1.15rem;
  line-height: 1.35;
  letter-spacing: -0.005em;
}

/* ============================================================
   LAYOUT BAND
   ============================================================ */
.layout-band {
  padding: clamp(64px, 10vw, 130px) clamp(20px, 5vw, 80px);
  background: var(--onyx);
  color: var(--bone);
  position: relative;
  overflow: hidden;
}
.layout-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.5 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  opacity: 0.12;
  pointer-events: none;
}
.layout-band .section__heading { position: relative; }
.layout-band .section__heading h2 { color: var(--bone); }
.layout-band .section__heading p { color: rgba(243, 237, 225, 0.72); }
.layout-band .section__heading .eyebrow { color: var(--gold); }
.layout-band .section__heading .eyebrow::before { background: var(--gold); }

.layout-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  max-width: 1280px;
  margin: 0 auto;
  border-top: 1px solid rgba(201, 169, 97, 0.24);
  border-left: 1px solid rgba(201, 169, 97, 0.24);
}
.layout-card {
  padding: clamp(24px, 3vw, 36px);
  background: transparent;
  border: 0;
  border-right: 1px solid rgba(201, 169, 97, 0.24);
  border-bottom: 1px solid rgba(201, 169, 97, 0.24);
  border-radius: 0;
  box-shadow: none;
  transition: background 380ms ease;
}
.layout-card:hover { background: rgba(201, 169, 97, 0.06); }
.layout-card dl { display: grid; gap: 16px; margin: 0; }
.layout-card dd { margin: 0; color: rgba(243, 237, 225, 0.78); font-size: 0.92rem; line-height: 1.55; }
.layout-card dt {
  margin-bottom: 4px;
  color: var(--gold);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}
.layout-card h3 { color: var(--bone); font-size: 1.15rem; }

/* ============================================================
   CARD ICONS — Booking.com / Agoda style line icons
   ============================================================ */
.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 6px;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  background: rgba(201, 169, 97, 0.08);
  color: var(--gold-deep);
  transition: background 320ms ease, border-color 320ms ease, transform 380ms cubic-bezier(.2,.8,.2,1);
}
.card-icon svg { width: 24px; height: 24px; display: block; }

.addon-card:hover .card-icon,
.layout-card:hover .card-icon {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--onyx);
  transform: scale(1.06);
}

.card-icon--dark {
  border-color: rgba(201, 169, 97, 0.32);
  background: rgba(201, 169, 97, 0.06);
  color: var(--gold);
}
.layout-card:hover .card-icon--dark {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--onyx);
}

.checkbox-option__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  margin-right: 8px;
  vertical-align: -6px;
  color: var(--gold-deep);
}
.checkbox-option__icon svg { width: 18px; height: 18px; display: block; }

/* ============================================================
   ADD-ONS
   ============================================================ */
.addon-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  max-width: 1280px;
  margin: 0 auto;
  border-top: 1px solid var(--hairline);
  border-left: 1px solid var(--hairline);
}
.addon-card {
  display: grid;
  align-content: space-between;
  gap: 12px;
  padding: clamp(22px, 2.6vw, 30px);
  min-height: 210px;
  background: transparent;
  border: 0;
  border-right: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  border-radius: 0;
  box-shadow: none;
  transition: background 380ms ease, transform 380ms ease;
}
.addon-card:hover { background: rgba(201, 169, 97, 0.07); transform: translateY(-2px); }
.addon-card strong {
  font-family: "Fraunces", serif;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.2;
  color: var(--onyx);
}
.addon-card span { color: var(--muted); font-size: 0.86rem; font-weight: 500; }

/* ============================================================
   BOOKING BAND
   ============================================================ */
.booking-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(36px, 4vw, 72px);
  align-items: start;
  max-width: 1400px;
  margin: 0 auto;
  padding: clamp(64px, 10vw, 130px) clamp(20px, 5vw, 80px);
  background: var(--bone);
  position: relative;
}
.booking-band::before {
  content: "";
  position: absolute; top: 0; left: clamp(20px, 5vw, 80px); right: clamp(20px, 5vw, 80px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 50%, transparent);
}

.booking-copy {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 2.4vw, 36px);
  align-content: start;
  position: sticky;
  top: 100px;
}

.booking-intro {
  display: grid;
  gap: 16px;
  padding-bottom: clamp(8px, 1.5vw, 16px);
  border-bottom: 1px solid var(--hairline);
}
.booking-intro h2 {
  margin: 0;
  font-size: clamp(2.2rem, 3.4vw, 3.4rem);
  line-height: 0.98;
}
.booking-intro p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.7;
  max-width: 52ch;
}

.booking-photo {
  margin: 0;
  overflow: hidden;
  border-radius: 0;
  background: var(--onyx);
  box-shadow: 0 30px 70px rgba(13, 12, 10, 0.22);
  position: relative;
}
.booking-photo img {
  width: 100%;
  aspect-ratio: 16 / 10;
  display: block;
  object-fit: cover;
  transition: transform 1200ms cubic-bezier(.2,.8,.2,1);
}
.booking-photo:hover img { transform: scale(1.04); }
.booking-photo figcaption {
  position: absolute;
  left: 16px; bottom: 16px;
  padding: 9px 14px;
  background: rgba(13, 12, 10, 0.86);
  color: var(--gold-glow);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.summary-card {
  display: grid;
  align-content: start;
  gap: 6px;
  padding: clamp(22px, 2.4vw, 28px);
  background: var(--onyx);
  border: 1px solid var(--gold);
  border-radius: 0;
  box-shadow: 0 24px 60px rgba(13, 12, 10, 0.22);
  color: var(--bone);
  font-size: 1rem;
  line-height: 1.7;
  position: relative;
  padding-top: clamp(44px, 4vw, 52px);
}
.summary-card::before {
  content: "LIVE ESTIMATE";
  position: absolute;
  top: 16px; left: clamp(22px, 2.4vw, 28px);
  color: var(--gold);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.32em;
}
.summary-card::after {
  content: "";
  position: absolute;
  top: 36px; left: clamp(22px, 2.4vw, 28px); right: clamp(22px, 2.4vw, 28px);
  height: 1px;
  background: rgba(201, 169, 97, 0.32);
}
.summary-card strong { color: var(--gold-glow); font-family: "Fraunces", serif; font-weight: 350; font-style: italic; font-size: 1.4rem; }
.estimate-package {
  display: block;
  margin-bottom: 6px;
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 350;
  font-size: 1.5rem;
  color: var(--gold-glow);
}
.estimate-line {
  display: block;
  color: rgba(243, 237, 225, 0.78);
  font-size: 0.92rem;
  letter-spacing: 0.02em;
}
.estimate-line--included {
  color: var(--gold);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  padding: 6px 0;
}
.estimate-line--included em { font-style: italic; color: var(--gold-glow); }
.estimate-line--discount { color: var(--gold-glow); font-weight: 600; }
.estimate-total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-top: 12px;
  padding-top: 14px;
  border-top: 1px solid rgba(201, 169, 97, 0.32);
  color: rgba(243, 237, 225, 0.7);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}
.estimate-total strong {
  font-size: 2rem;
  letter-spacing: -0.02em;
}

.booking-form {
  display: grid;
  gap: 22px;
  width: 100%;
  padding: clamp(28px, 3vw, 44px);
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: 0;
  box-shadow: 0 24px 60px rgba(13, 12, 10, 0.08);
  position: relative;
}
.booking-form::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
}

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

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

input, select, textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--hairline);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  transition: border-color 320ms ease, background 320ms ease;
}
input, select { min-height: 48px; padding: 0 4px; }
textarea { padding: 12px 4px; resize: vertical; }

input:hover, select:hover, textarea:hover { border-color: var(--gold-deep); }
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(201, 169, 97, 0.05);
}

select { appearance: none; -webkit-appearance: none; background-image:
  linear-gradient(45deg, transparent 50%, var(--ink-soft) 50%),
  linear-gradient(135deg, var(--ink-soft) 50%, transparent 50%);
  background-position: calc(100% - 14px) 50%, calc(100% - 9px) 50%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 28px;
}

.time-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.addon-fieldset {
  display: grid;
  gap: 14px;
  margin: 4px 0 0;
  padding: 0;
  border: 0;
}
.addon-fieldset legend {
  margin-bottom: 14px;
  padding: 0;
  color: var(--gold-deep);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
.addon-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.checkbox-option {
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 12px;
  padding: 16px 18px;
  background: var(--bone);
  border: 1px solid var(--hairline);
  border-radius: 0;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  cursor: pointer;
  transition: border-color 320ms ease, background 320ms ease;
}
.checkbox-option:hover { border-color: var(--gold); background: rgba(201, 169, 97, 0.08); }
.checkbox-option__badge {
  display: none;
  margin-left: 8px;
  padding: 3px 8px;
  background: var(--onyx);
  color: var(--gold);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: 999px;
  vertical-align: 2px;
}
.checkbox-option--included {
  background: rgba(201, 169, 97, 0.12);
  border-color: var(--gold);
  cursor: not-allowed;
}
.checkbox-option--included input { accent-color: var(--gold); }
.checkbox-option--included strong { text-decoration: line-through; color: var(--muted); }
.checkbox-option--included .checkbox-option__badge { display: inline-flex; }
.checkbox-option input {
  width: 18px; min-height: 18px; padding: 0;
  margin: 2px 0 0;
  accent-color: var(--gold-deep);
  border-bottom: 0;
}
.checkbox-option > span { display: grid; gap: 4px; }
.checkbox-option strong {
  font-family: "Fraunces", serif;
  font-weight: 400;
  font-size: 1.02rem;
  color: var(--onyx);
  letter-spacing: -0.01em;
  text-transform: none;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  padding-top: 8px;
}
.form-actions .button--primary { background: var(--onyx); color: var(--bone); box-shadow: 0 14px 36px rgba(13,12,10,0.24); }
.form-actions .button--primary:hover { background: var(--gold); color: var(--onyx); box-shadow: 0 20px 50px rgba(201, 169, 97, 0.46); }
.form-message {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.form-message.is-error   { color: var(--danger); }
.form-message.is-success { color: var(--moss); }

/* ============================================================
   BOOKING-FORM MINI CALENDAR (date picker)
   ============================================================ */
.event-date-field {
  display: grid;
  gap: 10px;
  grid-column: 1 / -1;
}
.mc-grid { gap: 6px; }
.mc-day { height: 44px; font-size: 0.9rem; }
.mini-calendar {
  margin-top: 6px;
  padding: 14px;
  background: var(--bone);
  border: 1px solid var(--hairline);
  border-radius: 2px;
}
.mc-head-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}
.mc-title {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.05rem;
  color: var(--onyx);
  letter-spacing: -0.01em;
}
.mc-nav {
  width: 28px;
  height: 28px;
  border: 1px solid var(--hairline);
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
  font-size: 0.95rem;
  line-height: 1;
  padding: 0;
  transition: background 200ms ease, border-color 200ms ease, color 200ms ease;
}
.mc-nav:hover:not(:disabled) { background: var(--gold); border-color: var(--gold); color: var(--onyx); }
.mc-nav:disabled { opacity: 0.32; cursor: not-allowed; }

.mc-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--hairline);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.mc-legend__item { display: inline-flex; align-items: center; gap: 6px; }
.mc-dot { display: inline-block; width: 9px; height: 9px; border-radius: 999px; }
.mc-dot--free { background: #3d5a2e; }
.mc-dot--half { background: #c98a16; }
.mc-dot--full { background: #7a2c1f; }

.mc-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 4px;
}
.mc-head {
  text-align: center;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 4px 0;
}
.mc-day {
  position: relative;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--hairline);
  background: var(--paper);
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  border-radius: 2px;
  padding: 0;
  letter-spacing: 0;
  text-transform: none;
  transition: background 200ms ease, border-color 200ms ease, color 200ms ease, transform 200ms ease;
}
.mc-day:hover:not(:disabled) { border-color: var(--gold); transform: translateY(-1px); }
.mc-day--blank { background: transparent; border-color: transparent; cursor: default; }
.mc-day--blank:hover { transform: none; }

.mc-day--free::after,
.mc-day--half::after,
.mc-day--full::after {
  content: "";
  position: absolute;
  left: 4px;
  right: 4px;
  bottom: 3px;
  height: 2px;
  border-radius: 2px;
}
.mc-day--free::after { background: #3d5a2e; }
.mc-day--half {
  background: rgba(201, 138, 22, 0.1);
  border-color: rgba(201, 138, 22, 0.45);
  color: #6b4a08;
}
.mc-day--half::after { background: #c98a16; }
.mc-day--full {
  background: rgba(122, 44, 31, 0.08);
  border-color: rgba(122, 44, 31, 0.32);
  color: rgba(122, 44, 31, 0.6);
  cursor: not-allowed;
  text-decoration: line-through;
}
.mc-day--full::after { background: #7a2c1f; }
.mc-day--past {
  color: rgba(122, 114, 100, 0.45);
  background: var(--bone);
  cursor: not-allowed;
}
.mc-day--past::after { display: none; }
.mc-day--selected {
  background: var(--onyx);
  color: var(--gold-glow);
  border-color: var(--onyx);
}
.mc-day--selected::after { background: var(--gold); }

.mini-calendar__selected {
  display: inline-block;
  padding: 8px 12px;
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-left: 3px solid var(--gold);
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.availability-note {
  margin: 6px 0 0;
  font-family: "Manrope", sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: none;
  color: var(--muted);
  line-height: 1.5;
}
.availability-note--ok   { color: var(--moss); }
.availability-note--warn { color: var(--oxblood); }
select option:disabled { color: var(--muted); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding: 36px clamp(20px, 5vw, 80px);
  background: var(--onyx);
  color: rgba(243, 237, 225, 0.62);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  border-top: 1px solid var(--hairline-2);
}
.footer span:last-child { display: flex; flex-wrap: wrap; gap: 24px; }
.footer a {
  position: relative;
  color: var(--gold);
  transition: color 220ms ease;
}
.footer a:hover { color: var(--gold-glow); }

/* ============================================================
   GALLERY PAGE
   ============================================================ */
.gallery-hero {
  min-height: 56svh;
  display: grid;
  align-items: end;
  padding: clamp(56px, 9vw, 120px) clamp(20px, 5vw, 80px);
  background:
    linear-gradient(180deg, rgba(13,12,10,0.4), rgba(13,12,10,0.88)),
    url("/assets/spk-hall-hero.jpg") center / cover;
  color: var(--bone);
}
.gallery-hero > div { width: min(880px, 100%); }
.gallery-hero .eyebrow { color: var(--gold); }
.gallery-hero .eyebrow::before { background: var(--gold); }
.gallery-hero h1 { font-size: clamp(2.2rem, 5vw, 4.6rem); color: var(--bone); }
.gallery-hero p { max-width: 64ch; color: rgba(243, 237, 225, 0.82); line-height: 1.7; }

.gallery-page-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 12px;
  padding: clamp(28px, 4vw, 56px);
  background: var(--paper);
}
.gallery-photo {
  position: relative;
  min-height: 360px;
  margin: 0;
  overflow: hidden;
  background: var(--onyx);
}
.gallery-photo--wide { grid-column: span 2; }
.gallery-photo--tall { grid-row: span 2; min-height: 736px; }
.gallery-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 1400ms cubic-bezier(.2,.8,.2,1);
}
.gallery-photo:hover img { transform: scale(1.06); }
.gallery-photo figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 8px 12px;
  background: rgba(13, 12, 10, 0.84);
  color: var(--gold-glow);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

/* ============================================================
   ADMIN PAGE — keep utilitarian; align with new tokens
   ============================================================ */
.admin-page { background: var(--bone); }
.admin-shell { padding: clamp(28px, 4vw, 56px); }
.admin-hero,
.panel-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.admin-hero { margin-bottom: 28px; }
.admin-hero h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.6rem);
  color: var(--onyx);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 24px;
}
.stat-card {
  padding: 22px;
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: 0;
  box-shadow: none;
}
.stat-card span {
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
.stat-card strong {
  display: block;
  margin-top: 10px;
  font-family: "Fraunces", serif;
  font-weight: 350;
  font-style: italic;
  font-size: clamp(1.45rem, 4.6vw, 2.4rem);
  line-height: 1.05;
  color: var(--onyx);
  word-break: break-word;
  overflow-wrap: anywhere;
}

.admin-panel {
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: 0;
  box-shadow: none;
  overflow: hidden;
}
.panel-heading {
  padding: 20px 24px;
  border-bottom: 1px solid var(--hairline);
}
.panel-heading h2 { margin: 0; font-size: 1.4rem; }
.panel-heading select { width: min(220px, 100%); }

.booking-table-wrap { overflow-x: auto; }
.booking-table { width: 100%; border-collapse: collapse; min-width: 920px; }
.booking-table th,
.booking-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--hairline);
  text-align: left;
  vertical-align: top;
}
.booking-table th {
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.booking-table td { font-weight: 500; font-size: 0.94rem; }

.status {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.status--pending   { background: #f6e6c2; color: #6b4a08; }
.status--confirmed { background: #d8e6d2; color: #2c3d24; }
.status--completed { background: #dde0e8; color: #2b3550; }
.status--cancelled { background: #efd0cc; color: #6b271d; }
.action-select { min-width: 160px; }

/* ============================================================
   CALENDAR PANEL
   ============================================================ */
.calendar-panel { margin-bottom: 28px; }
.calendar-heading h2 {
  font-family: "Fraunces", serif;
  font-weight: 350;
  font-style: italic;
  letter-spacing: -0.02em;
}
.calendar-controls { display: flex; gap: 8px; }
.button--ghost-dark {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--hairline);
  min-height: 42px;
  padding: 0 18px;
  font-family: "Manrope", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 240ms ease, background 240ms ease, color 240ms ease;
}
.button--ghost-dark:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--onyx);
}
.button--ghost-dark::after { content: ""; }

.calendar-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  padding: 14px 24px;
  border-bottom: 1px solid var(--hairline);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
.legend-item { display: inline-flex; align-items: center; gap: 8px; }
.legend-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--gold);
}
.legend-dot--pending   { background: #d49a2a; }
.legend-dot--confirmed { background: #4a6b3c; }
.legend-dot--completed { background: #4a5775; }
.legend-dot--cancelled { background: #8a3a2c; }

.calendar-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 0;
}
.cal-month { border-right: 1px solid var(--hairline); }
.cal-month:last-child { border-right: 0; }
.cal-month__label {
  padding: 14px 18px;
  background: var(--onyx);
  color: var(--gold-glow);
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 350;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
  border-bottom: 1px solid var(--hairline);
}
.cal-month__grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
}
.cal-head {
  padding: 14px 14px;
  background: var(--bone);
  color: var(--ink-soft);
  font-family: "Manrope", sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  text-align: center;
  border-bottom: 1px solid var(--hairline);
}
.cal-cell {
  position: relative;
  min-height: 132px;
  padding: 12px 12px 10px;
  border-right: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  background: var(--paper);
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 8px;
  cursor: pointer;
  transition: background 220ms ease, box-shadow 220ms ease;
}
.cal-cell:nth-child(7n) { border-right: 0; }
.cal-cell:hover { background: rgba(201, 169, 97, 0.10); }
.cal-cell--blank {
  background: repeating-linear-gradient(135deg, var(--bone) 0 6px, rgba(216, 207, 184, 0.45) 6px 7px);
  cursor: default;
}
.cal-cell--blank:hover { background: repeating-linear-gradient(135deg, var(--bone) 0 6px, rgba(216, 207, 184, 0.45) 6px 7px); }
.cal-cell--has {
  background: var(--paper);
  box-shadow: inset 3px 0 0 var(--gold-deep);
}
.cal-cell--has:hover { background: rgba(201, 169, 97, 0.12); }
.cal-cell--today {
  background: var(--paper);
  box-shadow: inset 0 0 0 2px var(--onyx);
}
.cal-cell--today:hover { background: rgba(201, 169, 97, 0.12); }
.cal-cell--today.cal-cell--has { box-shadow: inset 0 0 0 2px var(--onyx), inset 3px 0 0 var(--gold-deep); }

.cal-date {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 0.95rem;
  letter-spacing: 0;
  color: var(--ink);
}
.cal-cell--today .cal-date {
  background: var(--onyx);
  color: var(--gold-glow);
  border-radius: 999px;
  font-weight: 800;
}
.cal-chips {
  display: flex;
  flex-direction: column;
  gap: 4px;
  overflow: hidden;
}
.cal-chip {
  display: block;
  padding: 5px 7px 5px 9px;
  border-radius: 3px;
  font-family: "Manrope", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.2;
  word-break: break-word;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  border-left: 4px solid var(--gold);
  background: rgba(201, 169, 97, 0.18);
  color: var(--ink);
}
.cal-chip--pending   { border-left-color: #c98a16; background: #faecc6; color: #6b4a08; }
.cal-chip--confirmed { border-left-color: #3d5a2e; background: #d8e6d2; color: #1f2c17; }
.cal-chip--completed { border-left-color: #3b496e; background: #dde0e8; color: #1d2440; }
.cal-chip--cancelled { border-left-color: #7a2c1f; background: #efd0cc; color: #5a1f15; text-decoration: line-through; }
.cal-chip__time {
  display: inline-block;
  margin-right: 6px;
  padding: 1px 5px;
  background: rgba(13, 12, 10, 0.18);
  border-radius: 2px;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  vertical-align: 1px;
}

/* Sync subscription panel — collapsible */
.calendar-sync {
  background: var(--onyx);
  color: var(--bone);
  border-top: 1px solid var(--gold);
}
.calendar-sync__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px clamp(22px, 3vw, 34px);
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: background 220ms ease;
}
.calendar-sync__toggle::-webkit-details-marker { display: none; }
.calendar-sync__toggle:hover { background: var(--onyx-2); }
.calendar-sync__toggle-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--gold);
  font-family: "Manrope", sans-serif;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}
.calendar-sync__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  color: var(--gold);
  font-size: 0.9rem;
  transition: transform 380ms cubic-bezier(.2,.8,.2,1);
}
.calendar-sync__toggle-hint {
  color: rgba(243, 237, 225, 0.5);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.calendar-sync[open] .calendar-sync__icon { transform: rotate(180deg); background: var(--gold); color: var(--onyx); }
.calendar-sync[open] .calendar-sync__toggle-hint { display: none; }
.calendar-sync__body {
  padding: 6px clamp(22px, 3vw, 34px) clamp(22px, 3vw, 30px);
  border-top: 1px solid rgba(201, 169, 97, 0.24);
  animation: rise 320ms cubic-bezier(.2,.8,.2,1) both;
}
.calendar-sync__body { margin-top: 0; }
.calendar-sync__url {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin: 18px 0;
  padding: 14px 18px;
  background: rgba(243, 237, 225, 0.06);
  border: 1px solid rgba(201, 169, 97, 0.4);
}
.calendar-sync__url code {
  flex: 1;
  min-width: 220px;
  font-family: "SF Mono", "Menlo", "Consolas", monospace;
  font-size: 0.88rem;
  color: var(--gold-glow);
  word-break: break-all;
  user-select: all;
}
.calendar-sync__url .button {
  min-height: 42px;
  padding: 0 18px;
  font-size: 0.7rem;
}
.calendar-sync__steps {
  margin: 0;
  padding-left: 22px;
  color: rgba(243, 237, 225, 0.78);
  font-size: 0.92rem;
  line-height: 1.7;
}
.calendar-sync__steps li { margin-bottom: 6px; }
.calendar-sync__steps strong { color: var(--gold-glow); font-weight: 600; }
.calendar-sync__steps em { color: var(--bone); font-style: normal; font-weight: 600; }

/* ============================================================
   DAY MODAL
   ============================================================ */
.booking-modal {
  width: min(640px, 92vw);
  max-height: 86vh;
  padding: 0;
  border: 1px solid var(--gold);
  border-radius: 0;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 40px 120px rgba(13, 12, 10, 0.5);
  overflow: hidden;
  animation: rise 320ms cubic-bezier(.2,.8,.2,1);
}
.booking-modal::backdrop {
  background: rgba(13, 12, 10, 0.78);
  backdrop-filter: blur(6px);
}
.booking-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: 1px solid var(--hairline);
  background: var(--bone);
  color: var(--ink);
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  transition: background 200ms ease, color 200ms ease, border-color 200ms ease;
  z-index: 2;
}
.booking-modal__close:hover { background: var(--onyx); color: var(--gold); border-color: var(--gold); }

.booking-modal__head {
  padding: 28px 32px 18px;
  background: var(--onyx);
  color: var(--bone);
}
.booking-modal__head .eyebrow { color: var(--gold); margin-bottom: 8px; }
.booking-modal__head .eyebrow::before { background: var(--gold); }
.booking-modal__head h3 {
  margin: 0;
  font-family: "Fraunces", serif;
  font-weight: 350;
  font-style: italic;
  font-size: 1.6rem;
  letter-spacing: -0.01em;
  color: var(--bone);
}

.booking-modal__body {
  max-height: calc(86vh - 120px);
  overflow-y: auto;
  padding: 24px 32px 32px;
  display: grid;
  gap: 22px;
}

.modal-booking {
  padding: 22px;
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-left: 4px solid var(--gold-deep);
}
.modal-booking--pending   { border-left-color: #c98a16; }
.modal-booking--confirmed { border-left-color: #3d5a2e; }
.modal-booking--completed { border-left-color: #3b496e; }
.modal-booking--cancelled { border-left-color: #7a2c1f; background: rgba(122, 44, 31, 0.04); }

.modal-booking__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--hairline);
}
.modal-booking__type {
  margin: 0 0 4px;
  color: var(--gold-deep);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}
.modal-booking__customer {
  margin: 0;
  font-family: "Fraunces", serif;
  font-weight: 400;
  font-size: 1.3rem;
  color: var(--onyx);
  letter-spacing: -0.01em;
}

.modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
  margin: 0;
}
.modal-row { display: grid; gap: 4px; }
.modal-row__label {
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
.modal-row__value {
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 500;
}
.modal-row__value a { border-bottom: 1px solid var(--gold); }
.modal-row__value--total {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.3rem;
  color: var(--onyx);
}
.modal-row__value--block {
  font-size: 0.92rem;
  line-height: 1.55;
  white-space: pre-wrap;
}

.modal-section {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--hairline);
}
.modal-addons {
  margin: 6px 0 0;
  padding-left: 18px;
  display: grid;
  gap: 4px;
  color: var(--ink);
  font-size: 0.92rem;
}
.modal-addons li::marker { color: var(--gold-deep); }
.modal-included {
  display: inline-block;
  margin-left: 6px;
  padding: 1px 7px;
  background: var(--onyx);
  color: var(--gold);
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 999px;
  vertical-align: 1px;
}

.modal-booking__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--hairline);
}
.modal-booking__actions .button { min-height: 42px; padding: 0 18px; font-size: 0.68rem; }

/* ---- Booking table rows clickable ---- */
.booking-row { cursor: pointer; transition: background 200ms ease; }
.booking-row:hover { background: rgba(201, 169, 97, 0.1); }
.booking-row:focus-visible { outline: 2px solid var(--gold); outline-offset: -2px; }

/* ============================================================
   WYSIWYG QUOTATION EDITOR
   ============================================================ */
.quote-modal {
  width: min(820px, 96vw);
  max-height: 92vh;
  padding: 0;
  border: 1px solid var(--gold);
  border-radius: 0;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 40px 120px rgba(13, 12, 10, 0.5);
  overflow: hidden;
}
.quote-modal::backdrop {
  background: rgba(13, 12, 10, 0.78);
  backdrop-filter: blur(6px);
}
.quote-modal form { display: flex; flex-direction: column; max-height: 92vh; }
.quote-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(243, 237, 225, 0.4);
  background: rgba(13, 12, 10, 0.6);
  color: var(--bone);
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
}
.quote-modal__close:hover { background: var(--onyx); color: var(--gold); border-color: var(--gold); }

/* The document body */
.quote-doc {
  overflow-y: auto;
  padding: clamp(26px, 4vw, 48px);
  background: var(--paper);
}

.quote-doc__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}
.quote-doc__venue {
  margin: 0 0 6px;
  font-family: "Fraunces", serif;
  font-weight: 400;
  font-size: clamp(1.3rem, 2.6vw, 1.7rem);
  color: var(--onyx);
  letter-spacing: -0.01em;
}
.quote-doc__sub {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.5;
}
.quote-doc__headRight { text-align: right; }
.quote-doc__title {
  font-family: "Fraunces", serif;
  font-weight: 350;
  font-size: clamp(1.6rem, 3.4vw, 2.4rem);
  letter-spacing: 0.04em;
  color: var(--onyx);
}
.quote-doc__meta {
  margin: 6px 0 0;
  color: var(--ink);
  font-size: 0.78rem;
  line-height: 1.6;
}
.quote-doc__meta b { color: var(--muted); font-weight: 700; }
.quote-doc__rule {
  height: 1.4px;
  margin: 16px 0 22px;
  background: var(--gold);
}

.quote-doc__parties {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 22px;
}
.quote-party { display: grid; gap: 6px; align-content: start; }

.q-label {
  display: block;
  margin-bottom: 2px;
  color: var(--gold-deep);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

/* Inputs styled to blend into the document */
.q-input {
  width: 100%;
  padding: 5px 6px;
  border: 1px solid transparent;
  border-bottom: 1px dashed var(--hairline);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  transition: background 160ms ease, border-color 160ms ease;
}
.q-input:hover { background: rgba(201, 169, 97, 0.07); }
.q-input:focus {
  outline: none;
  border: 1px solid var(--gold);
  background: rgba(201, 169, 97, 0.1);
}
.q-input--lg {
  font-family: "Fraunces", serif;
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--onyx);
}
.q-input--num { max-width: 90px; }
.q-inline { display: flex; align-items: center; gap: 10px; }
.q-inline .q-input { flex: 1; }
.q-suffix { color: var(--muted); font-size: 0.82rem; font-weight: 600; }
select.q-input { cursor: pointer; }
textarea.q-input { resize: vertical; line-height: 1.55; border: 1px dashed var(--hairline); }

.quote-doc__pkgrow { margin-bottom: 16px; }
.quote-doc__pkgrow .q-input { max-width: 320px; }

/* Live line-item table */
.quote-items {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 18px;
}
.quote-items thead th {
  padding: 8px 10px;
  background: var(--onyx);
  color: var(--bone);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: left;
}
.quote-items__amt { text-align: right; }
.quote-item td {
  padding: 10px;
  border-bottom: 1px solid var(--hairline);
  font-size: 0.9rem;
  color: var(--ink);
}
.quote-item td:last-child { text-align: right; font-variant-numeric: tabular-nums; }
.quote-item--included td { color: var(--muted); }
.quote-item--discount td { color: var(--oxblood); }
.quote-item--total td {
  border-bottom: 0;
  border-top: 1.4px solid var(--gold);
  padding-top: 12px;
  font-family: "Fraunces", serif;
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--onyx);
}
.quote-item--total td:last-child { font-size: 1.2rem; }

.quote-doc__addons { margin-bottom: 20px; }
.quote-addon-toggles {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 8px;
  margin-top: 8px;
}
.quote-addon {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 11px;
  border: 1px solid var(--hairline);
  background: var(--bone);
  cursor: pointer;
  font-size: 0.84rem;
}
.quote-addon:hover { border-color: var(--gold); }
.quote-addon input { width: 15px; height: 15px; margin: 0; accent-color: var(--gold-deep); }
.quote-addon__name { flex: 1; color: var(--ink); font-weight: 600; }
.quote-addon__price { color: var(--muted); font-weight: 700; font-size: 0.76rem; }
.quote-addon--included {
  background: rgba(201, 169, 97, 0.12);
  border-color: var(--gold);
  cursor: not-allowed;
}
.quote-addon--included .quote-addon__price {
  color: var(--gold-deep);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.6rem;
}

.quote-custom { display: grid; gap: 8px; margin-top: 10px; }
.quote-custom__row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.quote-custom__name { flex: 1; }
.quote-custom__pricewrap {
  display: flex;
  align-items: center;
  gap: 4px;
  width: 130px;
}
.quote-custom__rm {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}
.quote-custom__price { flex: 1; }
.quote-custom__remove {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  border: 1px solid var(--hairline);
  background: var(--bone);
  color: var(--oxblood);
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}
.quote-custom__remove:hover { background: var(--oxblood); color: var(--bone); border-color: var(--oxblood); }
.quote-custom__add {
  justify-self: start;
  margin-top: 4px;
  padding: 8px 16px;
  border: 1px dashed var(--gold);
  background: transparent;
  color: var(--gold-deep);
  font-family: "Manrope", sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease;
}
.quote-custom__add span { font-size: 1rem; vertical-align: -1px; }
.quote-custom__add:hover { background: var(--gold); color: var(--onyx); border-style: solid; }
.quote-item--custom td { color: var(--ink); }

.quote-doc__notes { margin-bottom: 20px; }
.quote-doc__terms { color: var(--muted); }
.quote-doc__terms ol {
  margin: 8px 0 0;
  padding-left: 18px;
  font-size: 0.76rem;
  line-height: 1.7;
}

/* Edit history — collapsible, unobtrusive */
.quote-history {
  margin-top: 20px;
  padding-top: 14px;
  border-top: 1px dashed var(--hairline);
}
.quote-history__summary {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  list-style: none;
}
.quote-history__summary::-webkit-details-marker { display: none; }
.quote-history__summary .q-label { margin: 0; }
.quote-history__summary::before {
  content: "▸";
  color: var(--gold-deep);
  font-size: 0.7rem;
  transition: transform 200ms ease;
}
.quote-history[open] .quote-history__summary::before { transform: rotate(90deg); }
.quote-history__count {
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.quote-history__list {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 6px;
  max-height: 180px;
  overflow-y: auto;
}
.quote-history__item {
  display: flex;
  gap: 12px;
  padding: 7px 10px;
  background: var(--bone);
  border-left: 2px solid var(--gold);
  font-size: 0.78rem;
}
.quote-history__when {
  flex-shrink: 0;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}
.quote-history__action { color: var(--ink); font-weight: 600; }
.quote-history__empty {
  padding: 7px 10px;
  color: var(--muted);
  font-size: 0.78rem;
  font-style: italic;
}

/* Sticky action bar */
.quote-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  padding: 14px clamp(20px, 3vw, 32px);
  background: var(--onyx);
  border-top: 1px solid var(--gold);
}
.quote-bar__status {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.quote-bar__status select {
  padding: 7px 10px;
  border: 1px solid rgba(201, 169, 97, 0.5);
  background: rgba(243, 237, 225, 0.06);
  color: var(--bone);
  font-family: "Manrope", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  cursor: pointer;
}
.quote-bar__actions {
  display: flex;
  gap: 10px;
  margin-left: auto;
}
.quote-bar__actions .button { min-height: 44px; }

.edit-message {
  margin: 0;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(243, 237, 225, 0.6);
  min-height: 1em;
}
.edit-message.is-error { color: #e7a99c; }
.edit-message.is-success { color: var(--gold-glow); }

@media (max-width: 600px) {
  .modal-grid { grid-template-columns: 1fr; }
  .booking-modal__head { padding: 22px 22px 14px; }
  .booking-modal__body { padding: 18px 22px 24px; }
  .quote-doc__header { flex-direction: column; gap: 12px; }
  .quote-doc__headRight { text-align: left; }
  .quote-doc__parties { grid-template-columns: 1fr; gap: 18px; }
  .quote-bar__actions { margin-left: 0; width: 100%; }
  .quote-bar__actions .button { flex: 1; }
}

@media (max-width: 1100px) {
  .calendar-grid { grid-template-columns: 1fr; }
  .cal-month { border-right: 0; border-bottom: 1px solid var(--hairline); }
  .cal-month:last-child { border-bottom: 0; }
}

@media (max-width: 900px) {
  .cal-cell { min-height: 84px; padding: 8px; }
  .cal-chip { font-size: 0.58rem; padding: 2px 6px; }
  .calendar-heading { flex-direction: column; align-items: flex-start; gap: 14px; }
}

/* ============================================================
   STAGGERED REVEAL FOR JS-INJECTED CARDS
   ============================================================ */
.package-card:nth-child(1) { animation-delay: 100ms; }
.package-card:nth-child(2) { animation-delay: 220ms; }
.package-card:nth-child(3) { animation-delay: 340ms; }
.package-card:nth-child(4) { animation-delay: 460ms; }

.selling-point,
.layout-card,
.addon-card {
  animation: rise 700ms cubic-bezier(.2,.8,.2,1) both;
}
.selling-point:nth-child(1), .layout-card:nth-child(1), .addon-card:nth-child(1) { animation-delay: 60ms; }
.selling-point:nth-child(2), .layout-card:nth-child(2), .addon-card:nth-child(2) { animation-delay: 140ms; }
.selling-point:nth-child(3), .layout-card:nth-child(3), .addon-card:nth-child(3) { animation-delay: 220ms; }
.selling-point:nth-child(4), .layout-card:nth-child(4), .addon-card:nth-child(4) { animation-delay: 300ms; }
.selling-point:nth-child(5), .layout-card:nth-child(5), .addon-card:nth-child(5) { animation-delay: 380ms; }
.selling-point:nth-child(n+6), .layout-card:nth-child(n+6), .addon-card:nth-child(n+6) { animation-delay: 460ms; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .hero__media { animation: none !important; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .selling-grid, .layout-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .addon-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .stats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 960px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    align-items: center;
  }
  .site-header::after { display: none; }
  .burger { display: inline-flex; align-items: center; justify-content: center; }
  .site-header nav {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    z-index: 20;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    padding: 80px 32px 40px;
    background: rgba(13, 12, 10, 0.96);
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 380ms cubic-bezier(.2,.8,.2,1), opacity 280ms ease;
  }
  .site-header.is-nav-open nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .site-header nav a {
    color: var(--bone);
    font-size: 1.05rem;
    letter-spacing: 0.28em;
    padding: 8px 0;
  }
  .site-header nav a::after { bottom: -6px; }
}

@media (max-width: 900px) {
  .overview-band,
  .package-grid,
  .booking-copy,
  .booking-band {
    grid-template-columns: 1fr;
  }
  .booking-copy { position: static; top: auto; }
  .gallery-page-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery-photo--wide,
  .gallery-photo--tall {
    grid-column: span 1;
    grid-row: span 1;
    min-height: 360px;
  }
  .booking-intro { padding-right: 0; }
}

@media (max-width: 640px) {
  .footer { flex-direction: column; align-items: flex-start; }
  .panel-heading, .admin-hero { flex-direction: column; align-items: flex-start; }
  .hero { min-height: 760px; padding: 28px 22px; }
  .hero__content::after { white-space: normal; letter-spacing: 0.2em; }
  .form-grid, .time-row, .addon-options { grid-template-columns: 1fr; }
  .overview-grid { grid-template-columns: 1fr; }
  .selling-grid, .layout-grid, .addon-grid { grid-template-columns: 1fr; }
  .stat-card { padding: 14px; }
  .stat-card span { font-size: 0.6rem; letter-spacing: 0.2em; }
}
