/* =========================================================
   Pampered Pets Inn — "Lake Norman Suite"
   Palette: coastal-premium · lake midnight + warm sand + gold + olive
   Fonts: Fraunces (display) · Inter Tight (body) · JetBrains Mono (labels)
   ========================================================= */

:root {
  --paper:      #F5F1E9;
  --paper-2:    #EBE4D5;
  --paper-soft: #FCF9F3;
  --ink:        #122030;
  --ink-2:      #0C1720;
  --accent:     #C49A56;
  --accent-2:   #D9B476;
  --accent-soft:#EDD9AE;
  --lake:       #1D5F8A;
  --olive:      #4A6235;
  --spot:       #1D5F8A;
  --muted:      #4A5157;
  --muted-2:    #6E7480;
  --line:       rgba(18,32,48,.12);
  --line-2:     rgba(18,32,48,.06);

  --f-display: "Fraunces", Georgia, serif;
  --f-body:    "Inter Tight", "Inter", system-ui, sans-serif;
  --f-mono:    "JetBrains Mono", monospace;

  --container:        1320px;
  --container-narrow: 1040px;
  --gutter: clamp(20px, 4vw, 56px);
  --ease: cubic-bezier(.22, 1, .36, 1);
  --shadow-soft: 0 1px 2px rgba(0,0,0,.04), 0 12px 32px -16px rgba(0,0,0,.12);
  --shadow-lift: 0 2px 4px rgba(0,0,0,.06), 0 24px 48px -20px rgba(0,0,0,.18);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; min-width: 0; }
*::selection { background: var(--ink); color: var(--paper); }
html { scroll-behavior: smooth; overflow-x: hidden; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--f-body); font-size: 16px; line-height: 1.65; font-weight: 400;
  color: var(--ink); background: var(--paper); overflow-x: hidden;
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
}
section, header, footer { max-width: 100vw; overflow-x: clip; position: relative; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: opacity .35s var(--ease); }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ── FILM GRAIN ── */
body::after {
  content: ""; position: fixed; inset: 0; pointer-events: none; z-index: 200;
  opacity: .045; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}
@media (prefers-reduced-motion: reduce) { body::after { display: none; } }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5 {
  font-family: var(--f-display); font-weight: 400;
  letter-spacing: -.012em; line-height: 1.08; color: var(--ink);
}
h1 { font-size: clamp(2.6rem, 6vw, 5.2rem); }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); }
h3 { font-size: clamp(1.4rem, 2.4vw, 2rem); }
h4 { font-size: clamp(1.1rem, 1.8vw, 1.4rem); }
p  { color: var(--muted); }
em, .italic { font-style: italic; font-family: var(--f-display); }

.eyebrow {
  font-family: var(--f-body); text-transform: uppercase;
  letter-spacing: .4em; font-size: 10.5px; font-weight: 500;
  color: var(--ink); display: inline-block;
}
.eyebrow::before {
  content: ""; display: inline-block; width: 28px; height: 1px;
  background: var(--accent); margin-right: 14px; vertical-align: middle;
}
.eyebrow--light { color: var(--paper); }
.eyebrow--light::before { background: var(--accent-2); }

.label-mono {
  font-family: var(--f-mono); font-size: 10.5px; letter-spacing: .08em;
  text-transform: uppercase; color: var(--muted-2);
}

/* ── LAYOUT ── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: clamp(64px, 10vw, 130px) 0; }
.section--dark { background: var(--ink); color: var(--paper); }
.section--dark h2, .section--dark h3 { color: var(--paper); }
.section--dark p { color: rgba(245,241,233,.72); }
.section--paper2 { background: var(--paper-2); }
.section--lake { background: var(--lake); color: var(--paper); }
.section--lake h2, .section--lake h3 { color: var(--paper); }
.section--olive { background: var(--olive); color: var(--paper); }
.section--olive h2, .section--olive h3, .section--olive .eyebrow { color: var(--paper); }
.grid { display: grid; gap: clamp(24px, 4vw, 56px); }
.center { text-align: center; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-body); font-size: 11px; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase;
  padding: 16px 32px; border: 1px solid var(--ink);
  background: var(--ink); color: var(--paper);
  transition: all .35s var(--ease);
}
.btn:hover { background: transparent; color: var(--ink); opacity: 1; }
.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--paper); }
.btn--accent { background: var(--accent); border-color: var(--accent); color: var(--ink); }
.btn--accent:hover { background: var(--ink); border-color: var(--ink); color: var(--paper); }
.btn--lake { background: var(--lake); border-color: var(--lake); color: var(--paper); }
.btn--lake:hover { background: transparent; border-color: var(--paper); color: var(--paper); }
.btn--white { background: var(--paper); border-color: var(--paper); color: var(--ink); }
.btn--white:hover { background: transparent; color: var(--paper); }

/* ── ANNOUNCE BAR ── */
.announce {
  background: var(--ink-2); text-align: center;
  padding: 11px 20px; overflow: hidden;
}
.announce-track {
  display: flex; gap: 48px; white-space: nowrap;
  animation: marquee 40s linear infinite;
  font-family: var(--f-mono); font-size: 10px; letter-spacing: .3em;
  text-transform: uppercase; color: rgba(245,241,233,.7);
  width: max-content;
}
.announce-track .dot { color: var(--accent-2); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .announce-track { animation: none; } }

