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

:root {
  --font-inter: "Inter";
  --font-cormorant: "Cormorant Garamond";
  --black: #080808;
  --onyx: #111111;
  --charcoal: #1a1a1a;
  --gold: #c8a35d;
  --gold-light: #d8ba7c;
  --ivory: #f3eee3;
  --taupe: #a49b8d;
  --live: #72a884;
  --line: rgba(200, 163, 93, 0.34);
  --page-x: clamp(22px, 4vw, 60px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  margin: 0;
  background: var(--black);
  color: var(--ivory);
  font-family: var(--font-inter), Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}

body,
button,
input,
select,
textarea {
  font-family: var(--font-inter), Arial, Helvetica, sans-serif;
}

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

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

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

::selection {
  color: var(--black);
  background: var(--gold);
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 12px 16px;
  color: var(--black);
  background: var(--gold);
  transform: translateY(-160%);
}

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

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  height: 102px;
  border-bottom: 1px solid var(--line);
  background: rgba(8, 8, 8, 0.92);
}

.header-inner {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto minmax(220px, 1fr);
  align-items: center;
  width: min(100%, 1440px);
  height: 100%;
  margin: 0 auto;
  padding: 0 var(--page-x);
}

.header-logo {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  height: 72px;
}

.header-logo img {
  display: block;
  width: auto;
  height: 100%;
  object-fit: contain;
}

.wordmark {
  display: inline-flex;
  flex-direction: column;
  justify-self: start;
  color: var(--gold);
  font-family: var(--font-cormorant), Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: 0.08em;
}

.wordmark span {
  margin-top: 8px;
  color: var(--taupe);
  font-family: var(--font-inter), Arial, sans-serif;
  font-size: 7px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 2.5vw, 42px);
  font-size: 14px;
  white-space: nowrap;
}

.main-nav a {
  position: relative;
  padding: 12px 0;
  color: rgba(243, 238, 227, 0.88);
  transition: color 180ms ease;
}

.main-nav a::after {
  position: absolute;
  right: 50%;
  bottom: 5px;
  left: 50%;
  height: 1px;
  background: var(--gold);
  content: "";
  transition:
    right 180ms ease,
    left 180ms ease;
}

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

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  right: 0;
  left: 0;
}

.location-badge {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid rgba(200, 163, 93, 0.75);
  border-radius: 4px;
  color: var(--gold);
  font-size: 13px;
  transition:
    color 180ms ease,
    background 180ms ease;
}

.location-badge span {
  margin-right: 10px;
  font-size: 10px;
}

.location-badge:hover,
.location-badge:focus-visible {
  color: var(--black);
  background: var(--gold);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 900px;
  height: 100svh;
  max-height: 980px;
  overflow: hidden;
  padding-top: 102px;
  background: var(--black);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 102px 0 0 0;
}

.hero-image {
  left: 35%;
  background-image: url("assets/hero-gold-bars.png");
  background-position: 60% center;
  background-size: cover;
  animation: image-settle 900ms ease-out both;
}

.hero-overlay {
  background:
    linear-gradient(
      90deg,
      #080808 0%,
      rgba(8, 8, 8, 0.98) 25%,
      rgba(8, 8, 8, 0.75) 49%,
      rgba(8, 8, 8, 0.12) 76%
    ),
    linear-gradient(0deg, rgba(8, 8, 8, 0.45), transparent 36%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(330px, 7fr);
  align-items: center;
  width: min(100%, 1440px);
  height: 100%;
  margin: 0 auto;
  padding: 0 var(--page-x);
}

.hero-copy {
  align-self: center;
  width: min(100%, 640px);
  padding-bottom: 12px;
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.product-copy h2,
.principles-copy h2,
.quote-copy h2 {
  margin: 0;
  font-family: var(--font-cormorant), Georgia, "Times New Roman", serif;
  font-weight: 500;
}

.hero h1 {
  max-width: 650px;
  font-size: clamp(68px, 6.2vw, 96px);
  line-height: 0.92;
  letter-spacing: -0.035em;
  text-wrap: balance;
  animation: fade-up 600ms 80ms ease-out both;
}

.hero-lede {
  max-width: 520px;
  margin: 26px 0 0;
  color: var(--taupe);
  font-size: clamp(17px, 1.55vw, 21px);
  line-height: 1.55;
  animation: fade-up 600ms 150ms ease-out both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
  animation: fade-up 600ms 220ms ease-out both;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 26px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  transition:
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.button span {
  margin-left: 14px;
  font-size: 17px;
}

.button-gold {
  color: var(--black);
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.16), transparent 42%),
    var(--gold);
}

.button-gold:hover,
.button-gold:focus-visible {
  background-color: var(--gold-light);
  box-shadow: 0 10px 28px rgba(200, 163, 93, 0.18);
  transform: translateY(-2px);
}

.button-outline {
  border-color: rgba(200, 163, 93, 0.85);
  color: var(--gold);
  background: rgba(8, 8, 8, 0.48);
}

.button-outline:hover,
.button-outline:focus-visible {
  background: rgba(200, 163, 93, 0.1);
  transform: translateY(-2px);
}

.support-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin: 32px 0 0;
  color: #8e8577;
  font-size: 14px;
  animation: fade-up 600ms 280ms ease-out both;
}

