/* =========================================
   MIRANDA FRIGON DESIGNS
   Brand Guide: April 2025
   "Come home to yourself."
   ========================================= */

:root {
  --warm-white:   #FDFCFB;
  --ivory:        #FAF7F2;
  --cream:        #F2EDE4;
  --blush:        #E8D5C8;
  --dusty-rose:   #C9A99A;
  --warm-taupe:   #8C7B70;
  --deep-brown:   #3D2020;   /* burgundy/wine anchor */
  --champagne:    #EDE0CD;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Jost', system-ui, sans-serif;

  --section-gap: 110px;
  --max-width: 1200px;
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-weight: 200;
  background: var(--warm-white);
  color: var(--deep-brown);
  font-size: 16px;
  line-height: 1.75;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 48px;
}
.section { padding: var(--section-gap) 0; }
.center { text-align: center; }

/* TYPOGRAPHY */
.section__eyebrow {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--dusty-rose);
  margin-bottom: 20px;
  display: block;
}
.section__title {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--deep-brown);
  margin-bottom: 32px;
  max-width: 640px;
}
.section__title.center { margin-left: auto; margin-right: auto; }
p { max-width: 640px; font-weight: 200; color: var(--warm-taupe); }

/* BUTTONS */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 15px 36px;
  border: 1px solid currentColor;
  border-radius: 2px;
  transition: background 0.35s, color 0.35s, border-color 0.35s;
  cursor: pointer;
  background: transparent;
}
.btn--light {
  color: var(--warm-white);
  border-color: rgba(253,252,251,0.5);
}
.btn--light:hover {
  background: var(--warm-white);
  color: var(--deep-brown);
  border-color: var(--warm-white);
}
.btn--dark {
  color: var(--deep-brown);
  border-color: var(--dusty-rose);
}
.btn--dark:hover {
  background: var(--deep-brown);
  color: var(--warm-white);
  border-color: var(--deep-brown);
}
.btn--rose {
  color: var(--dusty-rose);
  border-color: var(--dusty-rose);
}
.btn--rose:hover {
  background: var(--dusty-rose);
  color: var(--warm-white);
}
.btn--full { width: 100%; text-align: center; }

/* =========================================
   NAV
   ========================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 48px;
  background: linear-gradient(to bottom, rgba(20,8,8,0.55) 0%, transparent 100%);
  transition: transform 0.4s ease, background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}
.nav.scrolled {
  background: var(--warm-white);
  padding: 16px 48px;
  box-shadow: 0 1px 24px rgba(61,32,32,0.06);
}
.nav.hidden { transform: translateY(-100%); }

.nav__logo {
  display: block;
  text-decoration: none;
}
.nav__logo-img {
  height: 88px;
  width: auto;
  /* Transparent PNG: logo is black, invert to blush-white on dark hero */
  filter: invert(1) sepia(1) saturate(0.4) brightness(1.1);
  transition: filter 0.4s, height 0.4s;
}
.nav.scrolled .nav__logo-img {
  /* On light nav: show logo in deep burgundy */
  filter: invert(1) sepia(1) saturate(6) hue-rotate(300deg) brightness(0.35);
  height: 72px;
}

.nav__links {
  display: flex;
  gap: 40px;
  align-items: center;
}
.nav__links a {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(253,252,251,0.95);
  transition: color 0.3s;
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}
.nav.scrolled .nav__links a { color: var(--warm-taupe); }
.nav__links a:hover { color: var(--dusty-rose); }
.nav__cta {
  border: 1px solid rgba(253,252,251,0.4) !important;
  padding: 11px 28px;
  border-radius: 2px;
  color: var(--warm-white) !important;
}
.nav.scrolled .nav__cta {
  border-color: var(--dusty-rose) !important;
  color: var(--dusty-rose) !important;
}
.nav__cta:hover {
  background: var(--dusty-rose) !important;
  color: var(--warm-white) !important;
  border-color: var(--dusty-rose) !important;
}
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 101;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--warm-white);
  transition: background 0.4s;
}
.nav.scrolled .nav__toggle span { background: var(--deep-brown); }

