/* ============================================================================
   PERMANINK PRODUCTIONS — styles.css
   Brand system for a custom apparel, printing & graphics shop (Charlotte, NC).

   Look & feel: warm cream backgrounds, strong charcoal/black type, a bold
   condensed italic display face (echoing the athletic logo wordmark), and a
   single electric-blue accent, used for CTAs.

   ---------------------------------------------------------------------------
   FOR THE OWNER — quick edits (no coding needed for most):
   - Brand colors, fonts and spacing all live in :root below. Change a value
     once and it updates everywhere.
   - The accent / button color is  --blue.
   - Fonts are loaded from Google Fonts in index.html <head>.
   ========================================================================== */

/* ----------------------------------------------------------------- Tokens */
:root {
  /* Brand palette */
  --cream:        #F7F4EE;   /* page background (warm off-white) */
  --cream-2:      #EFEADF;   /* alternating section background */
  --sand:         #E5DDCD;   /* subtle borders / dividers */
  --ink:          #1A181D;   /* near-black text (never pure #000) */
  --ink-soft:     #3A3640;
  --muted:        #6E6A63;   /* secondary text */
  --blue:         #1D4ED8;   /* primary accent / CTA (electric blue) */
  --blue-deep:    #1740A6;   /* hover / pressed */
  --blue-tint:    #E5ECFB;   /* soft blue wash */
  --white:        #FFFFFF;

  /* Typography */
  --font-display: "Saira Condensed", "Arial Narrow", system-ui, sans-serif;
  --font-body:    "Manrope", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  /* Spacing scale */
  --space-section: clamp(4.5rem, 9vw, 8rem);
  --container:     1240px;
  --gutter:        clamp(1.25rem, 4vw, 2.5rem);

  /* Radius & shadows (tinted to the warm background, not flat black) */
  --radius:    18px;
  --radius-sm: 12px;
  --radius-lg: 28px;
  --shadow-sm: 0 2px 8px -2px rgba(40, 30, 20, 0.10);
  --shadow:    0 18px 40px -22px rgba(40, 30, 20, 0.30);
  --shadow-lg: 0 34px 70px -30px rgba(40, 30, 20, 0.38);
  --ring:      0 0 0 3px rgba(29, 78, 216, 0.30);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.075rem);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, picture { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: none; box-shadow: var(--ring); border-radius: 6px; }

/* --------------------------------------------------------------- Typography */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
.display {
  font-family: var(--font-display);
  font-style: italic;            /* echoes the slanted athletic logo */
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.005em;
}

/* Small uppercase label used above section headings */
.kicker {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.95rem;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.kicker::before {
  content: "";
  width: 30px; height: 2px;
  background: var(--blue);
  display: inline-block;
}

.section-title { font-size: clamp(2.1rem, 1.4rem + 3.2vw, 3.6rem); }
.lede { font-size: clamp(1.05rem, 1rem + 0.5vw, 1.25rem); color: var(--muted); max-width: 60ch; }

.accent { color: var(--blue); }
mark.hl { background: linear-gradient(transparent 58%, var(--blue-tint) 58%); color: inherit; padding: 0 .1em; }

/* ----------------------------------------------------------------- Layout */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--space-section); position: relative; }
.section--alt { background: var(--cream-2); }
.section--ink { background: var(--ink); color: var(--cream); }
.section-head { max-width: 60ch; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head .lede { margin-top: 1.1rem; }
.center { text-align: center; margin-inline: auto; }

/* ----------------------------------------------------------------- Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  font-family: var(--font-display);
  font-weight: 600; font-style: italic; text-transform: uppercase; letter-spacing: 0.04em;
  font-size: 1.02rem;
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  border: 2px solid transparent;
  transition: transform .25s var(--ease), background-color .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 1.1em; height: 1.1em; }
.btn:active { transform: translateY(1px) scale(0.99); }

.btn--primary { background: var(--blue); color: var(--white); box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--blue-deep); transform: translateY(-2px); box-shadow: var(--shadow); }

.btn--dark { background: var(--ink); color: var(--cream); }
.btn--dark:hover { background: #2c2832; transform: translateY(-2px); box-shadow: var(--shadow); }

.btn--ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--cream); transform: translateY(-2px); }

.btn--light { background: var(--cream); color: var(--ink); }
.btn--light:hover { background: var(--white); transform: translateY(-2px); box-shadow: var(--shadow); }

.btn--lg { padding: 1.1rem 2rem; font-size: 1.12rem; }
.btn--block { width: 100%; }

.textlink {
  font-family: var(--font-display); font-style: italic; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.05em; color: var(--blue);
  display: inline-flex; align-items: center; gap: 0.4rem;
}
.textlink svg { width: 1.05em; height: 1.05em; flex: none; transition: transform .25s var(--ease); }
.textlink:hover svg { transform: translateX(4px); }

/* ----------------------------------------------------------------- Header */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--cream) 86%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background-color .3s var(--ease), box-shadow .3s var(--ease);
}
.site-header.is-stuck { border-bottom-color: var(--sand); box-shadow: var(--shadow-sm); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; height: 76px; }
.brand { display: inline-flex; align-items: center; }
.brand img { height: 30px; width: auto; }

