/* RIVAS Installation & Design — Story Stick system
   Palette, type, and layout per locked design direction. */

:root {
  /* Workshop-at-night re-skin (owner direction 08-15: dark, cinematic, warm
     light). Token NAMES kept so every existing pairing re-resolves: the old
     page-field token is now the espresso ground, the old ink token is now
     warm ivory — light/dark roles swap consistently across the sheet. */
  --plan-paper: #14100B;
  --carbon: #F0E6D2;
  --blue-steel: #0F2E38;
  --mist: #211A12;
  --fresh-cut: #D9A85F;
  --tool-orange: #F15A37;

  --rail-x-mobile: 24px;
  --content-x-mobile: 48px;
  --gutter-mobile: 20px;
  --gutter-desktop: 56px;
  --max-width: 1320px;

  --radius: 2px;

  --font-display: 'Bricolage Grotesque', 'Arial Black', system-ui, sans-serif;
  --font-text: 'IBM Plex Sans', -apple-system, 'Segoe UI', Roboto, sans-serif;

  --space-section-mobile: 64px;
  --space-section-desktop: 140px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--plan-paper);
  color: var(--carbon);
  font-family: var(--font-text);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  padding-bottom: calc(64px + env(safe-area-inset-bottom, 0px));
}
img { max-width: 100%; display: block; }
h1, h2, h3, p, figure { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
a { color: inherit; }
button { font: inherit; }

/* ---------- Motion baseline ---------- */
* {
  transition-property: none;
}
a, button, input, select, textarea {
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease, opacity 180ms ease;
}
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; scroll-behavior: auto !important; }
}

/* ---------- Focus & accessibility ---------- */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--tool-orange);
  outline-offset: 2px;
}
.skip-link {
  position: absolute;
  left: 12px;
  top: -80px;
  background: var(--carbon);
  color: var(--plan-paper);
  padding: 12px 18px;
  font-family: var(--font-text);
  font-weight: 600;
  z-index: 200;
  border-radius: var(--radius);
  transition: top 180ms ease;
}
.skip-link:focus {
  top: 12px;
}

.tabular { font-variant-numeric: tabular-nums; }

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

/* ---------- Layout primitives ---------- */
.container {
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--gutter-mobile);
}
@media (min-width: 960px) {
  .container { padding-inline: var(--gutter-desktop); }
}

.section {
  padding-block: var(--space-section-mobile);
}
@media (min-width: 960px) {
  .section { padding-block: var(--space-section-desktop); }
}

.section--carbon { background: #0B0806; color: var(--carbon); }
.section--blue-steel { background: var(--blue-steel); color: var(--carbon); }
.section--mist { background: var(--mist); color: var(--carbon); }
.section--paper { background: var(--plan-paper); color: var(--carbon); }

.rail-mark {
  display: block;
  width: 1px;
  height: 40px;
  background: currentColor;
  opacity: 0.4;
  margin-left: var(--rail-x-mobile);
  margin-bottom: 24px;
}
@media (min-width: 960px) {
  .rail-mark { margin-left: calc(var(--gutter-desktop)); height: 56px; }
}

.grid-12 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (min-width: 960px) {
  .grid-12 { grid-template-columns: repeat(12, 1fr); gap: 24px; }
}

/* ---------- Type ---------- */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.01em;
}
.eyebrow-none { /* explicit non-class: direction bans eyebrows */ }

.hero__headline {
  font-size: clamp(3.4rem, 12vw, 4rem);
  line-height: 0.92;
  font-weight: 800;
}
@media (min-width: 960px) {
  .hero__headline { font-size: clamp(6rem, 8vw, 9rem); line-height: 0.9; }
}

.section__headline {
  font-size: clamp(2.4rem, 8vw, 3rem);
  line-height: 0.98;
  font-weight: 700;
}
@media (min-width: 960px) {
  .section__headline { font-size: clamp(4.25rem, 6vw, 5.75rem); }
}

.body-copy {
  font-size: 18px;
  line-height: 1.55;
  max-width: 42rem;
}
@media (min-width: 960px) {
  .body-copy { font-size: 20px; }
}

.caption {
  font-family: var(--font-text);
  font-weight: 500;
  font-size: 13px;
  line-height: 1.4;
}

