/* ============================================================
   COUNTRY ZEN — Williamson Automation
   Gift Shop · Home Decor · Flowers · Furniture
   Theme: Earth — sage green + warm cream
   ============================================================ */

/* ── 1. CUSTOM PROPERTIES ── */

:root {
  --accent: #5E7A54;
  --accent-dark: #4A6343;
  --accent-light: #7A9670;
  --accent-rgb: 94, 122, 84;

  --bg: #FDFBF8;
  --bg-alt: #F3EDE6;
  --bg-card: #F7F3EE;
  --bg-elevated: #EDE7E0;
  --text: #2C2C2C;
  --text-muted: #6B6358;
  --border: #E0D8CF;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-pill: 100px;

  --shadow-card: 0 1px 3px rgba(0,0,0,0.04), 0 4px 14px rgba(0,0,0,0.03);
  --shadow-hover: 0 2px 8px rgba(0,0,0,0.06), 0 8px 28px rgba(0,0,0,0.05);
  --border-subtle: 1px solid rgba(0,0,0,0.06);

  --ease: 0.3s ease;
  --ease-smooth: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── 2. RESET ── */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent-dark); text-decoration: none; transition: color var(--ease); }
a:hover { color: var(--accent); }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.15; color: var(--text); }
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); }

/* ── 3. LAYOUT ── */

.container { max-width: 1200px; margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 2.5rem); }

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.6rem;
}

section { padding: clamp(5rem, 10vw, 8rem) 0; }

/* Section backgrounds — alternating depth */
.section--light { background: var(--bg); }
.section--warm {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(var(--accent-rgb), 0.03) 0%, transparent 50%),
    linear-gradient(180deg, var(--bg-alt) 0%, var(--bg) 100%);
  border-top: 1px solid rgba(var(--accent-rgb), 0.06);
}
.section--glow {
  background:
    radial-gradient(ellipse at 30% 30%, rgba(var(--accent-rgb), 0.035) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 70%, rgba(160, 140, 110, 0.025) 0%, transparent 50%),
    var(--bg);
  border-top: 1px solid rgba(var(--accent-rgb), 0.06);
}

/* ── 4. NAVIGATION ── */

.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(253, 251, 248, 0.85);
  backdrop-filter: blur(20px) saturate(1.6);
  -webkit-backdrop-filter: blur(20px) saturate(1.6);
  border-bottom: 1px solid transparent;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.nav.scrolled {
  background: rgba(253, 251, 248, 0.96);
  border-bottom-color: var(--border);
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}

.nav__inner {
  display: flex; align-items: center; justify-content: space-between; height: 68px;
}

.nav__brand {
  font-family: var(--font-display); font-size: 1.35rem; font-weight: 700;
  color: var(--text); text-decoration: none; letter-spacing: -0.02em;
}
.nav__brand span { color: var(--accent); }
.nav__brand:hover { color: var(--text); }

.nav__links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav__links a {
  font-size: 0.9rem; font-weight: 500; color: var(--text-muted);
  text-decoration: none; transition: color var(--ease); position: relative;
}
.nav__links a:hover { color: var(--text); }
.nav__links a.active { color: var(--accent); font-weight: 600; }
.nav__links a.active::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--accent); border-radius: 1px;
}

.nav__cta {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 0.5rem 1.1rem; background: var(--accent); color: #fff !important;
  font-size: 0.85rem; font-weight: 600; border-radius: var(--radius-pill);
  text-decoration: none; transition: background var(--ease), transform var(--ease); white-space: nowrap;
}
.nav__cta:hover { background: var(--accent-dark); color: #fff; transform: translateY(-1px); }
.nav__cta svg { flex-shrink: 0; }
.nav__cta--mobile { display: none; }

.nav__toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.nav__toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--text); border-radius: 2px; transition: transform 0.3s, opacity 0.3s;
}
.nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 767px) {
  .nav__links {
    position: fixed; top: 68px; left: 0; right: 0; bottom: 0;
    flex-direction: column; gap: 0; padding: 1.5rem;
    background: var(--bg); border-top: 1px solid var(--border);
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1); z-index: 999;
  }
  .nav__links.open { transform: translateX(0); }
  .nav__links a { display: block; font-size: 1.15rem; padding: 0.85rem 0; border-bottom: 1px solid var(--border); }
  .nav__cta--desktop { display: none; }
  .nav__cta--mobile { display: inline-flex; margin-top: 1rem; justify-content: center; }
  .nav__toggle { display: flex; }
}