/* =========================================
   HERO
   ========================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('images/hero.jpg');
  background-size: 92%;
  background-position: center 38%;
  background-color: var(--deep-brown);
  background-repeat: no-repeat;
  z-index: 0;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(61,32,32,0.78) 0%,
    rgba(61,32,32,0.3) 45%,
    rgba(61,32,32,0.08) 100%
  );
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 48px 100px;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeIn 1.2s ease 0.3s forwards;
}
@keyframes heroFadeIn {
  to { opacity: 1; transform: translateY(0); }
}
.hero__headline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--warm-white);
  margin-bottom: 16px;
  max-width: 700px;
}
.hero__tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.8rem, 3.5vw, 3.2rem);
  font-weight: 300;
  color: var(--blush);
  margin-bottom: 48px;
  display: block;
}
.hero__scroll {
  position: absolute;
  right: 48px;
  bottom: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(253,252,251,0.35);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 2;
}
.hero__scroll-line {
  width: 1px;
  height: 60px;
  background: rgba(253,252,251,0.25);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.8; }
}

/* =========================================
   PRESS RIBBON
   ========================================= */
.press {
  background: var(--cream);
  padding: 20px 0;
  text-align: center;
  border-top: 1px solid var(--champagne);
  border-bottom: 1px solid var(--champagne);
}
.press__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.press__label {
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--dusty-rose);
}
.press__item {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--warm-taupe);
  font-weight: 300;
}
.press__dot { color: var(--blush); }

/* =========================================
   ABOUT
   ========================================= */
.about { background: var(--ivory); }
.about__grid {
  display: grid;
  grid-template-columns: 0.45fr 1fr;
  gap: 72px;
  align-items: center;
}
.about__image-wrap { position: relative; }
.about__photo {
  width: 100%;
  max-height: 540px;
  object-fit: cover;
  object-position: center 18%;
  display: block;
}
.about__image-accent {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 120px;
  height: 120px;
  border: 1px solid var(--blush);
  z-index: -1;
}
.about__text { padding-top: 16px; }
.about__opening {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 300;
  color: var(--deep-brown);
  line-height: 1.25;
  margin-bottom: 32px;
  max-width: 520px;
}
.about__text p {
  margin-bottom: 20px;
  font-size: 15px;
}
.about__philosophy {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--dusty-rose);
  margin: 36px 0;
  display: block;
}
.about__credential {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--warm-taupe);
  font-weight: 300;
  margin-bottom: 40px;
  display: block;
}

/* =========================================
   SERVICES
   ========================================= */
.services { background: var(--deep-brown); }
.services .section__eyebrow { color: var(--dusty-rose); }
.services .section__title { color: var(--warm-white); }
.services__intro {
  font-size: 1rem;
  font-weight: 200;
  color: rgba(253,252,251,0.55);
  margin: 0 auto 72px;
  text-align: center;
  max-width: 520px;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.1);
}
.services__card {
  background: var(--deep-brown);
  padding: 64px 44px;
  transition: background 0.3s;
}
.services__card:hover { background: rgba(255,255,255,0.04); }
.services__number {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 3rem;
  font-weight: 300;
  color: var(--dusty-rose);
  line-height: 1;
  margin-bottom: 20px;
  display: block;
}
.services__card h3 {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--warm-white);
  margin-bottom: 8px;
  line-height: 1.2;
}
.services__where {
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dusty-rose);
  margin-bottom: 24px;
  display: block;
}
.services__card > p {
  font-size: 14px;
  font-weight: 200;
  color: rgba(253,252,251,0.62);
  line-height: 1.8;
  max-width: 100%;
  margin-bottom: 20px;
}
.services__method {
  margin-bottom: 24px;
}
.services__method-title {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 300;
  color: rgba(253,252,251,0.9);
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.services__method-desc {
  font-size: 13px;
  font-weight: 200;
  color: rgba(253,252,251,0.6);
  max-width: 100%;
  margin-bottom: 0;
}
.services__card ul { margin-top: 8px; }
.services__card li {
  font-size: 13px;
  font-weight: 200;
  color: rgba(253,252,251,0.62);
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  gap: 10px;
}
.services__card li::before {
  content: '◦';
  font-size: 18px;
  line-height: 1;
  color: var(--dusty-rose);
  flex-shrink: 0;
}
.services__card li:last-child { border-bottom: none; }

/* =========================================
   BLUSH ACCENTS — section dividers & warmth
   ========================================= */
.about { border-bottom: 1px solid var(--blush); }
.portfolio { border-bottom: 1px solid var(--blush); }
.contact { border-top: 1px solid var(--blush); }

/* Blush rule between sections */
.section-rule {
  height: 1px;
  background: var(--blush);
  opacity: 0.6;
}

/* =========================================
   PORTFOLIO
   ========================================= */
.portfolio { background: var(--ivory); }
.portfolio__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 300px;
  gap: 3px;
  margin-top: 64px;
}
.portfolio__item { overflow: hidden; position: relative; }
.portfolio__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
  display: block;
}
.portfolio__item:hover .portfolio__img { transform: scale(1.04); }
/* Main portfolio — 3 projects */
.portfolio__item:nth-child(1) { grid-column: span 7; grid-row: span 2; }
.portfolio__item:nth-child(2) { grid-column: span 5; }
.portfolio__item:nth-child(3) { grid-column: span 5; }
/* Kids page — portrait photos, 2-column layout, show full image */
.portfolio__grid--kids {
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: auto;
}
.portfolio__grid--kids .portfolio__item {
  aspect-ratio: 9 / 16;
  grid-column: span 1 !important;
  grid-row: span 1 !important;
}

