/* ===================================================
   PARRUCCHIERA DA LUCIA — Design System v2
   Schriften herunterladen: bash download-fonts.sh
   =================================================== */

/* ===== SELF-HOSTED FONTS ===== */
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('../fonts/cormorant-400.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('../fonts/cormorant-400-italic.woff2') format('woff2');
  font-weight: 400; font-style: italic; font-display: swap;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('../fonts/cormorant-600.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('../fonts/cormorant-700.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('../fonts/dm-sans-400.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('../fonts/dm-sans-500.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('../fonts/dm-sans-600.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; }
svg { overflow: visible; }

/* ===== DESIGN TOKENS ===== */
:root {
  /* Palette */
  --ink:       #191614;   /* warm near-black */
  --ink-soft:  #2C2826;   /* body text */
  --cream:     #FAF7F2;   /* background */
  --sand:      #F2EAE0;   /* surface / alt sections */
  --sand-dark: #E8DDD0;   /* border */
  --gold:      #B8924A;   /* primary accent */
  --gold-lt:   #D4AF72;   /* light gold for dark backgrounds */
  --gold-pale: #F5EDD8;   /* very pale gold tint */
  --muted:     #7A7068;   /* muted text */

  /* Typography */
  --serif: 'Cormorant Garamond', 'Cormorant', Georgia, 'Times New Roman', serif;
  --sans:  'DM Sans', 'Inter', system-ui, -apple-system, sans-serif;

  /* Scale */
  --w:     1100px;
  --r:     3px;
  --nav-h: 70px;
}

/* ===== BASE ===== */
body {
  font-family: var(--sans);
  color: var(--ink-soft);
  background: var(--cream);
  line-height: 1.75;
  font-size: 1rem;
  font-weight: 400;
}

/* Headings — Cormorant Garamond italic for display, creates Italian luxury feel */
h1, h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  line-height: 1.1;
  color: var(--ink);
}

h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-style: normal;
  line-height: 1.3;
  color: var(--ink);
}

h1 { font-size: clamp(2.4rem, 5.5vw, 3.75rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.05rem, 2vw, 1.25rem); }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ===== LAYOUT ===== */
.container {
  max-width: var(--w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section      { padding: 5.5rem 0; }
.section--alt { background: var(--sand); }
.section--ink { background: var(--ink); color: rgba(255,255,255,0.75); }
.section--ink h2, .section--ink h3 { color: #fff; }

/* ===== KICKER / EYEBROW label ===== */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.kicker::before {
  content: '';
  display: block;
  width: 1.5rem;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.kicker--light { color: var(--gold-lt); }
.kicker--light::before { background: var(--gold-lt); }

/* ===== ORNAMENTAL DIVIDER ===== */
.ornament {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--gold);
  margin: 1.5rem 0;
}

.ornament-line {
  flex: 1;
  height: 1px;
  background: currentColor;
  opacity: 0.3;
}

.ornament-mark img {
  height: 14px;
  width: auto;
  filter: brightness(0) saturate(100%) invert(57%) sepia(46%) saturate(456%) hue-rotate(10deg) brightness(90%);
}

/* ===== HEADER / NAV ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--ink);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(184,146,74,.12);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* Logo */
.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav__mark {
  height: 16px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.85;
  flex-shrink: 0;
}

.nav__logo-text {
  display: flex;
  flex-direction: column;
  gap: 0.05em;
  line-height: 1;
}

.nav__logo-name {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.45rem;
  font-weight: 400;
  color: #fff;
  line-height: 1;
}

.nav__logo-sub {
  font-family: var(--sans);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-lt);
  opacity: 0.8;
}

/* Nav links */
.nav__links {
  display: flex;
  gap: 1.75rem;
  align-items: center;
}

.nav__links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}

.nav__links a:hover,
.nav__links a[aria-current="page"] {
  color: var(--gold-lt);
  border-bottom-color: var(--gold-lt);
}

.nav__cta {
  background: var(--gold) !important;
  color: #fff !important;
  padding: 0.45rem 1.15rem !important;
  border-radius: var(--r);
  border-bottom: none !important;
  letter-spacing: 0.08em !important;
}

.nav__cta:hover { background: var(--gold-lt) !important; }

/* Mobile toggle */
.nav__toggle {
  display: none;
  background: none;
  border: none;
  padding: 0.4rem;
  flex-direction: column;
  gap: 5px;
}

.nav__toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: rgba(255,255,255,0.8);
  border-radius: 1px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 680px) {
  .nav__toggle { display: flex; }

  .nav__links {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--ink);
    flex-direction: column;
    gap: 0;
    padding: 0.5rem 0 1.25rem;
    border-top: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 12px 32px rgba(0,0,0,0.5);
  }

  .nav__links.is-open { display: flex; }

  .nav__links a {
    padding: 0.9rem 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.04) !important;
    width: 100%;
  }

  .nav__cta {
    margin: 0.75rem 1.5rem 0 !important;
    width: calc(100% - 3rem) !important;
    text-align: center;
    display: block;
  }
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.55);
  padding: 4.5rem 0 2.5rem;
  font-size: 0.875rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (max-width: 680px) {
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
}