.phone-number {
  font-family: var(--font-text);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(14, 11, 8, 0.86);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(217, 168, 95, 0.28);
  height: 60px;
  display: flex;
  align-items: center;
}
@media (min-width: 960px) {
  .site-header { height: 72px; }
}
.site-header__inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--carbon);
}
.brand__mark { width: 30px; height: 30px; flex-shrink: 0; }
.brand__word {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  line-height: 1;
}
.brand__domain {
  display: block;
  font-family: var(--font-text);
  font-weight: 500;
  font-size: 11px;
  color: var(--fresh-cut);
}

.primary-nav {
  display: none;
  align-items: center;
  gap: 28px;
  font-family: var(--font-text);
  font-weight: 500;
  font-size: 15px;
}
@media (min-width: 960px) {
  .primary-nav { display: flex; }
}
.primary-nav a { text-decoration: none; }
.primary-nav a:hover { color: var(--fresh-cut); }
.primary-nav .lang-link[aria-current="page"] { color: var(--tool-orange); font-weight: 600; }

.header-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--tool-orange);
  color: #14100B;
  font-weight: 600;
  text-decoration: none;
  padding: 10px 16px;
  border-radius: var(--radius);
  min-height: 44px;
}

.mobile-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
@media (min-width: 960px) {
  .mobile-actions { display: none; }
}
.mobile-actions .lang-link {
  font-family: var(--font-text);
  font-weight: 600;
  text-decoration: none;
  font-size: 15px;
}
.mobile-actions .lang-link[aria-current="page"] { color: var(--tool-orange); }
.mobile-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--tool-orange);
  color: #14100B;
  text-decoration: none;
  font-weight: 600;
  min-height: 44px;
  min-width: 44px;
  padding: 0 14px;
  border-radius: var(--radius);
}

/* ---------- Persistent mobile call bar ---------- */
.call-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 150;
  display: flex;
  background: var(--tool-orange);
  color: var(--carbon);
  min-height: 60px;
  padding-bottom: env(safe-area-inset-bottom, 0px);
}
@media (min-width: 960px) {
  .call-bar { display: none; }
}
.call-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(13px, 4.2vw, 16px);
  min-height: 64px;
  white-space: nowrap;
}
.call-bar__whatsapp {
  flex: 0 0 auto;
  min-width: 96px;
  border-left: 1px solid rgba(21,27,30,0.35);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 88svh;
  display: flex;
  align-items: center;
  padding-top: 24px;
}
.hero__media {
  position: absolute;
  inset: 0;
  background: var(--plan-paper) url('/assets/hero-poster.jpg') center/cover no-repeat;
}
.hero__media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 60% at 70% 30%, rgba(217, 168, 95, 0.10), transparent 60%),
    linear-gradient(180deg, rgba(20, 16, 11, 0.62) 0%, rgba(20, 16, 11, 0.38) 45%, rgba(20, 16, 11, 0.94) 100%);
}
@media (prefers-reduced-motion: reduce) {
  .hero__media video { display: none; }
}
.hero > .container { position: relative; z-index: 1; }
.hero__headline { text-shadow: 0 4px 40px rgba(0, 0, 0, 0.6); }
.hero__headline em { color: var(--fresh-cut); font-style: normal; }
.hero__inner {
  display: grid;
  gap: 32px;
}
@media (min-width: 960px) {
  .hero__inner {
    grid-template-columns: 7fr 5fr;
    gap: 48px;
    align-items: center;
  }
}
.hero__quick {
  background: rgba(11, 8, 6, 0.84);
  border: 1px solid rgba(217, 168, 95, 0.45);
  border-radius: var(--radius);
  padding: 22px;
  max-width: 430px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.hero__quick-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.hero__quick-head img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--fresh-cut);
  object-fit: cover;
}
.hero__quick-head strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  line-height: 1.15;
  color: var(--carbon);
}
.hero__quick-head span {
  display: block;
  margin-top: 3px;
  font-size: 13px;
  color: var(--fresh-cut);
}
.hero__quick form {
  display: grid;
  gap: 10px;
}
.hero__quick input:not(.visually-hidden) {
  height: 52px;
  padding: 0 14px;
  font: inherit;
  color: var(--carbon);
  background: #1D1712;
  border: 1px solid rgba(240, 230, 210, 0.22);
  border-radius: var(--radius);
  width: 100%;
}
.hero__quick input::placeholder { color: rgba(240, 230, 210, 0.5); }
.hero__quick button {
  height: 54px;
  border: 0;
  border-radius: var(--radius);
  background: var(--tool-orange);
  color: #14100B;
  font-weight: 700;
  font-size: 17px;
  cursor: pointer;
}
.hero__quick button:hover { filter: brightness(1.08); }
.hero__quick-call {
  display: block;
  margin-top: 12px;
  text-align: center;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--fresh-cut);
  text-decoration: underline;
  min-height: 44px;
  line-height: 44px;
}
@media (min-width: 960px) {
  .hero__inner {
    grid-template-columns: repeat(12, 1fr);
    column-gap: 24px;
    align-items: start;
  }
  .hero__headline-wrap { grid-column: 2 / span 8; }
  .hero__side { grid-column: 9 / span 4; padding-top: 12px; }
}
.hero__services-line {
  font-family: var(--font-text);
  font-weight: 600;
  font-size: 17px;
  margin-top: 20px;
}
.hero__services-line .divider { color: var(--fresh-cut); }
.hero__support {
  margin-top: 20px;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 24px;
  font-family: var(--font-text);
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
}
.btn--primary {
  background: var(--tool-orange);
  color: var(--carbon);
}
.btn--secondary {
  background: transparent;
  color: var(--carbon);
  border-color: var(--carbon);
}
.section--blue-steel .btn--secondary,
.section--carbon .btn--secondary {
  color: var(--plan-paper);
  border-color: var(--plan-paper);
}
.hero__trust {
  margin-top: 22px;
  font-family: var(--font-text);
  font-weight: 600;
  font-size: 15px;
  color: var(--blue-steel);
}

