/* ============================
   LYS LUNAIRE — Feuille de style
   ============================ */

/* ---- Tokens ---- */
:root {
  --ivory:     #FAF7F2;
  --rose:      #E8C4B8;
  --sage:      #B8C9B0;
  --lavender:  #D4C5E2;
  --taupe:     #8B7355;
  --taupe-dk:  #5C4A32;
  --text:      #2C2420;
  --text-soft: #6B5B4E;
  --white:     #FFFFFF;

  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;

  --shadow-sm: 0 2px 12px rgba(44,36,32,.07);
  --shadow-md: 0 6px 28px rgba(44,36,32,.10);
  --shadow-lg: 0 16px 48px rgba(44,36,32,.13);

  --nav-h: 72px;
  --max-w: 1100px;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Nunito', sans-serif;
  background: var(--ivory);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a  { color: inherit; text-decoration: none; }

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.25;
  color: var(--taupe-dk);
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.1rem; }

p { max-width: 68ch; }
.center p { margin-inline: auto; }

/* ---- Layout helpers ---- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}

section { padding-block: clamp(4rem, 8vw, 7rem); }

.section-label {
  display: inline-block;
  font-family: 'Nunito', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: .75rem;
}

.section-title { margin-bottom: 1.25rem; }
.section-intro  { color: var(--text-soft); font-size: 1.05rem; margin-bottom: 2.5rem; }

.center { text-align: center; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  border: none;
  transition: transform 180ms var(--ease-out), box-shadow 180ms var(--ease-out), background 180ms;
}
.btn:focus-visible { outline: 3px solid var(--taupe); outline-offset: 3px; }
.btn:active { transform: scale(.97); }

.btn-primary {
  background: var(--taupe);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(139,115,85,.35);
}
.btn-primary:hover { background: var(--taupe-dk); box-shadow: 0 6px 24px rgba(92,74,50,.4); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: var(--taupe-dk);
  border: 2px solid var(--taupe);
}
.btn-outline:hover { background: var(--taupe); color: var(--white); transform: translateY(-2px); }

.btn-ghost {
  background: transparent;
  color: var(--taupe);
  padding-inline: 0;
  font-weight: 700;
}
.btn-ghost:hover { color: var(--taupe-dk); }
.btn-ghost svg { transition: transform 220ms var(--ease-out); }
.btn-ghost:hover svg { transform: translateX(4px); }

/* ---- Navbar ---- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(250,247,242,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(139,115,85,.12);
  z-index: 1000;
  transition: box-shadow 300ms;
}
.navbar.scrolled { box-shadow: var(--shadow-md); }

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--taupe-dk);
  letter-spacing: .02em;
}
.nav-logo span { color: var(--taupe); }

.nav-logo-img {
  width: 38px;
  height: 38px;
  object-fit: cover;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 1px 6px rgba(44,36,32,.12);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: .9rem;
  font-weight: 600;
  color: var(--text-soft);
  position: relative;
  transition: color 200ms;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--taupe);
  border-radius: 2px;
  transition: width 220ms var(--ease-out);
}
.nav-links a:hover,
.nav-links a.active { color: var(--taupe-dk); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta { margin-left: 1rem; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--taupe-dk);
  border-radius: 2px;
  transition: transform 280ms var(--ease-out), opacity 200ms;
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: var(--nav-h) 0 0 0;
  background: var(--ivory);
  z-index: 999;
  padding: 2rem 1.5rem;
  flex-direction: column;
  gap: 1.5rem;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--taupe-dk);
  border-bottom: 1px solid rgba(139,115,85,.15);
  padding-bottom: 1rem;
}
.mobile-nav a:last-child { border-bottom: none; }

/* ---- Hero ---- */
.hero {
  min-height: 100dvh;
  padding-top: var(--nav-h);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--ivory) 0%, #F0E8E2 50%, #EDE5F0 100%);
}

.hero-bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.hero-bg-logo {
  position: absolute;
  width: clamp(340px, 55vw, 720px);
  height: clamp(340px, 55vw, 720px);
  object-fit: contain;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: .06;
  pointer-events: none;
  user-select: none;
}
.hero-bg-blob-1 {
  width: 520px; height: 520px;
  background: rgba(232,196,184,.45);
  top: -80px; right: -120px;
}
.hero-bg-blob-2 {
  width: 400px; height: 400px;
  background: rgba(212,197,226,.35);
  bottom: -60px; left: -80px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content { }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.65);
  border: 1px solid rgba(139,115,85,.18);
  border-radius: 50px;
  padding: .4rem 1rem;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 1.5rem;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  background: var(--sage);
  border-radius: 50%;
}

.hero-title { margin-bottom: .75rem; }
.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 500;
  font-style: italic;
  color: var(--taupe);
  margin-bottom: 1.5rem;
}

.hero-desc { color: var(--text-soft); margin-bottom: 2.5rem; font-size: 1.05rem; }

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }

.hero-photo-wrap {
  display: flex;
  justify-content: center;
}

