/* ==========================================================================
   Gilded & Grace Salon Co. — Stylesheet
   Palette: blush pink / deep plum / warm gold
   ========================================================================== */

:root {
  --color-plum: #4b1d3f;
  --color-plum-dark: #341229;
  --color-burgundy: #6e2135;
  --color-burgundy-light: #8a4a63;
  --color-blush: #f7dfe4;
  --color-blush-light: #fdf3f5;
  --color-gold: #c9a15a;
  --color-gold-light: #e8cfa0;
  --color-cream: #fdf9f6;
  --color-charcoal: #2b2320;
  --color-ink: #3a2f2c;
  --color-white: #ffffff;

  --font-heading: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Mulish", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;

  --shadow-sm: 0 2px 10px rgba(43, 35, 32, 0.08);
  --shadow-md: 0 10px 30px rgba(75, 29, 63, 0.14);
  --shadow-lg: 0 20px 45px rgba(75, 29, 63, 0.22);

  --transition-fast: 0.2s ease;
  --transition-med: 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);

  --nav-height: 92px;
  --nav-height-scrolled: 68px;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-ink);
  background: var(--color-cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

ul { list-style: none; margin: 0; padding: 0; }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--color-plum);
  line-height: 1.2;
  margin: 0 0 0.5em;
  font-weight: 700;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.6rem); }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.6rem); }

p { margin: 0 0 1em; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 88px 0;
}

.section--tight { padding: 56px 0; }

.section--alt {
  background: var(--color-blush-light);
}

.section--dark {
  background: linear-gradient(135deg, var(--color-plum) 0%, var(--color-burgundy) 100%);
  color: var(--color-blush-light);
}

.section--dark h2, .section--dark h3 { color: var(--color-white); }

.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--color-gold);
  margin-bottom: 10px;
}

.section-head p { color: var(--color-ink); opacity: 0.8; }

/* skip link */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--color-plum);
  color: #fff;
  padding: 12px 20px;
  z-index: 2000;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast),
    background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
  text-align: center;
}

.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px); }

.btn-primary {
  background: var(--color-gold);
  color: var(--color-plum-dark);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--color-gold-light); box-shadow: var(--shadow-md); }

.btn-outline {
  background: transparent;
  border-color: var(--color-gold);
  color: var(--color-plum);
}
.btn-outline:hover { background: var(--color-gold); color: var(--color-plum-dark); }

.btn-outline-light {
  background: transparent;
  border-color: rgba(255,255,255,0.7);
  color: #fff;
}
.btn-outline-light:hover { background: #fff; color: var(--color-plum); }

.btn-block { width: 100%; }

.btn-sm { padding: 10px 20px; font-size: 0.85rem; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(253, 249, 246, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(75, 29, 63, 0.08);
  transition: box-shadow var(--transition-fast), background var(--transition-fast);
}

.site-header.is-scrolled {
  box-shadow: var(--shadow-sm);
  background: rgba(253, 249, 246, 0.98);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  height: var(--nav-height);
  transition: height var(--transition-fast);
}

.site-header.is-scrolled .navbar { height: var(--nav-height-scrolled); }

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-plum);
}

.brand img { width: 44px; height: 44px; transition: width var(--transition-fast), height var(--transition-fast); }
.site-header.is-scrolled .brand img { width: 36px; height: 36px; }

.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong { font-size: 1.15rem; }
.brand-text span { font-size: 0.62rem; letter-spacing: 2px; text-transform: uppercase; color: var(--color-gold); font-family: var(--font-body); font-weight: 700; }

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

.nav-links a {
  font-weight: 600;
  font-size: 0.94rem;
  color: var(--color-charcoal);
  position: relative;
  padding: 6px 2px;
  transition: color var(--transition-fast);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0%;
  height: 2px;
  background: var(--color-gold);
  transition: width var(--transition-fast);
}

