/* Marketing-site-specific layout & components.
   Tokens and base type live in /colors_and_type.css */

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

.page-bg {
  min-height: 100vh;
  background: var(--rg-bg);
  position: relative;
  overflow-x: hidden;
}

/* Page-change cross-fade */
.page-fade {
  animation: pageIn 520ms var(--ease-soft) both;
}
@keyframes pageIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Scroll-reveal — stays hidden until .is-visible is added by the IO hook */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 700ms var(--ease-soft),
    transform 700ms var(--ease-soft);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
/* Stagger: each direct child of .reveal-stagger gets a successive delay */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 620ms var(--ease-soft),
    transform 620ms var(--ease-soft);
  will-change: opacity, transform;
}
.reveal-stagger.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0ms; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 80ms; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 160ms; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 240ms; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 320ms; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 400ms; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .reveal-stagger > *, .page-fade,
  .work-card, .work-card .img,
  .service-card, .nav-cta, .btn,
  .marquee-track, .hero-photo img {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

/* Subtle paper grain — SVG noise as base64 */
.page-bg::before {
  content: '';
  position: fixed; inset: 0; pointer-events: none; z-index: 1;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/><feColorMatrix values='0 0 0 0 0.7  0 0 0 0 0.55  0 0 0 0 0.42  0 0 0 0.5 0'/></filter><rect width='200' height='200' filter='url(%23n)' opacity='0.45'/></svg>");
  opacity: 0.06;
  mix-blend-mode: multiply;
}

/* ============== NAV ============== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: var(--z-nav);
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px clamp(20px, 5vw, 64px);
  transition: background var(--dur-base) var(--ease-soft), backdrop-filter var(--dur-base), box-shadow var(--dur-base);
}
.nav.scrolled {
  background: rgba(247, 244, 238, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(43,43,43,0.06);
}
.nav-brand { display: flex; align-items: center; gap: 10px; cursor: pointer; }
.nav-brand img { height: 30px; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-link {
  font-size: 14.5px; font-weight: 500; color: var(--rg-fg-soft);
  padding: 8px 14px; border-radius: var(--r-pill); cursor: pointer;
  transition: all var(--dur-fast) var(--ease-soft);
  text-decoration: none;
}
.nav-link:hover { background: rgba(43,43,43,0.05); color: var(--rg-fg); }
.nav-link.active { color: var(--rg-fg); background: rgba(43,43,43,0.06); }
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px; background: var(--rg-charcoal); color: #fff;
  border-radius: var(--r-pill); font-size: 14px; font-weight: 600;
  text-decoration: none; cursor: pointer;
  transition: all var(--dur-base) var(--ease-soft);
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }
.nav-cta svg { width: 14px; height: 14px; transition: transform var(--dur-base) var(--ease-soft); }
.nav-cta:hover svg { transform: translate(2px, -2px); }

/* Hamburger toggle — hidden on desktop */
.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
  border: 0; background: transparent; color: var(--rg-fg);
  border-radius: var(--r-pill); cursor: pointer;
  margin-left: 4px;
  transition: background var(--dur-fast) var(--ease-soft);
}
.nav-toggle:hover { background: rgba(43,43,43,0.06); }

/* Mobile drawer */
.nav-drawer {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  z-index: calc(var(--z-nav) - 1);
  background: rgba(247, 244, 238, 0.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  opacity: 0; pointer-events: none;
  transition: opacity 320ms var(--ease-soft);
}
.nav-drawer.open { opacity: 1; pointer-events: auto; }
.nav-drawer-inner {
  position: absolute; left: 0; right: 0; top: 0;
  padding: 96px clamp(20px, 6vw, 48px) 48px;
  display: flex; flex-direction: column; gap: 32px;
  transform: translateY(-12px);
  transition: transform 380ms var(--ease-soft);
}
.nav-drawer.open .nav-drawer-inner { transform: translateY(0); }
.nav-drawer-links {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 4px;
}
.nav-drawer-links a {
  display: block;
  font-family: var(--font-sans);
  font-size: clamp(28px, 8vw, 40px);
  font-weight: 600; letter-spacing: -0.025em;
  color: var(--rg-fg); text-decoration: none;
  padding: 8px 0; cursor: pointer;
  transition: color var(--dur-fast) var(--ease-soft), transform var(--dur-base) var(--ease-soft);
}
.nav-drawer-links a:hover,
.nav-drawer-links a.active { color: var(--rg-clay-700); }
.nav-drawer-links a.active { transform: translateX(6px); }
.nav-drawer-cta {
  display: inline-flex; align-self: flex-start; align-items: center; gap: 10px;
  padding: 14px 22px;
  background: var(--rg-charcoal); color: var(--rg-cream-100);
  border-radius: var(--r-pill); font-size: 15px; font-weight: 600;
  text-decoration: none; cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur-base) var(--ease-soft), box-shadow var(--dur-base) var(--ease-soft);
}
.nav-drawer-cta:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }
@media (prefers-reduced-motion: reduce) {
  .nav-drawer, .nav-drawer-inner { transition: none !important; transform: none !important; }
}

