:root {
  --ink: #0b0a08;
  --ink-soft: #15120e;
  --ink-light: #231d16;
  --paper: #f5f0e7;
  --stone: #e7ddcd;
  --white: #ffffff;
  --gold: #c9a45a;
  --gold-light: #e8cf91;
  --gold-dark: #8f672e;
  --text: #211d18;
  --muted: #6c665d;
  --line-dark: rgba(255, 255, 255, 0.14);
  --line-light: rgba(33, 29, 24, 0.14);
  --success: #a9d489;
  --error: #f1a49b;
  --shadow: 0 30px 80px rgba(12, 9, 5, 0.2);
  --serif: "Iowan Old Style", Baskerville, "Times New Roman", Times, serif;
  --sans: Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 78px;
  background: var(--ink);
}

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

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

body.menu-open {
  overflow: hidden;
}

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

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

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

button,
select {
  cursor: pointer;
}

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

h1,
h2,
h3 {
  text-wrap: balance;
}

.shell {
  width: min(1200px, calc(100% - 48px));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 11px 16px;
  border-radius: 4px;
  background: var(--gold);
  color: var(--ink);
  font-weight: 800;
  transform: translateY(-150%);
}

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

.page-progress {
  position: fixed;
  z-index: 300;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), #fff0bb);
  box-shadow: 0 0 18px rgba(235, 210, 143, 0.55);
  pointer-events: none;
  transform: scaleX(var(--scroll-progress, 0));
  transform-origin: left center;
  will-change: transform;
}

/* Header */

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  border-bottom: 1px solid transparent;
  background: linear-gradient(180deg, rgba(9, 8, 6, 0.9), rgba(9, 8, 6, 0));
  transition: background 180ms ease, border-color 180ms ease, backdrop-filter 180ms ease;
}

.site-header::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(235, 210, 143, 0.42) 50%, transparent 100%);
  opacity: 0;
  transform: scaleX(0.55);
  transition: opacity 260ms ease, transform 500ms ease;
}

.site-header.scrolled {
  border-color: var(--line-dark);
  background: rgba(11, 10, 8, 0.94);
  backdrop-filter: blur(18px);
}

.site-header.scrolled::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 26px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 44px;
  height: 44px;
}

.brand-copy {
  display: grid;
  gap: 2px;
  line-height: 1;
}

.brand-copy strong {
  font-size: 18px;
  letter-spacing: -0.035em;
}

.brand-copy small {
  color: var(--gold-light);
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 0.2em;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 34px);
  margin-left: auto;
}

.primary-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.035em;
  transition: color 160ms ease;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  right: 100%;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--gold);
  transition: right 160ms ease;
}

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

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

.language-switcher {
  display: inline-flex;
  gap: 2px;
  padding: 3px;
  border: 1px solid var(--line-dark);
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.04);
}

.language-switcher button {
  min-width: 34px;
  height: 32px;
  padding: 0 7px;
  border: 0;
  border-radius: 99px;
  background: transparent;
  color: rgba(255, 255, 255, 0.5);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.language-switcher button[aria-pressed="true"] {
  background: var(--gold);
  color: var(--ink);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0 10px;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  height: 1px;
  margin: 6px 0;
  background: var(--white);
  transition: transform 160ms ease;
}

/* Shared components */

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow > span:first-child {
  width: 38px;
  height: 1px;
  background: currentColor;
}

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

.section-number {
  margin-bottom: 36px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 14px 23px;
  border: 1px solid transparent;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 850;
  line-height: 1.25;
  text-align: center;
  transition: transform 170ms ease, background 170ms ease, border-color 170ms ease;
}

.button::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: -80%;
  bottom: -80%;
  left: -55%;
  width: 38%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.52), transparent);
  opacity: 0;
  transform: skewX(-18deg) translateX(0);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button:hover::after,