.support-line i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
}

.rate-card {
  align-self: end;
  justify-self: end;
  width: min(100%, 330px);
  margin: 0 0 68px;
  padding: 22px 24px 18px;
  border: 1px solid rgba(200, 163, 93, 0.65);
  border-radius: 12px;
  background: rgba(12, 12, 11, 0.92);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.48);
  backdrop-filter: blur(10px);
  animation: fade-up 620ms 300ms ease-out both;
}

.rate-heading {
  display: flex;
  align-items: center;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(200, 163, 93, 0.58);
}

.live-dot {
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  margin-right: 13px;
  border-radius: 50%;
  background: #6d6d6d;
}

.live-dot.is-live {
  background: var(--live);
  box-shadow: 0 0 0 5px rgba(114, 168, 132, 0.1);
  animation: live-pulse 2.4s ease-in-out infinite;
}

.rate-heading p {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
}

.rate-heading span {
  display: block;
  margin-top: 4px;
  color: var(--taupe);
  font-size: 10px;
}

.rate-row {
  display: grid;
  grid-template-columns: 55px 1fr auto;
  align-items: center;
  min-height: 49px;
  border-bottom: 1px solid rgba(243, 238, 227, 0.14);
}

.rate-row:last-child {
  border-bottom: 0;
}

.rate-row strong {
  color: var(--gold);
  font-size: 17px;
}

.rate-value {
  justify-self: end;
  font-size: 17px;
  font-variant-numeric: tabular-nums;
}

.rate-unit {
  min-width: 54px;
  margin-left: 10px;
  color: var(--taupe);
  font-size: 12px;
  text-align: right;
}

.rate-updated {
  margin: 9px 0 0;
  color: #797267;
  font-size: 9px;
  line-height: 1.4;
}

.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #0d0d0d;
}

.trust-item {
  min-height: 122px;
  padding: 30px var(--page-x);
  border-right: 1px solid rgba(200, 163, 93, 0.18);
}

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

.trust-item strong,
.trust-item span {
  display: block;
}

.trust-item strong {
  color: var(--gold);
  font-family: var(--font-cormorant), Georgia, serif;
  font-size: 26px;
  font-weight: 500;
}

