:root {
  --black: #0a0a0a;
  --white: #f8f7f4;
  --cream: #edeae4;
  --warm: #c9b99a;
  --accent: #b8946a;
  --text: #2c2c2c;
  --muted: #6b6b6b;
  --serif: 'Instrument Serif', Georgia, serif;
  --sans: 'DM Sans', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
}

/* ── Promo Banner ─────────────────────────────────────────────────────────── */
.promo-banner {
  background: var(--accent);
  color: var(--white);
  text-align: center;
  padding: 0.6rem 2rem;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 200;
}
.promo-badge {
  background: rgba(255,255,255,0.25);
  padding: 2px 8px;
  border-radius: 2px;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.promo-cta {
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.6);
  text-decoration: none;
  font-weight: 600;
  transition: border-color 0.2s;
}
.promo-cta:hover { border-color: var(--white); }

/* ── Nav ──────────────────────────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  padding: 1.5rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.4s, backdrop-filter 0.4s;
}
nav.scrolled {
  background: rgba(10,10,10,0.88);
  backdrop-filter: blur(20px);
}
.logo {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.logo-img {
  height: 50px;
  width: auto;
  display: block;
}
.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a {
  color: rgba(248,247,244,0.7);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  background: var(--white) !important;
  color: var(--black) !important;
  padding: 0.6rem 1.5rem;
  border-radius: 2px;
  font-weight: 500 !important;
}

/* ── Hero ─────────────────────────────────────────────────────────────────── */
.hero {
  height: 100vh;
  min-height: 700px;
  background: var(--black);
  display: flex;
  align-items: flex-end;
  padding: 0 3rem 5rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.3) 0%, rgba(10,10,10,0.1) 50%, rgba(10,10,10,0.8) 100%),
    url('https://images.unsplash.com/photo-1600596542815-ffad4c1539a9?w=1920&q=80') center/cover;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.12); }
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 2.5rem;
  right: 3rem;
  width: 200px;
  aspect-ratio: 631.31 / 558.33;
  background-image: url("../img/logo-white.27436590d6c2.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.09;
  pointer-events: none;
  z-index: 2;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}
.hero-tag {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--warm);
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 5.5rem);
  color: var(--white);
  line-height: 1.05;
  font-weight: 400;
  margin-bottom: 1.5rem;
}
.hero h1 em { font-style: italic; color: var(--warm); }
.hero p {
  color: rgba(248,247,244,0.65);
  font-size: 1.1rem;
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}
.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--white);
  color: var(--black);
  padding: 1rem 2rem;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: transform 0.3s, box-shadow 0.3s;
}
.hero-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.hero-btn svg { width: 18px; height: 18px; }

/* ── Section shared ───────────────────────────────────────────────────────── */
.section-tag {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
  font-weight: 500;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.15;
  margin-bottom: 4rem;
  max-width: 600px;
}

/* ── Services ─────────────────────────────────────────────────────────────── */
.services {
  padding: 7rem 3rem;
  background: var(--white);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2px;
}
.service-card {
  background: var(--black);
  color: var(--white);
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform 0.4s;
}
.service-card:hover { transform: scale(0.98); }
.service-num {
  position: absolute;
  top: 2rem;
  left: 2.5rem;
  font-family: var(--serif);
  font-size: 4rem;
  color: rgba(255,255,255,0.06);
  line-height: 1;
}
.service-icon {
  width: 40px;
  height: 40px;
  border: 1px solid var(--warm);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.service-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--warm);
  fill: none;
  stroke-width: 1.5;
}
.service-card h3 {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
}
.service-card p { color: rgba(255,255,255,0.5); font-size: 0.9rem; line-height: 1.6; }
.service-price {
  margin-top: 1.25rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--warm);
  letter-spacing: 0.05em;
}

