/* ===== Înger și Demon — foaie de stil ===== */

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Lora:wght@400;500;600&display=swap");

:root {
  --dark: #081119;
  --dark-soft: #101d27;
  --cream: #f7f3eb;
  --cream-deep: #eee6da;
  --gold: #caa05d;
  --gold-light: #dfbd79;
  --text: #18202a;
  --muted: #5c6570;
  --white: #ffffff;
  --serif: "Lora", serif;
  --sans: "Inter", sans-serif;

  --paper: var(--cream);
  --bone: var(--cream-deep);
  --bone-deep: #e8ded0;
  --ink: var(--text);
  --ink-soft: var(--muted);
  --pine: var(--dark);
  --pine-soft: var(--dark-soft);
  --ember: var(--gold);
  --ember-bright: var(--gold-light);
  --moss: #6f7c64;
  --line: rgba(24, 32, 42, 0.16);
  --line-dark: rgba(255, 255, 255, 0.22);

  --text-xs: 13px;
  --text-sm: 15px;
  --text-base: 16px;
  --text-lg: 18px;
  --text-xl: clamp(34px, 4vw, 58px);
  --text-2xl: clamp(40px, 5vw, 68px);
  --text-hero: clamp(52px, 5.5vw, 80px);

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-24: 6rem;

  --section-y: 86px;
  --radius: 0;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

body {
  max-width: min(1600px, 100%);
  margin: 0;
  margin-inline: auto;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: var(--text-base);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body > * {
  max-width: 100%;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0;
  margin: 0;
  text-wrap: balance;
}

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

a { color: inherit; }

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

::selection { background: var(--ember); color: var(--paper); }

/* ---------- layout ---------- */
.wrap {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 6vw;
}
.narrow { max-width: 680px; }
.mid { max-width: 900px; }

section { padding: var(--section-y) 0; }

.eyebrow {
  font-size: var(--text-xs);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 800;
  color: #805b28;
  margin: 0 0 18px;
}
.dark .eyebrow { color: var(--gold-light); }

.section-title { font-size: var(--text-xl); margin-bottom: 24px; }
.lead { font-size: 18px; line-height: 1.6; color: var(--muted); }
.dark .lead { color: rgba(255, 255, 255, 0.76); }

.dark {
  background: var(--pine);
  color: var(--bone);
}
.dark a { color: var(--bone); }

.rule {
  height: 1px;
  background: var(--line);
  border: 0;
  margin: 0;
}

/* ---------- header ---------- */
.header {
  position: fixed;
  top: 0;
  left: 50%;
  right: auto;
  width: min(1600px, 100%);
  transform: translateX(-50%);
  z-index: 60;
  color: var(--white);
  background: linear-gradient(180deg, rgba(7, 19, 29, 0.96), rgba(7, 19, 29, 0.72));
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.header.scrolled { border-bottom-color: var(--line); }
.header-inner {
  max-width: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(12px, 1.4vw, 20px);
  min-height: 86px;
  padding: 0 clamp(18px, 3.2vw, 44px);
}
.brand {
  flex: 0 1 auto;
  min-width: 0;
  display: grid;
  gap: 6px;
  text-decoration: none;
  color: var(--white);
  font-family: var(--serif);
  line-height: 1.05;
}
.brand span {
  display: block;
  white-space: nowrap;
}
.brand-retreat {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: clamp(24px, 2vw, 30px);
  text-transform: none;
}
.brand-retreat svg {
  width: 24px;
  height: 24px;
  flex: none;
  color: var(--gold);
}
.brand-concept {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.7);
}
.brand-concept-label {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.3px;
  line-height: 1;
  text-transform: uppercase;
}
.brand-concept-logo {
  font-family: var(--serif);
  font-size: 11px;
  line-height: 0.98;
  text-transform: uppercase;
}
.nav {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(10px, 1.25vw, 20px);
  min-width: 0;
}
.nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  font-family: var(--sans);
  font-size: 11px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.82);
  padding: 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}
