/* ============================================================
   ATELIER MODELS · v1.0 styles
   Palette: deep black on rich gold
   Type:    Fraunces (display) + Manrope (body)
   ============================================================ */

:root {
  --cream:        #09080A;
  --cream-deep:   #100F0C;
  --terracotta:   #C49020;
  --terracotta-d: #A47618;
  --terracotta-l: rgba(196, 144, 32, 0.14);
  --ink:          #F0EDE6;
  --ink-soft:     #B8AE9C;
  --ink-faint:    #6E6558;
  --border:       rgba(196, 144, 32, 0.14);
  --border-soft:  rgba(196, 144, 32, 0.09);
  --gold:         #E2BC50;
  --gold-dim:     rgba(226, 188, 80, 0.50);
  --gold-glow:    rgba(226, 188, 80, 0.16);

  --serif:        'Fraunces', Georgia, serif;
  --sans:         'Manrope', -apple-system, sans-serif;

  --pad-x:        clamp(1.25rem, 4vw, 3rem);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.35;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 240 240' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.722 0 0 0 0 0.361 0 0 0 0 0.180 0 0 0 0.12 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.container { max-width: 1280px; margin: 0 auto; padding-left: var(--pad-x); padding-right: var(--pad-x); }
.container-narrow { max-width: 920px; margin: 0 auto; padding-left: var(--pad-x); padding-right: var(--pad-x); }

/* ============================================================ */
/* TOPBAR                                                       */
/* ============================================================ */
.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(16, 17, 21, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.1rem;
  padding-bottom: 1.1rem;
  gap: 1.5rem;
}
.brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
  flex-shrink: 0;
  gap: 4px;
}
.brand-top {
  font-family: var(--sans);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--terracotta);
}
.brand-main {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
}
.nav {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
  padding: 4px 0;
}
.nav a:hover { color: var(--terracotta); }
.nav a.active { color: var(--ink); }
.nav a.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--terracotta);
}
.nav-right { display: flex; align-items: center; gap: 1rem; }
.lang-toggle { display: flex; gap: 2px; }
.lang-toggle button {
  padding: 5px 10px;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--ink-soft);
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.15s;
}
.lang-toggle button:hover { color: var(--terracotta); }
.lang-toggle button.active { background: var(--terracotta); color: #fff; border-color: var(--terracotta); }

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 1.4rem;
  color: var(--ink);
}

/* ============================================================ */
/* HERO (compartido)                                            */
/* ============================================================ */
.hero {
  position: relative;
  padding: clamp(4rem, 10vw, 7rem) 0 clamp(3rem, 7vw, 5rem);
  text-align: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, var(--terracotta-l) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}
.hero > * { position: relative; z-index: 2; }
/* Hero con foto de fondo */
.hero--photo {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.hero--photo::before {
  background: rgba(6, 5, 4, 0.64);
}
.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  color: var(--terracotta);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  position: relative;
}
.eyebrow::before, .eyebrow::after {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--terracotta);
  vertical-align: middle;
  margin: 0 12px;
  opacity: 0.6;
}
.hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.2rem, 5.5vw, 3.85rem);
  line-height: 1.12;
  letter-spacing: -0.015em;
  max-width: 18ch;
  margin: 0 auto 1.4rem;
  color: var(--ink);
}
.hero h1 em {
  font-style: italic;
  font-weight: 300;
  color: var(--terracotta);
}
.hero p {
  font-size: clamp(0.95rem, 1.6vw, 1.05rem);
  color: var(--ink-soft);
  max-width: 50ch;
  margin: 0 auto;
  line-height: 1.6;
}
.hero-rule {
  width: 44px;
  height: 1px;
  background: var(--terracotta);
  margin: 2.2rem auto 0;
  opacity: 0.6;
}

/* ============================================================ */
/* HERO BRAND — home "Colombian Seduction" two-column layout   */
/* ============================================================ */
.hero--brand {
  padding: clamp(3rem, 8vw, 5rem) 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  text-align: center;
}
.hero--brand::before { display: none; }

.hero--image {
  padding: 0;
  line-height: 0;
}
.hero--image::before { display: none; }
.hero-img {
  display: block;
  width: 100%;
  height: auto;
}