/* ── Why ──────────────────────────────────────────────────────────────────── */
.why { padding: 7rem 3rem; background: var(--cream); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.why-text .section-title { margin-bottom: 2rem; }
.why-text p { color: var(--muted); line-height: 1.8; font-size: 1rem; margin-bottom: 1.5rem; }
.stat-row {
  display: flex;
  gap: 3rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(0,0,0,0.1);
}
.stat-num { font-family: var(--serif); font-size: 2.5rem; color: var(--accent); line-height: 1; }
.stat-label { font-size: 0.8rem; color: var(--muted); margin-top: 0.5rem; letter-spacing: 0.03em; }
.why-visual {
  aspect-ratio: 4/5;
  background: var(--black);
  position: relative;
  overflow: hidden;
}
.why-visual::after {
  content: 'HOWDYHI STUDIO';
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  font-family: var(--serif);
  font-size: 1.2rem;
  color: rgba(255,255,255,0.15);
  letter-spacing: 0.3em;
}
.why-visual img { width: 100%; height: 100%; object-fit: cover; opacity: 0.7; }

/* ── Immersive ────────────────────────────────────────────────────────────── */
.immersive {
  padding: 7rem 3rem;
  background: var(--black);
  color: var(--white);
  text-align: center;
}
.immersive .section-tag { color: var(--warm); }
.immersive .section-title { color: var(--white); margin: 0 auto 1.5rem; max-width: 700px; }
.immersive > p {
  color: rgba(255,255,255,0.5);
  max-width: 560px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}
.immersive-features { display: flex; justify-content: center; gap: 4rem; flex-wrap: wrap; }
.imm-feat { text-align: center; max-width: 200px; }
.imm-feat-icon {
  width: 56px; height: 56px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.imm-feat-icon svg { width: 22px; height: 22px; stroke: var(--warm); fill: none; stroke-width: 1.5; }
.imm-feat h4 { font-family: var(--serif); font-size: 1.1rem; margin-bottom: 0.5rem; font-weight: 400; }
.imm-feat p { font-size: 0.82rem; color: rgba(255,255,255,0.4); margin: 0; }

/* ── CTA / Booking ────────────────────────────────────────────────────────── */
.cta { padding: 7rem 3rem; background: var(--white); }
.cta-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 6rem;
  align-items: start;
}
.cta-intro .section-title { margin: 0 0 1.5rem; max-width: 460px; }
.cta-intro > p { color: var(--muted); margin: 0 0 2.5rem; max-width: 420px; line-height: 1.7; }
.cta-meta { border-top: 1px solid rgba(0,0,0,0.1); padding-top: 2rem; display: grid; gap: 1.25rem; }
.cta-meta-row { display: flex; gap: 1rem; align-items: flex-start; font-size: 0.9rem; }
.cta-meta-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  min-width: 90px;
  padding-top: 0.15rem;
}
.cta-meta-value { color: var(--text); line-height: 1.5; }
.cta-meta-value a { color: var(--accent); text-decoration: none; font-weight: 500; }
.cta-meta-value a:hover { text-decoration: underline; }

/* ── Booking form ─────────────────────────────────────────────────────────── */
.booking-form {
  background: var(--cream);
  padding: 3rem;
  display: grid;
  gap: 1.75rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.75rem; }