.nav a:hover { color: var(--white); border-bottom-color: var(--gold); }
.nav a.btn {
  min-height: 42px;
  padding: 0 16px;
  color: var(--white);
  border: 1px solid var(--gold);
}
.nav a.btn:hover { color: var(--white); border-color: var(--gold-light); }
.nav .nav-back-link {
  display: none;
}
.back-link {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: var(--white);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.9px;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}
.back-link:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}
.menu-toggle {
  display: none;
  place-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  color: var(--white);
  background: transparent;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}
.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(7px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 1100px) {
  .header-inner {
    min-height: 78px;
  }
  .menu-toggle {
    display: grid;
    order: 3;
  }
  .back-link {
    display: none;
  }
  .nav {
    position: absolute;
    top: 100%;
    right: clamp(18px, 3.2vw, 44px);
    left: clamp(18px, 3.2vw, 44px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(8, 17, 25, 0.98);
    box-shadow: 0 22px 58px rgba(0, 0, 0, 0.28);
  }
  .nav.is-open {
    display: flex;
  }
  .nav a,
  .nav a.btn,
  .nav .nav-back-link {
    display: flex;
    justify-content: flex-start;
    width: 100%;
    min-height: 48px;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding: 0 10px;
    text-align: left;
  }
  .nav a.btn {
    justify-content: center;
    margin: 12px 0 0;
    border: 1px solid var(--gold);
    background: var(--gold);
  }
  .nav .nav-back-link {
    margin-top: 8px;
    border: 1px solid rgba(255, 255, 255, 0.42);
    justify-content: center;
  }
}

@media (max-width: 760px) {
  .header-inner {
    min-height: 70px;
    padding: 0 18px;
  }
  .brand {
    gap: 4px;
  }
  .brand-retreat {
    font-size: 21px;
  }
  .brand-retreat svg {
    width: 22px;
    height: 22px;
  }
  .brand-concept {
    gap: 7px;
  }
  .brand-concept-label {
    font-size: 8px;
  }
  .brand-concept-logo {
    font-size: 10px;
  }
  .back-link { display: none; }
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: inherit;
  min-height: 48px;
  padding: 0 clamp(20px, 3vw, 30px);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  border-radius: var(--radius);
  text-decoration: none;
  border: 1px solid var(--ember);
  background: var(--ember);
  color: var(--paper);
  cursor: pointer;
  text-transform: uppercase;
  text-align: center;
  white-space: normal;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease), color 0.2s;
}
.btn:hover { background: var(--ember-bright); transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover { background: transparent; border-color: var(--ink); color: var(--ink); }
.dark .btn-ghost,
.hero .btn-ghost,
.bleed .btn-ghost { color: var(--bone); border-color: rgba(242, 236, 225, 0.42); }
.dark .btn-ghost:hover,
.hero .btn-ghost:hover { border-color: var(--bone); color: var(--bone); background: rgba(242, 236, 225, 0.07); }
.btn-sm { min-height: 42px; padding: 0 18px; font-size: 12px; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: clamp(620px, calc(100vh - 86px), 760px);
  display: flex;
  align-items: center;
  padding: calc(86px + clamp(58px, 8vh, 92px)) 0 clamp(42px, 6vh, 64px);
  overflow: hidden;
  background: var(--pine);
  color: var(--bone);
}
.hero-media {
  position: absolute;
  inset: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 62%;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(16, 22, 20, 0.95) 0%, rgba(16, 22, 20, 0.78) 38%, rgba(16, 22, 20, 0.42) 68%, rgba(16, 22, 20, 0.62) 100%);
}
.hero .wrap {
  position: relative;
  z-index: 2;
  max-width: none;
  padding: 0 clamp(24px, 6vw, 96px);
}
.hero-eyebrow {
  font-size: var(--text-xs);
  letter-spacing: 2.8px;
  text-transform: uppercase;
  color: rgba(242, 236, 225, 0.78);
  margin-bottom: 22px;
  max-width: 56ch;
  line-height: 1.7;
  text-shadow: 0 1px 12px rgba(10, 14, 12, 0.5);
}
.hero h1 {
  max-width: 760px;
  font-size: clamp(54px, 6vw, 92px);
  line-height: 0.98;
  margin-bottom: 22px;
  letter-spacing: 0;
}
.hero h1 em {
  font-style: italic;
  color: #e2a06a;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  font-size: var(--text-sm);
  color: rgba(242, 236, 225, 0.88);
  margin-bottom: 24px;
  max-width: 760px;
}
.hero-meta span { display: inline-flex; align-items: center; gap: 0.5rem; }
.hero-meta span::before {
  content: "";
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--ember-bright);
  flex: none;
}
.hero-sub {
  max-width: 540px;
  font-size: 18px;
  color: rgba(242, 236, 225, 0.82);
}
.hero .btn-row { margin-top: var(--space-8); }
.hero-call-button {
  display: none;
}
.hero-note {
  margin-top: 22px;
  font-size: var(--text-xs);
  color: rgba(242, 236, 225, 0.6);
  max-width: 44ch;
}

