/* ==========================================================================
   DuraVerde J&N Roofing and Construction
   Palette + type built up from the real logo (charcoal #4B4B4D, stone #A09FA4,
   green #0F9347, lime #85C240) and their real Tailwind "verde" scale.
   ========================================================================== */

/* --- defensive preamble ------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; min-width: 0; }
html { scroll-padding-top: calc(var(--nav-h) + 1rem); }
img, svg, video, iframe, canvas, table { display: block; max-width: 100%; }
p, li, h1, h2, h3, h4, blockquote, td, dd, dt { overflow-wrap: anywhere; }

:root {
  /* brand — refined from their real assets */
  --verde:        #2B7B3E;   /* their verde-600, the true brand primary */
  --verde-deep:   #1B5730;
  --verde-dark:   #12331F;
  --lime:         #85C240;   /* logo accent, used sparingly */
  --ink:          #14181A;
  --slate:        #3B4145;
  --stone:        #8A8B90;
  --bone:         #F5F2EB;   /* warm paper, never pure white */
  --bone-2:       #EAE5DA;
  --bone-3:       #DED7C8;
  --white:        #FFFDF9;

  --nav-h: 74px;
  --edge: clamp(1.15rem, 5vw, 4.5rem);
  --maxw: 1240px;

  --ff-display: 'Anton', 'Haettenschweiler', 'Arial Narrow Bold', sans-serif;
  --ff-body: 'Sora', ui-sans-serif, sans-serif;

  --shadow-sm: 0 1px 2px rgba(20,24,26,.06), 0 2px 8px rgba(20,24,26,.05);
  --shadow-md: 0 8px 24px -8px rgba(20,24,26,.18), 0 2px 6px rgba(20,24,26,.06);
  --shadow-lg: 0 28px 60px -22px rgba(20,24,26,.42);

  /* staggered shingle-course texture — the gable motif from their logo */
  --shingle-light: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='72' height='36'%3E%3Cg fill='none' stroke='%2314181A' stroke-opacity='.07' stroke-width='1'%3E%3Cpath d='M0 17.5h72M0 35.5h72'/%3E%3Cpath d='M.5 0v18M36.5 0v18M71.5 0v18'/%3E%3Cpath d='M18.5 18v18M54.5 18v18'/%3E%3C/g%3E%3C/svg%3E");
  --shingle-dark: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='72' height='36'%3E%3Cg fill='none' stroke='%23FFFFFF' stroke-opacity='.07' stroke-width='1'%3E%3Cpath d='M0 17.5h72M0 35.5h72'/%3E%3Cpath d='M.5 0v18M36.5 0v18M71.5 0v18'/%3E%3Cpath d='M18.5 18v18M54.5 18v18'/%3E%3C/g%3E%3C/svg%3E");
}

html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bone);
  color: var(--ink);
  font-family: var(--ff-body);
  font-size: clamp(.95rem, .9rem + .2vw, 1.0625rem);
  line-height: 1.65;
  font-weight: 350;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .display {
  font-family: var(--ff-display);
  font-weight: 400;
  line-height: .92;
  letter-spacing: .012em;
  text-transform: uppercase;
  margin: 0;
}

