/* =========================================================
   MIKAMIHO — public marketing site
   Structure: concept-1 (organic-earth) sections + DOM
   Visual language: concept-6 (cinematic-story) — dark, gold,
   grain, Fraunces / Instrument Sans, cinematic motion.
   ========================================================= */

:root {
  --black: #0a0a0a;
  --dark: #141416;
  --dark-2: #1c1c1f;
  --gold: #c4a35a;
  --gold-dim: rgba(196, 163, 90, 0.3);
  --gold-faint: rgba(196, 163, 90, 0.12);
  --cream: #e8e0d0;
  --grey: #8a857a;
  --white: #f5f2ed;

  --f-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --f-body: 'Instrument Sans', 'Helvetica Neue', Arial, sans-serif;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;

  --maxw: 1200px;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--f-body);
  font-weight: 400;
  color: var(--cream);
  background: var(--black);
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
ul { list-style: none; }
a { color: inherit; text-decoration: none; transition: color 0.4s var(--ease-out); }

/* ---------- FILM GRAIN OVERLAY ---------- */
.grain {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.04;
  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
}

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4 { font-family: var(--f-display); font-weight: 600; line-height: 1.12; }
em { font-style: italic; font-weight: 300; color: var(--gold); }

.section-tag {
  display: inline-block;
  font-family: var(--f-body);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: var(--space-sm);
  position: relative;
  padding-left: 2.4rem;
}
.section-tag::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 1.6rem;
  height: 1px;
  background: var(--gold);
}
.section-tag--light { color: var(--gold); }

.section-title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.1;
  color: var(--white);
  margin-bottom: var(--space-md);
}
.section-title--light { color: var(--white); }
.section-title em,
.section-title--light em { color: var(--gold); }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--f-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 1rem 2.2rem;
  border: 1px solid var(--gold);
  cursor: pointer;
  transition: background 0.4s var(--ease-out), color 0.4s var(--ease-out);
  background: transparent;
}
.btn--primary { background: var(--gold); color: var(--black); }
.btn--primary:hover { background: transparent; color: var(--gold); }
.btn--ghost { color: var(--gold); }
.btn--ghost:hover { background: var(--gold); color: var(--black); }
.btn--full { width: 100%; justify-content: center; }

::selection { background: var(--gold); color: var(--black); }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ==========================================================
   NAVIGATION
   ========================================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 40px;
  transition: background 0.6s var(--ease-out), padding 0.6s var(--ease-out);
}
.nav--scrolled {
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 16px 40px;
}
.nav__logo-img {
  height: 34px;
  width: auto;
  filter: invert(1) brightness(1.05) contrast(1.05);
  transition: opacity 0.4s;
}
.nav__logo:hover .nav__logo-img { opacity: 0.7; }

.nav__links { display: flex; align-items: center; gap: 32px; }
.nav__links a {
  font-family: var(--f-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--cream);
  position: relative;
}
.nav__links a:not(.nav__cta)::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 50%;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.4s var(--ease-out), left 0.4s var(--ease-out);
}
.nav__links a:not(.nav__cta):hover { color: var(--gold); }
.nav__links a:not(.nav__cta):hover::after { width: 100%; left: 0; }

.nav__cta {
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  padding: 8px 18px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 11px;
  transition: background 0.4s, color 0.4s;
}
.nav__cta:hover { background: var(--gold); color: var(--black) !important; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
  transition: transform 0.4s var(--ease-out), opacity 0.3s;
}
.nav__burger--active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav__burger--active span:nth-child(2) { opacity: 0; }
.nav__burger--active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ==========================================================
   HERO
   ========================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__photo { position: absolute; inset: 0; }
.hero__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  transition: transform 8s var(--ease-out);
}
.hero--loaded .hero__photo img { transform: scale(1); }
.hero__bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,0.35) 0%,
    rgba(10,10,10,0.45) 40%,
    rgba(10,10,10,0.92) 100%
  );
}
/* decorative shapes kept as faint gold orbs */
.hero__shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.25;
  z-index: 0;
}
.hero__shape--1 { width: 360px; height: 360px; background: var(--gold); top: 10%; right: 8%; }
.hero__shape--2 { width: 260px; height: 260px; background: #3a5a3f; bottom: 18%; left: 4%; opacity: 0.18; }
.hero__shape--3 { width: 200px; height: 200px; background: var(--gold); top: 40%; left: 30%; opacity: 0.1; }

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 40px 90px;
}
.hero__tag {
  font-family: var(--f-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.hero__title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(3rem, 9vw, 7.5rem);
  line-height: 1.02;
  color: var(--white);
  margin-bottom: 28px;
}
.hero__title em { font-weight: 300; font-style: italic; color: var(--gold); }
.hero__desc {
  max-width: 560px;
  font-size: 1.05rem;
  color: var(--cream);
  line-height: 1.8;
  margin-bottom: 36px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; }

.hero__scroll {
  position: absolute;
  bottom: 24px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero__scroll span {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--grey);
}
.hero__scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s var(--ease-in-out) infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.3; transform: scaleY(0.5); }
}

/* ==========================================================
   SHARED SECTION SHELL
   ========================================================== */
