/* ============================================================
   My Fleur Oran — LymaWeb prototype stylesheet
   Mobile-first, RTL-aware via logical properties
   ============================================================ */

:root {
  --color-green: #3F5642;
  --color-green-dark: #2C3D2F;
  --color-green-soft: #6A8270;
  --color-blush: #E8C5C0;
  --color-blush-soft: #F4DEDB;
  --color-cream: #FAF5EE;
  --color-cream-deep: #F1E9DC;
  --color-gold: #C8A24A;
  --color-gold-soft: #DCBF7F;
  --color-charcoal: #2A2A2A;
  --color-muted: #6B6B6B;
  --color-line: #E2D9CB;
  --color-white: #FFFFFF;
  --color-wa: #25D366;
  --color-wa-dark: #1FA856;

  --font-serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-script: 'Pinyon Script', 'Dancing Script', cursive;
  --font-arabic: 'Tajawal', 'Cairo', sans-serif;

  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 48px;
  --space-6: 64px;
  --space-7: 96px;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(42, 42, 42, 0.06), 0 1px 3px rgba(42, 42, 42, 0.05);
  --shadow-md: 0 4px 12px rgba(42, 42, 42, 0.08), 0 2px 4px rgba(42, 42, 42, 0.05);
  --shadow-lg: 0 12px 36px rgba(42, 42, 42, 0.12), 0 4px 12px rgba(42, 42, 42, 0.06);

  --container: 1180px;
  --header-height: 72px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-charcoal);
  background: var(--color-cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body[dir="rtl"] { font-family: var(--font-arabic); }

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

a:hover { color: var(--color-green); }

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.2;
  color: var(--color-green-dark);
  margin: 0 0 var(--space-2) 0;
  letter-spacing: -0.005em;
}

body[dir="rtl"] h1, body[dir="rtl"] h2, body[dir="rtl"] h3, body[dir="rtl"] h4 {
  font-family: var(--font-arabic);
  font-weight: 700;
}

h1 { font-size: clamp(2.4rem, 6vw, 4rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.6rem); }

p { margin: 0 0 var(--space-2) 0; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--space-3);
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
  font-weight: 600;
  display: inline-block;
  margin-bottom: var(--space-2);
}

.script {
  font-family: var(--font-script);
  font-size: 1.5em;
  color: var(--color-gold);
  font-weight: 400;
  font-style: italic;
}

/* ============================================================
   HEADER / NAV
   ============================================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 245, 238, 0.94);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--color-line);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
  color: var(--color-green-dark);
}

.brand-name {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.brand-tagline {
  font-family: var(--font-script);
  font-size: 1.1rem;
  color: var(--color-gold);
  margin-top: 2px;
}

.nav-links {
  display: none;
  gap: var(--space-4);
  align-items: center;
}

.nav-links a {
  font-size: 0.95rem;
  color: var(--color-charcoal);
  position: relative;
  padding-block: 6px;
}

.nav-links a.active::after,
.nav-links a:hover::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 2px;
  background: var(--color-gold);
  border-radius: 2px;
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: transparent;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-pill);
  padding: 6px 12px;
  font: inherit;
  font-size: 0.8rem;
  color: var(--color-charcoal);
  cursor: pointer;
  transition: all 0.2s ease;
}

.lang-toggle:hover { border-color: var(--color-green); color: var(--color-green); }

.nav-burger {
  border: 0;
  background: transparent;
  color: var(--color-green-dark);
  cursor: pointer;
  padding: 8px;
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
}

.nav-burger span {
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

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

.nav-drawer {
  display: none;
  flex-direction: column;
  gap: var(--space-2);
  padding: var(--space-3);
  border-top: 1px solid var(--color-line);
  background: var(--color-cream);
}

.nav-drawer[data-open="true"] { display: flex; }

.nav-drawer a {
  padding: 10px 0;
  font-size: 1.05rem;
  border-bottom: 1px solid var(--color-line);
}
.nav-drawer a:last-child { border-bottom: 0; }

@media (min-width: 880px) {
  .nav-links { display: flex; }
  .nav-burger { display: none; }
  .nav-drawer { display: none !important; }
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative;
  overflow: hidden;
  padding-block: var(--space-6) var(--space-7);
  background: linear-gradient(140deg, var(--color-cream) 0%, var(--color-cream-deep) 100%);
}

.hero-grid {
  display: grid;
  gap: var(--space-5);
  align-items: center;
}

.hero-copy h1 {
  margin-bottom: var(--space-3);
}

.hero-copy h1 .script {
  display: block;
  font-size: 1em;
  line-height: 1;
  color: var(--color-gold);
  margin-bottom: 4px;
}

.hero-copy h1 .main {
  display: block;
  font-size: clamp(2.4rem, 7vw, 4.4rem);
}

.hero-lead {
  font-size: 1.1rem;
  color: var(--color-charcoal);
  max-width: 36ch;
  margin-bottom: var(--space-4);
}

.hero-actions {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-lg);
}

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

.hero-badge {
  position: absolute;
  bottom: var(--space-3);
  inset-inline-start: var(--space-3);
  background: rgba(255, 255, 255, 0.96);
  padding: 10px 14px;
  border-radius: var(--radius-md);
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-sm);
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--color-wa);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.18);
}

@media (min-width: 760px) {
  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: var(--space-6);
  }
  .hero-image { aspect-ratio: 5 / 6; }
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: 0;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }

.btn-wa { background: var(--color-wa); color: white; }
.btn-wa:hover { background: var(--color-wa-dark); color: white; }

.btn-primary { background: var(--color-green); color: var(--color-cream); }
.btn-primary:hover { background: var(--color-green-dark); color: var(--color-cream); }

.btn-outline {
  background: transparent;
  color: var(--color-green-dark);
  border: 1.5px solid var(--color-green-dark);
}
.btn-outline:hover { background: var(--color-green-dark); color: var(--color-cream); }

.btn-ghost {
  background: transparent;
  color: var(--color-charcoal);
  text-decoration: underline;
  padding: 8px 0;
  border-radius: 0;
}

.btn-ghost:hover { color: var(--color-green); transform: none; box-shadow: none; }

.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ============================================================
   STATS STRIP
   ============================================================ */

