:root {
  --charcoal: #111111;
  --charcoal-soft: #1a1a1a;
  --warm-white: #fafafa;
  --section-alt: #f4f4f4;
  --ink: #1c1c1c;
  --ink-soft: #3a3a3a;
  --gray: #6b7280;
  --silver: #b7bdc6;
  --gold: #b08d57;
  --gold-hover: #9a7a4a;
  --white: #ffffff;
  --text-on-dark: #fafafa;
  --text-on-dark-muted: #b8bcc2;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --header-h: 3.75rem;
  --side-nav-w: 4.5rem;
  --max: 76rem;
  --font-display: "Rubik", "Heebo", system-ui, sans-serif;
  --font-body: "Heebo", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink-soft);
  background: var(--warm-white);
  line-height: 1.75;
  font-size: 1.05rem;
  text-align: center;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: rgba(176, 141, 87, 0.2); color: var(--ink); }

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 0.3s var(--ease);
}

.shell {
  width: min(100% - clamp(1.5rem, 4vw, 3rem), var(--max));
  margin-inline: auto;
}

/* ── Header ── */
.topbar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 300;
  height: var(--header-h);
  display: flex;
  align-items: center;
  border-bottom: 1px solid transparent;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease);
}

.topbar.is-solid {
  background: rgba(250, 250, 250, 0.92);
  backdrop-filter: blur(16px);
  border-bottom-color: rgba(28, 28, 28, 0.08);
}

.topbar__inner {
  width: min(100% - clamp(1.5rem, 4vw, 3rem), var(--max));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
}

.topbar__logo {
  grid-column: 2;
  grid-row: 1;
  justify-self: center;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
}

.topbar__cta {
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
  padding: 0.55rem 1.15rem;
  border: 1px solid var(--ink);
  border-radius: 2px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}

.topbar__cta:hover {
  background: var(--ink);
  color: var(--warm-white);
}

@media (max-width: 640px) {
  .topbar__cta span { display: none; }
  .topbar__cta { padding: 0.55rem 0.85rem; }
}

/* ── Side navigation (desktop) ── */
.sidenav {
  display: none;
  position: fixed;
  top: 50%;
  left: 1.25rem;
  z-index: 250;
  transform: translateY(-50%);
  flex-direction: column;
  gap: 1.35rem;
}

@media (min-width: 1100px) {
  .sidenav {
    display: flex;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s var(--ease), visibility 0.35s var(--ease);
  }

  .sidenav.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}

.sidenav a {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray);
  text-decoration: none;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.sidenav a::before {
  content: "";
  width: 1px;
  height: 1.5rem;
  background: var(--silver);
  opacity: 0.4;
  transition: height 0.3s var(--ease), opacity 0.3s var(--ease);
}

.sidenav a:hover,
.sidenav a.is-active {
  color: var(--ink);
}

.sidenav a:hover::before,
.sidenav a.is-active::before {
  height: 2.5rem;
  opacity: 1;
  background: var(--gold);
}

/* ── Hero split ── */
.hero-split {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 100vh;
  min-height: 100dvh;
  padding-top: var(--header-h);
}

.hero-split__copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: clamp(2.5rem, 6vw, 4.5rem) clamp(1.5rem, 4vw, 3.5rem);
  background: var(--warm-white);
  text-align: center;
}

.hero-split__index {
  margin: 0 0 auto;
  padding-top: clamp(1rem, 3vw, 2rem);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  color: var(--silver);
}

@media (min-width: 900px) {
  .hero-split {
    grid-template-columns: 1fr 1.15fr;
    min-height: max(100vh, 640px);
  }

  .hero-split__copy {
    justify-content: center;
    padding-block: clamp(2rem, 4vw, 3rem);
  }

  .hero-split__index {
    margin: 0 0 1.25rem;
    padding-top: 0;
  }
}

.hero-split__title {
  margin: 0 auto 1.25rem;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 1.5rem + 3.8vw, 4.25rem);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--ink);
  max-width: 14ch;
}

.hero-split__title strong {
  font-weight: 600;
  display: block;
}

.hero-split__lead {
  margin: 0 auto 2rem;
  max-width: 32rem;
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.12rem);
  font-weight: 300;
  line-height: 1.7;
  color: var(--gray);
}

