/* =========================================================
   Supreme Hair — styles.css
   Mobile-first · self-hosted fonts · premium editorial look
   ========================================================= */
@import url("assets/fonts/fonts.css");

/* ---------- Tokens ---------- */
:root {
  --ink:        #2B1B26;
  --ink-soft:   #4A3843;
  --muted:      #6E5C64;
  --berry:      #8E2C55;
  --berry-dark: #6F2143;
  --gold:       #B98D4E;
  --gold-soft:  #C79A54;
  --blush:      #F4E6E9;
  --cream:      #FBF7F4;
  --surface:    #FFFFFF;
  --line:       #EADFDA;
  --line-strong:#DCCBC4;

  --shadow-sm: 0 2px 8px rgba(43,27,38,.06);
  --shadow-md: 0 14px 40px -18px rgba(43,27,38,.28);
  --shadow-lg: 0 40px 80px -40px rgba(43,27,38,.40);

  --radius:    18px;
  --radius-lg: 28px;
  --radius-sm: 12px;

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --wrap: 1180px;
  --gap:  clamp(1.25rem, 4vw, 2rem);
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink-soft);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: var(--berry); text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-display); color: var(--ink); line-height: 1.1; margin: 0 0 .5em; font-weight: 600; }
p { margin: 0 0 1rem; }
ul { margin: 0; padding: 0; list-style: none; }

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: clamp(1.15rem, 5vw, 2.5rem); }
.section { padding-block: clamp(3.75rem, 9vw, 7rem); }
.section-tint { background: linear-gradient(180deg, var(--blush) 0%, #F7ECEC 100%); }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--ink); color: #fff; padding: .75rem 1.25rem; border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; }

:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

/* ---------- Eyebrow + section head ---------- */
.eyebrow {
  display: flex; align-items: center; gap: .7rem;
  font-family: var(--font-body); font-weight: 600; font-size: .78rem;
  letter-spacing: .18em; text-transform: uppercase; color: var(--berry);
  margin: 0 0 1rem;
}
.eyebrow .rule { width: 34px; height: 1px; background: var(--gold); display: inline-block; }
.section-head { max-width: 640px; margin-bottom: clamp(2rem, 5vw, 3.25rem); }
.section-head h2 { font-size: clamp(2rem, 5.2vw, 3.1rem); }
.section-intro { color: var(--muted); font-size: 1.05rem; }

/* ---------- Buttons ---------- */
.btn {
  --btn-fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  min-height: 48px; padding: .85rem 1.6rem;
  font-family: var(--font-body); font-weight: 600; font-size: .98rem;
  border-radius: 999px; border: 1px solid transparent; cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
  text-align: center;
}
.btn-sm { min-height: 42px; padding: .6rem 1.25rem; font-size: .9rem; }
.btn-block { width: 100%; }
.btn-primary { background: var(--berry); color: #fff; box-shadow: 0 10px 24px -12px rgba(142,44,85,.7); }
.btn-primary:hover { background: var(--berry-dark); transform: translateY(-2px); box-shadow: 0 16px 30px -12px rgba(142,44,85,.75); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-2px); background: rgba(255,255,255,.5); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251,247,244,.82);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
}
.site-header.scrolled { border-color: var(--line); box-shadow: var(--shadow-sm); }
.header-inner { display: flex; align-items: center; gap: 1rem; min-height: 68px; }

.brand { display: flex; align-items: center; gap: .7rem; color: var(--ink); }
.brand-mark {
  display: grid; place-items: center; width: 40px; height: 40px; border-radius: 11px;
  background: var(--ink); color: var(--gold-soft);
  font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; letter-spacing: .5px;
  flex: none;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name { font-family: var(--font-display); font-weight: 600; font-size: 1.15rem; color: var(--ink); }
.brand-sub { font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }

.nav-desktop { display: none; margin-left: auto; gap: 2rem; }
.nav-desktop a {
  color: var(--ink-soft); font-weight: 500; font-size: .96rem; position: relative; padding: .25rem 0;
}
.nav-desktop a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px; background: var(--gold);
  transition: width .3s var(--ease);
}
.nav-desktop a:hover { color: var(--ink); }
.nav-desktop a:hover::after { width: 100%; }
.header-cta { display: none; }

/* burger */
.burger {
  margin-left: auto; width: 46px; height: 46px; border: 1px solid var(--line-strong);
  background: var(--surface); border-radius: 12px; display: grid; place-items: center; gap: 5px;
  cursor: pointer; padding: 0;
}
.burger span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .3s var(--ease), opacity .2s var(--ease); }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile nav */
.mobile-nav {
  position: fixed; inset: 68px 0 auto 0; z-index: 95;
  background: var(--cream); border-bottom: 1px solid var(--line);
  transform: translateY(-120%); transition: transform .38s var(--ease);
  padding: 1rem clamp(1.15rem, 5vw, 2.5rem) 1.75rem;
  box-shadow: var(--shadow-md);
}
.mobile-nav.open { transform: translateY(0); }
.mobile-nav nav { display: flex; flex-direction: column; gap: .25rem; }
.mobile-nav a {
  color: var(--ink); font-family: var(--font-display); font-size: 1.4rem; font-weight: 500;
  padding: .7rem 0; border-bottom: 1px solid var(--line);
}
.mobile-nav a.btn { color: #fff; font-family: var(--font-body); font-size: 1rem; margin-top: 1rem; border-bottom: none; }
.nav-backdrop { position: fixed; inset: 0; z-index: 90; background: rgba(43,27,38,.45); border: 0; }

/* ---------- Hero ---------- */
.hero { padding-block: clamp(2.5rem, 7vw, 5rem) clamp(3rem, 8vw, 5.5rem); position: relative; }
.hero::before {
  content: ""; position: absolute; top: -80px; right: -120px; width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(201,154,84,.18), transparent 70%); z-index: -1;
}
.hero-grid { display: grid; gap: clamp(2rem, 6vw, 4rem); align-items: center; }
.hero-copy h1 {
  font-size: clamp(2.6rem, 11vw, 5rem); font-weight: 600; letter-spacing: -.01em; margin-bottom: .35em;
  font-optical-sizing: auto;
}
.hero-copy h1 em { font-style: italic; color: var(--berry); font-weight: 500; }
.hero-lead { font-size: clamp(1.05rem, 2.6vw, 1.22rem); color: var(--muted); max-width: 34ch; margin-bottom: 1.9rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-bottom: 1.9rem; }
.hero-actions .btn { flex: 1 1 100%; }
.hero-rating { display: flex; align-items: center; gap: .6rem; font-size: .95rem; color: var(--ink-soft); }
.stars { color: var(--gold); letter-spacing: 2px; }
.hero-rating strong { color: var(--ink); }

