:root {
  --ink: #0b0b0b;
  --charcoal: #171717;
  --soft-black: #242424;
  --paper: #f1eee7;
  --white: #ffffff;
  --yellow: #f0a000;
  --yellow-bright: #ffb000;
  --grey: #77736c;
  --line: rgba(11, 11, 11, 0.16);
  --shell: 1440px;
}

* {
  box-sizing: border-box;
}

html {
  width: 100%;
  max-width: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
  overflow-x: hidden;
}

body {
  width: 100%;
  max-width: 100%;
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

button,
input,
select,
textarea {
  font: inherit;
}

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

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

button,
summary,
select {
  cursor: pointer;
}

button,
input,
select,
textarea {
  border-radius: 0;
}

:focus-visible {
  outline: 3px solid var(--yellow-bright);
  outline-offset: 4px;
}

.section-shell {
  width: min(100%, var(--shell));
  max-width: 100%;
  min-width: 0;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 4rem);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 1.4rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: #736f67;
}

.eyebrow-dark {
  color: rgba(11, 11, 11, 0.58);
}

.eyebrow-dot {
  width: 0.52rem;
  height: 0.52rem;
  background: var(--yellow);
  border-radius: 50%;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: 84px;
  background: var(--ink);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.header-inner {
  display: grid;
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  width: min(100%, 1600px);
  height: 100%;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 3.5vw, 3.5rem);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  width: 182px;
  height: 64px;
}

.brand-mark img {
  width: 176px;
  max-height: 56px;
  object-fit: contain;
  object-position: left center;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: clamp(1.3rem, 2.3vw, 2.8rem);
}

.desktop-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.79rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -0.65rem;
  left: 0;
  height: 2px;
  background: var(--yellow);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

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

.header-quote {
  display: inline-flex;
  align-items: center;
  gap: 1.8rem;
  padding: 0.9rem 1.05rem;
  background: var(--yellow);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: background 180ms ease;
}

.header-quote:hover {
  background: var(--yellow-bright);
}

.mobile-menu {
  display: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(480px, 0.92fr);
  min-height: calc(100svh - 84px);
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: clamp(4rem, 7vw, 7.5rem) clamp(2rem, 5.5vw, 7rem);
}

.hero h1 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(4.1rem, 7.5vw, 8.8rem);
  font-weight: 850;
  letter-spacing: -0.075em;
  line-height: 0.82;
  text-transform: uppercase;
}

.hero h1 em {
  display: block;
  color: var(--yellow);
  font-style: normal;
}

.hero-lead {
  max-width: 680px;
  margin: 2.4rem 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(1.05rem, 1.45vw, 1.35rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  margin-top: 2.6rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  min-width: 235px;
  padding: 1.15rem 1.25rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.button-yellow {
  background: var(--yellow);
  color: var(--ink);
  transition: background 180ms ease, transform 180ms ease;
}

.button-yellow:hover {
  background: var(--yellow-bright);
  transform: translateY(-2px);
}

.text-link {
  display: inline-flex;
  gap: 0.8rem;
  align-items: center;
  padding-block: 0.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.34);
  color: rgba(255, 255, 255, 0.83);
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: clamp(3.5rem, 7vh, 6rem);
  padding-top: 1.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.17);
}

.hero-proof div {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.hero-proof strong {
  color: var(--yellow);
  font-size: clamp(1.3rem, 2vw, 2rem);
  letter-spacing: -0.05em;
  line-height: 1;
}

.hero-proof span {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.7rem;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
  min-height: 700px;
  overflow: hidden;
  border-left: 1px solid rgba(255, 255, 255, 0.13);
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 51% center;
  filter: saturate(0.88) contrast(1.06);
  transform: scale(1.02);
}

.hero-image-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.62)), linear-gradient(90deg, rgba(11, 11, 11, 0.2), transparent 35%);
}

.hero-side-label {
  position: absolute;
  top: 50%;
  right: 1.3rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transform: rotate(90deg) translateX(50%);
  transform-origin: right center;
}