.nav-links { display: flex; align-items: center; gap: 1.7rem; }
.nav-links a {
  font-weight: 600; font-size: 0.96rem; color: var(--ink-soft);
  position: relative; padding: 0.3rem 0; white-space: nowrap;
  transition: color .2s var(--ease);
}
/* "Call or text…" link belongs only in the mobile menu; hidden on desktop */
.nav-phone-m { display: none; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--blue); transition: width .25s var(--ease);
}
.nav-links a:hover, .nav-links a.is-active { color: var(--ink); }
.nav-links a:hover::after, .nav-links a.is-active::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 0.9rem; }
.nav-phone { font-family: var(--font-display); font-style: italic; font-weight: 600; font-size: 1.05rem; letter-spacing: .02em; white-space: nowrap; }
.nav-phone:hover { color: var(--blue); }

.nav-toggle { display: none; background: none; border: none; padding: 0.4rem; width: 44px; height: 44px; position: relative; }
.nav-toggle span { position: absolute; left: 9px; right: 9px; height: 2.5px; background: var(--ink); border-radius: 2px; transition: transform .3s var(--ease), opacity .2s var(--ease); }
.nav-toggle span:nth-child(1) { top: 14px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 28px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ----------------------------------------------------------------- Hero */
.hero { position: relative; padding-block: clamp(3rem, 6vw, 5.5rem) clamp(3.5rem, 6vw, 6rem); overflow: hidden; }
.hero::before { /* soft blue glow, very subtle (no neon) */
  content: ""; position: absolute; inset: auto -10% 30% auto; width: 50vw; height: 50vw; max-width: 640px; max-height: 640px;
  background: radial-gradient(circle, rgba(29,78,216,0.12), transparent 65%);
  pointer-events: none; z-index: 0;
}
.hero .container { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 4vw, 4rem); align-items: center; }
.hero-copy { max-width: 36ch; }
.hero h1 { font-size: clamp(2.8rem, 1.8rem + 6vw, 6rem); letter-spacing: -0.005em; }
.hero h1 .display { display: block; }
.hero h1 .accent { color: var(--blue); }
.hero-tagline { margin-top: 1.4rem; font-size: clamp(1.1rem, 1rem + 0.6vw, 1.4rem); color: var(--ink-soft); font-weight: 500; max-width: 42ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2.2rem; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 1.5rem 2.2rem; margin-top: 2.6rem; }
.hero-meta .stat { display: flex; flex-direction: column; }
.hero-meta .stat b { font-family: var(--font-display); font-style: italic; font-size: 2rem; line-height: 1; }
.hero-meta .stat span { font-size: 0.85rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 0.3rem; }

