/* ==========================================================================
   Palomares Escrow — site styles
   Brand: navy #193854 + gold #daa423. System font stack, no web-font request.
   ========================================================================== */

:root {
  --navy:        #193854;
  --navy-dark:   #142f47;
  --navy-light:  #315a7e;
  --gold:        #daa423;
  --gold-dark:   #bd8d1a;
  --ink:         #17233a;
  --body:        #47566b;
  --muted:       #6b7688;
  --line:        #e4e9f1;
  --bg:          #ffffff;
  --bg-alt:      #f4f7fb;
  --white:       #ffffff;

  --font: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 1px 2px rgba(20, 47, 71, .06), 0 8px 28px rgba(20, 47, 71, .08);
  --shadow-lg: 0 20px 55px rgba(20, 47, 71, .16);
  --container: 1180px;
  --gutter: 20px;
  --header-h: 76px;
}

/* --- reset ------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--body);
  background: var(--bg);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy-light); text-decoration: none; }
a:hover { color: var(--gold-dark); }
h1, h2, h3, h4 { color: var(--ink); line-height: 1.15; font-weight: 700; letter-spacing: -.02em; }
h2 { font-size: clamp(1.9rem, 1.2rem + 2.4vw, 2.75rem); }
h3 { font-size: 1.3rem; letter-spacing: -.01em; }
p { color: var(--body); }
ul { list-style: none; padding: 0; }

/* --- layout helpers ---------------------------------------------------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(56px, 4vw + 40px, 100px); }
.section--alt { background: var(--bg-alt); }
.section--navy { background: var(--navy); color: #d7e2ee; }
.section--navy h1, .section--navy h2, .section--navy h3, .section--navy h4 { color: #fff; }
.section--navy .lead { color: #c9d6e4; }
.eyebrow {
  display: inline-block; font-size: .82rem; font-weight: 700; letter-spacing: .13em;
  text-transform: uppercase; color: var(--gold-dark); margin-bottom: 14px;
}
.section--navy .eyebrow { color: var(--gold); }
.lead { font-size: 1.12rem; color: var(--body); max-width: 62ch; }
.section-head { max-width: 720px; margin-bottom: 48px; }
.section-head.center { margin-inline: auto; text-align: center; }

/* --- buttons ----------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-weight: 600; font-size: 1rem; line-height: 1;
  padding: 14px 24px; border-radius: var(--radius-sm);
  border: 1.5px solid transparent; cursor: pointer;
  transition: transform .12s ease, background .18s ease, color .18s ease, border-color .18s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--gold { background: var(--gold); color: var(--navy-dark); }
.btn--gold:hover { background: var(--gold-dark); color: #fff; }
.btn--navy { background: var(--navy); color: #fff; }
.btn--navy:hover { background: var(--navy-dark); color: #fff; }
.btn--ghost { background: transparent; color: var(--navy); border-color: #c9d5e4; }
.btn--ghost:hover { border-color: var(--navy); color: var(--navy); }
.btn--light { background: #fff; color: var(--navy); }
.btn--light:hover { background: #eef3f9; color: var(--navy-dark); }
.btn svg { width: 18px; height: 18px; }

/* --- header / nav ------------------------------------------------------ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: var(--header-h); }
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { height: 40px; width: auto; }
.brand .brand-name { display: none; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { color: var(--ink); font-weight: 500; font-size: .98rem; }
.nav-links a:hover { color: var(--navy-light); }
.nav-actions { display: flex; align-items: center; gap: 14px; }
.nav-phone { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: var(--navy); }
.nav-phone svg { width: 18px; height: 18px; color: var(--gold-dark); }

/* mobile nav via <details>, no JS */
.nav-toggle { display: none; }
.nav-toggle > summary {
  list-style: none; cursor: pointer; width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 8px; border: 1px solid var(--line); color: var(--navy);
}
.nav-toggle > summary::-webkit-details-marker { display: none; }
.nav-toggle > summary svg { width: 24px; height: 24px; }