.hero-split__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.25rem;
  align-items: center;
  justify-content: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 1.75rem;
  background: var(--ink);
  color: var(--warm-white);
  border: none;
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.35s var(--ease), transform 0.35s var(--ease);
}

.btn-primary:hover {
  background: var(--gold);
  color: var(--warm-white);
  transform: translateY(-1px);
}

.btn-text {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--silver);
  padding-bottom: 0.15rem;
}

.btn-text:hover { color: var(--gold); border-color: var(--gold); }

.hero-split__visual {
  position: relative;
  min-height: 50vh;
  overflow: hidden;
}

.hero-split__visual picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-split__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-split__caption {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  padding: 0.5rem 0.85rem;
  background: rgba(17, 17, 17, 0.55);
  backdrop-filter: blur(8px);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-on-dark-muted);
}

/* ── Manifesto ── */
.manifesto {
  padding: clamp(3rem, 9vw, 6rem) 0;
  background: var(--ink);
  color: var(--text-on-dark-muted);
  text-align: center;
}

.manifesto__grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1.25rem, 3vw, 2rem);
}

.manifesto__label {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--silver);
}

.manifesto__quote {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 1.2rem + 1.8vw, 2.75rem);
  font-weight: 300;
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: var(--text-on-dark);
}

.manifesto__body {
  margin: clamp(2rem, 5vw, 3rem) auto 0;
  max-width: 40rem;
  font-size: 1.02rem;
  line-height: 1.82;
  color: var(--text-on-dark-muted);
}

.manifesto__body p { margin: 0 0 1.15rem; }
.manifesto__body p:last-child { margin-bottom: 0; }

/* ── Editorial band ── */
.editorial {
  padding: clamp(4rem, 10vw, 7rem) 0;
  background: var(--section-alt);
}

.editorial__layout {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

@media (min-width: 960px) {
  .editorial__layout {
    grid-template-columns: 1.1fr 0.9fr;
  }
  .editorial--flip .editorial__layout {
    direction: ltr;
  }
  .editorial--flip .editorial__copy {
    direction: rtl;
  }
}

.editorial__figure {
  margin: 0;
  position: relative;
}

.editorial__figure img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  border-radius: 2px;
}

.editorial__figure::after {
  content: "";
  position: absolute;
  inset: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  pointer-events: none;
}

.editorial__copy {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-num {
  display: block;
  margin-bottom: 1rem;
  font-family: var(--font-display);
  font-size: clamp(3rem, 2rem + 4vw, 5rem);
  font-weight: 300;
  line-height: 1;
  color: rgba(176, 141, 87, 0.35);
}

.editorial__title {
  margin: 0 auto 1.25rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 1.2rem + 1.5vw, 2.5rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--ink);
  max-width: 22ch;
}

.editorial__text {
  margin: 0 auto 1rem;
  max-width: 36rem;
  font-size: 1.02rem;
  line-height: 1.78;
  color: var(--gray);
}

.editorial__highlight {
  margin: 1.5rem auto 0;
  padding-top: 1.25rem;
  max-width: 28rem;
  border-top: 2px solid var(--gold);
  font-size: 1.08rem;
  font-weight: 500;
  line-height: 1.6;
  color: var(--ink);
}

/* ── Pillars ── */
.pillars {
  padding: clamp(3rem, 8vw, 5.5rem) 0;
  background: var(--warm-white);
}

.pillars__header {
  text-align: center;
  margin: 0 auto clamp(2rem, 5vw, 3rem);
  max-width: 36rem;
}

.pillars__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 1.2rem + 1.5vw, 2.5rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--ink);
}

.pillars__grid {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid rgba(28, 28, 28, 0.1);
}