.hero-media { position: relative; }
.hero-media .frame {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); border: 1px solid var(--sand);
  transform: rotate(1.4deg);
}
.hero-media .frame img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 11/13; }
.hero-badge {
  position: absolute; left: -18px; bottom: 28px; z-index: 2;
  background: var(--ink); color: var(--cream); padding: 0.85rem 1.2rem; border-radius: 14px;
  box-shadow: var(--shadow); transform: rotate(-3deg);
  font-family: var(--font-display); font-style: italic; text-transform: uppercase; line-height: 1.05;
}
.hero-badge b { color: var(--blue); }
.hero-badge small { display: block; font-family: var(--font-body); font-style: normal; text-transform: none; color: #b8b2c4; font-size: 0.72rem; letter-spacing: 0; }

/* ----------------------------------------------------------------- Marquee */
.marquee { background: var(--ink); color: var(--cream); overflow: hidden; padding-block: 0.9rem; }
.marquee-track { display: flex; gap: 3rem; width: max-content; animation: scroll-x 32s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span { font-family: var(--font-display); font-style: italic; text-transform: uppercase; letter-spacing: 0.08em; font-size: 1.05rem; display: inline-flex; align-items: center; gap: 3rem; color: #d8d3e0; }
.marquee-track span::after { content: "✦"; color: var(--blue); }
@keyframes scroll-x { to { transform: translateX(-50%); } }

/* ----------------------------------------------------- Action paths (the 3) */
.paths-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 1.6rem); }
.path-card {
  position: relative; display: flex; flex-direction: column; overflow: hidden;
  background: var(--white); border: 1px solid var(--sand); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  isolation: isolate;
}
.path-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.path-card .media { aspect-ratio: 19/14; overflow: hidden; background: var(--cream-2); }
.path-card .media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.path-card:hover .media img { transform: scale(1.05); }
.path-card .body { padding: 1.5rem 1.6rem 1.7rem; display: flex; flex-direction: column; gap: 0.6rem; flex: 1; }
.path-card .num { font-family: var(--font-display); font-style: italic; color: var(--blue); font-size: 0.9rem; letter-spacing: 0.12em; }
.path-card h3 { font-size: 1.6rem; }
.path-card p { color: var(--muted); font-size: 0.98rem; }
.path-card .textlink { margin-top: auto; padding-top: 0.6rem; }

/* ----------------------------------------------------------------- Services */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: clamp(1rem, 2vw, 1.4rem); }
.service-card {
  background: var(--white); border: 1px solid var(--sand); border-radius: var(--radius);
  padding: 1.7rem 1.6rem; display: flex; flex-direction: column; gap: 0.85rem;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: color-mix(in srgb, var(--blue) 40%, var(--sand)); }
.service-ico {
  width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center;
  background: var(--blue-tint); color: var(--blue); flex: none;
}
.service-ico svg { width: 28px; height: 28px; }
.service-card h3 { font-size: 1.4rem; }
.service-card p { color: var(--muted); font-size: 0.96rem; flex: 1; }
.service-card .textlink { font-size: 0.92rem; }

/* ----------------------------------------------------------------- About */
.about-grid { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.about-media { position: relative; }
.about-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; object-fit: cover; aspect-ratio: 10/11.5; border: 1px solid var(--sand); }
.about-media .tag {
  position: absolute; right: -14px; top: 26px; background: var(--blue); color: #fff;
  font-family: var(--font-display); font-style: italic; text-transform: uppercase;
  padding: 0.7rem 1.1rem; border-radius: 12px; box-shadow: var(--shadow); line-height: 1; transform: rotate(3deg);
}
.about-media .tag b { display: block; font-size: 1.7rem; }
.about-media .tag span { font-size: 0.7rem; letter-spacing: 0.1em; }
.about-copy p { color: var(--ink-soft); margin-top: 1.1rem; }
.about-copy p:first-of-type { font-size: 1.15rem; color: var(--ink); }
.about-points { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem 1.5rem; margin-top: 1.8rem; }
.about-points li { display: flex; gap: 0.6rem; align-items: flex-start; font-weight: 500; font-size: 0.98rem; }
.about-points svg { color: var(--blue); flex: none; margin-top: 3px; }

/* ----------------------------------------------------------------- Who we help */
.help-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.1rem; }
.help-card {
  border: 1px solid rgba(247,244,238,0.16); border-radius: var(--radius);
  padding: 1.6rem; background: rgba(247,244,238,0.04);
  transition: transform .3s var(--ease), background-color .3s var(--ease);
}
.help-card:hover { transform: translateY(-4px); background: rgba(247,244,238,0.08); }
.help-card .service-ico { background: rgba(29,78,216,0.22); color: #9DB8F2; }
.help-card h3 { font-size: 1.3rem; margin-top: 1rem; }
.help-card p { color: #b9b4bf; font-size: 0.95rem; margin-top: 0.5rem; }

/* ----------------------------------------------------------------- Gallery */
.gallery-grid { columns: 3; column-gap: clamp(0.8rem, 1.6vw, 1.2rem); }
.gallery-grid figure {
  break-inside: avoid; margin: 0 0 clamp(0.8rem, 1.6vw, 1.2rem); position: relative;
  border-radius: var(--radius); overflow: hidden; border: 1px solid var(--sand);
  box-shadow: var(--shadow-sm); transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.gallery-grid figure:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.gallery-grid img { width: 100%; }
.gallery-grid figcaption {
  position: absolute; inset: auto 0 0 0; padding: 1.4rem 1rem 0.9rem;
  background: linear-gradient(transparent, rgba(26,24,29,0.82));
  color: var(--cream); font-family: var(--font-display); font-style: italic; text-transform: uppercase;
  letter-spacing: 0.04em; font-size: 1rem; opacity: 0; transform: translateY(8px);
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.gallery-grid figure:hover figcaption { opacity: 1; transform: translateY(0); }

/* ----------------------------------------------------------------- Testimonials */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 1.5rem); }
.testi-card {
  background: var(--white); border: 1px solid var(--sand); border-radius: var(--radius-lg);
  padding: 1.9rem 1.7rem; display: flex; flex-direction: column; gap: 1rem; position: relative;
  box-shadow: var(--shadow-sm);
}
.testi-card .quote-mark { font-family: var(--font-display); font-style: italic; font-size: 3.4rem; color: var(--blue); line-height: 0.6; }
.testi-card blockquote { color: var(--ink-soft); font-size: 1.05rem; flex: 1; }
.testi-stars { color: var(--blue); letter-spacing: 2px; }
.testi-card .who { display: flex; align-items: center; gap: 0.8rem; border-top: 1px solid var(--sand); padding-top: 1rem; }
.testi-card .avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--blue-tint); color: var(--blue); display: grid; place-items: center; font-family: var(--font-display); font-style: italic; font-size: 1.1rem; flex: none; }
.testi-card .who b { font-family: var(--font-display); font-style: italic; text-transform: uppercase; font-size: 1.05rem; }
.testi-card .who span { display: block; font-size: 0.82rem; color: var(--muted); }
.placeholder-flag {
  position: absolute; top: 1rem; right: 1rem; background: var(--blue-tint); color: var(--blue-deep);
  font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em;
  padding: 0.3rem 0.6rem; border-radius: 999px;
}

