:root {
  --green: #123c2d;
  --green-dark: #09261d;
  --green-black: #061a14;
  --red: #ae3d2f;
  --red-dark: #8d2d23;
  --red-bright: #c95a49;
  --cream: #f3ead8;
  --paper: #e8d8bb;
  --paper-dark: #c8b48f;
  --ink: #1f211d;
  --ink-muted: #56564f;
  --ink-muted-paper: #50524c;
  --white: #fffdf7;
  --cream-muted: #c8c1b2;
  --cream-muted-footer: #b6b0a3;
  --focus-gold: #ffd166;
  --line: rgba(31, 33, 29, 0.2);
  --shadow: 0 28px 70px rgba(9, 38, 29, 0.18);
  --display: "Oswald", "Arial Narrow", sans-serif;
  --body: "DM Sans", Arial, sans-serif;
  --western: "Rye", Georgia, serif;
  --shell: min(1280px, calc(100vw - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: 99;
  inset: 0;
  opacity: 0.035;
  pointer-events: none;
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

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

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button {
  color: inherit;
  font: inherit;
}

:where(a, button):focus-visible {
  outline: 3px solid var(--focus-gold);
  outline-offset: 4px;
  box-shadow: 0 0 0 7px var(--green-black);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--red);
  transform: translateY(-150%);
}

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section {
  padding: 136px 0;
}

.topline {
  position: relative;
  z-index: 80;
  overflow: hidden;
  padding: 8px 0;
  color: var(--cream);
  background: var(--red);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.topline__track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  white-space: nowrap;
}

.topline i {
  width: 4px;
  height: 4px;
  background: currentColor;
  transform: rotate(45deg);
}

.site-header {
  position: absolute;
  z-index: 70;
  top: 32px;
  right: 0;
  left: 0;
  border-bottom: 1px solid rgba(243, 234, 216, 0.16);
  color: var(--cream);
  background: rgba(9, 38, 29, 0.94);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(12px);
  transition: 0.35s ease;
}

.site-header.is-sticky {
  position: fixed;
  top: 0;
  color: var(--cream);
  border-color: rgba(243, 234, 216, 0.12);
  background: rgba(9, 38, 29, 0.96);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
  animation: headerIn 0.45s ease both;
}

@keyframes headerIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.site-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 42px;
  align-items: center;
  min-height: 82px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  width: max-content;
  color: inherit;
}

.brand__name {
  display: flex;
  flex-direction: column;
  font-family: var(--western);
  font-size: 26px;
  line-height: 0.88;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.brand__name small {
  margin-top: 7px;
  font-family: var(--body);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.34em;
  text-align: center;
}

.brand__cleaver {
  width: 67px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}

.brand__cleaver circle {
  fill: currentColor;
  stroke: none;
}

.brand__cleaver-shine {
  opacity: 0.45;
  stroke-width: 2;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 3vw, 42px);
}

.nav a {
  position: relative;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.nav a:hover::after,
.nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-call {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.15;
}

.header-call span {
  margin-bottom: 4px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--cream-muted);
  text-transform: uppercase;
}

.header-call strong {
  font-family: var(--display);
  font-size: 17px;
  letter-spacing: 0.04em;
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0 12px;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
}

.menu-button span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
  transition: 0.25s ease;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 930px;
  color: var(--cream);
  background: var(--green-dark);
}

.hero::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 67%;
  content: "";
  background:
    linear-gradient(90deg, transparent 49px, rgba(243, 234, 216, 0.07) 50px, transparent 51px),
    linear-gradient(0deg, transparent 49px, rgba(243, 234, 216, 0.06) 50px, transparent 51px);
  background-size: 50px 50px;
  mask-image: linear-gradient(90deg, #000, transparent 85%);
}

.hero__content {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(460px, 0.96fr);
  gap: clamp(50px, 6vw, 100px);
  align-items: center;
  min-height: 890px;
  padding-top: 120px;
  padding-bottom: 80px;
}