@media (min-width: 768px) {
  .pillars__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pillar {
  padding: clamp(1.75rem, 4vw, 2.5rem) clamp(1.25rem, 3vw, 2rem);
  text-align: center;
  border-bottom: 1px solid rgba(28, 28, 28, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (min-width: 768px) {
  .pillar {
    border-bottom: none;
    border-inline-start: 1px solid rgba(28, 28, 28, 0.1);
  }
  .pillar:first-child { border-inline-start: none; }
}

.pillar__icon {
  width: 1.5rem;
  height: 1.5rem;
  margin-bottom: 1.25rem;
  color: var(--gold);
  stroke-width: 1.25;
}

.pillar__title {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
}

.pillar__text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--gray);
}

.pillars__highlights {
  margin: clamp(2.5rem, 6vw, 3.5rem) 0 0;
  padding: clamp(0.45rem, 1vw, 0.6rem);
  list-style: none;
  display: grid;
  gap: clamp(0.5rem, 1.25vw, 0.65rem);
  grid-template-columns: 1fr;
  background: linear-gradient(180deg, rgba(176, 141, 87, 0.06) 0%, rgba(176, 141, 87, 0.02) 100%);
  border: 1px solid rgba(176, 141, 87, 0.12);
  border-radius: 2px;
}

@media (min-width: 640px) {
  .pillars__highlights {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .pillars__highlights {
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(0.5rem, 1vw, 0.65rem);
  }
}

.pillars__highlight {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  min-height: 100%;
  padding: clamp(1.35rem, 3vw, 1.65rem) clamp(1rem, 2.5vw, 1.25rem);
  background: var(--warm-white);
  border: 1px solid rgba(28, 28, 28, 0.06);
  border-radius: 2px;
  text-align: center;
  transition: border-color 0.35s var(--ease), box-shadow 0.35s var(--ease), transform 0.35s var(--ease);
}

.pillars__highlight:hover {
  border-color: rgba(176, 141, 87, 0.28);
  box-shadow: 0 10px 28px rgba(28, 28, 28, 0.06);
  transform: translateY(-2px);
}

.pillars__highlight-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(176, 141, 87, 0.1);
  color: var(--gold);
  flex-shrink: 0;
  transition: background 0.35s var(--ease), color 0.35s var(--ease);
}

.pillars__highlight:hover .pillars__highlight-icon {
  background: rgba(176, 141, 87, 0.16);
  color: var(--gold-hover);
}

.pillars__highlight-icon svg {
  width: 1.4rem;
  height: 1.4rem;
}

.pillars__highlight-text {
  font-family: var(--font-display);
  font-size: clamp(0.9rem, 0.85rem + 0.2vw, 0.97rem);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: var(--ink);
}

/* ── Process timeline ── */
.process {
  padding: clamp(3rem, 8vw, 5.5rem) 0;
  background: var(--ink);
  color: var(--text-on-dark-muted);
}

.process__header {
  text-align: center;
  margin: 0 auto clamp(2rem, 5vw, 3.5rem);
}

.process__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 1.2rem + 1.5vw, 2.5rem);
  font-weight: 300;
  color: var(--text-on-dark);
}

.process__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}

@media (min-width: 900px) {
  .process__steps {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }
}

.process-step {
  position: relative;
  padding: clamp(1.75rem, 4vw, 2.5rem) clamp(1.25rem, 3vw, 2rem);
  text-align: center;
  border-top: 1px solid rgba(183, 189, 198, 0.15);
}

@media (min-width: 900px) {
  .process-step {
    border-top: none;
    border-inline-start: 1px solid rgba(183, 189, 198, 0.15);
  }
  .process-step:first-child { border-inline-start: none; }
}

.process-step__num {
  display: block;
  margin-bottom: 1.5rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--gold);
}

.process-step__title {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-on-dark);
}

.process-step__text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.68;
  color: var(--text-on-dark-muted);
}

/* ── Gallery scroll ── */
.gallery-scroll {
  padding: clamp(2.5rem, 6vw, 4rem) 0 clamp(2rem, 4vw, 2.75rem);
  background: var(--section-alt);
  overflow: hidden;
}

.gallery-scroll__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
  margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
  padding-inline: clamp(1.5rem, 4vw, 3rem);
  max-width: var(--max);
  margin-inline: auto;
}

.gallery-scroll__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 1.2rem + 1.5vw, 2.5rem);
  font-weight: 600;
  color: var(--ink);
}

.gallery-scroll__sub {
  margin: 0 auto;
  max-width: 32rem;
  font-size: 1rem;
  color: var(--gray);
}

.gallery-scroll__frame {
  position: relative;
  max-width: calc(var(--max) + 8rem);
  margin-inline: auto;
  padding-inline: clamp(0.5rem, 2vw, 1.5rem);
}

.gallery-nav {
  display: none;
}

.gallery-track {
  display: flex;
  gap: clamp(0.75rem, 2vw, 1.25rem);
  padding-inline: clamp(1.5rem, 4vw, 3rem);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
}

.gallery-track.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
  scroll-behavior: auto;
  user-select: none;
}

.gallery-track::-webkit-scrollbar { display: none; }

