/* =============================================================================
   Upbuild Renovations LLC — Stylesheet
   Design language: dark navy / graphite / warm copper accent, generous
   whitespace, soft rounded corners, subtle motion. No component framework.
   ========================================================================== */

/* ---------- Design tokens ------------------------------------------------ */
:root {
  /* Colors */
  --color-navy-950: #0b1729;
  --color-navy-900: #10213a;
  --color-navy-800: #16304f;
  --color-graphite-700: #3a4552;
  --color-graphite-500: #626d7a;
  --color-graphite-300: #9aa4b0;
  --color-line: #e3e6ea;
  --color-bg: #faf9f7;
  --color-bg-alt: #f2f1ee;
  --color-white: #ffffff;
  --color-accent: #c1652e;
  --color-accent-dark: #a5531f;
  --color-accent-tint: #fbeee5;

  /* Type */
  --font-head: "Manrope", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;

  /* Layout */
  --container-max: 1200px;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --shadow-sm: 0 1px 2px rgba(16, 33, 58, 0.06);
  --shadow-md: 0 12px 32px -12px rgba(16, 33, 58, 0.18);
  --shadow-lg: 0 24px 60px -20px rgba(16, 33, 58, 0.28);

  color-scheme: light;
}

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

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-graphite-700);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--color-navy-900);
  line-height: 1.15;
  margin: 0 0 0.6em;
  letter-spacing: -0.01em;
}

h1 { font-weight: 800; }
h2 { font-weight: 700; }
h3 { font-weight: 700; }

p { margin: 0 0 1em; }

ul { margin: 0; padding: 0; list-style: none; }

button, input, textarea {
  font-family: inherit;
  font-size: inherit;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ---------- Layout helpers -------------------------------------------------- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}

.section--tight { padding: 64px 0; }
.section--alt { background: var(--color-bg-alt); }

.section-head {
  max-width: 640px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-head--left {
  margin: 0 0 48px;
  text-align: left;
  max-width: 720px;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 14px;
}

.section-head h2 {
  font-size: clamp(1.7rem, 2.6vw, 2.4rem);
  margin-bottom: 0.5em;
}

.section-head p {
  color: var(--color-graphite-500);
  font-size: 1.05rem;
  margin-bottom: 0;
}

/* ---------- Buttons ---------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  white-space: nowrap;
}

.btn svg { width: 18px; height: 18px; transition: transform 0.25s ease; }

.btn--accent {
  background: var(--color-accent);
  color: var(--color-white);
  box-shadow: 0 14px 30px -12px rgba(193, 101, 46, 0.55);
}
.btn--accent:hover {
  background: var(--color-accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 18px 36px -12px rgba(193, 101, 46, 0.6);
}
.btn--accent:hover svg { transform: translateX(3px); }

.btn--ghost {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.35);
}
.btn--ghost:hover {
  border-color: rgba(255, 255, 255, 0.7);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--color-navy-900);
  border-color: var(--color-line);
}
.btn--outline:hover {
  border-color: var(--color-navy-900);
  transform: translateY(-2px);
}

/* ---------- Reveal-on-scroll ------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
/* stagger children a touch */
.cat-grid .reveal:nth-child(2) { transition-delay: 0.06s; }
.cat-grid .reveal:nth-child(3) { transition-delay: 0.12s; }
.cat-grid .reveal:nth-child(4) { transition-delay: 0.18s; }
.cat-grid .reveal:nth-child(5) { transition-delay: 0.24s; }

/* ---------- Nav ---------------------------------------------------------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 249, 247, 0.7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.nav.is-scrolled {
  background: rgba(250, 249, 247, 0.92);
  border-color: var(--color-line);
  box-shadow: var(--shadow-sm);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: var(--container-max);
  margin: 0 auto;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--color-navy-900);
  letter-spacing: -0.01em;
}

.nav__brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--color-navy-900);
  display: grid;
  place-items: center;
  color: var(--color-accent);
  flex-shrink: 0;
}
.nav__brand-mark svg { width: 18px; height: 18px; }

.nav__brand {
  gap: 16px;
}

.nav__logo {
  height: 62px;
  width: auto;
  flex-shrink: 0;
}

.nav__brand-divider {
  width: 1px;
  height: 30px;
  background: var(--color-line);
  flex-shrink: 0;
}

.nav__brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav__brand-sub {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.66rem;
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-graphite-500);
  max-width: 78px;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav__menu a {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--color-graphite-700);
  padding: 9px 16px;
  border-radius: 999px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.nav__menu a:hover,
.nav__menu a.is-active {
  background: var(--color-navy-900);
  color: var(--color-white);
}

.nav__menu .btn { margin-left: 8px; }

.nav__toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid var(--color-line);
  background: var(--color-white);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.nav__toggle span,
.nav__toggle span::before,
.nav__toggle span::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  background: var(--color-navy-900);
  position: relative;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav__toggle span::before { position: absolute; top: -6px; }
.nav__toggle span::after { position: absolute; top: 6px; }

body.nav-open .nav__toggle span { background: transparent; }
body.nav-open .nav__toggle span::before { transform: translateY(6px) rotate(45deg); }
body.nav-open .nav__toggle span::after { transform: translateY(-6px) rotate(-45deg); }

/* ---------- Hero ---------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(120% 140% at 85% -10%, rgba(193, 101, 46, 0.18), transparent 55%),
    linear-gradient(160deg, var(--color-navy-950), var(--color-navy-900) 60%, var(--color-navy-800));
  color: var(--color-white);
  padding: 128px 0 110px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 90% 70% at 70% 20%, #000 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 70% 20%, #000 20%, transparent 75%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
  background: rgba(193, 101, 46, 0.14);
  border: 1px solid rgba(193, 101, 46, 0.35);
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 28px;
}
.hero__eyebrow-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--color-accent);
}

.hero h1 {
  color: var(--color-white);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  margin-bottom: 0.35em;
}

.hero__tagline {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  color: #d9e0ea;
  margin-bottom: 0.9em;
}

.hero__lede {
  font-size: 1.05rem;
  color: #aeb9c8;
  max-width: 560px;
  margin-bottom: 2.2em;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__meta {
  position: relative;
  z-index: 1;
  margin-top: 72px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 28px;
  max-width: 760px;
}
.hero__meta-item { display: flex; flex-direction: column; gap: 4px; }
.hero__meta-value { font-family: var(--font-head); font-weight: 700; color: var(--color-white); font-size: 1.05rem; }
.hero__meta-label { font-size: 0.8rem; color: #90a0b5; text-transform: uppercase; letter-spacing: 0.08em; }

/* ---------- Page header (non-home pages) ------------------------------------- */
.page-header {
  background: linear-gradient(160deg, var(--color-navy-950), var(--color-navy-900));
  color: var(--color-white);
  padding: 96px 0 72px;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 100% at 15% 0%, #000 10%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 100% at 15% 0%, #000 10%, transparent 70%);
}
.page-header__inner { position: relative; z-index: 1; max-width: 680px; }
.page-header h1 { color: var(--color-white); font-size: clamp(2rem, 4vw, 2.8rem); }
.page-header p { color: #aeb9c8; font-size: 1.05rem; margin-bottom: 0; }

/* ---------- Intro / two-column blocks ---------------------------------------- */
.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}

.split__graphic {
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--color-navy-900), var(--color-navy-800));
  aspect-ratio: 4 / 3.2;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.split__graphic::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 40px 40px;
}
.split__graphic-icon {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 200px;
  height: 200px;
  color: rgba(193, 101, 46, 0.25);
}
.split__graphic-icon svg { width: 100%; height: 100%; stroke-width: 0.6; }