/* ── 5. HERO ── */

.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 25% 20%, rgba(var(--accent-rgb), 0.09) 0%, transparent 50%),
    radial-gradient(ellipse at 75% 80%, rgba(var(--accent-rgb), 0.05) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(180, 160, 130, 0.06) 0%, transparent 60%),
    linear-gradient(180deg, var(--bg-alt) 0%, var(--bg) 40%, var(--bg-alt) 100%);
  z-index: 0;
}
.hero__bg::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 120px;
  background: linear-gradient(180deg, transparent 0%, var(--bg) 100%); z-index: 1;
}
.hero__content { position: relative; z-index: 2; max-width: 800px; margin: 0 auto; padding: 0 1.5rem; text-align: center; }

.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 0.4rem 1rem; border: 1px solid var(--accent); border-radius: var(--radius-pill);
  font-size: 0.8rem; font-weight: 600; color: var(--accent);
  margin-bottom: 1.5rem; background: rgba(var(--accent-rgb), 0.06);
}
.hero__badge svg { fill: var(--accent); flex-shrink: 0; }
.hero__title { margin-bottom: 1.25rem; letter-spacing: -0.02em; margin-left: auto; margin-right: auto; }
.hero__title em { font-style: italic; color: var(--accent); }
.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem); color: var(--text-muted);
  max-width: 600px; margin: 0 auto 2rem; line-height: 1.7;
}
.hero__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Hero entrance */
.hero .word, .hero__badge, .hero__subtitle, .hero__actions {
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.hero.animate .hero__badge { opacity: 1 !important; transform: translateY(0) !important; transition-delay: 0.1s; }
.hero.animate .word:nth-child(1) { opacity: 1 !important; transform: translateY(0) !important; transition-delay: 0.25s; }
.hero.animate .word:nth-child(2) { opacity: 1 !important; transform: translateY(0) !important; transition-delay: 0.35s; }
.hero.animate .word:nth-child(3) { opacity: 1 !important; transform: translateY(0) !important; transition-delay: 0.45s; }
.hero.animate .word:nth-child(4) { opacity: 1 !important; transform: translateY(0) !important; transition-delay: 0.55s; }
.hero.animate .word:nth-child(5) { opacity: 1 !important; transform: translateY(0) !important; transition-delay: 0.65s; }
.hero.animate .word:nth-child(6) { opacity: 1 !important; transform: translateY(0) !important; transition-delay: 0.75s; }
.hero.animate .hero__subtitle { opacity: 1 !important; transform: translateY(0) !important; transition-delay: 0.85s; }
.hero.animate .hero__actions { opacity: 1 !important; transform: translateY(0) !important; transition-delay: 0.95s; }
.no-js .hero .word, .no-js .hero__badge, .no-js .hero__subtitle, .no-js .hero__actions {
  opacity: 1 !important; transform: none !important;
}

/* ── 6. BUTTONS ── */

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 0.8rem 1.8rem; font-family: var(--font-body);
  font-size: 0.95rem; font-weight: 600; border-radius: var(--radius-pill);
  text-decoration: none; transition: all var(--ease); cursor: pointer; border: 2px solid transparent;
}
.btn--primary { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn--primary:hover {
  background: var(--accent-dark); border-color: var(--accent-dark); color: #fff;
  transform: translateY(-2px); box-shadow: 0 4px 16px rgba(var(--accent-rgb), 0.25);
}
.btn--outline { background: transparent; color: var(--accent); border-color: var(--accent); }
.btn--outline:hover { background: var(--accent); color: #fff; transform: translateY(-2px); }

/* ── 7. TRUST STRIP ── */

.trust-strip {
  padding: 1rem 0; background: var(--bg-alt);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.trust-strip__row { display: flex; align-items: center; justify-content: center; gap: 1.5rem; flex-wrap: wrap; }
.trust-strip__item {
  font-size: 0.82rem; font-weight: 600; color: var(--text-muted);
  white-space: nowrap; display: flex; align-items: center; gap: 5px;
}
.trust-strip__item svg { fill: var(--accent); }
.trust-strip__divider { width: 4px; height: 4px; border-radius: 50%; background: var(--border); }
@media (max-width: 600px) {
  .trust-strip__divider { display: none; }
  .trust-strip__row { gap: 0.75rem; }
}

/* ── 8. SPLIT LAYOUT (about preview, services teaser) ── */

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.split--reverse > *:first-child { order: 2; }
.split--reverse > *:last-child { order: 1; }
@media (max-width: 767px) {
  .split { grid-template-columns: 1fr; gap: 2rem; }
  .split--reverse > * { order: unset !important; }
}

/* Photo placeholder */
.photo-frame {
  border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(var(--accent-rgb), 0.1) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 70%, rgba(160, 140, 110, 0.08) 0%, transparent 60%),
    var(--bg-elevated);
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border);
}
.photo-frame__label {
  font-family: var(--font-display); font-size: 1.1rem;
  color: var(--text-muted); opacity: 0.4;
}

/* ── 9. SERVICE CARDS ── */

.card-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem; }