.gallery-slide {
  flex: 0 0 min(78vw, 420px);
  scroll-snap-align: start;
  margin: 0;
}

.gallery-slide--hero {
  flex: 0 0 min(88vw, 560px);
}

.gallery-slide img {
  width: 100%;
  height: clamp(280px, 42vw, 480px);
  object-fit: cover;
  border-radius: 2px;
  transition: transform 0.7s var(--ease);
}

@media (hover: hover) {
  .gallery-slide:hover img { transform: scale(1.02); }
}

@media (min-width: 900px) {
  .gallery-scroll__frame {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: clamp(0.75rem, 2vw, 1.25rem);
    padding-inline: clamp(0.75rem, 2vw, 1.5rem);
    max-width: min(calc(100vw - 1.5rem), 96rem);
  }

  .gallery-nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 2.75rem;
    height: 2.75rem;
    padding: 0;
    border: 1px solid rgba(28, 28, 28, 0.12);
    border-radius: 50%;
    background: var(--warm-white);
    color: var(--ink);
    cursor: pointer;
    transition: background 0.3s var(--ease), border-color 0.3s var(--ease), color 0.3s var(--ease);
  }

  .gallery-nav:hover {
    background: var(--ink);
    border-color: var(--ink);
    color: var(--warm-white);
  }

  .gallery-nav svg {
    width: 1.15rem;
    height: 1.15rem;
  }

  .gallery-track {
    padding-inline: 0;
    gap: 1rem;
  }

  .gallery-slide,
  .gallery-slide--hero {
    flex: 0 0 calc((100% - 2rem) / 3);
  }

  .gallery-slide img {
    height: clamp(200px, 22vw, 300px);
  }
}

@media (min-width: 1280px) {
  .gallery-slide,
  .gallery-slide--hero {
    flex: 0 0 calc((100% - 3rem) / 4);
  }
}

.gallery-slide figcaption {
  margin-top: 0.75rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray);
  text-align: center;
}

/* ── Field videos ── */
.field-videos {
  padding: clamp(1.75rem, 4vw, 2.75rem) 0 clamp(2rem, 4vw, 2.75rem);
  background: var(--warm-white);
}

.field-videos__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
  margin-bottom: clamp(1.5rem, 4vw, 2.25rem);
  padding-inline: clamp(1.5rem, 4vw, 3rem);
  max-width: var(--max);
  margin-inline: auto;
}

.field-videos__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 1.2rem + 1.5vw, 2.5rem);
  font-weight: 600;
  color: var(--ink);
}

.field-videos__sub {
  margin: 0 auto;
  max-width: 32rem;
  font-size: 1rem;
  color: var(--gray);
}

.field-videos__grid {
  display: grid;
  gap: clamp(1rem, 2.5vw, 1.5rem);
  max-width: calc(var(--max) + 4rem);
  margin-inline: auto;
  padding-inline: clamp(1.5rem, 4vw, 3rem);
}

@media (min-width: 700px) {
  .field-videos__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.field-video {
  margin: 0;
  overflow: hidden;
  border-radius: 2px;
  background: var(--ink);
  box-shadow: 0 12px 40px rgba(28, 28, 28, 0.08);
}

.field-video video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  vertical-align: middle;
  background: #111;
}

/* ── Articles teaser ── */
.articles-teaser {
  padding: clamp(2rem, 5vw, 4rem) 0;
  background: var(--section-alt);
}

.articles-teaser__head {
  text-align: center;
  margin: 0 auto clamp(1.25rem, 4vw, 2.5rem);
  max-width: 36rem;
}

.articles-teaser__head .section-num {
  margin-bottom: 0.65rem;
  font-size: clamp(2.25rem, 1.5rem + 3vw, 3.5rem);
}

.articles-teaser__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 1.1rem + 1.2vw, 2.1rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--ink);
}

.articles-teaser__sub {
  margin: 0.5rem auto 0;
  max-width: 32rem;
  font-size: clamp(0.9rem, 0.85rem + 0.2vw, 1rem);
  line-height: 1.6;
  color: var(--gray);
}

.articles-teaser__grid {
  display: grid;
  gap: clamp(0.5rem, 1.5vw, 1rem);
}