.trust-item span {
  margin-top: 3px;
  color: var(--taupe);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section {
  padding: clamp(90px, 10vw, 150px) var(--page-x);
}

.section-kicker {
  display: flex;
  align-items: center;
  width: min(100%, 1320px);
  margin: 0 auto 54px;
  color: var(--gold);
}

.section-kicker::after {
  flex: 1;
  height: 1px;
  margin-left: 20px;
  background: var(--line);
  content: "";
}

.section-kicker span {
  margin-right: 13px;
  color: var(--taupe);
  font-family: var(--font-cormorant), Georgia, serif;
  font-size: 18px;
}

.section-kicker p {
  margin: 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.intro-section {
  background:
    radial-gradient(circle at 86% 12%, rgba(200, 163, 93, 0.09), transparent 27%),
    var(--black);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: clamp(70px, 10vw, 160px);
  align-items: start;
  width: min(100%, 1320px);
  margin: 0 auto;
}

.intro-grid h2,
.section-heading-row h2 {
  font-size: clamp(48px, 5.2vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.intro-grid h2 em {
  color: var(--gold);
  font-weight: 500;
}

.intro-copy p,
.section-heading-row > p,
.product-copy > p,
.principles-copy > p,
.quote-copy > p {
  color: var(--taupe);
  font-size: 17px;
  line-height: 1.75;
}

.intro-copy p {
  margin: 0 0 19px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  margin-top: 18px;
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(200, 163, 93, 0.72);
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
}

.text-link span {
  margin-left: 12px;
  transition: transform 180ms ease;
}

.text-link:hover span,
.text-link:focus-visible span {
  transform: translate(3px, -3px);
}

.services-section {
  border-top: 1px solid rgba(200, 163, 93, 0.12);
  background: var(--onyx);
}

.section-heading-row {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
  gap: 80px;
  align-items: end;
  width: min(100%, 1320px);
  margin: 0 auto 70px;
}

.section-heading-row h2 {
  max-width: 790px;
}

.section-heading-row > p {
  max-width: 390px;
  margin: 0;
}

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

.service-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 490px;
  padding: 30px 32px 34px;
  border-right: 1px solid var(--line);
  background: #111;
  transition:
    background 220ms ease,
    transform 220ms ease;
}

.service-card:last-child {
  border-right: 0;
}

.service-card:hover {
  z-index: 1;
  background: #171510;
  transform: translateY(-5px);
}

.featured-card {
  background:
    linear-gradient(145deg, rgba(200, 163, 93, 0.13), transparent 50%), #111;
}

.service-number {
  color: #70695f;
  font-family: var(--font-cormorant), Georgia, serif;
  font-size: 20px;
}

.service-card > div:last-child {
  align-self: end;
}

.card-label {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.service-card h3 {
  max-width: 340px;
  margin: 0;
  font-family: var(--font-cormorant), Georgia, serif;
  font-size: clamp(31px, 3vw, 42px);
  font-weight: 500;
  line-height: 1.02;
}

.service-card > div > p:not(.card-label) {
  margin: 22px 0 8px;
  color: var(--taupe);
  font-size: 14px;
  line-height: 1.7;
}

.product-showcase {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: 760px;
  background: #090909;
}

.product-visual {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  min-height: 680px;
  background:
    linear-gradient(140deg, rgba(200, 163, 93, 0.12), transparent 34%),
    radial-gradient(circle at 50% 46%, #262017, #0b0b0b 58%);
}

.product-visual::before {
  position: absolute;
  right: 0;
  bottom: 9%;
  left: 0;
  height: 26%;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.7));
  content: "";
}

.bar-shape {
  position: absolute;
  width: min(33vw, 390px);
  aspect-ratio: 0.54;
  border: 1px solid #e2c17a;
  border-radius: 11% 11% 8% 8%;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.7), transparent 10% 68%, rgba(0, 0, 0, 0.28)),
    linear-gradient(135deg, #8b611d, #e9c979 38%, #a57625 72%, #e5c16c);
  box-shadow:
    inset -14px -16px 30px rgba(54, 31, 0, 0.42),
    0 46px 80px rgba(0, 0, 0, 0.72);
  clip-path: polygon(12% 0, 88% 0, 100% 11%, 93% 100%, 7% 100%, 0 11%);
}

.bar-back {
  transform: translate(-76px, 34px) rotate(-18deg) scale(0.82);
  filter: brightness(0.55);
}

.bar-front {
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(69, 43, 5, 0.8);
  font-family: var(--font-cormorant), Georgia, serif;
  font-size: 38px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-shadow: 0 1px rgba(255, 255, 255, 0.26);
  transform: translate(75px, -5px) rotate(14deg);
}

.bar-front small {
  margin-top: 10px;
  font-family: var(--font-inter), Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
}

.product-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(70px, 8vw, 125px);
  border-left: 1px solid var(--line);
}

.product-copy h2 {
  max-width: 620px;
  font-size: clamp(48px, 5vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.product-copy > p {
  max-width: 570px;
  margin: 28px 0;
}

.product-copy ul {
  margin: 0 0 36px;
  padding: 0;
  list-style: none;
}

.product-copy li {
  display: flex;
  align-items: center;
  min-height: 48px;
  border-bottom: 1px solid rgba(200, 163, 93, 0.16);
  color: #c7bfb4;
  font-size: 14px;
}

.product-copy li span {
  min-width: 48px;
  color: var(--gold);
  font-family: var(--font-cormorant), Georgia, serif;
  font-size: 17px;
}

.product-copy .button {
  align-self: flex-start;
}

.process-section {
  background: var(--onyx);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(100%, 1320px);
  margin: 0 auto;
}

.process-grid article {
  min-height: 260px;
  padding: 32px 40px 38px 0;
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
}

.process-grid article + article {
  padding-left: 40px;
}

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

.process-grid article > span {
  color: var(--gold);
  font-family: var(--font-cormorant), Georgia, serif;
  font-size: 18px;
}

.process-grid h3,
.principle-list h3 {
  margin: 56px 0 13px;
  font-family: var(--font-cormorant), Georgia, serif;
  font-size: 30px;
  font-weight: 500;
}

.process-grid p,
.principle-list p {
  margin: 0;
  color: var(--taupe);
  font-size: 14px;
  line-height: 1.7;
}

.principles-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 670px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 7% 15%, rgba(200, 163, 93, 0.11), transparent 30%),
    #090909;
}

.principles-copy,
.principle-list {
  padding: clamp(75px, 8vw, 120px) var(--page-x);
}

.principles-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--line);
}