.field { display: flex; flex-direction: column; gap: 0.5rem; }
.field label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.field label .req { color: var(--accent); margin-left: 0.25rem; }
.field input,
.field select,
.field textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(0,0,0,0.2);
  padding: 0.65rem 0;
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.3s;
  width: 100%;
  border-radius: 0;
}
.field input::placeholder,
.field textarea::placeholder { color: rgba(0,0,0,0.3); }
.field input:focus,
.field select:focus,
.field textarea:focus { border-bottom-color: var(--accent); }
.field textarea { resize: vertical; min-height: 90px; line-height: 1.6; }
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%236b6b6b' stroke-width='1.5' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position: right 0.25rem center;
  background-size: 12px;
  padding-right: 1.5rem;
  cursor: pointer;
}
.field-error { font-size: 0.78rem; color: #c0392b; margin-top: 0.25rem; }
.form-error-banner {
  background: #fdecea;
  border: 1px solid #c0392b;
  color: #c0392b;
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  border-radius: 2px;
}

/* Services checkboxes */
.services-checks { display: grid; grid-template-columns: 1fr 1fr; gap: 0.65rem; margin-top: 0.25rem; }
.check {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.75rem 0.9rem;
  background: var(--white);
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 0.85rem;
  transition: border-color 0.25s, background 0.25s;
}
.check:hover { border-color: rgba(0,0,0,0.15); }
.check input[type="checkbox"] { position: absolute; opacity: 0; pointer-events: none; }
.check-box {
  width: 14px;
  height: 14px;
  border: 1px solid rgba(0,0,0,0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s;
}
.check-box::after {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--white);
  opacity: 0;
  transition: opacity 0.2s;
}
.check input:checked ~ .check-box { background: var(--black); border-color: var(--black); }
.check input:checked ~ .check-box::after { opacity: 1; }
.check input:checked ~ span:last-child { font-weight: 500; }

/* Submit row */
.form-submit {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.5rem;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.form-note { font-size: 0.78rem; color: var(--muted); line-height: 1.5; max-width: 280px; }
.submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--black);
  color: var(--white);
  border: none;
  padding: 1.1rem 2.2rem;
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.3s, background 0.3s;
}
.submit-btn:hover { transform: translateY(-2px); background: #1a1a1a; }
.submit-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.submit-btn svg { width: 16px; height: 16px; }

/* Success state */
.form-success {
  display: none;
  padding: 2.5rem 2rem;
  background: var(--black);
  color: var(--white);
  text-align: center;
}
.form-success.show { display: block; }
.form-success h4 { font-family: var(--serif); font-size: 1.8rem; font-weight: 400; margin-bottom: 0.75rem; }
.form-success h4 em { font-style: italic; color: var(--warm); }
.form-success p { color: rgba(255,255,255,0.55); font-size: 0.9rem; }

/* CRM embed slot */
.crm-embed-wrapper { background: var(--cream); padding: 2rem; }

/* Google Places autocomplete styling */
.pac-container {
  background: var(--cream);
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 0;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  font-family: var(--sans);
  margin-top: 4px;
}
.pac-item { padding: 0.7rem 0.9rem; border-top: 1px solid rgba(0,0,0,0.06); font-size: 0.88rem; color: var(--text); cursor: pointer; }
.pac-item:first-child { border-top: none; }
.pac-item:hover, .pac-item-selected { background: var(--white); }
.pac-item-query { color: var(--text); font-size: 0.92rem; }
.pac-matched { color: var(--accent); font-weight: 500; }
.pac-icon { display: none; }

/* ── Footer ───────────────────────────────────────────────────────────────── */
footer {
  background: var(--black);
  color: rgba(255,255,255,0.35);
  padding: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  gap: 2rem;
}
footer .logo .logo-img { height: 58px; }
.footer-links { display: flex; gap: 2rem; }
.footer-links a { color: rgba(255,255,255,0.35); text-decoration: none; transition: color 0.3s; }
.footer-links a:hover { color: var(--white); }

/* Footer social icons */
.footer-social { display: flex; gap: 1.1rem; align-items: center; }
.footer-social-icon {
  color: rgba(255,255,255,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s;
}
.footer-social-icon:hover { color: var(--white); }
.footer-social-icon svg { width: 18px; height: 18px; }

/* Nav social icons */
.nav-social { display: flex; gap: 0.6rem; align-items: center; margin-right: 0.5rem; }
.social-icon {
  color: rgba(248,247,244,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s;
  padding: 2px;
}
.social-icon:hover { color: var(--white); }
.social-icon svg { width: 16px; height: 16px; }

/* ── Mobile nav ───────────────────────────────────────────────────────────── */
.menu-toggle { display: none; background: none; border: none; cursor: pointer; }
.menu-toggle span { display: block; width: 22px; height: 2px; background: var(--white); margin: 5px 0; transition: 0.3s; }

/* ── Fade-up animation ────────────────────────────────────────────────────── */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  nav { padding: 1.2rem 1.5rem; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10,10,10,0.97);
    padding: 2rem 1.5rem;
    gap: 1.2rem;
  }
  .nav-social { margin-right: 0; }
  .menu-toggle { display: block; }
  .hero { padding: 0 1.5rem 3rem; }
  .services, .why, .immersive, .cta { padding: 4rem 1.5rem; }
  .why-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .stat-row { gap: 2rem; }
  .cta-grid { grid-template-columns: 1fr; gap: 3rem; }
  .booking-form { padding: 2rem 1.5rem; }
  .form-row { grid-template-columns: 1fr; gap: 1.5rem; }
  .services-checks { grid-template-columns: 1fr; }
  .form-submit { flex-direction: column; align-items: stretch; }
  .submit-btn { justify-content: center; }
  footer { flex-direction: column; gap: 1.5rem; text-align: center; }
  .footer-social { justify-content: center; }
  .blog-grid { grid-template-columns: 1fr; }
  .post-hero-inner { padding: 1.5rem; }
  .post-wrap { padding: 2rem 1.5rem; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   BLOG STYLES
═══════════════════════════════════════════════════════════════════════════ */

/* Blog hero banner */
.blog-hero {
  background: var(--black);
  padding: 8rem 3rem 5rem;
  position: relative;
  overflow: hidden;
}
.blog-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,0.95) 40%, rgba(184,148,106,0.15) 100%);
}
.blog-hero-inner { position: relative; z-index: 2; max-width: 700px; }
.blog-hero-inner .hero-tag { color: var(--warm); font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 500; margin-bottom: 1.2rem; }
.blog-hero-inner h1 { font-family: var(--serif); font-size: clamp(2.5rem, 5vw, 4rem); color: var(--white); font-weight: 400; line-height: 1.1; margin-bottom: 1rem; }
.blog-hero-inner h1 em { font-style: italic; color: var(--warm); }
.blog-hero-inner p { color: rgba(255,255,255,0.55); font-size: 1rem; line-height: 1.7; }

