/* ============================================
   Rutherford Lane Design — Site Styles
   Shared by index.html and services.html
   ============================================ */

/* ——— Design tokens ——— */
:root {
  --bg:        #F5F1EA;
  --bg-soft:   #FAF7F1;
  --bg-warm:   #ECE5D8;
  --ink:       #2C2620;
  --ink-soft:  #4A4239;
  --mute:      #8B7E6B;
  --rule:      #D9CFC0;
  --rule-soft: #E8E0D2;
  --accent:    #6B5D4A;

  --serif: 'Cormorant Garamond', 'Adobe Caslon Pro', Georgia, serif;
  --sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;

  --max:   1320px;
  --gut:   clamp(20px, 4vw, 56px);
}

/* ——— Reset / base ——— */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ——— Section base ——— */
section { padding: clamp(80px, 12vw, 160px) var(--gut); }
.container { max-width: var(--max); margin: 0 auto; }

.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 28px;
  display: inline-block;
}

h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(34px, 4.5vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin-bottom: 32px;
}
h2 em { font-style: italic; }

h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 24px;
  line-height: 1.25;
  color: var(--ink);
  margin-bottom: 16px;
}

p { color: var(--ink-soft); margin-bottom: 18px; }
p:last-child { margin-bottom: 0; }

.lede {
  font-family: var(--serif);
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 300;
  line-height: 1.45;
  color: var(--ink);
  margin-bottom: 28px;
}

.rule {
  width: 56px;
  height: 1px;
  background: var(--mute);
  margin: 0 0 36px;
}

/* ——— Buttons ——— */
.btn {
  display: inline-block;
  padding: 16px 38px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  border: 1px solid var(--ink);
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn:hover { background: var(--ink); color: var(--bg-soft); }
.btn-light { border-color: #FAF7F1; color: #FAF7F1; }
.btn-light:hover { background: #FAF7F1; color: var(--ink); }

/* ============================================
   HEADER / NAV
   ============================================ */
header.site {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 26px var(--gut);
  transition: background 0.5s ease, padding 0.5s ease, border-color 0.5s ease;
  border-bottom: 1px solid transparent;
}
/* Solid state — applied on scroll OR permanently on inner pages via .solid */
header.site.scrolled,
header.site.solid {
  background: rgba(245, 241, 234, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 18px var(--gut);
  border-bottom-color: var(--rule);
}

.nav {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.nav-left, .nav-right {
  display: flex;
  gap: 36px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
}
.nav-right { justify-content: flex-end; }
.nav-left a, .nav-right a { transition: color 0.3s ease; }
.nav-left a:hover, .nav-right a:hover { color: var(--mute); }
.nav-left a.active, .nav-right a.active { color: var(--mute); }

/* Transparent header over hero (landing page top of page) — invert text to light */
header.site:not(.scrolled):not(.solid) .nav-left,
header.site:not(.scrolled):not(.solid) .nav-right,
header.site:not(.scrolled):not(.solid) .wordmark { color: #FAF7F1; }
header.site:not(.scrolled):not(.solid) .nav-left a:hover,
header.site:not(.scrolled):not(.solid) .nav-right a:hover { color: rgba(250, 247, 241, 0.7); }
header.site:not(.scrolled):not(.solid) .nav-toggle { color: #FAF7F1; }

.wordmark {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(18px, 2vw, 22px);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink);
  transition: color 0.5s ease;
  white-space: nowrap;
}
.wordmark .amp { font-style: italic; font-weight: 300; letter-spacing: 0; padding: 0 6px; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
  font-size: 20px;
  padding: 4px;
}

/* Mobile menu — hidden by default on desktop, only shown on small screens when toggled */
.mobile-menu { display: none; }

/* ============================================
   LANDING PAGE
   ============================================ */

/* ——— Hero ——— */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #FAF7F1;
  text-align: center;
  padding: 120px var(--gut) 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  /* Image is set inline from CMS content (Home Page -> Hero -> Background Photo) */
  background-size: cover;
  background-position: center;
  background-color: var(--ink);
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(20, 16, 12, 0.45) 0%,
    rgba(20, 16, 12, 0.25) 40%,
    rgba(20, 16, 12, 0.55) 100%
  );
}
.hero-content { position: relative; z-index: 1; max-width: 920px; }
.hero-eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  margin-bottom: 32px;
  opacity: 0.85;
}
.hero h1 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(44px, 7vw, 96px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 32px;
}
.hero h1 em { font-style: italic; font-weight: 300; }
.hero-tagline {
  font-family: var(--serif);
  font-size: clamp(19px, 1.9vw, 23px);
  font-weight: 300;
  letter-spacing: 0.02em;
  max-width: 680px;
  margin: 0 auto 48px;
  line-height: 1.5;
  color: #FFFFFF;
}
.hero-cta {
  display: inline-block;
  padding: 16px 38px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #FAF7F1;
  border: 1px solid rgba(250, 247, 241, 0.6);
  transition: all 0.3s ease;
}
.hero-cta:hover {
  background: #FAF7F1;
  color: var(--ink);
  border-color: #FAF7F1;
}
.scroll-cue {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(250, 247, 241, 0.7);
  writing-mode: vertical-rl;
}

/* ——— About ——— */
.about {
  background: var(--bg-soft);
  border-bottom: 1px solid var(--rule-soft);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(48px, 8vw, 120px);
  align-items: start;
}
.about-grid h2 { margin-bottom: 0; }

/* ——— Two pillars (services teaser) ——— */
.pillars { background: var(--bg); }
.pillars-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 80px;
}
.pillars-head .rule { margin: 0 auto 36px; }
.pillars-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 48px);
}
.pillar {
  background: var(--bg-soft);
  border: 1px solid var(--rule-soft);
  padding: clamp(40px, 5vw, 64px);
  display: flex;
  flex-direction: column;
  transition: border-color 0.4s ease;
}
.pillar:hover { border-color: var(--mute); }
.pillar .num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--mute);
  letter-spacing: 0.04em;
  margin-bottom: 28px;
}
.pillar h3 {
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 300;
  margin-bottom: 20px;
}
.pillar p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 36px;
  flex-grow: 1;
}
.pillar-link {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 6px;
  align-self: flex-start;
  transition: color 0.3s, border-color 0.3s;
}
.pillar-link:hover { color: var(--mute); border-bottom-color: var(--mute); }
.pillar-link::after { content: ' →'; }
/* With an odd number of cards, let the last one span the full row */
.pillars-grid .pillar:last-child:nth-child(odd) { grid-column: 1 / -1; }