@media (max-width: 900px) {
  .nav-links, .nav-actions .nav-phone, .nav-actions .btn--ghost { display: none; }
  .nav-toggle { display: block; }
  .nav-drawer {
    position: absolute; top: var(--header-h); left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow); padding: 16px var(--gutter) 24px;
    display: flex; flex-direction: column; gap: 4px;
  }
  .nav-drawer a { padding: 13px 6px; color: var(--ink); font-weight: 600; font-size: 1.05rem; border-bottom: 1px solid var(--line); }
  .nav-drawer a:last-child { border-bottom: 0; }
  .nav-drawer .btn { margin-top: 14px; justify-content: center; }
  .nav-drawer .drawer-phone { color: var(--navy); }
}
@media (min-width: 901px) { .nav-drawer { display: none; } }

/* --- mega-menu --------------------------------------------------------- */
.nav-mega { display: inline-flex; }
.mega-toggle { display: inline-flex; align-items: center; gap: 5px; color: var(--ink); font-weight: 500; font-size: .98rem; cursor: pointer; }
.mega-toggle:hover { color: var(--navy-light); }
.mega-toggle .chev { width: 15px; height: 15px; transition: transform .2s ease; }
.nav-mega:hover .mega-toggle .chev,
.nav-mega:focus-within .mega-toggle .chev { transform: rotate(180deg); }