/* ---------- Services ledger ---------- */
.services__intro {
  margin-bottom: 40px;
}
.services__rows {
  border-top: 1px solid var(--mist);
}
.service-row {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 16px;
  padding-block: 28px;
  border-bottom: 1px solid var(--mist);
}
@media (min-width: 960px) {
  .service-row {
    grid-template-columns: 56px minmax(0, 1fr) minmax(0, 1fr);
    align-items: baseline;
    column-gap: 32px;
    padding-block: 40px;
  }
}
.service-row__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 34px;
  line-height: 1;
  color: var(--fresh-cut);
  font-variant-numeric: tabular-nums;
  opacity: 0.9;
}
@media (min-width: 960px) {
  .service-row__num { font-size: 56px; }
}
.service-row__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 28px;
}
@media (min-width: 960px) {
  .service-row__name { font-size: 36px; }
}
.service-row__desc {
  font-size: 16px;
  color: var(--carbon);
  opacity: 0.86;
  margin-top: 8px;
  max-width: 32rem;
}
@media (min-width: 960px) {
  .service-row__desc { margin-top: 0; }
}
.service-row:hover { border-bottom-color: var(--tool-orange); }
.services__close {
  margin-top: 32px;
  font-weight: 600;
  color: var(--mist);
}

/* ---------- Interlude (story-stick pin) ---------- */
.interlude {
  padding-top: var(--space-section-mobile);
  padding-bottom: var(--space-section-mobile);
  background: var(--blue-steel);
  color: var(--plan-paper);
}
@media (min-width: 960px) {
  .interlude { padding-top: var(--space-section-desktop); padding-bottom: var(--space-section-desktop); }
}
.interlude__static {
  display: grid;
  gap: 24px;
}
@media (min-width: 960px) {
  .interlude__static {
    grid-template-columns: repeat(12, 1fr);
    column-gap: 24px;
  }
  .interlude__media { grid-column: 1 / span 5; }
  .interlude__beats { grid-column: 7 / span 6; }
}
.interlude__media {
  position: relative;
  aspect-ratio: 9 / 16;
  max-width: 420px;
  background: var(--carbon);
  overflow: hidden;
}
.interlude__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.interlude__caption {
  margin-top: 10px;
  color: var(--mist);
}
.interlude__beats {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 28px;
}
@media (min-width: 960px) {
  .interlude__beats { margin-top: 0; justify-content: center; gap: 40px; }
}
.beat__label {
  font-family: var(--font-text);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--fresh-cut);
  margin-bottom: 8px;
}
.beat__text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.24;
  max-width: 26rem;
}
@media (min-width: 960px) {
  .beat__text { font-size: 30px; }
}

