:root {
  --ink: #0b1612;
  --ink-soft: #17251f;
  --forest: #073c2c;
  --forest-2: #0b5a40;
  --forest-3: #167052;
  --gold: #c6962b;
  --gold-deep: #9e7318;
  --gold-soft: #ecd98e;
  --ivory: #f6f1e6;
  --paper: #fffdf8;
  --white: #ffffff;
  --muted: #65736d;
  --muted-light: #d8e0dc;
  --line: rgba(7, 60, 44, 0.15);
  --line-dark: rgba(236, 217, 142, 0.21);
  --success: #0e7a52;
  --danger: #a62929;
  --shadow-sm: 0 10px 25px rgba(7, 31, 23, 0.08);
  --shadow-md: 0 20px 55px rgba(7, 31, 23, 0.13);
  --shadow-lg: 0 34px 90px rgba(7, 31, 23, 0.19);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 30px;
  --container: 1180px;
  --header-offset: 98px;
  --serif: Georgia, 'Times New Roman', Times, serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  --transition: 220ms ease;
}

* {
  box-sizing: border-box;
}

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

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

body.menu-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

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

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

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

button {
  border: 0;
}

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

h1,
h2,
h3,
h4 {
  color: var(--ink);
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

h1 {
  font-size: clamp(2.45rem, 8vw, 5.8rem);
}

h2 {
  font-size: clamp(2rem, 6.2vw, 4.15rem);
}

h3 {
  font-size: clamp(1.35rem, 3.4vw, 2.2rem);
}

p:last-child {
  margin-bottom: 0;
}

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

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

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 9999;
  transform: translateY(-150%);
  padding: 0.75rem 1rem;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  font-weight: 700;
  transition: transform var(--transition);
}

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

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

.narrow {
  width: min(calc(100% - 32px), 850px);
  margin-inline: auto;
}

.section {
  position: relative;
  padding: clamp(4.5rem, 10vw, 8.5rem) 0;
  scroll-margin-top: calc(var(--header-offset) + 20px);
}

.section-sm {
  padding: clamp(3rem, 7vw, 5.25rem) 0;
}

.section-dark {
  overflow: hidden;
  background: var(--ink);
  color: #e9eee9;
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--white);
}

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

.section-pattern::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(198, 150, 43, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(198, 150, 43, 0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, transparent, #000 16%, #000 82%, transparent);
}

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

.eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: currentColor;
}

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

.lead {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1.02rem, 2vw, 1.25rem);
  line-height: 1.75;
}

.section-dark .lead {
  color: #c6d0cb;
}

.section-heading {
  max-width: 800px;
  margin-bottom: clamp(2.2rem, 5vw, 4rem);
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.section-heading.center .lead {
  margin-inline: auto;
}

.rule-mark {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  width: 150px;
  margin-top: 1.5rem;
}

.rule-mark::before,
.rule-mark::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gold);
}

.rule-mark span {
  width: 7px;
  height: 7px;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.82rem 1.22rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--forest);
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.045em;
  line-height: 1.2;
  text-align: center;
  transition: transform var(--transition), background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.btn:hover {
  transform: translateY(-2px);
  background: var(--forest-2);
  box-shadow: 0 14px 26px rgba(7, 60, 44, 0.19);
}

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

.btn-gold:hover {
  background: var(--gold-soft);
}

.btn-outline {
  border-color: rgba(7, 60, 44, 0.35);
  background: transparent;
  color: var(--forest);
}

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

.section-dark .btn-outline {
  border-color: rgba(236, 217, 142, 0.45);
  color: var(--gold-soft);
}

.section-dark .btn-outline:hover {
  border-color: var(--gold-soft);
  background: var(--gold-soft);
  color: var(--ink);
}