/* ----------------------------------------------------------------- FAQ */
.faq-wrap { max-width: 820px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--sand); }
.faq-q {
  width: 100%; background: none; border: none; text-align: left;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.4rem 0.2rem; font-family: var(--font-display); font-style: italic;
  text-transform: uppercase; font-size: clamp(1.15rem, 1rem + 0.6vw, 1.5rem); color: var(--ink);
}
.faq-q .icon { flex: none; width: 30px; height: 30px; border-radius: 50%; background: var(--blue-tint); color: var(--blue); display: grid; place-items: center; position: relative; transition: background-color .3s var(--ease), color .3s var(--ease); }
.faq-q .icon::before, .faq-q .icon::after { content: ""; position: absolute; background: currentColor; border-radius: 2px; }
.faq-q .icon::before { width: 13px; height: 2.5px; }
.faq-q .icon::after { width: 2.5px; height: 13px; transition: transform .3s var(--ease); }
.faq-item.is-open .faq-q .icon { background: var(--blue); color: #fff; }
.faq-item.is-open .faq-q .icon::after { transform: scaleY(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-a-inner { padding: 0 0.2rem 1.5rem; color: var(--muted); max-width: 70ch; }
.faq-a-inner .note { color: var(--blue-deep); font-size: 0.85rem; font-weight: 600; }

/* ----------------------------------------------------------------- Contact */
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2rem, 4vw, 3.5rem); align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 1.4rem; }
.contact-line { display: flex; gap: 0.9rem; align-items: flex-start; }
.contact-line .ico { width: 46px; height: 46px; border-radius: 12px; background: var(--blue-tint); color: var(--blue); display: grid; place-items: center; flex: none; }
.contact-line .ico svg { width: 22px; height: 22px; }
.contact-line b { font-family: var(--font-display); font-style: italic; text-transform: uppercase; display: block; font-size: 1.05rem; }
.contact-line a { font-size: 1.25rem; font-weight: 700; }
.contact-line a:hover { color: var(--blue); }
.contact-line span { color: var(--muted); font-size: 0.92rem; }
.contact-cta-note { background: var(--blue-tint); border-radius: var(--radius); padding: 1.2rem 1.3rem; color: var(--blue-deep); font-weight: 500; }

.quote-form {
  background: var(--white); border: 1px solid var(--sand); border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.4rem); box-shadow: var(--shadow);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field.col-span { grid-column: 1 / -1; }
.field label { font-weight: 600; font-size: 0.9rem; }
.field label .req { color: var(--blue); }
.field input, .field select, .field textarea {
  font: inherit; color: var(--ink); background: var(--cream);
  border: 1.5px solid var(--sand); border-radius: var(--radius-sm);
  padding: 0.8rem 0.95rem; transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background-color .2s;
  width: 100%;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--blue); background: var(--white); box-shadow: var(--ring); outline: none; }
