/* ============================================================
   Amour Construction Design System v3 — Apple-inspired
   Pure white canvas · Near-black ink · Single gold accent (logo)
   ============================================================ */

:root {
  /* Brand accent — Gold (from logo) */
  --primary: #C68C3D;
  --primary-hover: #D9A052;
  --primary-press: #A47128;
  --primary-soft: #F5EAD8;
  --primary-glow: rgba(198, 140, 61, 0.22);

  /* Ink — Apple's near-black */
  --ink: #1d1d1f;
  --ink-secondary: #2d2d2f;
  --ink-muted: #6e6e73;
  --ink-subtle: #86868b;

  /* Canvas — pure white + Apple parchment */
  --canvas: #ffffff;
  --canvas-pure: #ffffff;
  --canvas-stone: #f5f5f7;

  /* Dark surfaces — logo navy */
  --surface-charcoal: #1d1d1f;
  --surface-graphite: #2a2a2d;
  --surface-steel: #353538;

  /* On dark */
  --on-dark: #ffffff;
  --on-dark-muted: #a1a1a6;
  --on-primary: #ffffff;

  /* Borders */
  --hairline: #e8e8ed;
  --hairline-strong: #d2d2d7;

  /* Radius */
  --r-xs: 4px;
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-xl: 24px;
  --r-pill: 9999px;

  /* Spacing */
  --s-xxs: 4px;
  --s-xs: 8px;
  --s-sm: 12px;
  --s-md: 16px;
  --s-lg: 24px;
  --s-xl: 32px;
  --s-xxl: 48px;
  --s-huge: 64px;
  --s-section: 120px;

  /* Animation curves */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --duration-fast: 200ms;
  --duration-base: 400ms;
  --duration-slow: 700ms;
}

/* Reset & Base */
* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', 'SF Pro Text', system-ui, -apple-system, sans-serif;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: -0.05px;
  color: var(--ink);
  background: var(--canvas);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

/* ============================================================
   TYPOGRAPHY — Instrument Serif for display + Inter for body
   Notes: Instrument Serif natively tight; use 0 or positive tracking,
   thêm word-spacing để các từ tách bạch
   ============================================================ */
.hero-display {
  font-family: 'Instrument Serif', 'Times New Roman', Georgia, serif;
  font-size: 96px;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0;
  word-spacing: 0.08em;
}

.display-xl {
  font-family: 'Instrument Serif', 'Times New Roman', Georgia, serif;
  font-size: 72px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0;
  word-spacing: 0.08em;
}

.display-lg {
  font-family: 'Instrument Serif', 'Times New Roman', Georgia, serif;
  font-size: 52px;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0;
  word-spacing: 0.08em;
}

.display-md {
  font-family: 'Instrument Serif', 'Times New Roman', Georgia, serif;
  font-size: 38px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0;
  word-spacing: 0.06em;
}

.headline {
  font-family: 'Instrument Serif', 'Times New Roman', Georgia, serif;
  font-size: 26px;
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: 0;
  word-spacing: 0.04em;
}

.lead {
  font-size: 20px;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: -0.1px;
  color: var(--ink-secondary);
}

.body-lg { font-size: 18px; line-height: 1.6; font-weight: 300; }
.caption { font-size: 14px; color: var(--ink-muted); font-weight: 400; }
.tabular { font-variant-numeric: tabular-nums; font-feature-settings: "tnum"; }

.eyebrow {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--primary);
  display: inline-block;
}

/* Italic accent for editorial feel — Instrument Serif italic is beautiful */
.italic-accent {
  font-family: 'Instrument Serif', 'Times New Roman', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: var(--primary);
}

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

.section {
  padding: var(--s-section) 0;
}

/* ============================================================
   TOP NAVIGATION — Frosted Glass + Subtle Animation
   ============================================================ */
.top-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 72px;
  display: flex;
  align-items: center;
  padding: 0 var(--s-xxl);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: all var(--duration-base) var(--ease-out);
}

.top-nav.scrolled {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.04);
}

.top-nav__logo {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.2px;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 12px;
  transition: opacity var(--duration-fast);
  height: 64px;
}

.top-nav__logo:hover { opacity: 0.7; }

.top-nav__logo-img {
  height: 72px;
  width: auto;
  display: block;
  /* vừa với nav height, không cắt logo */
}

.top-nav__logo-mark {
  color: var(--primary);
  font-size: 16px;
}

.top-nav__menu {
  display: flex;
  gap: var(--s-xl);
  margin-left: auto;
  margin-right: var(--s-xl);
  list-style: none;
}

.top-nav__menu a {
  position: relative;
  color: var(--ink);
  font-size: 15px;
  font-weight: 400;
  padding: 8px 0;
  transition: color var(--duration-fast);
}

.top-nav__menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 1px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--duration-base) var(--ease-out);
}

.top-nav__menu a:hover { color: var(--primary); }
.top-nav__menu a:hover::after,
.top-nav__menu a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.top-nav__menu a.active { color: var(--primary); }

/* ============================================================
   BUTTONS — Elegant with Animations
   ============================================================ */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  padding: 16px 32px;
  border-radius: var(--r-pill);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--duration-base) var(--ease-out);
  white-space: nowrap;
  overflow: hidden;
  letter-spacing: 0.2px;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity var(--duration-base) var(--ease-out);
}

.btn__arrow {
  display: inline-block;
  transition: transform var(--duration-base) var(--ease-out);
}

.btn:hover .btn__arrow { transform: translateX(4px); }
.btn:active { transform: scale(0.97); }