/* Wrapper */
.blog-wrap { max-width: 1200px; margin: 0 auto; padding: 4rem 3rem 6rem; }

/* Category filter pills */
.blog-filters { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-bottom: 3rem; }
.filter-pill {
  padding: 0.4rem 1.1rem;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 100px;
  font-size: 0.78rem;
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s;
  letter-spacing: 0.03em;
}
.filter-pill:hover { border-color: var(--accent); color: var(--accent); }
.filter-pill.active { background: var(--black); border-color: var(--black); color: var(--white); }

/* Blog post grid */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 2rem; }
.blog-card { border: 1px solid rgba(0,0,0,0.08); border-radius: 4px; overflow: hidden; background: var(--white); transition: box-shadow 0.3s, transform 0.3s; }
.blog-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.1); transform: translateY(-3px); }

.blog-card-img-wrap { display: block; aspect-ratio: 16/9; overflow: hidden; position: relative; }
.blog-card-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.blog-card:hover .blog-card-img-wrap img { transform: scale(1.04); }
.blog-card-cat {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  background: var(--black);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 2px;
}

.blog-card-body { padding: 1.5rem 1.5rem 1.75rem; }
.featured-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 2px 7px;
  border-radius: 2px;
  margin-bottom: 0.75rem;
}
.blog-card-body h2 { font-family: var(--serif); font-size: 1.25rem; font-weight: 400; line-height: 1.35; margin-bottom: 0.75rem; }
.blog-card-body h2 a { color: var(--text); text-decoration: none; transition: color 0.2s; }
.blog-card-body h2 a:hover { color: var(--accent); }
.blog-card-body > p { color: var(--muted); font-size: 0.88rem; line-height: 1.65; margin-bottom: 1.25rem; }
.blog-card-meta { display: flex; gap: 1rem; font-size: 0.75rem; color: var(--muted); border-top: 1px solid rgba(0,0,0,0.07); padding-top: 0.9rem; }

/* ── Blog post detail ─────────────────────────────────────────────────────── */
.post-hero {
  height: 60vh;
  min-height: 420px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: flex-end;
}
.post-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.15) 0%, rgba(10,10,10,0.85) 100%);
  display: flex;
  align-items: flex-end;
  width: 100%;
}
.post-hero-inner { padding: 3rem; max-width: 820px; position: relative; z-index: 2; }
.post-meta-top { display: flex; gap: 1rem; align-items: center; margin-bottom: 1rem; }
.post-cat {
  background: var(--accent);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 2px;
  text-decoration: none;
}
.post-date { color: rgba(255,255,255,0.55); font-size: 0.82rem; }
.post-hero-inner h1 { font-family: var(--serif); font-size: clamp(2rem, 4.5vw, 3.2rem); color: var(--white); font-weight: 400; line-height: 1.1; margin-bottom: 0.75rem; }
.post-excerpt { color: rgba(255,255,255,0.65); font-size: 1rem; line-height: 1.6; max-width: 620px; }
.post-author { margin-top: 1rem; font-size: 0.82rem; color: rgba(255,255,255,0.5); }

