/* ============================================================
   ADINA - עדי נאור | סטודיו בוטיק לשמלות כלה וערב
   ============================================================ */

:root {
  --ink: #262019;
  --ink-soft: #4d443a;
  --paper: #faf7f1;
  --cream: #f2ebdf;
  --cream-deep: #e9dfcd;
  --gold: #a8833f;
  --gold-deep: #8a6b31;
  --gold-soft: #d8c49a;
  --blush: #ecdccf;
  --line: #e2d7c3;
  --white: #fffdf9;
  --font-display: 'Assistant', 'Heebo', sans-serif;
  --font-body: 'Assistant', 'Heebo', sans-serif;
  --font-latin: 'Cormorant Garamond', 'Frank Ruhl Libre', serif;
  --ease: cubic-bezier(.22, .8, .3, 1);
  --shadow-soft: 0 20px 60px -25px rgba(60, 45, 20, .35);
  --radius: 2px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }
html:focus-within { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 1.075rem;
  line-height: 1.75;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: .01em;
}

h1 { font-size: clamp(2.4rem, 6.4vw, 4.6rem); }
h2 { font-size: clamp(1.9rem, 4.2vw, 3.1rem); }
h3 { font-size: clamp(1.25rem, 2.4vw, 1.6rem); }

a { color: var(--gold-deep); text-decoration: none; }
a:hover { color: var(--gold); }

.container { width: min(1180px, 92vw); margin-inline: auto; }
.container.narrow { width: min(820px, 92vw); }
.center { text-align: center; }

/* ---------- skip link + focus ---------- */
.skip-link {
  position: absolute; top: -60px; right: 16px; z-index: 300;
  background: var(--ink); color: var(--white);
  padding: .7em 1.4em; border-radius: 0 0 6px 6px;
  transition: top .2s;
}
.skip-link:focus { top: 0; color: var(--white); }

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

/* ---------- kicker + section head ---------- */
.kicker {
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: .9em;
}
.kicker::before {
  content: '';
  width: 42px; height: 1px;
  background: var(--gold);
  display: inline-block;
}
.kicker.light { color: var(--gold-soft); }

.section { padding: clamp(4rem, 9vw, 7.5rem) 0; position: relative; }
.section-head { margin-bottom: clamp(2.2rem, 5vw, 4rem); text-align: center; }
.section-head .kicker::after {
  content: '';
  width: 42px; height: 1px;
  background: var(--gold);
  display: inline-block;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: .06em;
  padding: .85em 2.2em;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all .35s var(--ease);
  text-align: center;
}
.btn-lg { padding: 1.05em 2.7em; font-size: 1.05rem; }
.btn-sm { padding: .55em 1.4em; font-size: .92rem; }
.btn-block { width: 100%; }