.button:focus-visible::after {
  opacity: 1;
  transform: skewX(-18deg) translateX(520%);
  transition: transform 720ms cubic-bezier(0.2, 0.7, 0.2, 1), opacity 180ms ease;
}

.button-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--ink);
  box-shadow: 0 14px 38px rgba(201, 164, 90, 0.18);
}

.button-gold:hover,
.button-gold:focus-visible {
  background: #efd79a;
}

/* Hero: one message, one image */

.hero {
  --pointer-x: 72%;
  --pointer-y: 28%;
  position: relative;
  min-height: 900px;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-frame {
  position: absolute;
  z-index: 2;
  top: 100px;
  right: 22px;
  bottom: 24px;
  left: 22px;
  border: 1px solid rgba(232, 207, 145, 0.28);
  pointer-events: none;
}

.hero-frame::before,
.hero-frame::after {
  content: "";
  position: absolute;
  width: 54px;
  height: 54px;
  border-color: var(--gold-light);
  opacity: 0.7;
}

.hero-frame::before {
  top: -1px;
  left: -1px;
  border-top: 2px solid;
  border-left: 2px solid;
}

.hero-frame::after {
  right: -1px;
  bottom: -1px;
  border-right: 2px solid;
  border-bottom: 2px solid;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  background: radial-gradient(
    circle 360px at var(--pointer-x) var(--pointer-y),
    rgba(235, 210, 143, 0.14),
    rgba(211, 173, 97, 0.035) 42%,
    transparent 72%
  );
  pointer-events: none;
  transition: background-position 180ms ease;
}

.hero::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: -35%;
  bottom: -35%;
  left: -38%;
  width: 26%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(235, 210, 143, 0.03),
    rgba(255, 244, 206, 0.13),
    rgba(235, 210, 143, 0.03),
    transparent
  );
  filter: blur(2px);
  pointer-events: none;
  transform: skewX(-14deg);
  animation: hero-light-sweep 10s 1.1s cubic-bezier(0.2, 0.65, 0.25, 1) infinite;
}

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

.hero-image {
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.82) sepia(0.08) contrast(1.06);
  transform: scale(1.035);
  animation: hero-breathe 18s ease-in-out infinite alternate;
  will-change: transform;
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(9, 8, 6, 0.99) 0%, rgba(9, 8, 6, 0.92) 46%, rgba(9, 8, 6, 0.48) 75%, rgba(9, 8, 6, 0.28) 100%),
    linear-gradient(0deg, rgba(11, 10, 8, 0.82), transparent 52%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 150px;
  padding-bottom: 120px;
}

@keyframes hero-breathe {
  from { transform: scale(1.035) translate3d(0, 0, 0); }
  to { transform: scale(1.085) translate3d(-0.7%, -0.35%, 0); }
}

@keyframes hero-light-sweep {
  0%, 12% { opacity: 0; transform: skewX(-14deg) translateX(0); }
  20% { opacity: 1; }
  38% { opacity: 0; transform: skewX(-14deg) translateX(650%); }
  100% { opacity: 0; transform: skewX(-14deg) translateX(650%); }
}

.hero h1 {
  max-width: 1050px;
  margin-bottom: 28px;
  font-family: var(--serif);
  font-size: clamp(3.45rem, 5.05vw, 5.25rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.03;
}

.hero-lead {
  max-width: 710px;
  margin-bottom: 36px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1.02rem, 1.35vw, 1.17rem);
  line-height: 1.75;
}

/* Clear credibility strip */

.trust-strip {
  border-top: 1px solid rgba(232, 207, 145, 0.2);
  border-bottom: 1px solid rgba(232, 207, 145, 0.16);
  background:
    linear-gradient(90deg, rgba(201, 164, 90, 0.05), transparent 36%, rgba(201, 164, 90, 0.05)),
    #100e0b;
}

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

