@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@500;600;700;800&family=Manrope:wght@400;500;600;700&display=swap");

:root {
  --ink: #06101d;
  --ink-2: #0b1929;
  --gold: #c8871c;
  --gold-bright: #e0a43c;
  --paper: #f4f1ea;
  --white: #ffffff;
  --muted: #66707a;
  --line: rgba(6, 16, 29, 0.14);
  --dark-line: rgba(255, 255, 255, 0.14);
  --heading: "Barlow Condensed", Impact, "Arial Narrow", sans-serif;
  --body: "Manrope", Arial, Helvetica, sans-serif;
  --shell: 1240px;
  --radius: 2px;
  --shadow: 0 24px 70px rgba(6, 16, 29, 0.14);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-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(--heading);
  line-height: 0.98;
  text-transform: uppercase;
}

.site-shell {
  width: min(calc(100% - 32px), var(--shell));
  margin-inline: auto;
  min-width: 0;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  transform: translateY(-160%);
  color: var(--ink);
  background: var(--gold-bright);
  font-weight: 800;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 32px;
  height: 2px;
  content: "";
  background: currentColor;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 52px;
}

.section-heading h2,
.split-copy h2,
.quote-banner h2 {
  margin-bottom: 20px;
  font-size: clamp(2.65rem, 8vw, 5.2rem);
  letter-spacing: -0.035em;
}

.section-heading p,
.split-copy > p {
  max-width: 650px;
  color: var(--muted);
}

.btn-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease,
    border-color 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-gold {
  color: var(--ink);
  background: var(--gold-bright);
}

.btn-gold:hover {
  background: #f1ba55;
}

.btn-outline-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.38);
  background: transparent;
}

.btn-outline-light:hover {
  border-color: var(--white);
}

.btn-outline-dark {
  color: var(--ink);
  border-color: rgba(6, 16, 29, 0.35);
  background: transparent;
}

.btn-outline-dark:hover {
  color: var(--white);
  background: var(--ink);
}

.icon-arrow {
  width: 20px;
  height: 12px;
  transition: transform 180ms ease;
}

.btn:hover .icon-arrow,
.text-link:hover .icon-arrow {
  transform: translateX(4px);
}

/* Header */
.utility-bar {
  display: none;
  color: rgba(255, 255, 255, 0.72);
  background: #02070d;
  font-size: 0.74rem;
  letter-spacing: 0.05em;
}

.utility-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.utility-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.utility-links a:hover {
  color: var(--gold-bright);
}

.site-header {
  position: relative;
  z-index: 1000;
  color: var(--white);
  background: var(--ink);
  border-bottom: 1px solid var(--dark-line);
}

.header-inner {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  position: relative;
  width: 205px;
  height: 58px;
  flex: 0 0 auto;
  overflow: hidden;
}

.brand img {
  position: absolute;
  width: 205px;
  max-width: none;
  height: auto;
  top: -48px;
  left: 0;
}

.menu-toggle {
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-content: center;
  gap: 5px;
  border: 1px solid var(--dark-line);
  color: var(--white);
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  display: block;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-7px) rotate(-45deg);
}

.primary-nav {
  position: fixed;
  inset: 80px 0 0;
  display: none;
  padding: 28px 16px;
  overflow-y: auto;
  background: var(--ink);
}

.primary-nav.is-open {
  display: block;
}

.nav-list {
  width: min(100%, var(--shell));
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.nav-list li {
  border-bottom: 1px solid var(--dark-line);
}

.nav-list a {
  display: block;
  padding: 18px 4px;
  font-family: var(--heading);
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.nav-list a:hover,
.nav-list a[aria-current="page"] {
  color: var(--gold-bright);
}

.nav-quote {
  margin-top: 22px;
}

/* Home hero */
.hero {
  position: relative;
  isolation: isolate;
  color: var(--white);
  background: var(--ink);
  overflow: hidden;
}

.hero::before,
.page-hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background-image: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to right, #000, transparent 72%);
}

.hero-grid {
  position: relative;
  display: grid;
  min-width: 0;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding: 76px 0 58px;
  min-width: 0;
}

.hero h1 {
  max-width: 840px;
  margin-bottom: 28px;
  font-size: clamp(4rem, 16vw, 8.5rem);
  letter-spacing: -0.045em;
}

.hero h1 span {
  color: var(--gold-bright);
}

.hero-lead {
  max-width: 600px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1rem, 3vw, 1.16rem);
}