/* ── NAV ── */
.nav {
  position: sticky; top: 0; z-index: 100;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  gap: 24px; padding: 20px var(--gutter);
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  transition: padding .35s var(--ease);
}
.nav.scrolled { padding-top: 13px; padding-bottom: 13px; }
.nav-logo {
  justify-self: start; font-family: var(--f-display); font-size: 1.4rem;
  letter-spacing: .01em; color: var(--ink); line-height: 1.1;
}
.nav-logo span { display: block; font-family: var(--f-mono); font-size: 9px;
  letter-spacing: .3em; text-transform: uppercase; color: var(--muted-2); }
.nav-links { display: flex; gap: 28px; justify-self: center; list-style: none;
  font-size: 10.5px; letter-spacing: .24em; text-transform: uppercase; font-weight: 500; }
.nav-links a:hover { color: var(--accent); opacity: 1; }
.nav-links a.active { color: var(--accent); }
.nav-cta { justify-self: end; }
.nav-burger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-burger span { width: 24px; height: 1.5px; background: var(--ink); transition: .3s var(--ease); }

/* ── HERO ── */
.hero {
  position: relative; min-height: 92vh; display: flex; align-items: center;
  overflow: hidden; background: var(--ink-2);
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url("https://images.unsplash.com/photo-1587300003388-59208cc962cb?auto=format&fit=crop&w=2000&q=80");
  background-size: cover; background-position: center;
  transform-origin: center; will-change: transform;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(12,23,32,.82) 0%, rgba(18,32,48,.55) 60%, rgba(18,32,48,.3) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  padding: clamp(80px, 14vh, 160px) 0 clamp(60px, 10vh, 120px);
}
.hero-eyebrow { margin-bottom: 28px; }
.hero h1 { color: var(--paper); max-width: 14ch; margin-bottom: 24px; }
.hero h1 em { color: var(--accent-2); }
.hero-tag {
  font-size: clamp(1rem, 1.6vw, 1.2rem); max-width: 52ch;
  color: rgba(245,241,233,.78); margin-bottom: 40px; line-height: 1.7;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-meta {
  display: flex; flex-wrap: wrap; gap: 20px; margin-top: 64px;
  font-family: var(--f-mono); font-size: 10px; letter-spacing: .12em;
  text-transform: uppercase; color: rgba(245,241,233,.55);
}
.hero-meta strong { color: rgba(245,241,233,.9); font-weight: 500; }
.hero-meta .sep { opacity: .3; }

/* ── TRUST BAR ── */
.trust-bar { padding: 48px 0; border-bottom: 1px solid var(--line); }
.trust-bar-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.trust-item {
  text-align: center; padding: 24px 20px;
  border-right: 1px solid var(--line);
}
.trust-item:last-child { border-right: none; }
.trust-item-icon { font-size: 2rem; margin-bottom: 10px; }
.trust-item h4 { font-family: var(--f-display); font-size: 1rem; margin-bottom: 4px; }
.trust-item .label-mono { font-size: 9.5px; }

/* ── SERVICES GRID ── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.svc-card {
  position: relative; overflow: hidden; aspect-ratio: 4/3;
  background: var(--paper-2);
  transition: transform .5s var(--ease);
}
.svc-card:hover { transform: scale(.98); }
.svc-card:hover .svc-card-img { transform: scale(1.06); }
.svc-card-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; transition: transform .6s var(--ease);
}
.svc-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(12,23,32,.78) 0%, rgba(12,23,32,.2) 60%, transparent 100%);
}
.svc-card-body {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 28px 24px; color: var(--paper);
}
.svc-card-body .eyebrow { color: var(--accent-2); margin-bottom: 8px; }
.svc-card-body .eyebrow::before { background: var(--accent-2); }
.svc-card-body h3 { color: var(--paper); font-size: clamp(1.2rem, 2vw, 1.6rem); margin-bottom: 6px; }
.svc-card-body p { color: rgba(245,241,233,.8); font-size: .9rem; line-height: 1.5; }
.svc-card-link {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 12px;
  font-family: var(--f-mono); font-size: 9.5px; letter-spacing: .2em;
  text-transform: uppercase; color: var(--accent-2);
}

/* ── STORY / ABOUT ── */
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 100px); align-items: center; }
.story-img-wrap { position: relative; }
.story-img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.story-badge {
  position: absolute; bottom: -24px; right: -24px;
  background: var(--accent); color: var(--ink); padding: 20px 24px; text-align: center;
}
.story-badge strong { display: block; font-family: var(--f-display); font-size: 2.8rem; line-height: 1; }
.story-badge span { font-family: var(--f-mono); font-size: 9px; letter-spacing: .2em; text-transform: uppercase; }
.story-text { padding: clamp(0px, 4vw, 40px) 0; }
.story-text h2 { margin-bottom: 20px; }
.story-text h2 em { color: var(--accent); }
.story-text p + p { margin-top: 16px; }
.story-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 40px; border-top: 1px solid var(--line); padding-top: 32px; }
.story-stat { }
.story-stat .num { font-family: var(--f-display); font-size: 2.4rem; color: var(--ink); }
.story-stat .unit { font-family: var(--f-mono); font-size: 9px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted-2); margin-top: 2px; }