a { color: inherit; }
.wrap { width: min(100% - var(--edge) * 2, var(--maxw)); margin-inline: auto; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* --- eyebrow / section heads -------------------------------------------- */
.eyebrow {
  font-family: var(--ff-body);
  font-size: .715rem; font-weight: 600;
  letter-spacing: .19em; text-transform: uppercase;
  color: var(--verde);
  display: flex; align-items: center; gap: .6rem;
  margin: 0 0 1.05rem;
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px; background: var(--lime); flex: none;
}
.sec-head { max-width: 46ch; margin-bottom: clamp(2rem, 4vw, 3.25rem); }
.sec-head h2 { font-size: clamp(1.9rem, 1.2rem + 3.1vw, 3.5rem); }
.sec-head p { color: var(--slate); margin: 1.05rem 0 0; font-size: 1.02rem; }

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

/* --- buttons ------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--ff-body); font-size: .875rem; font-weight: 600;
  letter-spacing: .045em; text-transform: uppercase; text-decoration: none;
  padding: .95rem 1.6rem; border: 1.5px solid transparent; border-radius: 2px;
  cursor: pointer; transition: transform .18s ease, background-color .18s ease,
    color .18s ease, border-color .18s ease, box-shadow .18s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--verde); color: var(--white);
  box-shadow: inset 0 1px 0 rgba(133,194,64,.42), var(--shadow-md);
}
.btn-primary:hover { background: var(--verde-deep); transform: translateY(-2px); }
.btn-ghost { border-color: rgba(20,24,26,.24); color: var(--ink); background: transparent; }
.btn-ghost:hover { border-color: var(--ink); background: rgba(20,24,26,.05); transform: translateY(-2px); }
.on-dark .btn-ghost, .btn-ghost.inv { border-color: rgba(255,255,255,.34); color: var(--white); }
.on-dark .btn-ghost:hover, .btn-ghost.inv:hover { border-color: var(--white); background: rgba(255,255,255,.1); }

/* --- nav ----------------------------------------------------------------- */
.nav {
  position: sticky; top: 0; z-index: 60; height: var(--nav-h);
  background: rgba(245,242,235,.92);
  backdrop-filter: saturate(1.6) blur(14px);
  -webkit-backdrop-filter: saturate(1.6) blur(14px);
  border-bottom: 1px solid rgba(20,24,26,.09);
}
.nav-in { height: 100%; display: flex; align-items: center; gap: 1.5rem; }
.brand { display: flex; align-items: center; gap: .62rem; text-decoration: none; margin-right: auto; }
.brand img { width: 40px; height: auto; flex: none; }
.brand-txt { display: flex; flex-direction: column; line-height: 1; }
.brand-txt b {
  font-family: var(--ff-display); font-weight: 400;
  font-size: 1.32rem; letter-spacing: .015em; color: var(--ink); text-transform: uppercase;
}
.brand-txt span {
  font-size: .565rem; font-weight: 600; letter-spacing: .28em;
  text-transform: uppercase; color: var(--verde); margin-top: .21rem;
}
.nav-links { display: flex; align-items: center; gap: 1.9rem; }
.nav-links a {
  font-size: .795rem; font-weight: 500; letter-spacing: .07em;
  text-transform: uppercase; text-decoration: none; color: var(--slate);
  position: relative; padding-block: .3rem; transition: color .18s ease;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1.5px; width: 0;
  background: var(--lime); transition: width .22s ease;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 100%; }
.nav-tel {
  font-size: .82rem; font-weight: 600; text-decoration: none; color: var(--ink);
  letter-spacing: .01em; white-space: nowrap;
}
.nav-cta { padding: .72rem 1.2rem; font-size: .76rem; }
.burger {
  display: none; width: 44px; height: 44px; border: 1px solid rgba(20,24,26,.2);
  border-radius: 2px; background: transparent; cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.burger span { display: block; width: 19px; height: 1.5px; background: var(--ink); }

.mobile-menu {
  display: none;
  position: fixed; inset: var(--nav-h) 0 0; z-index: 55;
  background: var(--bone); padding: 1.75rem var(--edge) 2.5rem;
  flex-direction: column; gap: .3rem; overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--ff-display); font-size: 1.72rem; text-transform: uppercase;
  text-decoration: none; color: var(--ink); padding-block: .62rem;
  border-bottom: 1px solid rgba(20,24,26,.09);
}
.mobile-menu .btn { margin-top: 1.5rem; font-family: var(--ff-body); font-size: .875rem; }

/* --- hero ---------------------------------------------------------------- */
.hero {
  container-type: inline-size;
  position: relative;
  min-height: calc(100svh - var(--nav-h));
  display: grid; align-items: center;
  padding-block: clamp(1.5rem, 3vh, 3rem);
  background:
    radial-gradient(120% 90% at 8% 0%, rgba(43,123,62,.09) 0%, transparent 58%),
    var(--shingle-light), var(--bone);
  overflow: hidden;
}
/* NB: no `width: 100%` here — it would override .wrap (same specificity, later
   in the file) and blow the hero out to the full viewport with no side padding. */
.hero-in {
  display: grid; grid-template-columns: 1.03fr .97fr;
  gap: clamp(1.75rem, 4cqi, 4rem); align-items: center;
}
.hero-copy { display: flex; flex-direction: column; }
.hero h1 {
  font-size: clamp(2.1rem, 9.1cqi, 4.9rem);
  letter-spacing: .004em;
  margin-bottom: clamp(.75rem, 1.7cqi, 1.35rem);
}
.hero h1 em { font-style: normal; color: var(--verde); display: block; }
.hero-sub {
  font-size: clamp(.92rem, 1.62cqi, 1.09rem);
  color: var(--slate); max-width: 46ch; margin: 0 0 clamp(1.15rem, 2.4cqi, 2rem);
  line-height: 1.62;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: .7rem; margin-bottom: clamp(1.05rem, 2.3cqi, 1.9rem); }
.hero-proof {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: .5rem clamp(.7rem, 1.6cqi, 1.35rem);
  padding-top: clamp(.85rem, 1.9cqi, 1.4rem);
  border-top: 1px solid rgba(20,24,26,.13);
  font-size: clamp(.7rem, 1.16cqi, .795rem); font-weight: 600;
  letter-spacing: .085em; text-transform: uppercase; color: var(--slate);
}
.hero-proof i { font-style: normal; display: inline-flex; align-items: center; gap: .42rem; }
.hero-proof b { color: var(--verde); font-weight: 700; }
.dot { width: 4px; height: 4px; border-radius: 50%; background: var(--bone-3); flex: none; }

.hero-media { position: relative; }
.hero-shot {
  position: relative; overflow: hidden; border-radius: 3px;
  box-shadow: var(--shadow-lg); background: var(--bone-2);
  aspect-ratio: 4 / 3;
}
.hero-shot img { width: 100%; height: 100%; object-fit: cover; }
.hero-shot picture { display: block; width: 100%; height: 100%; }
/* gable notch echoing the logo roofline */
.hero-shot::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: clamp(54px, 13%, 88px);
  aspect-ratio: 1; background: var(--verde);
  clip-path: polygon(0 100%, 0 42%, 50% 0, 100% 42%, 100% 100%);
  opacity: .96;
}
.hero-badge {
  position: absolute; right: clamp(-.4rem, -1cqi, 0rem); bottom: clamp(-1rem, -2.4cqi, -.5rem);
  background: var(--ink); color: var(--white);
  padding: clamp(.75rem, 1.7cqi, 1.15rem) clamp(1rem, 2.2cqi, 1.5rem);
  border-radius: 2px; box-shadow: var(--shadow-lg); max-width: 60%;
}
.hero-badge b {
  display: block; font-family: var(--ff-display); font-size: clamp(1.35rem, 3.4cqi, 2.15rem);
  line-height: 1; color: var(--lime);
}
.hero-badge span {
  display: block; font-size: clamp(.58rem, 1.07cqi, .705rem); font-weight: 600;
  letter-spacing: .15em; text-transform: uppercase; color: rgba(255,255,255,.72);
  margin-top: .32rem;
}