/* Content panel (centered) */
.hero-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 var(--pad-x);
}

/* Decorative ring */
.hero-ring {
  position: relative;
  width: min(460px, 86vw);
  height: min(460px, 86vw);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1.5px solid var(--gold-dim);
  box-shadow:
    0 0 30px var(--gold-glow),
    0 0 80px rgba(201, 168, 76, 0.04),
    inset 0 0 50px rgba(201, 168, 76, 0.03);
}
/* Bright flare on the right arc */
.hero-ring::after {
  content: '';
  position: absolute;
  right: -5px;
  top: 22%;
  height: 56%;
  width: 10px;
  border-radius: 50%;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 235, 150, 0.95) 0%,
    rgba(201, 168, 76, 0.55) 30%,
    transparent 65%
  );
  filter: blur(2px);
  pointer-events: none;
}

/* Inner content */
.hero-ring-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(0.45rem, 1.1vw, 0.65rem);
  padding: 2rem;
  max-width: 80%;
  width: 100%;
}

/* Figure icon */
.hero-figure {
  color: var(--gold);
  width: clamp(36px, 5vw, 48px);
  height: clamp(46px, 6.5vw, 62px);
  opacity: 0.88;
  margin-bottom: 0.15rem;
}

/* Brand title */
.hero--brand .hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  margin: 0;
  font-family: var(--serif);
  line-height: 1;
  font-size: inherit;
  letter-spacing: normal;
  max-width: none;
  color: var(--gold);
}
.hero-colombian {
  display: block;
  font-size: clamp(1.6rem, 4.2vw, 2.7rem);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
}
.hero-seduction {
  display: block;
  font-size: clamp(0.78rem, 1.7vw, 1.1rem);
  font-weight: 300;
  letter-spacing: 0.55em;
  text-transform: uppercase;
  color: var(--gold);
  padding-left: 0.55em;
}

/* Ornament SVG */
.hero-orn {
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-orn svg {
  width: clamp(64px, 10vw, 90px);
  height: 16px;
  display: block;
}

/* Tagline (hero_eyebrow field) */
.hero--brand .hero-tagline {
  font-size: clamp(0.52rem, 1vw, 0.63rem);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0;
  max-width: none;
  line-height: 1;
}

/* Subtitle (hero_sub field) */
.hero--brand .hero-sub {
  font-size: clamp(0.68rem, 1.3vw, 0.8rem);
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(194, 197, 204, 0.72);
  text-align: center;
  line-height: 1.75;
  margin: 0;
  max-width: none;
}

/* Badge */
.hero-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.2rem;
}
.hero-badge svg {
  width: clamp(22px, 3vw, 28px);
  height: clamp(26px, 3.5vw, 32px);
  color: var(--gold);
  opacity: 0.8;
}
.hero-badge-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin: 0;
  font-size: 0;
}
.hero-badge-text span {
  display: block;
  font-size: clamp(0.48rem, 0.85vw, 0.58rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-faint);
  text-align: center;
  line-height: 1.8;
}

/* Responsive */
@media (max-width: 700px) {
  .hero-ring {
    width: min(300px, 88vw);
    height: min(300px, 88vw);
  }
  .hero-ring-inner {
    gap: 0.4rem;
    padding: 1.5rem;
    max-width: 85%;
  }
}

/* ============================================================ */
/* FILTERS                                                      */
/* ============================================================ */
.filters {
  background: var(--cream-deep);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.1rem 0;
  position: sticky;
  top: 73px;
  z-index: 50;
  backdrop-filter: blur(12px);
}
.filter-row {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  align-items: center;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--ink-soft);
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.15s;
  white-space: nowrap;
}
.chip:hover { border-color: var(--terracotta); color: var(--ink); }
.chip.active {
  background: var(--terracotta);
  color: #fff;
  border-color: var(--terracotta);
}
.chip-search {
  flex: 0 1 220px;
  background: var(--cream);
}
.chip-search input {
  border: none;
  background: transparent;
  font-family: var(--sans);
  font-size: 0.82rem;
  color: var(--ink);
  outline: none;
  width: 100%;
}
.chip-search input::placeholder { color: var(--ink-faint); }