.hero__copy {
  position: relative;
  z-index: 2;
  padding-top: 32px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 26px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--cream-muted);
  text-transform: uppercase;
}

.eyebrow span {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.eyebrow span::after {
  width: 52px;
  height: 1px;
  content: "";
  background: currentColor;
  opacity: 0.55;
}

.eyebrow--dark {
  color: var(--red-dark);
}

.hero h1,
.section-heading h2,
.story h2,
.promise h2,
.reviews h2,
.visit h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 0.88;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(76px, 9vw, 145px);
}

.hero h1 span {
  display: block;
  color: var(--red-bright);
  font-family: var(--western);
  font-size: 0.57em;
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.35;
  text-transform: none;
  transform: rotate(-2deg);
  transform-origin: left;
}

.hero__lede {
  max-width: 550px;
  margin: 22px 0 30px;
  color: var(--cream-muted);
  font-size: 18px;
}

.hero__actions,
.visit-card__actions {
  display: flex;
  gap: 26px;
  align-items: center;
}

.button {
  position: relative;
  display: inline-flex;
  gap: 28px;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 24px;
  overflow: hidden;
  border: 1px solid transparent;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  transition: 0.3s ease;
}

.button::before {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(-101%);
  transition: transform 0.35s ease;
}

.button:hover::before,
.button:focus-visible::before {
  transform: translateX(0);
}

.button span,
.button svg {
  position: relative;
  z-index: 1;
}

.button svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  transition: transform 0.3s ease;
}

.button:hover svg,
.button:focus-visible svg {
  transform: translateX(4px);
}

.button--red {
  color: var(--white);
  background: var(--red);
}

.button--red:hover,
.button--red:focus-visible {
  background: var(--red-dark);
}

.button--outline {
  color: var(--cream);
  border-color: rgba(243, 234, 216, 0.48);
}

.button--outline:hover,
.button--outline:focus-visible {
  border-color: var(--cream);
}

.text-link {
  position: relative;
  padding-bottom: 5px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.text-link::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform-origin: left;
  transition: transform 0.25s ease;
}

.text-link:hover::after {
  transform: scaleX(0.4);
}

.hero__proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 590px;
  margin-top: 58px;
  padding-top: 20px;
  border-top: 1px solid rgba(243, 234, 216, 0.18);
}

.hero__proof div {
  display: flex;
  flex-direction: column;
  padding: 0 22px;
  border-left: 1px solid rgba(243, 234, 216, 0.18);
}

.hero__proof div:first-child {
  padding-left: 0;
  border-left: 0;
}

.hero__proof b {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
  text-transform: uppercase;
}

.hero__proof span {
  margin-top: 7px;
  color: var(--cream-muted);
  font-size: 10px;
  letter-spacing: 0.06em;
}

.hero__visual {
  position: relative;
  align-self: stretch;
  min-height: 690px;
}

.hero__image-wrap {
  position: absolute;
  inset: -155px calc((100vw - min(1280px, calc(100vw - 48px))) / -2) 0 0;
  margin: 0;
  overflow: hidden;
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
}

.hero__image-wrap::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(9, 38, 29, 0.85), transparent 28%),
    linear-gradient(0deg, rgba(9, 38, 29, 0.4), transparent 45%);
}

.hero__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 54%;
  filter: saturate(0.84) contrast(1.05);
  transform: scale(1.02);
}

.hero__visual figcaption {
  position: absolute;
  z-index: 2;
  right: -10px;
  bottom: 42px;
  padding: 10px 15px;
  color: var(--green-dark);
  background: var(--cream);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transform: rotate(-2deg);
}

.roundel {
  position: absolute;
  z-index: 3;
  bottom: 74px;
  left: -58px;
  display: grid;
  place-items: center;
  width: 145px;
  height: 145px;
  color: var(--green-dark);
  border: 5px solid var(--cream);
  border-radius: 50%;
  background: var(--cream);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.24);
}

.roundel > svg:first-child {
  position: absolute;
  inset: 5px;
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  animation: rotateRoundel 20s linear infinite;
}