/* JS-upgraded pinned canvas mode */
.interlude.js-pinned .interlude__static { display: none; }
.interlude__pin {
  position: relative;
}
.interlude__stage {
  position: relative;
  height: 100svh;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  /* Reserve the sticky header above and the persistent call bar below so the
     pinned composition (aperture + caption + beat) is FULLY visible between
     them — the beat copy must never run under the orange bar. */
  padding: 72px 0 calc(84px + env(safe-area-inset-bottom, 0px));
}
@media (min-width: 960px) {
  .interlude__stage { padding: 88px 0 48px; }
}
.interlude__stage-inner {
  display: grid;
  width: 100%;
  gap: 10px;
}
@media (min-width: 960px) {
  .interlude__stage-inner {
    grid-template-columns: repeat(12, 1fr);
    column-gap: 24px;
    align-items: center;
    gap: 24px;
  }
}
.interlude__aperture {
  position: relative;
  aspect-ratio: 9 / 16;
  /* Height-budgeted: the aperture may never push the caption/beat below the
     stage. 50svh of film on phones; width follows from the aspect ratio. */
  width: min(100%, calc(50svh * 0.5625));
  margin-inline: auto;
  background: var(--carbon);
  overflow: hidden;
}
@media (min-width: 960px) {
  .interlude__aperture {
    grid-column: 1 / span 5;
    margin-inline: 0;
    width: min(100%, calc((100vh - 220px) * 0.5625));
  }
}
.interlude__aperture canvas {
  width: 100%;
  height: 100%;
  display: block;
}
.interlude__overlay-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  color: var(--plan-paper);
}
.interlude__caption--pin {
  margin: 0 auto;
  text-align: center;
  max-width: 34rem;
}
.interlude__panel {
  margin-top: 6px;
  /* Reserve the tallest beat's height so beat swaps never reflow the stage. */
  min-height: 128px;
  text-align: center;
}
@media (min-width: 960px) {
  .interlude__panel { grid-column: 7 / span 6; margin-top: 0; min-height: 180px; text-align: left; }
}
.interlude__beat {
  opacity: 0;
  position: absolute;
  left: 0; right: 0;
  max-width: 26rem;
  margin-inline: auto;
  transition: opacity 160ms ease;
}
@media (min-width: 960px) {
  .interlude__beat { margin-inline: 0; }
}
.interlude__beat.is-active {
  opacity: 1;
}
.interlude__beat .beat__text { font-size: 17px; line-height: 1.4; }
@media (min-width: 960px) {
  .interlude__beat .beat__text { font-size: 26px; line-height: 1.42; }
}
.interlude__panel {
  position: relative;
}

/* ---------- Yoel ---------- */
.yoel__inner {
  display: grid;
  gap: 32px;
}
@media (min-width: 960px) {
  .yoel__inner {
    grid-template-columns: repeat(12, 1fr);
    column-gap: 24px;
  }
  .yoel__portrait-col { grid-column: 1 / span 5; }
  .yoel__story-col { grid-column: 7 / span 6; }
}
.yoel__portrait {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-bottom: 3px solid var(--fresh-cut);
  border-right: 3px solid var(--fresh-cut);
}
.yoel__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}
.yoel__portrait-caption {
  margin-top: 12px;
  font-weight: 600;
  color: var(--blue-steel);
}
.yoel__story-col h2 { color: var(--blue-steel); margin-bottom: 24px; }
.yoel__story-col p + p { margin-top: 18px; }
.yoel__family-note {
  margin-top: 20px;
  font-weight: 500;
}
.yoel__pullquote {
  margin-top: 32px;
  padding-left: 20px;
  border-left: 3px solid var(--tool-orange);
}
.yoel__pullquote p:first-child {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--blue-steel);
}
.yoel__pullquote p + p {
  margin-top: 6px;
  font-size: 16px;
  opacity: 0.8;
}
.yoel__community {
  margin-top: 28px;
  font-size: 15px;
  color: var(--carbon);
  opacity: 0.75;
}

