/* ==========================================================================
   DANELLE SARVAS — PORTFOLIO SITE
   Editorial · Modern · Confident
   ========================================================================== */

:root {
  /* PALETTE — clean bone off-white + deep navy panels (no pink, no sage)
     + warm amber accent for italics/eyebrows/stats. ONE color throughout. */

  /* BONE — true neutral off-white (no yellow, no coral undertone) */
  --cream: #EEEAE0;             /* cool neutral bone — clean editorial */
  --ivory: #F4F0E6;             /* lightest variation */
  --stone: #E8E3D5;             /* slight stone variation for pillar cards */
  --stone-light: #EEEAE0;       /* same as cream for blending */
  --pale-stone: #F0ECE2;        /* pale variation */

  /* NAVY — deep blue panels (replaces sage/green) */
  --slate-deep: #16294A;        /* TRUE DEEP NAVY — capabilities, contact, case panels primary */
  --slate-darker: #0E1F3A;      /* deeper midnight — footer + deeper variation */
  --slate-mid: #5A75A0;         /* mid navy — borders */
  --slate-blue: #1A2F52;        /* slight navy variation — alternating case panels */
  --slate-soft: #C8D0E0;        /* very pale navy/blue — dividers */

  /* ACCENT — navy is the pop on cream sections; cream is the pop on navy panels */
  --camel: #16294A;             /* DEEP NAVY — italics + eyebrows on CREAM sections (pop) */
  --camel-soft: #F5F1E8;        /* WARM CREAM — italics on NAVY panels (style + contrast) */
  --camel-deep: #0E1F3A;        /* deepest navy — rare emphasis */
  --sage: #16294A;              /* alias */
  --jungle: #16294A;            /* alias for icons (navy on cream) */

  /* TEXT — strict white-or-black system based on background */
  --ink: #1A1A1A;               /* BLACK — text on cream/bone bg */
  --ink-soft: #2E2E2E;          /* near-black body text on cream */
  --light-text: #F5F1E8;        /* WHITE/CREAM — text on navy panels */
  --light-text-soft: #D8D2C2;   /* muted cream — body text on navy */

  /* Type */
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Spacing — tighter, more compact "cutout" feel */
  --max-width: 1180px;                        /* narrower content (was 1280) */
  --section-pad-y: clamp(56px, 7vw, 96px);   /* tighter vertical padding */
  --section-pad-x: clamp(24px, 6vw, 80px);
  --section-side-margin: clamp(20px, 4vw, 60px); /* visible bone margin around panels */
}

/* ============== RESET ============== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);   /* clean flat off-white throughout — no texture */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ============== TYPOGRAPHY UTILS ============== */
.italic-flourish,
.italic-accent {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  color: var(--camel);
}
/* Italic flourishes on NAVY backgrounds — use cream so they pop */
.italic-accent--gold,
.hero__name .italic-flourish,
.contact__headline .italic-accent {
  color: var(--camel-soft);
}

.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--camel);
  margin-bottom: 24px;
}
.eyebrow--gold { color: var(--camel-soft); }

.section-headline {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 32px;
}

/* ============== NAV ============== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid rgba(90, 96, 104, 0.08);
  padding: 22px var(--section-pad-x);
}
.nav__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__brand {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.nav__links {
  display: flex;
  gap: 40px;
}
.nav__links a {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--ink-soft);
  transition: color 0.2s ease;
}
.nav__links a:hover { color: var(--camel); }

/* ============== HERO ============== */
.hero {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  min-height: 560px;                /* compact — content-driven, no dead space */
  margin-bottom: 56px;              /* cream divider between hero + capabilities */
  background: var(--slate-deep);
  color: var(--light-text);
  overflow: hidden;
}
.hero__text {
  background: var(--slate-deep);
  padding: clamp(56px, 6vw, 88px) clamp(40px, 6vw, 88px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;       /* text packs to top — kills bottom dead space */
  max-width: 760px;
}
.hero__text .eyebrow {
  color: var(--camel-soft);
}
.hero__name {
  font-family: var(--serif);
  font-size: clamp(72px, 10vw, 130px);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
  color: var(--light-text);
}
.hero__name .italic-flourish {
  font-size: 0.85em;
  display: inline-block;
}
.hero__lede {
  font-size: 17px;
  line-height: 1.65;
  color: var(--light-text);
  margin-bottom: 48px;
  max-width: 540px;
}
.hero__lede em {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.06em;
  letter-spacing: 0.005em;
  color: var(--camel-soft);   /* cream so italic pops on navy */
}
.hero__stats {
  display: flex;
  gap: 48px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.stat__num {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 600;
  color: var(--light-text);
  line-height: 1;
  margin-bottom: 6px;
}
.stat__label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--light-text-soft);
  text-transform: uppercase;
}

