:root {
  --ink: #171713;
  --ink-soft: #4f4e48;
  --paper: #f7f5f0;
  --white: #ffffff;
  --gold: #b89454;
  --gold-light: #dec797;
  --line: #dedbd2;
  --dark: #1d1e1b;
  --dark-soft: #282925;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container: min(1180px, calc(100% - 48px));
  --radius: 3px;
  --shadow: 0 20px 60px rgba(27, 25, 19, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.08;
}

h1 {
  font-size: clamp(3rem, 6.7vw, 6.4rem);
  letter-spacing: -0.05em;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.35rem, 4.5vw, 4.6rem);
  letter-spacing: -0.04em;
}

h3 {
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  letter-spacing: -0.025em;
}

p {
  color: var(--ink-soft);
}

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

.skip-link {
  position: fixed;
  z-index: 2000;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  color: var(--dark);
  background: var(--white);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 1px;
  background: currentColor;
  content: "";
}

.lead {
  max-width: 680px;
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
}

.section {
  padding: 120px 0;
}

.section--white {
  background: var(--white);
}

.section--dark {
  color: var(--white);
  background: var(--dark);
}

.section--dark p {
  color: #b9b8b1;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.65fr);
  gap: 60px;
  align-items: end;
  margin-bottom: 60px;
}

.section-heading h2,
.section-heading p {
  margin-bottom: 0;
}