/* Post body */
.post-wrap { max-width: 820px; margin: 0 auto; padding: 4rem 3rem; }
.post-body { font-size: 1.05rem; line-height: 1.85; color: var(--text); }
.post-body h2 { font-family: var(--serif); font-size: 1.7rem; font-weight: 400; margin: 2.5rem 0 1rem; color: var(--black); line-height: 1.2; }
.post-body p { margin-bottom: 1.4rem; }
.post-body strong { font-weight: 600; color: var(--black); }
.post-body em { font-style: italic; }

/* Tags */
.post-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; margin: 2.5rem 0; padding-top: 2rem; border-top: 1px solid rgba(0,0,0,0.08); }
.tag { background: var(--cream); color: var(--muted); font-size: 0.75rem; padding: 4px 12px; border-radius: 100px; }

/* Post CTA block */
.post-cta-block {
  background: var(--black);
  color: var(--white);
  padding: 3rem;
  margin: 3rem 0;
  border-radius: 4px;
}
.post-cta-block .section-tag { color: var(--warm); margin-bottom: 0.75rem; }
.post-cta-block h3 { font-family: var(--serif); font-size: 1.8rem; font-weight: 400; margin-bottom: 0.75rem; }
.post-cta-block p { color: rgba(255,255,255,0.55); margin-bottom: 1.75rem; }

/* Related posts */
.related-posts { margin-top: 3rem; padding-top: 3rem; border-top: 1px solid rgba(0,0,0,0.08); }

/* ═══════════════════════════════════════════════════════════════════════════
   WHATSAPP FLOATING BUTTON
   ═══════════════════════════════════════════════════════════════════════════ */
.wa-btn {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
}
.wa-btn svg { width: 28px; height: 28px; }
.wa-btn:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(37,211,102,.55); }
.wa-tooltip {
  position: absolute;
  right: 66px;
  background: #111;
  color: #fff;
  font-size: .75rem;
  padding: 5px 10px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s;
}
.wa-btn:hover .wa-tooltip { opacity: 1; }

/* ═══════════════════════════════════════════════════════════════════════════
   BOOK ONLINE CTA SECTION
   ═══════════════════════════════════════════════════════════════════════════ */
.book-online-cta {
  background: var(--black);
  padding: 5rem 2rem;
  text-align: center;
}
.boc-inner { max-width: 860px; margin: 0 auto; }
.boc-text { margin-bottom: 2.5rem; }
.boc-text h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: .75rem;
}
.boc-text p { color: rgba(255,255,255,.55); font-size: 1.05rem; max-width: 540px; margin: 0 auto; }
.boc-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.boc-step { text-align: center; }
.boc-step-num {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--warm);
  color: var(--warm);
  font-size: .9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto .4rem;
}
.boc-step-label { color: rgba(255,255,255,.55); font-size: .8rem; }
.boc-arrow { color: rgba(255,255,255,.2); font-size: 1.2rem; }
.boc-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.boc-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--warm);
  color: var(--black);
  padding: .85rem 2rem;
  border-radius: 2px;
  font-weight: 600;
  font-size: .9rem;
  text-decoration: none;
  transition: opacity .2s;
}
.boc-btn:hover { opacity: .88; }
.boc-btn svg { width: 16px; height: 16px; }
.boc-btn-secondary {
  display: inline-flex;
  align-items: center;
  color: rgba(255,255,255,.5);
  font-size: .88rem;
  text-decoration: none;
  padding: .85rem 0;
  transition: color .2s;
}
.boc-btn-secondary:hover { color: rgba(255,255,255,.8); }

/* ═══════════════════════════════════════════════════════════════════════════
   LEGAL PAGES (Privacy / Terms)
   ═══════════════════════════════════════════════════════════════════════════ */