/* Primary — terracotta with glow */
.btn--primary {
  background: var(--primary);
  color: var(--on-primary);
  box-shadow: 0 4px 16px rgba(198, 140, 61, 0.2);
}
.btn--primary:hover {
  background: var(--primary-hover);
  box-shadow: 0 8px 28px rgba(198, 140, 61, 0.35);
  transform: translateY(-2px);
}

/* Secondary — outline */
.btn--secondary {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn--secondary:hover {
  background: var(--ink);
  color: var(--on-dark);
  transform: translateY(-2px);
}

/* On dark — white pill */
.btn--on-dark {
  background: var(--on-dark);
  color: var(--ink);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
.btn--on-dark:hover {
  background: var(--canvas-stone);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  transform: translateY(-2px);
}

/* Ghost on dark */
.btn--ghost-dark {
  background: rgba(255, 255, 255, 0.08);
  color: var(--on-dark);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(12px);
}
.btn--ghost-dark:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
}

/* Glass button — premium feel */
.btn--glass {
  background: rgba(250, 248, 245, 0.1);
  color: var(--on-dark);
  border: 1px solid rgba(250, 248, 245, 0.25);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
}
.btn--glass:hover {
  background: rgba(250, 248, 245, 0.18);
  border-color: rgba(250, 248, 245, 0.5);
}

/* Large CTA */
.btn--lg {
  padding: 20px 40px;
  font-size: 16px;
}

/* ============================================================
   ANIMATIONS — Reveal on Scroll
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity var(--duration-slow) var(--ease-out),
              transform var(--duration-slow) var(--ease-out);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  transition: opacity var(--duration-slow) var(--ease-out);
}
.fade-in.visible { opacity: 1; }

.stagger-children > * { transition-delay: 0ms; }
.stagger-children.visible > *:nth-child(1) { transition-delay: 0ms; }
.stagger-children.visible > *:nth-child(2) { transition-delay: 100ms; }
.stagger-children.visible > *:nth-child(3) { transition-delay: 200ms; }
.stagger-children.visible > *:nth-child(4) { transition-delay: 300ms; }
.stagger-children.visible > *:nth-child(5) { transition-delay: 400ms; }
.stagger-children.visible > *:nth-child(6) { transition-delay: 500ms; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 var(--primary-glow); }
  50% { box-shadow: 0 0 0 16px transparent; }
}

@keyframes shimmer {
  0% { background-position: -1000px 0; }
  100% { background-position: 1000px 0; }
}

/* ============================================================
   HERO SECTION — Cinematic + Blur Overlay
   ============================================================ */
.hero {
  position: relative;
  background: var(--surface-charcoal);
  color: var(--on-dark);
  padding: 180px var(--s-xxl) var(--s-section);
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  filter: blur(2px) saturate(110%);
  transform: scale(1.06);
  transition: transform 8s var(--ease-out);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  0% { transform: scale(1.06); }
  100% { transform: scale(1.15); }
}

.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at left center,
      rgba(26, 26, 27, 0.7) 0%,
      rgba(26, 26, 27, 0.4) 60%,
      transparent 100%),
    linear-gradient(to bottom,
      rgba(26, 26, 27, 0.4) 0%,
      transparent 50%,
      rgba(26, 26, 27, 0.8) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.hero__eyebrow {
  color: var(--primary-hover);
  margin-bottom: var(--s-lg);
}

.hero__eyebrow::before { background: var(--primary-hover); }

.hero h1 {
  margin-bottom: var(--s-xl);
}

.hero__lead {
  font-size: 21px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--on-dark-muted);
  margin-bottom: var(--s-xxl);
  max-width: 580px;
}

.hero__cta-group {
  display: flex;
  gap: var(--s-md);
  flex-wrap: wrap;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--on-dark-muted);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: float 3s ease-in-out infinite;
  z-index: 2;
}

.hero__scroll-hint::after {
  content: "";
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, var(--on-dark-muted), transparent);
}

/* ============================================================
   STATS BAND
   ============================================================ */
.stats {
  background: var(--canvas);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: var(--s-huge) var(--s-xxl);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-xxl);
  max-width: 1280px;
  margin: 0 auto;
}

.stat-card {
  padding: var(--s-lg) 0;
  border-top: 1px solid var(--hairline-strong);
  transition: transform var(--duration-base) var(--ease-out);
}

.stat-card:hover {
  transform: translateY(-4px);
}

.stat-card__number {
  font-size: 64px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: -2px;
  color: var(--ink);
  margin-bottom: var(--s-sm);
  font-variant-numeric: tabular-nums;
}

.stat-card__label {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary);
}

/* ============================================================
   SECTION HEADER
   ============================================================ */
.section-header {
  max-width: 760px;
  margin: 0 auto var(--s-huge);
  text-align: center;
}

.section-header__eyebrow {
  margin-bottom: var(--s-md);
  justify-content: center;
}

.section-header h2 {
  margin-bottom: var(--s-md);
}

.section-header p {
  font-size: 20px;
  font-weight: 300;
  color: var(--ink-muted);
  line-height: 1.55;
}

/* ============================================================
   PROJECTS GRID — Enhanced with Blur + Hover
   ============================================================ */
.projects {
  background: var(--canvas);
}

.projects__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-xl);
}

.project-card {
  background: var(--canvas-pure);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  padding: var(--s-lg);
  transition: all var(--duration-slow) var(--ease-out);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.project-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(198, 140, 61, 0.04) 100%);
  opacity: 0;
  transition: opacity var(--duration-base);
  pointer-events: none;
}