.site-header {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  transition: color 220ms ease, background 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled,
.site-header.header--solid {
  color: var(--ink);
  border-color: var(--line);
  background: rgba(247, 245, 240, 0.96);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  display: flex;
  min-height: 86px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  font-family: var(--serif);
  font-size: 1.38rem;
  letter-spacing: -0.03em;
  line-height: 1;
}

.brand-mark {
  position: relative;
  width: 36px;
  height: 36px;
  border: 1px solid var(--gold);
}

.brand-mark::before,
.brand-mark::after {
  position: absolute;
  width: 1px;
  height: 27px;
  background: var(--gold);
  content: "";
  transform: rotate(45deg);
}

.brand-mark::before {
  top: -4px;
  left: 9px;
}

.brand-mark::after {
  right: 9px;
  bottom: -4px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links a:not(.button) {
  position: relative;
  font-size: 0.82rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  color: inherit;
  border: 1px solid currentColor;
  background: transparent;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  display: block;
  width: 20px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"]::before {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"]::after {
  transform: translateY(-6px) rotate(-45deg);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 25px;
  color: var(--white);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  background: var(--gold);
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.button::after {
  content: "\2197";
  font-size: 1rem;
}

.button:hover {
  color: var(--dark);
  background: var(--gold-light);
  transform: translateY(-2px);
}

.button--ghost {
  color: inherit;
  border-color: rgba(255, 255, 255, 0.5);
  background: transparent;
}

.button--ghost:hover {
  color: var(--white);
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

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

.button--dark:hover {
  color: var(--dark);
  border-color: var(--gold);
  background: var(--gold-light);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 5px;
  color: var(--ink);
  border-bottom: 1px solid var(--gold);
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.text-link::after {
  content: "\2192";
  transition: transform 180ms ease;
}

.text-link:hover::after {
  transform: translateX(4px);
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: #20211e;
}

.hero::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, rgba(14, 15, 13, 0.94) 0%, rgba(14, 15, 13, 0.76) 38%, rgba(14, 15, 13, 0.14) 76%), linear-gradient(0deg, rgba(14, 15, 13, 0.5), transparent 45%);
  content: "";
}

.hero-image {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 180px;
  padding-bottom: 84px;
}

.hero h1 {
  max-width: 850px;
  margin-bottom: 28px;
}

.hero h1 em {
  color: var(--gold-light);
  font-weight: 400;
}

.hero-copy {
  max-width: 590px;
  margin-bottom: 36px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-meta {
  position: absolute;
  z-index: 2;
  right: max(24px, calc((100vw - 1180px) / 2));
  bottom: 85px;
  display: grid;
  gap: 10px;
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.72);
  border-left: 1px solid var(--gold);
  font-size: 0.74rem;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.trust-bar {
  color: var(--white);
  background: var(--gold);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  padding: 25px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
}

.trust-item:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.3);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
}

.service-card {
  position: relative;
  min-height: 340px;
  padding: 44px 44px 38px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: color 220ms ease, background 220ms ease;
}

.service-card:nth-child(even) {
  border-right: 0;
}

.service-card:hover {
  color: var(--white);
  background: var(--dark);
}

.service-number {
  display: block;
  margin-bottom: 60px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1rem;
}

.service-card h3 {
  margin-bottom: 17px;
}

.service-card p {
  max-width: 420px;
  margin-bottom: 24px;
  transition: color 220ms ease;
}

.service-card:hover p {
  color: #b9b8b1;
}

.service-card .text-link {
  position: absolute;
  bottom: 38px;
}

.service-card:hover .text-link {
  color: var(--white);
}

.split {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 8vw;
  align-items: center;
}

.split-media {
  position: relative;
}

.split-media img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.split-media::after {
  position: absolute;
  z-index: -1;
  right: -28px;
  bottom: -28px;
  width: 48%;
  height: 46%;
  border: 1px solid var(--gold);
  content: "";
}

.split-copy p {
  max-width: 570px;
}

.ticks {
  display: grid;
  gap: 0;
  margin: 34px 0 38px;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.ticks li {
  display: flex;
  gap: 14px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
}

.ticks li::before {
  color: var(--gold);
  content: "\2713";
  font-weight: 800;
}

.project-feature {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  min-height: 620px;
  background: var(--dark-soft);
}

.project-feature img {
  height: 100%;
  min-height: 620px;
  object-fit: cover;
}

.project-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 60px;
}

.project-copy h3 {
  margin-bottom: 18px;
  font-size: clamp(2.1rem, 3.5vw, 3.5rem);
}

.project-copy .text-link {
  margin-top: 14px;
  color: var(--white);
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 24px;
}

.project-tags span {
  padding: 7px 10px;
  color: var(--gold-light);
  border: 1px solid rgba(222, 199, 151, 0.35);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-step {
  padding: 40px 30px;
  border-right: 1px solid var(--line);
}

.process-step:last-child {
  border-right: 0;
}

.process-step strong {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  margin-bottom: 44px;
  color: var(--white);
  border-radius: 50%;
  background: var(--gold);
  font-family: var(--serif);
  font-weight: 400;
}

.process-step h3 {
  font-size: 1.38rem;
}

.process-step p {
  margin-bottom: 0;
  font-size: 0.94rem;
}

.price-callout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  padding: 64px;
  color: var(--white);
  background: var(--dark);
}

.price-callout h2 {
  margin-bottom: 0;
}

.price-callout p {
  color: #b9b8b1;
}

.price-callout .button {
  margin-top: 12px;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.article-card {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  align-items: flex-start;
  padding: 38px;
  border: 1px solid var(--line);
  background: var(--white);
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.article-card:hover {
  border-color: var(--gold-light);
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.article-meta {
  margin-bottom: 50px;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.article-card h3 {
  margin-bottom: 17px;
}

.article-card p {
  margin-bottom: 28px;
}

.article-card .text-link {
  margin-top: auto;
}

.article-body {
  display: grid;
  grid-template-columns: minmax(220px, 0.45fr) minmax(0, 1fr);
  gap: 8vw;
  padding: 65px 0;
  border-top: 1px solid var(--line);
}

.article-body:last-child {
  border-bottom: 1px solid var(--line);
}

.article-body h2 {
  position: sticky;
  top: 130px;
  margin-bottom: 0;
  font-size: clamp(2rem, 3.6vw, 3.4rem);
}

.article-body h3 {
  margin-top: 36px;
  margin-bottom: 12px;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 750;
  letter-spacing: 0;
}

.quote {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.quote-mark {
  display: block;
  height: 55px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 5rem;
  line-height: 1;
}

.quote blockquote {
  margin: 0 0 28px;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 3.2rem);
  line-height: 1.24;
}

.quote cite {
  color: var(--ink-soft);
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cta {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--gold);
}

.cta::after {
  position: absolute;
  top: -60%;
  right: -5%;
  width: 520px;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(255, 255, 255, 0.05), 0 0 0 140px rgba(255, 255, 255, 0.04);
  content: "";
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 360px;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.cta h2 {
  max-width: 780px;
  margin-bottom: 0;
}

.cta .button {
  flex: none;
  color: var(--white);
  border-color: var(--dark);
  background: var(--dark);
}

.page-hero {
  padding: 200px 0 100px;
  background: var(--paper);
}

.page-hero h1 {
  max-width: 990px;
  margin-bottom: 28px;
  font-size: clamp(3.4rem, 7.8vw, 7.6rem);
}

.page-hero .lead {
  margin-bottom: 0;
}

.page-hero--dark {
  color: var(--white);
  background: var(--dark);
}

.page-hero--dark p {
  color: #b9b8b1;
}

.service-detail {
  display: grid;
  grid-template-columns: 90px 0.9fr 1.1fr;
  gap: 50px;
  padding: 70px 0;
  border-top: 1px solid var(--line);
}

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

.service-detail-number {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.25rem;
}

.service-detail h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 3.7vw, 3.6rem);
}

.service-detail p:last-child {
  margin-bottom: 0;
}

.detail-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 30px;
  margin: 25px 0 0;
  padding: 0;
  list-style: none;
}

.detail-list li {
  position: relative;
  padding-left: 17px;
  color: var(--ink-soft);
}

.detail-list li::before {
  position: absolute;
  top: 0.75em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 22px;
}

.gallery-item {
  position: relative;
  grid-column: span 7;
  overflow: hidden;
  background: #ddd8ce;
}

.gallery-item:nth-child(2),
.gallery-item:nth-child(3) {
  grid-column: span 5;
}

.gallery-item:nth-child(4) {
  grid-column: span 7;
}

.gallery-item img {
  aspect-ratio: 16 / 11;
  object-fit: cover;
  transition: transform 600ms ease;
}

.gallery-item:hover img {
  transform: scale(1.025);
}

.gallery-caption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 55px 28px 25px;
  color: var(--white);
  background: linear-gradient(transparent, rgba(12, 12, 10, 0.84));
}

.gallery-caption h3 {
  margin-bottom: 4px;
  font-size: 1.55rem;
}

.gallery-caption span {
  color: var(--gold-light);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.placeholder-note {
  margin-top: 24px;
  color: #85837c;
  font-size: 0.8rem;
}

.about-statement {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 80px;
  align-items: start;
}

.about-statement h2 {
  margin-bottom: 0;
}

.about-statement .lead {
  margin-bottom: 26px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.value-card {
  min-height: 300px;
  padding: 42px;
  background: var(--white);
}

.value-icon {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  margin-bottom: 60px;
  color: var(--gold);
  border: 1px solid var(--gold-light);
  font-family: var(--serif);
  font-size: 1.25rem;
}

.value-card h3 {
  margin-bottom: 13px;
}

.value-card p {
  margin-bottom: 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 9vw;
  align-items: start;
}

.contact-cards {
  display: grid;
  margin: 38px 0;
  border-top: 1px solid var(--line);
}

.contact-card {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.contact-card span {
  display: block;
  margin-bottom: 4px;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-card a,
.contact-card strong {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 400;
}

.contact-note {
  padding: 22px 24px;
  border-left: 2px solid var(--gold);
  background: var(--white);
  font-size: 0.9rem;
}

.contact-note p:last-child {
  margin-bottom: 0;
}

.form-panel {
  padding: 52px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-panel h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 3.2vw, 3.3rem);
}

.form-intro {
  margin-bottom: 36px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.form-field {
  display: grid;
  gap: 8px;
}

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

.form-field label {
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 0;
  color: var(--ink);
  border: 0;
  border-bottom: 1px solid #bbb7ad;
  border-radius: 0;
  outline: 0;
  background: transparent;
  transition: border-color 180ms ease;
}

.form-field textarea {
  min-height: 120px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--gold);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #9a978f;
}

.form-footer {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 32px;
}

.privacy {
  margin: 0;
  font-size: 0.75rem;
}

.form-success {
  display: none;
  padding: 46px 30px;
  border: 1px solid var(--gold-light);
  text-align: center;
}

.form-success.is-visible {
  display: block;
}

.form-success strong {
  display: block;
  margin-bottom: 10px;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
}

.site-footer {
  color: var(--white);
  background: #11120f;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.9fr;
  gap: 8vw;
  padding: 78px 0 62px;
}

.footer-brand .brand {
  margin-bottom: 24px;
}

.footer-brand p {
  max-width: 430px;
  color: #8f8e87;
}

.footer-col h3 {
  margin-bottom: 22px;
  color: var(--gold-light);
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-col ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-col a {
  color: #c3c1ba;
  transition: color 180ms ease;
}

.footer-col a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 22px 0 28px;
  color: #74736d;
  border-top: 1px solid #2a2b27;
  font-size: 0.74rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

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

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .nav-links {
    position: fixed;
    z-index: -1;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 25px;
    padding: 100px 32px 50px;
    color: var(--white);
    background: var(--dark);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav-links.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-links a:not(.button) {
    font-family: var(--serif);
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: -0.02em;
    text-transform: none;
  }

  .menu-toggle {
    z-index: 1;
    display: block;
  }

  .menu-open .site-header,
  .menu-open .site-header.is-scrolled,
  .menu-open .site-header.header--solid {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.14);
    background: var(--dark);
  }

  .section-heading,
  .split,
  .project-feature,
  .price-callout,
  .about-statement,
  .contact-layout,
  .article-body {
    grid-template-columns: 1fr;
  }

  .article-body h2 {
    position: static;
  }

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

  .article-card {
    min-height: 300px;
  }

  .section-heading {
    gap: 10px;
  }

  .split {
    gap: 70px;
  }

  .project-feature img {
    min-height: 480px;
  }

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

  .process-step:nth-child(2) {
    border-right: 0;
  }

  .process-step:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .service-detail {
    grid-template-columns: 60px 1fr;
  }

  .service-detail > :last-child {
    grid-column: 2;
  }

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

  .value-card {
    min-height: auto;
  }

  .value-icon {
    margin-bottom: 35px;
  }

  .footer-main {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 700px) {
  :root {
    --container: min(100% - 32px, 1180px);
  }

  .section {
    padding: 82px 0;
  }

  .nav-wrap {
    min-height: 74px;
  }

  .brand {
    font-size: 1.2rem;
  }

  .brand-mark {
    width: 31px;
    height: 31px;
  }

  .hero {
    min-height: 800px;
  }

  .hero::before {
    background: linear-gradient(90deg, rgba(14, 15, 13, 0.92), rgba(14, 15, 13, 0.35)), linear-gradient(0deg, rgba(14, 15, 13, 0.7), transparent 55%);
  }

  .hero-image {
    object-position: 64% center;
  }

  .hero-content {
    padding-top: 145px;
    padding-bottom: 145px;
  }

  .hero h1 {
    font-size: clamp(3rem, 15vw, 4.7rem);
  }

  .hero-meta {
    right: auto;
    bottom: 42px;
    left: 16px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .trust-grid,
  .services-grid,
  .process-grid,
  .form-grid,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .trust-item,
  .trust-item:first-child {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.28);
    border-left: 0;
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .service-card {
    min-height: 330px;
    padding: 34px 28px;
    border-right: 0;
  }

  .service-card .text-link {
    bottom: 34px;
  }

  .split-media::after {
    right: -12px;
    bottom: -12px;
  }

  .project-feature img {
    min-height: 360px;
  }

  .project-copy,
  .price-callout,
  .form-panel {
    padding: 38px 26px;
  }

  .process-step,
  .process-step:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .process-step:last-child {
    border-bottom: 0;
  }

  .cta-inner {
    min-height: 440px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }

  .page-hero {
    padding: 150px 0 75px;
  }

  .service-detail {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 50px 0;
  }

  .service-detail > :last-child {
    grid-column: 1;
  }

  .detail-list {
    grid-template-columns: 1fr;
  }

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

  .gallery-item,
  .gallery-item:nth-child(2),
  .gallery-item:nth-child(3),
  .gallery-item:nth-child(4) {
    grid-column: 1;
  }

  .gallery-item img {
    min-height: 390px;
  }

  .form-footer,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .form-footer .button {
    width: 100%;
  }

  .footer-main {
    gap: 42px;
  }

  .footer-brand {
    grid-column: auto;
  }
}