.hero-photo {
  width: min(420px, 100%);
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, var(--rose) 0%, var(--lavender) 100%);
  border-radius: var(--radius-lg) var(--radius-lg) 40% 40%;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-photo-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 2rem;
  background: linear-gradient(to top, rgba(92,74,50,.25) 0%, transparent 50%);
}

.hero-photo-placeholder {
  width: 80px; height: 80px;
  background: rgba(255,255,255,.3);
  border-radius: 50%;
  border: 2px dashed rgba(255,255,255,.6);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero-photo-placeholder svg { opacity: .6; }

.hero-photo-caption {
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-sm);
  padding: .75rem 1.25rem;
  text-align: center;
  position: relative;
  z-index: 1;
}
.hero-photo-caption strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--taupe-dk);
}
.hero-photo-caption span { font-size: .8rem; color: var(--text-soft); }

/* ---- Divider ---- */
.divider-wave {
  height: 60px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
  margin-top: -2px;
}

/* ---- About Preview ---- */
.about-preview {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  box-shadow: var(--shadow-sm);
}

.about-preview-img {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--lavender) 0%, var(--rose) 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.about-preview-img svg { opacity: .4; }

.about-preview-content p { color: var(--text-soft); margin-bottom: 1.5rem; }

/* ---- Qui peut consulter ---- */
.consultation-section { background: var(--ivory); }

.consult-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.consult-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem;
  border-left: 4px solid var(--rose);
  box-shadow: var(--shadow-sm);
  transition: transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out);
}
.consult-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.consult-card h4 { font-family: 'Nunito', sans-serif; font-weight: 700; color: var(--taupe-dk); margin-bottom: .5rem; }
.consult-card p { font-size: .9rem; color: var(--text-soft); max-width: unset; }

/* ---- Services grid ---- */
.services-section { background: #F5F0EA; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: transform 240ms var(--ease-out), box-shadow 240ms var(--ease-out);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.service-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.service-icon-rose    { background: rgba(232,196,184,.35); }
.service-icon-sage    { background: rgba(184,201,176,.35); }
.service-icon-lavender{ background: rgba(212,197,226,.35); }
.service-icon-taupe   { background: rgba(139,115,85,.15); }

.service-card h3 { font-size: 1.2rem; }
.service-card p  { font-size: .92rem; color: var(--text-soft); flex: 1; }

.services-cta { text-align: center; margin-top: 2.5rem; }

/* ---- Tarifs ---- */
.tarifs-section { background: var(--white); }

.tarifs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-block: 3rem 2.5rem;
}