/* chip dropdown */
.chip-wrap {
  position: relative;
  display: inline-flex;
}
.chip-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 160px;
  background: var(--cream-deep);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 6px;
  z-index: 200;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}
.chip-wrap.open .chip-menu { display: block; }
.chip-menu a {
  display: block;
  padding: 8px 12px;
  font-size: 0.82rem;
  color: var(--ink-soft);
  text-decoration: none;
  border-radius: 4px;
  white-space: nowrap;
  transition: background 0.12s, color 0.12s;
}
.chip-menu a:hover { background: var(--terracotta-l); color: var(--ink); }
.chip-clear { opacity: 0.65; }
.chip-clear:hover { opacity: 1; }
.no-results {
  color: var(--ink-soft);
  padding: 2rem 0;
  grid-column: 1 / -1;
}
.no-results a { color: var(--terracotta); text-decoration: none; }
.no-results a:hover { text-decoration: underline; }

.resbar {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 2rem 0 1.5rem;
  font-size: 0.85rem;
  color: var(--ink-soft);
}
.resbar .count strong {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--ink);
}
.sort {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--ink-soft);
  cursor: pointer;
}
.sort:hover { color: var(--terracotta); }

/* ============================================================ */
/* CATALOG GRID                                                 */
/* ============================================================ */
.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(0.8rem, 1.8vw, 1.5rem) clamp(0.8rem, 1.8vw, 1.4rem);
  padding-bottom: 4rem;
}
.card {
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  opacity: 0;
  transform: translateY(20px);
  animation: cardIn 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}
@keyframes cardIn { to { opacity: 1; transform: none; } }
.card:nth-child(1)  { animation-delay: 0.05s; }
.card:nth-child(2)  { animation-delay: 0.12s; }
.card:nth-child(3)  { animation-delay: 0.19s; }
.card:nth-child(4)  { animation-delay: 0.26s; }
.card:nth-child(5)  { animation-delay: 0.33s; }
.card:nth-child(6)  { animation-delay: 0.40s; }
.card:nth-child(7)  { animation-delay: 0.47s; }
.card:nth-child(8)  { animation-delay: 0.54s; }
.card:nth-child(9)  { animation-delay: 0.61s; }
.card:nth-child(10) { animation-delay: 0.68s; }
.card:nth-child(11) { animation-delay: 0.75s; }
.card:nth-child(12) { animation-delay: 0.82s; }

.card .photo {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: 4px;
  overflow: hidden;
  background: var(--terracotta-l);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  color: var(--terracotta);
  letter-spacing: 0.05em;
  transition: transform 0.5s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.card:hover .photo { transform: scale(1.015); }
.card .photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(42, 38, 32, 0.35) 0%, transparent 45%);
  opacity: 0;
  transition: opacity 0.3s;
}
.card:hover .photo::after { opacity: 1; }
.card .badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  padding: 3px 10px;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--cream);
  background: var(--terracotta);
  border-radius: 999px;
  text-transform: uppercase;
}
.card .info { padding: 0.85rem 0 0; }
.card .name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.05rem;
  line-height: 1.2;
  margin-bottom: 4px;
  letter-spacing: -0.005em;
}
.card .meta {
  font-size: 0.78rem;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}
.card .meta span + span::before { content: ' · '; color: var(--ink-faint); }

/* ============================================================ */
/* STATS STRIPE                                                 */
/* ============================================================ */
.stats {
  background: var(--cream-deep);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  text-align: center;
}
.stat .num {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  line-height: 1;
  color: var(--terracotta);
  letter-spacing: -0.01em;
}
.stat .lab {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  color: var(--ink-soft);
  margin-top: 0.7rem;
  text-transform: uppercase;
}

/* ============================================================ */
/* PROFILE PAGE                                                 */
/* ============================================================ */
.crumb {
  padding: 1.2rem 0;
  font-size: 0.78rem;
  color: var(--ink-faint);
  letter-spacing: 0.04em;
  border-bottom: 1px solid var(--border);
}
.crumb a { color: var(--ink-soft); text-decoration: none; }
.crumb a:hover { color: var(--terracotta); }
.crumb .sep { margin: 0 8px; opacity: 0.5; }

