:root {
  --petroleum-950: #02131b;
  --petroleum-900: #041e29;
  --petroleum-800: #072f3e;
  --gold: #c4a478;
  --gold-deep: #96764e;
  --gold-soft: #e3d2b7;
  --ice: #f6f8f8;
  --ivory: #f1eee7;
  --ink: #17272e;
  --muted: #56666d;
  --line: rgba(196, 164, 120, 0.34);
  --shadow: 0 24px 70px rgba(2, 19, 27, 0.13);
  --header-height: 82px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  background: var(--ice);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { color: inherit; }
img, svg { display: block; max-width: 100%; }

.container {
  width: min(1180px, calc(100% - 64px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 999;
  padding: 10px 16px;
  border-radius: 6px;
  background: var(--gold);
  color: var(--petroleum-950);
  font-weight: 700;
  transform: translateY(-150%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(2, 19, 27, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand-link { flex: 0 0 auto; }
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand > img {
  width: 69px;
  height: 60px;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.25));
}
.brand-copy { display: block; }
.brand-copy strong {
  display: block;
  color: var(--gold);
  font-size: 1.3rem;
  line-height: 1;
  letter-spacing: 0.13em;
}
.brand-copy > span {
  display: block;
  margin-top: 6px;
  color: var(--ice);
  font-size: 0.59rem;
  line-height: 1;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.desktop-nav { display: flex; align-items: center; gap: clamp(18px, 2vw, 30px); }
.desktop-nav > a:not(.nav-cta) {
  position: relative;
  color: rgba(246, 248, 248, 0.82);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.desktop-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 180ms ease;
}
.desktop-nav > a:hover { color: var(--gold-soft); }
.desktop-nav > a:hover::after { transform: scaleX(1); }
.nav-cta {
  padding: 10px 17px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  color: var(--gold-soft);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.menu-button,
.mobile-nav { display: none; }

section { position: relative; }

.hero {
  min-height: calc(100svh - var(--header-height));
  color: var(--ice);
  background:
    radial-gradient(circle at 18% 24%, rgba(196, 164, 120, 0.12), transparent 32%),
    linear-gradient(110deg, var(--petroleum-950) 0%, #052733 54%, #082f3b 100%);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(196, 164, 120, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(196, 164, 120, 0.03) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(90deg, #000, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  min-height: calc(100svh - var(--header-height));
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(430px, 1.04fr);
  align-items: center;
  gap: clamp(36px, 4vw, 64px);
  padding-block: 70px 88px;
}

.hero-content { position: relative; z-index: 2; max-width: 690px; }
.eyebrow, .section-kicker {
  margin: 0 0 20px;
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  line-height: 1.45;
  text-transform: uppercase;
}
.eyebrow { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; }
.eyebrow i, .section-kicker i { width: 16px; height: 1px; background: currentColor; display: inline-block; vertical-align: middle; }

.hero h1 {
  max-width: 720px;
  margin: 0;
  color: var(--ice);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.35rem, 5.1vw, 5.3rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.98;
}
.hero h1 span { display: block; margin-top: 9px; color: var(--gold); }
.hero-subtitle { margin: 26px 0 16px; font-size: clamp(1.2rem, 2vw, 1.65rem); font-weight: 700; line-height: 1.2; }
.hero-subtitle span { color: #cbc2b2; }
.hero-description, .hero-note { max-width: 620px; color: rgba(246, 248, 248, 0.82); font-size: 0.98rem; line-height: 1.75; }
.hero-note { margin-top: 18px; padding-left: 18px; border-left: 2px solid var(--gold); color: rgba(246, 248, 248, 0.7); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }

.button {
  min-height: 49px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 0.83rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: linear-gradient(135deg, #d1b689, var(--gold-deep)); color: var(--petroleum-950); box-shadow: 0 16px 36px rgba(196, 164, 120, 0.18); }
.button-ghost { border-color: rgba(196, 164, 120, 0.68); color: var(--gold-soft); background: rgba(255, 255, 255, 0.025); }
.button-ghost:hover { background: rgba(196, 164, 120, 0.08); border-color: var(--gold); }

.hero-media {
  width: min(100%, 575px);
  justify-self: end;
}

.hero-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 1426 / 1103;
  border: 1px solid rgba(196, 164, 120, 0.48);
  border-radius: 4px 52px 4px 4px;
  background:
    linear-gradient(90deg, rgba(2, 19, 27, 0.16), rgba(2, 19, 27, 0.02) 50%, rgba(2, 19, 27, 0.22)),
    #061d25 url("/assets/images/hero-wolf.webp") center / contain no-repeat;
  box-shadow: 30px 30px 0 rgba(196, 164, 120, 0.055), 0 40px 90px rgba(0, 0, 0, 0.3);
}
.hero-visual::before {
  content: "";
  position: absolute;
  top: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  border-top: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
  border-radius: 0 54px 0 0;
}
.hero-visual-caption {
  margin: 24px 0 0;
  padding: 4px 0 4px 16px;
  border-left: 2px solid var(--gold);
  color: rgba(246, 248, 248, 0.7);
  font-size: clamp(0.78rem, 1vw, 0.92rem);
  font-weight: 700;
  line-height: 1.55;
}

.scroll-hint {
  position: absolute;
  bottom: 22px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(246, 248, 248, 0.5);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transform: translateX(-50%);
}
.scroll-hint span { width: 28px; height: 1px; background: var(--gold); }

.light-section { overflow: hidden; }
.light-section::after {
  content: "";
  position: absolute;
  z-index: 0;
  width: 500px;
  height: 500px;
  opacity: 0.025;
  background: url("/assets/images/wolf-watermark.webp") center / contain no-repeat;
  pointer-events: none;
}
.about { padding: 100px 0; background: var(--ivory); }
.about::after { right: -80px; top: -90px; }
.about-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.12fr 0.88fr; align-items: center; gap: clamp(50px, 8vw, 110px); }
.section-heading { max-width: 780px; margin: 0 auto 48px; text-align: center; }
.section-heading-left { max-width: none; margin: 0; text-align: left; }
.section-heading h2, .contact-box h2 {
  margin: 0;
  color: var(--petroleum-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 3.5vw, 3.55rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.06;
}
.section-heading > p:last-child { max-width: 610px; margin: 18px auto 0; color: var(--muted); }
.about-copy { padding-left: 34px; border-left: 1px solid var(--gold); color: var(--muted); font-size: 1.05rem; line-height: 1.8; }
.about-copy p { margin: 0; }
.about-copy p + p { margin-top: 18px; }
.about-copy strong { color: var(--ink); }

.solutions { padding: 110px 0 120px; background: var(--ice); }
.solutions::after { bottom: -120px; left: -100px; }
.cards { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.card {
  position: relative;
  min-height: 285px;
  padding: 34px 30px 30px;
  border: 1px solid rgba(196, 164, 120, 0.3);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 44px rgba(2, 19, 27, 0.05);
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}
.card:hover { transform: translateY(-5px); border-color: var(--gold); box-shadow: var(--shadow); }
.card::after { content: ""; position: absolute; right: 0; bottom: 0; width: 58px; height: 58px; border-right: 1px solid var(--gold); border-bottom: 1px solid var(--gold); opacity: 0; transition: opacity 180ms ease; }
.card:hover::after { opacity: 1; }
.card-index { position: absolute; top: 21px; right: 24px; color: rgba(2, 19, 27, 0.28); font-size: 0.68rem; font-weight: 800; letter-spacing: 0.12em; }
.icon { width: 54px; height: 54px; display: grid; place-items: center; margin-bottom: 26px; border: 1px solid var(--gold); border-radius: 50%; color: var(--gold); background: var(--petroleum-950); }
.icon svg { width: 25px; height: 25px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.card h3 { margin: 0 0 12px; color: var(--petroleum-900); font-size: 1.22rem; line-height: 1.2; }
.card p { margin: 0; color: var(--muted); font-size: 0.89rem; line-height: 1.7; }

.dark-section { color: var(--ice); background: var(--petroleum-950); }
.method-section { padding: 110px 0 120px; background: linear-gradient(140deg, var(--petroleum-950), #07303d); border-block: 1px solid var(--line); }
.section-heading-dark h2, .contact-box h2 { color: var(--ice); }
.section-heading-dark h2 span { color: var(--gold); }
.method { position: relative; display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 0; margin: 0; padding: 0; list-style: none; }
.method::before { content: ""; position: absolute; top: 24px; right: 9%; left: 9%; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.step { position: relative; z-index: 1; padding: 0 18px; text-align: center; }
.step-number { width: 49px; height: 49px; display: grid; place-items: center; margin: 0 auto 24px; border: 1px solid var(--gold); border-radius: 50%; background: var(--petroleum-950); color: var(--gold); font-family: Georgia, serif; font-size: 0.9rem; }
.step h3 { margin: 0 0 11px; color: var(--gold-soft); font-size: 1rem; line-height: 1.3; }
.step p { margin: 0; color: rgba(246, 248, 248, 0.66); font-size: 0.78rem; line-height: 1.65; }

.partners-section { padding: 120px 0; background: linear-gradient(160deg, #052733, var(--petroleum-950) 58%); border-bottom: 1px solid var(--line); }
.partners-grid-wrap { display: grid; grid-template-columns: minmax(0, 0.92fr) minmax(430px, 1.08fr); align-items: start; gap: clamp(46px, 7vw, 96px); }
.partners-grid { display: grid; grid-template-columns: 1fr; gap: 14px; margin-top: 34px; }
.partner-card { padding: 24px; border: 1px solid rgba(196, 164, 120, 0.28); border-radius: 8px; background: rgba(255, 255, 255, 0.035); }
.partner-card p, .partners-note { color: rgba(246, 248, 248, 0.67); font-size: 0.86rem; line-height: 1.7; }
.partner-card p { margin: 0; }
.partner-card-unified { padding: 28px 30px; border-left: 3px solid var(--gold); background: linear-gradient(110deg, rgba(196, 164, 120, 0.1), rgba(255, 255, 255, 0.025)); }
.partner-card-unified p { color: rgba(246, 248, 248, 0.82); font-size: clamp(0.94rem, 1.2vw, 1.05rem); line-height: 1.75; }
.partners-note { margin: 24px 0 0; padding-left: 16px; border-left: 1px solid var(--gold); }
.partners-artwork { width: min(86%, 420px); margin: 32px auto 0; overflow: hidden; isolation: isolate; border: 1px solid rgba(196, 164, 120, 0.22); border-radius: 12px; background: radial-gradient(circle at 50% 18%, rgba(196, 164, 120, 0.1), transparent 44%), #00111b; box-shadow: 0 22px 56px rgba(0, 0, 0, 0.2), 0 0 42px rgba(196, 164, 120, 0.035); }
.partners-official-brand { display: grid; justify-items: center; padding: 28px 18px 18px; text-align: center; }
.partners-official-brand img { width: min(42%, 154px); height: auto; filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.28)); }
.partners-official-brand strong { margin-top: 10px; color: var(--gold); font-size: clamp(2rem, 4vw, 2.7rem); line-height: 1; letter-spacing: 0.12em; }
.partners-official-brand span { margin-top: 9px; color: var(--gold-soft); font-size: clamp(0.62rem, 1.2vw, 0.78rem); font-weight: 700; line-height: 1; letter-spacing: 0.2em; text-transform: uppercase; }
.partners-collage { display: block; width: 100%; height: auto; opacity: 0.94; mix-blend-mode: screen; -webkit-mask-image: radial-gradient(ellipse 96% 94% at 50% 48%, #000 72%, rgba(0, 0, 0, 0.9) 84%, transparent 100%); mask-image: radial-gradient(ellipse 96% 94% at 50% 48%, #000 72%, rgba(0, 0, 0, 0.9) 84%, transparent 100%); }

.contact-box { padding: clamp(28px, 4vw, 48px); border: 1px solid rgba(196, 164, 120, 0.42); border-radius: 14px; background: rgba(246, 248, 248, 0.055); box-shadow: 0 38px 100px rgba(0, 0, 0, 0.24); }
.contact-intro { display: grid; grid-template-columns: 1fr 104px; gap: 24px; align-items: start; }
.contact-intro > div > p:last-child { margin: 14px 0 0; color: rgba(246, 248, 248, 0.65); font-size: 0.9rem; }
.contact-intro img { width: 104px; height: 104px; padding: 7px; border-radius: 8px; background: var(--ice); }
.contact-details { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.35fr) minmax(0, 0.85fr); gap: 10px; margin: 30px 0; }
.contact-details > * { min-width: 0; padding: 13px 14px; border: 1px solid rgba(196, 164, 120, 0.2); border-radius: 6px; background: rgba(2, 19, 27, 0.34); }
.contact-details small { display: block; margin-bottom: 3px; color: var(--gold); font-size: 0.62rem; letter-spacing: 0.1em; text-transform: uppercase; }
.contact-details strong { display: block; color: rgba(246, 248, 248, 0.88); font-size: 0.76rem; font-weight: 600; overflow-wrap: anywhere; }
.contact-email strong { white-space: normal; overflow-wrap: anywhere; font-size: clamp(0.7rem, 0.8vw, 0.76rem); letter-spacing: -0.01em; }
form { display: grid; gap: 15px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
label > span { display: block; margin-bottom: 6px; color: rgba(246, 248, 248, 0.76); font-size: 0.73rem; font-weight: 700; }
label > span small { color: rgba(246, 248, 248, 0.48); font-size: 0.67rem; font-weight: 500; }
input, textarea { width: 100%; border: 1px solid rgba(196, 164, 120, 0.3); border-radius: 6px; outline: none; background: rgba(246, 248, 248, 0.96); color: var(--ink); padding: 12px 13px; font-size: 0.9rem; }
input:focus, textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(196, 164, 120, 0.15); }
textarea { min-height: 110px; resize: vertical; }
.submit-button { width: 100%; border: 0; }
.form-status { margin: 0; color: var(--gold-soft); font-size: 0.78rem; text-align: center; }
.form-safety { margin: -3px 0 0; padding: 10px 12px; border-left: 2px solid var(--gold); background: rgba(2, 19, 27, 0.28); color: rgba(246, 248, 248, 0.7); font-size: 0.7rem; line-height: 1.55; }
.privacy { margin: 0; color: rgba(246, 248, 248, 0.55); font-size: 0.68rem; line-height: 1.6; }
.privacy a { color: var(--gold-soft); text-decoration: underline; text-underline-offset: 2px; }

footer { padding: 28px 0; background: #010d12; color: var(--ice); }
.footer-inner { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 28px; }
.footer-inner::after { content: ""; width: 42px; height: 1px; }
.brand-footer > img { width: 55px; height: 48px; }
.brand-footer .brand-copy strong { font-size: 1rem; }
.brand-footer .brand-copy > span { font-size: 0.48rem; }
.footer-center { text-align: center; color: rgba(246, 248, 248, 0.7); font-size: 0.78rem; }
.footer-center p { margin: 0 0 3px; }
.footer-center small { color: rgba(246, 248, 248, 0.42); font-size: 0.65rem; }
.footer-legal { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px 18px; margin: 7px 0 6px; }
.footer-legal a { color: rgba(246, 248, 248, 0.72); font-size: 0.66rem; text-decoration: underline; text-decoration-color: rgba(196, 164, 120, 0.5); text-underline-offset: 3px; }
.footer-legal a:hover { color: var(--gold-soft); }
.floating-whatsapp { position: fixed; right: 22px; bottom: 22px; z-index: 80; width: 54px; height: 54px; display: grid; place-items: center; border: 1px solid rgba(255, 255, 255, 0.4); border-radius: 50%; background: #1b9d55; color: #fff; box-shadow: 0 12px 32px rgba(2, 19, 27, 0.3); transition: transform 180ms ease; }
.floating-whatsapp:hover { transform: translateY(-3px) scale(1.03); }
.floating-whatsapp svg { width: 27px; height: 27px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }

/* Legal and compliance pages */
.legal-header { position: relative; }
.legal-back { padding: 10px 16px; border: 1px solid rgba(196, 164, 120, 0.55); border-radius: 999px; color: var(--gold-soft); font-size: 0.76rem; font-weight: 700; }
.legal-main { min-height: 70vh; background: var(--ice); }
.legal-hero { position: relative; overflow: hidden; padding: 92px 0 82px; background: linear-gradient(140deg, var(--petroleum-950), #07303d); color: var(--ice); border-bottom: 1px solid var(--line); }
.legal-hero::after { content: ""; position: absolute; right: -70px; bottom: -170px; width: 480px; height: 480px; opacity: 0.06; background: url("/assets/images/wolf-watermark.webp") center / contain no-repeat; pointer-events: none; }
.legal-hero-inner { position: relative; z-index: 1; max-width: 880px; }
.legal-hero h1 { margin: 0; max-width: 760px; color: var(--ice); font-family: Georgia, "Times New Roman", serif; font-size: clamp(3rem, 6vw, 5.4rem); font-weight: 500; letter-spacing: -0.045em; line-height: 1; }
.legal-hero-inner > p:not(.section-kicker) { max-width: 720px; margin: 22px 0 20px; color: rgba(246, 248, 248, 0.76); font-size: 1.05rem; line-height: 1.7; }
.legal-hero small { color: var(--gold-soft); font-size: 0.72rem; letter-spacing: 0.05em; }
.legal-layout { display: grid; grid-template-columns: 280px minmax(0, 760px); justify-content: center; align-items: start; gap: clamp(44px, 7vw, 90px); padding-block: 80px 110px; }
.legal-summary { position: sticky; top: 28px; padding: 24px; border: 1px solid rgba(196, 164, 120, 0.35); border-radius: 10px; background: var(--ivory); color: var(--muted); box-shadow: 0 16px 50px rgba(2, 19, 27, 0.06); }
.legal-summary strong { color: var(--petroleum-900); font-family: Georgia, serif; font-size: 1.15rem; }
.legal-summary p { margin: 12px 0 0; font-size: 0.82rem; line-height: 1.65; }
.legal-summary a, .legal-content a { color: #6d532f; font-weight: 700; text-decoration: underline; text-underline-offset: 3px; overflow-wrap: anywhere; }
.legal-content { min-width: 0; }
.legal-content section { padding: 0 0 34px; border-bottom: 1px solid rgba(2, 19, 27, 0.1); }
.legal-content section + section { padding-top: 34px; }
.legal-content h2 { margin: 0 0 15px; color: var(--petroleum-900); font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.55rem, 2.5vw, 2rem); font-weight: 500; line-height: 1.2; }
.legal-content p { margin: 0; color: #42545c; line-height: 1.82; }
.legal-content p + p { margin-top: 14px; }
.legal-content ul { margin: 0; padding-left: 22px; color: #42545c; }
.legal-content li { padding-left: 5px; line-height: 1.8; }
.legal-content li + li { margin-top: 6px; }
.legal-footer { padding: 25px 0; }
.legal-footer-inner { display: flex; justify-content: space-between; align-items: center; gap: 24px; color: rgba(246, 248, 248, 0.58); font-size: 0.7rem; }
.legal-footer nav { display: flex; gap: 18px; }
.legal-footer a { color: var(--gold-soft); }

@media (max-width: 1100px) {
  .desktop-nav { gap: 16px; }
  .desktop-nav > a:not(.nav-cta) { font-size: 0.66rem; }
  .hero-grid { grid-template-columns: minmax(0, 1fr) minmax(390px, 0.95fr); gap: 36px; }
  .hero h1 { font-size: clamp(3.25rem, 5.6vw, 4.45rem); }
  .cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .method { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 34px 8px; }
  .method::before { display: none; }
  .step:nth-child(4) { grid-column: 1 / 2; margin-left: 50%; }
  .step:nth-child(5) { grid-column: 2 / 3; margin-left: 50%; }
  .partners-grid-wrap { grid-template-columns: 1fr; }
  .partners-content { max-width: 880px; }
  .contact-box { max-width: 760px; }
}

@media (max-width: 860px) {
  :root { --header-height: 72px; }
  .container { width: min(100% - 40px, 720px); }
  .desktop-nav { display: none; }
  .menu-button {
    width: 44px;
    height: 44px;
    display: grid;
    align-content: center;
    gap: 5px;
    padding: 0 11px;
    border: 1px solid rgba(196, 164, 120, 0.45);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
  }
  .menu-button span { width: 100%; height: 1px; background: var(--gold); transition: transform 180ms ease, opacity 180ms ease; }
  .menu-button.is-open span:first-child { transform: translateY(6px) rotate(45deg); }
  .menu-button.is-open span:nth-child(2) { opacity: 0; }
  .menu-button.is-open span:last-child { transform: translateY(-6px) rotate(-45deg); }
  .mobile-nav { display: grid; grid-template-rows: 0fr; overflow: hidden; border-top: 1px solid transparent; background: rgba(2, 19, 27, 0.99); transition: grid-template-rows 220ms ease, border-color 220ms ease; }
  .mobile-nav.is-open { grid-template-rows: 1fr; border-color: var(--line); }
  .mobile-nav-inner { min-height: 0; overflow: hidden; display: grid; }
  .mobile-nav a { display: flex; justify-content: space-between; align-items: center; padding: 14px 2px; border-bottom: 1px solid rgba(196, 164, 120, 0.15); color: rgba(246, 248, 248, 0.86); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
  .mobile-nav a span { color: var(--gold); }
  .mobile-nav .mobile-cta { justify-content: center; margin: 14px 0 20px; border: 1px solid var(--gold); border-radius: 5px; color: var(--gold-soft); }
  .hero-grid { grid-template-columns: 1fr; min-height: auto; gap: 46px; padding-block: 74px 96px; }
  .hero-content { max-width: 690px; }
  .hero h1 { font-size: clamp(3.2rem, 10vw, 4.7rem); }
  .hero-media { width: min(92%, 610px); justify-self: center; }
  .scroll-hint { display: none; }
  .about { padding: 86px 0; }
  .about-grid { grid-template-columns: 1fr; gap: 34px; }
  .about-copy { max-width: 680px; }
  .solutions, .method-section, .partners-section { padding-block: 90px; }
  .section-heading { margin-bottom: 40px; }
  .contact-details { grid-template-columns: 1fr 1fr; }
  .contact-details > :last-child { grid-column: 1 / -1; }
  .legal-layout { grid-template-columns: 1fr; padding-block: 62px 86px; }
  .legal-summary { position: static; }
}

@media (max-width: 620px) {
  :root { --header-height: 66px; }
  .container { width: min(100% - 32px, 520px); }
  .header-inner { gap: 14px; }
  .brand { gap: 8px; }
  .brand > img { width: 53px; height: 46px; }
  .brand-copy strong { font-size: 1rem; }
  .brand-copy > span { margin-top: 4px; font-size: 0.45rem; letter-spacing: 0.16em; }
  .menu-button { width: 40px; height: 40px; }
  .hero-grid { gap: 36px; padding-block: 58px 68px; }
  .eyebrow { margin-bottom: 16px; font-size: 0.6rem; letter-spacing: 0.16em; gap: 7px; }
  .eyebrow i { width: 10px; }
  .hero h1 { font-size: clamp(2.65rem, 13vw, 3.75rem); line-height: 1.01; }
  .hero-subtitle { margin-top: 22px; font-size: 1.14rem; }
  .hero-description, .hero-note { font-size: 0.9rem; line-height: 1.68; }
  .hero-actions { display: grid; }
  .button { width: 100%; padding-inline: 18px; }
  .hero-media { width: 100%; }
  .hero-visual { border-radius: 4px 34px 4px 4px; box-shadow: 16px 16px 0 rgba(196, 164, 120, 0.055), 0 30px 70px rgba(0, 0, 0, 0.3); }
  .hero-visual::before { top: -12px; right: -12px; width: 70px; height: 70px; border-radius: 0 34px 0 0; }
  .hero-visual-caption { margin-top: 18px; padding-left: 13px; font-size: 0.74rem; }
  .about, .solutions, .method-section, .partners-section { padding-block: 70px; }
  .section-heading { margin-bottom: 32px; }
  .section-kicker { margin-bottom: 14px; font-size: 0.61rem; letter-spacing: 0.17em; }
  .section-heading h2, .contact-box h2 { font-size: clamp(2rem, 10vw, 2.7rem); }
  .about-copy { padding-left: 20px; font-size: 0.94rem; line-height: 1.72; }
  .cards { grid-template-columns: 1fr; }
  .card { min-height: auto; padding: 28px 25px; }
  .icon { margin-bottom: 20px; }
  .method { grid-template-columns: 1fr; gap: 0; }
  .step, .step:nth-child(4), .step:nth-child(5) { grid-column: auto; display: grid; grid-template-columns: 45px 1fr; gap: 17px; margin: 0; padding: 24px 0; border-top: 1px solid rgba(196, 164, 120, 0.18); text-align: left; }
  .step:first-child { border-top: 0; }
  .step-number { width: 42px; height: 42px; margin: 0; }
  .step h3 { font-size: 1rem; }
  .step p { font-size: 0.8rem; }
  .partner-card-unified { padding: 24px 22px; }
  .partners-artwork { width: min(92%, 360px); margin-top: 28px; border-radius: 8px; }
  .partners-official-brand { padding: 24px 16px 14px; }
  .partners-official-brand strong { font-size: 2.05rem; }
  .partners-official-brand span { font-size: 0.58rem; letter-spacing: 0.16em; }
  .contact-box { padding: 25px 20px; }
  .contact-intro { grid-template-columns: 1fr 78px; gap: 15px; }
  .contact-intro img { width: 78px; height: 78px; padding: 5px; }
  .contact-details { grid-template-columns: 1fr; margin-block: 24px; }
  .contact-details > :last-child { grid-column: auto; }
  .field-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr auto; }
  .footer-inner::after { display: none; }
  .footer-center { grid-column: 1 / -1; grid-row: 2; text-align: left; }
  .footer-legal { justify-content: flex-start; }
  .floating-whatsapp { right: 16px; bottom: 16px; width: 50px; height: 50px; }
  .legal-back { padding: 8px 12px; font-size: 0.68rem; }
  .legal-hero { padding-block: 64px 58px; }
  .legal-hero-inner > p:not(.section-kicker) { font-size: 0.92rem; }
  .legal-layout { gap: 36px; padding-block: 48px 68px; }
  .legal-summary { padding: 20px; }
  .legal-content section { padding-bottom: 28px; }
  .legal-content section + section { padding-top: 28px; }
  .legal-content p, .legal-content li { font-size: 0.91rem; line-height: 1.74; }
  .legal-footer-inner { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 380px) {
  .container { width: min(100% - 24px, 340px); }
  .brand-copy > span { display: none; }
  .hero h1 { font-size: 2.55rem; }
  .contact-intro { grid-template-columns: 1fr; }
  .contact-intro img { width: 90px; height: 90px; }
}

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

@media (hover: none) {
  .card:hover, .button:hover, .floating-whatsapp:hover { transform: none; }
}

:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }

.site-view[hidden] { display: none !important; }
.static-edit-note { display: none; }
@media print {
  .site-header, .floating-whatsapp, .scroll-hint { display: none !important; }
}