.hero-stamp {
  position: absolute;
  top: clamp(2rem, 6vw, 5.5rem);
  left: clamp(1.5rem, 4vw, 4rem);
  display: flex;
  flex-direction: column;
  width: 180px;
  height: 180px;
  align-items: center;
  justify-content: center;
  background: var(--yellow);
  color: var(--ink);
  border-radius: 50%;
  font-size: 0.74rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  transform: rotate(-9deg);
}

.hero-stamp strong {
  font-size: 1.6rem;
  letter-spacing: -0.06em;
  line-height: 1.05;
}

.hero-project-card {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  left: 2rem;
  display: grid;
  grid-template-columns: 150px 1fr;
  align-items: stretch;
  min-height: 94px;
  background: var(--white);
  color: var(--ink);
}

.hero-project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-project-card div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1rem 1.4rem;
}

.hero-project-card span {
  color: #716d66;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-project-card strong {
  margin-top: 0.2rem;
  font-size: 1.25rem;
  letter-spacing: -0.04em;
}

.ticker {
  overflow: hidden;
  background: var(--yellow);
  color: var(--ink);
}

.ticker-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 2.2rem;
  padding: 1.15rem 0;
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: ticker 26s linear infinite;
}

.ticker-track b {
  font-size: 0.65rem;
}

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

.services-section {
  padding-block: clamp(5rem, 10vw, 9rem);
  background: var(--paper);
}

.section-heading,
.work-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: 4rem;
  align-items: end;
  margin-bottom: clamp(3rem, 6vw, 5.5rem);
}

.section-heading h2,
.work-heading h2,
.process-heading h2,
.faq-shell h2 {
  margin: 0;
  font-size: clamp(3rem, 6vw, 6.8rem);
  font-weight: 820;
  letter-spacing: -0.075em;
  line-height: 0.92;
  text-transform: uppercase;
}

.section-heading > p,
.work-heading > p {
  margin: 0;
  color: #68645d;
  font-size: 1.02rem;
  line-height: 1.72;
}

.service-grid {
  display: grid;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.25);
}

.service-image-wrap {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  aspect-ratio: 1.5;
  overflow: hidden;
}

.service-image-wrap::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.6));
  content: "";
}

.service-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

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

.service-image-wrap span {
  position: absolute;
  z-index: 1;
  right: 1.4rem;
  bottom: 1.2rem;
  color: var(--white);
  font-size: 1rem;
  font-weight: 800;
}

.service-body {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  padding: clamp(1.6rem, 3vw, 2.6rem);
}

.service-body h3 {
  margin: 0;
  font-size: clamp(1.7rem, 2.4vw, 2.5rem);
  letter-spacing: -0.055em;
}

.service-body > p {
  min-height: 7rem;
  margin: 1rem 0 1.5rem;
  color: #69655f;
  font-size: 0.95rem;
  line-height: 1.7;
}

.service-body ul,
.package-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-body li,
.package-card li {
  display: flex;
  gap: 0.7rem;
  align-items: center;
  padding-block: 0.65rem;
  border-top: 1px solid var(--line);
  font-size: 0.8rem;
  font-weight: 650;
}

.service-body li::before,
.package-card li::before {
  width: 0.35rem;
  height: 0.35rem;
  background: var(--yellow);
  border-radius: 50%;
  content: "";
}