.profile {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  align-items: start;
}
.profile-photo {
  aspect-ratio: 3 / 4;
  border-radius: 4px;
  background: var(--terracotta-l);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 5rem);
  color: var(--terracotta);
  letter-spacing: 0.05em;
  position: sticky;
  top: 100px;
}
.profile-info h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin-bottom: 0.5rem;
}
.profile-subtitle {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--terracotta);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.profile-tags { display: flex; gap: 0.4rem; flex-wrap: wrap; margin-bottom: 2rem; }
.profile-tag {
  padding: 5px 12px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  background: var(--cream-deep);
  color: var(--ink-soft);
  border-radius: 999px;
  text-transform: uppercase;
}
.profile-bio {
  font-size: 0.98rem;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 2.2rem;
  max-width: 50ch;
}
.stats-table {
  width: 100%;
  font-size: 0.88rem;
  margin-bottom: 2rem;
  border-collapse: collapse;
}
.stats-table tr { border-bottom: 1px solid var(--border-soft); }
.stats-table tr:first-child { border-top: 1px solid var(--border-soft); }
.stats-table td { padding: 12px 0; }
.stats-table td:first-child {
  color: var(--ink-faint);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.stats-table td:last-child {
  text-align: right;
  font-weight: 500;
  color: var(--ink);
}

.btn-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 4px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--terracotta);
  color: #fff;
  border-color: var(--terracotta);
}
.btn-primary:hover { background: var(--terracotta-d); border-color: var(--terracotta-d); }
.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-secondary:hover { background: var(--ink); color: var(--cream); }

.gallery {
  padding: clamp(2rem, 4vw, 3.5rem) 0;
  border-top: 1px solid var(--border);
}
.gallery-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  margin-bottom: 0.4rem;
}
.gallery-sub {
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-bottom: 2rem;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
}
.gallery-thumb {
  aspect-ratio: 3 / 4;
  background: var(--terracotta-l);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  color: var(--terracotta);
  font-size: 1.3rem;
  cursor: pointer;
  transition: transform 0.3s;
}
.gallery-thumb:nth-child(even) { background: var(--cream-deep); color: var(--ink-faint); }
.gallery-thumb:hover { transform: scale(1.02); }

/* ============================================================ */
/* FORMS (booking, apply, contact)                              */
/* ============================================================ */
.form-section {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: var(--cream-deep);
  border-top: 1px solid var(--border);
}
.form-section.on-cream { background: var(--cream); }

.form-head { text-align: center; margin-bottom: 2.5rem; }
.form-head h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  line-height: 1.15;
  margin-bottom: 0.5rem;
}
.form-head p {
  color: var(--ink-soft);
  max-width: 50ch;
  margin: 0 auto;
}

.form {
  max-width: 720px;
  margin: 0 auto;
  background: var(--cream);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 6px;
  border: 1px solid var(--border);
}
.form-section.on-cream .form { background: var(--cream-deep); }

.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.field { display: flex; flex-direction: column; }
.field-full { grid-column: 1 / -1; }
.field label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--ink-faint);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.field label .req { color: var(--terracotta); margin-left: 2px; }
.field input,
.field select,
.field textarea {
  font-family: var(--sans);
  font-size: 0.92rem;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
  width: 100%;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px var(--terracotta-l);
}
.field textarea { resize: vertical; min-height: 100px; font-family: var(--sans); }
.field .hint { font-size: 0.72rem; color: var(--ink-faint); margin-top: 6px; }

.consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 1.3rem 0 1.5rem;
  font-size: 0.8rem;
  color: var(--ink-soft);
  line-height: 1.5;
}
.consent input { margin-top: 3px; accent-color: var(--terracotta); flex-shrink: 0; }
.consent a { color: var(--terracotta); }

.submit-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.submit-note { font-size: 0.78rem; color: var(--ink-faint); }