.intro-lede {
  font-size: 1.2rem;
  color: var(--color-navy-900);
  font-weight: 500;
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}

/* ---------- Category cards / grid -------------------------------------------- */
.cat-grid {
  display: grid;
  gap: 24px;
}
.cat-grid--compact { grid-template-columns: repeat(5, 1fr); }
.cat-grid--full { grid-template-columns: repeat(2, 1fr); gap: 28px; }

.cat-card {
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  padding: 32px 26px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.cat-card--compact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  text-align: left;
}
.cat-card--compact:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(193, 101, 46, 0.35);
}

.cat-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--color-accent-tint);
  color: var(--color-accent);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  flex-shrink: 0;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.cat-card__icon svg { width: 24px; height: 24px; }

.cat-card:hover .cat-card__icon {
  background: var(--color-accent);
  color: var(--color-white);
}

.cat-card__title {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--color-navy-900);
  font-size: 1.02rem;
}

.cat-card__hint {
  font-size: 0.88rem;
  color: var(--color-graphite-500);
  line-height: 1.5;
}

.cat-card--full {
  padding: 40px 36px;
  scroll-margin-top: 100px;
}
.cat-card--full:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(193, 101, 46, 0.35);
}
.cat-card--full .cat-card__icon { width: 60px; height: 60px; border-radius: 16px; margin-bottom: 22px; }
.cat-card--full .cat-card__icon svg { width: 28px; height: 28px; }
.cat-card--full .cat-card__title { font-size: 1.2rem; margin-bottom: 10px; }
.cat-card__desc { color: var(--color-graphite-500); font-size: 0.98rem; margin-bottom: 0; }

/* ---------- Values grid (about page) ------------------------------------------ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.value-card {
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  padding: 36px 30px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.value-card__icon {
  width: 48px; height: 48px; border-radius: 13px;
  background: var(--color-navy-900); color: var(--color-accent);
  display: grid; place-items: center; margin-bottom: 20px;
}
.value-card__icon svg { width: 22px; height: 22px; }
.value-card h3 { font-size: 1.05rem; margin-bottom: 10px; }
.value-card p { color: var(--color-graphite-500); font-size: 0.95rem; margin-bottom: 0; }

/* ---------- Mission callout ---------------------------------------------------- */
.callout {
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  padding: 56px;
  position: relative;
  overflow: hidden;
}
.callout::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 6px; height: 100%;
  background: var(--color-accent);
}
.callout .eyebrow { margin-bottom: 18px; }
.callout p { font-size: 1.15rem; color: var(--color-navy-900); font-weight: 500; margin-bottom: 0; max-width: 760px; }