.legal-page { padding-top: 80px; min-height: 70vh; }
.legal-wrap { max-width: 760px; margin: 0 auto; padding: 4rem 2rem; }
.legal-header { margin-bottom: 3rem; }
.legal-header h1 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--black);
  margin: .5rem 0;
}
.legal-date { color: var(--muted); font-size: .85rem; }
.legal-body h2 {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--black);
  margin: 2.5rem 0 .75rem;
}
.legal-body p { line-height: 1.8; color: var(--text); margin-bottom: 1rem; }
.legal-body ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.legal-body ul li { line-height: 1.8; color: var(--text); margin-bottom: .35rem; }
.legal-body a { color: var(--accent); }
.legal-footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0,0,0,.08);
  display: flex;
  gap: 1rem;
  align-items: center;
  font-size: .85rem;
}
.legal-footer a { color: var(--muted); text-decoration: none; }
.legal-footer a:hover { color: var(--black); }
.legal-sep { color: rgba(0,0,0,.2); }

/* ═══════════════════════════════════════════════════════════════════════════
   BOOKING FLOW
   ═══════════════════════════════════════════════════════════════════════════ */
.booking-page {
  padding-top: 80px;
  min-height: 100vh;
  background: var(--cream);
}

/* Step indicator */
.booking-steps {
  background: var(--white);
  border-bottom: 1px solid rgba(0,0,0,.07);
  padding: 1.25rem 2rem;
}
.steps-inner {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.booking-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .35rem;
  flex-shrink: 0;
}
.step-circle {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2px solid #ddd;
  color: #aaa;
  font-size: .85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .25s;
}
.step-circle svg { width: 16px; height: 16px; }
.booking-step.active .step-circle { border-color: var(--black); color: var(--white); background: var(--black); }
.booking-step.done .step-circle { border-color: #2ecc71; background: #2ecc71; color: #fff; }
.step-label { font-size: .72rem; color: #aaa; white-space: nowrap; }
.booking-step.active .step-label { color: var(--black); font-weight: 600; }
.booking-step.done .step-label { color: #2ecc71; }
.step-connector {
  flex: 1;
  height: 2px;
  background: #e5e5e5;
  min-width: 20px;
  max-width: 60px;
  margin-bottom: 18px;
  transition: background .25s;
}
.step-connector.done { background: #2ecc71; }

/* Booking card */
.booking-card {
  max-width: 700px;
  margin: 2.5rem auto;
  background: var(--white);
  border-radius: 4px;
  padding: 2.5rem;
  box-shadow: 0 2px 20px rgba(0,0,0,.06);
}
.booking-title {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--black);
  margin-bottom: .4rem;
}
.booking-subtitle { color: var(--muted); margin-bottom: 2rem; line-height: 1.6; }

/* Navigation buttons */
.booking-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
  gap: 1rem;
  flex-wrap: wrap;
}
.booking-nav--pay { flex-wrap: wrap; }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--black);
  color: var(--white);
  padding: .85rem 1.75rem;
  border: none;
  border-radius: 2px;
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: opacity .2s;
}
.btn-primary:hover { opacity: .85; }
.btn-primary svg { width: 16px; height: 16px; }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: var(--muted);
  font-size: .88rem;
  text-decoration: none;
  padding: .85rem 0;
  transition: color .2s;
}
.btn-secondary:hover { color: var(--black); }

