/* ————————————————————————————————————————
   SUTER STYLE — suterstyle.com
   Refined Scandinavian editorial. Apercu, paper,
   ink, and one red dot.
   ———————————————————————————————————————— */

@font-face {
  font-family: 'Apercu';
  src: url('/fonts/apercu-light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Apercu';
  src: url('/fonts/apercu-regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Apercu';
  src: url('/fonts/apercu-medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Apercu';
  src: url('/fonts/apercu-italic.otf') format('opentype');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

:root {
  --paper: #FBFBFB;
  --ink: #0F0E0E;
  --muted: #75706C;
  --red: #C63943;
  --hairline: rgba(15, 14, 14, 0.16);
  --hairline-soft: rgba(15, 14, 14, 0.09);
  --gutter: clamp(20px, 5vw, 72px);
  --section-gap: clamp(96px, 14vh, 180px);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'Apercu', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 300;
  font-size: 19px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection { background: var(--red); color: #FBFBFB; }

a { color: inherit; }

.wrap {
  max-width: 1220px;
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

/* ——— The dot ——— */
.dot {
  display: inline-block;
  width: 0.42em;
  height: 0.42em;
  border-radius: 50%;
  background: var(--red);
  flex: none;
}

/* Dot used as a full stop after a headline */
.dot-period {
  display: inline-block;
  width: 0.16em;
  height: 0.16em;
  border-radius: 50%;
  background: var(--red);
  margin-left: 0.07em;
  transform: translateY(-0.045em);
}

/* ——— Header ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 251, 251, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--hairline-soft);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 68px;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  white-space: nowrap;
}
.wordmark .dot { width: 9px; height: 9px; }

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 36px);
  font-size: 14px;
  letter-spacing: 0.06em;
}
.site-nav a {
  text-decoration: none;
  opacity: 0.75;
  transition: opacity 0.2s ease, color 0.2s ease;
}
.site-nav a:hover { opacity: 1; color: var(--red); }

.lang-switch {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  padding: 6px 14px;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.lang-switch:hover { border-color: var(--red); color: var(--red); }

/* ——— Hero ——— */
.hero {
  position: relative;
  padding-top: clamp(84px, 13vh, 160px);
  padding-bottom: clamp(80px, 12vh, 150px);
  overflow: hidden;
}

/* ghost circle — a huge, quiet echo of the dot */
.hero::after {
  content: '';
  position: absolute;
  top: -14vw;
  right: -16vw;
  width: 56vw;
  height: 56vw;
  min-width: 420px;
  min-height: 420px;
  border-radius: 50%;
  border: 1px solid rgba(198, 57, 67, 0.22);
  pointer-events: none;
}
.hero::before {
  content: '';
  position: absolute;
  top: -8vw;
  right: -10vw;
  width: 44vw;
  height: 44vw;
  min-width: 320px;
  min-height: 320px;
  border-radius: 50%;
  border: 1px solid rgba(15, 14, 14, 0.06);
  pointer-events: none;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 clamp(28px, 4vh, 44px);
}
.kicker .dot { width: 7px; height: 7px; }

.hero h1 {
  margin: 0;
  font-weight: 300;
  font-size: clamp(2.9rem, 8.4vw, 7rem);
  line-height: 1.02;
  letter-spacing: -0.022em;
  max-width: 11em;
}

.hero .lede {
  margin: clamp(28px, 4vh, 44px) 0 0;
  max-width: 34em;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.5;
  color: var(--ink);
}
.hero .lede em { font-style: italic; }

.hero-cta {
  margin-top: clamp(32px, 5vh, 52px);
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--ink);
  color: var(--paper);
  text-decoration: none;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 17px 30px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
}
.btn .dot { transition: transform 0.25s ease; }
.btn:hover { background: var(--red); border-color: var(--red); color: #fff; }
.btn:hover .dot { background: #fff; transform: scale(1.4); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--hairline);
}
.btn-ghost:hover { background: transparent; color: var(--red); border-color: var(--red); }
.btn-ghost:hover .dot { background: var(--red); }

.hero-aside {
  font-size: 14px;
  color: var(--muted);
  letter-spacing: 0.02em;
}

/* ——— Sections ——— */
section { padding-top: var(--section-gap); }
section:last-of-type { padding-bottom: var(--section-gap); }

.section-head {
  display: flex;
  align-items: baseline;
  gap: 18px;
  border-top: 1px solid var(--hairline);
  padding-top: 22px;
  margin-bottom: clamp(44px, 7vh, 80px);
}
.section-index {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.18em;
  color: var(--red);
}
.section-title {
  margin: 0;
  font-weight: 300;
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  letter-spacing: -0.01em;
}

/* ——— Philosophy / approach ——— */
.approach-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}

.approach-lede {
  margin: 0;
  font-size: clamp(1.5rem, 2.9vw, 2.2rem);
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: -0.012em;
}

.principles {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 36px;
}
.principles li {
  border-top: 1px solid var(--hairline-soft);
  padding-top: 24px;
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 16px;
}
.principles .dot { margin-top: 9px; width: 8px; height: 8px; }
.principles h3 {
  margin: 0 0 10px;
  font-size: clamp(1.3rem, 1.9vw, 1.55rem);
  font-weight: 400;
  letter-spacing: 0.01em;
}
.principles p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

/* ——— Services / pricing ——— */
.services-note {
  max-width: 38em;
  color: var(--muted);
  font-size: 1.05rem;
  margin: -28px 0 clamp(40px, 6vh, 64px);
}

.service {
  border-top: 1px solid var(--hairline);
  padding: clamp(36px, 5vh, 56px) 0;
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 4fr);
  gap: clamp(28px, 5vw, 80px);
}
.service:last-of-type { border-bottom: 1px solid var(--hairline); }

.service-name {
  margin: 0 0 6px;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 300;
  letter-spacing: -0.01em;
  display: flex;
  align-items: baseline;
  gap: 14px;
}
.service-name .dot {
  width: 9px;
  height: 9px;
  transform: translateY(-0.22em) scale(0);
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.service:hover .service-name .dot { transform: translateY(-0.22em) scale(1); }

.service-meta {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 20px;
}

.service-desc {
  margin: 0 0 22px;
  max-width: 34em;
  font-size: 1.05rem;
}

.service-includes {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 8px 28px;
  font-size: 0.95rem;
  color: var(--muted);
}
.service-includes li {
  padding-left: 16px;
  position: relative;
}
.service-includes li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--red);
}

.service-price {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}
.service-price .amount {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 300;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.service-price .unit {
  font-size: 0.95rem;
  color: var(--muted);
}

.pricing-fineprint {
  margin-top: 28px;
  font-size: 0.9rem;
  color: var(--muted);
  max-width: 44em;
}

/* ——— How it works ——— */
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: clamp(28px, 4vw, 56px);
}
.steps li {
  counter-increment: step;
  border-top: 1px solid var(--hairline-soft);
  padding-top: 22px;
}
.steps li::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  font-size: 13px;
  letter-spacing: 0.18em;
  color: var(--red);
  margin-bottom: 14px;
}
.steps h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
  font-weight: 400;
}
.steps p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

/* ——— About ——— */
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 7fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}

.portrait {
  aspect-ratio: 3 / 4;
  border: 1px solid var(--hairline);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 68% 30%, rgba(198, 57, 67, 0.10), transparent 55%),
    #F4F2F0;
}
.portrait img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.portrait-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.portrait-placeholder .dot { width: 20%; height: auto; aspect-ratio: 1; opacity: 0.9; }