.services, .approach, .projects, .gallery, .about, .contact {
  padding: 120px 40px;
  position: relative;
}
.services__header, .projects__header, .gallery__header {
  max-width: var(--maxw);
  margin: 0 auto 60px;
}

/* ==========================================================
   SERVICES (split — two cards)
   ========================================================== */
.services { background: var(--black); }
.services__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.service-card {
  border: 1px solid var(--gold-faint);
  background: var(--dark);
  transition: border-color 0.5s var(--ease-out);
}
.service-card:hover { border-color: var(--gold-dim); }
.service-card__visual { position: relative; overflow: hidden; }
.service-card__img-wrap { aspect-ratio: 4 / 3; overflow: hidden; }
.service-card__img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}
.service-card:hover .service-card__img-wrap img { transform: scale(1.05); }
.service-card__number {
  position: absolute;
  top: 16px; right: 20px;
  font-family: var(--f-display);
  font-size: 2.4rem;
  color: var(--white);
  text-shadow: 0 2px 16px rgba(0,0,0,0.6);
  opacity: 0.9;
}
.service-card__content { padding: 36px 32px 40px; }
.service-card__content h3 {
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  color: var(--white);
  margin-bottom: 16px;
}
.service-card__content p { color: var(--cream); margin-bottom: 24px; }
.service-card__list { margin-bottom: 28px; }
.service-card__list li {
  position: relative;
  padding: 10px 0 10px 22px;
  font-size: 0.95rem;
  color: var(--cream);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.service-card__list li::before {
  content: '';
  position: absolute; left: 0; top: 18px;
  width: 8px; height: 1px; background: var(--gold);
}
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap 0.4s var(--ease-out);
}
.service-card__link:hover { gap: 1rem; }
.service-card__link svg { transition: transform 0.4s; }

/* ==========================================================
   APPROACH / STATS
   ========================================================== */
.approach {
  background: var(--dark);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: center;
  overflow: hidden;
}
.approach__bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.approach__circle {
  position: absolute;
  width: 520px; height: 520px;
  border-radius: 50%;
  border: 1px solid var(--gold-faint);
  top: -160px; right: -160px;
}
.approach__circle::before {
  content: '';
  position: absolute;
  inset: 60px;
  border-radius: 50%;
  border: 1px solid var(--gold-faint);
}
.approach__content { position: relative; z-index: 1; max-width: 620px; }
.approach__content p { color: var(--cream); font-size: 1.05rem; margin-top: 8px; }
.approach__stats {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.stat { border-left: 1px solid var(--gold-dim); padding-left: 24px; }
.stat__number {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 3.4rem;
  color: var(--gold);
  line-height: 1;
}
.stat__number::after { content: '+'; font-size: 0.5em; color: var(--gold-dim); }
.stat__label {
  display: block;
  margin-top: 6px;
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--grey);
}

/* ==========================================================
   PROJECTS / REALIZACE
   ========================================================== */
.projects { background: var(--black); }
.projects__tabs {
  max-width: var(--maxw);
  margin: 0 auto 48px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.projects__tab {
  font-family: var(--f-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--grey);
  background: transparent;
  border: 1px solid var(--gold-faint);
  padding: 10px 22px;
  cursor: pointer;
  transition: color 0.4s, border-color 0.4s, background 0.4s;
}
.projects__tab:hover { color: var(--gold); border-color: var(--gold-dim); }
.projects__tab.active { color: var(--black); background: var(--gold); border-color: var(--gold); }

.projects__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.project-card {
  border: 1px solid var(--gold-faint);
  background: var(--dark);
  overflow: hidden;
  transition: border-color 0.5s, transform 0.5s var(--ease-out);
}
.project-card:hover { border-color: var(--gold-dim); }
.project-card--wide { grid-column: span 2; }
.project-card--hidden { display: none; }
.project-card__img { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.project-card--wide .project-card__img { aspect-ratio: 16 / 9; }
.project-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-out);
}
.project-card:hover .project-card__img img { transform: scale(1.06); }
.project-card__badge {
  position: absolute;
  top: 14px; left: 14px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(10,10,10,0.75);
  padding: 5px 12px;
  border: 1px solid var(--gold-dim);
}
.project-card__info { padding: 22px 24px 26px; }
.project-card__info h4 {
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 8px;
}
.project-card__info p { font-size: 0.9rem; color: var(--grey); }

/* ==========================================================
   GALLERY (masonry)
   ========================================================== */
.gallery { background: var(--dark); }
.gallery__masonry {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 14px;
}
.gallery__item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--gold-faint);
  transition: border-color 0.4s;
}
.gallery__item:hover { border-color: var(--gold); }
.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }
.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}
.gallery__item:hover img { transform: scale(1.06); }
.gallery__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  background: linear-gradient(to top, rgba(10,10,10,0.85), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}
.gallery__item:hover .gallery__overlay { opacity: 1; }
.gallery__overlay span {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--gold);
}

/* ==========================================================
   ABOUT
   ========================================================== */