.project-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-soft);
  box-shadow: 0 24px 48px rgba(28, 36, 51, 0.1);
}

.project-card:hover::before { opacity: 1; }

.project-card__image {
  aspect-ratio: 4 / 3;
  border-radius: var(--r-md);
  overflow: hidden;
  margin-bottom: var(--s-lg);
  background: var(--canvas-stone);
  position: relative;
}

.project-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out),
              filter var(--duration-slow);
}

.project-card__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.3), transparent 60%);
  opacity: 0;
  transition: opacity var(--duration-base);
}

.project-card:hover .project-card__image img {
  transform: scale(1.08);
  filter: brightness(1.05) saturate(1.1);
}

.project-card:hover .project-card__image::after { opacity: 1; }

.project-card__tags {
  display: flex;
  gap: var(--s-xs);
  margin-bottom: var(--s-sm);
}

.tag-pill {
  display: inline-block;
  background: var(--primary-soft);
  color: var(--primary-press);
  font-size: 12px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  letter-spacing: 0.3px;
  transition: all var(--duration-base);
}

.project-card:hover .tag-pill {
  background: var(--primary);
  color: var(--on-primary);
}

.project-card__title {
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.3px;
  margin-bottom: var(--s-xs);
  transition: color var(--duration-base);
}

.project-card:hover .project-card__title { color: var(--primary); }

.project-card__meta {
  font-size: 14px;
  color: var(--ink-muted);
  font-variant-numeric: tabular-nums;
  font-weight: 300;
}

/* Featured project card */
.project-card--featured {
  background: var(--surface-charcoal);
  color: var(--on-dark);
  border-color: var(--surface-charcoal);
  padding: var(--s-xl);
}

.project-card--featured .project-card__meta {
  color: var(--on-dark-muted);
}

.project-card--featured:hover {
  background: var(--surface-graphite);
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about {
  background: var(--canvas-stone);
  padding: var(--s-section) var(--s-xxl);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--primary-soft), transparent 70%);
  opacity: 0.5;
  filter: blur(40px);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-huge);
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.about__image {
  aspect-ratio: 4 / 5;
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  box-shadow: 0 24px 60px rgba(28, 36, 51, 0.12);
}

.about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 12s var(--ease-out);
}

.about__image:hover img { transform: scale(1.1); }

.about__content h2 {
  margin-bottom: var(--s-lg);
}

.about__content p {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--ink-secondary);
  margin-bottom: var(--s-lg);
}

/* ============================================================
   PROCESS (Dark) — Enhanced
   ============================================================ */
.process {
  background: var(--surface-charcoal);
  color: var(--on-dark);
  padding: var(--s-section) var(--s-xxl);
  position: relative;
  overflow: hidden;
}

.process::before {
  content: "";
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(198, 140, 61, 0.15), transparent 70%);
  filter: blur(60px);
}

.process .section-header h2 { color: var(--on-dark); }
.process .section-header p { color: var(--on-dark-muted); }

.process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-xl);
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.process-step {
  padding: var(--s-xl) var(--s-lg);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--r-lg);
  backdrop-filter: blur(10px);
  transition: all var(--duration-base) var(--ease-out);
}

.process-step:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(198, 140, 61, 0.4);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.process-step__number {
  font-size: 14px;
  font-weight: 500;
  color: var(--primary-hover);
  font-variant-numeric: tabular-nums;
  letter-spacing: 1px;
  margin-bottom: var(--s-md);
}

.process-step__title {
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.3px;
  margin-bottom: var(--s-sm);
  color: var(--on-dark);
}

.process-step__body {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--on-dark-muted);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  background: var(--canvas);
  padding: var(--s-section) var(--s-xxl);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-xl);
  max-width: 1280px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--canvas-pure);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  padding: var(--s-xxl);
  position: relative;
  transition: all var(--duration-base) var(--ease-out);
}

