/* ============================================================
   THE TIPSY LIME — Luxury Margarita Machine Rentals (DFW)
   Shared stylesheet
   Palette: near-black / champagne gold / lime highlight
   ============================================================ */

/* ---------- Design Tokens ---------- */
:root {
  --black:        #0B0B0C;
  --ink:          #101012;
  --surface:      #16161A;
  --surface-2:    #1D1D22;
  --line:         #2A2A30;

  --gold:         #C9A24B;
  --gold-soft:    #E4C97E;
  --gold-deep:    #A8842F;

  --lime:         #B6E84B;
  --lime-bright:  #C7F75A;

  --cream:        #F5F2E9;
  --muted:        #B6B2A6;
  --muted-2:      #8A877D;

  --grad-gold: linear-gradient(135deg, #E4C97E 0%, #C9A24B 45%, #A8842F 100%);
  --grad-dark: linear-gradient(180deg, #16161A 0%, #0B0B0C 100%);

  --serif: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --sans:  "Jost", "Montserrat", "Helvetica Neue", Arial, sans-serif;

  --shadow:    0 24px 60px rgba(0,0,0,.55);
  --shadow-sm: 0 12px 30px rgba(0,0,0,.40);

  --container: 1180px;
  --radius:    18px;
  --radius-sm: 12px;

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  background: var(--black);
  color: var(--cream);
  line-height: 1.65;
  font-size: 17px;
  font-weight: 300;
  letter-spacing: .2px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.08; letter-spacing: .3px; }
h1 { font-size: clamp(2.7rem, 7vw, 5.2rem); }
h2 { font-size: clamp(2.1rem, 4.6vw, 3.5rem); }
h3 { font-size: clamp(1.4rem, 2.6vw, 1.9rem); }
p { color: var(--muted); }
strong { color: var(--cream); font-weight: 500; }

.eyebrow {
  font-family: var(--sans);
  font-size: .74rem;
  font-weight: 500;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-block;
}
.eyebrow.lime { color: var(--lime); }

.gold-text { color: var(--gold); }
.lime-text { color: var(--lime); }
.serif-em { font-family: var(--serif); font-style: italic; color: var(--gold-soft); }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 28px; }
section { position: relative; }
.section-pad { padding: clamp(72px, 11vw, 130px) 0; }
.center { text-align: center; }
.lead { font-size: 1.12rem; color: var(--muted); max-width: 60ch; }
.center .lead { margin-left: auto; margin-right: auto; }
.mt-s { margin-top: 14px; } .mt-m { margin-top: 26px; } .mt-l { margin-top: 44px; }
.maxw { max-width: 720px; }
.center .maxw { margin-left: auto; margin-right: auto; }

.hairline {
  width: 64px; height: 1px; border: 0;
  background: var(--grad-gold);
  margin: 22px 0;
}
.center .hairline { margin-left: auto; margin-right: auto; }

/* decorative diamond divider */
.diamond {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  color: var(--gold); margin: 0 auto;
}
.diamond::before, .diamond::after {
  content: ""; height: 1px; width: 70px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.diamond::after { background: linear-gradient(90deg, var(--gold), transparent); }
.diamond span { font-size: .7rem; letter-spacing: .3em; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--sans); font-weight: 500; font-size: .82rem;
  letter-spacing: .18em; text-transform: uppercase;
  padding: 17px 34px; border-radius: 100px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease), color .35s var(--ease);
  cursor: pointer; white-space: nowrap;
}
.btn-primary {
  background: var(--grad-gold); color: #1a1206;
  box-shadow: 0 10px 30px rgba(201,162,75,.30);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(201,162,75,.45); }