@media (max-width: 900px) {
  .hero {
    min-height: clamp(590px, calc(100vh - 78px), 720px);
    padding-top: calc(78px + clamp(46px, 7vh, 72px));
  }
  .hero .wrap {
    padding: 0 clamp(22px, 6vw, 54px);
  }
  .hero h1 {
    font-size: clamp(48px, 10vw, 72px);
  }
  .hero-sub {
    font-size: 17px;
  }
}

@media (max-width: 760px) {
  .hero-call-button {
    display: inline-flex;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: auto;
    padding: 132px 0 64px;
  }
  .hero .wrap {
    padding: 0 20px;
  }
  .hero-eyebrow {
    font-size: 11px;
    letter-spacing: 2px;
    line-height: 1.55;
  }
  .hero h1 {
    font-size: clamp(44px, 16vw, 62px);
  }
  .hero-meta {
    display: grid;
    gap: 8px;
  }
  .hero-sub {
    font-size: 16px;
  }
  .hero .btn-row {
    display: grid;
  }
  .hero .btn {
    width: 100%;
  }
}

/* ---------- letter ---------- */
.letter { background: var(--bone); }
.letter-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
}
@media (min-width: 860px) {
  .letter-grid { grid-template-columns: 0.85fr 1.15fr; gap: clamp(2.5rem, 6vw, 5rem); }
}
.pullquote {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 1.1rem + 1.8vw, 2.35rem);
  line-height: 1.22;
  font-style: italic;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--ink);
}
.pullquote::before {
  content: "";
  display: block;
  width: 44px;
  height: 2px;
  background: var(--ember);
  margin-bottom: var(--space-6);
}
.signature {
  margin-top: var(--space-8);
  padding-top: var(--space-6);
  border-top: 1px solid var(--line);
  font-size: var(--text-sm);
  color: var(--muted);
}
.signature strong { color: var(--ink); font-weight: 500; }

/* ---------- cards ---------- */
.grid-cards {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  grid-template-columns: 1fr;
  margin-top: var(--space-12);
}
@media (min-width: 640px) { .grid-cards { grid-template-columns: 1fr 1fr; } }
@media (min-width: 980px) { .grid-cards.three { grid-template-columns: repeat(3, 1fr); } }
.card {
  background: var(--paper);
  padding: clamp(1.5rem, 3vw, 2.1rem);
}
.card h3 {
  font-size: var(--text-lg);
  margin-bottom: 0.7rem;
}
.card p { font-size: var(--text-sm); color: var(--muted); margin: 0; }
.card-num {
  font-size: var(--text-xs);
  letter-spacing: 0.14em;
  color: var(--ember);
  display: block;
  margin-bottom: 0.9rem;
}