/* Hero photo */
.hero__photo {
  position: relative;
  background: var(--slate-darker);
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  overflow: hidden;
}
.photo-frame {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.photo-frame img {
  width: 100%;
  height: 100%;
  /* Slightly enlarged + center-top focus so face anchors high in frame
     and edge artifacts crop out cleanly */
  object-fit: cover;
  object-position: 50% 28%;
  filter: contrast(1.04) saturate(0.96);
  transition: transform 0.6s ease;
}
/* Subtle vignette blends photo into the green hero on left edge
   (where it meets the text panel) */
.photo-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,
      rgba(22, 41, 74, 0.55) 0%,
      rgba(22, 41, 74, 0.08) 14%,
      rgba(22, 41, 74, 0) 30%,
      rgba(22, 41, 74, 0) 70%,
      rgba(22, 41, 74, 0.10) 100%),
    linear-gradient(180deg,
      rgba(22, 41, 74, 0) 60%,
      rgba(22, 41, 74, 0.30) 100%);
  pointer-events: none;
  z-index: 1;
}
.photo-placeholder {
  display: none;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--slate-darker) 0%, var(--slate-deep) 60%, var(--slate-mid) 100%);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
}
.photo-frame--placeholder .photo-placeholder { display: flex; }
.photo-placeholder__initials {
  font-family: var(--serif);
  font-size: 180px;
  font-weight: 400;
  color: var(--camel);
  font-style: italic;
  line-height: 1;
}
.photo-placeholder__caption {
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--light-text-soft);
  text-transform: uppercase;
}

/* If image fails, show placeholder */
.hero__photo img:not([src]),
.hero__photo img[src=""] {
  display: none;
}

/* ============== BUTTONS ============== */
.btn {
  display: inline-block;
  padding: 16px 32px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1.5px solid transparent;
  transition: all 0.25s ease;
  cursor: pointer;
}
.btn--ghost-light {
  background: transparent;
  color: var(--light-text);
  border-color: var(--camel);
}
.btn--ghost-light:hover {
  background: var(--camel);
  color: var(--ivory);
}
.btn--gold {
  background: var(--ivory);
  color: var(--camel);
  border-color: var(--ivory);
}
.btn--gold:hover {
  background: var(--camel-soft);
  border-color: var(--camel-soft);
}
.contact__buttons .btn { margin: 8px; }

/* ============== CAPABILITIES ============== */
.capabilities {
  background: var(--slate-deep);
  padding: var(--section-pad-y) var(--section-pad-x);
  color: var(--light-text);
}
.capabilities__grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
}
.capability {
  display: grid;
  grid-template-rows: auto 60px 1fr;   /* icon | fixed title row | copy aligned across cols */
  gap: 16px;
}
.capability__icon {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--light-text);
  margin-bottom: 8px;
  line-height: 1;
  opacity: 0.85;
}
.capability__title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--light-text);
  margin: 0;
  line-height: 1.25;
  align-self: start;          /* top-align so single-line titles match 2-line titles */
}
.capability__copy {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--light-text-soft);
  margin: 0;
}

/* ============== ABOUT ============== */
.about {
  background: #FFFFFF;             /* clean white — pillar boxes pop against it */
  padding: var(--section-pad-y) var(--section-pad-x);
}
.about__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about__copy {
  font-size: 16.5px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: 22px;
}
.about__copy em {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.08em;
  font-weight: 500;
  color: var(--camel);
}
.about__right {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.pillar {
  background: var(--stone);
  padding: 28px 32px;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  border-left: 3px solid var(--camel);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-left-color 0.3s ease;
  cursor: default;
  position: relative;
}
.pillar::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0; left: -3px;
  width: 3px;
  background: var(--slate-deep);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s ease;
}
.pillar:hover {
  transform: translateX(6px);
  box-shadow: -2px 4px 16px rgba(22, 41, 74, 0.10);
  border-left-color: var(--slate-deep);
}
.pillar:hover::before {
  transform: scaleY(1);
}
.pillar__num {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  color: var(--camel);
  line-height: 1;
}
.pillar h4 {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--ink);
  margin-bottom: 10px;
}
.pillar p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* ============== WORK ============== */
.work {
  background: #FFFFFF;             /* white canvas — case studies pop on white */
  padding-bottom: 40px;
}
.work__header {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--section-pad-y) var(--section-pad-x) 60px;
}
.work__sub {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 720px;
}