@media (min-width: 768px) {
  .articles-teaser__head {
    margin-bottom: clamp(2rem, 5vw, 3rem);
  }

  .articles-teaser__head .section-num {
    margin-bottom: 1rem;
    font-size: clamp(3rem, 2rem + 4vw, 5rem);
  }

  .articles-teaser__title {
    font-size: clamp(1.75rem, 1.2rem + 1.5vw, 2.5rem);
  }

  .articles-teaser__grid {
    gap: clamp(1rem, 2.5vw, 1.35rem);
    grid-template-columns: repeat(3, 1fr);
  }
}

.article-card {
  margin: 0;
  background: var(--warm-white);
  border: 1px solid rgba(28, 28, 28, 0.08);
  border-radius: 2px;
  transition: border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.article-card:hover {
  border-color: rgba(176, 141, 87, 0.35);
  box-shadow: 0 14px 40px rgba(28, 28, 28, 0.06);
}

.article-card__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  padding: clamp(0.85rem, 2vw, 1.75rem) clamp(1rem, 2.5vw, 1.75rem);
  color: inherit;
  text-decoration: none;
  text-align: center;
}

.article-card__tag {
  display: none;
  margin-bottom: 0.85rem;
  padding: 0.28rem 0.65rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(176, 141, 87, 0.35);
  border-radius: 2px;
}

.article-card__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(0.92rem, 0.88rem + 0.2vw, 1.08rem);
  font-weight: 600;
  line-height: 1.4;
  color: var(--ink);
}

.article-card__excerpt {
  display: none;
  margin: 0 0 1.15rem;
  flex: 1;
  font-size: 0.92rem;
  line-height: 1.68;
  color: var(--gray);
}

.article-card__more {
  display: none;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--gold);
}

@media (min-width: 768px) {
  .article-card__link {
    padding: clamp(1.35rem, 3vw, 1.75rem);
  }

  .article-card__tag,
  .article-card__excerpt,
  .article-card__more {
    display: inline-block;
  }

  .article-card__excerpt {
    display: block;
    margin-top: 0.75rem;
  }

  .article-card__title {
    margin: 0 0 0.75rem;
    line-height: 1.45;
  }

  .article-card__more {
    display: inline;
  }
}

.article-card:hover .article-card__more {
  color: var(--gold-hover);
}

.articles-teaser__cta {
  margin: clamp(1.15rem, 3vw, 2rem) 0 0;
  text-align: center;
}

.articles-teaser__all {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid rgba(176, 141, 87, 0.45);
  padding-bottom: 0.15rem;
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}

.articles-teaser__all:hover {
  color: var(--gold);
  border-color: var(--gold);
}

/* ── FAQ accordion ── */
.faq-section {
  padding: clamp(1.75rem, 4vw, 3rem) 0;
  background: var(--warm-white);
}

.faq-section__head {
  text-align: center;
  margin: 0 auto clamp(1.25rem, 4vw, 2.5rem);
}

.faq-section__head .section-num {
  margin-bottom: 0.65rem;
  font-size: clamp(2.25rem, 1.5rem + 3vw, 3.5rem);
}

.faq-section__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 1.1rem + 1.2vw, 2.5rem);
  font-weight: 600;
  color: var(--ink);
}

.faq-grid {
  display: grid;
  gap: 0;
  max-width: 52rem;
  margin-inline: auto;
  border-top: 1px solid rgba(28, 28, 28, 0.1);
}

@media (min-width: 900px) {
  .faq-section__head {
    margin-bottom: clamp(2rem, 5vw, 3rem);
  }

  .faq-section__head .section-num {
    margin-bottom: 1rem;
    font-size: clamp(3rem, 2rem + 4vw, 5rem);
  }

  .faq-grid {
    max-width: none;
    grid-template-columns: repeat(2, 1fr);
    column-gap: clamp(1.5rem, 4vw, 3rem);
  }
}

.faq-entry {
  border-bottom: 1px solid rgba(28, 28, 28, 0.08);
  text-align: center;
}

.faq-entry__heading {
  margin: 0;
}

.faq-entry__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  width: 100%;
  margin: 0;
  padding: clamp(0.85rem, 2vw, 1.1rem) 0.25rem;
  border: 0;
  background: transparent;
  font: inherit;
  color: inherit;
  cursor: pointer;
  text-align: center;
  transition: color 0.3s var(--ease);
}

.faq-entry__toggle:hover {
  color: var(--gold);
}