/* ---------- rhythm / timeline ---------- */
.rhythm {
  margin-top: var(--space-16);
  display: grid;
  gap: var(--space-8);
  grid-template-columns: 1fr;
}
@media (min-width: 820px) { .rhythm { grid-template-columns: repeat(3, 1fr); gap: var(--space-12); } }
.rhythm-item { border-top: 2px solid var(--ember); padding-top: var(--space-4); }
.rhythm-item h3 { font-size: var(--text-lg); margin-bottom: 0.5rem; }
.rhythm-item p { font-size: var(--text-sm); color: var(--muted); }

/* ---------- full bleed ---------- */
.bleed {
  position: relative;
  min-height: min(70vh, 620px);
  display: flex;
  align-items: center;
  padding: var(--space-24) 0;
  overflow: hidden;
  background: #101614;
}
.bleed img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% 50%;
  opacity: 0.85;
}
.bleed::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(12, 17, 15, 0.9) 0%, rgba(12, 17, 15, 0.65) 48%, rgba(12, 17, 15, 0.15) 100%);
}
.bleed .wrap { position: relative; z-index: 2; }
.bleed blockquote {
  margin: 0;
  max-width: 22ch;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.6rem, 1.1rem + 2.4vw, 3rem);
  line-height: 1.16;
  letter-spacing: -0.02em;
  color: var(--bone);
}
.bleed cite {
  display: block;
  margin-top: var(--space-6);
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-size: var(--text-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(242, 236, 225, 0.6);
}

/* ---------- two columns compare ---------- */
.compare {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  margin-top: var(--space-12);
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
}
@media (min-width: 800px) { .compare { grid-template-columns: 1fr 1fr; } }
.compare-col { padding: clamp(1.6rem, 3.5vw, 2.6rem); background: var(--pine); }
.compare-col.good { background: var(--pine-soft); }
.compare-head {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--line-dark);
}
.compare-head h3 { font-size: var(--text-lg); }
.tag {
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.25rem 0.55rem;
  border: 1px solid currentColor;
  border-radius: 2px;
  white-space: nowrap;
}
.tag.no { color: #d9a08a; }
.tag.yes { color: #b9c9a3; }
.compare-col ul { list-style: none; margin: 0; padding: 0; }
.compare-col li {
  font-size: var(--text-sm);
  line-height: 1.6;
  padding: 0.75rem 0 0.75rem 1.5rem;
  position: relative;
  border-bottom: 1px solid var(--line-dark);
  color: rgba(242, 236, 225, 0.88);
}
.compare-col li:last-child { border-bottom: 0; padding-bottom: 0; }
.compare-col li::before {
  position: absolute;
  left: 0;
  top: 0.75rem;
  font-size: 0.9rem;
  line-height: 1.6;
}
.compare-col.bad li::before { content: "×"; color: #d9a08a; }
.compare-col.good li::before { content: "→"; color: #b9c9a3; }

/* ---------- fit / not fit ---------- */
.fit {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
  margin-top: var(--space-12);
}
@media (min-width: 860px) { .fit { grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 5vw, 4.5rem); } }
.fit-col h3 {
  font-size: var(--text-lg);
  padding-bottom: var(--space-4);
  border-bottom: 2px solid var(--ink);
  margin-bottom: var(--space-6);
}
.fit-col.no h3 { border-bottom-color: var(--ember); }
.fit-col ul { list-style: none; margin: 0; padding: 0; }
.fit-col li {
  font-size: var(--text-sm);
  padding: 0.85rem 0 0.85rem 1.6rem;
  border-bottom: 1px solid var(--line);
  position: relative;
  color: var(--ink-soft);
}
.fit-col li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.45rem;
  width: 8px;
  height: 8px;
  border: 1.5px solid var(--moss);
  border-radius: 50%;
}
.fit-col.no li::before { border-color: var(--ember); border-radius: 0; transform: rotate(45deg); }

/* ---------- ethics ---------- */
.ethics-list { margin-top: var(--space-12); border-top: 1px solid var(--line-dark); }
.ethics-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.4rem var(--space-8);
  padding: var(--space-6) 0;
  border-bottom: 1px solid var(--line-dark);
}
@media (min-width: 820px) {
  .ethics-item { grid-template-columns: 0.9fr 1.6fr; gap: var(--space-12); }
}
.ethics-item h3 { font-size: var(--text-lg); }
.ethics-item p { font-size: var(--text-sm); color: rgba(242, 236, 225, 0.8); margin: 0; }

/* ---------- logistics ---------- */
.logi {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
  margin-top: var(--space-12);
}
@media (min-width: 900px) { .logi { grid-template-columns: 1.05fr 0.95fr; } }
.facts { border-top: 1px solid var(--line); }
.fact {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1rem;
  justify-content: space-between;
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--line);
  font-size: var(--text-sm);
}
.fact dt { color: var(--muted); margin: 0; }
.fact dd { margin: 0; text-align: right; font-weight: 500; max-width: 60%; }
@media (max-width: 520px) { .fact dd { text-align: left; max-width: 100%; } }
.logi-img { border-radius: var(--radius); overflow: hidden; }
.logi-img img { width: 100%; }
.caption {
  font-size: var(--text-xs);
  color: var(--muted);
  margin-top: 0.75rem;
}
.included {
  margin-top: var(--space-12);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
}
@media (min-width: 760px) { .included { grid-template-columns: 1fr 1fr; gap: var(--space-12); } }
.included h3 { font-size: var(--text-lg); margin-bottom: var(--space-4); }
.included ul { margin: 0; padding-left: 1.15rem; }
.included li { font-size: var(--text-sm); color: var(--ink-soft); margin-bottom: 0.45rem; }