.btn-secondary {
  background: transparent; color: var(--cream);
  border: 1px solid rgba(245,242,233,.30);
}
.btn-secondary:hover { border-color: var(--lime); color: var(--lime); transform: translateY(-3px); }
.btn-lime { background: var(--lime); color: #14210a; box-shadow: 0 10px 30px rgba(182,232,75,.25); }
.btn-lime:hover { background: var(--lime-bright); transform: translateY(-3px); box-shadow: 0 16px 40px rgba(182,232,75,.40); }
.btn-block { width: 100%; }
.btn-lg { padding: 20px 44px; font-size: .86rem; }

/* ---------- Navigation ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px 0;
  background: rgba(11,11,12,0);
  transition: background .4s var(--ease), padding .4s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(11,11,12,.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand .logo-mark { width: 38px; height: 38px; flex: none; }
.brand .logo-img { height: 56px; width: auto; display: block; transition: height .4s var(--ease); }
.nav.scrolled .brand .logo-img { height: 48px; }
.hero-logo { width: 100%; max-width: 480px; margin: 0 auto; display: block; filter: drop-shadow(0 24px 60px rgba(0,0,0,.6)); }
.footer .logo-img { height: 92px; width: auto; }
.brand .wordmark { font-family: var(--serif); font-size: 1.45rem; font-weight: 600; letter-spacing: .5px; line-height: 1; }
.brand .wordmark small { display: block; font-family: var(--sans); font-size: .54rem; letter-spacing: .42em; text-transform: uppercase; color: var(--gold); margin-top: 4px; font-weight: 400; }

.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a {
  font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; color: var(--cream);
  font-weight: 400; position: relative; padding: 6px 0; transition: color .3s var(--ease);
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 1px; width: 0;
  background: var(--grad-gold); transition: width .35s var(--ease);
}
.nav-links a:hover { color: var(--gold-soft); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--gold); }
.nav-cta { margin-left: 6px; }

.nav-toggle { display: none; width: 42px; height: 42px; border-radius: 10px; border: 1px solid var(--line); align-items: center; justify-content: center; flex-direction: column; gap: 5px; }
.nav-toggle span { display: block; width: 20px; height: 1.6px; background: var(--cream); transition: transform .3s var(--ease), opacity .3s var(--ease); }
.nav-toggle.open span:nth-child(1) { transform: translateY(6.6px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.6px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 140px 0 90px;
  background:
    radial-gradient(1100px 620px at 78% 8%, rgba(201,162,75,.16), transparent 60%),
    radial-gradient(900px 600px at 10% 90%, rgba(182,232,75,.10), transparent 55%),
    var(--black);
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(120% 90% at 50% 0%, transparent 55%, rgba(0,0,0,.55) 100%);
  pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; position: relative; z-index: 2; }
.hero-copy h1 { margin-top: 18px; }
.hero-copy h1 em { font-style: italic; color: var(--gold-soft); }
.hero-sub { margin-top: 24px; font-size: 1.16rem; color: var(--muted); max-width: 52ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 38px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 26px; margin-top: 46px; color: var(--muted-2); font-size: .82rem; letter-spacing: .04em; }
.hero-trust span { display: flex; align-items: center; gap: 9px; }
.hero-trust svg { color: var(--lime); flex: none; }

/* Hero visual (SVG machine card) */
.hero-visual { position: relative; }
.hero-card {
  position: relative; border-radius: 26px; padding: 30px;
  background: linear-gradient(160deg, rgba(29,29,34,.9), rgba(11,11,12,.92));
  border: 1px solid var(--line); box-shadow: var(--shadow);
}
.hero-card .badge {
  position: absolute; top: -16px; right: 26px;
  background: var(--grad-gold); color: #1a1206;
  font-size: .66rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  padding: 9px 16px; border-radius: 100px; box-shadow: var(--shadow-sm);
}
.hero-card .price-row { display: flex; align-items: baseline; justify-content: space-between; margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--line); }
.hero-card .price-row .label { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted-2); }
.hero-card .price-row .price { font-family: var(--serif); font-size: 2rem; color: var(--gold-soft); }

