/* ==========================================================================
   Ironside Barber Co. — demo site stylesheet
   Palette: ink #18181B / cream #F5EFE6 / gold #B89A6E
   ========================================================================== */

:root {
  --ink: #18181B;
  --ink-soft: #27272A;
  --cream: #F5EFE6;
  --cream-darker: #EDE5D6;
  --gold: #B89A6E;
  --gold-dark: #9A7F52;
  --red: #B91C1C;
  --text: #27272A;
  --text-muted: #6B6B70;
  --border: #E5DDC9;
  --white: #FFFFFF;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 24px 50px rgba(0,0,0,0.12);
  --radius: 8px;
  --radius-lg: 16px;
  --maxw: 1240px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--ink); text-decoration: none; transition: color 0.15s ease; }
a:hover { color: var(--gold-dark); }

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
}
h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 800; }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.75rem); }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.1rem; }
p  { margin: 0 0 1em; color: var(--text); }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section--tight { padding: 3rem 0; }
.section--dark {
  background: var(--ink);
  color: var(--cream);
}
.section--dark h2, .section--dark h3, .section--dark h4 { color: var(--white); }
.section--dark p { color: rgba(245, 239, 230, 0.78); }

/* ---------- Eyebrows / labels ---------- */
.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.85rem;
}
.section--dark .eyebrow { color: var(--gold); }

.section-head { text-align: center; max-width: 700px; margin: 0 auto 3.5rem; }
.section-head p { font-size: 1.1rem; color: var(--text-muted); }

/* ---------- Top announcement bar ---------- */
.topbar {
  background: var(--ink);
  color: var(--cream);
  font-size: 0.82rem;
  text-align: center;
  padding: 0.55rem 1rem;
  letter-spacing: 0.04em;
}
.topbar strong { color: var(--gold); font-weight: 600; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 239, 230, 0.95);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.95rem 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--ink);
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 1.1rem;
}
.brand__mark {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--ink);
  display: grid;
  place-items: center;
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.1rem;
}
.brand small {
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: -2px;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__links a {
  color: var(--ink);
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
}
.nav__links a:hover, .nav__links a.is-active { color: var(--gold-dark); }
.nav__lang {
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.4rem 0.8rem;
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--ink);
  cursor: pointer;
  transition: all 0.15s ease;
}
.nav__lang:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.nav__cta { margin-left: 0.25rem; }
.nav__toggle { display: none; background: none; border: 0; cursor: pointer; padding: 0.4rem; }
.nav__toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--ink); margin: 5px 0; border-radius: 2px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius);
  font-family: inherit;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.18s ease;
  text-align: center;
  white-space: nowrap;
  text-transform: uppercase;
}
.btn--primary { background: var(--ink); color: var(--cream); }
.btn--primary:hover { background: var(--gold-dark); color: var(--white); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn--gold { background: var(--gold); color: var(--ink); }
.btn--gold:hover { background: var(--gold-dark); color: var(--white); }
.btn--outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--outline:hover { background: var(--ink); color: var(--cream); }
.btn--ghost { background: transparent; color: var(--cream); border-color: rgba(245,239,230,0.35); }
.btn--ghost:hover { background: var(--cream); color: var(--ink); }
.btn--lg { padding: 1.05rem 2rem; font-size: 1rem; }
.btn--block { display: flex; width: 100%; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  color: var(--cream);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(24,24,27,0.85), rgba(24,24,27,0.45)),
    url('https://picsum.photos/seed/ironside-hero/1800/1100') center/cover no-repeat;
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 6rem 0 5rem;
}
.hero .eyebrow { color: var(--gold); margin-bottom: 1.5rem; }
.hero h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero h1 em { color: var(--gold); font-style: italic; font-weight: 400; }
.hero__sub {
  font-size: 1.2rem;
  color: rgba(245,239,230,0.85);
  margin-bottom: 2.25rem;
  max-width: 540px;
}
.hero__actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }

/* ---------- Trust strip ---------- */
.trust {
  background: var(--ink);
  color: var(--cream);
  padding: 1.25rem 0;
}
.trust__row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  font-size: 0.9rem;
  flex-wrap: wrap;
  color: rgba(245,239,230,0.78);
}
.trust__row strong { color: var(--gold); font-weight: 700; }
.trust__row .stars { color: var(--gold); letter-spacing: 0.1em; }