.about {
  background: var(--black);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about__content { max-width: 580px; }
.about__content p { color: var(--cream); margin-bottom: 18px; }
.about__content strong { color: var(--gold); font-weight: 600; }
.about__values { display: grid; gap: 32px; }
.value { border-top: 1px solid var(--gold-faint); padding-top: 24px; }
.value__icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--gold-dim);
  color: var(--gold);
  margin-bottom: 16px;
}
.value__icon svg { width: 24px; height: 24px; }
.value h4 { font-size: 1.2rem; color: var(--white); margin-bottom: 8px; }
.value p { font-size: 0.92rem; color: var(--grey); }

/* ==========================================================
   CONTACT
   ========================================================== */
.contact { background: var(--dark); overflow: hidden; }
.contact__bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.contact__leaf {
  position: absolute;
  width: 360px; height: 360px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.12;
}
.contact__leaf--1 { background: var(--gold); top: 5%; right: -3%; }
.contact__leaf--2 { background: #3a5a3f; bottom: 5%; left: -3%; }
.contact__content {
  position: relative;
  z-index: 1;
  max-width: var(--maxw);
  margin: 0 auto 56px;
}
.contact__content p { color: var(--cream); max-width: 560px; margin-top: 8px; }
.contact__grid {
  position: relative;
  z-index: 1;
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
}
.contact__form { display: flex; flex-direction: column; gap: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--grey);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--cream);
  font-family: var(--f-body);
  font-size: 0.95rem;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.4s var(--ease-out), background 0.4s;
  -webkit-appearance: none;
  appearance: none;
}
.form-group select { cursor: pointer; }
.form-group select option { background: var(--dark); color: var(--cream); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(196,163,90,0.05);
}

.contact__info { display: flex; flex-direction: column; gap: 28px; }
.contact__detail h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.contact__detail p { color: var(--cream); font-size: 0.95rem; }
.contact__detail a {
  color: var(--cream);
  border-bottom: 1px solid var(--gold-dim);
  transition: color 0.4s, border-color 0.4s;
}
.contact__detail a:hover { color: var(--gold); border-color: var(--gold); }

/* ==========================================================
   FOOTER
   ========================================================== */
.footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 70px 40px;
}
.footer__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.footer__brand { display: flex; align-items: center; gap: 20px; }
.footer__logo-img {
  height: 40px; width: auto;
  filter: invert(1) brightness(1.05);
  opacity: 0.7;
}
.footer__brand p { font-size: 0.85rem; color: var(--grey); line-height: 1.5; }
.footer__links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer__links a {
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--grey);
  transition: color 0.4s;
}
.footer__links a:hover { color: var(--gold); }
.footer__copy {
  width: 100%;
  text-align: center;
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--grey);
  opacity: 0.6;
  margin-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.04);
  padding-top: 24px;
}

/* ==========================================================
   LIGHTBOX
   ========================================================== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(10,10,10,0.94);
  padding: 5vw;
}
.lightbox--active { display: flex; }
.lightbox__close {
  position: absolute;
  top: 24px; right: 32px;
  background: none;
  border: none;
  color: var(--gold);
  font-size: 2.4rem;
  line-height: 1;
  cursor: pointer;
}
.lightbox__content { max-width: 90vw; max-height: 90vh; }
.lightbox__img {
  max-width: 100%;
  max-height: 90vh;
  border: 1px solid var(--gold-dim);
}

/* ==========================================================
   SCROLL ANIMATIONS
   ========================================================== */
[data-anim="fade-up"] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
[data-anim="fade-up"].visible { opacity: 1; transform: translateY(0); }

/* ==========================================================
   CMS EDIT MODE HINTS (overlay provided by cms-core)
   ========================================================== */
[data-cms-field] { transition: outline 0.2s; }

/* ==========================================================
   RESPONSIVE
   ========================================================== */
@media (max-width: 1024px) {
  .approach { grid-template-columns: 1fr; gap: 48px; }
  .approach__stats { flex-direction: row; flex-wrap: wrap; }
  .about { grid-template-columns: 1fr; gap: 48px; }
  .contact__grid { grid-template-columns: 1fr; gap: 48px; }
  .projects__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__masonry { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .nav { padding: 18px 24px; }
  .nav--scrolled { padding: 14px 24px; }
  .nav__links {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    gap: 36px;
    background: rgba(10,10,10,0.97);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s var(--ease-out);
  }
  .nav__links--open { opacity: 1; pointer-events: auto; }
  .nav__links a { font-size: 22px; }
  .nav__burger { display: flex; }

  .hero__content { padding: 0 24px 60px; }
  .services, .approach, .projects, .gallery, .about, .contact { padding: 80px 24px; }
  .services__grid { grid-template-columns: 1fr; }
  .projects__grid { grid-template-columns: 1fr; }
  .project-card--wide { grid-column: span 1; }
  .gallery__masonry { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .form-row { grid-template-columns: 1fr; }
  .footer__inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero__title { font-size: clamp(2.4rem, 13vw, 4rem); }
  .gallery__masonry { grid-template-columns: 1fr; }
  .gallery__item--wide, .gallery__item--tall { grid-column: span 1; grid-row: span 1; }
  .approach__stats { flex-direction: column; }
}