.footer__heading {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--gold-lt);
  margin-bottom: 1.1rem;
}

.footer__grid a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer__grid a:hover { color: var(--gold-lt); }

.footer__nav { display: flex; flex-direction: column; gap: 0.5rem; }

.footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.1rem;
}

.footer__social a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  padding: 0.3rem 0.8rem;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  transition: border-color 0.2s, color 0.2s;
}

.footer__social a:hover { border-color: var(--gold-lt); color: var(--gold-lt) !important; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
}

.footer__bottom a { color: rgba(255,255,255,0.4); }
.footer__bottom a:hover { color: var(--gold-lt); }

/* ===== HOURS TABLE ===== */
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table tr { border-bottom: 1px solid rgba(255,255,255,0.06); }
.hours-table td { padding: 0.5rem 0; font-size: 0.875rem; }
.hours-table td:last-child { text-align: right; font-weight: 500; }
.hours-table .closed { opacity: 0.4; }

.hours-table--light tr { border-bottom-color: var(--sand-dark); }
.hours-table--light td { color: var(--ink-soft); }
.hours-table--light .closed { color: var(--muted); opacity: 1; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  border-radius: var(--r);
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: all 0.22s ease;
  border: none;
  line-height: 1;
}

.btn--gold {
  background: var(--gold);
  color: #fff;
}

.btn--gold:hover {
  background: #C9A055;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(184,146,74,0.35);
}

.btn--outline-gold {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}

.btn--outline-gold:hover {
  background: var(--gold);
  color: #fff;
}

.btn--outline-white {
  background: transparent;
  color: rgba(255,255,255,0.85);
  border: 1.5px solid rgba(255,255,255,0.35);
}

.btn--outline-white:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.7);
  color: #fff;
}

.btn--lg { padding: 1rem 2.5rem; font-size: 0.78rem; }

/* ===== HERO ===== */
.hero {
  background: var(--ink);
  color: #fff;
  padding: 7rem 0 6.5rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 75% 55%, rgba(184,146,74,.09) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(184,146,74,.05) 0%, transparent 45%);
  pointer-events: none;
}

/* subtle gold rule at bottom of hero */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 15%; right: 15%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184,146,74,.4), transparent);
}

.hero__inner { position: relative; z-index: 1; max-width: 680px; }

.hero__title {
  color: #fff;
  margin-top: 1.25rem;
  margin-bottom: 1.5rem;
}

/* Subtle italic serif line between words in h1 */
.hero__title em { font-style: italic; color: var(--gold-lt); }

.hero__desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.62);
  max-width: 480px;
  margin-bottom: 2.5rem;
  line-height: 1.85;
}