.service-body > a {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
  padding-bottom: 0.7rem;
  border-bottom: 2px solid var(--ink);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-support {
  display: grid;
  grid-template-columns: 1.25fr 0.8fr auto;
  gap: clamp(2rem, 5vw, 6rem);
  align-items: center;
  margin-top: 2rem;
  padding: clamp(2rem, 5vw, 4rem);
  background: var(--white);
}

.brand-support h3 {
  max-width: 700px;
  margin: 0;
  font-size: clamp(1.8rem, 3.2vw, 3.5rem);
  letter-spacing: -0.065em;
  line-height: 1;
}

.brand-support > p {
  margin: 0;
  color: #6a665f;
  font-size: 0.95rem;
  line-height: 1.7;
}

.circle-link {
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  background: var(--yellow);
  border-radius: 50%;
  font-size: 1.5rem;
  transition: transform 180ms ease;
}

.circle-link:hover {
  transform: rotate(10deg) scale(1.05);
}

.packages-section {
  padding-block: clamp(5rem, 10vw, 9rem);
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.packages-title {
  display: grid;
  grid-template-columns: 1.1fr 0.65fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.packages-title .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -2rem;
}

.packages-title h2 {
  margin: 0;
  font-size: clamp(3.4rem, 7vw, 7.8rem);
  font-weight: 830;
  letter-spacing: -0.08em;
  line-height: 0.86;
  text-transform: uppercase;
}

.packages-title h2 em {
  color: var(--yellow);
  font-style: normal;
}

.packages-title > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.75;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.package-card {
  position: relative;
  padding: clamp(1.8rem, 3.7vw, 3.7rem);
  background: var(--charcoal);
}

.package-card.featured {
  background: var(--yellow);
  color: var(--ink);
}

.popular-tag {
  position: absolute;
  top: 1.4rem;
  right: 1.4rem;
  padding: 0.5rem 0.7rem;
  background: var(--ink);
  color: var(--yellow);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.package-level {
  margin: 0 0 2rem;
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.7rem;
  font-weight: 760;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.featured .package-level {
  color: rgba(11, 11, 11, 0.55);
}

.package-card h3 {
  margin: 0;
  font-size: clamp(2rem, 3.4vw, 3.6rem);
  letter-spacing: -0.07em;
  line-height: 0.95;
}

.package-price {
  margin: 1.5rem 0 1rem;
  font-size: clamp(2rem, 3.5vw, 3.8rem);
  font-weight: 820;
  letter-spacing: -0.07em;
}

.package-price small {
  font-size: 0.8rem;
  font-weight: 650;
  letter-spacing: 0;
}

.package-copy {
  min-height: 5.5rem;
  margin: 0 0 1.5rem;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.65;
}

.featured .package-copy {
  color: rgba(11, 11, 11, 0.62);
}

.package-card li {
  border-color: rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.82);
}

.featured li {
  border-color: rgba(11, 11, 11, 0.16);
  color: rgba(11, 11, 11, 0.8);
}

.featured li::before {
  background: var(--ink);
}

.package-card > a {
  display: flex;
  justify-content: space-between;
  margin-top: 2.4rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid currentColor;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.price-note {
  max-width: 800px;
  margin: 1.2rem 0 0;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
  line-height: 1.6;
}

.work-section {
  padding-block: clamp(5rem, 10vw, 9rem);
  background: var(--white);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
}

.project {
  position: relative;
  min-height: 280px;
  margin: 0;
  overflow: hidden;
  background: #222;
}

.project-1 { grid-column: span 7; min-height: 500px; }
.project-2 { grid-column: span 5; min-height: 500px; }
.project-3,
.project-4,
.project-5 { grid-column: span 4; min-height: 330px; }
.project-6 { grid-column: 1 / -1; min-height: 500px; }

.project img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.project::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.78));
  content: "";
}

.project:hover img {
  transform: scale(1.04);
}

.project figcaption {
  position: absolute;
  z-index: 1;
  right: 1.6rem;
  bottom: 1.5rem;
  left: 1.6rem;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  color: var(--white);
}

.project figcaption span {
  font-size: 0.67rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.project figcaption strong {
  font-size: 1.2rem;
  letter-spacing: -0.04em;
  text-align: right;
}

.work-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 1.8rem;
  border-top: 1px solid var(--line);
}

.work-cta p {
  margin: 0;
  color: #65615a;
}

.work-cta a {
  display: flex;
  gap: 3rem;
  padding-bottom: 0.7rem;
  border-bottom: 2px solid var(--ink);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.coverage-section {
  position: relative;
  min-height: 720px;
  padding-block: clamp(5rem, 10vw, 9rem);
  overflow: hidden;
  background: var(--yellow);
}

.coverage-type {
  position: absolute;
  inset: auto 0 -0.11em;
  display: flex;
  flex-direction: column;
  color: rgba(255, 255, 255, 0.26);
  font-size: clamp(8rem, 18vw, 19rem);
  font-weight: 900;
  letter-spacing: -0.09em;
  line-height: 0.61;
  text-align: center;
  white-space: nowrap;
}

.coverage-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(3rem, 8vw, 9rem);
}

.coverage-content h2 {
  margin: 0;
  font-size: clamp(3.3rem, 7vw, 7.7rem);
  font-weight: 840;
  letter-spacing: -0.08em;
  line-height: 0.88;
  text-transform: uppercase;
}

.coverage-lead {
  margin: 3rem 0;
  font-size: clamp(1.2rem, 2vw, 1.75rem);
  font-weight: 560;
  letter-spacing: -0.03em;
  line-height: 1.45;
}

.coverage-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(11, 11, 11, 0.28);
  border-left: 1px solid rgba(11, 11, 11, 0.28);
}