.principles-copy h2 {
  max-width: 650px;
  font-size: clamp(48px, 4.8vw, 72px);
  line-height: 1;
  letter-spacing: -0.03em;
}

.principles-copy > p {
  max-width: 600px;
  margin: 28px 0 0;
}

.principle-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.principle-list > div {
  display: grid;
  grid-template-columns: 52px 1fr;
  padding: 30px 0;
  border-bottom: 1px solid rgba(200, 163, 93, 0.18);
}

.principle-list > div:last-child {
  border-bottom: 0;
}

.principle-list > div > span {
  color: var(--gold);
  font-family: var(--font-cormorant), Georgia, serif;
  font-size: 18px;
}

.principle-list h3 {
  margin: 0 0 9px;
}

.quote-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(480px, 1.2fr);
  gap: clamp(70px, 9vw, 140px);
  width: min(100%, 1440px);
  margin: 0 auto;
}

.quote-copy h2 {
  max-width: 550px;
  font-size: clamp(54px, 5vw, 76px);
  line-height: 0.94;
}

.quote-copy > p {
  max-width: 520px;
  margin: 28px 0 36px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  color: var(--taupe);
  font-size: 14px;
}

.contact-details a {
  color: var(--gold);
}

.contact-details address {
  margin-top: 8px;
  font-style: normal;
  line-height: 1.7;
}

.quote-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  padding: clamp(28px, 4vw, 54px);
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(200, 163, 93, 0.08), transparent 44%), #101010;
}

.field {
  display: flex;
  flex-direction: column;
}

.field-wide,
.form-submit {
  grid-column: 1 / -1;
}

.field label {
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 54px;
  border: 1px solid rgba(243, 238, 227, 0.18);
  border-radius: 0;
  outline: 0;
  background: #0b0b0b;
  color: var(--ivory);
  font-size: 14px;
  transition: border-color 180ms ease;
}

.field input,
.field select {
  padding: 0 16px;
}

.field textarea {
  min-height: 126px;
  padding: 16px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #69645d;
}

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

.form-submit {
  width: 100%;
  cursor: pointer;
}

.site-footer {
  padding: 70px var(--page-x) 26px;
  border-top: 1px solid var(--line);
  background: #050505;
}

.footer-top,
.footer-bottom {
  width: min(100%, 1320px);
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 50px;
  align-items: center;
  padding-bottom: 62px;
}