.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ===== PAGE HERO (subpages) ===== */
.page-hero {
  background: var(--ink);
  color: #fff;
  padding: 4.5rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(184,146,74,.07) 0%, transparent 60%);
  pointer-events: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 20%; right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184,146,74,.35), transparent);
}

.page-hero .container { position: relative; z-index: 1; }

.page-hero__eyebrow {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-lt);
  display: block;
  margin-bottom: 0.75rem;
}

.page-hero__title { color: #fff; margin-top: 0; }

/* ===== SECTION HEADER ===== */
.section-hdr {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-hdr .kicker { justify-content: center; }
.section-hdr .kicker::before {
  width: 1.5rem;
  opacity: 0.5;
}
.section-hdr .kicker::after {
  content: '';
  display: block;
  width: 1.5rem;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
  opacity: 0.5;
}

.section-hdr__title { margin-top: 0.75rem; margin-bottom: 1rem; }

.section-hdr__desc {
  color: var(--muted);
  max-width: 500px;
  margin: 0 auto;
  font-size: 0.95rem;
}

/* ===== SERVICE CARDS ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: #fff;
  border: 1px solid var(--sand-dark);
  border-top: 2px solid transparent;
  border-radius: var(--r);
  padding: 2rem 1.75rem 1.75rem;
  transition: border-top-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.service-card:hover {
  border-top-color: var(--gold);
  box-shadow: 0 10px 36px rgba(25,22,20,.07);
  transform: translateY(-3px);
}

/* SVG icon in service cards */
.service-card__icon {
  width: 2rem;
  height: 2rem;
  color: var(--gold);
  margin-bottom: 1.25rem;
  display: block;
}

.service-card__icon svg {
  width: 100%;
  height: 100%;
}

.service-card__title {
  margin-bottom: 0.6rem;
  font-size: 1.15rem;
}

.service-card__text {
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.65;
}

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-img-wrap { order: -1; }
}

.about-img-wrap {
  position: relative;
}

.about-img-wrap::before {
  content: '';
  position: absolute;
  inset: 1.25rem -1.25rem -1.25rem 1.25rem;
  border: 1px solid var(--gold);
  border-radius: var(--r);
  opacity: 0.25;
  pointer-events: none;
}

.about-img {
  border-radius: var(--r);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--sand);
  position: relative;
  z-index: 1;
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-img--placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.8rem;
  text-align: center;
  padding: 2rem;
  gap: 0.75rem;
  border: 2px dashed var(--sand-dark);
}

.about-img--placeholder svg {
  width: 3rem;
  height: 3rem;
  color: var(--sand-dark);
}

.about-stat {
  display: flex;
  gap: 3rem;
  margin-top: 2.25rem;
  padding-top: 2rem;
  border-top: 1px solid var(--sand-dark);
}

.about-stat__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
}

.about-stat__label {
  font-size: 0.7rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 0.3rem;
}

/* ===== INFO STRIP ===== */
.info-strip { background: var(--gold); }

.info-strip__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 600px) {
  .info-strip__inner { grid-template-columns: 1fr; }
}

.info-strip__item {
  padding: 2.25rem 1.5rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.info-strip__item:last-child { border-right: none; }

.info-strip__icon {
  width: 1.5rem;
  height: 1.5rem;
  opacity: 0.75;
  flex-shrink: 0;
}

.info-strip__label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  opacity: 0.72;
}

.info-strip__value {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.3;
}

.info-strip__value a { color: #fff; }

/* ===== CTA SECTION ===== */
.cta-section {
  background: var(--ink);
  padding: 5.5rem 0;
  text-align: center;
  position: relative;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0; left: 20%; right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184,146,74,.3), transparent);
}

.cta-section h2 { color: #fff; margin-bottom: 1rem; }
.cta-section p {
  color: rgba(255,255,255,0.55);
  margin-bottom: 2.25rem;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
  font-size: 0.95rem;
}

.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ===== PRICE PAGE ===== */
.price-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem 4.5rem;
}