/* --- marquee strip ------------------------------------------------------- */
.strip {
  background: var(--ink); color: rgba(255,255,255,.9);
  padding-block: .95rem; overflow: hidden; border-block: 1px solid rgba(255,255,255,.08);
}
.strip-track {
  display: flex; gap: 2.6rem; width: max-content;
  animation: slide 46s linear infinite;
  font-size: .755rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
}
.strip-track span { display: inline-flex; align-items: center; gap: 2.6rem; white-space: nowrap; }
.strip-track span::after { content: "◆"; color: var(--verde); font-size: .55rem; letter-spacing: 0; }
@keyframes slide { to { transform: translateX(-50%); } }

/* --- services ------------------------------------------------------------ */
.svc-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 268px), 1fr));
  gap: 1px; background: rgba(20,24,26,.11);
  border: 1px solid rgba(20,24,26,.11);
}
.svc {
  background: var(--bone); padding: clamp(1.6rem, 2.7vw, 2.4rem);
  display: flex; flex-direction: column; gap: .7rem;
  transition: background-color .22s ease, transform .22s ease;
  position: relative;
}
.svc:hover { background: var(--white); }
.svc-n {
  font-family: var(--ff-display); font-size: .82rem; color: var(--stone);
  letter-spacing: .1em;
}
.svc h3 { font-size: clamp(1.15rem, 1.7vw, 1.42rem); }
.svc p { margin: 0; color: var(--slate); font-size: .925rem; line-height: 1.62; }
.svc ul { margin: .2rem 0 0; padding: 0; list-style: none; display: grid; gap: .34rem; }
.svc li { font-size: .845rem; color: var(--slate); display: flex; gap: .5rem; align-items: flex-start; }
.svc li::before { content: ""; width: 6px; height: 6px; margin-top: .52rem; flex: none; background: var(--lime); }
.svc .svc-link {
  margin-top: auto; padding-top: 1.1rem; font-size: .775rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase; color: var(--verde);
  text-decoration: none; display: inline-flex; align-items: center; gap: .45rem;
}
.svc .svc-link:hover { gap: .8rem; }
.svc .svc-link::after { content: "→"; transition: transform .2s ease; }