.nav-links a:hover,
.nav-links a[aria-current="page"] { color: var(--color-burgundy); }
.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after { width: 100%; }

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

/* mobile nav via checkbox hack — works with zero JS */
.nav-toggle-checkbox { display: none; }

.hamburger {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--color-plum);
  flex-direction: column;
  gap: 5px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-plum);
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

@media (max-width: 860px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-cream);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: max-height var(--transition-med);
  }

  .nav-links a {
    display: block;
    padding: 16px 24px;
    border-bottom: 1px solid rgba(75,29,63,0.06);
    transition: background var(--transition-fast), color var(--transition-fast);
  }

  /* Mobile dropdown: swap the desktop underline for a solid highlight on hover/tap/focus */
  .nav-links a::after { display: none; }

  .nav-links a:not(.btn):hover,
  .nav-links a:not(.btn):focus-visible,
  .nav-links a:not(.btn):active,
  .nav-links a:not(.btn)[aria-current="page"] {
    background: var(--color-plum);
    color: #fff;
  }

  .nav-links .btn { margin: 16px 24px; }

  .nav-toggle-checkbox:checked ~ .nav-links,
  .nav-links.is-open {
    max-height: 500px;
  }

  .hamburger { display: flex; }
  .nav-cta .btn-primary.desktop-only { display: none; }
}

@media (min-width: 861px) {
  .mobile-only { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  /* solid fallback in case the image fails to load */
  background: var(--color-plum);
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
  z-index: 0;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(100deg,
    rgba(52, 18, 41, 0.94) 0%,
    rgba(52, 18, 41, 0.82) 30%,
    rgba(75, 29, 63, 0.5) 55%,
    rgba(75, 29, 63, 0.16) 78%,
    rgba(75, 29, 63, 0.05) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: 130px 24px 110px;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 24px;
  max-width: 760px;
}

.hero .eyebrow { color: var(--color-gold-light); }
.hero h1 { color: #fff; }
.hero p.lead { font-size: 1.15rem; color: rgba(255,255,255,0.88); max-width: 560px; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 8px; }

.hero-badges {
  display: flex; flex-wrap: wrap; gap: 24px; margin-top: 28px;
  font-size: 0.85rem; color: rgba(255,255,255,0.8);
}
.hero-badges span { display: flex; align-items: center; gap: 8px; }

/* ---------- Reveal animation (progressive enhancement) ---------- */
.reveal { opacity: 1; transform: none; }

.js-enabled .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.js-enabled .reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.js-enabled .reveal-delay-1.in-view { transition-delay: 0.1s; }
.js-enabled .reveal-delay-2.in-view { transition-delay: 0.2s; }
.js-enabled .reveal-delay-3.in-view { transition-delay: 0.3s; }
.js-enabled .reveal-delay-4.in-view { transition-delay: 0.4s; }

/* ---------- Stats bar ---------- */
.stats-bar {
  background: var(--color-plum);
  color: #fff;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding: 56px 0;
  text-align: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3rem);
  color: var(--color-gold-light);
  font-weight: 700;
}

.stat-label {
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-top: 6px;
}

@media (max-width: 760px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Cards ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}

.service-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 34px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(75,29,63,0.06);
  transition: transform var(--transition-med), box-shadow var(--transition-med);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.service-card .icon-badge {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--color-blush);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
  color: var(--color-burgundy);
}

.service-card .price {
  color: var(--color-gold);
  font-weight: 700;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  margin-top: 10px;
}

/* ---------- Offers banner ---------- */
.offer-banner {
  background: linear-gradient(120deg, var(--color-gold) 0%, var(--color-gold-light) 100%);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  color: var(--color-plum-dark);
  box-shadow: var(--shadow-md);
}

.offer-banner h3 { color: var(--color-plum-dark); margin-bottom: 6px; }
.offer-banner p { margin: 0; }

/* ---------- Testimonial preview / carousel ---------- */
.testimonial-carousel {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
}

.testimonial-track {
  position: relative;
  min-height: 220px;
}

.testimonial-slide {
  display: block;
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 40px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.js-enabled .testimonial-slide {
  display: none;
  animation: fadeSlide 0.6s ease;
}

.js-enabled .testimonial-slide.is-active { display: block; }

@keyframes fadeSlide {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.stars { color: var(--color-gold); font-size: 1.1rem; letter-spacing: 3px; margin-bottom: 14px; }

.testimonial-quote {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--color-plum);
  font-style: italic;
  margin-bottom: 16px;
}

.testimonial-author { font-weight: 700; }
.testimonial-role { color: var(--color-burgundy); font-size: 0.85rem; }

.carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 24px;
}

.carousel-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2px solid var(--color-gold);
  background: transparent;
  color: var(--color-plum);
  font-size: 1.1rem;
  cursor: pointer;
  transition: background var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
}
.carousel-btn:hover { background: var(--color-gold); color: var(--color-plum-dark); transform: scale(1.06); }