.hero-media { position: relative; }
.hero-media img {
  width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  object-fit: cover; aspect-ratio: 4/3;
}
.hero-badge {
  position: absolute; left: -6px; bottom: -18px;
  background: var(--surface); border-radius: var(--radius); padding: 1rem 1.25rem;
  box-shadow: var(--shadow-md); display: flex; align-items: center; gap: .75rem;
  border: 1px solid var(--line);
}
.hero-badge .badge-num { font-family: var(--font-display); font-size: 2rem; font-weight: 600; color: var(--berry); line-height: 1; }
.hero-badge .badge-label { font-size: .78rem; color: var(--muted); line-height: 1.25; }

/* ---------- Trust bar ---------- */
.trust { border-block: 1px solid var(--line); background: var(--surface); }
.trust-inner { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem 1rem; padding-block: 2.25rem; text-align: center; }
.trust-item { display: flex; flex-direction: column; gap: .15rem; }
.trust-item strong { font-family: var(--font-display); font-size: 1.5rem; color: var(--ink); font-weight: 600; }
.trust-item span { font-size: .82rem; color: var(--muted); letter-spacing: .02em; }

/* ---------- Services (accordion mobile-first) ---------- */
.services { display: flex; flex-direction: column; gap: .9rem; }
.svc { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: box-shadow .3s var(--ease); }
.svc:hover { box-shadow: var(--shadow-md); }
.svc-head {
  width: 100%; display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 1rem;
  background: none; border: 0; cursor: pointer; text-align: left;
  padding: 1.15rem 1.35rem; min-height: 60px; font-family: var(--font-body);
}
.svc-title { font-family: var(--font-display); font-size: 1.18rem; font-weight: 600; color: var(--ink); }
.svc-from { font-size: .85rem; color: var(--berry); font-weight: 600; white-space: nowrap; }
.svc-chev { width: 12px; height: 12px; border-right: 2px solid var(--muted); border-bottom: 2px solid var(--muted); transform: rotate(45deg); transition: transform .3s var(--ease); margin-right: 4px; }
.svc-head[aria-expanded="true"] .svc-chev { transform: rotate(-135deg); }
.svc-body { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.svc-body-inner, .svc-body > * { }
.svc-body .price-list, .svc-body .svc-note { margin: 0 1.35rem; }
.svc-body .price-list { padding-bottom: 1.35rem; }
.svc-note { color: var(--muted); font-size: .95rem; padding-top: .25rem; }
.price-list li { display: flex; align-items: baseline; gap: .5rem; padding: .55rem 0; border-bottom: 1px dashed var(--line); font-size: .98rem; }
.price-list li:last-child { border-bottom: 0; }
.price-list .dots { flex: 1; border-bottom: 1px dotted var(--line-strong); transform: translateY(-3px); }
.price-list .price { font-weight: 600; color: var(--ink); font-variant-numeric: tabular-nums; white-space: nowrap; }
.svc-foot { margin-top: 1.75rem; font-size: .85rem; color: var(--muted); max-width: 60ch; }

/* ---------- About ---------- */
.about-grid { display: grid; gap: clamp(2rem, 6vw, 3.5rem); align-items: center; }
.about-media { position: relative; }
.about-media > img:first-child { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); aspect-ratio: 4/3; object-fit: cover; }
.about-media-2 {
  position: absolute; right: -10px; bottom: -28px; width: 46%; max-width: 220px;
  border-radius: var(--radius); border: 5px solid var(--cream); box-shadow: var(--shadow-md);
  aspect-ratio: 3/2; object-fit: cover;
}
.about-copy h2 { font-size: clamp(2rem, 5vw, 2.9rem); }
.about-copy p { color: var(--ink-soft); }
.check-list { margin-top: 1.25rem; display: grid; gap: .7rem; }
.check-list li { position: relative; padding-left: 2rem; color: var(--ink-soft); }
.check-list li::before {
  content: ""; position: absolute; left: 0; top: 3px; width: 20px; height: 20px; border-radius: 50%;
  background: var(--berry); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l4 4 10-10'/%3E%3C/svg%3E");
  background-size: 13px; background-repeat: no-repeat; background-position: center;
}