/* --- systems ------------------------------------------------------------- */
.systems { background: var(--bone-2); }
.sys-list { display: flex; flex-wrap: wrap; gap: .6rem; }
.sys-list li {
  list-style: none; padding: .68rem 1.15rem; background: var(--bone);
  border: 1px solid rgba(20,24,26,.13); border-radius: 2px;
  font-size: .845rem; font-weight: 500; color: var(--slate);
}
.sys-list li b { color: var(--ink); font-weight: 600; }

/* --- gallery ------------------------------------------------------------- */
.gal-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
  gap: clamp(.6rem, 1.2vw, 1rem);
}
.gal-item {
  position: relative; overflow: hidden; border-radius: 3px;
  aspect-ratio: 4 / 3; background: var(--bone-2); box-shadow: var(--shadow-sm);
}
.gal-item.tall { aspect-ratio: 3 / 4; }
.gal-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s cubic-bezier(.22,.61,.36,1);
}
.gal-item:hover img { transform: scale(1.055); }
.gal-cap {
  position: absolute; inset: auto 0 0 0; padding: 1.5rem .95rem .8rem;
  background: linear-gradient(to top, rgba(20,24,26,.82), transparent);
  color: var(--white); font-size: .735rem; font-weight: 600;
  letter-spacing: .07em; text-transform: uppercase;
}
.gal-note { margin-top: 1.5rem; font-size: .85rem; color: var(--stone); }

/* --- stats --------------------------------------------------------------- */
.stats { background: var(--ink); color: var(--white); background-image: var(--shingle-dark); }
.stats .sec-head h2 { color: var(--white); }
.stats .sec-head p { color: rgba(255,255,255,.68); }
.stat-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 190px), 1fr));
  gap: 1px; background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.14);
}
.stat { background: var(--ink); padding: clamp(1.5rem, 2.6vw, 2.2rem); }
.stat b {
  display: block; font-family: var(--ff-display);
  font-size: clamp(2.3rem, 4.4vw, 3.5rem); line-height: 1; color: var(--lime);
}
.stat span {
  display: block; margin-top: .6rem; font-size: .795rem; font-weight: 500;
  color: rgba(255,255,255,.74); line-height: 1.5;
}

/* --- reviews ------------------------------------------------------------- */
.rev-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: clamp(1rem, 2vw, 1.6rem);
}
.rev {
  background: var(--white); border: 1px solid rgba(20,24,26,.1); border-radius: 3px;
  padding: clamp(1.5rem, 2.5vw, 2.1rem); display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm);
}
.stars { color: var(--lime); font-size: .95rem; letter-spacing: .16em; margin-bottom: 1rem; }
.rev blockquote { margin: 0 0 1.4rem; font-size: .945rem; line-height: 1.72; color: var(--slate); }
.rev footer { margin-top: auto; padding-top: 1.1rem; border-top: 1px solid rgba(20,24,26,.1); }
.rev cite { font-style: normal; font-weight: 600; font-size: .92rem; color: var(--ink); display: block; }
.rev .src { font-size: .735rem; color: var(--stone); letter-spacing: .04em; margin-top: .22rem; display: block; }