/* ---------- Grid utilities ---------- */
.grid { display: grid; gap: 1.5rem; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- Service cards ---------- */
.services { display: grid; grid-template-columns: 1fr 1fr; gap: 0 4rem; }
.service-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 1.1rem 0;
  border-bottom: 1px dotted var(--border);
  gap: 1rem;
}
.service-item__name { font-family: 'Playfair Display', serif; font-size: 1.15rem; color: var(--ink); font-weight: 600; }
.service-item__desc { font-size: 0.85rem; color: var(--text-muted); margin-top: 0.15rem; }
.service-item__price {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--gold-dark);
  font-size: 1.15rem;
  flex-shrink: 0;
}

/* ---------- Gallery ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}
.gallery__item {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
}
.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery__item:hover img { transform: scale(1.06); }
.gallery__item--tall { grid-row: span 2; aspect-ratio: 1 / 2; }
.gallery__item--wide { grid-column: span 2; aspect-ratio: 2 / 1; }

/* ---------- Story / About ---------- */
.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.story__img {
  aspect-ratio: 4 / 5;
  background: var(--ink) center/cover no-repeat;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.story__img img { width: 100%; height: 100%; object-fit: cover; }
.story__stats {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.story__stat strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--ink);
  font-weight: 700;
}
.story__stat span { font-size: 0.82rem; color: var(--text-muted); }

/* ---------- Team ---------- */
.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.team-card__photo {
  aspect-ratio: 3 / 4;
  background: var(--ink-soft) center/cover no-repeat;
  position: relative;
}
.team-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card__body { padding: 1.25rem; }
.team-card h3 { margin: 0 0 0.15rem; font-size: 1.2rem; }
.team-card__role { font-size: 0.82rem; color: var(--gold-dark); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 0.6rem; }
.team-card__bio { font-size: 0.9rem; color: var(--text-muted); margin: 0; }

/* ---------- Testimonials ---------- */
.quote {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}
.quote__stars { color: var(--gold); letter-spacing: 0.1em; margin-bottom: 0.85rem; font-size: 0.95rem; }
.quote p {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  line-height: 1.4;
  color: var(--ink);
  margin-bottom: 1rem;
  font-style: italic;
}
.quote__author { font-size: 0.85rem; color: var(--text-muted); font-weight: 600; }

/* ---------- Booking widget ---------- */
.booking {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}
.booking__steps {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
  counter-reset: step;
}
.booking__step {
  flex: 1;
  padding: 0.9rem 1rem;
  border-radius: var(--radius);
  background: var(--cream);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  text-align: center;
  position: relative;
}
.booking__step::before {
  counter-increment: step;
  content: counter(step);
  display: inline-block;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--border);
  color: var(--ink);
  font-weight: 700;
  font-size: 0.78rem;
  line-height: 22px;
  margin-right: 0.5rem;
}
.booking__step.is-active { background: var(--ink); color: var(--cream); }
.booking__step.is-active::before { background: var(--gold); color: var(--ink); }
.booking__step.is-done { background: var(--gold); color: var(--ink); }
.booking__step.is-done::before { background: var(--ink); color: var(--gold); content: "✓"; }

.booking__pick {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
  margin-bottom: 1.5rem;
}
.booking__option {
  background: var(--cream);
  border: 1.5px solid transparent;
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  cursor: pointer;
  transition: all 0.15s ease;
  text-align: left;
  font-family: inherit;
}
.booking__option:hover { border-color: var(--gold); }
.booking__option.is-selected { border-color: var(--ink); background: var(--ink); color: var(--cream); }
.booking__option strong { display: block; font-size: 0.95rem; margin-bottom: 0.1rem; }
.booking__option span { font-size: 0.8rem; color: var(--text-muted); }
.booking__option.is-selected span { color: rgba(245,239,230,0.7); }

/* ---------- Forms ---------- */
.form-row { margin-bottom: 1.1rem; }
.form-row label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--ink); margin-bottom: 0.4rem; letter-spacing: 0.04em; }
.form-row input, .form-row select, .form-row textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: none;
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(184,154,110,0.2);
}
.form-row textarea { min-height: 120px; resize: vertical; }
.form-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ---------- Product cards (shop) ---------- */
.product {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}
.product:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.product__img {
  aspect-ratio: 1 / 1;
  background: var(--cream-darker) center/cover no-repeat;
  position: relative;
}
.product__img img { width: 100%; height: 100%; object-fit: cover; }
.product__badge {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  background: var(--red);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  text-transform: uppercase;
}
.product__body { padding: 1.25rem; display: flex; flex-direction: column; flex: 1; }
.product__category { font-size: 0.72rem; color: var(--text-muted); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 0.35rem; }
.product h3 { font-size: 1.1rem; margin: 0 0 0.5rem; }
.product__price {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--gold-dark);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.product__price del { color: var(--text-muted); font-weight: 500; font-size: 0.95rem; margin-right: 0.4rem; }
.product .btn { margin-top: auto; }