.testimonial-card::before {
  content: """;
  position: absolute;
  top: 24px;
  right: 32px;
  font-size: 88px;
  font-weight: 300;
  line-height: 0.8;
  color: var(--primary-soft);
  font-family: Georgia, serif;
}

.testimonial-card:hover {
  border-color: var(--primary-soft);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(28, 36, 51, 0.08);
}

.testimonial-card__quote {
  font-size: 19px;
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: -0.1px;
  color: var(--ink);
  margin-bottom: var(--s-lg);
  font-style: italic;
  position: relative;
  z-index: 1;
}

.testimonial-card__attribution {
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 4px;
}

.testimonial-card__role {
  font-size: 14px;
  font-weight: 300;
  color: var(--ink-muted);
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--surface-charcoal);
  color: var(--on-dark);
  padding: var(--s-section) var(--s-xxl);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center top, rgba(198, 140, 61, 0.15), transparent 50%),
    radial-gradient(ellipse at bottom, rgba(198, 140, 61, 0.08), transparent 60%);
  filter: blur(20px);
}

.cta-banner > * { position: relative; z-index: 1; }

.cta-banner__eyebrow {
  margin: 0 auto var(--s-md);
  justify-content: center;
  color: var(--primary-hover);
}

.cta-banner__eyebrow::before { background: var(--primary-hover); }

.cta-banner h2 {
  max-width: 800px;
  margin: 0 auto var(--s-lg);
  color: var(--on-dark);
}

.cta-banner p {
  font-size: 20px;
  font-weight: 300;
  color: var(--on-dark-muted);
  max-width: 600px;
  margin: 0 auto var(--s-xxl);
  line-height: 1.6;
}

.cta-banner__group {
  display: flex;
  gap: var(--s-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--surface-charcoal);
  color: var(--on-dark-muted);
  padding: var(--s-section) var(--s-xxl) var(--s-xxl);
  border-top: 1px solid var(--surface-steel);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: var(--s-xl);
  max-width: 1280px;
  margin: 0 auto var(--s-huge);
}

.footer__brand {
  font-size: 22px;
  font-weight: 400;
  color: var(--on-dark);
  margin-bottom: var(--s-md);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer__brand::before {
  content: "▲";
  color: var(--primary);
}

.footer__tagline {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--on-dark-muted);
  max-width: 280px;
}

.footer__col h4 {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--on-dark);
  margin-bottom: var(--s-md);
}

.footer__col ul {
  list-style: none;
}

.footer__col li { margin-bottom: var(--s-sm); }

.footer__col a {
  font-size: 14px;
  font-weight: 300;
  color: var(--on-dark-muted);
  transition: color var(--duration-fast),
              padding-left var(--duration-base) var(--ease-out);
  display: inline-block;
}

.footer__col a:hover {
  color: var(--primary-hover);
  padding-left: 4px;
}

.footer__legal {
  border-top: 1px solid var(--surface-steel);
  padding-top: var(--s-lg);
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 300;
  color: var(--on-dark-muted);
}

/* ============================================================
   PAGE HEADER (sub-pages) — Light Hero
   ============================================================ */
.page-header {
  background: var(--canvas);
  padding: 160px var(--s-xxl) var(--s-section);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: "";
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--primary-soft), transparent 60%);
  opacity: 0.5;
  filter: blur(60px);
  z-index: 0;
}

.page-header > * { position: relative; z-index: 1; }

.page-header__eyebrow {
  margin-bottom: var(--s-md);
  justify-content: center;
}

.page-header h1 {
  margin-bottom: var(--s-lg);
}

.page-header__lead {
  font-size: 22px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--ink-muted);
  max-width: 700px;
  margin: 0 auto;
}

/* ============================================================
   FORMS — Beautiful Inputs
   ============================================================ */
.form-group {
  margin-bottom: var(--s-lg);
}

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: var(--s-xs);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  font-family: inherit;
  font-size: 16px;
  font-weight: 300;
  color: var(--ink);
  background: var(--canvas-pure);
  border: 1px solid var(--hairline-strong);
  border-radius: var(--r-md);
  padding: 16px 20px;
  transition: all var(--duration-base) var(--ease-out);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px var(--primary-glow);
}

.form-textarea {
  min-height: 140px;
  resize: vertical;
  line-height: 1.5;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .projects__grid { grid-template-columns: repeat(2, 1fr); }
  .about__grid { grid-template-columns: 1fr; }
  .process__grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .hero-display { font-size: 56px; letter-spacing: -1.6px; }
  .display-xl { font-size: 42px; }
}

@media (max-width: 640px) {
  :root { --s-section: 80px; --s-xxl: 32px; }
  .container, .hero, .about, .process, .testimonials,
  .cta-banner, .footer, .top-nav, .stats, .page-header {
    padding-left: var(--s-lg);
    padding-right: var(--s-lg);
  }
  .top-nav__menu { display: none; }
  .stats__grid { grid-template-columns: 1fr; }
  .projects__grid { grid-template-columns: 1fr; }
  .process__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero-display { font-size: 40px; letter-spacing: -1px; }
  .display-xl { font-size: 32px; }
  .display-lg { font-size: 28px; }
  .stat-card__number { font-size: 44px; }
  .hero { min-height: 600px; padding: 140px var(--s-lg) var(--s-huge); }
  .testimonial-card { padding: var(--s-xl); }
  .testimonial-card::before { font-size: 56px; top: 16px; right: 20px; }
}

/* ============================================================
   PROJECTS PAGE — Featured + Work Table
   ============================================================ */
.projects-page { background: var(--canvas-stone); }

.page-header h1.editorial {
  font-family: 'Instrument Serif', Georgia, serif;
  font-weight: 300;
  letter-spacing: -2px;
}
.page-header h1.editorial .italic-accent {
  font-style: italic; color: var(--primary); font-weight: 300;
}
.page-header__lead.editorial-lead {
  font-family: 'Inter', sans-serif;
  font-size: 18px; font-weight: 300;
  color: var(--ink-secondary);
  max-width: 580px; line-height: 1.6; margin: 0 auto;
}

.featured-project {
  position: relative; aspect-ratio: 21/9; border-radius: 24px; overflow: hidden;
  margin-bottom: 96px; box-shadow: 0 32px 80px rgba(28,36,51,0.15);
}
.featured-project img { width:100%; height:100%; object-fit: cover; transition: transform 8s ease-out; }
.featured-project:hover img { transform: scale(1.05); }
.featured-project__overlay {
  position:absolute; inset:0; padding: 64px;
  background: linear-gradient(to right, rgba(26,26,27,0.85), rgba(26,26,27,0.3) 70%, transparent);
  display:flex; flex-direction:column; justify-content:flex-end; color: var(--on-dark);
}
.featured-project__overlay h3 {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 48px; font-weight: 300; font-style: italic;
  letter-spacing: -1.2px; margin-bottom: 16px; max-width: 600px;
}
.featured-project__overlay p { font-size: 16px; font-weight: 300; color: var(--on-dark-muted); margin-bottom: 24px; max-width: 500px; }

.work-table-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--s-xxl) var(--s-section);
}
.work-table-header { max-width: 720px; margin-bottom: 48px; }
.work-table-header h2 {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 64px; font-weight: 300; line-height: 1.05;
  letter-spacing: -2px; color: var(--ink); margin-bottom: 24px;
}
.work-table-header h2 em { font-style: italic; color: var(--primary); font-weight: 300; }
.work-table-header p {
  font-family: 'Inter', sans-serif;
  font-size: 17px; font-weight: 300; line-height: 1.6;
  color: var(--ink-muted); max-width: 540px;
}

.work-table { width: 100%; border-collapse: collapse; border-top: 1px solid var(--ink); }
.work-table thead th {
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 500;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--ink-muted);
  padding: 18px 16px; text-align: left;
  border-bottom: 1px solid var(--ink);
}
.work-table thead th:first-child { padding-left: 0; width: 72px; }
.work-table thead th:nth-child(2) { width: 38%; }
.work-table thead th:nth-child(3) { width: 28%; }
.work-table thead th:nth-child(4) { width: 22%; }
.work-table thead th:last-child { text-align: right; padding-right: 0; }

.work-table tbody tr {
  border-bottom: 1px solid var(--hairline-strong);
  transition: background 300ms cubic-bezier(0.16, 1, 0.3, 1);
}
.work-table tbody tr:hover { background: rgba(184, 97, 42, 0.04); }
.work-table tbody td { padding: 28px 16px; vertical-align: middle; }
.work-table tbody td:first-child {
  padding-left: 0;
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic; font-size: 18px; font-weight: 300;
  color: var(--primary); letter-spacing: -0.3px;
}
.work-table .work-name {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 22px; font-weight: 300;
  letter-spacing: -0.3px; color: var(--ink); line-height: 1.3;
}
.work-table .work-meta {
  font-family: 'Inter', sans-serif;
  font-size: 15px; font-weight: 300;
  color: var(--ink-secondary); font-variant-numeric: tabular-nums;
}
.work-table .work-role {
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 500;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--primary);
}
.work-table .work-year {
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic; font-size: 20px; font-weight: 300;
  color: var(--ink); text-align: right; padding-right: 0;
  font-variant-numeric: tabular-nums;
}
.work-table-footer {
  margin-top: 32px; text-align: right;
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic; font-size: 16px; font-weight: 300;
  color: var(--ink-muted);
}
@media (max-width: 1024px) {
  .work-table-header h2 { font-size: 44px; }
  .work-table .work-name { font-size: 18px; }
  .work-table tbody td { padding: 20px 8px; }
}
@media (max-width: 768px) {
  .work-table thead { display: none; }
  .work-table, .work-table tbody, .work-table tr, .work-table td { display: block; width: 100%; }
  .work-table tbody tr { padding: 24px 0; border-bottom: 1px solid var(--hairline-strong); }
  .work-table tbody td { padding: 4px 0 !important; text-align: left !important; }
  .work-table tbody td:first-child { font-size: 14px; margin-bottom: 8px; }
  .work-table .work-name { font-size: 24px; margin-bottom: 4px; }
  .work-table .work-meta { margin-bottom: 8px; }
  .work-table .work-year { text-align: left !important; font-size: 16px; margin-top: 8px; }
  .featured-project__overlay { padding: 32px; }
  .featured-project__overlay h3 { font-size: 28px; }
  .work-table-header h2 { font-size: 36px; }
}

/* ============================================================
   SERVICES PAGE — Alternating Rows + Materials
   ============================================================ */
.service-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center; margin-bottom: 140px;
}
.service-row:nth-child(even) .service-row__content { order: 2; }
.service-row:nth-child(even) .service-row__image { order: 1; }
.service-row__image {
  aspect-ratio: 4/5; border-radius: 24px; overflow: hidden;
  box-shadow: 0 24px 60px rgba(28,36,51,0.12);
  position: relative;
}
.service-row__image img {
  width:100%; height:100%; object-fit: cover;
  transition: transform 8s ease-out;
  filter: saturate(0.95);
}
.service-row__image:hover img { transform: scale(1.08); filter: saturate(1.1); }
.service-row__image::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to bottom right, transparent 60%, rgba(184,97,42,0.1));
}
.service-row__number {
  font-size: 88px; font-weight: 300; line-height: 1;
  color: var(--primary); margin-bottom: 24px;
  font-variant-numeric: tabular-nums;
  letter-spacing: -3px;
}
.service-row h2 { margin-bottom: 24px; }
.service-row__lead {
  font-size: 19px; font-weight: 300; line-height: 1.6;
  color: var(--ink-secondary); margin-bottom: 32px;
}
.service-features { list-style: none; margin-bottom: 32px; }
.service-features li {
  padding: 14px 0; border-bottom: 1px solid var(--hairline);
  font-size: 16px; font-weight: 300; color: var(--ink);
  display: flex; align-items: center; gap: 16px;
}
.service-features li::before { content: "→"; color: var(--primary); font-size: 14px; }

.materials-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; margin-top: 64px;
}
.material-card {
  aspect-ratio: 1; border-radius: 16px; overflow: hidden;
  position: relative; cursor: pointer;
  transition: transform 400ms cubic-bezier(0.16,1,0.3,1);
}
.material-card:hover { transform: translateY(-8px) scale(1.02); }
.material-card img {
  width:100%; height:100%; object-fit:cover;
  transition: transform 700ms ease-out;
}
.material-card:hover img { filter: blur(2px) brightness(0.5); transform: scale(1.1); }
.material-card__label {
  position: absolute; inset: 0; padding: 24px;
  display: flex; align-items: flex-end;
  color: var(--on-dark); z-index: 1;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent 60%);
}
.material-card__name { font-size: 18px; font-weight: 400; }
.material-card__desc {
  position: absolute; inset: 0; padding: 24px;
  display: flex; flex-direction: column; justify-content: center;
  color: var(--on-dark); z-index: 2; opacity: 0;
  transition: opacity 400ms;
  font-size: 14px; font-weight: 300; line-height: 1.5;
}
.material-card:hover .material-card__desc { opacity: 1; }
.material-card:hover .material-card__label { opacity: 0; }

@media (max-width: 1024px) {
  .service-row { grid-template-columns: 1fr; gap: 40px; margin-bottom: 80px; }
  .service-row:nth-child(even) .service-row__content { order: 1; }
  .service-row:nth-child(even) .service-row__image { order: 2; }
  .materials-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   ABOUT PAGE — Story + Values + Timeline
   ============================================================ */
.story {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start;
}
.story__image {
  aspect-ratio: 3/4; border-radius: 24px; overflow: hidden;
  box-shadow: 0 24px 60px rgba(28,36,51,0.12);
  position: sticky; top: 120px;
}
.story__image img { width:100%; height:100%; object-fit:cover; transition: transform 8s ease-out; }
.story__image:hover img { transform: scale(1.08); }

.story__content > p {
  font-size: 19px; font-weight: 300; line-height: 1.7;
  color: var(--ink-secondary); margin-bottom: 24px;
}
.story__content > p:first-of-type::first-letter {
  font-size: 80px; font-weight: 300; line-height: 0.85;
  float: left; margin: 8px 16px 0 0; color: var(--primary);
}

.pull-quote {
  margin: 48px 0; padding: 32px 0; border-top: 1px solid var(--hairline-strong);
  border-bottom: 1px solid var(--hairline-strong);
  font-size: 28px; font-weight: 300; font-style: italic; line-height: 1.4;
  letter-spacing: -0.5px; color: var(--ink);
}
.pull-quote::before {
  content: "\201C"; font-family: Georgia, serif; font-size: 64px; line-height: 0.3;
  color: var(--primary); display: inline-block; margin-right: 12px; vertical-align: -16px;
}

.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.team-card { text-align: center; }
.team-card__photo {
  aspect-ratio: 1; border-radius: 9999px; overflow: hidden; margin-bottom: 24px;
  position: relative;
  transition: transform 400ms cubic-bezier(0.16,1,0.3,1);
}
.team-card:hover .team-card__photo { transform: scale(1.05); }
.team-card__photo img { width:100%; height:100%; object-fit:cover; transition: filter 400ms; }
.team-card:hover .team-card__photo img { filter: brightness(0.92); }
.team-card__name { font-size: 20px; font-weight: 400; margin-bottom: 4px; }
.team-card__role { font-size: 14px; font-weight: 300; color: var(--ink-muted); }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.value-card {
  padding: 40px; border-radius: 16px;
  background: var(--canvas-pure);
  border: 1px solid var(--hairline);
  transition: all 400ms cubic-bezier(0.16,1,0.3,1);
}
.value-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-soft);
  box-shadow: 0 20px 40px rgba(28,36,51,0.08);
}
.value-card__icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--primary-soft); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 24px;
}
.value-card h3 { font-size: 22px; font-weight: 400; margin-bottom: 12px; letter-spacing: -0.2px; }
.value-card p { font-size: 16px; font-weight: 300; line-height: 1.6; color: var(--ink-secondary); }

.timeline { max-width: 800px; margin: 0 auto; }
.timeline-item {
  display: grid; grid-template-columns: 120px 1fr; gap: 48px;
  padding: 32px 0; border-bottom: 1px solid var(--hairline);
  align-items: baseline;
}
.timeline-year {
  font-size: 32px; font-weight: 300; color: var(--primary);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.6px;
}
.timeline-content h3 { font-size: 20px; font-weight: 400; margin-bottom: 8px; }
.timeline-content p { font-size: 16px; font-weight: 300; color: var(--ink-secondary); line-height: 1.6; }

@media (max-width: 1024px) {
  .story { grid-template-columns: 1fr; gap: 48px; }
  .story__image { position: relative; top: 0; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr; }
  .timeline-item { grid-template-columns: 1fr; gap: 8px; }
}

/* ============================================================
   CONTACT PAGE — Form + Map + FAQ
   ============================================================ */
.contact-grid {
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 80px;
  align-items: start;
}
.contact-info { position: sticky; top: 120px; }
.info-block { padding: 32px 0; border-bottom: 1px solid var(--hairline); }
.info-block:first-of-type { padding-top: 0; }
.info-block__label {
  font-size: 12px; font-weight: 500; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--primary); margin-bottom: 12px;
}
.info-block__value {
  font-size: 24px; font-weight: 300; letter-spacing: -0.3px;
  color: var(--ink); margin-bottom: 8px;
}
.info-block__value a { transition: color 200ms; }
.info-block__value a:hover { color: var(--primary); }
.info-block__hint { font-size: 14px; font-weight: 300; color: var(--ink-muted); }

.contact-form {
  background: var(--canvas-pure);
  padding: 56px;
  border-radius: 24px;
  border: 1px solid var(--hairline);
  box-shadow: 0 20px 60px rgba(28,36,51,0.06);
}
.contact-form h2 { margin-bottom: 12px; }
.contact-form > p {
  font-size: 16px; font-weight: 300; color: var(--ink-muted);
  margin-bottom: 40px; line-height: 1.6;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-row .form-group { margin-bottom: 24px; }

.checkbox-group { display: flex; flex-wrap: wrap; gap: 8px; }
.checkbox-pill { cursor: pointer; }
.checkbox-pill input { display: none; }
.checkbox-pill span {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 9999px;
  border: 1px solid var(--hairline-strong);
  font-size: 14px; color: var(--ink-muted);
  transition: all 300ms cubic-bezier(0.16,1,0.3,1);
}
.checkbox-pill:hover span { border-color: var(--ink); color: var(--ink); }
.checkbox-pill input:checked + span {
  background: var(--primary); color: var(--on-primary);
  border-color: var(--primary);
}

.map-section {
  position: relative;
  height: 480px; border-radius: 24px; overflow: hidden;
  box-shadow: 0 24px 60px rgba(28,36,51,0.12);
}
.map-section img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.5) brightness(0.95);
  transition: all 1s ease-out;
}
.map-section:hover img { filter: saturate(1) brightness(1); transform: scale(1.05); }
.map-marker {
  position: absolute; top: 45%; left: 50%;
  transform: translate(-50%, -100%);
  width: 56px; height: 56px;
  background: var(--primary);
  border: 4px solid var(--on-dark);
  border-radius: 9999px;
  box-shadow: 0 8px 24px rgba(184,97,42,0.5);
  display: flex; align-items: center; justify-content: center;
  color: var(--on-primary);
  font-size: 20px;
  animation: pulse-marker 2s ease-in-out infinite;
}
@keyframes pulse-marker {
  0%, 100% { box-shadow: 0 0 0 0 rgba(184,97,42,0.5), 0 8px 24px rgba(184,97,42,0.5); }
  50% { box-shadow: 0 0 0 24px rgba(184,97,42,0), 0 8px 24px rgba(184,97,42,0.5); }
}

.faq-grid { max-width: 760px; margin: 0 auto; }
.faq-item {
  padding: 24px 0; border-bottom: 1px solid var(--hairline);
  cursor: pointer;
}
.faq-item__q {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 19px; font-weight: 400; letter-spacing: -0.2px;
  color: var(--ink);
}
.faq-item__icon {
  color: var(--primary); font-size: 24px; font-weight: 300;
  transition: transform 400ms cubic-bezier(0.16,1,0.3,1);
}
.faq-item.open .faq-item__icon { transform: rotate(45deg); }
.faq-item__a {
  max-height: 0; overflow: hidden;
  transition: max-height 600ms cubic-bezier(0.16,1,0.3,1);
  font-size: 16px; font-weight: 300; line-height: 1.7;
  color: var(--ink-secondary);
}
.faq-item.open .faq-item__a { max-height: 400px; padding-top: 16px; }

@media (max-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-info { position: relative; top: 0; }
  .contact-form { padding: 32px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
}

/* ============================================================
   CARE GUIDE PAGE — Checklist Sheet
   ============================================================ */
.checklist-page { background: var(--canvas); padding-top: 80px; }
.checklist-intro {
  max-width: 880px; margin: 0 auto;
  padding: 64px 32px 32px; text-align: center;
}
.checklist-intro .eyebrow { margin-bottom: 16px; justify-content: center; }
.checklist-intro h1 { margin-bottom: 20px; }
.checklist-intro p {
  font-size: 18px; font-weight: 300; line-height: 1.6;
  color: var(--ink-muted); max-width: 720px; margin: 0 auto 32px;
}
.print-controls {
  display: flex; justify-content: center;
  gap: 12px; margin-bottom: 48px; flex-wrap: wrap;
}
.print-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px;
  background: var(--canvas-pure); color: var(--ink);
  border: 1px solid var(--hairline-strong);
  border-radius: 9999px;
  font-size: 14px; font-weight: 500; cursor: pointer;
  transition: all 300ms cubic-bezier(0.16, 1, 0.3, 1);
}
.print-btn:hover {
  background: var(--ink); color: var(--on-dark);
  border-color: var(--ink); transform: translateY(-2px);
}

.checklist-sheet {
  max-width: 1100px; margin: 0 auto 80px;
  background: var(--canvas-pure);
  border-radius: 24px;
  box-shadow: 0 24px 80px rgba(28, 36, 51, 0.1);
  overflow: hidden; border: 1px solid var(--hairline);
}
.sheet-header {
  background: var(--surface-charcoal); color: var(--on-dark);
  padding: 40px 56px;
  display: grid; grid-template-columns: auto 1fr;
  gap: 32px; align-items: center;
  position: relative; overflow: hidden;
}
.sheet-header::before {
  content: ""; position: absolute;
  top: -50px; right: -50px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(184, 97, 42, 0.2), transparent 60%);
  filter: blur(40px);
}
.sheet-header__logo {
  display: flex; flex-direction: column; align-items: center;
  gap: 4px; position: relative; z-index: 1;
}
.sheet-header__logo-mark { font-size: 48px; color: var(--primary-hover); line-height: 1; }
.sheet-header__logo-text {
  font-size: 11px; font-weight: 500; letter-spacing: 2px;
  text-transform: uppercase; color: var(--on-dark);
}
.sheet-header__content { position: relative; z-index: 1; }
.sheet-header h1 {
  font-size: 36px; font-weight: 300;
  letter-spacing: -1px; line-height: 1.1;
  margin-bottom: 12px; color: var(--on-dark);
}
.sheet-header p {
  font-size: 14px; font-weight: 300; line-height: 1.6;
  color: var(--on-dark-muted); max-width: 720px;
}

.checklist-section {
  padding: 32px 56px; border-bottom: 1px solid var(--hairline);
}
.checklist-section:last-child { border-bottom: none; }
.section-title-row {
  display: flex; align-items: baseline;
  gap: 16px; margin-bottom: 24px; flex-wrap: wrap;
}
.section-icon {
  width: 32px; height: 32px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 8px;
  background: var(--primary-soft); color: var(--primary);
  font-size: 16px; flex-shrink: 0;
}
.section-title { font-size: 24px; font-weight: 400; letter-spacing: -0.3px; color: var(--ink); }
.section-subtitle { font-size: 14px; font-weight: 300; color: var(--ink-muted); font-style: italic; }

.checklist-table { width: 100%; border-collapse: collapse; }
.checklist-table th {
  font-size: 11px; font-weight: 500; letter-spacing: 0.6px;
  text-transform: uppercase; color: var(--ink-muted);
  padding: 8px 4px; text-align: center; vertical-align: bottom;
}
.checklist-table th.task-header { text-align: left; padding-left: 0; }
.checklist-table .month-header { width: 38px; font-variant-numeric: tabular-nums; }

.task-row { transition: background 200ms; }
.task-row:hover { background: var(--canvas); }
.task-cell { padding: 0; vertical-align: middle; }
.task-pill {
  background: linear-gradient(to right, var(--primary-soft) 0%, rgba(244, 228, 214, 0.4) 100%);
  padding: 12px 18px; border-radius: 8px;
  font-size: 14px; font-weight: 400; color: var(--ink);
  line-height: 1.4; margin: 4px 0; display: block;
}
.checkbox-cell { text-align: center; padding: 4px 2px; vertical-align: middle; }
.check-box {
  display: inline-block;
  width: 22px; height: 22px;
  border: 1.5px solid var(--hairline-strong);
  border-radius: 4px; cursor: pointer;
  background: var(--canvas-pure);
  transition: all 200ms;
  position: relative;
}
.check-box:hover { border-color: var(--primary); transform: scale(1.1); }
.check-box.checked { background: var(--primary); border-color: var(--primary); }
.check-box.checked::after {
  content: "\2713";
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--on-primary); font-size: 14px; font-weight: 600;
}

.sheet-footer {
  background: var(--canvas); padding: 40px 56px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 32px; border-top: 2px solid var(--hairline);
}
.qr-block { text-align: center; }
.qr-block h4 {
  font-size: 13px; font-weight: 500; letter-spacing: 0.8px;
  text-transform: uppercase; color: var(--ink); margin-bottom: 16px;
}
.qr-image {
  width: 88px; height: 88px; margin: 0 auto;
  border: 1px solid var(--hairline); border-radius: 8px;
  padding: 4px; background: var(--canvas-pure);
}
.qr-image img { width: 100%; height: 100%; display: block; }

.sheet-contact-bar {
  background: var(--primary); color: var(--on-primary);
  padding: 18px 56px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px; font-size: 14px; font-weight: 500; flex-wrap: wrap;
}
.sheet-contact-bar a { color: var(--on-primary); transition: opacity 200ms; }
.sheet-contact-bar a:hover { opacity: 0.85; }
.contact-divider { width: 1px; height: 18px; background: rgba(255, 255, 255, 0.3); }

@media print {
  .top-nav, .footer, .checklist-intro, .print-controls, .cta-banner { display: none !important; }
  body { background: white; }
  .checklist-sheet { box-shadow: none; border: none; margin: 0; max-width: none; }
  .checklist-section { padding: 20px 32px; }
  .sheet-header, .sheet-footer, .sheet-contact-bar { padding-left: 32px; padding-right: 32px; }
  .task-pill { background: #f0ebe4 !important; -webkit-print-color-adjust: exact; }
  .sheet-contact-bar { background: #C68C3D !important; -webkit-print-color-adjust: exact; }
  .sheet-header { background: #1d1d1f !important; -webkit-print-color-adjust: exact; }
}

@media (max-width: 768px) {
  .sheet-header { padding: 32px 24px; grid-template-columns: 1fr; text-align: center; }
  .sheet-header__logo { flex-direction: row; justify-content: center; }
  .checklist-section { padding: 24px 20px; }
  .sheet-footer { padding: 32px 24px; grid-template-columns: 1fr; }
  .sheet-contact-bar { padding: 16px 24px; flex-direction: column; gap: 8px; text-align: center; }
  .contact-divider { display: none; }
  .checklist-table { font-size: 13px; }
  .task-pill { font-size: 12px; padding: 10px 12px; }
  .check-box { width: 18px; height: 18px; }
  .checklist-table .month-header { width: 28px; font-size: 10px; }
}

/* ============================================================
   WORDPRESS overrides — hide default post titles on full-bleed pages
   ============================================================ */
body.page-template-front-page .entry-title,
body.page-template-front-page .wp-block-post-title,
body.page-template-page-projects .entry-title,
body.page-template-page-projects .wp-block-post-title,
body.page-template-page-services .entry-title,
body.page-template-page-services .wp-block-post-title,
body.page-template-page-about .entry-title,
body.page-template-page-about .wp-block-post-title,
body.page-template-page-contact .entry-title,
body.page-template-page-contact .wp-block-post-title,
body.page-template-page-care .entry-title,
body.page-template-page-care .wp-block-post-title { display: none !important; }

/* Reset WP block defaults that conflict */
.wp-site-blocks > * { max-width: none; }