.faq-entry__q {
  font-family: var(--font-display);
  font-size: clamp(0.92rem, 0.88rem + 0.15vw, 1.02rem);
  font-weight: 600;
  line-height: 1.4;
  color: inherit;
}

.faq-entry__chevron {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  color: var(--gold);
  transition: transform 0.35s var(--ease);
}

.faq-entry.is-open .faq-entry__chevron {
  transform: rotate(180deg);
}

.faq-entry__panel {
  padding: 0 0.25rem clamp(0.85rem, 2vw, 1.1rem);
}

.faq-entry__a {
  margin: 0;
  max-width: 36rem;
  margin-inline: auto;
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--gray);
}

/* ── Contact split ── */
.contact-split {
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 900px) {
  .contact-split {
    grid-template-columns: 0.95fr 1.05fr;
    min-height: 640px;
  }
}

.contact-split__info {
  padding: clamp(3rem, 8vw, 5rem) clamp(1.5rem, 4vw, 3.5rem);
  background: var(--ink);
  color: var(--text-on-dark-muted);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.contact-split__label {
  margin: 0 0 1rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--silver);
}

.contact-split__title {
  margin: 0 0 1.25rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 1.2rem + 1.5vw, 2.35rem);
  font-weight: 300;
  line-height: 1.25;
  color: var(--text-on-dark);
}

.contact-split__title-em {
  display: inline-block;
  margin-top: 0.15em;
  font-size: clamp(2rem, 1.35rem + 1.8vw, 2.75rem);
  font-weight: 600;
  line-height: 1.15;
}

.contact-split__lead {
  margin: 0 auto 2rem;
  max-width: 28rem;
  font-size: 1rem;
  line-height: 1.7;
}

.contact-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  font-style: normal;
}

.contact-details a {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--text-on-dark);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
}

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

.contact-details__address {
  display: flex;
  justify-content: center;
  width: 100%;
}

.contact-details__address-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  text-align: center;
}

.contact-details__address-line1 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.contact-details__address-line2 {
  display: block;
  text-align: center;
}

.contact-details__address-icon {
  width: 1.15rem;
  height: 1.15rem;
  flex-shrink: 0;
  color: var(--silver);
}

.contact-details svg {
  width: 1.15rem;
  height: 1.15rem;
  color: var(--silver);
}

.contact-details__note {
  margin: 0.5rem 0 0;
  font-size: 0.85rem;
  color: rgba(250, 250, 250, 0.45);
}

.contact-split__form-wrap {
  padding: clamp(3rem, 8vw, 5rem) clamp(1.5rem, 4vw, 3.5rem);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lead-form {
  width: 100%;
  max-width: 26rem;
  margin-inline: auto;
  text-align: center;
}

.lead-form__field { margin-bottom: 1.35rem; }

.lead-form label {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray);
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  padding: 0.85rem 0;
  border: none;
  border-bottom: 1px solid rgba(28, 28, 28, 0.15);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.05rem;
  text-align: center;
  transition: border-color 0.3s var(--ease);
}

.lead-form textarea { min-height: 5rem; resize: vertical; }

.lead-form input:focus,
.lead-form textarea:focus {
  outline: none;
  border-bottom-color: var(--gold);
}

.lead-form input::placeholder,
.lead-form textarea::placeholder { color: rgba(107, 114, 128, 0.55); }

.lead-form .btn-primary {
  width: 100%;
  justify-content: center;
  margin-top: 0.5rem;
  border: none;
  cursor: pointer;
}