/* ---------- Section heading block ---------- */
.head { margin-bottom: 56px; }
.head.center { margin-left: auto; margin-right: auto; }
.head h2 { margin-top: 14px; }
.head p { margin-top: 18px; }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2,1fr); }
.grid-3 { grid-template-columns: repeat(3,1fr); }
.grid-4 { grid-template-columns: repeat(4,1fr); }

.card {
  background: var(--grad-dark);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  transition: transform .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
  position: relative; overflow: hidden;
}
.card::before {
  content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 100%;
  background: var(--grad-gold); transform: scaleX(0); transform-origin: left; transition: transform .45s var(--ease);
}
.card:hover { transform: translateY(-6px); border-color: rgba(201,162,75,.45); box-shadow: var(--shadow-sm); }
.card:hover::before { transform: scaleX(1); }
.card .ic { width: 54px; height: 54px; margin-bottom: 20px; color: var(--gold); }
.card h3 { font-size: 1.35rem; }
.card p { margin-top: 12px; font-size: .98rem; }

/* feature list (what's included) */
.includes { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px 40px; }
.inc-item { display: flex; align-items: flex-start; gap: 16px; padding: 6px 0; }
.inc-item .check {
  flex: none; width: 30px; height: 30px; border-radius: 50%;
  display: grid; place-items: center; margin-top: 2px;
  background: rgba(182,232,75,.12); color: var(--lime); border: 1px solid rgba(182,232,75,.3);
}
.inc-item h4 { font-family: var(--sans); font-weight: 500; font-size: 1.02rem; color: var(--cream); letter-spacing: .02em; }
.inc-item p { margin-top: 3px; font-size: .9rem; }

/* steps */
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(4,1fr); gap: 26px; }
.step { position: relative; padding-top: 18px; }
.step .num {
  font-family: var(--serif); font-size: 3.4rem; line-height: 1; color: transparent;
  -webkit-text-stroke: 1px var(--gold); background: none; display: block; margin-bottom: 14px;
}
.step h3 { font-size: 1.25rem; }
.step p { margin-top: 10px; font-size: .95rem; }

/* ---------- Split / feature rows ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split.reverse .split-media { order: 2; }

/* ---------- Image placeholders (luxury styled) ---------- */
.imgph {
  position: relative; border-radius: var(--radius); overflow: hidden;
  background:
    radial-gradient(120% 120% at 80% 0%, rgba(201,162,75,.20), transparent 55%),
    radial-gradient(120% 120% at 0% 100%, rgba(182,232,75,.14), transparent 55%),
    var(--surface);
  border: 1px solid var(--line);
  display: grid; place-items: center; text-align: center; padding: 30px;
  min-height: 320px;
}
.imgph .ph-tag {
  position: absolute; top: 14px; left: 14px;
  font-size: .6rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold);
  border: 1px solid rgba(201,162,75,.4); border-radius: 100px; padding: 5px 11px;
  background: rgba(11,11,12,.5);
}
.imgph .ph-note { font-size: .82rem; color: var(--muted-2); max-width: 32ch; letter-spacing: .04em; }
.imgph .ph-icon { color: var(--gold); opacity: .8; margin-bottom: 14px; }
.imgph.tall { min-height: 460px; }

/* ---------- Real photos ---------- */
.photo { display: block; width: 100%; object-fit: cover; border-radius: var(--radius); border: 1px solid var(--line); }
.split-media .photo { height: 100%; min-height: 440px; }
.photo-feature { height: 100%; min-height: 520px; }
.gallery-grid .photo { height: 100%; min-height: 270px; }
.gallery-grid .photo.wide { grid-column: span 2; }
.gallery-grid .photo.span-row { grid-row: span 2; }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.gallery-grid .imgph { min-height: 260px; }
.gallery-grid .imgph.wide { grid-column: span 2; }
.gallery-grid .imgph.span-row { grid-row: span 2; min-height: 100%; }