/* ── MARQUEE TICKER ── */
.ticker { overflow: hidden; padding: 20px 0; background: var(--ink); border-top: 1px solid rgba(245,241,233,.1); }
.ticker-track {
  display: flex; gap: 56px; white-space: nowrap; width: max-content;
  animation: marquee 35s linear infinite;
  font-family: var(--f-mono); font-size: 10px; letter-spacing: .32em;
  text-transform: uppercase; color: rgba(245,241,233,.55);
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-track .t-sep { color: var(--accent-2); }

/* ── GALLERY ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, 280px);
  gap: 4px;
}
.gal-item { overflow: hidden; }
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.gal-item:hover img { transform: scale(1.04); }
.gal-item:nth-child(1) { grid-column: 1/6; grid-row: 1/2; }
.gal-item:nth-child(2) { grid-column: 6/9; grid-row: 1/2; }
.gal-item:nth-child(3) { grid-column: 9/13; grid-row: 1/2; }
.gal-item:nth-child(4) { grid-column: 1/4; grid-row: 2/3; }
.gal-item:nth-child(5) { grid-column: 4/9; grid-row: 2/3; }
.gal-item:nth-child(6) { grid-column: 9/13; grid-row: 2/3; }

/* ── AMENITIES ── */
.amenities-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(16px, 2vw, 32px); }
.amenity-item { display: flex; align-items: flex-start; gap: 16px; padding: 24px; border: 1px solid var(--line); }
.amenity-icon { font-size: 1.6rem; flex-shrink: 0; margin-top: 2px; }
.amenity-item h4 { margin-bottom: 4px; }
.amenity-item p { font-size: .9rem; }

/* ── TESTIMONIALS ── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 40px); }
.review-card { padding: 32px; background: var(--paper-soft); border: 1px solid var(--line); }
.review-stars { color: var(--accent); font-size: 14px; margin-bottom: 16px; letter-spacing: 2px; }
.review-text { font-family: var(--f-display); font-style: italic; font-size: 1.05rem; line-height: 1.65; color: var(--ink); margin-bottom: 20px; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--paper-2); border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; font-family: var(--f-display); font-size: .95rem; color: var(--ink); flex-shrink: 0; }
.review-name { font-size: .875rem; font-weight: 500; color: var(--ink); }
.review-source { font-family: var(--f-mono); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted-2); }

/* ── AWARDS BAND ── */
.awards-band { padding: 56px 0; }
.awards-list { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 40px; }
.award-badge { text-align: center; }
.award-badge-ring {
  width: 96px; height: 96px; border-radius: 50%;
  border: 1.5px solid var(--accent); display: flex; flex-direction: column;
  align-items: center; justify-content: center; margin: 0 auto 12px;
  font-family: var(--f-display); color: var(--ink);
}
.award-badge-ring .year { font-size: 1.4rem; line-height: 1; }
.award-badge-ring .word { font-family: var(--f-mono); font-size: 8px; letter-spacing: .15em; text-transform: uppercase; color: var(--muted-2); }
.award-badge-label { font-family: var(--f-mono); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted-2); max-width: 10ch; }

/* ── CTA BAND ── */
.cta-band {
  padding: clamp(64px, 10vw, 120px) 0;
  background-image: url("https://images.unsplash.com/photo-1548199973-03cce0bbc87b?auto=format&fit=crop&w=2000&q=80");
  background-size: cover; background-position: center; position: relative;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: rgba(12,23,32,.78);
}
.cta-band-inner { position: relative; z-index: 1; text-align: center; }
.cta-band h2 { color: var(--paper); margin-bottom: 16px; }
.cta-band h2 em { color: var(--accent-2); }
.cta-band p { color: rgba(245,241,233,.72); max-width: 52ch; margin: 0 auto 36px; }
.cta-band-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.cta-phone {
  font-family: var(--f-display); font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--paper); margin-top: 24px; letter-spacing: -.01em;
}