.icon-inline {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Announcement + sticky navigation */
.topbar {
  position: relative;
  z-index: 20;
  background: var(--forest);
  color: #f5f8f6;
  font-size: 0.78rem;
}

.topbar-inner {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding-block: 0.4rem;
  text-align: center;
}

.topbar-message {
  display: none;
}

.topbar a {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  gap: 0.4rem;
  transition: color var(--transition);
}

.topbar a:hover {
  color: var(--gold-soft);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1400;
  width: 100%;
  border-bottom: 1px solid rgba(7, 60, 44, 0.12);
  background: rgba(255, 253, 248, 0.98);
  box-shadow: 0 8px 24px rgba(7, 31, 23, 0.06);
  backdrop-filter: blur(12px);
  transition: box-shadow var(--transition), background var(--transition);
}

.site-header.scrolled {
  background: var(--paper);
  box-shadow: 0 12px 35px rgba(7, 31, 23, 0.12);
}

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

.brand {
  display: inline-flex;
  width: min(216px, 58vw);
  min-height: 50px;
  align-items: center;
  flex: 0 1 auto;
}

.brand img {
  width: 100%;
  max-height: 56px;
  object-fit: contain;
}

.desktop-nav,
.header-actions {
  display: none;
}

.menu-toggle {
  position: relative;
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--forest);
  cursor: pointer;
}

.menu-toggle-lines,
.menu-toggle-lines::before,
.menu-toggle-lines::after {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform var(--transition), opacity var(--transition);
}

.menu-toggle-lines {
  position: relative;
}

.menu-toggle-lines::before,
.menu-toggle-lines::after {
  content: '';
  position: absolute;
  left: 0;
}

.menu-toggle-lines::before {
  top: -6px;
}

.menu-toggle-lines::after {
  top: 6px;
}

.menu-toggle[aria-expanded='true'] .menu-toggle-lines {
  background: transparent;
}

.menu-toggle[aria-expanded='true'] .menu-toggle-lines::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded='true'] .menu-toggle-lines::after {
  top: 0;
  transform: rotate(-45deg);
}

.mobile-panel {
  position: fixed;
  z-index: 1600;
  inset: 0;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  background: var(--paper);
  color: var(--ink);
  opacity: 0;
  pointer-events: none;
  transform: translateX(100%);
  transition: opacity 280ms ease, transform 280ms ease;
}

.mobile-panel.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.mobile-panel-head {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1rem;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.mobile-panel-head img {
  width: min(210px, 63vw);
  max-height: 55px;
  object-fit: contain;
}

.menu-close {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--forest);
  cursor: pointer;
}

.mobile-nav {
  display: grid;
  gap: 0;
  padding: 1.25rem 1rem;
}

.mobile-nav a {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.25rem;
}

.mobile-nav a::after {
  content: '›';
  color: var(--gold-deep);
  font-family: var(--sans);
  font-size: 1.5rem;
}

.mobile-nav a.active {
  color: var(--forest-2);
  font-weight: 700;
}

.mobile-panel-contact {
  display: grid;
  gap: 0.75rem;
  margin-top: auto;
  padding: 1rem 1rem calc(1.5rem + env(safe-area-inset-bottom));
  background: var(--forest);
  color: var(--white);
}

.mobile-panel-contact a {
  display: flex;
  min-height: 48px;
  align-items: center;
  gap: 0.65rem;
  color: var(--white);
  font-weight: 700;
  overflow-wrap: anywhere;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 9vw, 7.5rem) 0 clamp(4rem, 9vw, 7rem);
  background:
    radial-gradient(circle at 88% 12%, rgba(198, 150, 43, 0.14), transparent 24rem),
    linear-gradient(135deg, #fffdf8 0%, #f6f1e6 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: -20%;
  width: 70%;
  height: 100%;
  background-image: linear-gradient(rgba(7, 60, 44, 0.055) 1px, transparent 1px), linear-gradient(90deg, rgba(7, 60, 44, 0.055) 1px, transparent 1px);
  background-size: 46px 46px;
  transform: skewX(-8deg);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero h1 {
  max-width: 880px;
  margin-bottom: 1.25rem;
}

.hero h1 .accent {
  color: var(--forest-2);
}

.hero-copy .lead {
  max-width: 660px;
  margin-bottom: 1.75rem;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1.65rem 0 0;
  padding: 0;
  list-style: none;
}

.hero-tags li {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  gap: 0.4rem;
  padding: 0.48rem 0.75rem;
  border: 1px solid rgba(7, 60, 44, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  color: var(--forest);
  font-size: 0.78rem;
  font-weight: 750;
}

.hero-visual {
  position: relative;
}

.hero-frame {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 0.72rem;
  border: 1px solid rgba(198, 150, 43, 0.5);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.85);
  box-shadow: var(--shadow-lg);
}

.hero-frame img {
  width: 100%;
  border-radius: calc(var(--radius-lg) - 10px);
  object-fit: contain;
}

.hero-frame-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0.5rem 0.15rem;
  color: var(--muted);
  font-size: 0.76rem;
}