.hero-visual {
  position: relative;
  min-height: 390px;
  margin-inline: -16px;
  overflow: hidden;
  background: #111d28;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
}

.hero-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(6, 16, 29, 0.08), rgba(6, 16, 29, 0.42));
}

.hero-project-card {
  position: absolute;
  z-index: 2;
  right: 16px;
  bottom: 16px;
  width: min(calc(100% - 32px), 330px);
  padding: 22px;
  color: var(--ink);
  background: rgba(244, 241, 234, 0.96);
  backdrop-filter: blur(12px);
}

.hero-project-card strong {
  display: block;
  margin-bottom: 10px;
  font-family: var(--heading);
  font-size: 1.5rem;
  line-height: 1;
  text-transform: uppercase;
}

.hero-project-card p {
  margin: 0;
  color: #53606b;
  font-size: 0.78rem;
  line-height: 1.6;
}

.hero-trust {
  border-top: 1px solid var(--dark-line);
}

.trust-grid {
  display: grid;
}

.trust-item {
  min-width: 0;
  padding: 22px 0;
  border-bottom: 1px solid var(--dark-line);
}

.trust-item small {
  display: block;
  margin-bottom: 5px;
  color: var(--gold-bright);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.trust-item strong {
  font-family: var(--heading);
  font-size: 1.35rem;
  font-weight: 600;
  text-transform: uppercase;
}

/* Shared sections */
.section {
  padding: 82px 0;
}

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

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

.section-dark .section-heading p,
.section-dark .split-copy > p {
  color: rgba(255, 255, 255, 0.68);
}

.service-grid,
.principles-grid,
.quality-grid,
.process-grid,
.footer-grid,
.detail-grid,
.contact-grid,
.company-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  min-width: 0;
}

.service-grid {
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.service-card {
  position: relative;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  overflow: hidden;
  background: var(--paper);
}

.service-card::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 72px;
  height: 72px;
  content: "";
  border-top: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
  opacity: 0.7;
}

.service-number {
  color: var(--gold);
  font-family: var(--heading);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.service-card h3 {
  margin-bottom: 16px;
  font-size: clamp(2.2rem, 9vw, 3.6rem);
}

.service-card p {
  color: var(--muted);
  font-size: 0.9rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.editorial-grid {
  display: grid;
  gap: 40px;
  min-width: 0;
}

.editorial-image {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  background: #c8c3b8;
}

.editorial-image img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.editorial-image::after {
  position: absolute;
  inset: 20px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.45);
  pointer-events: none;
}

.split-copy {
  align-self: center;
  min-width: 0;
}

.feature-list {
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding: 18px 0 18px 36px;
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
  font-weight: 700;
}

.feature-list li::before {
  position: absolute;
  left: 0;
  top: 22px;
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  content: "✓";
  color: var(--ink);
  background: var(--gold-bright);
  font-size: 0.65rem;
}

.process-grid {
  gap: 1px;
  background: var(--dark-line);
  border: 1px solid var(--dark-line);
}

.process-step {
  min-height: 250px;
  padding: 28px;
  background: var(--ink-2);
}

.process-step span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 44px;
  color: var(--ink);
  background: var(--gold-bright);
  font-family: var(--heading);
  font-weight: 800;
}

.process-step h3 {
  margin-bottom: 12px;
  font-size: 1.8rem;
}

.process-step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.86rem;
}

.quote-banner {
  position: relative;
  isolation: isolate;
  padding: 72px 0;
  overflow: hidden;
  color: var(--white);
  background: var(--gold);
}

.quote-banner::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background: linear-gradient(115deg, var(--ink) 0 72%, transparent 72%);
}

.quote-inner {
  display: grid;
  gap: 28px;
  align-items: end;
}

.quote-banner h2 {
  max-width: 760px;
  margin-bottom: 0;
}