.trust-grid article {
  min-height: 116px;
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 18px;
  align-items: center;
  padding: 27px clamp(22px, 3vw, 42px);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

.trust-grid article > span {
  color: var(--gold);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.trust-grid strong {
  display: block;
  margin-bottom: 3px;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
}

.trust-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.46);
  font-size: 10px;
  line-height: 1.55;
}

.hero-language {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.43);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.scroll-cue {
  position: absolute;
  bottom: 24px;
  left: 50%;
  width: 24px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 99px;
  transform: translateX(-50%);
}

.scroll-cue span {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 2px;
  height: 7px;
  border-radius: 99px;
  background: var(--gold);
  transform: translateX(-50%);
  animation: scroll-down 1.8s ease-in-out infinite;
}

@keyframes scroll-down {
  0%, 100% { opacity: 0.35; transform: translate(-50%, 0); }
  50% { opacity: 1; transform: translate(-50%, 10px); }
}

/* Editorial story sections */

.story-section {
  min-height: 760px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.story-light {
  background: var(--paper);
  color: var(--text);
}

.story-dark {
  background:
    radial-gradient(circle at 82% 20%, rgba(201, 164, 90, 0.075), transparent 28%),
    var(--ink-soft);
  color: var(--white);
}

.story-media {
  --image-scale: 1.045;
  position: relative;
  min-height: 760px;
  overflow: hidden;
  background: var(--ink-soft);
}

.story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate3d(0, var(--parallax-y, 0px), 0) scale(var(--image-scale));
  transition: transform 750ms cubic-bezier(0.2, 0.7, 0.2, 1), filter 500ms ease;
  will-change: transform;
}

.story-media::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(235, 210, 143, 0.11);
  background:
    linear-gradient(135deg, rgba(235, 210, 143, 0.12), transparent 22%),
    linear-gradient(0deg, rgba(11, 10, 8, 0.21), transparent 38%);
  pointer-events: none;
}

.story-section:hover .story-media img {
  --image-scale: 1.07;
  filter: saturate(1.06) contrast(1.025);
}

.story-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(65px, 8vw, 135px);
}

.story-content h2,
.process-heading h2,
.contact-intro h2 {
  margin-bottom: 30px;
  font-family: var(--serif);
  font-size: clamp(2.7rem, 4.4vw, 4.8rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.03;
}

.story-content > p:not(.eyebrow, .section-number) {
  max-width: 650px;
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
}

.story-content > .story-lead {
  font-size: 17px;
  line-height: 1.82;
}

.story-dark .story-content > p:not(.eyebrow, .section-number) {
  color: rgba(255, 255, 255, 0.61);
}

.simple-list {
  display: grid;
  gap: 0;
  max-width: 650px;
  margin: 28px 0 0;
  padding: 0;
  border-top: 1px solid var(--line-light);
  list-style: none;
}

.simple-list li {
  position: relative;
  padding: 15px 0 15px 24px;
  border-bottom: 1px solid var(--line-light);
  color: #33454f;
  font-size: 12px;
  font-weight: 750;
}

.simple-list li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 8px;
  height: 1px;
  background: var(--gold-dark);
}

.legal-note {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 13px;
  max-width: 650px;
  align-items: start;
  margin-top: 18px;
  padding: 18px 19px;
  border-left: 2px solid var(--gold);
  background: rgba(255, 255, 255, 0.045);
}

.legal-note > span {
  width: 27px;
  height: 27px;
  display: grid;
  place-content: center;
  border: 1px solid rgba(235, 210, 143, 0.3);
  border-radius: 50%;
  color: var(--gold-light);
  font-family: var(--serif);
  font-style: italic;
}

.legal-note p {
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  line-height: 1.65;
}

/* Process */

.process-section {
  padding: clamp(90px, 10vw, 150px) 0;
  background: var(--paper);
  color: var(--text);
}

.process-heading {
  max-width: 900px;
  margin-bottom: clamp(55px, 7vw, 90px);
}

.process-heading h2 {
  margin-bottom: 25px;
}