/* Service selection cards */
.service-select-grid { display: flex; flex-direction: column; gap: .75rem; margin-bottom: 1rem; }
.service-select-card {
  border: 1.5px solid #e5e5e5;
  border-radius: 4px;
  cursor: pointer;
  transition: border-color .2s, background .2s;
  overflow: hidden;
}
.service-select-card input[type=checkbox] { display: none; }
.service-select-card:hover { border-color: #bbb; }
.service-select-card.selected { border-color: var(--black); background: rgba(0,0,0,.02); }
.ssc-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
}
.ssc-icon { flex-shrink: 0; width: 36px; height: 36px; color: var(--accent); }
.ssc-icon svg { width: 24px; height: 24px; }
.ssc-info { flex: 1; }
.ssc-name { font-weight: 600; font-size: .95rem; color: var(--black); }
.ssc-desc { font-size: .8rem; color: var(--muted); line-height: 1.4; }
.ssc-price { font-size: .85rem; font-weight: 600; color: var(--accent); flex-shrink: 0; }
.ssc-check {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border: 1.5px solid #ddd;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s;
}
.ssc-check svg { width: 12px; height: 12px; opacity: 0; }
.service-select-card.selected .ssc-check { border-color: var(--black); background: var(--black); }
.service-select-card.selected .ssc-check svg { opacity: 1; color: #fff; }

/* Schedule step */
.schedule-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-bottom: 1.5rem; }
@media (max-width: 580px) { .schedule-grid { grid-template-columns: 1fr; } }
.schedule-info { display: flex; flex-direction: column; gap: 1rem; }
.schedule-info-card {
  display: flex;
  gap: .75rem;
  background: var(--cream);
  border-radius: 4px;
  padding: 1rem;
}
.si-icon { flex-shrink: 0; color: var(--accent); }
.si-icon svg { width: 20px; height: 20px; }
.schedule-info-card strong { font-size: .85rem; color: var(--black); display: block; margin-bottom: .25rem; }
.schedule-info-card p { font-size: .78rem; color: var(--muted); margin: 0; }
.calendar-connector {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1.25rem;
  background: #f0f7ff;
  border: 1px solid #c8e0ff;
  border-radius: 4px;
  margin-bottom: 1.5rem;
}
.cc-label {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: var(--text);
  font-size: .88rem;
}
.cc-label svg { width: 16px; height: 16px; color: #4285F4; }
.btn-calendar {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: #4285F4;
  color: #fff;
  padding: .6rem 1.25rem;
  border-radius: 4px;
  font-size: .85rem;
  font-weight: 600;
  text-decoration: none;
  transition: opacity .2s;
}
.btn-calendar:hover { opacity: .88; }
.btn-calendar svg { width: 14px; height: 14px; }

/* Order summary */
.order-summary { margin-bottom: 1.5rem; }
.os-section {
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 4px;
  margin-bottom: 1rem;
  overflow: hidden;
}
.os-heading {
  background: var(--cream);
  padding: .6rem 1rem;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--muted);
}
.os-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: .6rem 1rem;
  border-top: 1px solid rgba(0,0,0,.05);
  font-size: .88rem;
}
.os-row span { color: var(--muted); }
.os-row strong { color: var(--black); }
.os-total { background: rgba(0,0,0,.02); }
.os-total span, .os-total strong { font-weight: 700; font-size: .95rem; color: var(--black); }
.os-notes { font-size: .85rem; color: var(--muted); margin-bottom: 1.5rem; }
.btn-pay {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  background: #2ecc71;
  color: #fff;
  padding: 1rem 2rem;
  border: none;
  border-radius: 2px;
  font-size: .95rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: opacity .2s;
}
.btn-pay:hover { opacity: .88; }
.btn-pay svg { width: 18px; height: 18px; }
.stripe-coming-soon {
  background: #fff8e1;
  border: 1px solid #ffe082;
  border-radius: 4px;
  padding: 1.25rem 1.5rem;
  font-size: .88rem;
  color: #7a6000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .5rem;
  max-width: 420px;
}
.stripe-coming-soon svg { width: 18px; height: 18px; flex-shrink: 0; }
.payment-note {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .78rem;
  color: var(--muted);
  margin-top: 1rem;
}
.payment-note svg { width: 14px; height: 14px; }

/* Success / Cancel pages */
.booking-success-card { text-align: center; padding: 3rem 2rem; }
.success-icon { margin-bottom: 1.25rem; color: #2ecc71; }
.success-icon svg { width: 56px; height: 56px; }
.booking-success-card h2 { font-family: var(--serif); font-size: 2.2rem; font-weight: 400; margin-bottom: .75rem; }
.booking-success-card p { color: var(--muted); line-height: 1.7; margin-bottom: .75rem; max-width: 460px; margin-left: auto; margin-right: auto; }
.success-details { background: var(--cream); border-radius: 4px; padding: 1rem; margin: 1.5rem auto; max-width: 380px; text-align: left; }

/* ── $50 Promo Popup ─────────────────────────────────────────────────────── */
.promo-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,0.72);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.35s ease;
  backdrop-filter: blur(4px);
}
.promo-overlay[hidden] { display: none; }
.promo-overlay.is-visible { opacity: 1; }