.case {
  display: flex;
  flex-direction: column;
  max-width: var(--max-width);            /* tighter, centered like reference */
  margin: 0 auto 56px;
  border: 1px solid rgba(22, 41, 74, 0.14);   /* faint navy hairline frame */
  background: #F1ECDF;                    /* warm ivory — matches reference */
  overflow: hidden;
}
.case__main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 540px;
}
/* Case panels alternate: sage-blue → dusty pink → sage-blue → dusty pink */
.case--green .case__visual { background: var(--slate-deep); }   /* SAGE-BLUE */
.case--cream .case__visual { background: var(--slate-blue); }   /* DUSTY PINK */
.case__visual--plum { background: var(--slate-blue) !important; }   /* pink */
.case__visual--blue { background: var(--slate-deep) !important; }   /* sage */

/* Photo strip ENCLOSED inside the case study frame — uniform 3-col grid across all cases */
.case__photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);     /* 3 cols across all cases — uniform sizing */
  background: #F1ECDF;
  gap: 2px;
  padding: 0;
  border-top: 1px solid rgba(22, 41, 74, 0.14);
}
/* legacy modifier — same as default now */
.case__photos--3col {
  grid-template-columns: repeat(3, 1fr);
}
/* Photos FILL the container — bigger, tighter, no dead space */
.case__photo-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: auto;
  transition: transform 0.5s ease;
}
.case__photo-placeholder:hover img {
  transform: scale(1.06);
}
/* Contain modifier — for screenshots/TV captures where full image must be visible */
.case__photo-placeholder--contain img {
  object-fit: contain;
  background: #F1ECDF;
  padding: 12px;
}
.case__photo-placeholder--contain:hover img {
  transform: scale(1.04);
}
.case__photo-placeholder.has-image::before { display: none; }
.case__photo-placeholder.has-image span { display: none; }
.case__photo-placeholder {
  aspect-ratio: 1 / 1;             /* square — bigger, more prominent photos */
  background: #F1ECDF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  color: var(--ink-soft);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  padding: 24px;
  position: relative;
  overflow: hidden;
  transition: background 0.2s ease;
}
.case__photo-placeholder::before {
  content: "+";
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 300;
  color: var(--slate-mid);
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 4px;
}
.case__photo-placeholder span {
  opacity: 0.55;
  line-height: 1.4;
}
.case__photo-placeholder:hover {
  background: linear-gradient(135deg, var(--pale-stone) 0%, var(--stone-light) 100%);
}

.case__visual {
  padding: clamp(36px, 4vw, 60px);
  color: var(--light-text);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}
/* KIND case — stacked layout: tag → title → stats → video */
.case__visual--video {
  justify-content: flex-start;
  gap: 24px;
}
.case__visual--video .case__title { margin-bottom: 0; }

/* Centered embedded YouTube video, 16:9 responsive */
.case__video {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  margin-top: 8px;
  border: 1px solid rgba(255,255,255,0.12);
}
.case__video iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}
.case__company-tag {
  display: inline-block;
  background: var(--ivory);
  color: var(--camel);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  padding: 8px 14px;
  align-self: flex-start;
  margin-bottom: 32px;
}
.case__company-tag--light {
  background: var(--ivory);
  color: var(--camel);
}
.case__title {
  font-family: var(--serif);
  font-size: clamp(40px, 4.5vw, 64px);
  font-weight: 600;
  line-height: 1.05;
  color: var(--light-text);
  margin-bottom: 48px;
}
.case__title--light { color: var(--light-text); }

.case__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.case-stat {
  background: var(--ivory);
  padding: 20px 22px;
  border: 1px solid rgba(255,255,255,0.08);
}
.case-stat--light { background: var(--ivory); border-color: rgba(255,255,255,0.08); }
.case-stat__num {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
  color: var(--slate-deep);   /* navy text on ivory card pops on navy panel */
  line-height: 1;
  margin-bottom: 8px;
}
.case-stat__label {
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--slate-darker);
  text-transform: uppercase;
  line-height: 1.4;
  font-weight: 500;
}

.case__content {
  padding: clamp(36px, 4vw, 60px);
  background: #F1ECDF;             /* warm ivory — matches reference */
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.case__role {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--camel);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.case__inline-title {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 20px;
}
.case__lede {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 24px;
}
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.tags span {
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--ink-soft);
  border: 1px solid rgba(90, 96, 104, 0.2);
  padding: 7px 12px;
  text-transform: uppercase;
}
.case__bullets li {
  position: relative;
  padding-left: 24px;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 14px;
}
.case__bullets li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--camel);
  font-weight: 600;
}