.btn-gold {
  background: linear-gradient(120deg, var(--gold-deep), var(--gold) 55%, #c3a05e);
  color: var(--white);
  box-shadow: 0 12px 30px -12px rgba(140, 105, 45, .55);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 18px 38px -12px rgba(140, 105, 45, .65); color: var(--white); }

.btn-ghost {
  background: rgba(255, 253, 249, .12);
  border-color: rgba(255, 253, 249, .65);
  color: var(--white);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: rgba(255, 253, 249, .25); color: var(--white); }

.btn-outline {
  border-color: var(--gold);
  color: var(--gold-deep);
  background: transparent;
}
.btn-outline:hover { background: var(--gold); color: var(--white); transform: translateY(-2px); }

.link-arrow {
  display: inline-flex; align-items: center; gap: .5em;
  font-weight: 600; letter-spacing: .04em;
  border-bottom: 1px solid var(--gold-soft);
  padding-bottom: .2em;
  transition: gap .3s var(--ease);
}
.link-arrow:hover { gap: .9em; }

/* ---------- header ---------- */
.site-header {
  position: fixed;
  inset-inline: 0; top: 0;
  z-index: 100;
  transition: background .4s, box-shadow .4s, padding .4s;
  padding: 1.1rem 0;
}
.site-header.scrolled {
  background: rgba(250, 247, 241, .92);
  backdrop-filter: blur(14px);
  box-shadow: 0 6px 30px -18px rgba(60, 45, 20, .4);
  padding: .55rem 0;
}
.header-inner {
  width: min(1320px, 94vw);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.brand { display: flex; align-items: center; }
.brand-logo {
  height: 62px;
  width: auto;
  mix-blend-mode: multiply;
  transition: height .4s var(--ease), filter .4s;
}
.site-header.scrolled .brand-logo { height: 48px; }
.page-home .site-header:not(.scrolled) .brand-logo {
  filter: invert(1);
  mix-blend-mode: screen;
}

.main-nav ul { display: flex; align-items: center; gap: 1.9rem; list-style: none; }
.main-nav a:not(.btn) {
  font-weight: 500;
  font-size: 1rem;
  color: var(--ink);
  letter-spacing: .03em;
  position: relative;
  padding-block: .3em;
  transition: color .3s;
}
.page-home .site-header:not(.scrolled) .main-nav a:not(.btn) { color: var(--white); }
.main-nav a:not(.btn)::after {
  content: '';
  position: absolute; bottom: 0; right: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width .35s var(--ease);
}
.main-nav a:not(.btn):hover::after,
.main-nav a.active::after { width: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none; border: 0;
  padding: 10px;
  cursor: pointer;
  z-index: 130;
}
.nav-toggle span {
  width: 26px; height: 2px;
  background: var(--ink);
  transition: all .35s var(--ease);
}
.page-home .site-header:not(.scrolled) .nav-toggle span { background: var(--white); }
body.nav-open .nav-toggle span { background: var(--ink) !important; }
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}
.hero-media { position: absolute; inset: 0; }
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 62% 18%;
  animation: heroZoom 14s var(--ease) forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.12); }
  to { transform: scale(1.02); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(12deg, rgba(20, 14, 8, .72) 12%, rgba(20, 14, 8, .25) 55%, rgba(20, 14, 8, .08)),
    linear-gradient(to left, rgba(20, 14, 8, .52), rgba(20, 14, 8, .12) 55%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, 92vw);
  margin-inline: auto;
  padding-top: 8vh;
}
.hero .kicker { color: var(--gold-soft); }
.hero h1 { color: var(--white); text-shadow: 0 3px 16px rgba(0, 0, 0, .5), 0 8px 50px rgba(0, 0, 0, .45); }
.hero h1 .line { display: block; }
.hero-sub {
  font-size: clamp(1.1rem, 2.2vw, 1.45rem);
  font-weight: 400;
  margin-top: 1.2rem;
  max-width: 34ch;
  color: #f8f2e7;
  text-shadow: 0 2px 18px rgba(0, 0, 0, .55);
}
.hero .kicker { text-shadow: 0 2px 14px rgba(0, 0, 0, .5); }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.4rem; }

.hero-watermark {
  position: absolute;
  bottom: -0.14em; left: -0.05em;
  font-family: var(--font-latin);
  font-style: italic;
  font-size: clamp(7rem, 22vw, 19rem);
  line-height: 1;
  color: rgba(255, 253, 249, .07);
  pointer-events: none;
  user-select: none;
  z-index: 1;
}

.hero-scroll {
  position: absolute;
  bottom: 2.2rem; right: 50%;
  transform: translateX(50%);
  z-index: 2;
  width: 26px; height: 44px;
  border: 1.5px solid rgba(255, 253, 249, .6);
  border-radius: 20px;
  pointer-events: none;
}
.hero-scroll span {
  position: absolute;
  top: 8px; right: 50%;
  transform: translateX(50%);
  width: 4px; height: 8px;
  border-radius: 4px;
  background: var(--gold-soft);
  animation: scrollHint 2s infinite;
}
@keyframes scrollHint {
  0% { opacity: 0; top: 8px; }
  35% { opacity: 1; }
  100% { opacity: 0; top: 24px; }
}