.card {
  flex: 0 1 calc(33.333% - 1rem); min-width: 260px;
  padding: 2rem 1.75rem; background: var(--bg-card);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  text-align: center; transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); border-color: rgba(var(--accent-rgb), 0.2); }

.card__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(var(--accent-rgb), 0.08); color: var(--accent); margin-bottom: 1.25rem;
}
.card__icon svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: 0.5rem; }
.card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; }

@media (max-width: 767px) { .card { flex: 0 1 100%; } }

/* ── 10. SERVICES LIST (services page) ── */

.services-category { margin-bottom: 3rem; }
.services-category h3 {
  font-size: 1.3rem; margin-bottom: 1.5rem; padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--accent); display: inline-flex; align-items: center; gap: 8px;
}
.service-item {
  padding: 0.85rem 0; border-bottom: 1px solid var(--border);
}
.service-item__name { font-weight: 600; }
.service-item__desc { font-size: 0.88rem; color: var(--text-muted); margin-top: 0.2rem; line-height: 1.65; }

/* ── 10b. SERVICES TEASER LIST (homepage) ── */

.teaser-list { list-style: none; }
.teaser-item {
  display: flex; align-items: baseline; gap: 0.5rem;
  padding: 0.9rem 0; border-bottom: 1px solid var(--border);
}
.teaser-item__name { font-weight: 600; font-size: 0.95rem; white-space: nowrap; }
.teaser-item__dots { flex: 1; border-bottom: 1px dotted var(--border); min-width: 2rem; align-self: end; margin-bottom: 4px; }
.teaser-item__value { font-weight: 700; color: var(--accent); white-space: nowrap; font-size: 0.95rem; }

/* ── 11. CTA BANNER ── */

.cta-banner {
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(var(--accent-rgb), 0.05) 0%, transparent 60%),
    linear-gradient(180deg, var(--bg-alt) 0%, var(--bg-elevated) 100%);
  border-top: 1px solid rgba(var(--accent-rgb), 0.06);
}
.cta-banner h2 { margin-bottom: 0.75rem; }
.cta-banner__sub { color: var(--text-muted); margin-bottom: 1.5rem; font-size: 1.05rem; }
.cta-banner__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── 12. FOOTER ── */