/* ============== CAREER TIMELINE ============== */
.career {
  background: var(--stone);
  padding: var(--section-pad-y) var(--section-pad-x);
}
.career__header {
  max-width: var(--max-width);
  margin: 0 auto 80px;
}
.timeline {
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 200px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: rgba(90, 96, 104, 0.2);
}
.timeline__item {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 60px;
  margin-bottom: 56px;
  position: relative;
}
.timeline__date {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
  padding-top: 4px;
}
.timeline__item::before {
  content: "";
  position: absolute;
  left: 195px;
  top: 12px;
  width: 11px;
  height: 11px;
  background: var(--camel);
  border-radius: 50%;
  border: 2px solid var(--stone);
}
.timeline__company {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--camel);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.timeline__role {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 14px;
  line-height: 1.2;
}
.timeline__copy {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 720px;
}

.education {
  max-width: var(--max-width);
  margin: 80px auto 0;
  padding-top: 56px;
  border-top: 1px solid rgba(90, 96, 104, 0.15);
}
.education__copy {
  font-size: 15.5px;
  line-height: 1.9;
  color: var(--ink-soft);
}
.education__copy strong {
  color: var(--ink);
  font-weight: 600;
}
.education__copy em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink);
}

/* Education list — clean bulleted institution + program */
.education__list {
  list-style: none;
  margin-top: 24px;
  padding: 0;
}
.education__list li {
  position: relative;
  padding-left: 28px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 14px;
}
.education__list li::before {
  content: "•";
  position: absolute;
  left: 4px;
  top: -2px;
  color: var(--camel);
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}
.education__list strong {
  color: var(--ink);
  font-weight: 700;
}

/* ============== CONTACT ============== */
.contact {
  background: var(--slate-deep);
  padding: clamp(80px, 11vw, 140px) var(--section-pad-x);
  text-align: center;
  color: var(--light-text);
}
.contact__headline {
  font-family: var(--serif);
  font-size: clamp(48px, 6.5vw, 92px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--light-text);
  max-width: 1000px;
  margin: 0 auto 32px;
}
.contact__sub {
  font-size: 17px;
  line-height: 1.65;
  color: var(--light-text);
  max-width: 640px;
  margin: 0 auto 48px;
}
.contact__buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============== FOOTER ============== */
.footer {
  background: var(--slate-darker);
  color: var(--light-text-soft);
  text-align: center;
  padding: 32px var(--section-pad-x);
  font-size: 13px;
  line-height: 1.8;
}

/* ============== RESPONSIVE ============== */
@media (max-width: 1024px) {
  .capabilities__grid { grid-template-columns: repeat(2, 1fr); gap: 48px; }
  .about__inner { grid-template-columns: 1fr; gap: 48px; }
  .case__main { grid-template-columns: 1fr; }
  .case--cream .case__main > .case__visual { order: -1; }
  .timeline::before { left: 0; }
  .timeline__item { grid-template-columns: 1fr; gap: 12px; }
  .timeline__item::before { display: none; }
  .timeline__date {
    color: var(--camel);
    font-weight: 600;
    letter-spacing: 0.16em;
  }
}

@media (max-width: 720px) {
  .nav__links { gap: 22px; }
  .nav__links a { font-size: 11px; letter-spacing: 0.14em; }
  .hero { grid-template-columns: 1fr; }
  .hero__photo { min-height: 400px; }
  .hero__text { padding: 60px 28px; }
  .hero__stats { gap: 32px; }
  .capabilities__grid { grid-template-columns: 1fr; }
  .case__visual,
  .case__content { padding: 36px 24px; }
  .case__stats { grid-template-columns: 1fr 1fr; }
  .case__photos { grid-template-columns: repeat(2, 1fr); gap: 6px; padding: 6px; }
  .pillar { grid-template-columns: 1fr; gap: 8px; padding: 22px 24px; }
  .contact__buttons { flex-direction: column; align-items: stretch; }
  .contact__buttons .btn { display: block; width: 100%; }
}

@media (max-width: 480px) {
  .hero__name { font-size: 64px; }
  .hero__stats { gap: 24px; }
  .stat__num { font-size: 28px; }
  .case__title { font-size: 36px; }
  .timeline__role { font-size: 22px; }
}