/* ---------- CTA band ------------------------------------------------------------ */
.cta-band {
  background: linear-gradient(150deg, var(--color-navy-950), var(--color-navy-800));
  color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 64px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(80% 140% at 100% 0%, rgba(193, 101, 46, 0.22), transparent 60%);
}
.cta-band__text { position: relative; z-index: 1; max-width: 520px; }
.cta-band h2 { color: var(--color-white); margin-bottom: 0.4em; font-size: clamp(1.5rem, 2.6vw, 2rem); }
.cta-band p { color: #aeb9c8; margin-bottom: 0; }
.cta-band__action { position: relative; z-index: 1; }

/* ---------- Note block (products page) ------------------------------------------ */
.note-block {
  border: 1px dashed var(--color-line);
  border-radius: var(--radius-md);
  padding: 40px;
  text-align: center;
  background: var(--color-white);
}
.note-block h3 { margin-bottom: 10px; }
.note-block p { color: var(--color-graphite-500); max-width: 520px; margin: 0 auto 22px; }

/* ---------- Contact page -------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 48px;
  align-items: start;
}

.contact-card {
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-sm);
}

.form-row { margin-bottom: 22px; }
.form-row--split { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

label {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--color-navy-900);
  margin-bottom: 8px;
}

input, textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-line);
  background: var(--color-bg-alt);
  color: var(--color-navy-900);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}
input:focus, textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  background: var(--color-white);
  box-shadow: 0 0 0 4px rgba(193, 101, 46, 0.14);
}
textarea { resize: vertical; min-height: 140px; }

.form__status {
  margin-top: 18px;
  font-size: 0.92rem;
  min-height: 1.2em;
}
.form__status--success { color: #2f7a4d; }
.form__status--error { color: #b3432f; }

.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; }

.info-panel {
  background: linear-gradient(160deg, var(--color-navy-950), var(--color-navy-900));
  color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 44px;
}
.info-panel h3 { color: var(--color-white); font-size: 1.1rem; margin-bottom: 24px; }
.info-panel__name { font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; margin-bottom: 2px; }
.info-panel__role { color: var(--color-accent); font-size: 0.88rem; margin-bottom: 28px; }

.info-line {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.info-line:first-of-type { border-top: none; }
.info-line__icon {
  width: 38px; height: 38px; border-radius: 11px;
  background: rgba(255, 255, 255, 0.08);
  display: grid; place-items: center; color: var(--color-accent); flex-shrink: 0;
}
.info-line__icon svg { width: 18px; height: 18px; }
.info-line a, .info-line span { color: #d9e0ea; font-size: 0.95rem; }
.info-line a:hover { color: var(--color-white); }

/* ---------- Footer --------------------------------------------------------------- */
.site-footer {
  background: var(--color-navy-950);
  color: #aeb9c8;
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--color-white);
  font-size: 1.05rem;
  margin-bottom: 14px;
}
.footer-brand-mark {
  width: 32px; height: 32px; border-radius: 9px;
  background: rgba(255, 255, 255, 0.08);
  display: grid; place-items: center; color: var(--color-accent);
}
.footer-brand-mark svg { width: 16px; height: 16px; }
.footer-col p { font-size: 0.92rem; color: #8b98a8; max-width: 320px; }
.footer-col h4 {
  color: var(--color-white);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}
.footer-col ul li { margin-bottom: 12px; }
.footer-col a { font-size: 0.92rem; color: #aeb9c8; transition: color 0.2s ease; }
.footer-col a:hover { color: var(--color-white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 28px;
  font-size: 0.85rem;
  color: #6f7c8c;
}

/* ---------- Responsive ------------------------------------------------------------ */
@media (max-width: 980px) {
  .cat-grid--compact { grid-template-columns: repeat(3, 1fr); }
  .split { grid-template-columns: 1fr; }
  .split__graphic { order: -1; max-width: 460px; margin: 0 auto; }
  .values-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .section { padding: 72px 0; }
  .nav__menu {
    position: fixed;
    inset: 72px 16px auto 16px;
    background: var(--color-white);
    border: 1px solid var(--color-line);
    border-radius: var(--radius-md);
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    box-shadow: var(--shadow-lg);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }
  .nav__menu.is-open { transform: none; opacity: 1; pointer-events: auto; }
  .nav__menu a { padding: 13px 16px; }
  .nav__menu .btn { margin: 6px 0 0; justify-content: center; }
  .nav__toggle { display: inline-flex; }

  .nav__logo { height: 46px; }
  .nav__brand-divider { display: none; }

  .hero { padding: 96px 0 72px; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .hero__meta { gap: 24px; margin-top: 48px; }

  .cat-grid--compact { grid-template-columns: repeat(2, 1fr); }
  .cat-grid--full { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .cta-band { flex-direction: column; align-items: flex-start; padding: 44px 32px; }
  .callout { padding: 36px 28px; }
  .contact-card, .info-panel { padding: 30px 26px; }
  .form-row--split { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .cat-grid--compact { grid-template-columns: 1fr; }
}