.portfolio__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  transition: transform 0.7s ease;
  position: relative;
  cursor: pointer;
}
.portfolio__item:hover .portfolio__placeholder { transform: scale(1.04); }

.portfolio__p1 { background: linear-gradient(160deg, var(--champagne) 0%, var(--blush) 100%); }
.portfolio__p2 { background: linear-gradient(160deg, var(--cream) 0%, var(--dusty-rose) 100%); }
.portfolio__p3 { background: linear-gradient(160deg, var(--blush) 0%, var(--warm-taupe) 100%); }
.portfolio__p4 { background: linear-gradient(160deg, var(--ivory) 0%, var(--champagne) 100%); }
.portfolio__p5 { background: linear-gradient(160deg, var(--dusty-rose) 0%, var(--deep-brown) 100%); }
.portfolio__p6 { background: linear-gradient(160deg, var(--cream) 0%, var(--blush) 100%); }

.portfolio__label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 24px;
  background: linear-gradient(to top, rgba(61,32,32,0.6) 0%, transparent 100%);
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.portfolio__project-name {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--warm-white);
  font-weight: 300;
}
.portfolio__project-type {
  font-size: 9px;
  color: rgba(253,252,251,0.6);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 300;
}
.portfolio__footer {
  padding: 48px 0 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.portfolio__footer p {
  font-size: 13px;
  color: var(--warm-taupe);
  font-weight: 200;
  margin: 0 auto;
}
.portfolio__footer a {
  color: var(--dusty-rose);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* =========================================
   CTA BAND
   ========================================= */
.cta-band {
  background: var(--deep-brown);
  padding: 120px 0;
  text-align: center;
}
.cta-band .section__eyebrow { color: var(--dusty-rose); }
.cta-band__headline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--warm-white);
  line-height: 1.15;
  margin: 0 auto 48px;
  max-width: 700px;
}
.cta-band__press {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 40px;
  padding: 12px 28px;
  border: 1px solid rgba(201,169,154,0.3);
  border-radius: 2px;
}
.cta-band__press-icon {
  font-size: 14px;
  color: var(--dusty-rose);
}
.cta-band__press-text {
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(253,252,251,0.5);
  max-width: none;
}

/* =========================================
   CONTACT
   ========================================= */
.contact { background: var(--cream); }
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact__text > p {
  color: var(--warm-taupe);
  font-weight: 200;
  margin-bottom: 40px;
}
.contact__locations {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  align-items: center;
}
.contact__locations span {
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--warm-taupe);
}
.contact__locations .dot { color: var(--dusty-rose); }
.contact__info {
  display: flex;
  flex-direction: column;
  margin-bottom: 48px;
}
.contact__link {
  display: flex;
  flex-direction: column;
  padding: 18px 0;
  border-bottom: 1px solid var(--champagne);
  transition: color 0.2s;
}
.contact__link:first-child { border-top: 1px solid var(--champagne); }
.contact__link:hover { color: var(--dusty-rose); }
.contact__link-label {
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--dusty-rose);
  margin-bottom: 4px;
  font-weight: 300;
}
.contact__link span:last-child {
  font-size: 15px;
  font-weight: 200;
  color: var(--deep-brown);
}
.contact__photo {
  width: 180px;
  height: 240px;
  object-fit: cover;
  object-position: top;
  margin-top: 40px;
}
.contact__form-wrap {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.contact__form {
  background: var(--ivory);
  padding: 56px;
}
.form__group { margin-bottom: 28px; }
.form__group label {
  display: block;
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--warm-taupe);
  margin-bottom: 12px;
  font-weight: 300;
}
.form__group input,
.form__group select,
.form__group textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--champagne);
  padding: 12px 0;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 200;
  color: var(--deep-brown);
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  border-radius: 0;
}
.form__group select { cursor: pointer; background: transparent; }
.form__group textarea { resize: vertical; min-height: 100px; }
.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus { border-bottom-color: var(--dusty-rose); }
.form__note {
  font-size: 11px;
  color: var(--warm-taupe);
  text-align: center;
  margin-top: 16px;
  font-weight: 200;
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
  background: var(--deep-brown);
  padding: 80px 0 48px;
}
.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  text-align: center;
}
.footer__logo-img {
  height: 60px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}