.coverage-columns > div {
  min-height: 155px;
  padding: 1.4rem;
  border-right: 1px solid rgba(11, 11, 11, 0.28);
  border-bottom: 1px solid rgba(11, 11, 11, 0.28);
}

.coverage-columns strong {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.coverage-columns p {
  margin: 1rem 0 0;
  color: rgba(11, 11, 11, 0.64);
  font-size: 0.88rem;
  line-height: 1.6;
}

.coverage-places {
  margin: 2rem 0 0;
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  line-height: 1.8;
  text-transform: uppercase;
}

.process-section {
  padding-block: clamp(5rem, 10vw, 9rem);
  background: var(--paper);
}

.process-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 4rem;
}

.process-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -2rem;
}

.process-heading > p {
  margin: 0;
  color: #69655e;
  line-height: 1.7;
}

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

.process-list article {
  display: grid;
  grid-template-columns: 90px 0.8fr 1.2fr;
  gap: 2rem;
  align-items: center;
  min-height: 150px;
  padding-block: 1.5rem;
  border-bottom: 1px solid var(--line);
}

.process-list span {
  color: var(--yellow);
  font-size: 0.85rem;
  font-weight: 850;
}

.process-list h3 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4.3rem);
  letter-spacing: -0.07em;
  text-transform: uppercase;
}

.process-list p {
  max-width: 650px;
  margin: 0;
  color: #67635c;
  line-height: 1.7;
}

.heritage-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: 760px;
  background: var(--ink);
  color: var(--white);
}

.heritage-image {
  position: relative;
  min-height: 620px;
  overflow: hidden;
}

.heritage-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.72));
  content: "";
}

.heritage-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.heritage-image span {
  position: absolute;
  z-index: 1;
  right: 2.2rem;
  bottom: 2.2rem;
  color: var(--yellow);
  font-size: clamp(2.5rem, 5vw, 5.8rem);
  font-weight: 850;
  letter-spacing: -0.07em;
  line-height: 0.86;
  text-align: right;
  text-transform: uppercase;
}

.heritage-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 7vw, 8rem);
}

.heritage-copy h2 {
  margin: 0;
  font-size: clamp(3rem, 5.7vw, 6.5rem);
  letter-spacing: -0.075em;
  line-height: 0.9;
  text-transform: uppercase;
}

.heritage-copy > p:not(.eyebrow) {
  max-width: 700px;
  margin: 2.2rem 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.03rem;
  line-height: 1.75;
}

.heritage-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
  padding-top: 1.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.heritage-facts div {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.heritage-facts strong {
  color: var(--yellow);
  font-size: 1rem;
}

.heritage-facts span {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.66rem;
  letter-spacing: 0.07em;
  line-height: 1.4;
  text-transform: uppercase;
}

.faq-section {
  padding-block: clamp(5rem, 10vw, 9rem);
  background: var(--white);
}

.faq-shell {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(3rem, 8vw, 9rem);
}

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

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.6rem 0;
  font-size: 1.05rem;
  font-weight: 720;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  background: var(--paper);
  border-radius: 50%;
  transition: transform 200ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 740px;
  margin: -0.25rem 3rem 1.8rem 0;
  color: #66625b;
  line-height: 1.7;
}