.carousel-dots { display: flex; gap: 8px; }
.carousel-dots button {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: none;
  background: var(--color-blush);
  cursor: pointer;
  padding: 0;
  transition: background var(--transition-fast), transform var(--transition-fast);
}
.carousel-dots button.is-active { background: var(--color-gold); transform: scale(1.3); }

/* Full reviews grid (fallback + reviews page) */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.review-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(75,29,63,0.06);
  transition: transform var(--transition-med), box-shadow var(--transition-med);
}
.review-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--color-plum-dark);
  color: rgba(255,255,255,0.75);
  padding: 64px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand { display: flex; gap: 12px; align-items: center; margin-bottom: 14px; }
.footer-brand strong { color: #fff; font-family: var(--font-heading); font-size: 1.15rem; }

.site-footer h4 {
  color: var(--color-gold-light);
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.8rem;
  margin-bottom: 16px;
}

.site-footer ul li { margin-bottom: 10px; }
.site-footer a { transition: color var(--transition-fast); }
.site-footer a:hover { color: var(--color-gold-light); }

.social-icons { display: flex; gap: 12px; margin-top: 16px; }
.social-icons a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition-fast), transform var(--transition-fast), border-color var(--transition-fast);
}
.social-icons a:hover { background: var(--color-gold); border-color: var(--color-gold); color: var(--color-plum-dark); transform: translateY(-3px); }

.social-icons--dark a { color: var(--color-plum); border-color: rgba(75,29,63,0.18); }
.social-icons--dark a:hover { color: var(--color-plum-dark); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
}