/* ---------- Current work (Pompano) ---------- */
.current-work__plate {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.6rem, 12vw, 3.2rem);
  line-height: 1.02;
  letter-spacing: -0.01em;
}
@media (min-width: 960px) {
  .current-work__plate { font-size: clamp(4.5rem, 7vw, 6.5rem); }
}
.current-work__media-area {
  margin-top: 32px;
  border: 1px solid var(--carbon);
  min-height: 180px;
  display: flex;
  align-items: center;
  padding: 24px;
}
@media (min-width: 960px) {
  .current-work__media-area { min-height: 260px; max-width: 66.6%; }
}
.current-work__status {
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}
.current-work__text {
  margin-top: 20px;
  max-width: 34rem;
}

/* ---------- Trust ledger ---------- */
.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--carbon);
  border-left: 1px solid var(--carbon);
}
@media (min-width: 960px) {
  .trust-grid { grid-template-columns: repeat(4, 1fr); }
}
.trust-cell {
  border-right: 1px solid var(--carbon);
  border-bottom: 1px solid var(--carbon);
  padding: 28px 20px;
}
.trust-cell__fact {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
}
.trust-cell__detail {
  margin-top: 8px;
  font-size: 14px;
  opacity: 0.78;
}

/* ---------- Contact ---------- */
.contact__inner {
  display: grid;
  gap: 40px;
}
@media (min-width: 960px) {
  .contact__inner {
    grid-template-columns: repeat(12, 1fr);
    column-gap: 24px;
  }
  .contact__call-col { grid-column: 1 / span 6; }
  .contact__form-col { grid-column: 8 / span 5; }
}
.contact__call-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.2rem, 9vw, 2.6rem);
  margin-top: 8px;
  display: block;
  text-decoration: none;
  color: var(--plan-paper);
}
@media (min-width: 960px) {
  .contact__call-number { font-size: clamp(3rem, 4vw, 3.6rem); }
}
.contact__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.contact__lang {
  margin-top: 20px;
  font-weight: 600;
  color: var(--fresh-cut);
}

.form-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 20px;
}
.field {
  margin-bottom: 18px;
}
.field label {
  display: block;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 6px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 56px;
  background: var(--mist);
  color: var(--carbon);
  border: 1px solid var(--carbon);
  border-radius: var(--radius);
  padding: 0 14px;
  font-family: var(--font-text);
  font-size: 16px;
}
.field textarea {
  min-height: 100px;
  padding: 12px 14px;
  resize: vertical;
}
.field--radio-group fieldset {
  border: 1px solid var(--carbon);
  border-radius: var(--radius);
  padding: 14px;
  background: var(--mist);
}
.field--radio-group legend {
  font-weight: 600;
  font-size: 14px;
  padding: 0 4px;
}
.radio-option {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
}
.field--consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.field--consent input {
  width: 20px;
  height: 20px;
  min-height: 20px;
  margin-top: 3px;
  flex-shrink: 0;
}
.field--consent label {
  font-weight: 400;
  font-size: 15px;
}
.honeypot-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-submit {
  background: var(--tool-orange);
  color: var(--carbon);
  border: none;
  min-height: 54px;
  padding: 0 28px;
  font-weight: 600;
  font-size: 16px;
  border-radius: var(--radius);
  cursor: pointer;
  width: 100%;
}
@media (min-width: 640px) {
  .form-submit { width: auto; }
}
.form-success {
  display: none;
  margin-top: 20px;
  padding: 18px;
  border: 1px solid var(--plan-paper);
  font-weight: 500;
}
.form-success.is-visible { display: block; }
.form-success .phone-number { color: var(--fresh-cut); }
body.has-sent .contact-form { display: none; }
body.has-sent .form-success { display: block; }

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--carbon);
}
.footer__top {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer__brand svg { width: 32px; height: 32px; }
.footer__brand-word {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
}
.footer__facts {
  font-size: 15px;
  line-height: 1.7;
}
.footer__lang {
  display: flex;
  gap: 16px;
  font-weight: 600;
}
.footer__lang a[aria-current="page"] { color: var(--tool-orange); }
.footer__bottom {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--mist);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  font-size: 14px;
}
.footer__signature {
  margin-top: 32px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.6rem, 13vw, 5.5rem);
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
  color: var(--carbon);
}

/* ---------- Privacy page ---------- */
.privacy-content h2 {
  color: var(--blue-steel);
  font-size: 28px;
  margin-top: 36px;
  margin-bottom: 12px;
}
.privacy-content p { margin-bottom: 16px; max-width: 42rem; }
.privacy-content p:first-child { margin-top: 0; }