/* ---------- split layout ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
}
.split-rev { grid-template-columns: 1.1fr 1fr; }
.split-media img { width: 100%; height: 100%; object-fit: cover; }

.frame-gold { position: relative; }
.frame-gold img { aspect-ratio: 3.4/4.2; box-shadow: var(--shadow-soft); object-position: center 15%; }
.frame-gold.tall img { aspect-ratio: 3/4.3; }
.frame-gold.soft img { object-fit: contain; background: #f7f2ea; aspect-ratio: 1/1.05; }
.frame-gold::after {
  content: '';
  position: absolute;
  inset: 1.4rem -1.4rem -1.4rem 1.4rem;
  border: 1px solid var(--gold-soft);
  z-index: -1;
}

.frame-offset { position: relative; }
.frame-offset img { aspect-ratio: 3.6/4.4; box-shadow: var(--shadow-soft); }
.frame-offset::before {
  content: '';
  position: absolute;
  inset: -1.4rem 1.4rem 1.4rem -1.4rem;
  background: var(--cream-deep);
  z-index: -1;
}

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

/* ---------- intro ---------- */
.intro-section { background: var(--paper); }

/* ---------- process ---------- */
.process-section {
  background:
    radial-gradient(1200px 500px at 85% -10%, rgba(216, 196, 154, .25), transparent),
    var(--cream);
}
.process-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.2rem;
  counter-reset: step;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 2.6rem; right: 6%;
  width: 88%; height: 1px;
  background: linear-gradient(to left, transparent, var(--gold-soft) 15%, var(--gold-soft) 85%, transparent);
}
.process-step { position: relative; text-align: center; padding-top: .4rem; }
.step-num {
  display: inline-grid;
  place-items: center;
  width: 4.4rem; height: 4.4rem;
  margin-bottom: 1.4rem;
  border: 1px solid var(--gold);
  border-radius: 50%;
  background: var(--paper);
  font-family: var(--font-latin);
  font-style: italic;
  font-size: 1.7rem;
  color: var(--gold-deep);
  position: relative;
  z-index: 1;
}
.process-step h3 { margin-bottom: .6rem; }
.process-step p { font-size: 1rem; color: var(--ink-soft); }

/* ---------- editorial grid (home teaser) ---------- */
.editorial-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 130px;
  gap: 14px;
  margin-bottom: 3rem;
}
.ed-item { overflow: hidden; position: relative; }
.ed-item:nth-child(1) { grid-column: span 2; grid-row: span 3; }
.ed-item:nth-child(2) { grid-column: span 2; grid-row: span 2; }
.ed-item:nth-child(3) { grid-column: span 2; grid-row: span 3; }
.ed-item:nth-child(4) { grid-column: span 2; grid-row: span 3; }
.ed-item:nth-child(5) { grid-column: span 2; grid-row: span 3; }
.ed-item:nth-child(6) { grid-column: span 2; grid-row: span 2; }
.ed-item .img-open, .m-item .img-open, .masonry-mini .img-open {
  display: block;
  width: 100%; height: 100%;
  padding: 0; border: 0;
  background: none;
  cursor: zoom-in;
}
.ed-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 15%;
  transition: transform 1.1s var(--ease), filter 1.1s var(--ease);
}
.ed-item:hover img { transform: scale(1.06); }