.stats-strip {
  background: var(--color-green-dark);
  color: var(--color-cream);
  padding-block: var(--space-4);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3);
  text-align: center;
}

.stat-num {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--color-gold-soft);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-cream);
  opacity: 0.8;
}

@media (min-width: 720px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); gap: var(--space-4); }
}

/* ============================================================
   SECTIONS
   ============================================================ */

section { padding-block: var(--space-6); }

.section-head {
  text-align: center;
  max-width: 56ch;
  margin: 0 auto var(--space-5);
}

.section-head .eyebrow { display: inline-block; }

.section-head p {
  color: var(--color-muted);
  font-size: 1.05rem;
}

/* ============================================================
   COLLECTIONS GRID
   ============================================================ */

.collections-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
}

@media (min-width: 640px) { .collections-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .collections-grid { grid-template-columns: repeat(4, 1fr); } }

.collection-card {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-md);
  overflow: hidden;
  display: block;
  color: white;
}

.collection-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.collection-card:hover img { transform: scale(1.05); }

.collection-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.7));
}

.collection-card-body {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding: var(--space-3);
  z-index: 1;
}

.collection-card h3 {
  font-size: 1.5rem;
  color: white;
  margin-bottom: 6px;
}

.collection-card p {
  font-size: 0.85rem;
  opacity: 0.85;
  margin: 0;
}

/* ============================================================
   ABOUT / STORY
   ============================================================ */

.story {
  background: var(--color-cream-deep);
}

.story-grid {
  display: grid;
  gap: var(--space-4);
  align-items: center;
}

.story-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-md);
}

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

.story-copy .eyebrow { display: inline-block; }

.story-copy p { font-size: 1.05rem; color: var(--color-charcoal); }

.story-pillars {
  display: grid;
  gap: var(--space-2);
  margin-top: var(--space-4);
}

.pillar {
  background: var(--color-cream);
  padding: var(--space-3);
  border-radius: var(--radius-md);
  border-inline-start: 3px solid var(--color-gold);
}

.pillar h4 { font-size: 1.1rem; margin-bottom: 4px; }
.pillar p { margin: 0; font-size: 0.9rem; color: var(--color-muted); }