.footer-top > p {
  max-width: 430px;
  margin: 0;
  color: var(--taupe);
  font-size: 13px;
  line-height: 1.65;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(200, 163, 93, 0.16);
  color: #716a61;
  font-size: 10px;
  line-height: 1.6;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom p:last-child {
  max-width: 580px;
  text-align: right;
}

.floating-whatsapp {
  position: fixed;
  z-index: 30;
  right: 24px;
  bottom: 24px;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(200, 163, 93, 0.62);
  border-radius: 50%;
  color: var(--black);
  background: var(--gold);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.38);
  font-size: 11px;
  font-weight: 800;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  box-shadow: 0 18px 44px rgba(200, 163, 93, 0.2);
  transform: translateY(-3px);
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes image-settle {
  from { opacity: 0.35; transform: scale(1.015); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes live-pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(114, 168, 132, 0.07); }
  50% { box-shadow: 0 0 0 8px rgba(114, 168, 132, 0.15); }
}

@media (max-width: 1160px) {
  .header-inner { grid-template-columns: 1fr auto; }
  .main-nav { display: none; }
  .location-badge { margin-right: 58px; }

  .menu-toggle {
    position: absolute;
    right: var(--page-x);
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle span {
    width: 24px;
    height: 1px;
    margin: 4px auto;
    background: var(--gold);
    transition: transform 180ms ease;
  }

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

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

  .main-nav.is-open {
    position: absolute;
    top: 102px;
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 15px var(--page-x) 26px;
    border-bottom: 1px solid var(--line);
    background: rgba(8, 8, 8, 0.98);
  }

  .main-nav.is-open a {
    min-height: 48px;
    border-bottom: 1px solid rgba(200, 163, 93, 0.12);
  }

  .intro-grid,
  .section-heading-row { gap: 60px; }
  .service-card { min-height: 450px; padding: 26px; }
  .product-copy { padding: 80px 54px; }
}

@media (max-width: 900px) {
  .hero { min-height: 960px; height: auto; max-height: none; }
  .hero-image,
  .hero-overlay { top: 102px; }
  .hero-image { left: 20%; height: 58%; background-position: 67% center; }
  .hero-overlay {
    height: 100%;
    background:
      linear-gradient(180deg, rgba(8, 8, 8, 0.38) 0%, #080808 48%, #080808 100%),
      linear-gradient(90deg, #080808 0%, rgba(8, 8, 8, 0.1) 80%);
  }

  .hero-inner {
    grid-template-columns: 1fr;
    align-content: end;
    gap: 46px;
    min-height: 858px;
    padding-top: 260px;
    padding-bottom: 55px;
  }

  .hero-copy { align-self: end; }
  .rate-card { align-self: auto; justify-self: start; width: min(100%, 470px); margin: 0; }
  .trust-bar { grid-template-columns: 1fr 1fr; }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n + 2) { border-bottom: 1px solid rgba(200, 163, 93, 0.18); }

  .intro-grid,
  .section-heading-row,
  .principles-section,
  .quote-section { grid-template-columns: 1fr; }

  .intro-grid,
  .section-heading-row { gap: 42px; }

  .service-grid { grid-template-columns: 1fr; border-bottom: 0; }
  .service-card { min-height: 380px; border-right: 0; border-bottom: 1px solid var(--line); }
  .product-showcase { grid-template-columns: 1fr; }
  .product-copy { border-top: 1px solid var(--line); border-left: 0; }
  .product-visual { min-height: 620px; }
  .bar-shape { width: min(48vw, 370px); }
  .process-grid { grid-template-columns: 1fr; }

  .process-grid article,
  .process-grid article + article {
    min-height: 210px;
    padding: 30px 0;
    border-right: 0;
  }

  .process-grid h3 { margin-top: 34px; }
  .principles-copy { border-right: 0; border-bottom: 1px solid var(--line); }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-top .button { justify-self: start; }
}

@media (max-width: 620px) {
  :root { --page-x: 20px; }
  .site-header { height: 82px; }
  .header-inner { height: 82px; }
  .header-logo { height: 58px; }
  .wordmark { font-size: 24px; }
  .location-badge { display: none; }
  .main-nav.is-open { top: 82px; }
  .hero { min-height: 930px; padding-top: 82px; }
  .hero-image,
  .hero-overlay { top: 82px; }
  .hero-image { left: 0; height: 47%; background-position: 66% center; }

  .hero-inner {
    min-height: 848px;
    gap: 36px;
    padding-top: 310px;
    padding-bottom: 34px;
  }

  .eyebrow { margin-bottom: 16px; }
  .hero h1 { font-size: clamp(54px, 17vw, 72px); }
  .hero-lede { margin-top: 20px; font-size: 16px; }
  .hero-actions { display: grid; grid-template-columns: 1fr; gap: 11px; margin-top: 26px; }
  .button { width: 100%; min-height: 54px; }
  .support-line { gap: 8px; margin-top: 22px; font-size: 12px; }
  .rate-card { padding: 19px 20px 16px; }
  .trust-item { min-height: 105px; padding: 24px 20px; }
  .trust-item strong { font-size: 22px; }
  .trust-item span { font-size: 9px; }
  .section { padding-top: 82px; padding-bottom: 82px; }
  .section-kicker { margin-bottom: 40px; }

  .intro-grid h2,
  .section-heading-row h2,
  .product-copy h2,
  .principles-copy h2,
  .quote-copy h2 { font-size: 46px; }

  .section-heading-row { margin-bottom: 48px; }
  .service-card { min-height: 390px; padding: 24px 22px 28px; }
  .service-card h3 { font-size: 35px; }
  .product-visual { min-height: 470px; }
  .bar-shape { width: min(62vw, 280px); }
  .bar-back { transform: translate(-42px, 34px) rotate(-18deg) scale(0.82); }
  .bar-front { font-size: 28px; transform: translate(45px, -5px) rotate(14deg); }
  .product-copy { padding: 76px 20px; }
  .principles-copy,
  .principle-list { padding: 76px 20px; }
  .quote-section { gap: 50px; }
  .quote-form { grid-template-columns: 1fr; gap: 18px; padding: 24px 20px; }
  .field-wide,
  .form-submit { grid-column: auto; }
  .footer-top { padding-bottom: 44px; }
  .footer-bottom { flex-direction: column; }
  .footer-bottom p:last-child { text-align: left; }
  .floating-whatsapp { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
