:root {
  --paper: #f5f2eb;
  --paper-strong: #fffdf8;
  --ink: #171615;
  --muted: #66615c;
  --line: #c9c2b8;
  --red: #a52420;
  --red-hover: #861b18;
  --dark: #191716;
  --dark-soft: #24211f;
  --white: #fffdf8;
  --container: 1320px;
  --gutter: clamp(18px, 3vw, 46px);
  --section-space: clamp(94px, 11vw, 172px);
  --radius: 3px;
  color-scheme: light dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid #1b6ed0;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 200;
  padding: 10px 16px;
  transform: translateY(-150%);
  background: var(--ink);
  color: var(--paper-strong);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: relative;
  z-index: 100;
  height: 78px;
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--paper) 94%, transparent);
  backdrop-filter: blur(14px);
}

.header-inner {
  width: min(calc(100% - (2 * var(--gutter))), var(--container));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: grid;
  flex: 0 0 auto;
  align-items: center;
  height: 100%;
}

.brand-art {
  width: 184px;
  height: 68px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.5vw, 42px);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.main-nav a {
  position: relative;
  text-decoration: none;
}

.main-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: currentColor;
  transition: transform 180ms ease;
}

.main-nav > a:not(.nav-cta):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  min-height: 44px;
  padding: 12px 18px;
  border: 1px solid var(--red);
  border-radius: var(--radius);
  background: var(--red);
  color: #fff;
}

.nav-cta:hover {
  border-color: var(--red-hover);
  background: var(--red-hover);
}

.menu-button,
.noscript-nav {
  display: none;
}

.hero {
  min-height: 84svh;
  border-bottom: 1px solid var(--line);
}

.hero-inner {
  width: min(calc(100% - (2 * var(--gutter))), var(--container));
  min-height: 84svh;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 55fr 45fr;
  align-items: stretch;
}

.hero-copy {
  min-width: 0;
  padding: clamp(74px, 10vh, 112px) clamp(42px, 5vw, 80px) 38px 0;
  display: flex;
  flex-direction: column;
}