/* ---------- Service area ---------- */
.area-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.cities { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.chip {
  border: 1px solid var(--line); border-radius: 100px; padding: 11px 20px;
  font-size: .82rem; letter-spacing: .06em; color: var(--cream);
  background: var(--surface); transition: border-color .3s var(--ease), color .3s var(--ease);
}
.chip:hover { border-color: var(--gold); color: var(--gold-soft); }
.chip.primary { background: var(--grad-gold); color: #1a1206; border-color: transparent; font-weight: 500; }

/* ---------- FAQ accordion ---------- */
.faq-list { max-width: 860px; margin: 0 auto; }
.faq {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  width: 100%; text-align: left; display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 26px 4px; font-family: var(--serif); font-size: clamp(1.15rem,2vw,1.4rem); color: var(--cream);
  transition: color .3s var(--ease);
}
.faq-q:hover { color: var(--gold-soft); }
.faq-q .pm { flex: none; width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--gold); display: grid; place-items: center; color: var(--gold); transition: transform .4s var(--ease), background .3s var(--ease), color .3s var(--ease); position: relative; }
.faq-q .pm::before, .faq-q .pm::after { content: ""; position: absolute; background: currentColor; border-radius: 2px; }
.faq-q .pm::before { width: 12px; height: 1.6px; }
.faq-q .pm::after { width: 1.6px; height: 12px; transition: transform .4s var(--ease); }
.faq.open .pm { background: var(--grad-gold); color: #1a1206; border-color: transparent; }
.faq.open .pm::after { transform: scaleY(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .5s var(--ease); }
.faq-a p { padding: 0 4px 28px; font-size: 1rem; max-width: 70ch; }

/* ---------- Forms ---------- */
.form-card {
  background: var(--grad-dark); border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(28px, 4vw, 48px); box-shadow: var(--shadow-sm);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.field { display: flex; flex-direction: column; gap: 9px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); font-weight: 500; }
.field label .req { color: var(--lime); }
.field input, .field select, .field textarea {
  font-family: var(--sans); font-size: 1rem; color: var(--cream); font-weight: 300;
  background: var(--ink); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 15px 16px; transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
  width: 100%;
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,162,75,.15);
}
.field textarea { resize: vertical; min-height: 120px; }
.field select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23C9A24B' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 42px; }
.field .hint { font-size: .78rem; color: var(--muted-2); letter-spacing: .02em; }

/* flavor chooser */
.flavors { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.flavor {
  border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 18px 16px;
  background: var(--ink); cursor: pointer; text-align: center; transition: all .3s var(--ease); position: relative;
}
.flavor input { position: absolute; opacity: 0; pointer-events: none; }
.flavor .dot { width: 34px; height: 34px; border-radius: 50%; margin: 0 auto 10px; border: 2px solid var(--line); }
.flavor.lime-f .dot { background: radial-gradient(circle at 35% 30%, #d6ff7a, #7fae27); }
.flavor.straw-f .dot { background: radial-gradient(circle at 35% 30%, #ff8fae, #c43f63); }
.flavor.both-f .dot { background: conic-gradient(#7fae27 0 50%, #c43f63 50% 100%); }
.flavor .name { font-size: .92rem; color: var(--cream); letter-spacing: .04em; }
.flavor:hover { border-color: rgba(201,162,75,.5); }
.flavor.selected { border-color: var(--gold); background: rgba(201,162,75,.08); box-shadow: 0 0 0 3px rgba(201,162,75,.12); }

/* booking summary */
.summary {
  background: var(--ink); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 24px; position: sticky; top: 100px;
}
.summary h3 { font-size: 1.3rem; }
.summary .line { display: flex; justify-content: space-between; gap: 16px; padding: 13px 0; border-bottom: 1px dashed var(--line); font-size: .92rem; }
.summary .line span:first-child { color: var(--muted); }
.summary .line span:last-child { color: var(--cream); text-align: right; }
.summary .total { display: flex; justify-content: space-between; align-items: baseline; padding-top: 18px; margin-top: 6px; }
.summary .total .price { font-family: var(--serif); font-size: 1.7rem; color: var(--gold-soft); }
.note-box { display: flex; gap: 12px; align-items: flex-start; padding: 16px; border-radius: var(--radius-sm); background: rgba(182,232,75,.07); border: 1px solid rgba(182,232,75,.22); margin-top: 18px; }
.note-box svg { color: var(--lime); flex: none; margin-top: 2px; }
.note-box p { font-size: .85rem; color: var(--muted); }

/* booking "how it works" mini-steps */
.bk-step { display: flex; gap: 14px; align-items: flex-start; padding: 9px 0; }
.bk-step .bk-n { flex: none; width: 28px; height: 28px; border-radius: 50%; display: grid; place-items: center; font-family: var(--serif); font-size: 1rem; color: var(--gold-soft); border: 1px solid var(--gold); }
.bk-step strong { display: block; font-size: .98rem; color: var(--cream); font-weight: 500; }
.bk-step p { font-size: .84rem; color: var(--muted); margin-top: 2px; }
.booking-embed { min-height: 360px; }

/* booking confirmation banner */
.confirm {
  display: none; gap: 14px; align-items: flex-start; margin-bottom: 26px;
  padding: 20px 22px; border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(182,232,75,.14), rgba(201,162,75,.10));
  border: 1px solid rgba(182,232,75,.4);
}
.confirm.show { display: flex; }
.confirm svg { color: var(--lime); flex: none; }
.confirm h4 { font-family: var(--serif); font-size: 1.3rem; color: var(--cream); }
.confirm p { font-size: .9rem; margin-top: 4px; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative; overflow: hidden;
  background:
    radial-gradient(800px 400px at 50% -10%, rgba(201,162,75,.22), transparent 60%),
    var(--ink);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.cta-band .container { position: relative; z-index: 2; }
.cta-band h2 { max-width: 18ch; margin: 0 auto; }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.stat { text-align: center; padding: 22px 14px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.stat .n { font-family: var(--serif); font-size: clamp(2rem,4vw,2.8rem); color: var(--gold-soft); }
.stat .l { font-size: .76rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-2); margin-top: 6px; }

/* ---------- Testimonials ---------- */
.quote-card { background: var(--grad-dark); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 30px; }
.quote-card .stars { color: var(--gold); letter-spacing: 3px; margin-bottom: 16px; }
.quote-card p { font-family: var(--serif); font-style: italic; font-size: 1.22rem; color: var(--cream); line-height: 1.5; }
.quote-card .who { margin-top: 20px; font-family: var(--sans); font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); font-style: normal; }

/* ---------- Blog ---------- */
.post-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); gap: 26px; }
.post-card { display: flex; flex-direction: column; text-align: left; }
.post-card .cat { font-size: .68rem; letter-spacing: .22em; text-transform: uppercase; color: var(--lime); font-weight: 500; }
.post-card .date { font-size: .78rem; color: var(--muted-2); margin-top: 6px; letter-spacing: .04em; }
.post-card h3 { margin-top: 12px; font-size: 1.45rem; }
.post-card p { margin-top: 12px; font-size: .97rem; flex: 1; }
.post-card .read { margin-top: 20px; color: var(--gold); font-size: .76rem; letter-spacing: .16em; text-transform: uppercase; display: inline-flex; align-items: center; gap: 8px; }
.post-card:hover .read { color: var(--lime); }

.article { max-width: 760px; margin: 0 auto; }
.article > p { font-size: 1.07rem; color: var(--muted); margin-bottom: 20px; line-height: 1.8; }
.article > p:first-of-type { font-size: 1.18rem; color: var(--cream); }
.article h2 { margin: 38px 0 16px; }
.article h3 { margin: 28px 0 10px; color: var(--gold-soft); font-size: 1.3rem; }
.article ul { margin: 0 0 22px; padding: 0; }
.article li { position: relative; padding-left: 28px; margin-bottom: 11px; color: var(--muted); font-size: 1.04rem; }
.article li::before { content: ""; position: absolute; left: 0; top: 11px; width: 8px; height: 8px; border-radius: 50%; background: var(--lime); }
.article strong { color: var(--cream); }
.article .callout { background: var(--ink); border: 1px solid var(--line); border-left: 3px solid var(--gold); border-radius: var(--radius-sm); padding: 20px 24px; margin: 26px 0; }
.article .callout p { margin: 0; font-size: 1rem; }
.post-meta { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; align-items: center; color: var(--muted-2); font-size: .82rem; letter-spacing: .06em; }
.post-meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); }
.back-link { display: inline-flex; align-items: center; gap: 8px; color: var(--gold); font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 30px; }
.back-link:hover { color: var(--lime); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 48px; align-items: start; }
.contact-info { display: grid; gap: 18px; }
.cinfo {
  display: flex; gap: 18px; align-items: flex-start; padding: 22px 24px;
  border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface);
  transition: border-color .3s var(--ease);
}
.cinfo:hover { border-color: rgba(201,162,75,.45); }
.cinfo .ic { flex: none; width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: rgba(201,162,75,.1); color: var(--gold); border: 1px solid rgba(201,162,75,.25); }
.cinfo .l { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted-2); }
.cinfo .v { font-size: 1.08rem; color: var(--cream); margin-top: 3px; }
.cinfo .v:hover { color: var(--gold-soft); }

/* ---------- Footer ---------- */
.footer { background: var(--ink); border-top: 1px solid var(--line); padding: 70px 0 34px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
.footer h4 { font-family: var(--sans); font-size: .74rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); font-weight: 500; margin-bottom: 20px; }
.footer-links { display: grid; gap: 12px; }
.footer-links a { font-size: .94rem; color: var(--muted); transition: color .3s var(--ease); }
.footer-links a:hover { color: var(--lime); }
.footer .blurb { font-size: .94rem; color: var(--muted); margin-top: 16px; max-width: 34ch; }
.footer .socials { display: flex; gap: 12px; margin-top: 20px; }
.footer .socials a { width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; color: var(--cream); transition: all .3s var(--ease); }
.footer .socials a:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; align-items: center; margin-top: 50px; padding-top: 26px; border-top: 1px solid var(--line); font-size: .8rem; color: var(--muted-2); }
.footer-bottom a:hover { color: var(--gold); }

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  padding: 170px 0 70px; text-align: center; position: relative; overflow: hidden;
  background:
    radial-gradient(800px 400px at 50% -20%, rgba(201,162,75,.16), transparent 60%),
    var(--black);
}
.page-hero h1 { margin-top: 16px; }
.page-hero p { margin: 20px auto 0; max-width: 58ch; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Mobile nav panel ---------- */
.mobile-panel {
  position: fixed; inset: 0; z-index: 99; background: rgba(11,11,12,.98);
  backdrop-filter: blur(8px); display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 8px;
  transform: translateY(-100%); transition: transform .5s var(--ease); padding: 30px;
}
.mobile-panel.open { transform: none; }
.mobile-panel a { font-family: var(--serif); font-size: 2rem; color: var(--cream); padding: 10px; }
.mobile-panel a:hover { color: var(--gold); }
.mobile-panel .btn { margin-top: 18px; }

/* ============================================================
   RESPONSIVE  (mobile-first refinements)
   ============================================================ */
@media (max-width: 1080px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .hero { min-height: auto; padding: 130px 0 80px; }
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero-visual { max-width: 480px; }
  .split, .area-wrap, .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .split.reverse .split-media { order: 0; }
  .steps { grid-template-columns: repeat(2,1fr); gap: 30px; }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .stats { grid-template-columns: repeat(2,1fr); }
  .booking-layout { grid-template-columns: 1fr !important; }
  .summary { position: static; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .container { padding: 0 20px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .includes { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid .imgph.wide, .gallery-grid .photo.wide { grid-column: span 2; }
  .gallery-grid .photo.span-row { grid-row: span 1; }
  .form-grid { grid-template-columns: 1fr; }
  .flavors { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .hero-actions .btn { flex: 1; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