.quote-section {
  padding-block: clamp(5rem, 10vw, 9rem);
  background: var(--yellow);
}

.quote-shell {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(3rem, 7vw, 8rem);
  align-items: start;
}

.quote-intro {
  position: sticky;
  top: 120px;
}

.quote-intro h2 {
  margin: 0;
  font-size: clamp(3.2rem, 6.5vw, 7.2rem);
  font-weight: 840;
  letter-spacing: -0.08em;
  line-height: 0.86;
  text-transform: uppercase;
}

.quote-lead {
  max-width: 600px;
  margin: 2rem 0 2.5rem;
  color: rgba(11, 11, 11, 0.64);
  line-height: 1.72;
}

.quote-promise {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 1rem;
  padding: 1.1rem 0;
  border-top: 1px solid rgba(11, 11, 11, 0.24);
}

.quote-promise span {
  font-size: 0.72rem;
  font-weight: 850;
}

.quote-promise p {
  margin: 0;
  color: rgba(11, 11, 11, 0.68);
  font-size: 0.84rem;
  line-height: 1.55;
}

.quote-promise strong {
  display: block;
  color: var(--ink);
}

.quote-form {
  padding: clamp(1.5rem, 4vw, 3.5rem);
  background: var(--white);
}

.quote-form fieldset {
  margin: 0 0 2.5rem;
  padding: 0;
  border: 0;
}

.quote-form legend {
  margin-bottom: 1rem;
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.service-option {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  min-height: 58px;
  padding: 0.75rem;
  background: var(--paper);
  border: 1px solid transparent;
  color: #494640;
  font-size: 0.78rem;
  font-weight: 670;
  text-align: left;
  transition: border 160ms ease, background 160ms ease;
}

.service-option:hover,
.service-option.active {
  background: #fff8e8;
  border-color: var(--yellow);
}

.option-check {
  display: grid;
  flex: 0 0 auto;
  width: 1rem;
  height: 1rem;
  place-items: center;
  border: 1px solid #a29d94;
  border-radius: 50%;
}

.service-option.active .option-check {
  border: 4px solid var(--yellow);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem 1rem;
}

.form-grid label {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  color: #4c4943;
  font-size: 0.72rem;
  font-weight: 780;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  background: #f6f4ef;
  border: 1px solid transparent;
  color: var(--ink);
  font-size: 0.89rem;
  font-weight: 480;
  letter-spacing: 0;
  outline: none;
  text-transform: none;
  transition: background 160ms ease, border 160ms ease;
}

.form-grid input,
.form-grid select {
  height: 52px;
  padding: 0 0.9rem;
}

.form-grid textarea {
  min-height: 125px;
  padding: 0.9rem;
  resize: vertical;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  background: var(--white);
  border-color: var(--yellow);
}

.full-field {
  grid-column: 1 / -1;
}

.consent-row {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  margin: 1.5rem 0;
  color: #5e5a54;
  font-size: 0.78rem;
  line-height: 1.45;
}

.consent-row input {
  width: 1rem;
  height: 1rem;
  margin: 0.1rem 0 0;
  accent-color: var(--yellow);
}

.submit-button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.25rem;
  background: var(--ink);
  border: 0;
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 820;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: background 180ms ease;
}

.submit-button:hover {
  background: #2a2a2a;
}

.form-note,
.form-status {
  margin: 0.8rem 0 0;
  color: #716d66;
  font-size: 0.72rem;
  line-height: 1.5;
}

.form-status {
  padding: 0.8rem;
  background: #fff6dc;
  color: #493a10;
}

.site-footer {
  background: var(--ink);
  color: var(--white);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.7fr 1fr 0.55fr 0.55fr;
  gap: clamp(2rem, 5vw, 6rem);
  width: min(100%, var(--shell));
  margin-inline: auto;
  padding: clamp(4rem, 8vw, 8rem) clamp(1.25rem, 4vw, 4rem);
}

.footer-title > p {
  margin: 0;
  font-size: clamp(3rem, 6vw, 7rem);
  font-weight: 840;
  letter-spacing: -0.08em;
  line-height: 0.85;
  text-transform: uppercase;
}

