/* ============================================================
   NK-visuals — editorial portrait photography
   Palette: warm cream + ink + terracotta accent
   ============================================================ */

:root {
  --cream: #f4ede2;
  --cream-2: #ece2d2;
  --paper: #faf6ef;
  --ink: #14130f;
  --ink-2: #2a2722;
  --muted: #6b655c;
  --line: #d8cdb9;
  --accent: #b4533a;       /* terracotta */
  --accent-deep: #8b3d29;
  --accent-soft: #e9c9b8;
  --gold: #c89b56;

  --shadow-sm: 0 2px 14px rgba(20,19,15,0.05);
  --shadow-md: 0 24px 60px -20px rgba(20,19,15,0.25);
  --shadow-lg: 0 40px 80px -30px rgba(20,19,15,0.35);

  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 22px;

  --serif: 'Fraunces', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--ink); color: var(--cream);
  padding: 10px 16px; z-index: 999;
}
.skip:focus { left: 8px; top: 8px; }

.wrap {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ============ Typography ============ */

h1,h2,h3,h4 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.05;
  margin: 0;
  color: var(--ink);
}
h1.display {
  font-size: clamp(2.6rem, 6.4vw, 5.4rem);
  font-weight: 500;
  line-height: 1;
}
h1.display em {
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
}
h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 500;
}
h2 em { font-style: italic; color: var(--accent); font-weight: 400; }
h3 { font-size: 1.35rem; }
h4 { font-size: 0.85rem; font-family: var(--sans); letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); font-weight: 600; }

.lede {
  font-size: clamp(1.05rem, 1.2vw, 1.2rem);
  color: var(--ink-2);
  max-width: 56ch;
  line-height: 1.6;
}
.muted { color: var(--muted); }
.small { font-size: 0.875rem; }
.kicker {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent-deep);
  font-weight: 600;
  margin: 0 0 14px;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--ink-2);
  background: rgba(180,83,58,0.08);
  border: 1px solid rgba(180,83,58,0.18);
  padding: 8px 14px;
  border-radius: 100px;
  margin: 0 0 28px;
}
.eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(180,83,58,0.16);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 4px rgba(180,83,58,0.16); }
  50%     { box-shadow: 0 0 0 8px rgba(180,83,58,0.04); }
}

/* ============ Header / Nav ============ */

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250,246,239,0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  background: rgba(250,246,239,0.92);
}

.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 18px; padding-bottom: 18px;
  gap: 24px;
}
.brand {
  display: inline-flex; align-items: center; gap: 12px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.15rem;
  letter-spacing: -0.01em;
}
.brand-mark { display: inline-flex; color: var(--accent); }
.brand-text strong { font-weight: 600; }

.primary-nav {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.94rem;
}
.primary-nav a {
  padding: 10px 14px;
  color: var(--ink-2);
  position: relative;
  transition: color .2s var(--ease);
}
.primary-nav a:hover { color: var(--accent); }
.primary-nav a:not(.cta)::after {
  content: ""; position: absolute;
  left: 14px; right: 14px; bottom: 6px;
  height: 1px; background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease);
}
.primary-nav a:not(.cta):hover::after { transform: scaleX(1); }

.cta {
  background: var(--ink);
  color: var(--cream) !important;
  padding: 11px 18px !important;
  border-radius: 100px;
  margin-left: 10px;
  transition: background .25s var(--ease), transform .25s var(--ease);
}
.cta:hover { background: var(--accent); transform: translateY(-1px); }

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px;
  cursor: pointer;
  width: 44px; height: 44px;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px;
}
.nav-toggle span {
  display: block; width: 20px; height: 1.5px;
  background: var(--ink); transition: transform .3s var(--ease), opacity .2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ============ Buttons ============ */

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 100px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.btn-primary {
  background: var(--ink);
  color: var(--cream);
}
.btn-primary:hover { background: var(--accent); transform: translateY(-2px); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--cream); transform: translateY(-2px); }

/* ============ Hero ============ */

.hero {
  padding: clamp(48px, 8vw, 90px) 0 0;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(180,83,58,0.10), transparent 60%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}

.hero-copy { position: relative; z-index: 2; }

.hero-cta {
  display: flex; flex-wrap: wrap; gap: 14px;
  margin: 32px 0 44px;
}

.hero-meta {
  list-style: none; margin: 0; padding: 28px 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  border-top: 1px solid var(--line);
}
.hero-meta li {
  display: flex; flex-direction: column; gap: 4px;
}
.hero-meta strong {
  font-family: var(--serif); font-size: 2rem; font-weight: 500;
  color: var(--ink); line-height: 1;
}
.hero-meta span { font-size: 0.82rem; color: var(--muted); line-height: 1.4; }

.hero-stack {
  position: relative;
  height: clamp(440px, 56vw, 640px);
}
.hero-img {
  position: absolute;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  margin: 0;
}
.hero-img-1 {
  width: 58%; height: 70%;
  top: 0; left: 0;
  transform: rotate(-2deg);
}
.hero-img-2 {
  width: 52%; height: 50%;
  top: 18%; right: 0;
  transform: rotate(2.5deg);
  z-index: 2;
}
.hero-img-3 {
  width: 46%; height: 38%;
  bottom: 0; left: 16%;
  transform: rotate(-1deg);
  z-index: 3;
}
.hero-img:hover { transform: rotate(0) scale(1.02); transition: transform .5s var(--ease); }