/* ============== SHARED ============== */
.section {
  padding: var(--section-pad-y) var(--section-pad-x);
  position: relative; z-index: 2;
}
.container {
  max-width: var(--content-max);
  margin: 0 auto;
}
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-sans); font-size: 15px; font-weight: 600;
  border: 0; cursor: pointer; border-radius: var(--r-md);
  padding: 14px 24px; text-decoration: none;
  transition:
    transform var(--dur-base) var(--ease-soft),
    box-shadow var(--dur-base) var(--ease-soft),
    background var(--dur-base) var(--ease-soft);
}
.btn svg { width: 16px; height: 16px; transition: transform var(--dur-base) var(--ease-soft); }
.btn:hover svg { transform: translate(2px, -2px); }
.btn-primary { background: var(--rg-charcoal); color: var(--rg-cream-100); box-shadow: var(--shadow-sm); }
.btn-primary:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-secondary { background: transparent; color: var(--rg-fg); box-shadow: inset 0 0 0 1px var(--rg-line-strong); }
.btn-secondary:hover { background: var(--rg-sand-100); transform: translateY(-1px); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--rg-clay-700);
}
.eyebrow::before { content: ''; width: 18px; height: 1px; background: var(--rg-clay-500); }

/* ============== HERO ============== */
.hero {
  padding-top: 140px; padding-bottom: var(--section-pad-y);
  position: relative;
}
.hero::after {
  content: ''; position: absolute; top: 0; right: -10%; width: 720px; height: 720px;
  background: radial-gradient(closest-side, rgba(201,123,99,0.18), rgba(201,123,99,0) 70%);
  pointer-events: none; z-index: 0;
}
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px;
  align-items: end; position: relative; z-index: 2;
  max-width: var(--content-max); margin: 0 auto;
}
.hero h1 {
  font-size: clamp(44px, 7vw, 84px);
  line-height: 1.02; letter-spacing: -0.03em; font-weight: 600;
  margin: 24px 0 28px;
  color: var(--rg-fg);
}
.hero h1 em {
  font-family: var(--font-display); font-style: italic; font-weight: 500;
  color: var(--rg-clay-500);
  letter-spacing: -0.02em;
}
.hero-lede {
  font-size: 18px; line-height: 1.6; color: var(--rg-fg-soft);
  max-width: 460px; margin: 0 0 32px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-image {
  border-radius: var(--r-3xl); overflow: hidden;
  aspect-ratio: 4/5; box-shadow: var(--shadow-lg);
  background: linear-gradient(160deg, #E0A892 0%, #C97B63 50%, #6E3826 100%);
  background-size: cover; background-position: center;
  transform: translateY(-32px) rotate(-1.2deg);
}
.hero-photo {
  position: relative;
  border-radius: var(--r-3xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
  transform: translateY(-32px) rotate(-1.2deg);
  isolation: isolate;
}
.hero-photo img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transform: scale(1.06);
  animation: kenburns 18s var(--ease-in-out) infinite alternate;
}
.hero-photo::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(43,43,43,0) 55%, rgba(110,56,38,0.22) 100%),
    linear-gradient(35deg, rgba(201,123,99,0.22) 0%, rgba(201,123,99,0) 45%);
  pointer-events: none;
}
.hero-photo .stamp {
  position: absolute; left: 20px; bottom: 20px;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 12px;
  background: rgba(247, 244, 238, 0.86);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: var(--r-pill);
  font-size: 11px; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--rg-clay-700);
}
.hero-photo .stamp::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--rg-turq-500);
  box-shadow: 0 0 0 4px rgba(73,184,177,0.18);
}
@keyframes kenburns {
  from { transform: scale(1.06) translate(0, 0); }
  to   { transform: scale(1.12) translate(-1.5%, -1%); }
}
.hero-meta {
  display: flex; gap: 32px; margin-top: 56px;
  padding-top: 24px; border-top: 1px solid var(--rg-line);
  max-width: var(--content-max); margin-left: auto; margin-right: auto;
  position: relative; z-index: 2;
}
.hero-meta .stat .num {
  font-size: 32px; font-weight: 600; letter-spacing: -0.02em;
  color: var(--rg-fg);
}
.hero-meta .stat .num em {
  font-family: var(--font-display); font-style: italic; font-weight: 500;
  color: var(--rg-clay-500);
}
.hero-meta .stat .lbl {
  font-size: 13px; color: var(--rg-fg-muted);
}