/* ---------- Cart drawer / mini cart UI ---------- */
.cart-fab {
  position: fixed;
  bottom: 1.5rem; right: 1.5rem;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--gold);
  display: grid;
  place-items: center;
  border: 0;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  z-index: 40;
  font-size: 1.4rem;
}
.cart-fab__count {
  position: absolute;
  top: -4px; right: -4px;
  background: var(--red);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 999px;
  width: 22px; height: 22px;
  display: grid; place-items: center;
}

/* ---------- Blog cards ---------- */
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.blog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.blog-card__img {
  aspect-ratio: 16 / 10;
  background: var(--cream-darker) center/cover no-repeat;
}
.blog-card__img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card__body { padding: 1.5rem; }
.blog-card__meta { font-size: 0.78rem; color: var(--text-muted); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 0.6rem; }
.blog-card h3 { font-size: 1.25rem; margin: 0 0 0.5rem; line-height: 1.3; }
.blog-card p { font-size: 0.92rem; color: var(--text-muted); margin: 0 0 1rem; }
.blog-card__more { font-size: 0.85rem; font-weight: 600; color: var(--gold-dark); letter-spacing: 0.06em; text-transform: uppercase; }

/* ---------- Newsletter strip ---------- */
.newsletter {
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: 3rem;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.newsletter::before {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 40%; height: 100%;
  background: radial-gradient(circle at 80% 50%, rgba(184,154,110,0.25), transparent 65%);
}
.newsletter h2 { color: var(--white); margin: 0 0 0.5rem; position: relative; }
.newsletter p { color: rgba(245,239,230,0.78); margin: 0; position: relative; }
.newsletter form { display: flex; gap: 0.5rem; position: relative; }
.newsletter input {
  flex: 1;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(245,239,230,0.2);
  border-radius: var(--radius);
  background: rgba(245,239,230,0.08);
  color: var(--cream);
  font-family: inherit;
  font-size: 0.95rem;
}
.newsletter input::placeholder { color: rgba(245,239,230,0.5); }
.newsletter input:focus { outline: none; border-color: var(--gold); background: rgba(245,239,230,0.12); }

/* ---------- Contact / map block ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
}
.contact-info {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.contact-info h3 { margin: 0 0 1.25rem; }
.contact-info ul { list-style: none; margin: 0; padding: 0; }
.contact-info li { margin-bottom: 1.25rem; font-size: 0.92rem; color: var(--text); }
.contact-info li strong {
  display: block;
  font-size: 0.72rem;
  color: var(--gold-dark);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}
.contact-info a { color: var(--ink); text-decoration: underline; }
.map {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, #2A2A2E 0%, #3A3A3F 100%);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
}
.map::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(184,154,110,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184,154,110,0.08) 1px, transparent 1px);
  background-size: 40px 40px;
}
.map__pin {
  position: relative;
  z-index: 2;
  background: var(--gold);
  color: var(--ink);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: var(--shadow-lg);
}
.map__pin::after {
  content: "";
  position: absolute;
  bottom: -8px; left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px; height: 12px;
  background: var(--gold);
}

/* ---------- Live chat widget ---------- */
.chat-fab {
  position: fixed;
  bottom: 1.5rem; left: 1.5rem;
  background: var(--ink);
  color: var(--cream);
  border: 0;
  border-radius: 999px;
  padding: 0.85rem 1.4rem 0.85rem 1.1rem;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  z-index: 40;
  transition: transform 0.2s ease;
}
.chat-fab:hover { transform: translateY(-2px); }
.chat-fab__icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  display: grid; place-items: center;
  font-size: 1rem;
}
.chat-panel {
  position: fixed;
  bottom: 5rem; left: 1.5rem;
  width: 340px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  z-index: 41;
  overflow: hidden;
  display: none;
}
.chat-panel.is-open { display: block; }
.chat-panel__head {
  background: var(--ink);
  color: var(--cream);
  padding: 1.1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.chat-panel__head .dot { width: 9px; height: 9px; background: #22C55E; border-radius: 50%; box-shadow: 0 0 8px rgba(34,197,94,0.6); }
.chat-panel__head strong { color: var(--white); font-weight: 600; }
.chat-panel__head small { display: block; color: rgba(245,239,230,0.65); font-size: 0.78rem; }
.chat-panel__body { padding: 1.25rem; max-height: 280px; overflow-y: auto; }
.chat-msg {
  background: var(--cream);
  padding: 0.65rem 0.9rem;
  border-radius: 14px;
  font-size: 0.9rem;
  margin-bottom: 0.6rem;
  max-width: 85%;
}
.chat-msg--us { background: var(--ink); color: var(--cream); margin-left: auto; }
.chat-panel__input {
  display: flex;
  border-top: 1px solid var(--border);
}
.chat-panel__input input {
  flex: 1;
  padding: 0.85rem 1rem;
  border: 0;
  font-family: inherit;
  font-size: 0.9rem;
  background: transparent;
}
.chat-panel__input input:focus { outline: none; }
.chat-panel__input button {
  background: var(--gold);
  color: var(--ink);
  border: 0;
  padding: 0 1.25rem;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.05em;
  font-size: 0.85rem;
  text-transform: uppercase;
}

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  background: var(--ink);
  color: var(--cream);
  padding: 5rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(184,154,110,0.18), transparent 50%);
}
.page-hero h1 { color: var(--white); position: relative; }
.page-hero p { color: rgba(245,239,230,0.78); max-width: 600px; margin: 0 auto; position: relative; font-size: 1.1rem; }
.page-hero .eyebrow { color: var(--gold); position: relative; }