.field .help { font-size: 0.78rem; color: var(--muted); }
.field .file {
  border: 1.5px dashed var(--sand); background: var(--cream); border-radius: var(--radius-sm);
  padding: 0.9rem; display: flex; align-items: center; gap: 0.7rem; color: var(--muted); font-size: 0.9rem;
  cursor: pointer; transition: border-color .2s, color .2s;
}
.field .file:hover { border-color: var(--blue); color: var(--ink); }
.field .file input[type=file] { display: none; }
.form-status { font-size: 0.92rem; padding: 0.7rem 0; min-height: 1.2rem; }
.form-status.ok { color: #1d8a4e; }
.form-status.err { color: #c0392b; }

/* ----------------------------------------------------------------- CTA band */
.cta-band { background: var(--blue); color: #fff; border-radius: var(--radius-lg); padding: clamp(2.2rem, 5vw, 3.5rem); text-align: center; position: relative; overflow: hidden; }
.cta-band::after { content: ""; position: absolute; inset: -40% -20% auto auto; width: 380px; height: 380px; background: radial-gradient(circle, rgba(255,255,255,0.16), transparent 60%); }
.cta-band h2 { font-size: clamp(1.9rem, 1.4rem + 3vw, 3.2rem); position: relative; }
.cta-band p { max-width: 52ch; margin: 1rem auto 1.8rem; color: rgba(255,255,255,0.92); position: relative; }
.cta-band .btn--light { position: relative; }

/* ----------------------------------------------------------------- Footer */
.site-footer { background: var(--ink); color: var(--cream); padding-block: clamp(3rem, 6vw, 4.5rem) 2rem; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 2.5rem; }
.footer-brand img { height: 34px; margin-bottom: 1.1rem; }
.footer-brand p { color: #b9b4bf; max-width: 32ch; font-size: 0.95rem; }
.footer-col h4 { font-style: italic; font-size: 1.1rem; margin-bottom: 1.1rem; color: var(--cream); }
.footer-col a, .footer-col p { color: #b9b4bf; font-size: 0.95rem; display: block; padding: 0.3rem 0; transition: color .2s var(--ease); }
.footer-col a:hover { color: var(--blue); }
.footer-phone { font-family: var(--font-display); font-style: italic; font-size: 1.5rem !important; color: var(--cream) !important; }
.socials { display: flex; gap: 0.7rem; margin-top: 0.5rem; }
.socials a { width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(247,244,238,0.2); display: grid; place-items: center; color: var(--cream); transition: background-color .25s var(--ease), border-color .25s, transform .25s; }
.socials a:hover { background: var(--blue); border-color: var(--blue); transform: translateY(-3px); }
.socials svg { width: 18px; height: 18px; }
.footer-bottom { border-top: 1px solid rgba(247,244,238,0.14); margin-top: 2.8rem; padding-top: 1.6rem; display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem; justify-content: space-between; color: #908b97; font-size: 0.85rem; }
.footer-bottom a { color: #908b97; }
.footer-bottom a:hover { color: var(--blue); }

/* ----------------------------------------------------------------- Reveal anim */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* Skip link */
.skip-link { position: absolute; left: -999px; top: 0; background: var(--ink); color: #fff; padding: 0.7rem 1.1rem; border-radius: 0 0 10px 0; z-index: 200; }
.skip-link:focus { left: 0; }

/* ----------------------------------------------------------------- Responsive */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { order: -1; max-width: 460px; }
  .hero-copy { max-width: none; }
  .about-grid { grid-template-columns: 1fr; }
  .about-media { max-width: 440px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
  .gallery-grid { columns: 2; }
  .paths-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .testi-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
}

@media (max-width: 760px) {
  .nav-links, .nav-phone { display: none; }
  .nav-toggle { display: block; }
  /* Mobile menu panel */
  .nav-links.is-open {
    display: flex; flex-direction: column; align-items: stretch; gap: 0;
    position: fixed; top: 76px; left: 0; right: 0; z-index: 99;
    background: var(--cream); border-bottom: 1px solid var(--sand);
    padding: 0.5rem var(--gutter) 1.2rem; box-shadow: var(--shadow);
  }
  .nav-links.is-open a { padding: 0.95rem 0; border-bottom: 1px solid var(--sand); font-size: 1.05rem; }
  .nav-links.is-open a::after { display: none; }
  .nav-links.is-open .nav-phone-m { display: block; font-family: var(--font-display); font-style: italic; color: var(--blue); }
  .form-grid { grid-template-columns: 1fr; }
  .about-points { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .gallery-grid { columns: 1; }
  .hero-meta .stat b { font-size: 1.6rem; }
  .btn { width: 100%; }
  .hero-cta .btn, .footer-bottom .btn { width: auto; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
}