@media (min-width: 820px) {
  .story-grid { grid-template-columns: 0.9fr 1.1fr; gap: var(--space-6); }
  .story-pillars { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */

.testimonials-grid {
  display: grid;
  gap: var(--space-3);
}

@media (min-width: 760px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }

.testimonial {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.testimonial::before {
  content: "“";
  font-family: var(--font-serif);
  font-size: 4rem;
  line-height: 1;
  position: absolute;
  top: 4px;
  inset-inline-start: var(--space-3);
  color: var(--color-blush);
}

.testimonial blockquote {
  margin: var(--space-2) 0 var(--space-3) 0;
  font-style: italic;
  color: var(--color-charcoal);
  font-size: 0.98rem;
  position: relative;
  z-index: 1;
}

.testimonial cite {
  font-style: normal;
  color: var(--color-green-dark);
  font-weight: 600;
  display: block;
  font-size: 0.9rem;
}

.testimonial .stars {
  color: var(--color-gold);
  font-size: 0.85rem;
  letter-spacing: 2px;
}

/* ============================================================
   CTA BAND
   ============================================================ */

.cta-band {
  background: var(--color-green-dark);
  color: var(--color-cream);
  text-align: center;
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  background-image:
    radial-gradient(circle at 10% 10%, rgba(200, 162, 74, 0.18), transparent 40%),
    radial-gradient(circle at 90% 90%, rgba(232, 197, 192, 0.10), transparent 40%);
}

.cta-band h2 { color: var(--color-cream); margin-bottom: var(--space-3); }
.cta-band p { color: var(--color-cream); opacity: 0.85; max-width: 50ch; margin: 0 auto var(--space-3); }
.cta-band .btn-wa { box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4); }

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  background: #1B2620;
  color: var(--color-cream);
  padding-block: var(--space-5) var(--space-3);
}

.footer-grid {
  display: grid;
  gap: var(--space-4);
}

.footer-grid h4 {
  color: var(--color-gold-soft);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-2);
  font-family: var(--font-sans);
  font-weight: 600;
}

.footer-grid p, .footer-grid a {
  color: var(--color-cream);
  opacity: 0.85;
  font-size: 0.9rem;
}

.footer-grid a:hover { color: var(--color-gold-soft); opacity: 1; }

.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid ul li { margin-bottom: 8px; }

.footer-brand p {
  font-family: var(--font-script);
  color: var(--color-gold-soft);
  font-size: 1.4rem;
  margin: 0;
}

.social-links { display: flex; gap: var(--space-2); margin-top: var(--space-2); }

.social-links a {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(250, 245, 238, 0.18);
  border-radius: 50%;
  color: var(--color-cream);
  opacity: 1;
}

.social-links a:hover { background: var(--color-gold); border-color: var(--color-gold); color: var(--color-green-dark); }

.social-links svg { width: 18px; height: 18px; }

.copyright {
  margin-top: var(--space-4);
  padding-top: var(--space-3);
  border-top: 1px solid rgba(250, 245, 238, 0.12);
  text-align: center;
  font-size: 0.8rem;
  color: var(--color-cream);
  opacity: 0.6;
}

@media (min-width: 720px) {
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
}

/* ============================================================
   STICKY WHATSAPP CTA
   ============================================================ */

.fab-wa {
  position: fixed;
  bottom: 20px;
  inset-inline-end: 20px;
  z-index: 100;
  background: var(--color-wa);
  color: white;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s ease;
}

.fab-wa:hover { background: var(--color-wa-dark); color: white; transform: scale(1.08); }
.fab-wa svg { width: 30px; height: 30px; }

/* ============================================================
   COLLECTIONS PAGE — FILTERED GALLERY
   ============================================================ */

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: var(--space-4);
}

.filter-btn {
  border: 1px solid var(--color-line);
  background: transparent;
  color: var(--color-charcoal);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-btn:hover { border-color: var(--color-green); color: var(--color-green); }
.filter-btn.active { background: var(--color-green-dark); color: var(--color-cream); border-color: var(--color-green-dark); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-2);
}

@media (min-width: 720px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: var(--space-3); } }
@media (min-width: 1080px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-cream-deep);
  aspect-ratio: 1 / 1;
  cursor: pointer;
}

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

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

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.7));
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  padding: var(--space-2);
  color: white;
  font-size: 0.85rem;
}

.gallery-item:hover .gallery-item-overlay { opacity: 1; }

/* ============================================================
   PRICING / PACKS
   ============================================================ */

.packs-grid {
  display: grid;
  gap: var(--space-3);
}

@media (min-width: 760px) { .packs-grid { grid-template-columns: repeat(3, 1fr); } }

.pack {
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.pack:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--color-gold-soft); }

.pack.featured { border-color: var(--color-green-dark); background: var(--color-cream-deep); position: relative; }