.tarif-card {
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out);
  position: relative;
  overflow: hidden;
}
.tarif-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
}
.tarif-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.tarif-card-rose     { background: #FDF6F3; }
.tarif-card-rose::before { background: var(--rose); }

.tarif-card-sage     { background: #F3F7F2; }
.tarif-card-sage::before { background: var(--sage); }

.tarif-card-lavender { background: #F6F3FA; }
.tarif-card-lavender::before { background: var(--lavender); }

.tarif-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--taupe-dk);
  line-height: 1;
  margin: .75rem 0 .5rem;
}
.tarif-price sup { font-size: 1.4rem; vertical-align: super; }
.tarif-price small { font-size: 1rem; color: var(--text-soft); font-weight: 400; }

.tarif-card h3 { font-size: 1.15rem; }
.tarif-card p  { font-size: .9rem; color: var(--text-soft); }

/* ---- Contact form ---- */
.contact-section { background: var(--ivory); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 3rem;
  align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-item-icon {
  width: 44px; height: 44px;
  background: var(--white);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}
.contact-item-text strong { display: block; font-weight: 700; color: var(--taupe-dk); }
.contact-item-text span   { font-size: .9rem; color: var(--text-soft); }

.contact-visio-badge {
  display: flex;
  align-items: center;
  gap: .75rem;
  background: linear-gradient(135deg, rgba(184,201,176,.3), rgba(212,197,226,.3));
  border: 1px solid rgba(139,115,85,.15);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
}
.contact-visio-badge svg { flex-shrink: 0; }
.contact-visio-badge p { font-size: .88rem; color: var(--text-soft); margin: 0; max-width: unset; }

/* Form */
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-group { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1.25rem; }
.form-group label { font-weight: 700; font-size: .88rem; color: var(--taupe-dk); }
.form-group label .req { color: #C0392B; margin-left: 2px; }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid rgba(139,115,85,.25);
  border-radius: var(--radius-sm);
  font-family: 'Nunito', sans-serif;
  font-size: .95rem;
  color: var(--text);
  background: var(--ivory);
  transition: border-color 200ms, box-shadow 200ms;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--taupe);
  box-shadow: 0 0 0 3px rgba(139,115,85,.15);
}
.form-group textarea { resize: vertical; min-height: 130px; }

.form-success {
  display: none;
  background: rgba(184,201,176,.25);
  border: 1px solid var(--sage);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  color: #3A6B35;
  font-weight: 600;
  margin-bottom: 1rem;
}
.form-success.visible { display: block; }

/* ---- Footer ---- */
footer {
  background: var(--taupe-dk);
  color: rgba(255,255,255,.75);
  padding: 3rem 0 2rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-brand .nav-logo { color: var(--white); margin-bottom: .75rem; display: block; }
.footer-brand p { font-size: .88rem; max-width: 28ch; line-height: 1.6; }

.footer-col h4 {
  font-family: 'Nunito', sans-serif;
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.footer-col a  { font-size: .9rem; color: rgba(255,255,255,.7); transition: color 200ms; }
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .82rem;
}

/* ---- Page hero (inner pages) ---- */
.page-hero {
  padding-top: calc(var(--nav-h) + 4rem);
  padding-bottom: 4rem;
  background: linear-gradient(135deg, var(--ivory) 0%, #EDE5F0 100%);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: rgba(232,196,184,.3);
  border-radius: 50%;
  right: -200px; top: -200px;
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 1; }

/* ---- About page ---- */
.about-text-section { background: var(--white); }

.about-text-block { max-width: 72ch; }
.about-text-block p { color: var(--text-soft); margin-bottom: 1.25rem; font-size: 1.05rem; }
.about-text-block p:last-child { margin-bottom: 0; }

.about-columns {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-sidebar { display: flex; flex-direction: column; gap: 1.5rem; }

.sidebar-card {
  background: var(--ivory);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  border-left: 3px solid var(--rose);
}
.sidebar-card h4 {
  font-family: 'Nunito', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: .75rem;
}
.sidebar-card ul { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.sidebar-card li { font-size: .9rem; color: var(--text-soft); padding-left: 1rem; position: relative; }
.sidebar-card li::before { content: '—'; position: absolute; left: 0; color: var(--rose); }

.approach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.approach-card {
  background: var(--ivory);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  border-top: 3px solid var(--lavender);
}
.approach-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  margin-bottom: .5rem;
}
.approach-card p { font-size: .9rem; color: var(--text-soft); max-width: unset; }

/* ---- Services page ---- */
.service-detail-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: start;
  transition: transform 240ms var(--ease-out), box-shadow 240ms;
}
.service-detail-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.service-detail-icon {
  width: 72px; height: 72px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.service-detail-card p { font-size: .95rem; color: var(--text-soft); }
.service-detail-card .service-tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1rem; }
.service-tag {
  background: var(--ivory);
  border-radius: 50px;
  padding: .3rem .85rem;
  font-size: .8rem;
  color: var(--taupe);
  font-weight: 600;
  border: 1px solid rgba(139,115,85,.2);
}

/* ---- Tarifs page ---- */
.tarifs-note {
  background: linear-gradient(135deg, rgba(184,201,176,.2), rgba(212,197,226,.2));
  border: 1px solid rgba(139,115,85,.15);
  border-radius: var(--radius-md);
  padding: 1.5rem 2rem;
  font-size: .92rem;
  color: var(--text-soft);
  margin-top: 2rem;
}
.tarifs-note strong { color: var(--taupe-dk); }

/* ---- Mentions ---- */
.mentions-section { background: var(--white); }
.mentions-grid { display: flex; flex-direction: column; gap: 2.5rem; margin-top: 3rem; }
.mention-block {
  border-left: 3px solid var(--lavender);
  padding-left: 1.5rem;
}
.mention-block h3 { font-size: 1.1rem; margin-bottom: .75rem; }
.mention-block p  { font-size: .95rem; color: var(--text-soft); }
.mention-block ul { list-style: none; margin-top: .5rem; display: flex; flex-direction: column; gap: .35rem; }
.mention-block li { font-size: .9rem; color: var(--text-soft); padding-left: 1rem; position: relative; }
.mention-block li::before { content: '·'; position: absolute; left: 0; color: var(--taupe); font-size: 1.2rem; line-height: 1.3; }

/* ---- Scroll animations ---- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 550ms var(--ease-out), transform 550ms var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 80ms; }
.reveal-delay-2 { transition-delay: 160ms; }
.reveal-delay-3 { transition-delay: 240ms; }
.reveal-delay-4 { transition-delay: 320ms; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .hero-inner          { grid-template-columns: 1fr; text-align: center; }
  .hero-photo-wrap     { order: -1; }
  .hero-photo          { width: min(300px, 80vw); }
  .hero-actions        { justify-content: center; }
  .hero .section-label { display: block; }

  .about-preview       { grid-template-columns: 1fr; }
  .about-preview-img   { aspect-ratio: 16/7; }

  .contact-grid        { grid-template-columns: 1fr; }
  .footer-inner        { grid-template-columns: 1fr 1fr; }

  .about-columns       { grid-template-columns: 1fr; }
  .service-detail-card { grid-template-columns: 1fr; }
  .service-detail-icon { width: 56px; height: 56px; }
}

@media (max-width: 640px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .form-row  { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