@media (max-width: 860px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---------- Counting stats (about awards etc reused elsewhere) ---------- */
.badge-row { display: flex; flex-wrap: wrap; gap: 14px; }
.badge-pill {
  background: var(--color-blush);
  color: var(--color-burgundy);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
}

/* ---------- Team ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
}

.team-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(75,29,63,0.06);
  transition: transform var(--transition-med), box-shadow var(--transition-med);
}

.team-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }

.team-photo { aspect-ratio: 5/6; overflow: hidden; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition-med); }
.team-card:hover .team-photo img { transform: scale(1.06); }

.team-info { padding: 22px; }
.team-info h3 { margin-bottom: 2px; }
.team-specialty { color: var(--color-gold); font-weight: 700; font-size: 0.85rem; margin-bottom: 8px; }
.team-exp { font-size: 0.82rem; color: var(--color-burgundy); margin-bottom: 10px; font-weight: 700; }
.team-handle {
  display: inline-block; margin-top: 10px; font-size: 0.82rem; color: var(--color-plum);
  border-top: 1px solid var(--color-blush); padding-top: 10px; width: 100%;
}

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1/1;
  box-shadow: var(--shadow-sm);
}

.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.gallery-item:hover img { transform: scale(1.12); }

.gallery-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 16px;
  background: linear-gradient(0deg, rgba(43,35,32,0.85) 0%, rgba(43,35,32,0) 100%);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  transform: translateY(6px);
  opacity: 0.9;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.gallery-item:hover .gallery-caption { transform: translateY(0); opacity: 1; }

.gallery-filters { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 40px; }
.filter-btn {
  padding: 9px 20px;
  border-radius: 999px;
  border: 2px solid var(--color-blush);
  background: transparent;
  color: var(--color-plum);
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}
.filter-btn:hover, .filter-btn.is-active { background: var(--color-plum); border-color: var(--color-plum); color: #fff; }

/* ---------- Services page ---------- */
.service-category { margin-bottom: 64px; }
.service-category-head { display: flex; align-items: baseline; gap: 16px; margin-bottom: 24px; border-bottom: 2px solid var(--color-blush); padding-bottom: 12px; }
.service-category-head h2 { margin: 0; }
.service-category-head span { color: var(--color-gold); font-weight: 700; }

.price-list { display: grid; gap: 4px; }
.price-row {
  display: flex; justify-content: space-between; gap: 16px;
  padding: 16px 4px;
  border-bottom: 1px dashed rgba(75,29,63,0.15);
}
.price-row:last-child { border-bottom: none; }
.price-row .name { font-weight: 700; color: var(--color-plum); }
.price-row .desc { display: block; font-weight: 400; color: var(--color-ink); opacity: 0.75; font-size: 0.88rem; margin-top: 3px; }
.price-row .price { font-family: var(--font-heading); font-weight: 700; color: var(--color-burgundy); white-space: nowrap; }

.promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.promo-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 30px;
  border: 2px solid var(--color-gold-light);
  position: relative;
  transition: transform var(--transition-med), box-shadow var(--transition-med);
}
.promo-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.promo-tag {
  position: absolute; top: -14px; left: 24px;
  background: var(--color-burgundy);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 6px 14px;
  border-radius: 999px;
}

/* ---------- About page ---------- */
.about-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.about-hero-grid img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.value-item { text-align: center; }
.value-item .icon-badge { margin: 0 auto 14px; }

@media (max-width: 900px) {
  .about-hero-grid { grid-template-columns: 1fr; }
}

/* ---------- Contact / Booking ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}
.contact-grid > div { min-width: 0; }

.info-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
}

.info-card h3 { display: flex; align-items: center; gap: 10px; }

.hours-table { width: 100%; border-collapse: collapse; font-size: 0.92rem; }
.hours-table td { padding: 7px 0; border-bottom: 1px dashed rgba(75,29,63,0.12); }
.hours-table td:last-child { text-align: right; font-weight: 700; color: var(--color-burgundy); }

.map-embed {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 16/9;
}
.map-embed iframe { width: 100%; height: 100%; border: 0; }

.booking-form-wrap {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 42px;
  box-shadow: var(--shadow-md);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; min-width: 0; }
.form-group.full { grid-column: 1 / -1; }

label { font-weight: 700; font-size: 0.88rem; color: var(--color-plum); }
label .req { color: var(--color-burgundy); }

input, select, textarea {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(75,29,63,0.18);
  background: var(--color-cream);
  color: var(--color-ink);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 4px rgba(201,161,90,0.22);
}

input:invalid[data-touched="true"], select:invalid[data-touched="true"] {
  border-color: #b3413b;
}

.field-error {
  font-size: 0.78rem;
  color: #b3413b;
  min-height: 1em;
  display: none;
}
.field-error.is-visible { display: block; }

.form-note { font-size: 0.82rem; opacity: 0.7; margin-top: 4px; }

.form-status {
  margin-top: 18px;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  display: none;
}
.form-status.is-visible { display: block; }
.form-status.success { background: #e4f2e4; color: #2c5c2c; }
.form-status.error { background: #fbe6e4; color: #8a2c24; }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .form-grid { grid-template-columns: 1fr; }
  .booking-form-wrap { padding: 26px; }
}

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--color-plum) 0%, var(--color-burgundy) 100%);
  color: #fff;
  padding: 80px 0 60px;
  text-align: center;
}
.page-hero .eyebrow { color: var(--color-gold-light); }
.page-hero h1 { color: #fff; margin-bottom: 10px; }
.page-hero p { color: rgba(255,255,255,0.85); max-width: 620px; margin: 0 auto; }

.breadcrumb { font-size: 0.82rem; color: rgba(255,255,255,0.7); margin-bottom: 16px; }
.breadcrumb a { color: var(--color-gold-light); }

/* ---------- 404 page ---------- */
.error-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 24px;
}
.error-page .error-code {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 12vw, 8rem);
  color: var(--color-gold);
  line-height: 1;
}