/* ============== MARQUEE / CLIENTS ============== */
.clients {
  padding: 28px 0;
  border-top: 1px solid var(--rg-line);
  border-bottom: 1px solid var(--rg-line);
  background: var(--rg-cream-100);
  overflow: hidden;
  position: relative;
}
.clients::before, .clients::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2;
  pointer-events: none;
}
.clients::before { left: 0; background: linear-gradient(90deg, var(--rg-cream-100), rgba(251,249,244,0)); }
.clients::after  { right: 0; background: linear-gradient(270deg, var(--rg-cream-100), rgba(251,249,244,0)); }
.marquee {
  display: flex; width: max-content;
  animation: marquee 38s linear infinite;
}
.clients:hover .marquee { animation-play-state: paused; }
.marquee-group {
  display: flex; align-items: center; gap: 56px;
  padding-right: 56px;
}
.marquee-group span {
  font-family: var(--font-display); font-style: italic; font-size: 22px;
  color: var(--rg-ink-500); letter-spacing: -0.01em; white-space: nowrap;
}
.marquee-group .dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--rg-clay-300); flex-shrink: 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============== WORK GRID ============== */
.section-head {
  display: flex; justify-content: space-between; align-items: end;
  margin-bottom: 56px; gap: 32px;
}
.section-head h2 {
  font-size: clamp(32px, 4.5vw, 56px); line-height: 1.05;
  letter-spacing: -0.025em; font-weight: 600; margin: 12px 0 0;
  max-width: 600px;
}
.section-head h2 em {
  font-family: var(--font-display); font-style: italic; font-weight: 500;
  color: var(--rg-clay-500);
}
.work-grid {
  display: grid; grid-template-columns: 7fr 5fr; gap: 32px;
}
.work-grid .row { display: contents; }
.work-card {
  background: var(--rg-bg-card); border-radius: var(--r-2xl); overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition:
    transform 600ms var(--ease-soft),
    box-shadow 600ms var(--ease-soft);
  cursor: pointer; display: flex; flex-direction: column;
  isolation: isolate;
}
.work-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.work-card .img {
  aspect-ratio: 4/3; background-size: cover; background-position: center;
  transition: transform 900ms var(--ease-soft), filter 600ms var(--ease-soft);
  filter: saturate(0.96);
}
.work-card:hover .img { transform: scale(1.045); filter: saturate(1.05); }
.work-card.tall .img { aspect-ratio: 4/5.4; }
.work-card .body {
  padding: 24px 28px 28px;
  display: flex; align-items: end; justify-content: space-between; gap: 16px;
}
.work-card .title { font-size: 22px; font-weight: 600; letter-spacing: -0.015em; margin: 4px 0 6px; }
.work-card .meta { font-size: 13px; color: var(--rg-fg-muted); }
.work-card .arrow {
  width: 44px; height: 44px; border-radius: 50%; background: var(--rg-cream-300);
  color: var(--rg-fg);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition:
    background var(--dur-base) var(--ease-soft),
    color var(--dur-base) var(--ease-soft),
    transform var(--dur-base) var(--ease-soft);
}
.work-card:hover .arrow {
  background: var(--rg-clay-500); color: var(--rg-cream-100);
  transform: rotate(-12deg);
}
.work-card .arrow svg { width: 18px; height: 18px; }