/* ---------- faq ---------- */
.faq { max-width: 820px; margin-top: var(--space-12); border-top: 1px solid var(--line); }
details {
  border-bottom: 1px solid var(--line);
}
details summary {
  cursor: pointer;
  list-style: none;
  padding: 1.25rem 2.5rem 1.25rem 0;
  position: relative;
  font-family: var(--serif);
  font-size: var(--text-lg);
  line-height: 1.3;
  transition: color 0.2s;
}
details summary::-webkit-details-marker { display: none; }
details summary:hover { color: var(--ember); }
details summary::after {
  content: "";
  position: absolute;
  right: 0.35rem;
  top: 1.85rem;
  width: 11px;
  height: 11px;
  border-right: 1.5px solid var(--ember);
  border-bottom: 1.5px solid var(--ember);
  transform: rotate(45deg);
  transition: transform 0.25s var(--ease);
}
details[open] summary::after { transform: rotate(-135deg); top: 1.9rem; }
details .answer {
  padding: 0 clamp(0, 4vw, 3rem) 1.5rem 0;
  max-width: 68ch;
  font-size: var(--text-sm);
  color: var(--ink-soft);
  margin-bottom: 20px;
}

/* ---------- form ---------- */
.form-section { background: var(--bone); }
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}
@media (min-width: 940px) {
  .form-grid {
    grid-template-columns: 0.8fr 1.2fr;
    align-items: stretch;
  }

  .form-side {
    align-self: stretch;
    min-height: 100%;
  }

  .form-side-sticky {
    position: sticky;
    top: 118px;
    z-index: 1;
  }
}
.form-side p { font-size: var(--text-sm); color: var(--muted); }
.form-side .phone {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--serif);
  font-size: var(--text-xl);
  text-decoration: none;
  color: var(--ink);
  margin: var(--space-4) 0 var(--space-2);
  border-bottom: 1px solid var(--ember);
}
.form-side .phone-call,
.form-side-note-mobile {
  display: none;
}
.form-side-note-wide {
  display: block;
}
.form-call-button {
  display: none;
}
@media (max-width: 760px) {
  .form-side .phone-whatsapp,
  .form-side-note-wide {
    display: none;
  }

  .form-side .phone-call {
    display: inline-flex;
  }

  .form-side-note-mobile {
    display: block;
  }

  .form-call-button {
    display: inline-flex;
  }
}
form {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: clamp(1.4rem, 3.5vw, 2.5rem);
}
.field { margin-bottom: var(--space-6); }
.field-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}
@media (min-width: 620px) { .field-row { grid-template-columns: 1fr 1fr; } }
label {
  display: block;
  font-size: var(--text-xs);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
  font-weight: 500;
}
label .req { color: var(--ember); }
input, select, textarea {
  width: 100%;
  font-family: inherit;
  font-size: var(--text-sm);
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.75rem 0.9rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
textarea { min-height: 118px; resize: vertical; line-height: 1.6; }
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--ember);
  box-shadow: 0 0 0 3px rgba(168, 80, 31, 0.12);
}
.custom-select {
  position: relative;
  width: 100%;
}
.custom-select-trigger {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.75rem 2.5rem 0.75rem 0.9rem;
  color: var(--ink);
  background: var(--paper);
  cursor: pointer;
  font: inherit;
  font-size: var(--text-sm);
  line-height: 1.45;
  text-align: left;
}
.custom-select-trigger span {
  min-width: 0;
  overflow-wrap: anywhere;
  white-space: normal;
}
.custom-select-trigger::after {
  position: absolute;
  right: 0.95rem;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  content: "";
  transform: translateY(-65%) rotate(45deg);
  transition: transform 160ms ease;
}
.custom-select.is-open .custom-select-trigger::after {
  transform: translateY(-35%) rotate(-135deg);
}
.custom-select-trigger:focus-visible {
  border-color: var(--ember);
  outline: none;
  box-shadow: 0 0 0 3px rgba(168, 80, 31, 0.12);
}
.custom-select-options {
  position: absolute;
  z-index: 30;
  top: calc(100% + 4px);
  right: 0;
  left: 0;
  display: none;
  max-width: 100%;
  max-height: min(280px, 54vh);
  overflow-y: auto;
  border: 1px solid rgba(24, 32, 42, 0.24);
  background: var(--paper);
  box-shadow: 0 18px 44px rgba(8, 17, 25, 0.16);
}
.custom-select.is-open .custom-select-options {
  display: grid;
}
.custom-select-options button {
  display: block;
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(24, 32, 42, 0.08);
  padding: 0.68rem 0.9rem;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-size: var(--text-sm);
  line-height: 1.38;
  text-align: left;
  overflow-wrap: anywhere;
  white-space: normal;
}
.custom-select-options button:last-child {
  border-bottom: 0;
}
.custom-select-options button:hover,
.custom-select-options button:focus-visible,
.custom-select-options button[aria-selected="true"] {
  color: var(--white);
  background: #2368c9;
  outline: none;
}
.hint { font-size: var(--text-xs); color: var(--muted); margin-top: 0.45rem; text-transform: none; letter-spacing: 0; }
.check {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  font-size: var(--text-xs);
  color: var(--muted);
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.55;
  margin-bottom: var(--space-6);
}
.check input { width: 17px; height: 17px; flex: none; margin-top: 2px; accent-color: var(--ember); }
.form-actions { display: flex; flex-wrap: wrap; gap: var(--space-3); align-items: center; }
.form-note { font-size: var(--text-xs); color: var(--muted); margin-top: var(--space-4); }
.thanks {
  display: none;
  border: 1px solid var(--moss);
  background: rgba(108, 122, 92, 0.08);
  padding: clamp(1.4rem, 3vw, 2.2rem);
}
.thanks h3 { font-size: var(--text-lg); margin-bottom: 0.6rem; }
.thanks p { font-size: var(--text-sm); color: var(--ink-soft); }
form.sent { display: none; }
.thanks.show { display: block; }

/* ---------- footer ---------- */
.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 30px 6vw;
  color: rgba(255, 255, 255, 0.74);
  background: var(--dark);
}
.site-footer p {
  margin: 0;
}
.site-footer a {
  color: inherit;
  text-decoration: none;
}
.site-footer a:hover {
  color: var(--gold-light);
}
.disclaimer {
  margin-top: var(--space-8);
  font-size: var(--text-xs);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.5);
  max-width: 78ch;
}
.footer-bottom {
  padding-top: var(--space-6);
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  justify-content: space-between;
}

/* ---------- reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn:hover { transform: none; }
}