/* ── FOOTER ── */
.footer { background: var(--ink-2); color: var(--paper); padding: clamp(56px, 8vw, 100px) 0 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: clamp(32px, 5vw, 72px); }
.footer-brand p { color: rgba(245,241,233,.65); margin-top: 16px; font-size: .9rem; line-height: 1.7; }
.footer-col h5 { font-family: var(--f-body); font-size: 10.5px; letter-spacing: .3em; text-transform: uppercase; font-weight: 500; color: var(--accent-2); margin-bottom: 18px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { color: rgba(245,241,233,.65); font-size: .875rem; }
.footer-col ul li a:hover { color: var(--accent-2); opacity: 1; }
.footer-credit { margin-top: 56px; padding-top: 24px; border-top: 1px solid rgba(245,241,233,.1); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-family: var(--f-mono); font-size: 10px; letter-spacing: .06em; color: rgba(245,241,233,.4); }
.footer-credit a { color: rgba(245,241,233,.6); }
.footer-credit a:hover { color: var(--accent-2); opacity: 1; }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.is-in, .no-js .reveal, .reveal.reveal--shown { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ── IMG FALLBACK ── */
.img-fallback { display: flex; align-items: center; justify-content: center; background: var(--paper-2); border: 1px solid var(--line); min-height: 220px; }
.img-fallback-cap { font-family: var(--f-mono); font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted-2); padding: 24px; text-align: center; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding: clamp(80px, 14vh, 140px) 0 clamp(48px, 8vw, 80px);
  background: var(--ink); position: relative; overflow: hidden;
}
.page-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: .25; }
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { color: var(--paper); margin-bottom: 16px; }
.page-hero p { color: rgba(245,241,233,.72); max-width: 58ch; font-size: 1.1rem; }
.breadcrumb { font-family: var(--f-mono); font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: rgba(245,241,233,.5); margin-bottom: 24px; }
.breadcrumb a { color: var(--accent-2); }

/* ── DETAIL BLOCK (alternating on inner pages) ── */
.detail-block { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 100px); align-items: center; padding: clamp(48px, 8vw, 96px) 0; border-bottom: 1px solid var(--line); }
.detail-block--flip { }
.detail-block--flip .detail-img { order: 2; }
.detail-block--flip .detail-text { order: 1; }
.detail-img { overflow: hidden; }
.detail-img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.detail-text h3 { margin-bottom: 16px; }
.detail-text p + p { margin-top: 12px; }
.detail-list { list-style: none; margin-top: 20px; display: flex; flex-direction: column; gap: 8px; }
.detail-list li { display: flex; gap: 10px; align-items: baseline; font-size: .9rem; color: var(--muted); }
.detail-list li::before { content: "—"; color: var(--accent); font-family: var(--f-mono); flex-shrink: 0; }
.detail-price { margin-top: 24px; display: inline-block; padding: 12px 20px; background: var(--paper-2); border-left: 3px solid var(--accent); font-family: var(--f-display); font-size: 1.2rem; }
.detail-price small { display: block; font-family: var(--f-mono); font-size: 9px; letter-spacing: .15em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 2px; }

/* ── CONTACT FORM ── */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { grid-column: 1/-1; }
.form-group label { font-family: var(--f-mono); font-size: 9.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted-2); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 14px 16px; border: 1px solid var(--line);
  background: var(--paper-soft); font-family: var(--f-body); font-size: .95rem;
  color: var(--ink); transition: border-color .3s var(--ease);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--lake);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* ── RESPONSIVE ── */
@media (max-width: 1040px) {
  .trust-bar-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: none; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .detail-block { grid-template-columns: 1fr; gap: 40px; }
  .detail-block--flip .detail-img { order: 0; }
  .detail-block--flip .detail-text { order: 0; }
  .story-grid { grid-template-columns: 1fr; }
  .story-badge { right: 0; }
}
@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav { grid-template-columns: 1fr auto; }
  .nav-cta { display: none; }
  .nav-links.open {
    display: flex; position: fixed; inset: 64px 0 auto 0; flex-direction: column;
    background: var(--paper); padding: 32px var(--gutter); gap: 22px;
    border-bottom: 1px solid var(--line); z-index: 99;
  }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .svc-card { aspect-ratio: 3/2; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gal-item { grid-column: auto!important; grid-row: auto!important; aspect-ratio: 4/3; }
  .amenities-list { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .svc-card { aspect-ratio: 16/9; }
  .trust-bar-grid { grid-template-columns: 1fr 1fr; gap: 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .awards-list { gap: 24px; }
  .cta-band-actions { flex-direction: column; align-items: center; }
  .hero-actions { flex-direction: column; }
  .hero-meta { gap: 12px; }
}