.promo-modal {
  background: var(--white);
  border-radius: 6px;
  max-width: 440px;
  width: 100%;
  padding: 2.75rem 2.5rem 2.25rem;
  position: relative;
  text-align: center;
  box-shadow: 0 32px 80px rgba(0,0,0,0.4);
  transform: translateY(20px);
  transition: transform 0.35s ease;
}
.promo-overlay.is-visible .promo-modal { transform: translateY(0); }

.promo-close {
  position: absolute;
  top: 1rem;
  right: 1.1rem;
  background: none;
  border: none;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--muted);
  cursor: pointer;
  padding: 0.2rem 0.4rem;
  transition: color 0.2s;
}
.promo-close:hover { color: var(--black); }

.promo-badge-pill {
  display: inline-block;
  background: var(--warm);
  color: var(--black);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 1.1rem;
}

.promo-value {
  font-family: var(--serif);
  font-size: 3.2rem;
  font-weight: 400;
  line-height: 1;
  color: var(--black);
  margin-bottom: 0.6rem;
}
.promo-value span {
  font-size: 1.1rem;
  font-family: var(--sans);
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--warm);
  vertical-align: middle;
  margin-left: 0.25rem;
}

.promo-headline {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 400;
  line-height: 1.25;
  color: var(--black);
  margin-bottom: 0.75rem;
}

.promo-sub {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 1.4rem;
  max-width: 340px;
  margin-left: auto;
  margin-right: auto;
}
.promo-sub strong { color: var(--text); }

.promo-field-wrap { margin-bottom: 0.75rem; }

.promo-input {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid rgba(0,0,0,0.18);
  border-radius: 4px;
  font-size: 0.95rem;
  font-family: var(--sans);
  color: var(--text);
  background: #fff;
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
}
.promo-input:focus { border-color: var(--black); }
.promo-code-input {
  letter-spacing: 0.35em;
  font-size: 1.4rem;
  text-align: center;
  font-weight: 600;
}

.promo-error {
  font-size: 0.82rem;
  color: #c0392b;
  margin-bottom: 0.6rem;
  text-align: left;
  padding: 0 0.2rem;
}

.promo-btn {
  display: block;
  width: 100%;
  padding: 0.95rem 1rem;
  background: var(--black);
  color: var(--white);
  border: none;
  border-radius: 4px;
  font-size: 0.88rem;
  font-family: var(--sans);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: background 0.25s;
  margin-bottom: 0.9rem;
}
.promo-btn:hover { background: #222; }
.promo-btn:disabled { opacity: 0.55; cursor: not-allowed; }

.promo-link-btn {
  background: none;
  border: none;
  color: var(--muted);
  font-size: 0.8rem;
  cursor: pointer;
  text-decoration: underline;
  font-family: var(--sans);
  padding: 0;
  transition: color 0.2s;
}
.promo-link-btn:hover { color: var(--text); }

.promo-fine {
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 0.75rem;
  margin-bottom: 0;
}

/* Step 3 — success */
.promo-success-icon { margin-bottom: 0.9rem; color: #2ecc71; }
.promo-success-icon svg { width: 48px; height: 48px; }

.promo-code-reveal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: var(--cream);
  border-radius: 4px;
  padding: 0.9rem 1.2rem;
  margin-bottom: 1.4rem;
  border: 1.5px dashed var(--warm);
}
#promoDiscountCode {
  font-family: var(--sans);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--black);
}
.promo-copy-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: none;
  border: 1px solid rgba(0,0,0,0.2);
  border-radius: 3px;
  padding: 0.3rem 0.6rem;
  font-size: 0.75rem;
  color: var(--text);
  cursor: pointer;
  font-family: var(--sans);
  transition: background 0.2s, border-color 0.2s;
}
.promo-copy-btn svg { width: 13px; height: 13px; }
.promo-copy-btn:hover { background: rgba(0,0,0,0.05); border-color: var(--black); }

@media (max-width: 480px) {
  .promo-modal { padding: 2.2rem 1.5rem 1.75rem; }
  .promo-value { font-size: 2.6rem; }
}