/* ---------- promise (dark) ---------- */
.promise-section {
  background:
    radial-gradient(900px 400px at 10% 110%, rgba(168, 131, 63, .18), transparent),
    linear-gradient(160deg, #241d15, #33291d);
  color: #f2ead9;
}
.promise-section h2 { color: var(--white); }
.promise-section .prose { color: #ddd2bd; }

/* ---------- vertical running gallery (promise section) ---------- */
.v-marquee {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  height: min(72vh, 620px);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 9%, #000 91%, transparent);
  mask-image: linear-gradient(to bottom, transparent, #000 9%, #000 91%, transparent);
}
.v-col { animation: vscroll 36s linear infinite; }
.v-col.rev { animation-direction: reverse; animation-duration: 44s; }
.v-col img {
  width: 100%;
  height: auto;
  aspect-ratio: 2/2.9;
  object-fit: cover;
  object-position: center 10%;
  margin-bottom: 14px;
  box-shadow: 0 14px 40px -18px rgba(0, 0, 0, .55);
}
@keyframes vscroll {
  to { transform: translateY(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .v-col { animation: none !important; }
}

/* ---------- testimonials ---------- */
.testi-section {
  background:
    radial-gradient(1000px 480px at 15% 0%, rgba(236, 220, 207, .5), transparent),
    var(--paper);
}
.testi-carousel { max-width: 820px; margin-inline: auto; position: relative; }
.testi-track { position: relative; min-height: 300px; }
.testi-card {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  pointer-events: none;
  text-align: center;
  padding: 2.5rem 1rem 1rem;
}
.testi-card.is-active { opacity: 1; transform: none; pointer-events: auto; position: relative; }
.quote-mark {
  font-family: var(--font-latin);
  font-size: 5.5rem;
  line-height: .4;
  color: var(--gold-soft);
  display: block;
  margin-bottom: 1.4rem;
}
.testi-card p {
  font-family: var(--font-display);
  font-size: clamp(1.12rem, 2.1vw, 1.42rem);
  line-height: 1.75;
  color: var(--ink-soft);
  max-width: 60ch;
  margin-inline: auto;
}
.testi-card footer {
  margin-top: 1.6rem;
  font-weight: 600;
  letter-spacing: .12em;
  color: var(--gold-deep);
  font-size: .95rem;
}
.testi-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  margin-top: 2.2rem;
}
.testi-nav button {
  background: none;
  border: 1px solid var(--gold-soft);
  color: var(--gold-deep);
  width: 44px; height: 44px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all .3s;
}
.testi-nav button:hover { background: var(--gold); color: var(--white); border-color: var(--gold); }
.t-dots { display: flex; gap: .6rem; }
.t-dots button {
  width: 9px; height: 9px;
  padding: 0;
  border-radius: 50%;
  border: 0;
  background: var(--gold-soft);
  opacity: .45;
  cursor: pointer;
  transition: all .3s;
}
.t-dots button.is-active { opacity: 1; transform: scale(1.35); background: var(--gold-deep); }

/* ---------- cta section + form ---------- */
.cta-section {
  background:
    radial-gradient(900px 500px at 90% 10%, rgba(216, 196, 154, .28), transparent),
    var(--cream);
}
.lead-form {
  margin-top: 2rem;
  background: var(--white);
  padding: clamp(1.5rem, 3.5vw, 2.5rem);
  box-shadow: var(--shadow-soft);
  border-top: 3px solid var(--gold);
}
.form-title { margin-bottom: 1.4rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { position: relative; margin-bottom: 1.1rem; }
.field input, .field textarea {
  width: 100%;
  font: inherit;
  color: var(--ink);
  padding: 1.15em .9em .45em;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  transition: border-color .3s, box-shadow .3s;
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(168, 131, 63, .15);
}
.field label {
  position: absolute;
  top: .85em; right: .95em;
  color: #9a8d7a;
  font-size: 1rem;
  pointer-events: none;
  transition: all .22s var(--ease);
}
.field input:focus + label,
.field input:not(:placeholder-shown) + label,
.field textarea:focus + label,
.field textarea:not(:placeholder-shown) + label {
  top: .28em;
  font-size: .72rem;
  color: var(--gold-deep);
  letter-spacing: .05em;
}
.hp-field { position: absolute; right: -9999px; opacity: 0; height: 0; }
.consent {
  display: flex;
  align-items: flex-start;
  gap: .6em;
  font-size: .92rem;
  margin: .4rem 0 1.3rem;
  color: var(--ink-soft);
}
.consent input { margin-top: .35em; accent-color: var(--gold); width: 1.05em; height: 1.05em; }
.form-status { margin-top: .9rem; font-weight: 600; min-height: 1.5em; }
.form-status.ok { color: #35693a; }
.form-status.err { color: #a33; }

/* ---------- page hero (inner pages) ---------- */
.page-hero {
  padding: clamp(8.5rem, 16vw, 12rem) 0 clamp(2.4rem, 5vw, 4rem);
  background:
    radial-gradient(1100px 420px at 80% -30%, rgba(216, 196, 154, .35), transparent),
    var(--cream);
  text-align: center;
}
.page-hero .kicker::after {
  content: '';
  width: 42px; height: 1px;
  background: var(--gold);
  display: inline-block;
}
.page-intro {
  max-width: 62ch;
  margin: 1.2rem auto 0;
  color: var(--ink-soft);
  font-size: 1.12rem;
}

/* ---------- quote band ---------- */
.quote-band { background: var(--paper); padding-block: clamp(2rem, 5vw, 3.5rem); }
.big-quote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.4vw, 2.4rem);
  text-align: center;
  color: var(--gold-deep);
  line-height: 1.5;
  max-width: 26ch;
  margin-inline: auto;
}
.big-quote span { color: var(--gold-soft); font-family: var(--font-latin); }

/* ---------- masonry galleries ---------- */
.masonry { columns: 3; column-gap: 16px; }
.m-item {
  break-inside: avoid;
  margin-bottom: 16px;
  overflow: hidden;
  position: relative;
  background: var(--cream-deep);
}
.m-item img {
  width: 100%;
  transition: transform .9s var(--ease);
}
.m-item:hover img { transform: scale(1.045); }
.m-item figcaption {
  padding: .5em .8em;
  font-size: .9rem;
  color: var(--ink-soft);
  background: var(--white);
}
.masonry-mini {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.masonry-mini img {
  width: 100%;
  aspect-ratio: 3/3.7;
  object-fit: cover;
  object-position: center 15%;
  box-shadow: var(--shadow-soft);
}
.masonry-mini .img-open:nth-child(even) { transform: translateY(1.6rem); }

.insta-cta { margin-top: 2.6rem; }

/* ---------- tabs ---------- */
.tabs {
  display: flex;
  justify-content: center;
  gap: .4rem;
  margin-bottom: 2.6rem;
  border-bottom: 1px solid var(--line);
  width: fit-content;
  margin-inline: auto;
}
.tab {
  background: none;
  border: 0;
  font: inherit;
  font-family: var(--font-display);
  font-size: 1.3rem;
  padding: .6em 1.6em;
  color: var(--ink-soft);
  cursor: pointer;
  position: relative;
}
.tab::after {
  content: '';
  position: absolute;
  bottom: -1px; right: 15%;
  width: 70%; height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform .35s var(--ease);
}
.tab.is-active { color: var(--ink); }
.tab.is-active::after { transform: scaleX(1); }

/* ---------- cta band ---------- */
.cta-band {
  background:
    radial-gradient(800px 380px at 50% 130%, rgba(168, 131, 63, .3), transparent),
    linear-gradient(160deg, #241d15, #322818);
  color: #f2ead9;
  text-align: center;
}
.cta-band h2 { color: var(--white); margin-bottom: .6rem; }
.cta-band p { margin-bottom: 1.8rem; color: #ddd2bd; }
.cta-band .btn { margin-top: 1rem; }

/* ---------- contact page ---------- */
.or-line {
  display: flex;
  align-items: center;
  gap: 1em;
  margin: 2rem 0 1.2rem;
  color: var(--ink-soft);
}
.or-line::before, .or-line::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--line);
}
.contact-buttons { display: flex; flex-wrap: wrap; gap: .8rem; }

/* ---------- legal ---------- */
.legal-prose h2 { font-size: 1.7rem; margin-bottom: 1.2rem; }
.legal-prose h3 {
  font-size: 1.25rem;
  margin: 1.8em 0 .5em;
  color: var(--gold-deep);
}
.legal-prose p, .legal-prose li { color: var(--ink-soft); margin-bottom: .7em; }
.legal-prose ul { padding-right: 1.4em; margin-bottom: 1em; }

/* ---------- footer ---------- */
.site-footer {
  background: linear-gradient(180deg, #241d15, #1b1610);
  color: #cfc4ae;
  margin-top: 0;
}
.footer-inner {
  width: min(1180px, 92vw);
  margin-inline: auto;
  padding: clamp(3rem, 7vw, 5rem) 0 2.5rem;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 2.5rem;
}
.footer-logo-img {
  height: 96px;
  width: auto;
  filter: invert(1);
  mix-blend-mode: screen;
}
.footer-tag { margin-top: .8rem; font-size: .95rem; }
.socials { display: flex; gap: 1rem; margin-top: 1.4rem; }
.socials a {
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  border: 1px solid rgba(216, 196, 154, .35);
  border-radius: 50%;
  color: var(--gold-soft);
  transition: all .3s;
}
.socials a:hover { background: var(--gold); color: var(--white); border-color: var(--gold); transform: translateY(-3px); }
.site-footer h3 {
  color: var(--gold-soft);
  font-size: 1rem;
  letter-spacing: .18em;
  margin-bottom: 1.1rem;
  font-family: var(--font-body);
  font-weight: 600;
}
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: .55em; }
.site-footer a { color: #cfc4ae; transition: color .3s; }
.site-footer a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(216, 196, 154, .18);
  padding: 1.3rem 0;
  text-align: center;
  font-size: .88rem;
  color: #948a76;
}

/* ---------- floating whatsapp ---------- */
.float-wa {
  position: fixed;
  bottom: 22px;
  left: 22px;
  z-index: 90;
  width: 56px; height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 12px 30px -8px rgba(37, 211, 102, .55);
  transition: transform .3s var(--ease);
}
.float-wa:hover { transform: scale(1.1); color: #fff; }

.float-ig {
  position: fixed;
  bottom: 88px;
  left: 22px;
  z-index: 90;
  width: 56px; height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 110%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  color: #fff;
  box-shadow: 0 12px 30px -8px rgba(214, 36, 159, .5);
  transition: transform .3s var(--ease);
}
.float-ig:hover { transform: scale(1.1); color: #fff; }

/* ---------- lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(20, 15, 9, .93);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .35s;
}
.lightbox[hidden] { display: none; }
.lightbox.open { opacity: 1; }
.lightbox figure {
  max-width: 92vw;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .8rem;
}
.lightbox img {
  max-width: 92vw;
  max-height: 82vh;
  object-fit: contain;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .6);
}
.lightbox figcaption { color: var(--gold-soft); font-size: 1rem; min-height: 1.4em; }
.lightbox button {
  position: absolute;
  background: none;
  border: 0;
  color: #f2ead9;
  font-size: 2.6rem;
  cursor: pointer;
  padding: .3em .5em;
  line-height: 1;
  transition: color .3s, transform .3s;
  z-index: 2;
}
.lightbox button:hover { color: var(--gold-soft); }
.lb-close { top: 12px; right: 18px; }
.lb-prev { right: 8px; top: 50%; transform: translateY(-50%); }
.lb-next { left: 8px; top: 50%; transform: translateY(-50%); }

/* ---------- reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .9s var(--ease) var(--d, 0s), transform .9s var(--ease) var(--d, 0s);
}
.reveal.in { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
@media (max-width: 1024px) {
  .editorial-grid { grid-auto-rows: 110px; }
  .masonry { columns: 2; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
  body { font-size: 1.02rem; }

  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed;
    inset: 0;
    background: var(--paper);
    display: grid;
    place-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .4s var(--ease);
    z-index: 120;
  }
  body.nav-open .main-nav { opacity: 1; pointer-events: auto; }
  body.nav-open { overflow: hidden; }
  .main-nav ul { flex-direction: column; gap: 1.6rem; text-align: center; }
  .main-nav a:not(.btn) { font-family: var(--font-display); font-size: 1.7rem; color: var(--ink) !important; }
  .nav-cta { margin-top: 1rem; }

  .split, .split-rev { grid-template-columns: 1fr; gap: 2.6rem; }
  .split-rev .split-text { order: 1; }
  .split-rev .split-media { order: 2; }
  .frame-gold::after { inset: .9rem -.9rem -.9rem .9rem; }

  .hero-media img { object-position: 58% 15%; }
  .hero-content { padding-top: 14vh; }
  .hero-ctas .btn { flex: 1 1 100%; }

  .process-grid { grid-template-columns: 1fr; gap: 2.6rem; max-width: 400px; margin-inline: auto; }
  .process-grid::before {
    top: 4%; right: 2.15rem;
    width: 1px; height: 92%;
    background: linear-gradient(to bottom, transparent, var(--gold-soft) 12%, var(--gold-soft) 88%, transparent);
  }
  .process-step { display: grid; grid-template-columns: 4.4rem 1fr; gap: 1.2rem; text-align: right; align-items: start; }
  .process-step .step-num { margin-bottom: 0; }
  .process-step h3 { grid-column: 2; margin-top: .4rem; }
  .process-step p { grid-column: 2; }
  .process-step h3 + p { margin-top: .4rem; }

  .editorial-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .ed-item:nth-child(n) { grid-column: span 1; grid-row: span 2; }
  .ed-item:nth-child(1), .ed-item:nth-child(6) { grid-column: span 2; grid-row: span 2; }

  .form-row { grid-template-columns: 1fr; gap: 0; }
  .marquee img { height: 140px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .float-wa { bottom: 16px; left: 16px; width: 52px; height: 52px; }
  .float-ig { bottom: 76px; left: 16px; width: 52px; height: 52px; }
  .masonry-mini .img-open:nth-child(even) { transform: translateY(.9rem); }
}

@media (max-width: 480px) {
  .masonry { columns: 1; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .socials { justify-content: center; }
  .brand-latin { font-size: 1.55rem; }
  .testi-track { min-height: 380px; }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-media img { animation: none; }
  .marquee-track { animation: none; flex-wrap: wrap; }
  .hero-scroll span { animation: none; }
  * { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

/* ---------- accessibility widget body-classes ---------- */
body.a11y-grayscale { filter: grayscale(1); }
body.a11y-contrast { filter: contrast(1.35); }
body.a11y-invert { filter: invert(1) hue-rotate(180deg); }
body.a11y-invert img, body.a11y-invert video { filter: invert(1) hue-rotate(180deg); }
body.a11y-links a { text-decoration: underline !important; background: #ffe98a !important; color: #1a1200 !important; }
body.a11y-headings h1, body.a11y-headings h2, body.a11y-headings h3, body.a11y-headings h4 {
  background: #d9ecff !important; color: #06233f !important; padding: .1em .2em;
}
body.a11y-readable, body.a11y-readable h1, body.a11y-readable h2, body.a11y-readable h3,
body.a11y-readable h4, body.a11y-readable p, body.a11y-readable a, body.a11y-readable li,
body.a11y-readable button, body.a11y-readable input, body.a11y-readable textarea {
  font-family: Arial, 'Segoe UI', sans-serif !important;
  letter-spacing: 0 !important;
}
body.a11y-noanim *, body.a11y-noanim *::before, body.a11y-noanim *::after {
  animation: none !important;
  transition: none !important;
}
body.a11y-noanim .reveal { opacity: 1 !important; transform: none !important; }
body.a11y-bigcursor, body.a11y-bigcursor * {
  cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 24 24'><path fill='black' stroke='white' stroke-width='1.2' d='M4 2l16 11.5-6.6 1.3L17 21l-3 1.4-3.5-6.4L5.5 20z'/></svg>") 4 2, auto !important;
}