/* ——— Featured photo ——— */
.featured {
  position: relative;
  padding: 0;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FAF7F1;
  text-align: center;
  overflow: hidden;
}
.featured-bg {
  position: absolute;
  inset: 0;
  /* Image is set inline from CMS content (Home Page -> Featured Photo Section) */
  background-size: cover;
  background-position: center;
  background-color: var(--ink);
}
.featured-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,16,12,0.30), rgba(20,16,12,0.55));
}
.featured-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 120px var(--gut);
}
.featured h2 { color: #FAF7F1; margin-bottom: 24px; }
.featured p {
  color: rgba(250, 247, 241, 0.92);
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 300;
  line-height: 1.5;
  margin-bottom: 40px;
}

/* ——— Why Us / Why Stage ——— */
.why { background: var(--bg-soft); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(48px, 8vw, 120px);
  align-items: start;
}
.why-grid h2 { margin-bottom: 0; }
.why-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 64px;
  margin-top: 56px;
  padding-top: 48px;
  border-top: 1px solid var(--rule);
}
.why-stat .num {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 48px;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 12px;
}
.why-stat .num em { font-style: italic; }
.why-stat .label {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 8px;
}
.why-stat .desc {
  font-family: var(--serif);
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.5;
}

/* ——— Gallery / Recent Work ——— */
.gallery {
  background: var(--bg);
  border-bottom: 1px solid var(--rule-soft);
}
.gallery-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.gallery-head .rule { margin: 0 auto; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 28px);
}
.gallery-grid figure {
  margin: 0;
  overflow: hidden;
  background: var(--bg-warm);
}
.gallery-grid img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.gallery-grid figure:hover img { transform: scale(1.03); }
.gallery-cta { text-align: center; margin-top: 56px; }

/* ——— Gallery page (full grid with captions) ——— */
.gallery-page {
  background: var(--bg);
  border-bottom: 1px solid var(--rule-soft);
}
.gp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(36px, 4vw, 56px) clamp(16px, 2vw, 28px);
}
.gp-item figure {
  margin: 0;
  overflow: hidden;
  background: var(--bg-warm);
}
.gp-item img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.gp-item:hover img { transform: scale(1.03); }
.gp-item h3 {
  font-size: 19px;
  margin: 16px 0 6px;
}
.gp-item .gp-sub {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--mute);
}
@media (max-width: 1100px) {
  .gp-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Screen-reader-only helper (used by the form honeypot) */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* ——— Contact ——— */
.contact {
  background: var(--ink);
  color: var(--bg-soft);
}
.contact .eyebrow { color: var(--rule); }
.contact h2 { color: var(--bg-soft); }
.contact p { color: rgba(245, 241, 234, 0.78); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(48px, 8vw, 120px);
  align-items: start;
}
.contact-info { font-family: var(--serif); }
.contact-info .lede { color: var(--bg-soft); }
.contact-info dl { margin-top: 40px; }
.contact-info dt {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(245, 241, 234, 0.55);
  margin-bottom: 8px;
}
.contact-info dd {
  font-family: var(--serif);
  font-size: 19px;
  color: var(--bg-soft);
  margin-bottom: 28px;
  font-weight: 300;
}
.contact-info dd a:hover { color: var(--rule); }

/* Form */
form { display: grid; gap: 24px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: flex; flex-direction: column; }
label {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(245, 241, 234, 0.6);
  margin-bottom: 10px;
}
input, select, textarea {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 300;
  color: var(--bg-soft);
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(245, 241, 234, 0.3);
  padding: 8px 0 14px;
  outline: none;
  transition: border-color 0.3s;
  border-radius: 0;
}
input:focus, select:focus, textarea:focus { border-bottom-color: var(--bg-soft); }
textarea { resize: vertical; min-height: 80px; font-family: var(--serif); }
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%23F5F1EA' stroke-width='1' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 24px;
}
select option { color: var(--ink); background: var(--bg-soft); }
::placeholder { color: rgba(245, 241, 234, 0.4); }

.submit-btn {
  margin-top: 12px;
  padding: 16px 38px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  background: transparent;
  color: var(--bg-soft);
  border: 1px solid var(--bg-soft);
  cursor: pointer;
  transition: all 0.3s ease;
  justify-self: start;
}
.submit-btn:hover { background: var(--bg-soft); color: var(--ink); }

/* ============================================
   SERVICES PAGE
   ============================================ */

/* ——— Page header (hero replacement) ——— */
.page-head {
  padding: 200px var(--gut) clamp(80px, 10vw, 120px);
  text-align: center;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--rule-soft);
}
.page-head .eyebrow { display: inline-block; }
.page-head h1 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(48px, 7vw, 88px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 24px auto 36px;
  max-width: 900px;
}
.page-head h1 em { font-style: italic; }
.page-head .lede {
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 300;
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 720px;
  margin: 0 auto;
}
.page-head .rule { margin: 36px auto; }

/* ——— Service category ——— */
.category {
  background: var(--bg);
  border-bottom: 1px solid var(--rule-soft);
}
.category.alt { background: var(--bg-soft); }

.category-intro {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(48px, 8vw, 120px);
  margin-bottom: 96px;
  align-items: start;
}
.category-intro h2 { margin-bottom: 0; }
.category-intro .right { padding-top: 6px; }
.category-intro .lede { margin-bottom: 24px; }

/* Service rows */
.service-list {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--rule);
}
.service-row {
  display: grid;
  grid-template-columns: 100px 1.1fr 2fr;
  gap: clamp(24px, 5vw, 64px);
  padding: 56px 0;
  border-bottom: 1px solid var(--rule);
  align-items: start;
}
.service-row .num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 22px;
  color: var(--mute);
  letter-spacing: 0.04em;
  padding-top: 6px;
}
.service-row .title h3 { margin-bottom: 12px; }
.service-row .title .meta {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--mute);
}
.service-row .body p {
  font-size: 16px;
  line-height: 1.75;
}
.service-row .body ul {
  list-style: none;
  margin-top: 18px;
  padding-left: 0;
  columns: 2;
  column-gap: 32px;
}
.service-row .body ul li {
  font-family: var(--serif);
  font-size: 17px;
  color: var(--ink-soft);
  padding: 6px 0 6px 16px;
  position: relative;
  break-inside: avoid;
  line-height: 1.4;
}
.service-row .body ul li::before {
  content: '·';
  position: absolute;
  left: 0;
  top: 6px;
  color: var(--mute);
  font-size: 20px;
  font-family: var(--serif);
}

/* ——— Process ——— */
.process { background: var(--ink); color: var(--bg-soft); }
.process h2 { color: var(--bg-soft); }
.process p { color: rgba(245, 241, 234, 0.78); }
.process .eyebrow { color: var(--rule); }
.process .lede { color: var(--bg-soft); }
.process-head { text-align: center; max-width: 720px; margin: 0 auto 80px; }
.process-head .rule { margin: 32px auto; background: var(--rule); }

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(245, 241, 234, 0.15);
}
.process-step {
  padding: 48px clamp(20px, 2.5vw, 36px);
  border-right: 1px solid rgba(245, 241, 234, 0.15);
}
.process-step:last-child { border-right: none; }
.process-step .num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 32px;
  color: var(--rule);
  margin-bottom: 24px;
}
.process-step h3 {
  font-size: 22px;
  color: var(--bg-soft);
  margin-bottom: 14px;
}
.process-step p {
  font-size: 14.5px;
  line-height: 1.65;
}

/* ——— CTA strip ——— */
.cta-strip {
  text-align: center;
  background: var(--bg-warm);
}
.cta-strip h2 { margin-bottom: 24px; }
.cta-strip p {
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 300;
  line-height: 1.5;
  max-width: 620px;
  margin: 0 auto 40px;
  color: var(--ink-soft);
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--ink);
  color: rgba(245, 241, 234, 0.6);
  padding: 56px var(--gut) 40px;
  border-top: 1px solid rgba(245, 241, 234, 0.08);
  font-size: 12px;
}
.footer-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
}
.footer-grid .wordmark {
  color: var(--bg-soft);
  font-size: 16px;
  letter-spacing: 0.28em;
  text-align: center;
}
.footer-nav {
  display: flex;
  gap: 28px;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}
.footer-nav a:hover { color: var(--bg-soft); }
.footer-social {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(245, 241, 234, 0.18);
  border-radius: 50%;
  transition: border-color 0.3s, color 0.3s;
}
.footer-social a:hover { border-color: var(--bg-soft); color: var(--bg-soft); }
.footer-social svg { width: 14px; height: 14px; fill: currentColor; }
.footer-bottom {
  max-width: var(--max);
  margin: 36px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(245, 241, 234, 0.08);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 11px;
}

/* ============================================
   MOBILE
   ============================================ */
@media (max-width: 860px) {
  .nav { grid-template-columns: 1fr auto auto; }
  .nav-left, .nav-right { display: none; }
  .nav-toggle { display: block; }

  .mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--bg);
    z-index: 49;
    padding: 100px var(--gut) 40px;
    display: none;
    flex-direction: column;
    gap: 28px;
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a {
    font-family: var(--serif);
    font-size: 28px;
    font-weight: 300;
    color: var(--ink);
    letter-spacing: 0.02em;
  }

  /* Landing */
  .about-grid,
  .why-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .pillars-grid { grid-template-columns: 1fr; }
  .why-stats { grid-template-columns: 1fr; gap: 32px; }
  .field-row { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gp-grid { grid-template-columns: 1fr 1fr; }

  /* Services */
  .category-intro { grid-template-columns: 1fr; gap: 36px; margin-bottom: 56px; }
  .service-row {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 40px 0;
  }
  .service-row .num { padding-top: 0; }
  .service-row .body ul { columns: 1; }
  .process-grid { grid-template-columns: 1fr; }
  .process-step { border-right: none; border-bottom: 1px solid rgba(245, 241, 234, 0.15); }
  .process-step:last-child { border-bottom: none; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; text-align: center; }
  .footer-nav, .footer-social { justify-content: center; }
}

@media (max-width: 520px) {
  .gp-grid { grid-template-columns: 1fr; }
  .gp-item img { aspect-ratio: 3 / 2; }
}