/* ---------- Chat widget ---------- */
.chat-launcher {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 1000;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-burgundy), var(--color-plum));
  color: var(--color-gold-light);
  border: none;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}
.chat-launcher:hover { transform: scale(1.08); box-shadow: 0 22px 45px rgba(75,29,63,0.35); }

.chat-panel {
  position: fixed;
  bottom: 100px;
  right: 26px;
  z-index: 1000;
  width: min(360px, calc(100vw - 40px));
  max-height: min(520px, calc(100vh - 160px));
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  transform: translateY(16px) scale(0.98);
  pointer-events: none;
  transition: opacity var(--transition-fast), transform var(--transition-fast);
}

.chat-panel.is-open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.chat-header {
  background: linear-gradient(135deg, var(--color-plum), var(--color-burgundy));
  color: #fff;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.chat-header strong { font-family: var(--font-heading); font-size: 1.05rem; }
.chat-header small { display: block; color: var(--color-gold-light); font-size: 0.75rem; }
.chat-close { background: none; border: none; color: #fff; font-size: 1.3rem; cursor: pointer; line-height: 1; }

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--color-blush-light);
}

.chat-msg {
  max-width: 82%;
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 0.88rem;
  line-height: 1.45;
}
.chat-msg.bot {
  background: #fff;
  color: var(--color-ink);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
  box-shadow: var(--shadow-sm);
}
.chat-msg.user {
  background: var(--color-plum);
  color: #fff;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.chat-typing {
  display: inline-flex;
  gap: 4px;
  align-self: flex-start;
  background: #fff;
  padding: 12px 16px;
  border-radius: 16px;
  border-bottom-left-radius: 4px;
  box-shadow: var(--shadow-sm);
}
.chat-typing span {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--color-burgundy);
  opacity: 0.5;
  animation: typingBounce 1.2s infinite ease-in-out;
}
.chat-typing span:nth-child(2) { animation-delay: 0.15s; }
.chat-typing span:nth-child(3) { animation-delay: 0.3s; }

@keyframes typingBounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.5; }
  30% { transform: translateY(-5px); opacity: 1; }
}

.chat-form {
  display: flex;
  gap: 8px;
  padding: 14px;
  border-top: 1px solid rgba(75,29,63,0.08);
  background: #fff;
}
.chat-form input {
  flex: 1;
  padding: 11px 14px;
  border-radius: 999px;
  font-size: 0.88rem;
}
.chat-form button {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: none;
  background: var(--color-gold);
  color: var(--color-plum-dark);
  cursor: pointer;
  font-size: 1rem;
  transition: background var(--transition-fast), transform var(--transition-fast);
}
.chat-form button:hover { background: var(--color-gold-light); transform: scale(1.05); }

@media (max-width: 480px) {
  .chat-panel { right: 16px; bottom: 92px; }
  .chat-launcher { right: 16px; }
}

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-lg { margin-top: 48px; }
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; }
}

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

@media (max-width: 700px) {
  .section { padding: 60px 0; }
  .form-grid { grid-template-columns: 1fr; }
}