.footer { background: var(--text); color: rgba(255,255,255,0.7); padding: 3.5rem 0 1.5rem; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 2.5rem; }
.footer__brand { font-family: var(--font-display); font-size: 1.35rem; font-weight: 700; color: #fff; margin-bottom: 0.75rem; }
.footer__desc { font-size: 0.88rem; line-height: 1.7; margin-bottom: 1rem; }
.footer h4 {
  font-family: var(--font-body); font-size: 0.8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.5); margin-bottom: 1rem;
}
.footer__links { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer__links a { color: rgba(255,255,255,0.7); font-size: 0.88rem; transition: color var(--ease); }
.footer__links a:hover { color: #fff; }
.footer__hours { font-size: 0.85rem; line-height: 1.8; }
.footer__hours strong { color: rgba(255,255,255,0.9); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; font-size: 0.8rem;
}
.footer__credit a { color: rgba(255,255,255,0.5); transition: color var(--ease); }
.footer__credit a:hover { color: var(--accent-light); }

.social-links { display: flex; gap: 0.75rem; margin-top: 0.75rem; }
.social-link {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.6);
  transition: background var(--ease), color var(--ease);
}
.social-link:hover { background: var(--accent); color: #fff; }

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

/* ── 13. PAGE HEADER (subpages) ── */

.page-header {
  padding: calc(68px + 3rem) 0 2.5rem; text-align: center;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(var(--accent-rgb), 0.04) 0%, transparent 50%),
    linear-gradient(180deg, var(--bg-alt) 0%, var(--bg) 100%);
}
.page-header .section-label { margin-bottom: 0.5rem; }
.page-header h1 { margin-bottom: 1rem; }
.page-header p { color: var(--text-muted); max-width: 600px; margin: 0 auto; font-size: 1.05rem; line-height: 1.7; }

/* ── 14. ABOUT PAGE ── */

.about-content { max-width: 800px; margin: 0 auto; }
.about-content p { font-size: 1.05rem; line-height: 1.8; color: var(--text-muted); margin-bottom: 1.25rem; }
.about-content h2 { margin-top: 2.5rem; margin-bottom: 1rem; }

.about-highlight {
  background: var(--bg-card); border-left: 4px solid var(--accent);
  padding: 1.5rem 2rem; border-radius: 0 var(--radius-md) var(--radius-md) 0; margin: 2rem 0;
}
.about-highlight p { font-size: 1.1rem; font-style: italic; color: var(--text); margin-bottom: 0; }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2rem; }
.value-card {
  padding: 1.75rem; background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); text-align: center;
  transition: transform var(--ease), box-shadow var(--ease);
}
.value-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.value-card__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(var(--accent-rgb), 0.08); color: var(--accent); margin-bottom: 1rem;
}
.value-card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.value-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; }
@media (max-width: 767px) { .values-grid { grid-template-columns: 1fr; } }

/* ── 15. GALLERY ── */

.page-header + .section--light { padding-top: clamp(2.5rem, 5vw, 3.5rem); }

.gallery-note {
  text-align: center; color: var(--text-muted); margin-bottom: 1rem;
  font-size: 1rem; line-height: 1.7;
}
.gallery-note a { color: var(--accent); font-weight: 600; }

.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
}
@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .gallery-grid { grid-template-columns: 1fr; } }