.process-heading > p:last-child {
  max-width: 660px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.process-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-light);
  list-style: none;
}

.process-list li {
  min-height: 150px;
  display: grid;
  grid-template-columns: 100px minmax(210px, 0.75fr) minmax(300px, 1.25fr);
  gap: 30px;
  align-items: center;
  padding: 30px 0;
  border-bottom: 1px solid var(--line-light);
  transition: background 220ms ease, padding 220ms ease;
}

.process-list li:hover {
  padding-right: 22px;
  padding-left: 22px;
  background: rgba(211, 173, 97, 0.07);
}

.step-number {
  width: 42px;
  height: 42px;
  display: grid;
  place-content: center;
  border: 1px solid rgba(149, 108, 50, 0.35);
  border-radius: 50%;
  color: var(--gold-dark);
  font-size: 9px;
  font-weight: 900;
  transition: border-color 200ms ease, background 200ms ease, color 200ms ease, box-shadow 200ms ease;
}

.process-list li:hover .step-number {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 0 28px rgba(211, 173, 97, 0.28);
}

.process-list h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.3vw, 2.25rem);
  font-weight: 500;
  letter-spacing: -0.03em;
}

.process-list p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.expert-line {
  margin-top: 42px;
  padding-left: 22px;
  border-left: 2px solid var(--gold);
}

.expert-line p {
  max-width: 850px;
  margin: 0;
  color: #66737a;
  font-size: 11px;
  line-height: 1.75;
}

/* Contact */

.contact-section {
  padding: clamp(90px, 10vw, 145px) 0;
  background:
    radial-gradient(circle at 10% 15%, rgba(201, 164, 90, 0.1), transparent 28%),
    var(--ink);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(55px, 8vw, 115px);
  align-items: start;
}

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

.contact-intro h2 {
  margin-bottom: 27px;
}

.contact-intro > p:not(.eyebrow) {
  max-width: 510px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.61);
  font-size: 15px;
  line-height: 1.82;
}

.direct-contact {
  display: grid;
  gap: 7px;
  max-width: 430px;
  padding-top: 24px;
  border-top: 1px solid var(--line-dark);
}

.direct-contact small {
  color: rgba(255, 255, 255, 0.39);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.direct-contact a {
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 1.55rem;
}

.direct-contact span {
  color: rgba(255, 255, 255, 0.4);
  font-size: 10px;
}

.contact-form {
  position: relative;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(235, 210, 143, 0.22);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.035), transparent 42%),
    rgba(23, 19, 14, 0.88);
  box-shadow: var(--shadow);
}

.contact-form::before,
.contact-form::after {
  content: "";
  position: absolute;
  width: 42px;
  height: 42px;
  border-color: var(--gold);
  pointer-events: none;
}

.contact-form::before {
  top: -1px;
  left: -1px;
  border-top: 2px solid;
  border-left: 2px solid;
}

.contact-form::after {
  right: -1px;
  bottom: -1px;
  border-right: 2px solid;
  border-bottom: 2px solid;
}

.contact-form fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.contact-form legend {
  margin-bottom: 28px;
  padding: 0;
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 500;
}

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

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

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

.field > span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  font-weight: 750;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 51px;
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 3px;
  outline: 0;
  background: rgba(255, 255, 255, 0.045);
  color: var(--white);
  transition: border-color 150ms ease, background 150ms ease, box-shadow 150ms ease;
}

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

.field select {
  appearance: none;
  padding-right: 42px;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--gold) 50%),
    linear-gradient(135deg, var(--gold) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 22px,
    calc(100% - 13px) 22px;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

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

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(255, 255, 255, 0.28);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold);
  background-color: rgba(255, 255, 255, 0.065);
  box-shadow: 0 0 0 3px rgba(211, 173, 97, 0.08);
}

.field input:user-invalid,
.field select:user-invalid,
.field textarea:user-invalid {
  border-color: rgba(241, 164, 155, 0.78);
}