/* ---------- Team ---------- */
.team-grid { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
.team-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 2rem 1.75rem; text-align: center; box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.avatar {
  width: 84px; height: 84px; border-radius: 50%; margin: 0 auto 1.1rem; display: grid; place-items: center;
  font-family: var(--font-display); font-size: 1.7rem; font-weight: 600; color: var(--ink);
  border: 1px solid var(--line-strong);
}
.avatar-a { background: linear-gradient(135deg, #F6E3EA, #EBC9D6); }
.avatar-b { background: linear-gradient(135deg, #F4EAD9, #E8D4B4); }
.avatar-c { background: linear-gradient(135deg, #EDE4EE, #DCC9E0); }
.team-card h3 { font-size: 1.4rem; margin-bottom: .1em; }
.team-card .role { color: var(--berry); font-weight: 600; font-size: .95rem; margin-bottom: .35rem; }
.team-card .cred { color: var(--muted); font-size: .9rem; margin-bottom: .9rem; }
.team-rating { font-size: .88rem; color: var(--ink-soft); margin: 0; }
.team-rating--muted { color: var(--muted); font-style: italic; }
.placeholder-hint { margin-top: 1.5rem; text-align: center; font-size: .85rem; color: var(--muted); font-style: italic; }

/* ---------- Features ---------- */
.feature-grid { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
.feature {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.75rem; box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feat-icon { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 14px; background: var(--blush); color: var(--berry); margin-bottom: 1rem; }
.feat-icon svg { width: 26px; height: 26px; }
.feature h3 { font-size: 1.25rem; }
.feature p { color: var(--muted); font-size: .96rem; margin: 0; }

/* ---------- Steps ---------- */
.steps { display: grid; gap: 1.25rem; grid-template-columns: 1fr; counter-reset: none; }
.step {
  position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem 1.6rem 1.6rem 1.6rem; box-shadow: var(--shadow-sm);
}
.step-num { font-family: var(--font-display); font-size: 1.6rem; font-weight: 600; color: var(--gold); display: block; margin-bottom: .35rem; }
.step h3 { font-size: 1.25rem; margin-bottom: .25em; }
.step p { color: var(--muted); font-size: .95rem; margin: 0; }

/* ---------- Quotes ---------- */
.quotes { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
.quote {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.75rem; box-shadow: var(--shadow-sm); margin: 0;
}
.quote .stars { font-size: 1rem; display: block; margin-bottom: .75rem; }
.quote blockquote { margin: 0 0 1rem; font-family: var(--font-display); font-size: 1.15rem; line-height: 1.5; color: var(--ink); font-style: italic; }
.quote figcaption { font-weight: 600; color: var(--berry); font-size: .92rem; }

/* ---------- Standort ---------- */
.loc-grid { display: grid; gap: clamp(1.75rem, 5vw, 3rem); align-items: center; }
.loc-info h2 { font-size: clamp(1.9rem, 5vw, 2.7rem); }
.loc-address { font-style: normal; font-size: 1.1rem; color: var(--ink); margin-bottom: 1.5rem; line-height: 1.7; }
.hours { width: 100%; border-collapse: collapse; margin-bottom: 1.75rem; }
.hours th, .hours td { text-align: left; padding: .7rem 0; border-bottom: 1px solid var(--line); font-weight: 500; }
.hours th { color: var(--ink); font-family: var(--font-body); }
.hours td { color: var(--muted); text-align: right; font-variant-numeric: tabular-nums; }
.loc-map { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--line); }
.loc-map img { width: 100%; display: block; }
.map-pin { position: absolute; inset: 0; display: none; }

/* ---------- Contact ---------- */
.section-contact { background: linear-gradient(180deg, #2B1B26 0%, #3A2431 100%); color: #F3E9E4; }
.section-contact .eyebrow { color: var(--gold-soft); }
.section-contact .eyebrow .rule { background: var(--gold-soft); }
.section-contact h2 { color: #fff; font-size: clamp(2rem, 5vw, 2.9rem); }
.contact-grid { display: grid; gap: clamp(2rem, 6vw, 3.5rem); align-items: start; }
.contact-intro p { color: #D9C7CD; }
.contact-list { display: grid; gap: 1rem; margin-top: 1.5rem; }
.contact-list li { display: flex; align-items: center; gap: .85rem; color: #EADFDA; font-size: .98rem; }
.contact-list .ci { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 11px; background: rgba(201,154,84,.16); color: var(--gold-soft); flex: none; }
.contact-list .ci svg { width: 20px; height: 20px; }
.placeholder-inline { font-style: italic; color: #C9A9B4; }

.contact-form { background: var(--surface); border-radius: var(--radius-lg); padding: clamp(1.5rem, 4vw, 2.25rem); box-shadow: var(--shadow-lg); color: var(--ink-soft); }
.field { margin-bottom: 1.1rem; }
.field-row { display: grid; gap: 1.1rem; }
.field label { display: block; font-weight: 600; font-size: .9rem; color: var(--ink); margin-bottom: .4rem; }
.req { color: var(--berry); }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; color: var(--ink); background: #FCFAF9;
  border: 1px solid var(--line-strong); border-radius: var(--radius-sm);
  padding: .8rem .95rem; min-height: 48px; transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--berry); box-shadow: 0 0 0 3px rgba(142,44,85,.14); }
.field input.invalid, .field textarea.invalid, .field.field-consent.invalid { border-color: #C0392B; }
.err { display: block; color: #C0392B; font-size: .82rem; margin-top: .35rem; min-height: 0; }

.field-consent { margin-top: .25rem; }
.consent { display: flex; align-items: flex-start; gap: .7rem; font-weight: 400; font-size: .9rem; color: var(--muted); cursor: pointer; }
.consent input { width: 22px; height: 22px; min-height: 22px; flex: none; accent-color: var(--berry); margin-top: 1px; }
.consent a { text-decoration: underline; }

.form-status { margin: 1rem 0 0; font-size: .95rem; font-weight: 600; min-height: 1.2em; }
.form-status.ok { color: #1E7D4F; }
.form-status.bad { color: #C0392B; }
.form-note { margin: 1rem 0 0; font-size: .78rem; color: var(--muted); }

/* ---------- Footer ---------- */
.site-footer { background: #21131C; color: #C9B9C0; padding-top: clamp(3rem, 7vw, 4.5rem); }
.footer-top { display: grid; gap: 2.5rem; padding-bottom: 2.5rem; }
.footer-brand .brand-mark { margin-bottom: .85rem; }
.footer-name { font-family: var(--font-display); font-size: 1.4rem; color: #fff; margin: 0; }
.footer-tag { font-size: .88rem; color: #A38F98; margin: .25rem 0 0; }
.footer-nav { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem 1.5rem; }
.footer-nav h4 { font-family: var(--font-body); font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-soft); margin: 0 0 .9rem; }
.footer-nav a { display: block; color: #C9B9C0; font-size: .95rem; padding: .3rem 0; }
.footer-nav a:hover { color: #fff; }
.social { display: flex; gap: .6rem; }
.social a { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 11px; border: 1px solid rgba(255,255,255,.14); color: #C9B9C0; padding: 0; }
.social a:hover { color: #fff; border-color: var(--gold-soft); background: rgba(201,154,84,.12); }
.social svg { width: 20px; height: 20px; }

.footer-bottom {
  display: flex; flex-direction: column; align-items: center; gap: .6rem; text-align: center;
  border-top: 1px solid rgba(255,255,255,.10); padding-block: 1.5rem 2rem; margin-top: .5rem;
}
.copyright { margin: 0; font-size: .82rem; color: #8F7C85; }
.powered { margin: 0; font-size: .85rem; color: #8F7C85; }
.powered a { color: #22b8e0; font-weight: 600; }
.powered a:hover { text-decoration: underline; }

/* ---------- Legal pages ---------- */
.legal h1 { font-size: clamp(2.2rem, 6vw, 3.2rem); margin-bottom: .5em; }
.legal h2 { font-size: 1.3rem; margin-top: 2rem; }
.legal p { color: var(--ink-soft); max-width: 70ch; }
.legal-note { background: var(--blush); border: 1px solid var(--line); border-left: 4px solid var(--gold); border-radius: var(--radius-sm); padding: 1rem 1.25rem; font-size: .95rem; color: var(--ink-soft); }
.ph { color: var(--berry); background: rgba(142,44,85,.08); border-radius: 6px; padding: .05em .4em; font-style: italic; }
.legal-back { margin-top: 2.5rem; font-weight: 600; }

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: none; }

/* =========================================================
   Breakpoints
   ========================================================= */
@media (min-width: 600px) {
  .trust-inner { grid-template-columns: repeat(4, 1fr); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .quotes { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .field-row { grid-template-columns: 1fr 1fr; }
  .hero-actions .btn { flex: 0 0 auto; }
}

@media (min-width: 900px) {
  .nav-desktop { display: flex; }
  .header-cta { display: block; }
  .burger { display: none; }
  .mobile-nav, .nav-backdrop { display: none !important; }

  .hero-grid { grid-template-columns: 1.05fr 1fr; }
  .about-grid { grid-template-columns: 1fr 1.05fr; }
  .feature-grid { grid-template-columns: repeat(4, 1fr); }
  .steps { grid-template-columns: repeat(4, 1fr); }
  .loc-grid { grid-template-columns: 1.1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr 1.1fr; }

  .footer-top { grid-template-columns: 1.2fr 3fr; }
  .footer-nav { grid-template-columns: repeat(4, 1fr); }
  .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}

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

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  .btn:hover, .team-card:hover, .feature:hover { transform: none; }
}