.mega-panel {
  position: absolute; left: 0; right: 0; top: 100%;
  background: var(--navy); color: #d7e2ee;
  border-top: 3px solid var(--gold);
  box-shadow: 0 26px 50px rgba(20, 47, 71, .3);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
  z-index: 90;
}
.nav-mega:hover .mega-panel,
.nav-mega:focus-within .mega-panel { opacity: 1; visibility: visible; transform: translateY(0); }
.mega-grid { display: grid; grid-template-columns: repeat(3, 1fr) .82fr; gap: 30px; padding-block: 32px 38px; align-items: start; }
.mega-col h4 { color: var(--gold); font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 14px; }
.mega-item { display: flex; gap: 12px; align-items: flex-start; padding: 9px 10px; margin: 0 -10px; border-radius: 10px; }
.mega-item:hover { background: rgba(255, 255, 255, .06); }
.mega-ic { flex: 0 0 auto; width: 30px; height: 30px; border-radius: 8px; background: rgba(218, 164, 35, .14); color: var(--gold); display: grid; place-items: center; }
.mega-ic svg { width: 16px; height: 16px; }
.mega-item b { display: block; color: #fff; font-size: .94rem; font-weight: 600; }
.mega-item > span > span { color: #9fb2c6; font-size: .82rem; line-height: 1.4; }
.mega-col--links { background: rgba(255, 255, 255, .04); border-radius: 12px; padding: 20px 22px 24px; }
.mega-panel .mega-link { display: block; color: #e6eef7; font-weight: 500; padding: 9px 0; font-size: .94rem; border-bottom: 1px solid rgba(255, 255, 255, .1); }
.mega-panel .mega-link:last-child { border-bottom: 0; }
.mega-panel .mega-link:hover { color: var(--gold); }

/* mobile drawer: nested services accordion */
.drawer-services { border-bottom: 1px solid var(--line); }
.drawer-services > summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; padding: 13px 6px; font-weight: 600; font-size: 1.05rem; color: var(--ink); }
.drawer-services > summary::-webkit-details-marker { display: none; }
.drawer-services .chev { width: 18px; height: 18px; transition: transform .2s ease; }
.drawer-services[open] > summary .chev { transform: rotate(180deg); }
.drawer-sub { display: flex; flex-direction: column; padding: 2px 0 10px 12px; }
.drawer-sub a { padding: 10px 6px; color: var(--gray-1, #566375); font-weight: 500; font-size: .98rem; border-bottom: 1px solid var(--line); }
.drawer-sub a:last-child { border-bottom: 0; }

/* --- hero -------------------------------------------------------------- */
.hero { position: relative; overflow: hidden; color: #fff; isolation: isolate; }
.hero-slides { position: absolute; inset: 0; z-index: -2; background: var(--navy-dark); }
.hero-slide {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  opacity: 0; animation: heroFade 32s infinite;
}
.hero-slide:nth-child(1) { background-image: url("/assets/images/hero-office.webp"); opacity: 1; animation-delay: 0s; }
.hero-slide:nth-child(2) { background-image: url("/assets/images/hero-building.webp"); animation-delay: 8s; }
.hero-slide:nth-child(3) { background-image: url("/assets/images/hero-aerial.webp"); animation-delay: 16s; }
.hero-slide:nth-child(4) { background-image: url("/assets/images/hero-exterior.webp"); animation-delay: 24s; }
@keyframes heroFade {
  0%   { opacity: 0; }
  3%   { opacity: 1; }
  22%  { opacity: 1; }
  25%  { opacity: 0; }
  100% { opacity: 0; }
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(105deg, rgba(20, 47, 71, .92) 0%, rgba(20, 47, 71, .78) 42%, rgba(25, 56, 84, .5) 100%);
}
.hero-inner { padding-block: clamp(48px, 6vw, 88px); max-width: 620px; margin-left: clamp(20px, 6vw, 96px); margin-right: auto; }
.hero h1 { color: #fff; font-size: clamp(2.3rem, 1.3rem + 4vw, 3.9rem); margin-bottom: 22px; }
.hero p { color: #dfe8f2; font-size: 1.15rem; max-width: 58ch; margin-bottom: 32px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-trust { margin-top: 30px; display: flex; align-items: center; gap: 10px; color: #cfdbe8; font-size: .95rem; }
.hero-trust svg { flex: 0 0 auto; width: 20px; height: 20px; color: var(--gold); }
.hero-trust strong { color: #fff; font-weight: 600; }

/* --- about / priority -------------------------------------------------- */
.about-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.about-media { position: relative; }
.about-media img { border-radius: var(--radius); box-shadow: var(--shadow-lg); width: 100%; }
.about-badge {
  position: absolute; left: -18px; bottom: -18px; background: var(--navy); color: #fff;
  border-radius: var(--radius); padding: 18px 22px; box-shadow: var(--shadow-lg);
}
.about-badge b { display: block; font-size: 1.9rem; color: var(--gold); line-height: 1; }
.about-badge span { font-size: .82rem; letter-spacing: .05em; text-transform: uppercase; color: #c6d3e2; }
.values { display: grid; gap: 18px; margin-top: 28px; }
.value { display: flex; gap: 15px; }
.value-icon {
  flex: 0 0 auto; width: 44px; height: 44px; border-radius: 10px;
  background: #eef3f9; color: var(--navy); display: grid; place-items: center;
}
.value-icon svg { width: 23px; height: 23px; }
.value h3 { font-size: 1.08rem; margin-bottom: 3px; }
.value p { font-size: .98rem; color: var(--muted); }

/* --- services ---------------------------------------------------------- */
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.feature-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 24px; box-shadow: var(--shadow); transition: transform .15s ease, box-shadow .15s ease;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.feature-card { color: inherit; display: flex; flex-direction: column; }
.card-more { margin-top: 16px; display: inline-flex; align-items: center; gap: 6px; color: var(--gold-dark); font-weight: 600; font-size: .92rem; }
.card-more svg { width: 16px; height: 16px; transition: transform .15s ease; }
.feature-card:hover .card-more svg { transform: translateX(3px); }
.feature-card .fi {
  width: 50px; height: 50px; border-radius: 12px; background: var(--navy);
  color: var(--gold); display: grid; place-items: center; margin-bottom: 18px;
}
.feature-card .fi svg { width: 26px; height: 26px; }
.feature-card h3 { margin-bottom: 8px; }
.feature-card p { font-size: .96rem; color: var(--muted); }

.chip-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 14px; }
.chip {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 18px 20px;
}
.chip { color: inherit; transition: transform .14s ease, border-color .18s ease, box-shadow .18s ease; }
.chip:hover { transform: translateY(-3px); border-color: #c9d5e4; box-shadow: var(--shadow); }
.chip h4 { font-size: 1.02rem; color: var(--ink); margin-bottom: 4px; }
.chip:hover h4 { color: var(--navy-light); }
.chip p { font-size: .9rem; color: var(--muted); margin: 0; }
.subhead { margin: 56px 0 6px; font-size: 1.35rem; }

/* --- CTA band ---------------------------------------------------------- */
.cta-band { text-align: center; }
.cta-band h2 { color: #fff; max-width: 18ch; margin-inline: auto; }
.cta-band p { color: #c9d6e4; max-width: 56ch; margin: 18px auto 30px; font-size: 1.1rem; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* --- testimonials ------------------------------------------------------ */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 28px; box-shadow: var(--shadow); display: flex; flex-direction: column;
}
.stars { display: flex; gap: 3px; color: var(--gold); margin-bottom: 16px; }
.stars svg { width: 20px; height: 20px; }
.review blockquote { font-size: 1.02rem; color: var(--ink); flex: 1; }
.review-by { display: flex; align-items: center; gap: 12px; margin-top: 22px; }
.review-by img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; }
.review-by b { color: var(--ink); font-size: .98rem; }
.review-by span { display: block; color: var(--muted); font-size: .86rem; }

/* --- contact ----------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
.contact-info h2 { margin-bottom: 18px; }
.contact-list { display: grid; gap: 20px; margin-top: 26px; }
.contact-item { display: flex; gap: 14px; align-items: flex-start; }
.contact-item .ci {
  flex: 0 0 auto; width: 42px; height: 42px; border-radius: 10px;
  background: #eef3f9; color: var(--navy); display: grid; place-items: center;
}
.contact-item .ci svg { width: 21px; height: 21px; }
.contact-item b { color: var(--ink); display: block; font-size: .95rem; }
.contact-item a, .contact-item span { color: var(--body); }
.contact-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(26px, 3vw, 38px); box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.field label { font-size: .88rem; font-weight: 600; color: var(--ink); }
.field input, .field textarea {
  font: inherit; font-size: .98rem; color: var(--ink);
  padding: 12px 14px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  background: #fbfcfe; transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--navy-light); box-shadow: 0 0 0 3px rgba(49, 90, 126, .12); background: #fff;
}
.field textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: .82rem; color: var(--muted); margin-top: 4px; }

/* --- service pages ----------------------------------------------------- */
.center { text-align: center; }
.svc-hero { padding-block: clamp(34px, 3vw + 20px, 56px) clamp(44px, 4vw, 72px); }
.crumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-size: .9rem; color: var(--muted); margin-bottom: 30px; }
.crumbs a { color: var(--navy-light); }
.crumbs b { color: var(--ink); font-weight: 600; }
.svc-hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.svc-hero-copy h1 { font-size: clamp(2rem, 1.2rem + 3vw, 3rem); margin-bottom: 20px; }
.svc-hero-copy p { margin-bottom: 16px; font-size: 1.05rem; }
.svc-hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; }
.svc-hero-art {
  position: relative; aspect-ratio: 4 / 3; border-radius: var(--radius);
  background: linear-gradient(150deg, var(--navy) 0%, var(--navy-light) 100%);
  box-shadow: var(--shadow-lg); display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 14px; color: #fff;
  overflow: hidden;
}
.svc-hero-art::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(120% 90% at 100% 0%, rgba(218,164,35,.28), transparent 55%);
}
.svc-art-ic { position: relative; width: 92px; height: 92px; border-radius: 22px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18); display: grid; place-items: center; color: var(--gold); }
.svc-art-ic svg { width: 46px; height: 46px; }
.svc-art-label { position: relative; font-family: var(--font); font-size: 1.3rem; font-weight: 700; letter-spacing: -.01em; }
.svc-art-since { position: relative; font-size: .82rem; color: #c6d3e2; letter-spacing: .02em; }
.svc-hero-photo { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 1 / 1; max-width: 520px; margin-left: auto; }
.svc-hero-photo img { width: 100%; height: 100%; object-fit: cover; }

.svc-tile--photo { position: relative; padding: 0; overflow: hidden; min-height: 150px; }
.svc-tile--photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.svc-tile--photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(15, 34, 52, .92) 0%, rgba(15, 34, 52, .3) 46%, rgba(15, 34, 52, .05) 100%); }
.svc-tile--photo .svc-tile-label { position: absolute; left: 0; right: 0; bottom: 0; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 8px; padding: 15px 18px; }
.svc-tile--photo .svc-tile-name { margin: 0; }
.svc-tile--photo.is-current { outline: 2px solid var(--gold); outline-offset: -2px; }

.svc-tiles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.svc-tile {
  display: flex; flex-direction: column; gap: 12px; padding: 22px 20px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius); color: #e6edf5; min-height: 132px;
  transition: transform .14s ease, background .18s ease, border-color .18s ease;
}
.svc-tile:hover { transform: translateY(-3px); background: rgba(255,255,255,.09); border-color: rgba(218,164,35,.5); color: #fff; }
.svc-tile.is-current { background: rgba(218,164,35,.14); border-color: var(--gold); }
.svc-tile-ic { width: 42px; height: 42px; border-radius: 10px; background: rgba(218,164,35,.16); color: var(--gold); display: grid; place-items: center; }
.svc-tile-ic svg { width: 22px; height: 22px; }
.svc-tile-name { font-weight: 600; font-size: 1rem; color: #fff; margin-top: auto; }
.svc-tile-arrow { color: var(--gold); }
.svc-tile-arrow svg { width: 18px; height: 18px; }

.svc-oe .eyebrow, .svc-oe h2 { }
.oe-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; margin-top: 40px; }
.oe-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 18px; box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 14px; align-items: center; }
.oe-item b { color: var(--ink); font-size: 1rem; }
.oe-item .btn { width: 100%; justify-content: center; font-size: .92rem; padding: 11px 14px; }

.svc-quote blockquote { font-size: clamp(1.3rem, 1rem + 1.4vw, 1.9rem); color: var(--ink); font-weight: 600; max-width: 20ch; margin: 18px auto; letter-spacing: -.01em; }
.svc-quote .muted { color: var(--muted); }

/* --- footer ------------------------------------------------------------ */
.site-footer { background: var(--navy-dark); color: #aab8c9; padding-block: 60px 28px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-brand img { height: 58px; width: auto; margin-bottom: 18px; }
.footer-brand p { color: #92a3b6; font-size: .95rem; max-width: 34ch; }
.footer-col h4 { color: #fff; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col a { display: block; color: #aab8c9; padding: 6px 0; font-size: .96rem; }
.footer-col a:hover { color: #fff; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a { width: 38px; height: 38px; border-radius: 9px; background: rgba(255,255,255,.08); display: grid; place-items: center; color: #cdd8e4; }
.footer-social a:hover { background: var(--gold); color: var(--navy-dark); }
.footer-social svg { width: 19px; height: 19px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; padding-top: 24px; font-size: .88rem; color: #8496aa; }
.footer-bottom a { color: #8496aa; }
.footer-bottom a:hover { color: #fff; }

/* --- responsive -------------------------------------------------------- */
@media (max-width: 980px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-media { order: -1; max-width: 520px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .chip-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .svc-hero-grid { grid-template-columns: 1fr; }
  .svc-hero-art, .svc-hero-photo { order: -1; max-width: 460px; margin-left: 0; }
  .svc-hero-art { aspect-ratio: 16 / 9; }
  .svc-tiles { grid-template-columns: repeat(3, 1fr); }
  .oe-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .feature-grid, .chip-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .about-badge { left: 12px; }
  .svc-tiles { grid-template-columns: repeat(2, 1fr); }
  .oe-grid { grid-template-columns: 1fr 1fr; }
}

/* --- motion / print ---------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-slide { animation: none; }
  .hero-slide:not(:first-child) { display: none; }
  * { transition: none !important; }
}