/* ============================================================ */
/* ABOUT PAGE                                                   */
/* ============================================================ */
.section {
  padding: clamp(3rem, 6vw, 5rem) 0;
}
.section-deep { background: var(--cream-deep); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-dark { background: var(--ink); color: var(--cream); }
.section-dark .section-title, .section-dark h2, .section-dark h3 { color: var(--cream); }
.section-dark .eyebrow { color: var(--terracotta); }
.section-dark p { color: rgba(248, 244, 238, 0.75); }

.section-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 1.2rem;
  max-width: 22ch;
}
.section-title em { font-style: italic; color: var(--terracotta); font-weight: 300; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.two-col .lead {
  font-family: var(--serif);
  font-size: 1.15rem;
  line-height: 1.5;
  color: var(--ink);
  font-style: italic;
  font-weight: 300;
}
.two-col p { color: var(--ink-soft); margin-bottom: 1rem; font-size: 0.98rem; line-height: 1.7; }

.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.value {
  padding: 1.8rem;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 6px;
}
.value-num {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--terracotta);
  font-style: italic;
  display: block;
  margin-bottom: 0.5rem;
}
.value h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
}
.value p { font-size: 0.88rem; color: var(--ink-soft); line-height: 1.6; }

.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 2.5rem;
}
.step {
  padding: 1.8rem 1.5rem;
  border-left: 1px solid var(--border);
  position: relative;
}
.step:first-child { border-left: none; padding-left: 0; }
.step-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 2.5rem;
  color: var(--terracotta);
  line-height: 1;
  display: block;
  margin-bottom: 0.8rem;
  opacity: 0.5;
}
.step h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}
.step p { font-size: 0.85rem; color: var(--ink-soft); line-height: 1.6; }

/* ============================================================ */
/* CONTACT PAGE                                                 */
/* ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(2rem, 5vw, 4rem);
}
.contact-info h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.contact-info p { color: var(--ink-soft); margin-bottom: 2rem; }
.contact-block { margin-bottom: 1.8rem; }
.contact-block h4 {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--terracotta);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.contact-block p, .contact-block a {
  font-size: 0.95rem;
  color: var(--ink);
  text-decoration: none;
  display: block;
  line-height: 1.6;
}
.contact-block a:hover { color: var(--terracotta); }

/* ============================================================ */
/* APPLY PAGE EXTRAS                                            */
/* ============================================================ */
.requirements {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 2.5rem 0;
}
.req-card {
  padding: 1.5rem;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 6px;
  text-align: center;
}
.req-card .icon {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--terracotta);
  display: block;
  margin-bottom: 0.5rem;
  line-height: 1;
}
.req-card h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}
.req-card p { font-size: 0.85rem; color: var(--ink-soft); line-height: 1.55; }