.hero-tag {
  position: absolute;
  right: -10px; bottom: -20px;
  background: var(--ink);
  color: var(--cream);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  max-width: 260px;
  z-index: 4;
  box-shadow: var(--shadow-md);
}
.hero-tag small {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin-bottom: 6px;
}
.hero-tag span { display: block; font-size: 0.9rem; line-height: 1.4; }

/* Marquee */
.marquee {
  margin-top: clamp(60px, 9vw, 110px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 26px 0;
  overflow: hidden;
  background: var(--cream);
}
.marquee-track {
  display: inline-flex;
  gap: 32px;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.4vw, 2rem);
  font-style: italic;
  color: var(--ink-2);
}
.marquee-track span:nth-child(even) { color: var(--accent); font-style: normal; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============ Sections ============ */

.section { padding: clamp(70px, 9vw, 130px) 0; position: relative; }

.section-head {
  max-width: 720px;
  margin: 0 0 64px;
}
.section-head h2 { margin-bottom: 18px; }
.section-head .muted { font-size: 1.05rem; max-width: 56ch; }

/* ============ Gallery ============ */

.section-work { background: var(--paper); }

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 230px;
  gap: 14px;
}
.tile {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  background-image: var(--img);
  background-size: cover;
  background-position: center;
  background-color: var(--cream-2);
  transition: transform .5s var(--ease);
  display: block;
}
.tile-tall { grid-row: span 2; }
.tile-wide { grid-column: span 2; }
.tile::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(20,19,15,0.85) 100%);
  opacity: 0.6;
  transition: opacity .35s var(--ease);
}
.tile:hover::after { opacity: 0.9; }
.tile:hover { transform: translateY(-4px); }

.tile-meta {
  position: absolute;
  left: 20px; right: 20px; bottom: 18px;
  color: var(--cream);
  z-index: 2;
  transform: translateY(8px);
  opacity: 0.85;
  transition: transform .35s var(--ease), opacity .35s var(--ease);
}
.tile:hover .tile-meta { transform: translateY(0); opacity: 1; }

.tile-meta span {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin-bottom: 4px;
}
.tile-meta strong {
  display: block;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.05rem;
  line-height: 1.3;
}

/* ============ Services ============ */

.section-services { background: var(--cream); }

.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.service {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.service:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}
.service-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--accent);
  margin-bottom: 18px;
}
.service h3 { margin-bottom: 12px; }
.service p { color: var(--ink-2); margin: 0 0 18px; font-size: 0.95rem; }
.service ul {
  list-style: none; padding: 0; margin: 0;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}
.service ul li {
  font-size: 0.88rem; color: var(--muted);
  padding: 6px 0 6px 18px; position: relative;
}
.service ul li::before {
  content: ""; position: absolute;
  left: 0; top: 13px;
  width: 8px; height: 1.5px;
  background: var(--accent);
}

.service-feature { border-color: var(--accent); }
.service-feature .badge {
  position: absolute;
  top: -10px; right: 20px;
  background: var(--accent);
  color: var(--cream);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  font-weight: 600;
}

.service-dark {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.service-dark h3 { color: var(--cream); }
.service-dark p { color: rgba(244,237,226,0.78); }
.service-dark .service-num { color: var(--gold); }
.service-dark:hover { border-color: var(--accent); }

.link-arrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 500; color: var(--gold);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: gap .25s var(--ease), border-color .25s var(--ease);
}
.link-arrow:hover { gap: 12px; border-bottom-color: var(--gold); }

/* ============ About ============ */