/* ---------- Blog post body ---------- */
.post {
  max-width: 760px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}
.post__meta { font-size: 0.8rem; color: var(--text-muted); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1.25rem; }
.post h1 { margin-bottom: 1.5rem; }
.post__hero {
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 2.5rem;
  background: var(--cream-darker);
}
.post__hero img { width: 100%; height: 100%; object-fit: cover; }
.post p { font-size: 1.08rem; line-height: 1.75; color: var(--ink); margin-bottom: 1.5rem; }
.post h2 { margin-top: 2.5rem; margin-bottom: 1rem; }
.post ul { padding-left: 1.3rem; margin-bottom: 1.5rem; }
.post ul li { margin-bottom: 0.5rem; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(245,239,230,0.72);
  padding: 4.5rem 0 2rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer__brand .brand { color: var(--white); }
.footer__brand .brand small { color: rgba(245,239,230,0.55); }
.footer__brand p { color: rgba(245,239,230,0.65); margin-top: 1rem; font-size: 0.92rem; max-width: 300px; }
.footer__col h4 {
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1.1rem;
}
.footer__col ul { list-style: none; margin: 0; padding: 0; }
.footer__col li { margin-bottom: 0.55rem; }
.footer__col a { color: rgba(245,239,230,0.72); font-size: 0.92rem; }
.footer__col a:hover { color: var(--gold); }
.footer__social { display: flex; gap: 0.6rem; margin-top: 1rem; }
.footer__social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(245,239,230,0.1);
  display: grid; place-items: center;
  font-size: 0.95rem;
  color: var(--cream);
}
.footer__social a:hover { background: var(--gold); color: var(--ink); }
.footer__bottom {
  border-top: 1px solid rgba(245,239,230,0.12);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: rgba(245,239,230,0.5);
  flex-wrap: wrap;
  gap: 1rem;
}

/* ---------- Utility ---------- */
.center { text-align: center; }
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; } .mt-3 { margin-top: 3rem; }
.mb-2 { margin-bottom: 2rem; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .services { grid-template-columns: 1fr; gap: 0 1rem; }
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .gallery__item--tall, .gallery__item--wide { grid-row: auto; grid-column: auto; aspect-ratio: 1; }
  .story { grid-template-columns: 1fr; gap: 2.5rem; }
  .newsletter { grid-template-columns: 1fr; padding: 2rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .nav__lang { display: none; }
  .booking__pick { grid-template-columns: 1fr 1fr; }
  .form-cols { grid-template-columns: 1fr; }
  .booking__steps { flex-wrap: wrap; }
}

@media (max-width: 680px) {
  .section { padding: 3.5rem 0; }
  .nav__links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: var(--cream);
    padding: 1.25rem 1.5rem 1.75rem;
    gap: 1rem;
    align-items: stretch;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
  }
  .nav__links.is-open { display: flex; }
  .nav__toggle { display: block; }
  .nav__cta { order: -1; margin-left: 0; }
  .hero { min-height: 70vh; }
  .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .booking { padding: 1.5rem; }
  .booking__pick { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .chat-panel { width: calc(100vw - 3rem); left: 1.5rem; right: 1.5rem; }
}