.eyebrow {
  margin: 0 0 24px;
  color: var(--red);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1,
h2,
h3 {
  margin-top: 0;
  font-weight: 720;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

h1 {
  max-width: 760px;
  margin-bottom: 32px;
  font-size: clamp(3.8rem, 6.25vw, 6.45rem);
}

.hero-lead {
  max-width: 590px;
  margin: 0 0 38px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.5vw, 1.32rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.button {
  min-height: 52px;
  padding: 15px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.87rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button-primary {
  min-width: 190px;
  background: var(--red);
  color: #fff;
}

.button-primary:hover {
  background: var(--red-hover);
}

.text-link {
  min-height: 44px;
  padding: 10px 0 7px;
  border-bottom: 1px solid currentColor;
  font-weight: 750;
  text-decoration: none;
}

.hero-meta {
  margin-top: auto;
  padding-top: 36px;
  display: flex;
  gap: 10px 30px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-media {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: #d9d1c5;
}

.hero-media picture,
.hero-media img {
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
  object-position: 54% center;
}

.hero-media figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  padding: 13px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: var(--radius);
  background: rgba(20, 18, 16, 0.78);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 650;
  letter-spacing: 0.06em;
  backdrop-filter: blur(10px);
}

.hero-media figcaption span {
  color: #ff786f;
}

.section {
  padding: var(--section-space) 0;
}

.section-inner {
  width: min(calc(100% - (2 * var(--gutter))), var(--container));
  margin: 0 auto;
}

.section-heading {
  max-width: 890px;
  margin-bottom: clamp(62px, 8vw, 112px);
}

.section-heading h2,
.story-copy h2,
.contact-intro h2,
.process-copy h2 {
  margin-bottom: 28px;
  font-size: clamp(2.9rem, 5.2vw, 5.35rem);
}

.section-heading > p:last-child,
.story-copy > p,
.contact-intro > p,
.process-copy > p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.03rem, 1.4vw, 1.22rem);
}

.service-columns {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(72px, 9vw, 150px);
}

.service-group {
  border-top: 2px solid var(--ink);
}

.group-heading {
  padding: 24px 0 48px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
}

.group-heading h3 {
  margin: 0;
  font-size: clamp(2rem, 3.1vw, 3.35rem);
}

.group-number {
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.service-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-list li {
  min-height: 70px;
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
}

.service-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.service-list span {
  font-size: clamp(1.12rem, 1.6vw, 1.42rem);
  font-weight: 650;
  letter-spacing: -0.025em;
}

.service-list small {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-align: right;
  text-transform: uppercase;
}

.process {
  padding: 0;
  background: var(--red);
  color: #fff;
}

.process-inner {
  width: min(100%, 1580px);
  min-height: 720px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

.process-copy,
.process-facts {
  padding: clamp(88px, 10vw, 150px) max(var(--gutter), calc((100vw - var(--container)) / 2));
}

.process-copy {
  padding-right: clamp(58px, 7vw, 112px);
  border-right: 1px solid rgba(255, 255, 255, 0.35);
}

.eyebrow-light {
  color: #fff;
}

.process-copy h2 {
  max-width: 650px;
}

.process-copy > p {
  color: rgba(255, 255, 255, 0.82);
}

.button-light {
  margin-top: 38px;
  border-color: #fff;
  background: #fff;
  color: #65110f;
}

.button-light:hover {
  background: transparent;
  color: #fff;
}

.process-facts {
  margin: 0;
  padding-left: clamp(58px, 7vw, 112px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.process-facts div {
  padding: 34px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
}

.process-facts div:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.process-facts dt {
  margin-bottom: 10px;
  font-size: clamp(2.4rem, 4vw, 4.3rem);
  font-weight: 720;
  letter-spacing: -0.06em;
  line-height: 1;
}

.process-facts dd {
  max-width: 460px;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.94fr);
  grid-template-rows: auto auto;
  gap: clamp(42px, 6vw, 92px);
  align-items: start;
}

.story-main {
  grid-row: 1 / span 2;
}

.story-main img {
  width: 100%;
  height: min(860px, 73vw);
  object-fit: cover;
  object-position: center 32%;
  border-radius: var(--radius);
}

.story-copy {
  padding-top: clamp(10px, 6vw, 100px);
}

.rut-note {
  margin-top: clamp(46px, 7vw, 90px);
  padding-top: 24px;
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 24px;
  border-top: 1px solid var(--line);
}

.rut-note span {
  color: var(--red);
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.rut-note p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.story-detail {
  width: min(72%, 390px);
  margin: 0 0 0 auto;
}

.story-detail img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius);
}

.story-detail figcaption {
  padding-top: 12px;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
}

.contact {
  border-top: 1px solid var(--line);
}

.contact .section-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1.18fr);
  gap: clamp(72px, 9vw, 150px);
  align-items: start;
}

.contact-intro {
  position: sticky;
  top: 114px;
}

.contact-intro .button {
  margin-top: 38px;
}

.contact-board {
  border-top: 2px solid var(--ink);
}

.contact-row {
  min-height: 96px;
  padding: 24px 0;
  display: grid;
  grid-template-columns: 130px 1fr;
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid var(--line);
}

.contact-row > span,
.map-link small {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-row a,
.contact-row p {
  margin: 0;
  font-size: clamp(1.08rem, 1.8vw, 1.48rem);
  font-weight: 650;
  letter-spacing: -0.02em;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.hours-row div {
  display: grid;
  gap: 3px;
}

.map-link {
  position: relative;
  min-height: 210px;
  margin-top: 34px;
  padding: 32px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--dark);
  color: #fff;
  font-size: clamp(1.35rem, 2.3vw, 2.2rem);
  font-style: normal;
  font-weight: 680;
  letter-spacing: -0.035em;
  line-height: 1.25;
  text-decoration: none;
}

.map-link::after {
  content: "";
  position: absolute;
  right: -50px;
  bottom: -90px;
  width: 210px;
  height: 210px;
  border: 42px solid var(--red);
  border-radius: 50%;
  opacity: 0.85;
  transition: transform 240ms ease;
}

.map-link:hover::after {
  transform: translate(-12px, -10px);
}

.map-link small {
  display: block;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.6);
}

.map-link strong {
  position: relative;
  z-index: 1;
  color: #ff786f;
  font-weight: 400;
}

.map-link em {
  align-self: end;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.site-footer {
  padding: clamp(74px, 9vw, 130px) var(--gutter) 26px;
  background: var(--dark);
  color: #fff;
}

.footer-inner,
.footer-bottom {
  width: min(100%, var(--container));
  margin: 0 auto;
}

.footer-inner {
  padding-bottom: clamp(68px, 8vw, 110px);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 70px;
}

.footer-brand img {
  width: 260px;
  height: auto;
}

.footer-brand p {
  max-width: 360px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.62);
}

.footer-links {
  display: grid;
  gap: 13px;
  justify-items: end;
  font-size: 1rem;
  font-weight: 650;
}

.footer-links a {
  text-underline-offset: 4px;
}

.footer-bottom {
  padding-top: 24px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.72rem;
}

.footer-bottom p {
  max-width: 720px;
  margin: 0;
}

.footer-bottom a {
  white-space: nowrap;
  text-underline-offset: 4px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 620ms ease, transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-step {
  opacity: 0;
  transform: translateY(20px);
  animation: hero-in 650ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-step:nth-child(1) { animation-delay: 90ms; }
.hero-step:nth-child(2) { animation-delay: 170ms; }
.hero-step:nth-child(3) { animation-delay: 250ms; }
.hero-step:nth-child(4) { animation-delay: 330ms; }
.hero-step:nth-child(5) { animation-delay: 410ms; }
@keyframes hero-in {
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1060px) {
  .hero-inner {
    grid-template-columns: 52fr 48fr;
  }

  h1 {
    font-size: clamp(3.6rem, 7vw, 5.2rem);
  }

  .service-columns {
    gap: 60px;
  }

  .contact .section-inner {
    grid-template-columns: 0.82fr 1.18fr;
    gap: 60px;
  }
}

@media (max-width: 767px) {
  :root {
    --gutter: 18px;
    --section-space: 88px;
  }

  .site-header {
    height: 76px;
  }

  .brand-art {
    width: 168px;
    height: 62px;
  }

  .menu-button {
    min-width: 74px;
    min-height: 44px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    border: 0;
    background: transparent;
    color: var(--ink);
    font: inherit;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .menu-lines {
    width: 22px;
    display: grid;
    gap: 6px;
  }

  .menu-lines i {
    width: 100%;
    height: 1px;
    display: block;
    background: currentColor;
    transition: transform 180ms ease;
  }

  .menu-button[aria-expanded="true"] .menu-lines i:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] .menu-lines i:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .main-nav {
    position: absolute;
    top: 76px;
    right: 0;
    left: 0;
    padding: 26px var(--gutter) 30px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav > a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }

  .main-nav > .nav-cta {
    margin-top: 18px;
    padding: 14px 18px;
    border-bottom-color: var(--red);
    text-align: center;
  }

  .noscript-nav {
    padding: 12px var(--gutter);
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    background: var(--paper-strong);
    font-size: 0.78rem;
    font-weight: 700;
  }

  .hero,
  .hero-inner {
    min-height: auto;
  }

  .hero-inner {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    min-height: calc(92svh - 76px);
    padding: 70px var(--gutter) 30px;
  }

  h1 {
    margin-bottom: 26px;
    font-size: clamp(3.38rem, 16vw, 4.65rem);
  }

  .hero-lead {
    font-size: 1.06rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 15px;
  }

  .button-primary {
    width: 100%;
  }

  .text-link {
    align-self: flex-start;
  }

  .hero-meta {
    margin-top: 56px;
    justify-content: space-between;
    gap: 8px;
    font-size: 0.63rem;
  }

  .hero-media {
    min-height: 72svh;
  }

  .section-heading h2,
  .story-copy h2,
  .contact-intro h2,
  .process-copy h2 {
    font-size: clamp(2.7rem, 13vw, 4.2rem);
  }

  .section-heading {
    margin-bottom: 64px;
  }

  .service-columns,
  .process-inner,
  .story-grid,
  .contact .section-inner {
    grid-template-columns: 1fr;
  }

  .service-columns {
    gap: 72px;
  }

  .group-heading {
    padding-bottom: 34px;
  }

  .process-inner {
    min-height: 0;
  }

  .process-copy,
  .process-facts {
    padding: 88px var(--gutter);
  }

  .process-copy {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  }

  .process-facts {
    padding-top: 52px;
    padding-bottom: 74px;
  }

  .story-grid {
    grid-template-rows: auto;
    gap: 62px;
  }

  .story-main {
    grid-row: auto;
  }

  .story-main img {
    height: 122vw;
    max-height: 690px;
  }

  .story-copy {
    padding-top: 0;
  }

  .story-detail {
    width: 68%;
    margin-right: 0;
  }

  .contact .section-inner {
    gap: 70px;
  }

  .contact-intro {
    position: static;
  }

  .contact-row {
    grid-template-columns: 95px 1fr;
    gap: 14px;
  }

  .contact-row a,
  .contact-row p {
    font-size: 1rem;
  }

  .map-link {
    min-height: 230px;
    padding: 25px;
  }

  .footer-inner,
  .footer-bottom {
    flex-direction: column;
  }

  .footer-brand img {
    width: min(260px, 78vw);
  }

  .footer-links {
    justify-items: start;
  }
}

@media (max-width: 375px) {
  .brand-art {
    width: 154px;
  }

  .menu-button {
    min-width: 68px;
  }

  h1 {
    font-size: 3.25rem;
  }

  .hero-meta span:nth-child(2) {
    display: none;
  }

  .contact-row {
    grid-template-columns: 1fr;
  }

  .rut-note {
    grid-template-columns: 1fr;
  }
}

@media (prefers-color-scheme: dark) {
  :root {
    --paper: #171615;
    --paper-strong: #211f1d;
    --ink: #f5f0e8;
    --muted: #b9b1a8;
    --line: #45403c;
    --red: #f06a61;
    --red-hover: #ff7b72;
    --dark: #100f0e;
    --dark-soft: #211e1c;
  }

  .nav-cta,
  .button-primary {
    color: #17100f;
  }

  .process {
    background: #8e211e;
  }

  .map-link::after {
    border-color: #bc3731;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-delay: 0ms !important;
    transition-duration: 0.01ms !important;
  }

  .reveal,
  .hero-step {
    opacity: 1;
    transform: none;
  }
}

.no-js .reveal,
.no-js .hero-step {
  opacity: 1;
  transform: none;
  animation: none;
}