.pack.featured::before {
  content: "★ Le plus demandé";
  position: absolute;
  top: -12px;
  inset-inline-start: 50%;
  transform: translateX(-50%);
  background: var(--color-gold);
  color: var(--color-green-dark);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.05em;
  white-space: nowrap;
}

body[dir="rtl"] .pack.featured::before { transform: translateX(50%); }

.pack-name { font-size: 1.4rem; margin-bottom: 4px; }
.pack-tagline { color: var(--color-muted); font-size: 0.9rem; margin-bottom: var(--space-3); }

.pack-price {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--color-green-dark);
  font-weight: 500;
  margin-bottom: var(--space-3);
  display: block;
}

.pack-price span {
  font-size: 0.85rem;
  color: var(--color-muted);
  display: block;
  font-family: var(--font-sans);
  margin-top: 4px;
}

.pack-features {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-3) 0;
  flex: 1;
}

.pack-features li {
  padding: 8px 0;
  padding-inline-start: 24px;
  position: relative;
  font-size: 0.9rem;
  border-bottom: 1px dashed var(--color-line);
}

.pack-features li::before {
  content: "✿";
  position: absolute;
  inset-inline-start: 0;
  color: var(--color-gold);
  font-size: 0.9rem;
}

.pack-features li:last-child { border-bottom: 0; }

/* ============================================================
   PROCESS STEPS
   ============================================================ */

.steps-grid {
  display: grid;
  gap: var(--space-3);
}

@media (min-width: 720px) { .steps-grid { grid-template-columns: repeat(4, 1fr); } }

.step {
  text-align: center;
}

.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-blush);
  color: var(--color-green-dark);
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-2);
}

.step h4 { font-size: 1.1rem; }
.step p { color: var(--color-muted); font-size: 0.9rem; }

/* ============================================================
   FAQ
   ============================================================ */

.faq-list { max-width: 720px; margin: 0 auto; }

.faq-item {
  border-bottom: 1px solid var(--color-line);
}

.faq-item summary {
  cursor: pointer;
  padding-block: var(--space-3);
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--color-green-dark);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 1.5rem;
  color: var(--color-gold);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-item-body {
  padding-bottom: var(--space-3);
  color: var(--color-muted);
}

/* ============================================================
   CONTACT FORM
   ============================================================ */

.contact-grid {
  display: grid;
  gap: var(--space-5);
}

@media (min-width: 880px) { .contact-grid { grid-template-columns: 1fr 1fr; } }

.contact-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  box-shadow: var(--shadow-sm);
  border-inline-start: 4px solid var(--color-gold);
}

.contact-card h3 { margin-bottom: var(--space-2); }

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--color-line);
}

.contact-list li:last-child { border-bottom: 0; }

.contact-list .icon {
  width: 32px;
  height: 32px;
  background: var(--color-cream-deep);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-green-dark);
  flex-shrink: 0;
}

.contact-list strong {
  display: block;
  font-size: 0.85rem;
  color: var(--color-muted);
  font-weight: 600;
  margin-bottom: 2px;
}

.form-field { margin-bottom: var(--space-3); }

.form-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--color-charcoal);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  background: white;
  color: var(--color-charcoal);
  transition: border-color 0.2s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--color-green);
  box-shadow: 0 0 0 3px rgba(63, 86, 66, 0.12);
}

.form-field textarea { min-height: 120px; resize: vertical; }

.form-helper {
  font-size: 0.8rem;
  color: var(--color-muted);
  margin-top: 6px;
}

/* ============================================================
   MAP
   ============================================================ */

.map-frame {
  width: 100%;
  height: 320px;
  border: 0;
  border-radius: var(--radius-md);
  margin-top: var(--space-3);
  filter: saturate(0.85) contrast(0.98);
}

/* ============================================================
   PAGE HEADER (sub-pages)
   ============================================================ */

.page-header {
  background: linear-gradient(140deg, var(--color-cream-deep) 0%, var(--color-blush-soft) 100%);
  padding-block: var(--space-5);
  text-align: center;
}

.page-header h1 { margin-bottom: var(--space-2); }
.page-header .breadcrumbs {
  font-size: 0.85rem;
  color: var(--color-muted);
}

.page-header .breadcrumbs a { color: var(--color-green); }

/* ============================================================
   UTILS
   ============================================================ */

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

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

.text-center { text-align: center; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