@media (max-width: 700px) {
  .price-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

.price-cat__title {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 0.6rem;
  margin-bottom: 1.1rem;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--sand-dark);
  gap: 1rem;
}

.price-row:last-child { border-bottom: none; }

.price-row__name { font-size: 0.9rem; color: var(--ink-soft); }
.price-row__note { font-size: 0.75rem; color: var(--muted); display: block; margin-top: 0.15rem; }

.price-row__price {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--ink);
  white-space: nowrap;
  flex-shrink: 0;
}

.price-note {
  text-align: center;
  color: var(--muted);
  font-size: 0.8rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--sand-dark);
}

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}

.gallery-item {
  aspect-ratio: 3/4;
  border-radius: var(--r);
  overflow: hidden;
  background: var(--sand);
  position: relative;
}

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

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

.gallery-item--placeholder {
  border: 1px dashed var(--sand-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.75rem;
  text-align: center;
  padding: 1rem;
  gap: 0.5rem;
  opacity: 0.6;
}

/* Gallery caption */
.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(25,22,20,.75));
  color: #fff;
  font-size: 0.78rem;
  padding: 1.5rem 0.75rem 0.65rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-caption,
.gallery-item:focus-within .gallery-caption { transform: translateY(0); }

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
  align-items: start;
}

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
}

.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.75rem;
  align-items: flex-start;
}

.contact-item__icon {
  width: 2.25rem;
  height: 2.25rem;
  background: var(--sand);
  border: 1px solid var(--sand-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}

.contact-item__icon svg { width: 1rem; height: 1rem; }

.contact-item__label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  display: block;
  margin-bottom: 0.25rem;
  font-weight: 500;
}

.contact-item__value { font-weight: 500; }
.contact-item__value a:hover { color: var(--gold); }

.social-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.5rem;
}

.social-list a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  padding: 0.35rem 0.9rem;
  border: 1px solid var(--sand-dark);
  border-radius: 20px;
  color: var(--ink-soft);
  transition: border-color 0.2s, color 0.2s;
}

.social-list a:hover { border-color: var(--gold); color: var(--gold); }

/* ===== FORM ===== */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 480px) { .form-row { grid-template-columns: 1fr; } }

.form-group { margin-bottom: 1.25rem; }

.form-group label {
  display: block;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-bottom: 0.45rem;
  font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--sand-dark);
  border-radius: var(--r);
  background: #fff;
  color: var(--ink-soft);
  font-family: var(--sans);
  font-size: 0.9rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,146,74,.1);
}

.form-group textarea { min-height: 130px; resize: vertical; line-height: 1.65; }

/* ===== MAP / DIRECTIONS ===== */
.map-wrap { margin-top: 2rem; border-radius: var(--r); overflow: hidden; border: 1px solid var(--sand-dark); }
.map-wrap iframe { display: block; width: 100%; height: 300px; border: none; }

.directions-box {
  background: var(--sand);
  border: 1px solid var(--sand-dark);
  border-radius: var(--r);
  padding: 1rem 1.25rem;
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.directions-box strong { color: var(--ink-soft); }

/* ===== LEGAL / PRIVACY ===== */
.legal-content { max-width: 740px; margin: 0 auto; }

.legal-content h2 {
  font-size: 1.1rem;
  font-style: normal;
  font-weight: 600;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--sand-dark);
  color: var(--ink);
}

.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 { font-size: 0.9rem; color: var(--ink-soft); }

.legal-content ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1rem; }
.legal-content ul li { margin-bottom: 0.35rem; color: var(--ink-soft); }

/* ===== UTILITIES ===== */
.text-center  { text-align: center; }
.text-muted   { color: var(--muted); }
.text-gold    { color: var(--gold); }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-0 { margin-bottom: 0 !important; }

/* ===== SKIP LINK ===== */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--gold);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 0 0 var(--r) var(--r);
  font-size: 0.85rem;
  font-weight: 600;
  z-index: 999;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }
