/* =========================================================
   Forge Studio — Editorial system
   Restrained. Photo-led. One typeface, one accent.
   ========================================================= */

:root {
  /* Surfaces */
  --bg:        #f3eee4;   /* warm cream */
  --bg-2:      #eae4d6;
  --bg-3:      #ddd5c2;
  --paper:     #ffffff;
  --card:      #f8f4ea;

  /* Ink */
  --ink:       #16130d;   /* warm near-black */
  --ink-2:     #3d3830;
  --mute:      #7a7568;
  --mute-2:    #a8a395;

  /* Single accent */
  --accent:    #b04a22;   /* burnt sienna */
  --accent-2:  #8a3717;
  --accent-bg: #e9c8b3;

  /* Hairlines */
  --line:      #d6cfbe;
  --line-2:    #c0b8a3;

  /* Geometry */
  --r-sm: 4px;
  --r-md: 6px;
  --r-lg: 10px;

  /* Type — one family, used confidently */
  --sans: "Inter Tight", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --serif: "Spectral", "Source Serif Pro", Georgia, serif;

  --container: 1320px;
  --gutter: 32px;

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

/* Dark mode — system default, overridable */
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg:        #1a1712;
    --bg-2:      #211e19;
    --bg-3:      #2a2620;
    --paper:     #26231d;
    --card:      #1e1b16;
    --ink:       #f0ece2;
    --ink-2:     #c8c0b0;
    --mute:      #807870;
    --mute-2:    #5a5448;
    --accent:    #c85a2a;
    --accent-2:  #b04a22;
    --accent-bg: #3d2418;
    --line:      #2e2a23;
    --line-2:    #3d3830;
  }
}

[data-theme="dark"] {
  --bg:        #1a1712;
  --bg-2:      #211e19;
  --bg-3:      #2a2620;
  --paper:     #26231d;
  --card:      #1e1b16;
  --ink:       #f0ece2;
  --ink-2:     #c8c0b0;
  --mute:      #807870;
  --mute-2:    #5a5448;
  --accent:    #c85a2a;
  --accent-2:  #b04a22;
  --accent-bg: #3d2418;
  --line:      #2e2a23;
  --line-2:    #3d3830;
}

/* Hide translatable text until i18n is applied, preventing a flash of the wrong language.
   visibility:hidden (not display:none) preserves layout so nothing shifts when text appears. */
html.lang-loading [data-i18n],
html.lang-loading [data-i18n-html] { visibility: hidden; }

/* Reset */
* { box-sizing: border-box; }
*::selection { background: var(--accent); color: var(--bg); }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.45;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "ss01", "cv11";
  letter-spacing: -.005em;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }
button { font: inherit; }
a { color: inherit; text-decoration: none; transition: opacity .2s var(--ease); }
a:hover { opacity: .65; }

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--sans);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -.035em;
  margin: 0 0 .35em;
  color: var(--ink);
}
h1 { font-size: clamp(3.4rem, 9vw, 9rem); letter-spacing: -.045em; }
h2 { font-size: clamp(2.4rem, 5.5vw, 4.8rem); letter-spacing: -.04em; }
h3 { font-size: clamp(1.2rem, 1.8vw, 1.5rem); font-weight: 500; }
h4 { font-size: 1rem; font-weight: 500; }

p { margin: 0 0 1em; color: var(--ink-2); }
p.large { font-size: clamp(1.2rem, 1.8vw, 1.55rem); line-height: 1.4; color: var(--ink); letter-spacing: -.012em; }
p.mute { color: var(--mute); }

/* Section label — replaces "eyebrow" */
.label {
  display: inline-block;
  font-size: .82rem;
  letter-spacing: 0;
  text-transform: none;
  color: var(--mute);
  margin-bottom: 16px;
  font-weight: 500;
}
.label::before { content: "— "; }

/* Layout */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
section { padding: 120px 0; }
.section-tight { padding: 80px 0; }
@media (max-width: 768px) {
  section { padding: 80px 0; }
  .section-tight { padding: 56px 0; }
}

.rule {
  height: 1px;
  background: var(--line);
  margin: 0;
}
.rule-section {
  border-top: 1px solid var(--line);
  padding-top: 32px;
  margin-top: 32px;
}

/* Header — clean, no floating pill, no blur */
.site-header {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 50;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 400;
  font-size: 1.05rem;
  letter-spacing: -.02em;
  color: var(--ink);
}
.brand:hover { opacity: 1; }
.brand .mute { color: var(--mute); font-weight: 400; }
.brand-logo { display: block; flex-shrink: 0; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  padding: 0; margin: 0;
}
.nav-links a {
  color: var(--ink);
  font-weight: 400;
  font-size: .95rem;
}
.nav-links a.active { font-weight: 500; }
.nav-cta,
.nav-links a.nav-cta,
.nav-cta:link,
.nav-cta:visited,
.nav-cta:active,
.nav-cta:focus {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  background: var(--ink);
  color: #ffffff;
  border-radius: 999px;
  font-size: .92rem;
  font-weight: 500;
  text-decoration: none;
  transition: background .2s var(--ease), color .2s var(--ease), transform .2s var(--ease), opacity .2s var(--ease);
}
.nav-cta:hover {
  opacity: 1;
  background: #000000;
  color: #ffffff;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--ink);
  color: var(--ink);
  width: 40px; height: 40px;
  border-radius: 50%;
  cursor: pointer;
  align-items: center; justify-content: center;
  font-size: 1.2rem;
}

@media (max-width: 880px) {
  .nav { padding: 20px var(--gutter); }
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: var(--gutter);
    right: var(--gutter);
    background: var(--bg);
    border: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    gap: 4px;
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 16px; }
  .nav-cta { justify-content: center; margin-top: 8px; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 500;
  font-size: .95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: opacity .2s var(--ease), background .2s var(--ease), color .2s var(--ease);
  white-space: nowrap;
  text-decoration: none;
}
.btn:hover { opacity: 1; }
.btn-primary {
  background: var(--ink);
  color: #ffffff;
}
.btn-primary:hover { background: var(--accent); color: #ffffff; }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--bg); }
.btn-link {
  padding: 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
  padding-bottom: 4px;
  color: var(--ink);
  font-weight: 500;
}
.btn-link:hover { border-color: var(--accent); color: var(--accent); }
.btn-sm { padding: 9px 16px; font-size: .88rem; }
.arrow { display: inline-block; transition: transform .3s var(--ease); }
.btn:hover .arrow { transform: translate(3px, -2px); }

/* HERO — editorial, asymmetric */
.hero {
  padding: 180px 0 100px;
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 6fr 6fr;
  gap: 80px;
  align-items: end;
}
@media (max-width: 900px) {
  .hero { padding: 140px 0 60px; }
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
}
.hero h1 {
  margin-bottom: 0;
  max-width: 12ch;
}
.hero .lead {
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  color: var(--ink-2);
  max-width: 42ch;
  margin: 32px 0 0;
  line-height: 1.5;
}
.hero-actions {
  margin-top: 40px;
  display: flex; gap: 12px; flex-wrap: wrap; align-items: center;
}

.hero-photo {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: var(--r-sm);
  background: var(--bg-2);
}
.hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.hero-photo .meta {
  margin-top: 12px;
  display: flex;
  justify-content: space-between;
  font-size: .82rem;
  color: var(--mute);
}
.hero-photo .meta b { color: var(--ink); font-weight: 500; }

/* Stats — one line, separated by rules, restrained */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 100px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stats .stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px 0;
  border-right: 1px solid var(--line);
}
.stats .stat:last-child { border-right: none; }
.stats .stat b {
  display: block;
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 500;
  letter-spacing: -.02em;
  line-height: 1;
  margin-bottom: 6px;
  color: var(--ink);
}
.stats .stat span {
  font-size: .85rem;
  color: var(--mute);
}
@media (max-width: 700px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stats .stat { padding: 20px 0; border-right: none; }
  .stats .stat:nth-child(odd) { border-right: 1px solid var(--line); }
}

/* Work index — editorial rows, not cards */
.work-index { border-top: 1px solid var(--line); }
.work-row {
  display: grid;
  grid-template-columns: 60px 1.4fr 2fr 60px;
  gap: 24px;
  padding: 28px 0;
  align-items: center;
  border-bottom: 1px solid var(--line);
  transition: background .25s var(--ease);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.work-row:hover { background: var(--bg-2); padding-left: 16px; padding-right: 16px; opacity: 1; }
.work-row .num { color: var(--mute); font-size: .88rem; }
.work-row .title h3 {
  margin: 0; font-size: 1.4rem; font-weight: 500; letter-spacing: -.02em;
}
.work-row .title small {
  display: block;
  color: var(--mute);
  font-size: .85rem;
  margin-top: 4px;
}
.work-row .summary { color: var(--ink-2); font-size: 1rem; }
.work-row .arr { text-align: right; color: var(--mute); font-size: 1.2rem; }
.work-row:hover .arr { color: var(--accent); }
@media (max-width: 800px) {
  .work-row { grid-template-columns: 30px 1fr 30px; gap: 16px; }
  .work-row .summary { display: none; }
}

/* Featured work — hero project with full image */
.featured-work {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}
.featured-work .photo {
  grid-column: 1 / span 8;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--r-sm);
  background: var(--bg-2);
}
.featured-work .photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.featured-work .text {
  grid-column: 9 / span 4;
  display: flex; flex-direction: column; justify-content: end;
  padding-bottom: 8px;
}
.featured-work .text h3 { font-size: clamp(1.5rem, 2vw, 1.9rem); margin: 8px 0; }
.featured-work .text small { color: var(--mute); font-size: .85rem; }
.featured-work.reverse .photo { grid-column: 5 / span 8; order: 2; }
.featured-work.reverse .text { grid-column: 1 / span 4; order: 1; }
@media (max-width: 900px) {
  .featured-work, .featured-work.reverse { grid-template-columns: 1fr; gap: 20px; margin-bottom: 56px; }
  .featured-work .photo, .featured-work .text,
  .featured-work.reverse .photo, .featured-work.reverse .text { grid-column: 1; order: 0; }
}

/* Editorial cards (used sparingly for services / approach) */
.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
.cards .card {
  padding: 40px 32px 40px 0;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.cards .card:nth-child(odd) { padding-right: 56px; border-right: 1px solid var(--line); }
.cards .card:nth-child(even) { padding-left: 56px; }
.cards .card .num {
  font-size: .85rem; color: var(--mute);
  margin-bottom: 16px; display: block;
}
.cards .card h3 { margin-bottom: 12px; }
.cards .card p { color: var(--ink-2); margin: 0; }
.cards .card ul {
  margin: 16px 0 0; padding: 0; list-style: none;
}
.cards .card ul li {
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  font-size: .94rem;
  color: var(--ink-2);
}
.cards .card ul li:last-child { border-bottom: none; }
.cards .card .price {
  margin-top: 24px;
  font-size: 1.15rem;
  color: var(--ink);
  font-weight: 500;
}
.cards .card .price small {
  display: block;
  color: var(--mute);
  font-size: .82rem;
  font-weight: 400;
  margin-top: 4px;
}
@media (max-width: 800px) {
  .cards { grid-template-columns: 1fr; }
  .cards .card,
  .cards .card:nth-child(odd),
  .cards .card:nth-child(even) {
    padding: 32px 0;
    border-right: none;
  }
}

/* About / split text */
.split {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 40px; }
}
.split .lede h2 { margin-bottom: 24px; }
.split .body p { font-size: 1.1rem; line-height: 1.55; max-width: 56ch; }
.split .body p:not(:last-child) { margin-bottom: 1.2em; }

/* Photo grid — for about / studio */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}
.photo-grid .ph { background: var(--bg-2); border-radius: var(--r-sm); overflow: hidden; }
.photo-grid .ph img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photo-grid .ph-1 { grid-column: 1 / span 7; aspect-ratio: 4/3; }
.photo-grid .ph-2 { grid-column: 8 / span 5; aspect-ratio: 1/1; }
.photo-grid .ph-3 { grid-column: 1 / span 5; aspect-ratio: 1/1; }
.photo-grid .ph-4 { grid-column: 6 / span 7; aspect-ratio: 4/3; }
@media (max-width: 800px) {
  .photo-grid { grid-template-columns: 1fr 1fr; }
  .photo-grid .ph-1 { grid-column: 1 / span 2; aspect-ratio: 16/9; }
  .photo-grid .ph-2 { grid-column: 1; }
  .photo-grid .ph-3 { grid-column: 2; }
  .photo-grid .ph-4 { grid-column: 1 / span 2; aspect-ratio: 16/9; }
}

/* Testimonials — long-form pull quotes */
.quotes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px 80px;
  border-top: 1px solid var(--line);
  padding-top: 56px;
}
@media (max-width: 800px) { .quotes { grid-template-columns: 1fr; gap: 56px; padding-top: 40px; } }
.quote blockquote {
  font-size: clamp(1.4rem, 2vw, 1.65rem);
  line-height: 1.35;
  letter-spacing: -.018em;
  color: var(--ink);
  margin: 0 0 24px;
  font-weight: 400;
}
.quote .who {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: .92rem;
  color: var(--mute);
}
.quote .who b { color: var(--ink); font-weight: 500; }
.quote .who span::before { content: " · "; color: var(--mute); margin: 0 4px; }

/* Pricing tiers — restrained */
.tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.tier {
  padding: 48px 32px;
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column;
  position: relative;
}
.tier:last-child { border-right: none; }
.tier.featured { background: var(--bg-2); }
.tier.featured::before {
  content: "Most chosen";
  position: absolute;
  top: -1px; left: 50%; transform: translateX(-50%) translateY(-50%);
  background: var(--ink);
  color: var(--bg);
  padding: 4px 14px;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 500;
}
.tier h3 {
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 6px;
}
.tier .tier-tag {
  color: var(--mute);
  font-size: .96rem;
  margin-bottom: 36px;
  min-height: 48px;
}
.tier .tier-price {
  font-size: clamp(2.6rem, 4vw, 3.4rem);
  font-weight: 500;
  letter-spacing: -.03em;
  line-height: 1;
  margin-bottom: 4px;
}
.tier .tier-price small {
  display: block;
  font-size: .82rem;
  color: var(--mute);
  font-weight: 400;
  letter-spacing: normal;
  margin-top: 8px;
}
.tier ul {
  list-style: none;
  padding: 0;
  margin: 32px 0;
  flex: 1;
}
.tier ul li {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: .94rem;
  color: var(--ink-2);
}
.tier ul li:last-child { border-bottom: none; }
.tier ul li::before {
  content: "+";
  color: var(--accent);
  margin-right: 12px;
  font-weight: 400;
}
@media (max-width: 800px) {
  .tiers { grid-template-columns: 1fr; }
  .tier { border-right: none; border-bottom: 1px solid var(--line); }
  .tier:last-child { border-bottom: none; }
}

/* Templates gallery */
.template-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--bg);
  border-radius: var(--r-sm);
  overflow: hidden;
  transition: transform .4s var(--ease);
}
.template-card:hover { opacity: 1; transform: translateY(-2px); }
.template-thumb {
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
  background: var(--bg-2);
}
.template-thumb img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .8s var(--ease);
}
.template-card:hover .template-thumb img { transform: scale(1.04); }
.template-thumb .label {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--bg);
  color: var(--ink);
  padding: 4px 10px;
  font-size: .78rem;
  font-weight: 500;
  border-radius: 999px;
}
.template-info {
  padding: 20px 4px 0;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.template-info h3 {
  font-size: 1.1rem;
  font-weight: 500;
  margin: 0;
}
.template-info small {
  color: var(--mute);
  font-size: .88rem;
}

/* Filter bar — minimal */
.filter-bar {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 56px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.chip {
  background: none;
  border: none;
  color: var(--mute);
  font-size: .96rem;
  font-weight: 400;
  cursor: pointer;
  padding: 0;
  font-family: var(--sans);
  transition: color .2s var(--ease);
}
.chip:hover { color: var(--ink); }
.chip.active { color: var(--ink); font-weight: 500; }
.chip.active::before { content: "● "; color: var(--accent); }

/* Page header — restrained */
.page-header {
  padding: 180px 0 56px;
}
.page-header .container { max-width: 1100px; }
.page-header .label { margin-bottom: 24px; }
.page-header h1 {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  margin-bottom: 32px;
  max-width: 16ch;
}
.page-header p { font-size: 1.2rem; color: var(--ink-2); max-width: 56ch; }
@media (max-width: 768px) { .page-header { padding: 130px 0 40px; } }

/* FAQ */
.faq { max-width: 820px; }
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
}
.faq details:first-child { border-top: 1px solid var(--line); }
.faq summary {
  cursor: pointer;
  font-weight: 500;
  font-size: 1.15rem;
  letter-spacing: -.015em;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--ink);
}
.faq summary::after {
  content: "+";
  color: var(--accent);
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1;
}
.faq details[open] summary::after { content: "−"; }
.faq summary::-webkit-details-marker { display: none; }
.faq details p { margin: 16px 0 0; color: var(--ink-2); max-width: 60ch; }

/* CTA — quiet, just a section */
.cta {
  padding: 140px 0;
  text-align: center;
  border-top: 1px solid var(--line);
}
.cta h2 { max-width: 18ch; margin: 0 auto 24px; }
.cta p { max-width: 48ch; margin: 0 auto 36px; font-size: 1.1rem; color: var(--ink-2); }

/* Forms */
.form-wrap {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: 48px;
}
.form-row {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 24px;
}
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } .form-wrap { padding: 32px; } }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-size: .88rem;
  color: var(--ink);
  font-weight: 500;
}
.field input,
.field select,
.field textarea {
  background: var(--bg);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: 14px 16px;
  font-family: inherit;
  font-size: 1rem;
  line-height: 1.5;
  box-sizing: border-box;
  width: 100%;
  height: 52px;
  transition: border-color .2s var(--ease);
}
.field textarea {
  height: auto;
}
.field select {
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--ink);
  background: var(--paper);
}
.field input::placeholder, .field textarea::placeholder { color: var(--mute-2); }
.field textarea { resize: vertical; min-height: 140px; }
.form-msg { margin-top: 16px; color: var(--accent); font-size: .92rem; min-height: 1.3em; }

.contact-grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 980px) { .contact-grid { grid-template-columns: 1fr; gap: 48px; } }
.contact-info { padding: 0; }
.contact-info h3 { font-size: 1.25rem; margin-bottom: 8px; }
.contact-info .item {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.contact-info .item:last-of-type { border-bottom: none; }
.contact-info .item small {
  color: var(--mute);
  font-size: .88rem;
  display: block;
  margin-bottom: 6px;
}
.contact-info .item b {
  color: var(--ink);
  font-weight: 500;
  font-size: 1rem;
  display: block;
}

/* Logo strip — restrained */
.logo-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 32px 56px;
  align-items: center;
  padding: 32px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.logo-strip .lead-label {
  font-size: .85rem;
  color: var(--mute);
  margin-right: 16px;
}
.logo-strip .marks {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  align-items: center;
  color: var(--ink-2);
  font-size: 1rem;
}
.logo-strip .marks span { white-space: nowrap; }

/* Index list (used for service summaries / process) */
.index-list {
  display: grid;
  grid-template-columns: 60px 220px 1fr;
  column-gap: 40px;
  row-gap: 0;
  align-items: start;
  border-top: 1px solid var(--line);
}
.index-list > * {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
.index-list .num { color: var(--mute); }
.index-list .name { font-weight: 500; }
.index-list .desc { color: var(--ink-2); }
@media (max-width: 700px) {
  .index-list { grid-template-columns: 40px 1fr; column-gap: 16px; }
  .index-list .desc { grid-column: 2; padding-top: 0; border-top: 0; margin-top: -16px; padding-bottom: 24px; }
}

/* Footer — restrained */
.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding: 64px 0 32px;
  margin-top: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 5fr 2fr 2fr 3fr;
  gap: 56px;
  margin-bottom: 56px;
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px 24px; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h4 {
  font-size: .85rem;
  color: var(--mute);
  margin-bottom: 18px;
  font-weight: 500;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid ul li { margin-bottom: 10px; }
.footer-grid ul a { color: var(--ink); font-size: .96rem; }
.footer-grid p {
  font-size: 1rem;
  max-width: 32ch;
  color: var(--ink-2);
  margin-top: 16px;
}
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--mute);
  font-size: .85rem;
}

/* Utility */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

/* Optional gentle reveal */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
.reveal.delay-1 { transition-delay: .08s; }
.reveal.delay-2 { transition-delay: .16s; }
.reveal.delay-3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* === Language switcher === */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  font-size: .82rem;
  letter-spacing: .04em;
  padding: 4px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
}
.lang-switch button {
  background: none;
  border: none;
  padding: 4px 10px;
  font: inherit;
  color: var(--mute);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: .08em;
  border-radius: 999px;
  transition: color .2s var(--ease), background .2s var(--ease);
}
.lang-switch button:hover { color: var(--ink); opacity: 1; }
.lang-switch button.active {
  color: var(--ink);
  font-weight: 500;
  background: var(--bg-2);
}
.lang-switch .sep { color: var(--line-2); user-select: none; pointer-events: none; }

@media (max-width: 880px) {
  .lang-switch { order: -1; }
}

/* === Theme toggle === */
.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--mute);
  cursor: pointer;
  padding: 0;
  transition: color .2s var(--ease), border-color .2s var(--ease), background .2s var(--ease);
  flex-shrink: 0;
}
.theme-toggle:hover {
  color: var(--ink);
  border-color: var(--ink);
  opacity: 1;
}
.theme-toggle svg { display: block; }

/* Show moon in light, sun in dark */
.theme-toggle .icon-sun  { display: none; }
.theme-toggle .icon-moon { display: block; }

@media (prefers-color-scheme: dark) {
  html:not([data-theme="light"]) .theme-toggle .icon-sun  { display: block; }
  html:not([data-theme="light"]) .theme-toggle .icon-moon { display: none; }
}
html[data-theme="dark"] .theme-toggle .icon-sun  { display: block; }
html[data-theme="dark"] .theme-toggle .icon-moon { display: none; }
html[data-theme="light"] .theme-toggle .icon-sun  { display: none; }
html[data-theme="light"] .theme-toggle .icon-moon { display: block; }

@media (max-width: 880px) {
  .theme-toggle { order: -1; }
}

/* === Price-match banner === */
.price-match-wrap {
  display: flex;
  justify-content: center;
  margin: 0 0 56px;
}
.price-match {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 24px;
  font-size: .94rem;
  color: var(--ink-2);
}
.price-match::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--accent);
  color: #ffffff;
  font-size: .78rem;
  font-weight: 600;
}

@media (max-width: 600px) {
  .price-match { font-size: .88rem; padding: 10px 18px; gap: 10px; }
  .price-match-wrap { margin-bottom: 40px; }
}

/* === Dark mode element overrides === */

/* Primary buttons: background flips to light (--ink), so text must be dark */
[data-theme="dark"] .btn-primary,
[data-theme="dark"] .nav-cta,
[data-theme="dark"] .nav-cta:link,
[data-theme="dark"] .nav-cta:visited,
[data-theme="dark"] .nav-cta:active,
[data-theme="dark"] .nav-cta:focus { color: var(--bg); }

[data-theme="dark"] .nav-cta:hover { background: var(--ink-2); color: var(--bg); }

@media (prefers-color-scheme: dark) {
  html:not([data-theme="light"]) .btn-primary,
  html:not([data-theme="light"]) .nav-cta,
  html:not([data-theme="light"]) .nav-cta:link,
  html:not([data-theme="light"]) .nav-cta:visited,
  html:not([data-theme="light"]) .nav-cta:active,
  html:not([data-theme="light"]) .nav-cta:focus { color: var(--bg); }

  html:not([data-theme="light"]) .nav-cta:hover { background: var(--ink-2); color: var(--bg); }
}