.upload-zone {
  border: 1px dashed var(--border);
  border-radius: 6px;
  padding: 2rem;
  text-align: center;
  background: var(--cream);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.upload-zone:hover { border-color: var(--terracotta); background: var(--terracotta-l); }
.upload-zone .icon { font-family: var(--serif); font-size: 2rem; color: var(--terracotta); display: block; margin-bottom: 0.6rem; }
.upload-zone p { font-size: 0.88rem; color: var(--ink-soft); margin-bottom: 0.3rem; }
.upload-zone .hint { font-size: 0.74rem; color: var(--ink-faint); }
.upload-zone input { display: none; }

/* ============================================================ */
/* FOOTER                                                       */
/* ============================================================ */
.footer {
  padding: 3rem 0 2rem;
  background: var(--cream-deep);
  color: var(--ink);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.footer .brand-main { color: var(--gold); }
.footer .brand-top  { color: var(--terracotta); }
.footer-col h4 {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.55rem; }
.footer-col a {
  font-size: 0.85rem;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-col a:hover { color: var(--gold); }
.footer-tag {
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-top: 1rem;
  max-width: 30ch;
  line-height: 1.6;
}
.footer-legal {
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.75rem;
  color: var(--ink-faint);
}

/* ============================================================ */
/* RESPONSIVE                                                   */
/* ============================================================ */
@media (max-width: 1024px) {
  .grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .values { grid-template-columns: 1fr 1fr; }
  .process { grid-template-columns: 1fr 1fr; }
  .requirements { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .nav, .lang-toggle { display: none; }
  .menu-toggle { display: block; }
  .filters { top: 64px; }
  .grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { gap: 1.5rem; }
  .resbar { flex-direction: column; gap: 0.5rem; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-legal { flex-direction: column; }
  .eyebrow::before, .eyebrow::after { width: 18px; margin: 0 8px; }
  .profile { grid-template-columns: 1fr; gap: 2rem; }
  .profile-photo { position: static; }
  .two-col { grid-template-columns: 1fr; }
  .values { grid-template-columns: 1fr; }
  .process { grid-template-columns: 1fr; }
  .step { border-left: none; border-top: 1px solid var(--border); padding-left: 0; padding-top: 1.5rem; }
  .step:first-child { border-top: none; padding-top: 0; }
  .frow { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .btn-row { grid-template-columns: 1fr; }
}

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
*:focus-visible { outline: 2px solid var(--terracotta); outline-offset: 3px; border-radius: 2px; }
@media (prefers-reduced-motion: reduce) {
  .card { animation: none; opacity: 1; transform: none; }
  * { transition: none !important; }
}

/* ============================================================ */
/* AGE GATE                                                     */
/* ============================================================ */
.agegate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(9, 8, 10, 0.98);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 2rem 1rem;
  overflow-y: auto;
}
.agegate.agegate--hidden { display: none; }

.agegate-card {
  background: var(--cream-deep);
  border: 1px solid rgba(196, 144, 32, 0.35);
  border-radius: 6px;
  padding: clamp(2rem, 5vw, 3rem);
  max-width: 680px;
  width: 100%;
  margin: auto;
  position: relative;
}
.agegate-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 6px;
  box-shadow: 0 0 60px rgba(196, 144, 32, 0.08);
  pointer-events: none;
}

.agegate-logo {
  text-align: center;
  margin-bottom: 1.75rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--border);
}

.agegate-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  color: var(--gold);
  text-align: center;
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
  line-height: 1.3;
}
.agegate-subtitle {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-faint);
  text-align: center;
  margin-bottom: 1.75rem;
}

.agegate-body {
  font-size: 0.84rem;
  color: var(--ink-soft);
  line-height: 1.72;
}
.agegate-body p { margin-bottom: 0.9rem; }
.agegate-body p:last-child { margin-bottom: 0; }
.agegate-body strong { color: var(--ink); font-weight: 600; }
.agegate-body .agegate-alert {
  color: var(--gold);
  font-weight: 600;
}
.agegate-list {
  list-style: none;
  margin: 0.75rem 0 0.9rem;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}
.agegate-list li {
  padding: 0.65rem 1rem;
  border-bottom: 1px solid var(--border-soft);
  font-size: 0.82rem;
  color: var(--ink-soft);
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}
.agegate-list li:last-child { border-bottom: none; }
.agegate-list li::before {
  content: '✓';
  color: var(--terracotta);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.05em;
}

.agegate-declaration {
  margin-top: 1.25rem;
  padding: 0.9rem 1rem;
  background: rgba(196, 144, 32, 0.07);
  border-left: 3px solid var(--terracotta);
  border-radius: 0 4px 4px 0;
  font-size: 0.78rem;
  color: var(--ink-soft);
  line-height: 1.6;
}
.agegate-declaration strong { color: var(--ink); text-transform: uppercase; letter-spacing: 0.04em; }

.agegate-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.agegate-actions .btn { font-size: 0.8rem; letter-spacing: 0.1em; padding: 13px 18px; }
.agegate-actions .btn-secondary { border-color: var(--ink-faint); color: var(--ink-faint); }
.agegate-actions .btn-secondary:hover { background: var(--ink-faint); color: var(--cream); }

@media (max-width: 480px) {
  .agegate-actions { grid-template-columns: 1fr; }
  .agegate-actions .btn-primary { order: -1; }
}

/* Language blocks inside age gate — JS toggles hidden attribute */
#age-gate .ag-en,
#age-gate .ag-es { display: inline; }
#age-gate .ag-en[hidden],
#age-gate .ag-es[hidden] { display: none !important; }
/* Body-level blocks are block-level, not inline */
#age-gate .agegate-body.ag-en,
#age-gate .agegate-body.ag-es { display: block; }
#age-gate .agegate-body.ag-en[hidden],
#age-gate .agegate-body.ag-es[hidden] { display: none !important; }