.roundel text {
  fill: currentColor;
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.4px;
}

.roundel__mark {
  width: 58px;
  fill: none;
  stroke: var(--red);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}

@keyframes rotateRoundel {
  to { transform: rotate(360deg); }
}

.hero__ticker {
  position: absolute;
  z-index: 5;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  padding: 12px 0;
  color: var(--green-dark);
  background: var(--paper);
  border-block: 1px solid rgba(9, 38, 29, 0.25);
}

.ticker-track {
  display: flex;
  gap: 28px;
  align-items: center;
  width: max-content;
  font-family: var(--display);
  font-size: 21px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  animation: ticker 24s linear infinite;
}

.ticker-track b {
  color: var(--red-dark);
  font-size: 11px;
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

.services {
  position: relative;
  background:
    radial-gradient(circle at 18% 18%, rgba(174, 61, 47, 0.07), transparent 22%),
    var(--cream);
}

.section-heading,
.reviews__heading {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 70px;
}

.section-heading h2,
.reviews h2 {
  font-size: clamp(56px, 7vw, 98px);
}

.section-heading > p {
  max-width: 480px;
  margin: 0 0 4px;
  color: var(--ink-muted);
  font-size: 18px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 260px;
  gap: 18px;
}

.service-card {
  position: relative;
  display: flex;
  grid-column: span 6;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 420px;
  padding: 34px;
  overflow: hidden;
}

.service-card:nth-child(1) {
  grid-row: span 2;
}

.service-card:nth-child(2),
.service-card:nth-child(3) {
  grid-column: span 3;
}

.service-card:nth-child(4) {
  grid-column: span 6;
  min-height: 340px;
}

.service-card img,
.service-card__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.service-card img {
  object-fit: cover;
  transition: transform 0.75s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.service-card:hover img {
  transform: scale(1.045);
}

.service-card__shade {
  background: linear-gradient(0deg, rgba(5, 16, 12, 0.9), rgba(5, 16, 12, 0.02) 74%);
}

.service-card__number {
  position: absolute;
  z-index: 2;
  top: 24px;
  right: 26px;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: var(--display);
  font-size: 14px;
  line-height: 1;
}

.service-card__body {
  position: relative;
  z-index: 2;
}

.service-card__body p {
  margin: 0 0 8px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.service-card__body h3 {
  max-width: 480px;
  margin: 0 0 12px;
  font-family: var(--display);
  font-size: clamp(35px, 3.5vw, 56px);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 0.95;
  text-transform: uppercase;
}

.service-card__body span {
  display: block;
  max-width: 430px;
  font-size: 14px;
  line-height: 1.55;
}

.service-card--image {
  color: var(--cream);
  background: var(--green-dark);
}

.service-card--red {
  color: var(--cream);
  background: var(--red);
}

.service-card--red::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(130deg, transparent 60%, rgba(0, 0, 0, 0.12));
}

.service-card__illustration {
  position: absolute;
  top: 62px;
  right: -18px;
  left: 18px;
  color: var(--cream);
  opacity: 0.22;
}

.service-card__illustration svg {
  width: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.5;
}

.service-card--paper {
  color: var(--green-dark);
  border: 1px solid var(--paper-dark);
  background:
    linear-gradient(rgba(18, 60, 45, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 60, 45, 0.045) 1px, transparent 1px),
    var(--paper);
  background-size: 24px 24px;
}

.service-card--paper::before,
.service-card--paper::after {
  position: absolute;
  width: 38px;
  height: 38px;
  content: "";
  border-color: var(--red);
  opacity: 0.7;
}

.service-card--paper::before {
  top: 22px;
  left: 22px;
  border-top: 2px solid;
  border-left: 2px solid;
}

.service-card--paper::after {
  right: 22px;
  bottom: 22px;
  border-right: 2px solid;
  border-bottom: 2px solid;
}

.service-card__stamp {
  position: absolute;
  top: 78px;
  left: 50%;
  width: max-content;
  padding: 9px 14px;
  color: var(--red-dark);
  border: 2px solid currentColor;
  font-family: var(--display);
  font-size: 15px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  transform: translateX(-50%) rotate(-7deg);
}

.story {
  position: relative;
  overflow: hidden;
  color: var(--cream);
  background: var(--green);
}

.story::after {
  position: absolute;
  right: -140px;
  bottom: -140px;
  width: 440px;
  height: 440px;
  content: "";
  border: 1px solid rgba(243, 234, 216, 0.1);
  border-radius: 50%;
  box-shadow:
    0 0 0 45px rgba(243, 234, 216, 0.025),
    0 0 0 90px rgba(243, 234, 216, 0.018);
}

.story__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(70px, 8vw, 130px);
  align-items: center;
}

.story__media {
  position: relative;
  min-height: 650px;
}

.story__photo-main {
  position: absolute;
  top: 0;
  right: 52px;
  left: 0;
  height: 71%;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.story__photo-main::after {
  position: absolute;
  inset: 0;
  content: "";
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.story__photo-main img,
.story__photo-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story__photo-main img {
  object-position: 54% center;
}

.story__photo-small {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 48%;
  height: 43%;
  padding: 10px;
  background: var(--cream);
  box-shadow: var(--shadow);
  transform: rotate(2.5deg);
}

.story__scribble {
  position: absolute;
  bottom: 68px;
  left: 6px;
  color: var(--paper);
  font-family: var(--western);
  font-size: clamp(20px, 2vw, 30px);
  transform: rotate(-5deg);
}

.story__copy {
  max-width: 560px;
}

.story h2,
.visit h2 {
  font-size: clamp(58px, 6.5vw, 100px);
}

.story__lead {
  margin: 32px 0 18px;
  color: var(--cream);
  font-size: 20px;
  line-height: 1.55;
}

.story__copy > p:not(.eyebrow):not(.story__lead) {
  color: var(--cream-muted);
}

.signature-block {
  display: flex;
  flex-direction: column;
  margin: 34px 0;
}

.signature-block span {
  color: var(--paper);
  font-family: var(--western);
  font-size: 25px;
  transform: rotate(-2deg);
  transform-origin: left;
}

.signature-block small {
  margin-top: 8px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--cream-muted);
  text-transform: uppercase;
}

.promise {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.promise__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(80px, 11vw, 180px);
  align-items: start;
}

.promise__headline {
  position: sticky;
  top: 140px;
}

.promise h2 {
  font-size: clamp(58px, 6.8vw, 96px);
}

.promise h2 em {
  display: inline-block;
  color: var(--red);
  font-family: var(--western);
  font-size: 0.68em;
  font-style: normal;
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.4;
  text-transform: none;
  transform: rotate(-3deg);
}

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

.promise-step {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 25px;
  padding: 44px 0;
  border-bottom: 1px solid var(--line);
}

.promise-step > span {
  display: grid;
  place-items: center;
  align-self: start;
  width: 54px;
  height: 54px;
  color: var(--red-dark);
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: var(--display);
  font-size: 20px;
}

.promise-step h3 {
  margin: 0 0 8px;
  font-family: var(--display);
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
  text-transform: uppercase;
}

.promise-step p {
  max-width: 460px;
  margin: 0;
  color: var(--ink-muted-paper);
}

.reviews {
  color: var(--cream);
  background: var(--green-dark);
}

.reviews__heading {
  grid-template-columns: 1fr auto;
}

.review-controls {
  display: flex;
  gap: 10px;
  padding-bottom: 6px;
}

.review-controls button {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  color: var(--cream);
  border: 1px solid rgba(243, 234, 216, 0.58);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: 0.25s ease;
}

.review-controls button:hover,
.review-controls button:focus-visible {
  color: var(--green-dark);
  border-color: var(--cream);
  background: var(--cream);
}

.review-controls svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.review-viewport {
  width: calc(100vw - max(24px, (100vw - 1280px) / 2));
  overflow: hidden;
}

.review-track {
  display: flex;
  gap: 18px;
  transition: transform 0.6s cubic-bezier(0.2, 0.75, 0.2, 1);
  will-change: transform;
}

.review-card {
  position: relative;
  display: flex;
  flex: 0 0 clamp(320px, 36vw, 470px);
  flex-direction: column;
  justify-content: space-between;
  min-height: 385px;
  padding: 38px;
  color: var(--ink);
  background: var(--cream);
}

.review-card--accent {
  background: var(--paper);
}

.review-card__quote {
  height: 50px;
  color: var(--red);
  font-family: Georgia, serif;
  font-size: 92px;
  line-height: 0.9;
}

.review-card blockquote {
  margin: 30px 0 40px;
  font-family: var(--display);
  font-size: 25px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.3;
  text-transform: uppercase;
}

.review-card footer {
  display: flex;
  flex-direction: column;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.review-card footer strong {
  font-size: 13px;
}

.review-card footer span {
  margin-top: 2px;
  color: var(--ink-muted);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.review-progress {
  width: 100%;
  height: 2px;
  margin-top: 36px;
  overflow: hidden;
  background: rgba(243, 234, 216, 0.14);
}

.review-progress span {
  display: block;
  width: 33.333%;
  height: 100%;
  background: var(--red);
  transform-origin: left;
  transition: transform 0.6s cubic-bezier(0.2, 0.75, 0.2, 1);
}

.visit {
  position: relative;
  min-height: 820px;
  overflow: hidden;
  color: var(--cream);
  background: var(--green-black);
}

.visit::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(6, 26, 20, 0.98) 0%, rgba(6, 26, 20, 0.88) 44%, rgba(6, 26, 20, 0.36) 100%),
    linear-gradient(0deg, rgba(6, 26, 20, 0.45), transparent 55%);
}

.visit__image {
  position: absolute;
  inset: 0 0 0 39%;
}

.visit__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 49%;
  filter: saturate(0.65) contrast(1.06);
}

.visit__content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: clamp(70px, 9vw, 140px);
  align-items: center;
  min-height: 820px;
  padding-block: 110px;
}