.footer-title > a {
  display: flex;
  width: min(100%, 430px);
  justify-content: space-between;
  margin-top: 2.4rem;
  padding: 1.1rem 1.2rem;
  background: var(--yellow);
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 820;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.footer-contact > span,
.footer-links > span {
  display: block;
  margin-bottom: 1.4rem;
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.66rem;
  font-weight: 760;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-contact > a {
  display: inline-block;
  padding-bottom: 0.3rem;
  border-bottom: 1px solid var(--yellow);
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  font-weight: 680;
}

.footer-contact p {
  margin: 1.5rem 0 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.8rem;
  line-height: 1.7;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-links a {
  margin-bottom: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  width: min(100%, var(--shell));
  margin-inline: auto;
  padding: 1.5rem clamp(1.25rem, 4vw, 4rem);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.66rem;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-bottom p {
  margin: 0;
}

@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; }
}

@media (max-width: 1200px) {
  .desktop-nav { gap: 1.25rem; }
  .desktop-nav a { font-size: 0.7rem; }
  .hero { grid-template-columns: minmax(0, 1fr) minmax(420px, 0.85fr); }
  .hero h1 { font-size: clamp(4rem, 8vw, 7.5rem); }
  .hero-proof div { flex-direction: column; }
  .footer-main { grid-template-columns: 1.3fr 0.9fr 0.5fr 0.5fr; }
}

@media (max-width: 1020px) {
  .header-inner { grid-template-columns: 1fr auto auto; }
  .desktop-nav { display: none; }
  .mobile-menu { display: block; margin-left: 0.7rem; }
  .mobile-menu summary {
    display: flex;
    width: 44px;
    height: 44px;
    flex-direction: column;
    gap: 7px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.24);
    list-style: none;
  }
  .mobile-menu summary::-webkit-details-marker { display: none; }
  .mobile-menu summary span { width: 18px; height: 1px; background: var(--white); }
  .mobile-menu nav {
    position: absolute;
    top: 84px;
    right: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    padding: 1rem 1.25rem 1.5rem;
    background: var(--ink);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }
  .mobile-menu nav a { padding: 0.9rem 0; border-bottom: 1px solid rgba(255, 255, 255, 0.1); font-size: 0.8rem; font-weight: 760; letter-spacing: 0.1em; text-transform: uppercase; }

  .hero { grid-template-columns: 1fr; }
  .hero-copy { min-height: 760px; }
  .hero-visual { min-height: 720px; border-top: 1px solid rgba(255, 255, 255, 0.13); border-left: 0; }
  .hero-image { object-position: center; }

  .service-grid { grid-template-columns: 1fr; }
  .service-card { display: grid; grid-template-columns: minmax(280px, 0.8fr) 1.2fr; }
  .service-image-wrap { height: auto; min-height: 360px; aspect-ratio: auto; }
  .service-body > p { min-height: 0; }
  .brand-support { grid-template-columns: 1fr auto; }
  .brand-support > p { grid-column: 1 / -1; grid-row: 2; }
  .circle-link { grid-column: 2; grid-row: 1; }

  .package-grid { grid-template-columns: 1fr; }
  .package-copy { min-height: 0; }

  .coverage-content { grid-template-columns: 1fr; }
  .coverage-lead { margin-top: 0; }

  .heritage-section { grid-template-columns: 1fr; }
  .heritage-image { min-height: 620px; }

  .quote-shell { grid-template-columns: 1fr; }
  .quote-intro { position: static; }

  .footer-main { grid-template-columns: 1.3fr 0.9fr; }
  .footer-title { grid-row: span 2; }
}

@media (max-width: 760px) {
  html { scroll-padding-top: 72px; }
  .site-header { height: 72px; }
  .header-inner { grid-template-columns: 1fr auto; padding-inline: 1rem; }
  .brand-mark { width: 148px; height: 56px; }
  .brand-mark img { width: 146px; max-height: 48px; }
  .header-quote { display: none; }
  .mobile-menu { margin-left: 0; }
  .mobile-menu nav { top: 72px; }

  .hero { min-height: auto; }
  .hero-copy { min-height: calc(100svh - 72px); padding: 4.5rem 1.25rem 3.5rem; }
  .hero h1 { font-size: clamp(3.5rem, 17vw, 6rem); }
  .hero-lead { font-size: 1rem; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 1rem; }
  .button { width: 100%; }
  .text-link { align-self: flex-start; }
  .hero-proof { gap: 0.7rem; }
  .hero-proof div { gap: 0.5rem; }
  .hero-proof strong { font-size: 1.2rem; }
  .hero-proof span { font-size: 0.58rem; }
  .hero-visual { min-height: 620px; }
  .hero-stamp { width: 130px; height: 130px; }
  .hero-stamp strong { font-size: 1.2rem; }
  .hero-project-card { right: 1rem; bottom: 1rem; left: 1rem; grid-template-columns: 110px 1fr; }

  .section-heading,
  .work-heading,
  .packages-title,
  .process-heading,
  .faq-shell { grid-template-columns: 1fr; gap: 2rem; }
  .packages-title .eyebrow,
  .process-heading .eyebrow { grid-column: auto; margin-bottom: 0; }
  .section-heading h2,
  .work-heading h2,
  .process-heading h2,
  .faq-shell h2 { font-size: clamp(2.8rem, 14vw, 4.8rem); }

  .service-grid { display: block; width: 100%; max-width: 100%; overflow: hidden; }
  .service-card { display: block; width: 100%; max-width: 100%; min-width: 0; overflow: hidden; }
  .service-image-wrap { width: 100%; max-width: 100%; height: auto; min-height: 0; aspect-ratio: 3 / 2; }
  .service-image-wrap img { position: absolute; inset: 0; width: 100%; max-width: 100%; height: 100%; object-fit: cover; }
  .service-body { width: 100%; max-width: 100%; min-width: 0; }
  .brand-support { grid-template-columns: 1fr; }
  .brand-support > p,
  .circle-link { grid-column: auto; grid-row: auto; }

  .packages-title h2 { font-size: clamp(3.2rem, 15vw, 5.8rem); }
  .package-card { padding: 2rem 1.3rem; }

  .project-grid { display: block; }
  .project { min-height: 300px; margin-bottom: 0.8rem; }
  .project-1,
  .project-2,
  .project-6 { min-height: 360px; }
  .work-cta { align-items: flex-start; flex-direction: column; }

  .coverage-section { min-height: 820px; }
  .coverage-content h2 { font-size: clamp(3rem, 15vw, 5.6rem); }
  .coverage-columns { grid-template-columns: 1fr; }
  .coverage-type { font-size: 26vw; line-height: 0.72; }

  .process-list article { grid-template-columns: 50px 1fr; gap: 0.5rem 1rem; padding: 1.8rem 0; }
  .process-list p { grid-column: 2; }
  .process-list h3 { font-size: 2.6rem; }

  .heritage-image { min-height: 470px; }
  .heritage-copy { padding: 4rem 1.25rem; }
  .heritage-facts { grid-template-columns: 1fr; }
  .heritage-facts div { padding-bottom: 1rem; border-bottom: 1px solid rgba(255, 255, 255, 0.12); }

  .service-options,
  .form-grid { grid-template-columns: 1fr; }
  .full-field { grid-column: auto; }
  .quote-form { padding: 1.3rem; }

  .footer-main { grid-template-columns: 1fr; padding-block: 4.5rem; }
  .footer-title { grid-row: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 440px) {
  .hero h1 { font-size: 3.35rem; }
  .hero-proof { grid-template-columns: 1fr; }
  .hero-proof div { flex-direction: row; }
  .hero-visual { min-height: 540px; }
  .hero-project-card { grid-template-columns: 90px 1fr; }
  .hero-project-card div { padding-inline: 0.9rem; }
  .hero-stamp { top: 1.2rem; left: 1rem; }
  .project figcaption { align-items: flex-start; flex-direction: column; }
  .project figcaption strong { text-align: left; }
}
