@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@500;600;700;800&display=swap");

:root {
  --ink: #15202b;
  --muted: #65717d;
  --paper: #f5f2ec;
  --card: #ffffff;
  --deep: #1d303a;
  --deep-2: #14252e;
  --teal: #1f746a;
  --teal-dark: #155850;
  --mint: #dcece7;
  --pink: #d8517d;
  --pink-dark: #9f365d;
  --pink-soft: #fff0f5;
  --line: rgba(21, 32, 43, 0.12);
  --shadow: 0 24px 70px rgba(29, 48, 58, 0.12);
  --radius: 24px;
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", ui-sans-serif, system-ui, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 8% 6%, rgba(216, 81, 125, 0.08), transparent 28rem),
    radial-gradient(circle at 92% 18%, rgba(31, 116, 106, 0.1), transparent 30rem);
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; top: 12px; left: 12px; z-index: 999; padding: 10px 14px; color: #fff; background: var(--deep); border-radius: 999px; transform: translateY(-150%); }
.skip-link:focus { transform: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 76px;
  padding: 12px max(24px, calc((100vw - var(--max)) / 2));
  background: rgba(247, 244, 239, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  transition: min-height 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
.site-header.is-scrolled { min-height: 68px; background: rgba(247, 244, 239, 0.97); box-shadow: 0 12px 34px rgba(29, 48, 58, 0.08); }
.brand {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--deep);
  color: #fff;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 0.83rem;
  box-shadow: 0 10px 25px rgba(29, 48, 58, 0.2);
  transition: transform 180ms ease, background 180ms ease;
}
.brand:hover { transform: rotate(-4deg) scale(1.04); background: var(--teal); }
.nav { display: flex; justify-content: center; gap: clamp(24px, 4vw, 48px); color: #52606b; font-weight: 700; font-size: 0.94rem; }
.nav a, .header-action, footer a { transition: color 180ms ease, transform 180ms ease; }
.nav a:hover, .nav a:focus-visible, footer a:hover { color: var(--teal); }
.header-action { display: inline-flex; gap: 9px; align-items: center; padding: 10px 17px; border: 1px solid var(--line); border-radius: 999px; font-weight: 800; }
.header-action:hover { color: #fff; background: var(--teal); transform: translateY(-1px); }
.menu-button { display: none; background: transparent; border: 0; padding: 8px; }
.menu-button > span:not(.sr-only) { display: block; width: 24px; height: 2px; margin: 5px 0; background: var(--ink); transition: transform 180ms ease, opacity 180ms ease; }

.section { width: min(100%, var(--max)); margin: 0 auto; padding: clamp(88px, 10vw, 148px) 24px; }
.eyebrow, .project-type { margin: 0 0 16px; color: var(--teal-dark); font-size: 0.76rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; }
.eyebrow.pink { color: var(--pink-dark); }
.eyebrow.light { color: #a7ddd4; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: "Manrope", sans-serif; letter-spacing: 0; }
h1 { max-width: 920px; margin-bottom: 26px; font-size: clamp(3.2rem, 6.7vw, 6.4rem); line-height: 0.98; }
h2 { margin-bottom: 20px; font-size: clamp(2.45rem, 5vw, 4.8rem); line-height: 1.02; }
h3 { margin-bottom: 12px; font-size: clamp(1.35rem, 2.2vw, 2rem); line-height: 1.18; }
p { margin-bottom: 0; }
.hero-text, .section-heading > p, .case-intro > p, .story-column > p, .about-copy, .contact-card > p { color: var(--muted); font-size: clamp(1.04rem, 1.45vw, 1.23rem); }

.hero { min-height: calc(100vh - 76px); display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.58fr); align-items: center; gap: clamp(48px, 8vw, 110px); }
.hero-copy { max-width: 850px; }
.headline-accent { display: block; color: var(--teal); }
.status-dot, .availability-icon { display: inline-block; width: 9px; height: 9px; border-radius: 50%; background: #20b486; box-shadow: 0 0 0 5px rgba(32, 180, 134, 0.12); }
.hero-actions, .contact-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 50px; padding: 13px 21px; border-radius: 999px; font-weight: 800; transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease; }
.button:hover { transform: translateY(-2px); }
.button.primary { background: var(--teal); color: #fff; box-shadow: 0 16px 34px rgba(31, 116, 106, 0.24); }
.button.primary:hover { background: var(--teal-dark); }
.button.secondary { background: rgba(255,255,255,0.72); border: 1px solid var(--line); }
.hero-proof { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 58px; padding-top: 24px; border-top: 1px solid var(--line); }
.hero-proof strong, .hero-proof span { display: block; }
.hero-proof strong { font-family: "Manrope", sans-serif; font-size: 1rem; }
.hero-proof span { margin-top: 3px; color: var(--muted); font-size: 0.86rem; }
.hero-portrait { position: relative; }
.portrait-frame { position: relative; min-height: 520px; overflow: hidden; border-radius: 42px; background: #d9e6e2; box-shadow: 0 36px 90px rgba(29, 48, 58, 0.2); transform: rotate(1.5deg); }
.portrait-frame::after { content: ""; position: absolute; inset: auto 0 0; height: 44%; background: linear-gradient(transparent, rgba(20,37,46,0.82)); }
.portrait-frame img { height: 520px; object-fit: cover; object-position: center 25%; }
.portrait-caption { position: absolute; z-index: 1; left: 24px; bottom: 20px; color: #fff; }
.portrait-caption span, .portrait-caption small { display: block; }
.portrait-caption span { font-family: "Manrope", sans-serif; font-weight: 800; }
.portrait-caption small { margin-top: 2px; color: rgba(255,255,255,0.72); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.availability-card { position: absolute; right: -24px; bottom: 70px; z-index: 2; display: flex; align-items: center; gap: 14px; width: min(310px, 85%); padding: 18px; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); }
.availability-card strong, .availability-card span { display: block; }
.availability-card span { color: var(--muted); font-size: 0.85rem; }

.mammavenn-case { position: relative; overflow: hidden; background: linear-gradient(180deg, #fff 0%, #fff8fb 100%); }
.mammavenn-case::before { content: ""; position: absolute; top: 6rem; right: -14rem; width: 32rem; height: 32rem; border-radius: 50%; background: rgba(216,81,125,0.07); }
.case-hero { display: grid; grid-template-columns: minmax(420px, 0.82fr) minmax(0, 1.18fr); align-items: center; gap: clamp(56px, 6vw, 82px); }
.case-intro { position: relative; z-index: 1; min-width: 0; }
.case-intro h2 { font-size: clamp(3.2rem, 4.35vw, 4.1rem); }
.case-brand-row { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.case-brand-row img { width: 54px; height: 54px; object-fit: contain; border-radius: var(--radius); }
.case-brand-row .eyebrow { margin: 0; }
.case-lead { margin-bottom: 18px; color: var(--ink) !important; font-family: "Manrope", sans-serif; font-weight: 700; font-size: clamp(1.35rem, 2vw, 1.75rem) !important; line-height: 1.35; }
.case-visual { position: relative; margin: 0; overflow: hidden; border: 1px solid rgba(216,81,125,0.14); border-radius: 34px; box-shadow: 0 34px 90px rgba(159,54,93,0.16); }
.case-visual img { aspect-ratio: 1.485 / 1; object-fit: cover; }
.tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.tags span { padding: 7px 11px; border-radius: 999px; background: var(--mint); color: var(--teal-dark); font-size: 0.79rem; font-weight: 800; }
.case-tags span { background: var(--pink-soft); color: var(--pink-dark); }
.case-facts { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; margin: 30px 0 0; padding-top: 20px; border-top: 1px solid rgba(216,81,125,0.17); }
.case-facts div { min-width: 0; padding: 12px; background: rgba(255,240,245,0.72); border-radius: 14px; }
.case-facts dt { color: var(--pink-dark); font-size: 0.69rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
.case-facts dd { margin: 5px 0 0; color: var(--ink); font-size: 0.84rem; font-weight: 700; line-height: 1.35; }
.case-facts span, .case-facts strong { display: block; }
.case-facts span { color: var(--pink-dark); font-size: 0.69rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
.case-facts strong { margin-top: 5px; color: var(--ink); font-size: 0.84rem; line-height: 1.35; }
.case-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 16px; margin-top: 28px; }
.case-live-button { min-height: 48px; margin-top: 28px; color: #fff; background: var(--pink); box-shadow: 0 14px 32px rgba(216,81,125,0.24); }
.case-live-button:hover { background: var(--pink-dark); }
.case-domain { color: var(--pink-dark); font-size: 0.86rem; font-weight: 800; border-bottom: 1px solid rgba(159,54,93,0.3); }
.case-visual-current { position: relative; z-index: 0; display: block; min-width: 0; overflow: hidden; padding: clamp(20px, 3vw, 38px); background: linear-gradient(145deg, #fff, #fff1f6); }
.case-visual-current img { width: 100%; height: auto; aspect-ratio: auto; object-fit: contain; }
.case-visual-current > span { position: absolute; right: 24px; bottom: 20px; display: inline-flex; align-items: center; gap: 10px; padding: 10px 14px; color: var(--ink); background: rgba(255,255,255,0.9); border: 1px solid rgba(216,81,125,0.14); border-radius: 999px; font-size: 0.82rem; font-weight: 800; box-shadow: 0 10px 24px rgba(159,54,93,0.12); backdrop-filter: blur(12px); }
.case-story { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px 60px; padding-top: 10px; }
.story-column { padding: 36px; background: rgba(255,240,245,0.72); border: 1px solid rgba(216,81,125,0.13); border-radius: var(--radius); }
.feature-list { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid rgba(216,81,125,0.16); border-radius: var(--radius); overflow: hidden; }
.feature-list > div { min-height: 190px; padding: 28px; border-right: 1px solid rgba(216,81,125,0.13); border-bottom: 1px solid rgba(216,81,125,0.13); }
.feature-list > div:nth-child(3n) { border-right: 0; }
.feature-list > div:nth-last-child(-n+3) { border-bottom: 0; }
.feature-list span { color: var(--pink); font-weight: 800; font-size: 0.78rem; }
.feature-list strong { display: block; margin: 12px 0 8px; font-family: "Manrope", sans-serif; }
.feature-list p { color: var(--muted); font-size: 0.94rem; }
.feature-list-compact { grid-template-columns: repeat(4, 1fr); }
.feature-list-compact > div { min-height: 170px; border-bottom: 0; }
.feature-list-compact > div:nth-child(3) { border-right: 1px solid rgba(216,81,125,0.13); }
.feature-list-compact > div:last-child { border-right: 0; }
.case-outcome { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: end; gap: 48px; margin-bottom: clamp(88px, 10vw, 148px); padding-top: clamp(44px, 6vw, 72px); padding-bottom: clamp(44px, 6vw, 72px); color: #fff; background: linear-gradient(135deg, var(--deep), var(--teal-dark)); border-radius: 32px; box-shadow: 0 30px 80px rgba(29,48,58,0.16); }
.case-outcome > div:first-child { max-width: 760px; }
.case-outcome h3 { font-size: clamp(2rem, 4vw, 3.5rem); }
.case-outcome p:not(.eyebrow) { color: #d3dfdf; font-size: 1.05rem; }
.case-outcome-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 18px; min-width: 220px; }
.case-outcome-actions .text-link { margin: 0; color: #c9f0e9; }
.case-gallery { display: grid; grid-template-columns: 1.1fr 0.55fr 0.75fr; gap: 18px; padding-top: 10px; }
.case-gallery figure { margin: 0; overflow: hidden; border-radius: var(--radius); background: var(--pink-soft); }
.case-gallery img { height: 100%; object-fit: cover; }
.gallery-wide img { object-fit: cover; object-position: center; }
.gallery-tall img { min-height: 420px; }
.gallery-screens { grid-column: 1 / -1; padding: clamp(18px, 3vw, 34px); background: linear-gradient(135deg, #fff, #fff0f5) !important; border: 1px solid rgba(216,81,125,0.14); }
.gallery-screens img { height: auto; object-fit: contain; }
.live-product { padding-top: 24px; }
.live-product-heading { display: flex; align-items: end; justify-content: space-between; gap: 32px; margin-bottom: 34px; }
.live-product-heading > div { max-width: 780px; }
.live-product-heading h3 { margin-bottom: 0; font-size: clamp(2rem, 4vw, 3.6rem); }
.live-site-link { flex: 0 0 auto; margin: 0 0 8px; color: var(--pink-dark); }
.live-hero-shot { position: relative; display: block; overflow: hidden; border-radius: 32px; box-shadow: 0 28px 70px rgba(159,54,93,0.13); }
.live-hero-shot::after { content: ""; position: absolute; inset: 45% 0 0; background: linear-gradient(transparent, rgba(37,22,28,0.74)); }
.live-hero-shot img { aspect-ratio: 2 / 1; object-fit: cover; transition: transform 650ms ease; }
.live-hero-shot:hover img { transform: scale(1.025); }
.live-hero-shot > span { position: absolute; z-index: 1; right: 26px; bottom: 24px; left: 26px; display: flex; justify-content: space-between; gap: 20px; color: #fff; font-family: "Manrope", sans-serif; font-size: clamp(1rem,2vw,1.3rem); font-weight: 800; }
.live-mobile-showcase { display: grid; grid-template-columns: minmax(0,1fr) 300px; align-items: center; gap: clamp(24px,4vw,54px); margin: 22px 0; padding: clamp(24px,4vw,52px); overflow: hidden; background: #fff; border: 1px solid rgba(216,81,125,0.14); border-radius: 32px; }
.live-mobile-showcase img { min-width: 0; }
.live-mobile-showcase figcaption strong, .live-mobile-showcase figcaption span { display: block; }
.live-mobile-showcase figcaption strong { font-family: "Manrope",sans-serif; font-size: 1.45rem; line-height: 1.25; }
.live-mobile-showcase figcaption span { margin-top: 12px; color: var(--muted); }
.live-feature-gallery { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.live-feature-gallery a { position: relative; min-height: 290px; overflow: hidden; border-radius: 22px; background: var(--pink-soft); }
.live-feature-gallery a::after { content: ""; position: absolute; inset: 45% 0 0; background: linear-gradient(transparent,rgba(38,22,29,0.82)); }
.live-feature-gallery img { height: 100%; object-fit: cover; transition: transform 500ms ease; }
.live-feature-gallery a:hover img { transform: scale(1.045); }
.live-feature-gallery span { position: absolute; z-index: 1; right: 18px; bottom: 16px; left: 18px; display: flex; justify-content: space-between; gap: 10px; color: #fff; font-weight: 800; }
.case-result { display: flex; flex-direction: column; justify-content: center; padding: clamp(28px, 4vw, 48px); background: var(--deep); color: #fff; border-radius: var(--radius); }
.case-result p { color: #c7d4d7; }
.text-link { margin-top: 24px; color: #ffd1df; font-weight: 800; }

.project-section { background: var(--paper); }
.section-heading { max-width: 800px; margin-bottom: 46px; }
.project-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.project-card { overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 18px 45px rgba(29,48,58,0.07); transition: transform 260ms ease, box-shadow 260ms ease; }
.project-card:hover { transform: translateY(-7px); box-shadow: 0 28px 70px rgba(29,48,58,0.14); }
.project-card-wide { grid-column: 1 / -1; display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr); }
.project-media { display: grid; place-items: center; min-height: 360px; overflow: hidden; background: #efe9e1; }
.project-media img { height: 100%; object-fit: cover; }
.project-media.contain img { object-fit: contain; padding: 24px; }
.project-media.square { aspect-ratio: 16 / 10; }
.project-media.landscape { aspect-ratio: 16 / 9; }
.fellowu-card { border-color: rgba(255, 100, 91, 0.2); }
.fellowu-media { min-height: 440px; padding: clamp(24px, 4vw, 54px); background: #fff9f2; }
.fellowu-preview { width: min(100%, 760px); padding: clamp(26px, 4vw, 46px); color: #132347; background: linear-gradient(145deg, #fff 0%, #fff9f2 55%, #e7f8f3 100%); border: 1px solid #dbe3ed; border-radius: 30px; box-shadow: 0 28px 65px rgba(19, 35, 71, 0.14); transition: transform 300ms ease, box-shadow 300ms ease; }
.fellowu-media:hover .fellowu-preview { transform: translateY(-5px) rotate(-0.4deg); box-shadow: 0 34px 80px rgba(19, 35, 71, 0.19); }
.fellowu-preview-top { display: flex; align-items: baseline; justify-content: space-between; gap: 24px; padding-bottom: 24px; border-bottom: 1px solid #e3e8ef; }
.fellowu-preview-top strong { font-family: "Manrope", sans-serif; font-size: clamp(2rem, 4vw, 3.35rem); letter-spacing: -0.07em; }
.fellowu-preview-top strong span { color: #ff645b; }
.fellowu-preview-top small { color: #64718b; font-weight: 700; }
.fellowu-preview-copy { max-width: 620px; padding: 34px 0 28px; }
.fellowu-preview-copy > span { color: #ff645b; font-size: 0.72rem; font-weight: 900; letter-spacing: 0.15em; }
.fellowu-preview-copy h3 { max-width: 650px; margin: 10px 0 0; font-family: "Manrope", sans-serif; font-size: clamp(1.7rem, 3vw, 2.75rem); line-height: 1.08; }
.fellowu-preview-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.fellowu-preview-cards div { padding: 18px; background: rgba(255,255,255,0.82); border: 1px solid #dce4ed; border-radius: 17px; }
.fellowu-preview-cards b, .fellowu-preview-cards small { display: block; }
.fellowu-preview-cards small { margin-top: 6px; color: #64718b; }
.project-copy { padding: clamp(24px, 4vw, 40px); }
.project-copy p { color: var(--muted); }
.project-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 15px; }
.project-meta .project-type { margin: 0; }
.project-number { display: inline-grid; place-items: center; width: 34px; height: 34px; flex: 0 0 34px; border-radius: 50%; color: #fff; background: var(--deep); font-family: "Manrope", sans-serif; font-size: 0.7rem; font-weight: 800; }
.project-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 24px; color: var(--teal-dark); font-weight: 800; border-bottom: 1px solid rgba(21,88,80,0.28); transition: gap 180ms ease, color 180ms ease; }
.project-link:hover { gap: 12px; color: var(--teal); }

.about { max-width: none; display: grid; grid-template-columns: minmax(0, 0.76fr) minmax(320px, 1fr); gap: clamp(50px, 8vw, 130px); padding-left: max(24px, calc((100vw - var(--max)) / 2 + 24px)); padding-right: max(24px, calc((100vw - var(--max)) / 2 + 24px)); background: var(--deep); color: #fff; }
.about-copy { color: #c7d4d7; }
.about-copy p + p { margin-top: 22px; }
.about-lead { color: #fff !important; font-family: "Manrope", sans-serif; font-size: clamp(1.3rem, 2vw, 1.65rem) !important; font-weight: 700; }
.skills { background: #fff; }
.skill-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.skill-grid article { min-height: 235px; padding: 28px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); transition: background 180ms ease, transform 180ms ease; }
.skill-grid article:hover { background: var(--mint); transform: translateY(-4px); }
.skill-grid article > span { color: var(--teal); font-size: 0.78rem; font-weight: 800; }
.skill-grid h3 { margin-top: 40px; }
.skill-grid p { color: var(--muted); }

.contact { max-width: none; padding-left: max(24px, calc((100vw - var(--max)) / 2 + 24px)); padding-right: max(24px, calc((100vw - var(--max)) / 2 + 24px)); background: var(--paper); }
.contact-card { position: relative; overflow: hidden; max-width: var(--max); margin: 0 auto; padding: clamp(54px, 8vw, 104px); text-align: center; background: linear-gradient(135deg, var(--teal-dark), var(--deep)); color: #fff; border-radius: 36px; box-shadow: 0 34px 90px rgba(21, 88, 80, 0.2); }
.contact-card::before { content: ""; position: absolute; width: 20rem; height: 20rem; top: -12rem; right: -6rem; border-radius: 50%; background: rgba(255,255,255,0.07); }
.contact-card h2, .contact-card > p { max-width: 860px; margin-left: auto; margin-right: auto; }
.contact-card > p { color: #d8ebe8; }
.contact-actions { justify-content: center; }
.contact-primary { color: var(--deep); background: #fff; }
.contact-secondary { color: #fff; border: 1px solid rgba(255,255,255,0.36); }
footer { display: flex; justify-content: space-between; gap: 20px; padding: 28px max(24px, calc((100vw - var(--max)) / 2 + 24px)); color: var(--muted); border-top: 1px solid var(--line); }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity 600ms ease, transform 600ms ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } .reveal { opacity: 1; transform: none; transition: none; } }

@media (max-width: 1040px) {
  .hero, .case-hero, .about { grid-template-columns: 1fr; }
  .hero { padding-top: 70px; }
  .hero-portrait { max-width: 620px; }
  .case-intro { max-width: 780px; }
  .case-gallery { grid-template-columns: 1fr 1fr; }
  .case-result { grid-column: 1 / -1; }
  .project-card-wide { grid-template-columns: 1fr; }
  .skill-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .site-header { grid-template-columns: auto 1fr auto; padding: 12px 18px; }
  .header-action { display: none; }
  .menu-button { display: block; grid-column: 3; }
  .nav { position: fixed; inset: 76px 0 auto; display: grid; gap: 0; padding: 18px; background: rgba(247,244,239,0.98); border-bottom: 1px solid var(--line); transform: translateY(-130%); transition: transform 220ms ease; }
  .nav.is-open { transform: translateY(0); }
  .nav a { padding: 15px 8px; border-bottom: 1px solid var(--line); }
  .fellowu-media { min-height: 340px; padding: 18px; }
  .fellowu-preview { padding: 24px; border-radius: 24px; }
  .fellowu-preview-top { align-items: flex-start; flex-direction: column; gap: 4px; }
  .fellowu-preview-cards { grid-template-columns: 1fr; }
  .menu-button[aria-expanded="true"] > span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-button[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
  .menu-button[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .section { padding: 68px 18px; }
  h1 { font-size: clamp(2.8rem, 15vw, 4.5rem); }
  h2 { font-size: clamp(2.25rem, 11vw, 3.6rem); }
  .hero { min-height: auto; gap: 46px; }
  .headline-accent { display: inline; }
  .hero-proof { grid-template-columns: 1fr; gap: 14px; }
  .portrait-frame, .portrait-frame img { height: 430px; min-height: 430px; }
  .availability-card { right: 14px; bottom: 18px; }
  .case-story, .project-grid, .skill-grid { grid-template-columns: 1fr; }
  .feature-list { grid-template-columns: 1fr; }
  .feature-list > div { min-height: auto; border-right: 0; border-bottom: 1px solid rgba(216,81,125,0.13) !important; }
  .feature-list > div:last-child { border-bottom: 0 !important; }
  .feature-list-compact { grid-template-columns: 1fr; }
  .feature-list-compact > div { border-right: 0 !important; border-bottom: 1px solid rgba(216,81,125,0.13) !important; }
  .feature-list-compact > div:last-child { border-bottom: 0 !important; }
  .case-gallery { grid-template-columns: 1fr; }
  .gallery-tall img { min-height: 360px; }
  .case-result { grid-column: auto; }
  .gallery-screens { grid-column: auto; }
  .case-facts { grid-template-columns: 1fr; gap: 16px; }
  .case-outcome { width: calc(100% - 36px); grid-template-columns: 1fr; align-items: start; margin-right: 18px; margin-left: 18px; }
  .case-outcome-actions { min-width: 0; }
  .live-product-heading { display: block; }
  .live-site-link { display: inline-flex; margin-top: 18px; }
  .live-mobile-showcase { grid-template-columns: 1fr; }
  .live-feature-gallery { grid-template-columns: repeat(2,1fr); }
  .live-feature-gallery a { min-height: 250px; }
  .project-card-wide { display: block; }
  .project-media { min-height: 260px; }
  .about { padding-left: 18px; padding-right: 18px; }
  .hero-actions, .contact-actions { flex-direction: column; }
  .button { width: 100%; }
  footer { flex-direction: column; }
}

@media (max-width: 430px) {
  .case-visual img { aspect-ratio: 1 / 1; }
  .story-column, .project-copy, .skill-grid article { padding: 22px; }
  .case-gallery { gap: 12px; }
  .live-feature-gallery { grid-template-columns: 1fr; }
  .live-feature-gallery a { min-height: 270px; }
}