/* Inner pages */
.page-hero {
  position: relative;
  isolation: isolate;
  padding: 86px 0 64px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.page-hero h1 {
  max-width: 920px;
  margin-bottom: 24px;
  font-size: clamp(4.4rem, 18vw, 9rem);
  letter-spacing: -0.045em;
}

.page-hero p {
  max-width: 650px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
}

.page-hero-mark {
  position: absolute;
  right: -42px;
  bottom: -90px;
  z-index: -1;
  color: rgba(255, 255, 255, 0.035);
  font-family: var(--heading);
  font-size: clamp(14rem, 40vw, 34rem);
  font-weight: 800;
  line-height: 0.8;
}

.detail-grid {
  gap: 28px;
}

.detail-card {
  padding: 30px;
  border: 1px solid var(--line);
  background: var(--white);
}

.detail-card h2,
.detail-card h3 {
  margin-bottom: 18px;
  font-size: 2.35rem;
}

.detail-card p {
  color: var(--muted);
  font-size: 0.92rem;
}

.detail-card ul {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.detail-card li {
  padding: 12px 0;
  border-top: 1px solid var(--line);
  font-size: 0.85rem;
  font-weight: 700;
}

.quality-grid,
.principles-grid {
  gap: 18px;
}

.quality-card,
.principle-card {
  min-width: 0;
  padding: 28px;
  border: 1px solid var(--dark-line);
  background: var(--ink-2);
}

.quality-card svg,
.principle-card svg {
  width: 42px;
  height: 42px;
  margin-bottom: 42px;
  color: var(--gold-bright);
}

.quality-card h3,
.principle-card h3 {
  margin-bottom: 12px;
  color: var(--white);
  font-size: 1.75rem;
}

.quality-card p,
.principle-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.86rem;
}

.company-grid {
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.company-item {
  min-width: 0;
  padding: 26px;
  background: var(--white);
}

.company-item small {
  display: block;
  margin-bottom: 7px;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.company-item strong,
.company-item a {
  overflow-wrap: anywhere;
  font-size: 0.9rem;
}

.story-note {
  padding: 30px;
  border-left: 5px solid var(--gold);
  color: var(--white);
  background: var(--ink);
}

.story-note p {
  margin: 0;
  font-family: var(--heading);
  font-size: clamp(1.8rem, 6vw, 2.8rem);
  line-height: 1.08;
  text-transform: uppercase;
}

/* Contact */
.contact-grid {
  gap: 42px;
}

.contact-panel {
  min-width: 0;
}

.contact-panel h2 {
  margin-bottom: 20px;
  font-size: clamp(2.6rem, 9vw, 4.4rem);
}

.contact-panel > p {
  color: var(--muted);
}

.contact-details {
  margin-top: 32px;
  padding: 0;
  list-style: none;
}

.contact-details li {
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.contact-details small {
  display: block;
  margin-bottom: 4px;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-details a,
.contact-details address {
  overflow-wrap: anywhere;
  font-style: normal;
  font-weight: 700;
}

.quote-form {
  min-width: 0;
  padding: 26px;
  color: var(--white);
  background: var(--ink);
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 20px;
}

.field {
  min-width: 0;
}

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

.field label,
.field legend {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0;
  outline: 0;
  color: var(--white);
  background: rgba(255, 255, 255, 0.055);
}

.field input,
.field select {
  min-height: 52px;
  padding: 0 15px;
}

.field textarea {
  min-height: 150px;
  padding: 14px 15px;
  resize: vertical;
}

.field select option {
  color: var(--ink);
  background: var(--white);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold-bright);
  box-shadow: 0 0 0 3px rgba(224, 164, 60, 0.13);
}

.check-row {
  display: flex;
  align-items: flex-start;
  gap: 11px;
}

.check-row input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-top: 4px;
  accent-color: var(--gold-bright);
}

.check-row label {
  color: rgba(255, 255, 255, 0.67);
  font-size: 0.76rem;
  line-height: 1.6;
}

.form-note {
  margin: 15px 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.72rem;
}

.hp-field {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
}

/* Footer */
.site-footer {
  color: var(--white);
  background: #02070d;
}

.footer-main {
  padding: 64px 0 44px;
}

.footer-grid {
  gap: 36px;
}

.footer-brand {
  position: relative;
  width: 250px;
  max-width: 100%;
  height: 78px;
  margin-bottom: 20px;
  overflow: hidden;
}

.footer-brand img {
  position: absolute;
  width: 250px;
  max-width: none;
  top: -58px;
  left: 0;
}

.footer-intro {
  max-width: 380px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.84rem;
}

.footer-title {
  margin-bottom: 18px;
  color: var(--gold-bright);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

.footer-links li + li {
  margin-top: 10px;
}

.footer-links a,
.footer-links address,
.footer-links span {
  overflow-wrap: anywhere;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
  font-style: normal;
}

.footer-links a:hover {
  color: var(--gold-bright);
}

.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid var(--dark-line);
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.68rem;
}

.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Reveal */
.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms ease;
}

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

/* Tablet: grids begin only at tablet width */
@media (min-width: 768px) {
  .site-shell {
    width: min(calc(100% - 56px), var(--shell));
  }

  .btn-row {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .btn {
    width: auto;
  }

  .utility-bar {
    display: block;
  }

  .primary-nav {
    inset: 118px 0 0;
  }

  .hero-copy {
    padding-top: 102px;
  }

  .hero h1 {
    font-size: clamp(5.8rem, 12vw, 8.5rem);
  }

  .hero-visual {
    margin-inline: 0;
    min-height: 510px;
  }

  .hero-visual img {
    min-height: 510px;
  }

  .trust-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .trust-item {
    padding: 25px 26px;
    border-right: 1px solid var(--dark-line);
    border-bottom: 0;
  }

  .trust-item:first-child {
    padding-left: 0;
  }

  .service-grid,
  .detail-grid,
  .quality-grid,
  .principles-grid,
  .company-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .service-card-featured {
    grid-column: span 2;
    min-height: 380px;
  }

  .editorial-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: stretch;
    gap: 54px;
  }

  .quote-inner {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .contact-grid {
    grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
    gap: 54px;
  }

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

  .quote-form {
    padding: 38px;
  }

  .footer-grid {
    grid-template-columns: 1.5fr 0.7fr 1fr;
  }

  .footer-bottom-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .header-inner {
    min-height: 94px;
  }

  .brand {
    width: 248px;
    height: 68px;
  }

  .brand img {
    width: 248px;
    top: -58px;
  }

  .menu-toggle {
    display: none;
  }

  .primary-nav {
    position: static;
    inset: auto;
    display: block;
    padding: 0;
    overflow: visible;
    background: transparent;
  }

  .nav-list {
    display: flex;
    align-items: center;
    gap: 26px;
  }

  .nav-list li {
    border: 0;
  }

  .nav-list a {
    position: relative;
    padding: 36px 0;
    font-family: var(--body);
    font-size: 0.74rem;
    letter-spacing: 0.08em;
  }

  .nav-list a::after {
    position: absolute;
    right: 0;
    bottom: 28px;
    left: 0;
    height: 2px;
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    background: var(--gold-bright);
    transition: transform 180ms ease;
  }

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

  .nav-quote {
    margin: 0 0 0 6px;
  }

  .nav-quote .btn {
    min-height: 46px;
    padding-inline: 18px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
    min-height: 690px;
  }

  .hero-copy {
    align-self: center;
    padding: 112px 64px 112px 0;
  }

  .hero h1 {
    font-size: clamp(6.6rem, 9.2vw, 9.4rem);
  }

  .hero-visual {
    min-height: 690px;
    clip-path: polygon(16% 0, 100% 0, 100% 100%, 0 100%);
  }

  .hero-visual img {
    min-height: 690px;
  }

  .hero-visual::before {
    position: absolute;
    z-index: 2;
    top: 0;
    bottom: 0;
    left: 15.7%;
    width: 3px;
    content: "";
    background: var(--gold-bright);
    transform: skewX(-7.5deg);
    transform-origin: top;
  }

  .section {
    padding: 120px 0;
  }

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

  .service-card {
    grid-column: span 3;
    min-height: 390px;
    padding: 34px;
  }

  .service-card-featured {
    grid-column: span 6;
  }

  .service-card h3 {
    font-size: 2.6rem;
  }

  .service-card-featured h3 {
    font-size: 3.25rem;
  }

  .editorial-grid {
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
    gap: 84px;
  }

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

  .page-hero {
    padding: 120px 0 92px;
  }

  .detail-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .detail-card {
    grid-column: span 4;
    min-height: 420px;
  }

  .detail-card-wide {
    grid-column: span 8;
  }

  .quality-grid,
  .principles-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .company-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1.5fr 0.7fr 1fr;
    gap: 70px;
  }
}

@media (max-width: 479px) {
  .btn {
    width: 100%;
  }

  .hero h1 {
    font-size: clamp(3.75rem, 18vw, 5.4rem);
  }

  .page-hero h1 {
    font-size: clamp(4rem, 19vw, 5.6rem);
  }

  .quote-banner::before {
    background: linear-gradient(115deg, var(--ink) 0 86%, transparent 86%);
  }
}

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

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

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