.lead-form__feedback {
  margin: 1rem 0 0;
  font-size: 0.92rem;
}
.lead-form__feedback--ok { color: #2d6a4a; }
.lead-form__feedback--err { color: #9b4d4d; }

/* ── Footer ── */
.site-footer {
  background: var(--charcoal);
  color: var(--text-on-dark-muted);
  padding: clamp(2.5rem, 6vw, 3.5rem) clamp(1.25rem, 5vw, 3rem);
  border-top: 1px solid rgba(183, 189, 198, 0.12);
}

.site-footer__inner {
  max-width: var(--max);
  margin-inline: auto;
  text-align: center;
}

.site-footer__brand {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 0.95rem + 0.6vw, 1.35rem);
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}

.site-footer__copy {
  margin: 0 0 0.85rem;
  font-size: 0.82rem;
  color: rgba(250, 250, 250, 0.4);
}

.site-footer__phone {
  margin: 0 0 0.85rem;
  font-size: 0.92rem;
}

.site-footer__phone a {
  color: var(--text-on-dark);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.site-footer__phone a:hover {
  color: var(--gold);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.5rem 0.75rem;
  margin: 0 0 0.75rem;
  font-size: 0.88rem;
}

.footer-legal a {
  color: var(--text-on-dark);
  text-decoration: none;
}

.footer-legal a:hover {
  color: var(--gold);
  text-decoration: underline;
}

.footer-legal .dot {
  color: rgba(250, 250, 250, 0.35);
}

.site-footer__credit {
  margin: 0.35rem 0 0;
  font-size: 0.88rem;
  color: rgba(250, 250, 250, 0.78);
}

.site-footer__credit a {
  color: var(--warm-white);
  font-weight: 600;
  text-decoration: none;
}

.site-footer__credit a:hover {
  color: var(--gold);
  text-decoration: underline;
}

.br-mobile-only {
  display: none;
}

.text-mobile-only {
  display: none;
}

@media (max-width: 768px) {
  .br-mobile-only {
    display: inline;
  }

  .text-mobile-only {
    display: inline;
  }

  .text-desktop-only {
    display: none;
  }
}

/* ── Floating action buttons ── */
.fab-stack {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}

.fab-action {
  width: 3.25rem;
  height: 3.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  color: var(--warm-white);
  border-radius: 50%;
  box-shadow: 0 8px 32px rgba(17, 17, 17, 0.25);
  text-decoration: none;
  transition: transform 0.35s var(--ease), background 0.35s var(--ease);
}

.fab-action:hover {
  background: #1a1a1a;
  transform: scale(1.06);
}

.fab-action--phone svg {
  width: 1.25rem;
  height: 1.25rem;
}

.fab-action--whatsapp svg {
  width: 1.45rem;
  height: 1.45rem;
}

.fab-stack.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.85);
}

@keyframes rise-in {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-animate {
  opacity: 0;
  animation: rise-in 1s var(--ease) forwards;
}
.hero-animate--d1 { animation-delay: 0.1s; }
.hero-animate--d2 { animation-delay: 0.22s; }
.hero-animate--d3 { animation-delay: 0.36s; }

/* ── Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .hero-animate, .gallery-slide img {
    opacity: 1;
    transform: none;
    animation: none;
    transition: none;
  }
}

/* ── Legal pages ── */
.legal-page-body {
  min-height: 100vh;
  background: var(--warm-white);
  color: var(--ink-soft);
}

.legal-page {
  max-width: 40rem;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 3.5rem) clamp(1.25rem, 4vw, 1.75rem) clamp(3.5rem, 8vw, 5rem);
  text-align: center;
}

.legal-page__back {
  display: inline-block;
  margin-bottom: 2rem;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
}

.legal-page h1 {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 1.2rem + 1.4vw, 2.1rem);
  color: var(--ink);
  margin: 0 0 1rem;
  text-align: center;
}

.legal-page .legal-prose {
  font-size: 1.02rem;
  line-height: 1.68;
  text-align: center;
}

.legal-page .legal-prose p { margin: 0 0 1rem; }

.legal-page .legal-prose__h2 {
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--ink);
  margin: 1.35rem 0 0.65rem;
}

.legal-page .legal-prose__list {
  margin: 0 auto 1rem;
  padding: 0;
  list-style: none;
  max-width: 28rem;
}

.legal-page .legal-prose a { color: var(--gold); font-weight: 600; }

.legal-page .legal-prose__meta {
  margin-top: 1.25rem;
  font-size: 0.92rem;
  color: var(--gray);
}

.legal-footer-nav { margin-top: 1.5rem; }
.legal-footer-nav a { color: var(--gold); font-weight: 600; text-decoration: none; }

.article-list {
  margin: 1.5rem auto 0;
  padding: 0;
  list-style: none;
  max-width: 32rem;
  text-align: center;
}

.article-list li + li { margin-top: 0.85rem; }

.article-list a {
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(176, 141, 87, 0.35);
}

.article-list a:hover { color: var(--gold); }

.article-cta {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(28, 28, 28, 0.1);
}

.article-cta a {
  display: inline-block;
  padding: 0.85rem 1.5rem;
  background: var(--ink);
  color: var(--warm-white);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.05em;
  border-radius: 2px;
}

.article-cta a:hover { background: var(--gold); }