.visit__copy {
  max-width: 690px;
}

.visit__copy > p:not(.eyebrow) {
  max-width: 560px;
  margin: 30px 0 12px;
  color: var(--cream-muted);
  font-size: 18px;
}

.visit__phone {
  display: inline-block;
  margin-top: 10px;
  color: var(--paper);
  font-family: var(--display);
  font-size: clamp(36px, 4vw, 62px);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.visit-card {
  position: relative;
  padding: 46px;
  color: var(--ink);
  background: var(--cream);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

.visit-card::before {
  position: absolute;
  inset: 12px;
  content: "";
  border: 1px solid rgba(31, 33, 29, 0.18);
  pointer-events: none;
}

.visit-card__label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.visit-card h3 {
  margin: 12px 0 10px;
  font-family: var(--display);
  font-size: 42px;
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1;
  text-transform: uppercase;
}

.visit-card address {
  margin-bottom: 34px;
  color: var(--ink-muted);
  font-size: 16px;
  font-style: normal;
}

.visit-card__actions {
  align-items: flex-start;
  flex-direction: column;
}

.visit-card__cleaver {
  position: absolute;
  top: 40px;
  right: 36px;
  width: 74px;
  fill: none;
  stroke: var(--red);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
  transform: rotate(-8deg);
}

.visit-card__cleaver circle {
  fill: var(--red);
  stroke: none;
}

.footer {
  color: var(--cream);
  background: var(--green-black);
}

.footer__main {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 70px;
  align-items: start;
  padding-block: 76px 58px;
}

.brand--footer .brand__name {
  font-size: 31px;
}

.footer__links {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 12px 36px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer__links a:hover {
  color: var(--paper);
}

.footer__contact {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  line-height: 1.5;
  text-align: right;
}

.footer__contact > a {
  color: var(--paper);
  font-family: var(--display);
  font-size: 25px;
}

.footer__contact address {
  color: var(--cream-muted-footer);
  font-size: 12px;
  font-style: normal;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  padding-block: 20px 26px;
  color: var(--cream-muted-footer);
  border-top: 1px solid rgba(243, 234, 216, 0.1);
  font-size: 9px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.mobile-call {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.2, 0.75, 0.2, 1);
}

.reveal--delay {
  transition-delay: 0.13s;
}

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

@media (max-width: 1100px) {
  .site-header__inner {
    grid-template-columns: auto 1fr auto;
  }

  .header-call {
    display: none;
  }

  .hero__content {
    grid-template-columns: minmax(0, 1fr) minmax(370px, 0.82fr);
  }

  .hero h1 {
    font-size: clamp(74px, 10vw, 112px);
  }

  .service-card:nth-child(2),
  .service-card:nth-child(3) {
    grid-column: span 6;
  }

  .service-card:nth-child(4) {
    grid-column: 1 / -1;
  }

  .service-grid {
    grid-auto-rows: auto;
  }

  .story__grid {
    gap: 70px;
  }

  .story__media {
    min-height: 560px;
  }

  .visit__content {
    grid-template-columns: 1fr 0.85fr;
    gap: 60px;
  }
}

@media (max-width: 820px) {
  :root {
    --shell: min(100% - 36px, 680px);
  }

  .section {
    padding: 92px 0;
  }

  .topline__track {
    justify-content: flex-start;
    width: max-content;
    padding-left: 24px;
    animation: tickerMobile 18s linear infinite;
  }

  @keyframes tickerMobile {
    to { transform: translateX(-35%); }
  }

  .site-header__inner {
    min-height: 72px;
  }

  .site-header,
  .site-header.is-sticky {
    backdrop-filter: none;
  }

  .brand__name {
    font-size: 22px;
  }

  .brand__cleaver {
    width: 58px;
  }

  .menu-button {
    position: relative;
    z-index: 2;
    display: block;
    justify-self: end;
  }

  .site-header .brand {
    position: relative;
    z-index: 2;
  }

  .menu-button.is-open span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-button.is-open span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .nav {
    position: fixed;
    z-index: 1;
    inset: 0;
    display: flex;
    visibility: hidden;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    justify-content: flex-start;
    counter-reset: mobile-nav;
    overflow-y: auto;
    padding:
      max(104px, 24vh)
      max(18px, env(safe-area-inset-right))
      max(32px, env(safe-area-inset-bottom))
      max(18px, env(safe-area-inset-left));
    color: var(--cream);
    background: var(--green-dark);
    opacity: 0;
    overscroll-behavior: contain;
    pointer-events: none;
    transform: translateY(-10px);
    transition:
      opacity 0.25s ease,
      transform 0.35s cubic-bezier(0.2, 0.82, 0.2, 1),
      visibility 0s linear 0.35s;
  }

  .nav.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    transition-delay: 0s;
  }

  .nav a {
    counter-increment: mobile-nav;
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr) 24px;
    gap: 12px;
    align-items: center;
    width: min(100%, 540px);
    min-height: 72px;
    padding: 8px 18px;
    border: 1px solid rgba(243, 234, 216, 0.28);
    background: rgba(18, 60, 45, 0.64);
    font-family: var(--display);
    font-size: clamp(30px, 9vw, 38px);
    letter-spacing: -0.02em;
    line-height: 1;
    opacity: 0;
    transform: translateY(14px);
    transition:
      color 0.2s ease,
      background 0.2s ease,
      border-color 0.2s ease,
      opacity 0.25s ease,
      transform 0.35s cubic-bezier(0.2, 0.82, 0.2, 1);
  }

  .nav a::before {
    content: "0" counter(mobile-nav);
    color: var(--cream-muted);
    font-family: var(--body);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
  }

  .nav a::after {
    position: static;
    width: auto;
    height: auto;
    content: "→";
    color: var(--focus-gold);
    background: none;
    font-family: var(--body);
    font-size: 22px;
    font-weight: 400;
    line-height: 1;
    opacity: 1;
    transform: none;
    transition: transform 0.2s ease;
  }

  .nav.is-open a {
    opacity: 1;
    transform: translateY(0);
  }

  .nav.is-open a:nth-child(1) {
    transition-delay: 0.06s;
  }

  .nav.is-open a:nth-child(2) {
    transition-delay: 0.1s;
  }

  .nav.is-open a:nth-child(3) {
    transition-delay: 0.14s;
  }

  .nav.is-open a:nth-child(4) {
    transition-delay: 0.18s;
  }

  .nav a:hover,
  .nav a:focus-visible {
    border-color: var(--focus-gold);
    background: var(--green);
  }

  .nav a:hover::after,
  .nav a:focus-visible::after {
    transform: translateX(4px);
  }

  .hero {
    min-height: auto;
    padding-bottom: 45px;
  }

  .hero__content {
    display: flex;
    flex-direction: column;
    min-height: 0;
    padding-top: 155px;
    padding-bottom: 70px;
  }

  .hero__copy {
    width: 100%;
  }

  .hero h1 {
    font-size: clamp(72px, 18.5vw, 120px);
  }

  .hero__visual {
    width: 100%;
    min-height: 600px;
    margin-top: 30px;
  }

  .hero__image-wrap {
    inset: 0 calc((100vw - min(680px, calc(100vw - 36px))) / -2) 0 0;
    clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
  }

  .hero__proof {
    max-width: none;
  }

  .roundel {
    bottom: 42px;
    left: 8px;
  }

  .section-heading,
  .reviews__heading {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 50px;
  }

  .section-heading > p {
    max-width: 560px;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card,
  .service-card:nth-child(1),
  .service-card:nth-child(2),
  .service-card:nth-child(3),
  .service-card:nth-child(4) {
    grid-column: span 1;
    grid-row: auto;
    min-height: 440px;
  }

  .service-card:nth-child(1),
  .service-card:nth-child(4) {
    grid-column: 1 / -1;
  }

  .story__grid,
  .promise__grid,
  .visit__content {
    grid-template-columns: 1fr;
  }

  .story__media {
    min-height: 590px;
  }

  .story__copy {
    max-width: 620px;
  }

  .promise__grid {
    gap: 65px;
  }

  .promise__headline {
    position: static;
  }

  .reviews__heading {
    grid-template-columns: 1fr auto;
  }

  .review-controls {
    grid-column: 2;
    grid-row: 1;
    align-self: end;
  }

  .review-viewport {
    width: calc(100vw - 18px);
  }

  .visit__image {
    inset: 0;
  }

  .visit::after {
    background: rgba(6, 26, 20, 0.8);
  }

  .visit__content {
    gap: 60px;
  }

  .visit-card {
    max-width: 520px;
  }

  .footer__main {
    grid-template-columns: 1fr 1fr;
  }

  .footer__contact {
    grid-column: 1 / -1;
    align-items: flex-start;
    text-align: left;
  }

  .footer__bottom {
    flex-wrap: wrap;
    gap: 10px 30px;
  }
}

@media (max-width: 560px) {
  :root {
    --shell: calc(100vw - 30px);
  }

  html {
    scroll-padding-top: 78px;
  }

  body {
    padding-bottom: 64px;
  }

  .topline {
    display: none;
  }

  .site-header {
    top: 0;
  }

  .site-header.is-sticky {
    top: 0;
  }

  .site-header__inner {
    gap: 12px;
  }

  .brand {
    gap: 8px;
  }

  .brand__name {
    font-size: 18px;
  }

  .brand__name small {
    margin-top: 5px;
    font-size: 6.5px;
  }

  .brand__cleaver {
    width: 48px;
  }

  .menu-button {
    width: 42px;
    height: 42px;
  }

  .hero__content {
    gap: 30px;
    padding-top: 118px;
    padding-bottom: 54px;
  }

  .eyebrow {
    margin-bottom: 20px;
  }

  .hero h1 {
    font-size: clamp(64px, 21vw, 100px);
  }

  .hero__lede {
    font-size: 16px;
  }

  .hero__actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
    width: 100%;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__proof {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 32px;
    padding-top: 17px;
  }

  .hero__proof div,
  .hero__proof div:first-child {
    display: flex;
    align-items: center;
    padding: 0 9px;
    border: 0;
    border-left: 1px solid rgba(243, 234, 216, 0.28);
  }

  .hero__proof div:first-child {
    padding-left: 0;
    border-left: 0;
  }

  .hero__proof b {
    font-size: 16px;
  }

  .hero__proof span {
    display: none;
  }

  .hero__visual {
    min-height: 470px;
  }

  .hero__image-wrap {
    right: 0;
  }

  .hero__visual figcaption {
    right: 8px;
    bottom: 18px;
    max-width: 220px;
  }

  .roundel {
    bottom: 46px;
    left: -5px;
    width: 120px;
    height: 120px;
  }

  .section-heading h2,
  .reviews h2,
  .story h2,
  .promise h2,
  .visit h2 {
    font-size: clamp(48px, 15vw, 72px);
  }

  .service-grid {
    display: flex;
    flex-direction: column;
  }

  .service-card,
  .service-card:nth-child(1),
  .service-card:nth-child(2),
  .service-card:nth-child(3),
  .service-card:nth-child(4) {
    min-height: 410px;
    padding: 26px;
  }

  .service-card__body h3 {
    font-size: 39px;
  }

  .story__grid {
    gap: 62px;
  }

  .story__media {
    min-height: 450px;
  }

  .story__photo-main {
    right: 25px;
    height: 68%;
  }

  .story__photo-small {
    width: 58%;
    height: 43%;
  }

  .story__scribble {
    bottom: 26px;
  }

  .story__lead {
    margin-top: 25px;
    font-size: 18px;
  }

  .promise-step {
    grid-template-columns: 48px 1fr;
    gap: 18px;
  }

  .promise-step > span {
    width: 42px;
    height: 42px;
  }

  .promise-step h3 {
    font-size: 27px;
  }

  .reviews__heading {
    display: grid;
    grid-template-columns: 1fr;
  }

  .review-controls {
    grid-column: 1;
    grid-row: auto;
  }

  .review-card {
    flex-basis: calc(100vw - 45px);
    min-height: 390px;
    padding: 30px;
  }

  .review-card blockquote {
    font-size: 22px;
  }

  .visit__content {
    padding-block: 88px;
  }

  .visit-card {
    padding: 38px 30px;
  }

  .visit-card h3 {
    padding-right: 58px;
    font-size: 34px;
  }

  .visit-card__cleaver {
    right: 23px;
    width: 55px;
  }

  .footer__main {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .footer__contact {
    grid-column: auto;
  }

  .footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .mobile-call {
    position: fixed;
    z-index: 90;
    right: 10px;
    bottom: 10px;
    left: 10px;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    color: var(--white);
    background: var(--red);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.25);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.11em;
    opacity: 0;
    pointer-events: none;
    transform: translateY(calc(100% + 24px)) scale(0.96);
    transform-origin: left top;
    visibility: hidden;
    text-transform: uppercase;
    transition:
      opacity 0.25s ease,
      transform 0.48s cubic-bezier(0.2, 0.82, 0.2, 1),
      visibility 0s linear 0.48s;
    will-change: transform, opacity;
  }

  .mobile-call.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translate3d(0, 0, 0) scale(1);
    visibility: visible;
    transition-delay: 0s;
  }

  body.menu-open .mobile-call {
    opacity: 0;
    pointer-events: none;
    transform: translateY(calc(100% + 24px));
  }

  [data-hero-call].is-call-morph-target {
    opacity: 0;
  }

  .mobile-call svg {
    width: 18px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