.consent {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  align-items: start;
  margin: 23px 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 11px;
  line-height: 1.55;
}

.consent input {
  width: 17px;
  height: 17px;
  margin: 2px 0 0;
  accent-color: var(--gold);
}

.consent a {
  margin-left: 4px;
  color: var(--gold-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-notice {
  min-height: 22px;
  margin: 0 0 14px;
  color: var(--error);
  font-size: 12px;
  font-weight: 700;
}

.form-notice.success {
  color: var(--success);
}

.form-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.form-actions.single-action {
  grid-template-columns: 1fr;
}

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

.button-whatsapp {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
}

.button-whatsapp:hover,
.button-whatsapp:focus-visible {
  border-color: #80c99e;
  background: rgba(91, 184, 130, 0.12);
}

.wa-mark {
  width: 27px;
  height: 27px;
  display: grid;
  place-content: center;
  border: 1px solid rgba(128, 201, 158, 0.55);
  border-radius: 50%;
  color: #94d9af;
  font-size: 8px;
  font-weight: 900;
}

.form-footnote {
  margin: 17px 0 0;
  color: rgba(255, 255, 255, 0.38);
  font-size: 10px;
  line-height: 1.6;
}

/* Footer */

.site-footer {
  border-top: 1px solid var(--line-dark);
  background: #070605;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 0.7fr;
  gap: 58px;
  padding-top: 68px;
  padding-bottom: 58px;
}

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

.footer-grid > div:first-child > p {
  max-width: 390px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 12px;
}

.footer-grid h2 {
  margin-bottom: 17px;
  color: var(--gold-light);
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-grid > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-grid a:not(.brand),
.footer-grid p {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  line-height: 1.7;
}

.footer-grid a:not(.brand):hover {
  color: var(--gold-light);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding-top: 21px;
  padding-bottom: 21px;
  border-top: 1px solid var(--line-dark);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.32);
  font-size: 9px;
}

/* Motion */

.reveal {
  opacity: 0;
  filter: blur(5px);
  transform: translateY(26px);
  transition:
    opacity 760ms cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 760ms cubic-bezier(0.2, 0.7, 0.2, 1),
    filter 760ms ease;
}

.reveal.visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

.reveal-delay {
  transition-delay: 130ms;
}

.story-media.reveal {
  opacity: 1;
  filter: none;
  transform: none;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 980ms cubic-bezier(0.22, 0.74, 0.18, 1);
}

.story-dark .story-media.reveal {
  clip-path: inset(0 0 0 100%);
}

.story-media.reveal.visible,
.story-dark .story-media.reveal.visible {
  clip-path: inset(0);
}

/* Responsive */

@media (max-width: 1080px) {
  .primary-nav {
    gap: 17px;
  }

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

  .story-content {
    padding: 65px 56px;
  }
}

@media (max-width: 860px) {
  .shell {
    width: min(100% - 36px, 720px);
  }

  .header-inner {
    min-height: 72px;
    gap: 10px;
  }

  .brand img {
    width: 40px;
    height: 40px;
  }

  .brand-copy strong {
    font-size: 16px;
  }

  .primary-nav {
    position: fixed;
    z-index: 99;
    inset: 72px 0 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    margin: 0;
    padding: 28px;
    visibility: hidden;
    opacity: 0;
    background: rgba(11, 10, 8, 0.99);
    transform: translateY(-8px);
    transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
  }

  .primary-nav.open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .primary-nav a {
    padding: 19px 0;
    border-bottom: 1px solid var(--line-dark);
    font-family: var(--serif);
    font-size: 1.9rem;
    font-weight: 500;
  }

  .primary-nav a::after {
    display: none;
  }

  .language-switcher {
    order: 2;
    margin-left: auto;
  }

  .menu-toggle {
    display: block;
    order: 3;
  }

  .menu-toggle[aria-expanded="true"] span:nth-of-type(2) {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-of-type(3) {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .hero {
    min-height: 800px;
  }

  .hero-frame {
    top: 88px;
    right: 12px;
    bottom: 14px;
    left: 12px;
  }

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

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(9, 8, 6, 0.58), rgba(9, 8, 6, 0.93) 63%, rgba(9, 8, 6, 0.99) 100%),
      linear-gradient(90deg, rgba(9, 8, 6, 0.89), rgba(9, 8, 6, 0.42));
  }

  .hero::before {
    background: radial-gradient(circle 260px at 72% 25%, rgba(235, 210, 143, 0.11), transparent 72%);
  }

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

  .hero h1 {
    max-width: 700px;
    font-size: clamp(2.85rem, 8vw, 4rem);
  }

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

  .trust-grid article,
  .trust-grid article:first-child,
  .trust-grid article:last-child {
    min-height: 92px;
    padding: 21px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  }

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

  .story-section {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .story-dark .story-media {
    order: -1;
  }

  .story-media {
    min-height: 520px;
  }

  .story-content {
    min-height: auto;
    padding: 80px max(28px, 8vw);
  }

  .process-list li {
    grid-template-columns: 70px minmax(180px, 0.8fr) minmax(260px, 1.2fr);
    gap: 20px;
  }

  .process-list li:hover {
    padding-right: 0;
    padding-left: 0;
    background: transparent;
  }

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

  .contact-intro {
    position: static;
  }

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

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 580px) {
  .shell {
    width: min(100% - 28px, 500px);
  }

  .brand-copy small {
    display: none;
  }

  .brand-copy strong {
    font-size: 15px;
  }

  .language-switcher {
    gap: 1px;
    padding: 3px;
  }

  .language-switcher button {
    min-width: 29px;
    height: 29px;
    padding: 0 5px;
    font-size: 8px;
  }

  .menu-toggle {
    width: 38px;
    height: 38px;
  }

  .hero {
    min-height: 760px;
  }

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

  .eyebrow {
    gap: 9px;
    font-size: 8px;
    letter-spacing: 0.16em;
  }

  .eyebrow > span:first-child {
    width: 25px;
  }

  .hero h1 {
    margin-bottom: 23px;
    font-size: clamp(2.08rem, 9.7vw, 2.85rem);
    line-height: 1.08;
    overflow-wrap: break-word;
  }

  .hero-frame {
    top: 80px;
    right: 7px;
    bottom: 8px;
    left: 7px;
  }

  .hero-frame::before,
  .hero-frame::after {
    width: 34px;
    height: 34px;
  }

  .hero-lead {
    font-size: 14px;
    line-height: 1.7;
  }

  .hero .button {
    width: 100%;
  }

  .scroll-cue {
    display: none;
  }

  .story-media {
    min-height: 390px;
  }

  .story-content {
    padding: 70px 24px;
  }

  .section-number {
    margin-bottom: 28px;
  }

  .story-content h2,
  .process-heading h2,
  .contact-intro h2 {
    font-size: clamp(2.35rem, 11vw, 3.2rem);
    overflow-wrap: break-word;
  }

  .story-content > .story-lead {
    font-size: 15px;
  }

  .process-section,
  .contact-section {
    padding: 78px 0;
  }

  .process-list li {
    min-height: auto;
    grid-template-columns: 52px 1fr;
    gap: 8px 14px;
    align-items: start;
    padding: 27px 0;
  }

  .process-list h3 {
    align-self: center;
    font-size: 1.65rem;
  }

  .process-list p {
    grid-column: 2;
  }

  .contact-form {
    padding: 25px 18px;
  }

  .form-grid,
  .form-actions {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-grid > div:first-child {
    grid-column: auto;
  }

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

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

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

  .story-media.reveal,
  .story-dark .story-media.reveal {
    clip-path: none;
  }

  .hero::after,
  .page-progress {
    display: none;
  }

  .hero-image,
  .story-media img {
    animation: none;
    transform: none;
  }
}