/* ============== SERVICES ============== */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.service-card {
  background: #fff; border-radius: var(--r-xl); padding: 32px 32px 36px;
  box-shadow: var(--shadow-sm);
  transition: all var(--dur-base) var(--ease-soft);
  display: flex; flex-direction: column; gap: 16px;
}
.service-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.service-card .ico {
  width: 52px; height: 52px; border-radius: var(--r-md);
  background: var(--rg-clay-100); color: var(--rg-clay-700);
  display: flex; align-items: center; justify-content: center; margin-bottom: 8px;
  transition: transform var(--dur-base) var(--ease-soft);
}
.service-card:hover .ico { transform: rotate(-6deg) scale(1.04); }
.service-card.t .ico { background: var(--rg-turq-100); color: var(--rg-turq-700); }
.service-card.y .ico { background: var(--rg-yellow-100); color: var(--rg-yellow-700); }
.service-card.s .ico { background: var(--rg-sage-100); color: var(--rg-sage-700); }
.service-card .ico svg { width: 24px; height: 24px; }
.service-card h3 { font-size: 22px; font-weight: 600; letter-spacing: -0.015em; margin: 0; }
.service-card p { font-size: 15px; color: var(--rg-fg-soft); line-height: 1.6; margin: 0; }
.service-card .price {
  font-size: 13px; color: var(--rg-fg-muted); padding-top: 16px;
  border-top: 1px solid var(--rg-line); margin-top: auto;
}

/* ============== PROCESS ============== */
.process { background: var(--rg-sand-100); }
.process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 48px;
}
.process-step {
  display: flex; flex-direction: column; gap: 12px;
}
.process-step .num {
  font-family: var(--font-display); font-style: italic; font-weight: 400;
  font-size: 64px; color: var(--rg-clay-500); line-height: 1;
}
.process-step h4 { font-size: 19px; font-weight: 600; margin: 0; }
.process-step p { font-size: 14px; color: var(--rg-fg-soft); line-height: 1.55; margin: 0; }

/* ============== TESTIMONIAL ============== */
.testimonial {
  background: var(--rg-charcoal); color: var(--rg-cream-100);
  border-radius: var(--r-3xl); padding: 64px clamp(32px, 5vw, 80px);
  display: grid; grid-template-columns: 1fr 280px; gap: 48px; align-items: center;
}
.testimonial .quote {
  font-size: clamp(24px, 2.6vw, 36px); line-height: 1.3; letter-spacing: -0.015em;
  font-weight: 500;
}
.testimonial .quote em {
  font-family: var(--font-display); font-style: italic; font-weight: 500;
  color: var(--rg-yellow-500);
}
.testimonial .who {
  font-size: 13px; letter-spacing: 0.04em; color: var(--rg-cream-300);
  margin-top: 24px; opacity: 0.7;
}
.testimonial-image {
  aspect-ratio: 1/1; border-radius: var(--r-2xl);
  background: linear-gradient(135deg, #C97B63, #6E3826);
  background-size: cover; background-position: center;
}

/* ============== CTA / CONTACT ============== */
.cta {
  background: var(--rg-cream-300);
  border-radius: var(--r-3xl);
  padding: 80px clamp(32px, 5vw, 80px);
  text-align: center; position: relative; overflow: hidden;
}
.cta::before {
  content: ''; position: absolute; inset: -20% -20% auto auto; width: 480px; height: 480px;
  background: radial-gradient(closest-side, rgba(73,184,177,0.18), transparent 70%);
}
.cta h2 {
  font-size: clamp(40px, 6vw, 72px); line-height: 1; letter-spacing: -0.03em;
  font-weight: 600; margin: 16px 0 24px; position: relative;
}
.cta h2 em {
  font-family: var(--font-display); font-style: italic; color: var(--rg-clay-500);
}
.cta p {
  font-size: 18px; color: var(--rg-fg-soft); max-width: 520px;
  margin: 0 auto 32px; position: relative;
}
.cta .btn { position: relative; }

/* ============== FOOTER ============== */
.footer {
  padding: 64px var(--section-pad-x) 32px;
  border-top: 1px solid var(--rg-line);
  background: var(--rg-cream-100);
  position: relative; z-index: 2;
}
.footer-grid {
  max-width: var(--content-max); margin: 0 auto;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px;
  margin-bottom: 56px;
}
.footer-brand img { height: 40px; }
.footer-brand p { font-size: 14px; color: var(--rg-fg-muted); margin: 16px 0 0; max-width: 280px; line-height: 1.55; }
.footer h5 {
  font-size: 11px; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--rg-clay-700);
  margin: 0 0 16px;
}
.footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer ul a {
  font-size: 14px; color: var(--rg-fg-soft); text-decoration: none;
  transition: color var(--dur-fast); cursor: pointer;
}
.footer ul a:hover { color: var(--rg-fg); }
.footer-bottom {
  max-width: var(--content-max); margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 32px; border-top: 1px solid var(--rg-line);
  font-size: 13px; color: var(--rg-fg-muted);
}
.footer-bottom em { font-family: var(--font-display); font-style: italic; color: var(--rg-clay-500); }