.section-about { background: var(--paper); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.about-img {
  margin: 0;
  height: clamp(420px, 56vw, 580px);
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.about-copy h2 { margin-bottom: 24px; }
.about-copy p { color: var(--ink-2); margin: 0 0 18px; }
.about-copy strong { color: var(--accent-deep); }

.about-facts {
  margin: 36px 0 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 28px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.about-facts div { margin: 0; }
.about-facts dt {
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted); font-weight: 600; margin-bottom: 4px;
}
.about-facts dd {
  margin: 0; font-family: var(--serif); font-size: 1.15rem; color: var(--ink);
}

/* ============ Process ============ */

.section-process { background: var(--cream-2); }

.steps {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  counter-reset: step;
}
.steps li {
  background: var(--paper);
  padding: 32px 26px;
  border-radius: var(--radius-md);
  position: relative;
  transition: transform .3s var(--ease);
}
.steps li:hover { transform: translateY(-4px); }
.steps li:nth-child(2) { transform: translateY(20px); }
.steps li:nth-child(2):hover { transform: translateY(16px); }
.steps li:nth-child(4) { transform: translateY(20px); }
.steps li:nth-child(4):hover { transform: translateY(16px); }

.step-num {
  display: inline-block;
  font-family: var(--serif); font-style: italic;
  font-size: 0.95rem; color: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 100px;
  padding: 4px 12px;
  margin-bottom: 20px;
}
.steps h3 { margin-bottom: 10px; }
.steps p { color: var(--ink-2); font-size: 0.92rem; margin: 0; }

/* ============ Quotes ============ */

.section-quotes {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(80px, 10vw, 140px) 0;
}
.section-quotes .kicker { color: var(--gold); margin-bottom: 50px; }
.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
.quotes blockquote {
  margin: 0;
  padding: 30px 28px;
  border-left: 2px solid var(--accent);
  background: rgba(255,255,255,0.02);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.quotes p {
  font-family: var(--serif);
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--cream);
  margin: 0 0 22px;
}
.quotes p em { color: var(--accent-soft); }
.quotes cite {
  font-style: normal;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244,237,226,0.5);
  font-weight: 500;
}

/* ============ Contact ============ */

.section-contact { background: var(--cream); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: start;
}
.contact-copy h2 em { color: var(--accent); }
.contact-copy .lede { margin: 24px 0 36px; }

.contact-channels {
  display: flex; flex-direction: column; gap: 14px;
  margin-bottom: 28px;
}
.channel {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  transition: border-color .25s var(--ease), transform .25s var(--ease);
}
.channel:hover { border-color: var(--accent); transform: translateX(4px); }
.channel-label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.channel strong {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.05rem;
}

.contact-form {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
}
.contact-form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.contact-form label {
  display: block; margin-bottom: 16px;
}
.contact-form label span {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
  font-weight: 600;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 13px 14px;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.contact-form textarea { resize: vertical; min-height: 110px; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
  background: #fff;
  outline: none;
}
.contact-form button { width: 100%; justify-content: center; margin-top: 6px; }
.form-note {
  margin: 16px 0 0;
  padding: 12px 16px;
  background: rgba(180,83,58,0.10);
  color: var(--accent-deep);
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
}

/* ============ Footer ============ */

.site-footer {
  background: var(--ink);
  color: var(--cream);
  padding: 70px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(244,237,226,0.1);
}
.footer-brand .brand-mark { color: var(--accent); display: inline-flex; margin-bottom: 14px; }
.footer-brand p { margin: 0; line-height: 1.6; color: rgba(244,237,226,0.78); font-size: 0.95rem; }
.footer-brand strong { color: var(--cream); font-family: var(--serif); font-size: 1.15rem; font-weight: 500; }

.footer-nav { display: flex; flex-direction: column; gap: 12px; }
.footer-nav h4 { color: var(--gold); margin-bottom: 10px; }
.footer-nav a {
  color: rgba(244,237,226,0.75);
  font-size: 0.95rem;
  transition: color .2s var(--ease), padding-left .2s var(--ease);
}
.footer-nav a:hover { color: var(--cream); padding-left: 6px; }

.footer-mail h4 { color: var(--gold); margin-bottom: 10px; }
.footer-mail p { color: rgba(244,237,226,0.65); font-size: 0.92rem; line-height: 1.7; margin: 0; }

.footer-base {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px;
  gap: 16px; flex-wrap: wrap;
}
.footer-base small { color: rgba(244,237,226,0.55); font-size: 0.82rem; }

/* ============ Reveal animations ============ */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* ============ Responsive ============ */

@media (max-width: 1024px) {
  .hero-grid,
  .about-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .hero-stack { height: 480px; max-width: 580px; margin: 20px auto 0; }
  .gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }
  .tile-tall { grid-row: span 2; }
  .tile-wide { grid-column: span 2; }
  .services { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .steps li:nth-child(2),
  .steps li:nth-child(4) { transform: none; }
  .steps li:nth-child(2):hover,
  .steps li:nth-child(4):hover { transform: translateY(-4px); }
  .quotes { grid-template-columns: 1fr; gap: 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .wrap { padding: 0 20px; }
  .primary-nav {
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--paper);
    flex-direction: column;
    align-items: stretch;
    padding: 24px 24px 32px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    transform: translateY(-120%);
    transition: transform .35s var(--ease);
  }
  .primary-nav.open { transform: translateY(0); }
  .primary-nav a { padding: 14px 8px; border-bottom: 1px solid var(--line); }
  .primary-nav a:last-child { border-bottom: none; }
  .primary-nav .cta { margin: 16px 0 0; text-align: center; }
  .nav-toggle { display: inline-flex; }

  h1.display { font-size: 2.6rem; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .btn { justify-content: center; }
  .hero-meta { grid-template-columns: 1fr; gap: 16px; }
  .hero-meta strong { font-size: 1.6rem; }
  .hero-stack { height: 380px; }
  .hero-img-1 { width: 64%; }
  .hero-img-2 { width: 58%; }
  .hero-img-3 { width: 52%; left: 12%; }
  .hero-tag { right: 0; max-width: 220px; padding: 12px 16px; }

  .gallery { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .tile-tall, .tile-wide { grid-column: auto; grid-row: auto; }

  .services { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .contact-form { padding: 24px; }
  .contact-form .row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; padding-bottom: 32px; }
  .footer-base { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}