/* --- area / visit -------------------------------------------------------- */
.area { background: var(--bone-2); }
.area-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.city-list { display: flex; flex-wrap: wrap; gap: .5rem; margin: 0; padding: 0; }
.city-list li {
  list-style: none; font-size: .855rem; color: var(--slate);
  padding: .5rem .9rem; background: var(--bone); border: 1px solid rgba(20,24,26,.11); border-radius: 2px;
}
.county { margin-top: 1.6rem; font-size: .9rem; color: var(--slate); }
.county b { color: var(--ink); }
.info-card {
  background: var(--ink); color: var(--white); padding: clamp(1.6rem, 3vw, 2.3rem);
  border-radius: 3px; box-shadow: var(--shadow-lg); background-image: var(--shingle-dark);
}
.info-card h3 { font-size: 1.35rem; margin-bottom: 1.3rem; color: var(--white); }
.info-row { display: flex; gap: .9rem; padding-block: .85rem; border-top: 1px solid rgba(255,255,255,.13); }
.info-row:first-of-type { border-top: 0; padding-top: 0; }
.info-row dt {
  font-size: .68rem; font-weight: 600; letter-spacing: .13em; text-transform: uppercase;
  color: rgba(255,255,255,.5); width: 74px; flex: none; padding-top: .18rem;
}
.info-row dd { margin: 0; font-size: .93rem; color: rgba(255,255,255,.93); }
.info-row dd a { color: var(--lime); text-decoration: none; }
.info-row dd a:hover { text-decoration: underline; }
.info-row dd small { display: block; color: rgba(255,255,255,.55); font-size: .78rem; margin-top: .2rem; }
.info-card .btn { width: 100%; margin-top: 1.5rem; }

/* --- CTA band ------------------------------------------------------------ */
.cta-band {
  background: var(--verde-dark); color: var(--white);
  background-image:
    radial-gradient(100% 120% at 88% 10%, rgba(133,194,64,.15) 0%, transparent 60%),
    var(--shingle-dark);
  text-align: center;
}
.cta-band h2 { font-size: clamp(2rem, 1.2rem + 3.6vw, 4rem); margin-bottom: 1.15rem; }
.cta-band p { max-width: 52ch; margin: 0 auto 2.1rem; color: rgba(255,255,255,.8); font-size: 1.04rem; }
.cta-row { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; }
.cta-band .btn-primary { background: var(--lime); color: var(--verde-dark); box-shadow: var(--shadow-md); }
.cta-band .btn-primary:hover { background: var(--white); color: var(--verde-dark); }

/* --- footer -------------------------------------------------------------- */
.foot { background: var(--ink); color: rgba(255,255,255,.62); padding-block: clamp(2.75rem, 5vw, 4.25rem) 2rem; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: clamp(1.75rem, 4vw, 3.5rem); }
.foot .brand-txt b { color: var(--white); }
.foot-blurb { margin: 1.2rem 0 1.5rem; font-size: .89rem; line-height: 1.68; max-width: 38ch; }
.foot h4 {
  font-size: .715rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: var(--white); margin: 0 0 1.05rem;
}
.foot ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .58rem; }
.foot a { color: rgba(255,255,255,.62); text-decoration: none; font-size: .89rem; }
.foot a:hover { color: var(--lime); }
.socials { display: flex; gap: .55rem; }
.socials a {
  width: 38px; height: 38px; border: 1px solid rgba(255,255,255,.2); border-radius: 2px;
  display: grid; place-items: center; transition: border-color .18s, background-color .18s;
}
.socials a:hover { border-color: var(--lime); background: rgba(133,194,64,.13); }
.socials svg { width: 16px; height: 16px; fill: currentColor; }
.foot-btm {
  margin-top: clamp(2rem, 4vw, 3rem); padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.11);
  display: flex; flex-wrap: wrap; gap: .8rem 1.5rem; justify-content: space-between;
  font-size: .78rem; color: rgba(255,255,255,.42);
}

/* --- contact page -------------------------------------------------------- */
.page-head {
  background: var(--ink); color: var(--white); background-image: var(--shingle-dark);
  padding-block: clamp(3rem, 6vw, 5.5rem);
}
.page-head h1 { font-size: clamp(2.15rem, 1.3rem + 4vw, 4.25rem); margin-bottom: 1.05rem; }
.page-head p { color: rgba(255,255,255,.74); max-width: 54ch; margin: 0; font-size: 1.04rem; }
.page-head .eyebrow { color: var(--lime); }