/* ============== ABOUT ============== */
.about-hero { padding-top: 140px; }
.about-hero h1 {
  font-size: clamp(56px, 8vw, 120px); line-height: 0.96; letter-spacing: -0.035em;
  font-weight: 600; margin: 24px 0 32px; max-width: 14ch;
}
.about-hero h1 em {
  font-family: var(--font-display); font-style: italic; font-weight: 500;
  color: var(--rg-clay-500);
}
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start;
  margin-top: 64px;
}
.about-grid p { font-size: 18px; line-height: 1.65; color: var(--rg-fg-soft); }
.about-image { aspect-ratio: 4/5; border-radius: var(--r-2xl); background-size: cover; background-position: center; box-shadow: var(--shadow-md); }

.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.team-card { background: #fff; border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-sm); }
.team-card .ph { aspect-ratio: 1/1; background-size: cover; background-position: center; }
.team-card .body { padding: 20px 24px 24px; }
.team-card .name { font-size: 18px; font-weight: 600; letter-spacing: -0.01em; }
.team-card .role { font-size: 13px; color: var(--rg-fg-muted); margin-top: 4px; }

/* ============== CONTACT ============== */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px;
  margin-top: 48px;
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.contact-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label { display: block; font-size: 12px; font-weight: 600; color: var(--rg-fg-soft); margin-bottom: 8px; letter-spacing: 0.02em; }
.field input, .field textarea, .field select {
  width: 100%; box-sizing: border-box;
  font-family: var(--font-sans); font-size: 15px;
  background: #fff; color: var(--rg-fg);
  border: 1px solid var(--rg-line-strong);
  border-radius: var(--r-md); padding: 14px 16px;
  transition: all var(--dur-fast) var(--ease-soft);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--rg-turq-500);
  box-shadow: 0 0 0 3px rgba(73,184,177,0.18);
}
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-info .row {
  display: flex; align-items: center; gap: 16px; padding: 20px 24px;
  background: #fff; border-radius: var(--r-xl); box-shadow: var(--shadow-xs);
}
.contact-info .ico {
  width: 44px; height: 44px; border-radius: var(--r-md);
  background: var(--rg-turq-100); color: var(--rg-turq-700);
  display: flex; align-items: center; justify-content: center;
}
.contact-info .ico svg { width: 20px; height: 20px; }
.contact-info .lbl { font-size: 12px; color: var(--rg-fg-muted); letter-spacing: 0.04em; text-transform: uppercase; }
.contact-info .val { font-size: 16px; font-weight: 500; color: var(--rg-fg); margin-top: 2px; }

/* ============== RESPONSIVE ============== */
@media (max-width: 880px) {
  .hero-grid, .work-grid, .services-grid, .process-grid,
  .testimonial, .footer-grid, .about-grid, .contact-grid, .team-grid,
  .contact-row {
    grid-template-columns: 1fr;
  }
  .hero-image, .hero-photo { transform: none; }
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-cta { display: none; }       /* CTA lives in the drawer on mobile */

  /* Tighter section rhythm */
  .section { padding-block: clamp(56px, 12vw, 96px); }
  .hero { padding-top: 112px; }

  /* Hero meta: 2x2 grid instead of awkward flex-wrap */
  .hero-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 24px;
    margin-top: 40px;
  }
  .hero-meta .stat .num { font-size: 28px; }

  /* Buttons in the hero stretch full-width so they're easy to tap */
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; width: 100%; }

  /* Cards: tighter padding */
  .work-card .body { padding: 20px 22px 22px; }
  .service-card { padding: 28px 26px 30px; }

  /* CTA block tightens */
  .cta { padding: 56px 24px; }

  /* Form inputs at >=16px to prevent iOS zoom on focus */
  .field input, .field textarea, .field select { font-size: 16px; }
}

@media (max-width: 540px) {
  .hero h1 { letter-spacing: -0.025em; }
  .hero-meta { grid-template-columns: 1fr 1fr; gap: 16px; }
  .testimonial { padding: 40px 24px; }
  .footer { padding-inline: 24px; }
  .footer-grid { gap: 32px; margin-bottom: 40px; }
  .nav { padding-inline: 20px; }
  .marquee-group { gap: 36px; padding-right: 36px; }
  .marquee-group span { font-size: 18px; }
}