.about-text p {
  margin: 0 0 1.2em;
  max-width: 34em;
  font-size: clamp(1.1rem, 1.8vw, 1.3rem);
}
.about-text p:last-child { margin-bottom: 0; }
.about-sign {
  margin-top: 30px;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--muted);
}

/* ——— Contact ——— */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}

.contact-lede {
  margin: 0 0 20px;
  font-size: clamp(1.5rem, 2.9vw, 2.2rem);
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: -0.012em;
}
.contact-sub {
  color: var(--muted);
  max-width: 26em;
  font-size: 1.02rem;
}
.contact-sub a { color: var(--ink); text-decoration-color: var(--hairline); }
.contact-sub a:hover { color: var(--red); }

.lead-form { display: grid; gap: 30px; }

.field { display: grid; gap: 8px; }
.field label {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.field input,
.field select,
.field textarea {
  font-family: inherit;
  font-weight: 300;
  font-size: 1.06rem;
  color: var(--ink);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--hairline);
  border-radius: 0;
  padding: 8px 0 12px;
  outline: none;
  transition: border-color 0.2s ease;
  width: 100%;
}
.field select { appearance: none; -webkit-appearance: none; cursor: pointer; }
.select-wrap { position: relative; }
.select-wrap::after {
  content: '';
  position: absolute;
  right: 4px;
  bottom: 20px;
  width: 8px;
  height: 8px;
  border-right: 1px solid var(--muted);
  border-bottom: 1px solid var(--muted);
  transform: rotate(45deg);
  pointer-events: none;
}
.field textarea { resize: vertical; min-height: 96px; }
.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--red); }
.field input::placeholder,
.field textarea::placeholder { color: rgba(15, 14, 14, 0.3); }

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.form-error {
  display: none;
  color: var(--red);
  font-size: 0.95rem;
  margin: 0;
}
.form-error.show { display: block; }

.form-thanks {
  display: none;
  border: 1px solid var(--hairline);
  border-radius: 4px;
  padding: 36px 32px;
}
.form-thanks.show { display: block; }
.form-thanks h3 {
  margin: 0 0 10px;
  font-weight: 400;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.form-thanks p { margin: 0; color: var(--muted); }
.lead-form.hide { display: none; }

/* ——— Footer ——— */
.site-footer {
  border-top: 1px solid var(--hairline);
  padding: 44px 0 56px;
}
.site-footer .wrap {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--muted);
}
.site-footer a { text-decoration: none; }
.site-footer a:hover { color: var(--red); }
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.footer-brand .dot { width: 8px; height: 8px; }

/* ——— Reveal on load / scroll ——— */
@media (prefers-reduced-motion: no-preference) {
  .fade-in {
    opacity: 0;
    transform: translateY(18px);
    animation: rise 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
  }
  .fade-in.d1 { animation-delay: 0.08s; }
  .fade-in.d2 { animation-delay: 0.2s; }
  .fade-in.d3 { animation-delay: 0.34s; }
  .fade-in.d4 { animation-delay: 0.48s; }

  @keyframes rise {
    to { opacity: 1; transform: translateY(0); }
  }

  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s cubic-bezier(0.2, 0.7, 0.2, 1),
                transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
  }
  .reveal.in { opacity: 1; transform: translateY(0); }
}

/* ——— Responsive ——— */
@media (max-width: 880px) {
  .approach-grid,
  .about-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .portrait { max-width: 380px; }
  .service { grid-template-columns: 1fr; gap: 18px; }
  .service-price {
    flex-direction: row;
    align-items: baseline;
    justify-content: flex-start;
    gap: 12px;
    text-align: left;
  }
}

@media (max-width: 640px) {
  body { font-size: 17px; }
  .site-nav .nav-link { display: none; }
  .field-row { grid-template-columns: 1fr; }
  .hero::after { right: -40vw; top: -20vw; width: 90vw; height: 90vw; }
  .hero::before { display: none; }
}