.footer__tagline {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--dusty-rose);
  display: block;
  margin-top: 8px;
}
.footer__nav {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer__nav a {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(253,252,251,0.3);
  transition: color 0.2s;
  font-weight: 300;
}
.footer__nav a:hover { color: var(--dusty-rose); }
.footer__copy {
  font-size: 10px;
  color: rgba(253,252,251,0.18);
  letter-spacing: 0.08em;
  font-weight: 200;
}
.footer__photo-credit {
  font-size: 10px;
  color: rgba(253,252,251,0.25);
  letter-spacing: 0.1em;
  font-style: italic;
  font-family: var(--font-serif);
  font-weight: 300;
}

/* =========================================
   LIGHTBOX
   ========================================= */
#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  align-items: center;
  justify-content: center;
}
#lightbox.lb-open { display: flex; }

.lb-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(30,10,10,0.92);
  backdrop-filter: blur(4px);
}
.lb-img-wrap {
  position: relative;
  z-index: 2;
  max-width: 90vw;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.lb-img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  display: block;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5);
}
.lb-caption {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.lb-caption-name {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--warm-white);
}
.lb-caption-type {
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dusty-rose);
}
.lb-close {
  position: absolute;
  top: 24px;
  right: 28px;
  z-index: 3;
  background: none;
  border: 1px solid rgba(253,252,251,0.25);
  color: var(--warm-white);
  font-size: 18px;
  width: 44px;
  height: 44px;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lb-close:hover { background: rgba(253,252,251,0.1); border-color: rgba(253,252,251,0.5); }
.lb-prev,
.lb-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background: none;
  border: 1px solid rgba(253,252,251,0.2);
  color: var(--warm-white);
  font-size: 20px;
  width: 48px;
  height: 48px;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lb-prev { left: 20px; }
.lb-next { right: 20px; }
.lb-prev:hover,
.lb-next:hover { background: rgba(253,252,251,0.1); border-color: rgba(253,252,251,0.4); }

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
  .portfolio__grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 280px;
  }
  .portfolio__item:nth-child(n) { grid-column: span 1; grid-row: span 1; }
  .portfolio__item:nth-child(1) { grid-column: span 2; }
  .services__grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --section-gap: 80px; }
  .container { padding: 0 28px; }
  .nav { padding: 16px 28px; }
  .nav.scrolled { padding: 14px 28px; }

  .nav__logo-img { height: 56px; }
  .nav.scrolled .nav__logo-img { height: 48px; }

  .nav__links {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--deep-brown);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    z-index: 99;
  }
  .nav__links.open { display: flex; }
  .nav__links a { font-size: 14px; color: rgba(253,252,251,0.8) !important; }
  .nav__toggle { display: flex; }

  .hero__content { padding: 0 28px 80px; }
  .hero__scroll { right: 28px; bottom: 80px; }

  .about__grid,
  .contact__grid { grid-template-columns: 1fr; gap: 48px; }
  .about__image-accent { display: none; }

  .portfolio__grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }
  .portfolio__item:nth-child(n) { grid-column: span 1; }

  /* Kids grid stays 1-column on mobile, all portrait */
  .portfolio__grid--kids {
    grid-template-columns: 1fr;
  }
  .portfolio__grid--kids .portfolio__item:nth-child(5) {
    grid-column: span 1 !important;
    aspect-ratio: 9 / 16;
  }

  .contact__form { padding: 36px 24px; }
  .cta-band { padding: 80px 0; }
  .press__inner { gap: 16px; }
}

@media (max-width: 480px) {
  .footer__nav { gap: 20px; }
}