.gallery-item {
  aspect-ratio: 4/3; border-radius: var(--radius-lg); overflow: hidden;
  cursor: pointer; transition: transform var(--ease), box-shadow var(--ease);
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border);
  box-shadow: inset 0 2px 8px rgba(0,0,0,0.04);
}
.gallery-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.gallery-item__label {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--text-muted); opacity: 0.55;
}

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.92); display: none; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s;
}
.lightbox.active { display: flex; opacity: 1; }
.lightbox__img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: var(--radius-md); }
.lightbox__close {
  position: absolute; top: 1.5rem; right: 1.5rem; background: none; border: none;
  color: #fff; font-size: 2.5rem; cursor: pointer; line-height: 1; padding: 0.5rem;
  transition: opacity var(--ease);
}
.lightbox__close:hover { opacity: 0.7; }
.lightbox__nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.1); border: none; color: #fff;
  font-size: 2.5rem; padding: 0.5rem 1rem; cursor: pointer;
  border-radius: var(--radius-md); transition: background var(--ease);
}
.lightbox__nav:hover { background: rgba(255,255,255,0.2); }
.lightbox__nav--prev { left: 1rem; }
.lightbox__nav--next { right: 1rem; }
.lightbox__counter {
  position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.6); font-size: 0.85rem;
}

/* ── 16. CONTACT ── */

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

.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-item__icon {
  flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%;
  background: rgba(var(--accent-rgb), 0.08);
  display: flex; align-items: center; justify-content: center; color: var(--accent);
}
.contact-item h3 { font-size: 1rem; margin-bottom: 0.25rem; }
.contact-item p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }
.contact-item a { color: var(--accent); font-weight: 600; }

.hours-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.hours-table td { padding: 8px 0; border-bottom: 1px solid var(--border); }
.hours-table td:first-child { font-weight: 600; color: var(--text); width: 45%; }
.hours-table td:last-child { text-align: right; color: var(--text-muted); }
.hours-table tr.open td { color: var(--accent); }
.hours-table tr.open td:first-child { font-weight: 700; }

.fb-cta {
  display: flex; align-items: center; gap: 10px;
  padding: 1rem 1.5rem; background: rgba(var(--accent-rgb), 0.06);
  border: 1px solid rgba(var(--accent-rgb), 0.12); border-radius: var(--radius-lg);
  color: var(--accent); font-weight: 600; font-size: 1rem;
  transition: background var(--ease), transform var(--ease); text-decoration: none;
}
.fb-cta:hover { background: rgba(var(--accent-rgb), 0.12); transform: translateY(-2px); color: var(--accent-dark); }

/* Contact form */
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-group label {
  display: block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 0.35rem;
}
.form-group input, .form-group textarea {
  width: 100%; padding: 0.75rem 1rem; border: 1px solid var(--border);
  border-radius: var(--radius-md); font-family: var(--font-body); font-size: 0.95rem;
  background: #fff; transition: border-color var(--ease); color: var(--text);
}
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--accent); }
.form-group textarea { resize: vertical; min-height: 120px; }

.form-note { font-size: 0.85rem; color: var(--text-muted); margin-top: 0.25rem; line-height: 1.6; }
#formStatus { margin-top: 0.5rem; font-size: 0.9rem; font-weight: 600; border-radius: var(--radius-sm); padding: 0.5rem 0; }

.map-container {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border); margin-top: 2rem;
}
.map-container iframe { width: 100%; height: 320px; border: 0; }

/* ── 17. SCROLL REVEAL ── */

.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

.stagger > * { opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease; }
.stagger.visible > *:nth-child(1) { transition-delay: 0s; }
.stagger.visible > *:nth-child(2) { transition-delay: 0.1s; }
.stagger.visible > *:nth-child(3) { transition-delay: 0.15s; }
.stagger.visible > *:nth-child(4) { transition-delay: 0.2s; }
.stagger.visible > *:nth-child(5) { transition-delay: 0.25s; }
.stagger.visible > *:nth-child(6) { transition-delay: 0.3s; }
.stagger.visible > * { opacity: 1; transform: translateY(0); }

/* ── 18. SCROLL PROGRESS + BACK TO TOP ── */

.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px;
  background: var(--accent); z-index: 1001; width: 0%; transition: width 0.1s linear;
}

.back-to-top {
  position: fixed; bottom: 2rem; right: 2rem;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--accent); color: #fff; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(10px);
  transition: opacity 0.3s, transform 0.3s, background 0.3s; z-index: 900;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--accent-dark); }