.hero-badge {
  position: absolute;
  z-index: 3;
  right: 0.25rem;
  bottom: -1.5rem;
  width: min(210px, 58%);
  padding: 1rem;
  border: 1px solid rgba(236, 217, 142, 0.55);
  border-radius: var(--radius-md);
  background: var(--forest);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.hero-badge strong {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--gold-soft);
  font-family: var(--serif);
  font-size: 1.12rem;
}

.hero-badge span {
  display: block;
  font-size: 0.78rem;
  line-height: 1.5;
}

/* Trust strip */
.trust-strip {
  position: relative;
  z-index: 4;
  margin-top: -1px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

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

.trust-item {
  display: flex;
  min-height: 94px;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

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

.icon-orbit {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(198, 150, 43, 0.55);
  border-radius: 50%;
  color: var(--gold-deep);
}

.icon-orbit svg {
  width: 21px;
  height: 21px;
}

.trust-item strong {
  display: block;
  margin-bottom: 0.1rem;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.04rem;
}

.trust-item span {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

/* Editorial image/content layouts */
.editorial-grid {
  display: grid;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.media-frame {
  position: relative;
  padding: 0.7rem;
  border: 1px solid rgba(198, 150, 43, 0.43);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.media-frame img {
  width: 100%;
  border-radius: calc(var(--radius-lg) - 10px);
  object-fit: contain;
}

.media-frame::after {
  content: '';
  position: absolute;
  z-index: -1;
  right: -1.1rem;
  bottom: -1.1rem;
  width: 45%;
  height: 45%;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  border-radius: 0 0 var(--radius-lg) 0;
}

.copy-block h2,
.copy-block h3 {
  margin-bottom: 1.2rem;
}

.copy-block p {
  color: var(--muted);
}

.copy-list {
  display: grid;
  gap: 0.85rem;
  margin: 1.5rem 0 1.8rem;
  padding: 0;
  list-style: none;
}

.copy-list li {
  position: relative;
  padding-left: 1.7rem;
  color: var(--ink-soft);
}

.copy-list li::before {
  content: '✓';
  position: absolute;
  top: 0;
  left: 0;
  color: var(--gold-deep);
  font-weight: 900;
}

.disclosure {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-left: 3px solid var(--gold);
  background: rgba(246, 241, 230, 0.7);
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.6;
}

/* Service pillars */
.pillar-grid {
  display: grid;
  gap: 1.2rem;
}

.pillar-card {
  position: relative;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.pillar-card:hover {
  transform: translateY(-6px);
  border-color: rgba(198, 150, 43, 0.55);
  box-shadow: var(--shadow-md);
}

.pillar-media {
  padding: 0.7rem 0.7rem 0;
}

.pillar-media img {
  width: 100%;
  border-radius: calc(var(--radius-lg) - 10px);
  object-fit: contain;
}

.pillar-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.35rem;
}

.pillar-kicker {
  margin-bottom: 0.55rem;
  color: var(--gold-deep);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.pillar-body p {
  color: var(--muted);
}

.pillar-body .btn {
  margin-top: auto;
  align-self: flex-start;
}

/* Service matrix */
.service-matrix {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.service-tile {
  min-height: 240px;
  padding: clamp(1.35rem, 4vw, 2.25rem);
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.015);
  transition: background var(--transition), transform var(--transition);
}

.service-tile:hover {
  background: rgba(236, 217, 142, 0.06);
}

.service-number {
  display: block;
  margin-bottom: 2.2rem;
  color: var(--gold-soft);
  font-family: var(--serif);
  font-size: 1.02rem;
}

.service-tile h3 {
  margin-bottom: 0.8rem;
  font-size: 1.55rem;
}

.service-tile p {
  color: #b8c4be;
  font-size: 0.92rem;
}

.service-tile a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.75rem;
  color: var(--gold-soft);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Journey split */
.journey-wrap {
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.journey-head {
  padding: clamp(1.5rem, 5vw, 3rem);
  border-bottom: 1px solid var(--line);
}

.journey-head h2 {
  max-width: 750px;
  margin-bottom: 0.8rem;
}

.journey-grid {
  display: grid;
}

.journey-column {
  padding: clamp(1.5rem, 5vw, 3rem);
}

.journey-column + .journey-column {
  border-top: 1px solid var(--line);
}

.journey-label {
  display: inline-block;
  margin-bottom: 1.2rem;
  padding: 0.35rem 0.65rem;
  border: 1px solid rgba(198, 150, 43, 0.45);
  color: var(--gold-deep);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.step-list {
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.step-list li {
  position: relative;
  padding-left: 3.05rem;
  color: var(--muted);
  counter-increment: steps;
}

.step-list li::before {
  content: counter(steps, decimal-leading-zero);
  position: absolute;
  top: 0;
  left: 0;
  color: var(--forest);
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 700;
}

.step-list strong {
  display: block;
  margin-bottom: 0.14rem;
  color: var(--ink);
}

/* Counters */
.stat-band {
  overflow: hidden;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  background: #0c1b16;
}

.stat-grid {
  display: grid;
}

.stat {
  min-height: 170px;
  padding: 2rem 1rem;
  border-bottom: 1px solid var(--line-dark);
  text-align: center;
}

.stat:last-child {
  border-bottom: 0;
}

.stat-number {
  display: block;
  color: var(--gold-soft);
  font-family: var(--serif);
  font-size: clamp(2.8rem, 9vw, 5rem);
  line-height: 1;
}

.stat-label {
  display: block;
  margin-top: 0.75rem;
  color: #c5cec9;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* Process */
.process-grid {
  display: grid;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

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

.process-item {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 0.9rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--line);
}

.process-index {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(198, 150, 43, 0.5);
  border-radius: 50%;
  color: var(--gold-deep);
  font-family: var(--serif);
  font-weight: 700;
}

.process-item h3 {
  margin-bottom: 0.3rem;
  font-size: 1.18rem;
}

.process-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

/* Benefits, locations, cards */
.card-grid {
  display: grid;
  gap: 1rem;
}

.info-card {
  position: relative;
  min-height: 100%;
  padding: clamp(1.3rem, 4vw, 2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.info-card .icon-orbit {
  margin-bottom: 1.25rem;
}

.info-card h3 {
  margin-bottom: 0.65rem;
  font-size: 1.35rem;
}

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

.location-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.location-tags li {
  min-height: 42px;
  padding: 0.55rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.65);
  color: var(--forest);
  font-size: 0.82rem;
  font-weight: 750;
}

/* Quote statement */
.statement {
  position: relative;
  overflow: hidden;
  padding: clamp(2rem, 7vw, 4.5rem);
  border: 1px solid rgba(236, 217, 142, 0.27);
  background: linear-gradient(135deg, #0d211a, #07110e);
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.statement::after {
  content: 'V';
  position: absolute;
  right: -0.05em;
  bottom: -0.36em;
  color: rgba(236, 217, 142, 0.06);
  font-family: var(--serif);
  font-size: clamp(14rem, 42vw, 32rem);
  line-height: 1;
  pointer-events: none;
}

.statement h2 {
  position: relative;
  z-index: 1;
  max-width: 900px;
  color: var(--white);
}

.statement p {
  position: relative;
  z-index: 1;
  max-width: 680px;
  color: #c4d0ca;
}

.statement .btn-row {
  position: relative;
  z-index: 1;
  margin-top: 1.8rem;
}

/* FAQ */
.faq-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-question {
  display: grid;
  width: 100%;
  min-height: 70px;
  grid-template-columns: 1fr 44px;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
}

.faq-question span:first-child {
  font-family: var(--serif);
  font-size: clamp(1.08rem, 3vw, 1.35rem);
  font-weight: 600;
}

.faq-icon {
  position: relative;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  width: 14px;
  height: 1.5px;
  background: var(--forest);
  transition: transform var(--transition);
}

.faq-icon::after {
  transform: rotate(90deg);
}

.faq-question[aria-expanded='true'] .faq-icon::after {
  transform: rotate(0deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 260ms ease, opacity 260ms ease;
}

.faq-answer > div {
  overflow: hidden;
}

.faq-answer p {
  max-width: 850px;
  padding: 0 56px 1.25rem 0;
  color: var(--muted);
}

.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
  opacity: 1;
}

/* Contact */
.contact-grid {
  display: grid;
  gap: clamp(1.5rem, 5vw, 3.5rem);
  align-items: start;
}

.contact-card-stack {
  display: grid;
  gap: 0.85rem;
}

.contact-card {
  display: grid;
  min-height: 105px;
  grid-template-columns: 48px minmax(0, 1fr);
  align-items: center;
  gap: 0.85rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.contact-card:hover {
  transform: translateY(-3px);
  border-color: rgba(198, 150, 43, 0.55);
  box-shadow: var(--shadow-sm);
}

.contact-card .icon-orbit {
  width: 44px;
  height: 44px;
}

.contact-card small {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--muted);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-card strong {
  display: block;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.02rem;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.form-shell {
  padding: clamp(1.15rem, 5vw, 2.4rem);
  border: 1px solid rgba(198, 150, 43, 0.42);
  border-radius: var(--radius-lg);
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.form-shell h2,
.form-shell h3 {
  color: var(--white);
}

.form-shell > p {
  color: #bdc8c2;
}

.form-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.field {
  display: grid;
  gap: 0.42rem;
}

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

.field label {
  color: #e7eee9;
  font-size: 0.78rem;
  font-weight: 750;
}

.required {
  color: var(--gold-soft);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: 0.78rem 0.85rem;
  border: 1px solid rgba(236, 217, 142, 0.22);
  border-radius: 9px;
  outline: 0;
  background: #111f1a;
  color: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.field select {
  color-scheme: dark;
}

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

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

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold-soft);
  background: #14251e;
  box-shadow: 0 0 0 3px rgba(236, 217, 142, 0.12);
}

.field [aria-invalid='true'] {
  border-color: #ff9d9d;
}

.field-error {
  min-height: 1rem;
  color: #ffb6b6;
  font-size: 0.73rem;
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem;
  grid-column: 1 / -1;
}

.submit-btn[disabled] {
  cursor: wait;
  opacity: 0.72;
}

.form-status {
  min-height: 1.4rem;
  margin: 0.8rem 0 0;
  color: #cdd8d2;
  font-size: 0.82rem;
}

.form-status.success {
  color: #91e4bd;
}

.form-status.error {
  color: #ffb6b6;
}

.form-note {
  margin-top: 0.8rem;
  color: #8d9b94;
  font-size: 0.72rem;
}

.map-shell {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--ivory);
  box-shadow: var(--shadow-sm);
}

.map-shell iframe {
  display: block;
  width: 100%;
  min-height: 420px;
  border: 0;
}

.map-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
}

.map-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
}

/* Inner page hero + breadcrumbs */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(3.5rem, 9vw, 7.5rem) 0;
  background: var(--forest);
  color: var(--white);
}

.page-hero::before,
.page-hero::after {
  content: '';
  position: absolute;
  border: 1px solid rgba(236, 217, 142, 0.18);
  border-radius: 50%;
}

.page-hero::before {
  top: -160px;
  right: -100px;
  width: 390px;
  height: 390px;
}

.page-hero::after {
  right: 90px;
  bottom: -270px;
  width: 520px;
  height: 520px;
}

.page-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2rem;
  align-items: center;
}

.page-hero h1 {
  max-width: 950px;
  margin-bottom: 1rem;
  color: var(--white);
  font-size: clamp(2.4rem, 8vw, 5.3rem);
}

.page-hero p {
  max-width: 720px;
  color: #cfdbd5;
  font-size: clamp(1rem, 2vw, 1.22rem);
}

.page-hero-media {
  padding: 0.55rem;
  border: 1px solid rgba(236, 217, 142, 0.48);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.06);
}

.page-hero-media img {
  width: 100%;
  border-radius: calc(var(--radius-lg) - 8px);
  object-fit: contain;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.2rem;
  padding: 0;
  color: var(--gold-soft);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  list-style: none;
  text-transform: uppercase;
}

.breadcrumbs li:not(:last-child)::after {
  content: '/';
  margin-left: 0.45rem;
  opacity: 0.6;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

/* Feature rows + checklists */
.feature-row {
  display: grid;
  gap: 1.2rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--line);
}

.feature-row:first-child {
  border-top: 1px solid var(--line);
}

.feature-row-number {
  color: var(--gold-deep);
  font-family: var(--serif);
  font-size: 1.25rem;
}

.feature-row h3 {
  margin-bottom: 0.45rem;
  font-size: 1.34rem;
}

.feature-row p {
  margin: 0;
  color: var(--muted);
}

.check-grid {
  display: grid;
  gap: 0.8rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-grid li {
  position: relative;
  min-height: 54px;
  padding: 0.9rem 1rem 0.9rem 2.7rem;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink-soft);
}

.check-grid li::before {
  content: '✓';
  position: absolute;
  top: 0.85rem;
  left: 1rem;
  color: var(--gold-deep);
  font-weight: 900;
}

/* Gallery */
.gallery-grid {
  display: grid;
  gap: 1.2rem;
}

.gallery-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.gallery-card figure {
  margin: 0;
  padding: 0.7rem 0.7rem 0;
}

.gallery-card img {
  width: 100%;
  border-radius: calc(var(--radius-lg) - 10px);
  object-fit: contain;
}

.gallery-card figcaption {
  padding: 1.2rem 0.6rem 0.5rem;
}

.gallery-card h2,
.gallery-card h3 {
  margin-bottom: 0.45rem;
  font-size: 1.5rem;
}

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

.gallery-badge {
  display: inline-block;
  margin-top: 0.4rem;
  color: var(--gold-deep);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Legal text */
.prose {
  color: var(--ink-soft);
}

.prose h2 {
  margin: 2.4rem 0 0.9rem;
  font-size: clamp(1.45rem, 4vw, 2.2rem);
}

.prose h3 {
  margin: 1.8rem 0 0.6rem;
  font-size: 1.25rem;
}

.prose p,
.prose li {
  color: var(--muted);
}

.prose a {
  color: var(--forest-2);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.prose .updated {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.45rem 0.75rem;
  border: 1px solid var(--line);
  color: var(--forest);
  font-size: 0.78rem;
  font-weight: 800;
}

/* Footer */
.site-footer {
  position: relative;
  overflow: hidden;
  background: #07110e;
  color: #c2cdc7;
}

.footer-top {
  padding: clamp(3.5rem, 8vw, 6rem) 0 2.5rem;
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
}

.footer-brand img {
  width: min(250px, 80vw);
  max-height: 88px;
  margin-bottom: 1rem;
  padding: 0.35rem;
  border-radius: 8px;
  background: var(--white);
  object-fit: contain;
}

.footer-brand p {
  max-width: 450px;
  color: #9eada5;
  font-size: 0.88rem;
}

.footer-title {
  margin-bottom: 1rem;
  color: var(--gold-soft);
  font-family: var(--serif);
  font-size: 1.2rem;
}

.footer-links {
  display: grid;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #bac6c0;
  font-size: 0.88rem;
  transition: color var(--transition), transform var(--transition);
  overflow-wrap: anywhere;
}

.footer-links a:hover {
  color: var(--gold-soft);
  transform: translateX(3px);
}

.footer-contact li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  color: #bac6c0;
  font-size: 0.86rem;
}

.footer-contact svg {
  width: 18px;
  height: 18px;
  margin-top: 0.23rem;
  flex: 0 0 auto;
  color: var(--gold-soft);
}

.footer-contact a:hover {
  color: var(--gold-soft);
}

.footer-bottom {
  border-top: 1px solid rgba(236, 217, 142, 0.15);
}

.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 1.15rem 0 calc(1.15rem + env(safe-area-inset-bottom));
  color: #84928b;
  font-size: 0.75rem;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.footer-legal a:hover {
  color: var(--gold-soft);
}

/* Floating conversion controls */
.floating-actions {
  position: fixed;
  z-index: 1300;
  right: max(14px, env(safe-area-inset-right));
  bottom: max(18px, calc(env(safe-area-inset-bottom) + 14px));
  display: grid;
  gap: 0.7rem;
}

.float-btn {
  position: relative;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  box-shadow: 0 15px 36px rgba(5, 26, 19, 0.26);
  transition: transform var(--transition), box-shadow var(--transition);
}

.float-btn::after {
  content: '';
  position: absolute;
  inset: -7px;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: 0;
  animation: soft-ripple 3.8s ease-out infinite;
}

.float-btn:hover,
.float-btn:focus-visible {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 18px 40px rgba(5, 26, 19, 0.32);
}

.float-btn svg {
  width: 25px;
  height: 25px;
}

.float-whatsapp {
  background: #1fa855;
  color: #c9f4da;
}

.float-whatsapp svg {
  fill: var(--white);
}

.float-call {
  background: var(--gold);
  color: #f8e8b4;
}

.float-call svg {
  fill: var(--ink);
}

.float-tooltip {
  position: absolute;
  top: 50%;
  right: calc(100% + 12px);
  min-width: max-content;
  padding: 0.42rem 0.65rem;
  border-radius: 7px;
  background: var(--ink);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 750;
  opacity: 0;
  pointer-events: none;
  transform: translate(8px, -50%);
  transition: opacity var(--transition), transform var(--transition);
}

.float-btn:hover .float-tooltip,
.float-btn:focus-visible .float-tooltip {
  opacity: 1;
  transform: translate(0, -50%);
}

@keyframes soft-ripple {
  0%, 68% { opacity: 0; transform: scale(0.86); }
  75% { opacity: 0.5; }
  100% { opacity: 0; transform: scale(1.32); }
}

.back-to-top {
  position: fixed;
  z-index: 1250;
  right: max(17px, env(safe-area-inset-right));
  bottom: max(148px, calc(env(safe-area-inset-bottom) + 145px));
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(198, 150, 43, 0.5);
  border-radius: 50%;
  background: var(--paper);
  color: var(--forest);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity var(--transition), transform var(--transition);
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-progress {
  position: fixed;
  z-index: 1700;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--gold);
  pointer-events: none;
}

/* Reveal motion; content stays visible without JS */
.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(.2,.7,.2,1);
}

.js .reveal.from-left {
  transform: translateX(-28px);
}

.js .reveal.from-right {
  transform: translateX(28px);
}

.js .reveal.in-view {
  opacity: 1;
  transform: translate(0, 0);
}

.delay-1 { transition-delay: 90ms !important; }
.delay-2 { transition-delay: 180ms !important; }
.delay-3 { transition-delay: 270ms !important; }
.delay-4 { transition-delay: 360ms !important; }

/* Responsive */
@media (min-width: 560px) {
  .topbar-message {
    display: inline;
  }

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

  .trust-item:nth-child(odd),
  .stat:nth-child(odd) {
    padding-right: 1rem;
    border-right: 1px solid var(--line);
  }

  .trust-item:nth-child(even),
  .stat:nth-child(even) {
    padding-left: 1rem;
  }

  .trust-item:nth-last-child(-n + 2),
  .stat:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

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

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

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

@media (min-width: 768px) {
  :root {
    --header-offset: 108px;
  }

  .container {
    width: min(calc(100% - 48px), var(--container));
  }

  .narrow {
    width: min(calc(100% - 48px), 850px);
  }

  .topbar-inner {
    justify-content: space-between;
  }

  .hero-grid,
  .page-hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  }

  .hero-visual {
    padding-bottom: 1rem;
  }

  .editorial-grid,
  .process-grid,
  .contact-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  }

  .editorial-grid.reverse .copy-block,
  .process-grid.reverse .process-copy {
    order: -1;
  }

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

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

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

  .journey-column + .journey-column {
    border-top: 0;
    border-left: 1px solid var(--line);
  }

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

  .stat {
    border-right: 1px solid var(--line-dark);
    border-bottom: 0;
  }

  .stat:last-child {
    border-right: 0;
  }

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

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

  .feature-row {
    grid-template-columns: 90px 0.8fr 1.2fr;
    gap: 1.5rem;
    align-items: start;
    padding: 1.5rem 0;
  }

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

  .gallery-card:nth-child(2) {
    transform: translateY(2.5rem);
  }

  .footer-grid {
    grid-template-columns: 1.45fr 0.75fr 0.8fr;
  }
}

@media (min-width: 992px) {
  :root {
    --header-offset: 118px;
  }

  .header-inner {
    min-height: 84px;
  }

  .brand {
    width: 224px;
  }

  .menu-toggle {
    display: none;
  }

  .desktop-nav {
    display: flex;
    align-items: center;
    gap: clamp(0.75rem, 1.7vw, 1.5rem);
  }

  .desktop-nav a {
    position: relative;
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    color: var(--ink-soft);
    font-size: 0.82rem;
    font-weight: 750;
  }

  .desktop-nav a::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 7px;
    left: 0;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition);
  }

  .desktop-nav a:hover::after,
  .desktop-nav a.active::after {
    transform: scaleX(1);
    transform-origin: left;
  }

  .desktop-nav a.active {
    color: var(--forest);
  }

  .header-actions {
    display: flex;
    align-items: center;
    gap: 0.65rem;
  }

  .header-phone {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    gap: 0.5rem;
    color: var(--forest);
    font-size: 0.76rem;
    font-weight: 800;
    white-space: nowrap;
  }

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

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

  .footer-grid {
    grid-template-columns: 1.55fr 0.7fr 0.7fr 1.05fr;
  }
}

@media (min-width: 1200px) {
  .hero-grid {
    grid-template-columns: 1.08fr 0.92fr;
    gap: 5rem;
  }

  .hero h1 {
    font-size: clamp(4.6rem, 5.25vw, 6.2rem);
  }

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

  .trust-item {
    padding: 1.15rem 1.2rem;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

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

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

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

  .hero-badge {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 0.75rem;
  }

  .faq-answer p {
    padding-right: 0;
  }

  .map-shell iframe {
    min-height: 340px;
  }
}

@media (max-width: 370px) {
  .container,
  .narrow {
    width: min(calc(100% - 24px), var(--container));
  }

  .header-inner {
    min-height: 70px;
  }

  .brand {
    width: 188px;
  }

  .menu-toggle,
  .menu-close {
    width: 44px;
    height: 44px;
  }

  .float-btn {
    width: 50px;
    height: 50px;
  }

  .floating-actions {
    right: 10px;
  }

  .back-to-top {
    right: 13px;
  }
}

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

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

@media print {
  .topbar,
  .site-header,
  .floating-actions,
  .back-to-top,
  .scroll-progress,
  .btn-row,
  .mobile-panel {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  .section,
  .page-hero {
    padding: 2rem 0;
  }
}

/* Final production hardening */
main,
.site-footer {
  overflow-x: clip;
}

.section {
  overflow-x: clip;
}

.section-dark .info-card h3,
.section-dark .info-card h4 {
  color: var(--ink);
}

.section-dark .info-card p {
  color: var(--muted);
}

.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
  border: 0 !important;
  left: auto !important;
}

/* Clip-path keeps the closed menu out of horizontal layout overflow while preserving a smooth drawer reveal. */
.mobile-panel {
  visibility: hidden;
  transform: none;
  clip-path: inset(0 0 0 100%);
  transition: opacity 280ms ease, clip-path 280ms ease, visibility 0s linear 280ms;
}

.mobile-panel.open {
  visibility: visible;
  transform: none;
  clip-path: inset(0 0 0 0);
  transition: opacity 280ms ease, clip-path 280ms ease, visibility 0s linear 0s;
}

@media (max-width: 991px) {
  .site-header,
  .site-header.scrolled {
    background: #fffdf8;
    backdrop-filter: none;
  }

  .js .reveal.from-left,
  .js .reveal.from-right {
    transform: translateY(24px);
  }

  .js .reveal.from-left.in-view,
  .js .reveal.from-right.in-view {
    transform: translateY(0);
  }
}

/* Unlike overflow-x:hidden, overflow-x:clip does not create a scrolling ancestor that can break sticky positioning. */
html,
body {
  overflow-x: clip;
}