.contact-grid { display: grid; grid-template-columns: 1.12fr .88fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.form-card {
  background: var(--white); border: 1px solid rgba(20,24,26,.12); border-radius: 3px;
  padding: clamp(1.5rem, 3.2vw, 2.6rem); box-shadow: var(--shadow-md);
}
.field { margin-bottom: 1.15rem; }
.field label {
  display: block; font-size: .715rem; font-weight: 600; letter-spacing: .13em;
  text-transform: uppercase; color: var(--slate); margin-bottom: .5rem;
}
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--ff-body); font-size: .95rem; color: var(--ink);
  background: var(--bone); border: 1px solid rgba(20,24,26,.16); border-radius: 2px;
  padding: .82rem .95rem; transition: border-color .18s ease, box-shadow .18s ease, background-color .18s;
}
.field textarea { min-height: 128px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--verde); background: var(--white);
  box-shadow: 0 0 0 3px rgba(43,123,62,.13);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.15rem; }
.form-card .btn { width: 100%; margin-top: .35rem; }
.form-card .btn[disabled] { opacity: 1; background: var(--verde-deep); cursor: default; transform: none; }
.form-note { margin: 1.05rem 0 0; font-size: .785rem; color: var(--stone); line-height: 1.6; text-align: center; }
.form-status {
  margin: 1.15rem 0 0; padding: 1.05rem 1.15rem; border-radius: 2px; font-size: .92rem; line-height: 1.6;
}
.form-status.ok { background: rgba(43,123,62,.09); border: 1px solid rgba(43,123,62,.3); color: var(--verde-deep); }
.form-status.err { background: rgba(180,60,40,.07); border: 1px solid rgba(180,60,40,.28); color: #8E3320; }
.form-status.ok b { display: block; font-family: var(--ff-display); font-size: 1.3rem; margin-bottom: .3rem; text-transform: uppercase; }
.turnstile-box { margin-bottom: 1.15rem; }

.contact-aside { display: grid; gap: 1rem; }
.c-card {
  background: var(--bone-2); border: 1px solid rgba(20,24,26,.11);
  border-radius: 3px; padding: clamp(1.35rem, 2.6vw, 1.9rem);
}
.c-card h3 { font-size: 1.12rem; margin-bottom: .95rem; }
.c-big {
  font-family: var(--ff-display); font-size: clamp(1.6rem, 3.4vw, 2.15rem);
  color: var(--verde); text-decoration: none; display: block; line-height: 1;
}
.c-big:hover { color: var(--verde-deep); }
.c-card p { margin: .7rem 0 0; font-size: .885rem; color: var(--slate); }
.c-card ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }
.c-card li { font-size: .885rem; color: var(--slate); display: flex; justify-content: space-between; gap: 1rem; }
.c-card li b { color: var(--ink); font-weight: 600; }
.c-card a { color: var(--verde); }

/* --- reveal (below the fold only) --------------------------------------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s cubic-bezier(.22,.61,.36,1); }
.reveal.in { opacity: 1; transform: none; }

/* --- responsive ---------------------------------------------------------- */
@media (max-width: 1040px) {
  .nav-links, .nav-tel { display: none; }
  .burger { display: flex; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .area-grid, .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 899px) {
  :root { --nav-h: 64px; }
  .hero { min-height: calc(100svh - var(--nav-h)); align-items: stretch; }
  .hero-in {
    grid-template-columns: 1fr; grid-template-rows: 1fr auto;
    gap: clamp(1rem, 3.2cqi, 1.6rem); align-content: center;
  }
  .hero-copy { justify-content: center; }
  .hero h1 { font-size: clamp(1.85rem, 10.2cqi, 3.1rem); }
  .hero-media { min-height: 0; }
  .hero-shot { aspect-ratio: auto; height: clamp(120px, 23svh, 210px); }
  .hero-shot::after { width: clamp(44px, 11%, 66px); }
  .hero-badge { display: none; }
}
@media (max-width: 560px) {
  .foot-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .hero-cta .btn { flex: 1 1 100%; }
  .cta-row .btn { flex: 1 1 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important; animation-iteration-count: 1 !important;
    transition-duration: .001ms !important; scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}
