/* ============================
   ROOT & RESET
   ============================ */
:root {
  --bg-light: #faf8f5;
  --bg-dark: #0e0b06;
  --text-on-light: #1a1209;
  --text-on-dark: #ede9e2;
  --text-muted: #7a6d5e;
  --accent: #bfa05a;
  --accent-light: #dcc99a;
  --accent-dim: rgba(191, 160, 90, 0.3);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-luxury: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --nav-h: 72px;
  --letter-wide: 0.22em;
}

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

html { scroll-behavior: auto; }

body {
  background: var(--bg-light);
  color: var(--text-on-light);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ============================
   LOADER
   ============================ */
#loader {
  position: fixed;
  inset: 0;
  background: #f5f0e8;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  z-index: 9999;
  clip-path: inset(0% 0% 0% 0%);
}

#loader.hidden {
  display: none;
}

/* Logo wrapper — stars sit beside the logo */
.loader-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  position: relative;
}

/* Logo image — natural colors, no filter */
.loader-logo {
  width: clamp(200px, 42vw, 320px);
  height: auto;
  display: block;
  opacity: 0;
  transform: translateY(12px) scale(0.97);
  animation: loaderLogoIn 1s cubic-bezier(0.22, 1, 0.36, 1) 0.15s forwards;
}

@keyframes loaderLogoIn {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Stars — appear last, after the logo */
.loader-star {
  font-size: 1.3rem;
  color: var(--accent);
  opacity: 0;
  display: block;
  line-height: 1;
}

.loader-star--left {
  animation: loaderStarShine 1.2s cubic-bezier(0.22, 1, 0.36, 1) 1.1s forwards;
}

.loader-star--right {
  animation: loaderStarShine 1.2s cubic-bezier(0.22, 1, 0.36, 1) 1.35s forwards;
}

@keyframes loaderStarShine {
  0% {
    opacity: 0;
    transform: scale(0.4) rotate(-20deg);
    filter: blur(3px);
  }
  55% {
    opacity: 1;
    transform: scale(1.35) rotate(8deg);
    filter: blur(0px) drop-shadow(0 0 6px var(--accent-light));
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
    filter: drop-shadow(0 0 3px var(--accent));
  }
}

/* Progress bar */
.loader-bar-wrap {
  width: 200px;
  height: 1px;
  background: rgba(0,0,0,0.1);
  overflow: hidden;
}

#loader-bar {
  height: 100%;
  width: 0%;
  background: var(--accent);
  transition: width 0.1s linear;
}

#loader-percent {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 400;
  color: rgba(60, 45, 25, 0.45);
  letter-spacing: 0.14em;
  margin-top: -16px;
}

/* ============================
   HEADER / NAV
   ============================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  z-index: 100;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

.site-header.scrolled {
  background: rgba(250,248,245,0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.08);
}

nav {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  transition: opacity 0.3s ease;
}

.nav-logo:hover { opacity: 0.75; }

.nav-logo-img {
  height: 34px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  transition: filter 0.4s ease;
}

.site-header.scrolled .nav-logo-img {
  filter: brightness(0);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(240,237,232,0.85);
  transition: color 0.3s ease;
}

.site-header.scrolled .nav-links a { color: var(--text-muted); }

.nav-links a:hover { color: var(--accent) !important; }

.nav-cta {
  padding: 10px 22px !important;
  border: 1px solid var(--accent) !important;
  border-radius: 2px;
  color: var(--accent) !important;
  transition: background 0.3s ease, color 0.3s ease !important;
}

.nav-cta:hover {
  background: var(--accent) !important;
  color: var(--bg-dark) !important;
}

/* ============================
   HERO STANDALONE
   ============================ */
.hero-standalone {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  background: var(--bg-dark);
  display: flex;
  align-items: center;
  overflow: hidden;
  z-index: 2;
  --hero-after-opacity: 1;
}

.hero-standalone::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(200, 169, 110, 0.08) 0%, transparent 70%);
  pointer-events: none;
  opacity: var(--hero-after-opacity);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: var(--nav-h);
}

.hero-heading {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 12rem);
  font-weight: 700;
  line-height: 0.92;
  color: var(--text-on-dark);
  margin: 16px 0 24px;
  letter-spacing: 0.01em;
}

.hero-heading .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(60px);
}

.accent-word { color: var(--accent); font-style: italic; }

.hero-tagline {
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(240,237,232,0.6);
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(20px);
}

.hero-cta {
  display: inline-block;
  padding: 14px 36px;
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 2px;
  opacity: 0;
  transform: translateY(20px);
  position: relative;
  overflow: hidden;
  transition: color 0.4s ease;
}

.hero-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent);
  transform: translateX(-101%);
  transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  z-index: -1;
}

.hero-cta:hover { color: var(--bg-dark); }
.hero-cta:hover::after { transform: translateX(0); }

.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(240,237,232,0.4);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeInUp 1s 2s ease forwards;
}

@keyframes fadeInUp {
  to { opacity: 1; transform: translate(-50%, 0); }
}

/* ============================
   CANVAS 1
   ============================ */
.canvas-wrap {
  position: fixed;
  inset: 0;
  z-index: 1;
}

canvas {
  display: block;
  width: 100%;
  height: 100%;
}

/* ============================
   CANVAS 2
   ============================ */
.canvas-wrap-2 {
  position: fixed;
  inset: 0;
  z-index: 2;
  opacity: 0;
  pointer-events: none;
  will-change: opacity;
}

/* ============================
   DARK OVERLAY
   ============================ */
#dark-overlay {
  position: fixed;
  inset: 0;
  background: var(--bg-dark);
  opacity: 0;
  pointer-events: none;
  z-index: 3;
  will-change: opacity;
}

/* ============================
   INGREDIENT REVEAL OVERLAY
   ============================ */
#ingredient-reveal {
  position: fixed;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  opacity: 0;
  will-change: opacity;
}

/* Each item spans full width; grid: [title left] [pile space] [para right] */
.ingr-item {
  position: absolute;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr 28vw 1fr;
  align-items: center;
  transform: translateY(-50%);
  will-change: opacity;
}

.ingr-item:nth-child(1) { top: 18%; }
.ingr-item:nth-child(2) { top: 37%; }
.ingr-item:nth-child(3) { top: 63%; }
.ingr-item:nth-child(4) { top: 83%; }

/* Title — grid col 1 (left of pile), right-aligned toward pile */
.ingr-title {
  font-family: 'Great Vibes', cursive;
  font-size: clamp(1.4rem, 2.8vw, 2.2rem);
  font-weight: 400;
  color: #3a2e28;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-align: right;
  padding-right: 3vw;
  opacity: 0;
  will-change: opacity;
}

/* Paragraph — grid col 3 (right of pile), slides in from right */
.ingr-para {
  grid-column: 3;
  font-family: var(--font-body);
  font-size: clamp(0.72rem, 1vw, 0.85rem);
  font-weight: 300;
  line-height: 1.75;
  color: rgba(80, 60, 45, 0.7);
  padding-left: 2vw;
  margin: 0;
  opacity: 0;
  will-change: opacity, transform;
}

/* ================================
   MARQUEE — REDESIGN
   ================================ */

.marquee-wrap {
  position: fixed;
  bottom: 8vh;
  left: 0;
  right: 0;
  z-index: 10;
  pointer-events: none;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.marquee-wrap.visible {
  opacity: 1;
  transform: translateY(0);
}

.marquee-rule {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--accent-dim) 15%,
    rgba(191,160,90,0.45) 50%,
    var(--accent-dim) 85%,
    transparent 100%
  );
  margin: 0 4vw;
}

.marquee-band {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 12%,
    #000 88%,
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 12%,
    #000 88%,
    transparent 100%
  );
}

.marquee-row { overflow: hidden; }

.marquee-text {
  display: block;
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: 9vw;
  font-weight: 700;
  font-style: normal;
  color: transparent;
  -webkit-text-stroke: 1px rgba(191,160,90,0.28);
  letter-spacing: 0.08em;
  will-change: transform;
  user-select: none;
  line-height: 1.15;
}

.marquee-text em {
  font-style: italic;
  color: var(--accent);
  -webkit-text-stroke: 0px;
  opacity: 0.88;
}

.msep {
  color: rgba(191,160,90,0.4);
  -webkit-text-stroke: 0px;
  font-style: normal;
  font-size: 0.7em;
  letter-spacing: 0;
}

@keyframes marquee-drift-left {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes marquee-drift-right {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

.marquee-inner {
  display: inline-block;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.marquee-row--top .marquee-inner {
  animation-name: marquee-drift-left;
  animation-duration: 38s;
}

.marquee-row--btm .marquee-inner {
  animation-name: marquee-drift-right;
  animation-duration: 42s;
}

@media (max-width: 768px) {
  .marquee-text {
    font-size: 14vw;
    letter-spacing: 0.04em;
  }
  .marquee-band {
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  }
  .marquee-rule { margin: 0 2vw; }
}

/* ============================
   SCROLL CONTAINER
   ============================ */
#scroll-container {
  position: relative;
  height: 900vh;
  z-index: 5;
}

/* ============================
   SCROLL SECTIONS
   ============================ */
.scroll-section {
  position: absolute;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  pointer-events: none;
  opacity: 0;
  will-change: opacity, transform;
}

.scroll-section.active { pointer-events: auto; }

/* Side alignment */
.align-left {
  padding-left: 5vw;
  padding-right: 55vw;
}

.align-right {
  padding-left: 55vw;
  padding-right: 5vw;
}

.section-inner {
  max-width: 40vw;
  background: rgba(26, 18, 9, 0.65);
  padding: 2.4rem 2rem;
  border-radius: 6px;
}

/* ============================
   SECTION TEXT STYLES
   ============================ */
.section-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: var(--letter-wide);
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 22px;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 5.5rem);
  font-weight: 700;
  line-height: 1.02;
  color: var(--text-on-dark);
  letter-spacing: 0.005em;
  margin-bottom: 28px;
}

.section-body {
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(240,237,232,0.68);
  max-width: 36ch;
}

/* Ingredient list */
.ingredient-list {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ingredient-list li {
  font-family: 'Great Vibes', cursive;
  font-size: 1.45rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: rgba(240,237,232,0.65);
  padding-left: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
  position: relative;
  border-bottom: 1px solid rgba(200, 169, 110, 0.08);
}

.ingredient-list li:last-child { border-bottom: none; }

.ingredient-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
  opacity: 0.6;
}

/* ============================
   STATS SECTION
   ============================ */
.section-stats {
  padding: 0 5vw;
  justify-content: center;
}

.stats-grid {
  display: flex;
  gap: 80px;
  align-items: flex-start;
}

.stat {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(4rem, 8vw, 9rem);
  font-weight: 700;
  color: var(--text-on-dark);
  line-height: 1;
  letter-spacing: 0em;
}

.stat-suffix {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 3.5rem);
  font-weight: 400;
  color: var(--accent);
  font-style: italic;
  align-self: flex-start;
  margin-top: 8px;
}

.stat-label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(240,237,232,0.4);
  margin-top: 10px;
}

/* ============================
   CTA SECTION
   ============================ */
.cta-buttons {
  display: flex;
  gap: 16px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.cta-button {
  display: inline-block;
  padding: 14px 36px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  transition: color 0.4s ease, border-color 0.3s ease;
}

.cta-primary {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.cta-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent);
  transform: translateX(-101%);
  transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  z-index: -1;
}

.cta-primary:hover { color: var(--bg-dark); }
.cta-primary:hover::after { transform: translateX(0); }

.cta-secondary {
  border: 1px solid rgba(200,169,110,0.35);
  color: rgba(240,237,232,0.65);
}

.cta-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ============================
   ATELJE STANDALONE SECTION
   ============================ */
.atelje-standalone {
  position: relative;
  z-index: 6;
  background: linear-gradient(to right, transparent 0%, var(--bg-dark) 100%);
  margin-top: 160px;
  padding: 120px 5vw 100px;
  display: flex;
  align-items: flex-start;
  gap: 6vw;
}

/* ---- Right text block ---- */
.atelje-inner {
  max-width: 28vw;
  flex-shrink: 0;
  border-left: 1px solid rgba(191, 160, 90, 0.25);
  padding-left: 2.4rem;
  padding-top: 0.4rem;
}

.atelje-standalone .section-label {
  color: var(--accent);
}

.atelje-standalone .section-heading {
  color: var(--text-on-dark);
}

.atelje-standalone .section-body {
  color: rgba(237, 233, 226, 0.6);
}

/* ---- Left form block ---- */
.atelje-form-wrap {
  flex: 1;
  max-width: 46vw;
}

.atelje-form-wrap .section-label {
  display: none;
}

.atelje-form-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 2.8rem;
  background: linear-gradient(135deg, #e8c99a 0%, #c8884a 30%, #7a3d18 65%, #2d1006 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.atelje-form {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-field label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(191, 160, 90, 0.7);
}

.form-field input,
.form-field select,
.form-field textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(237, 233, 226, 0.15);
  padding: 0.75rem 0;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-on-dark);
  outline: none;
  transition: border-color 0.3s ease;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(237, 233, 226, 0.2);
}

.form-field select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23bfa05a' stroke-width='1.2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.25rem center;
  padding-right: 1.5rem;
  color: rgba(237, 233, 226, 0.2);
}

.form-field select.has-value,
.form-field select:focus {
  color: var(--text-on-dark);
}

.form-field select option {
  background: #1a1209;
  color: var(--text-on-dark);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-bottom-color: var(--accent);
}

.form-field textarea {
  resize: none;
  line-height: 1.7;
}

.form-submit {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.6rem;
  background: transparent;
  border: 1px solid rgba(191, 160, 90, 0.45);
  color: var(--accent);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  align-self: flex-start;
}

.form-submit:hover {
  background: var(--accent);
  color: var(--bg-dark);
  border-color: var(--accent);
}

/* ============================
   FOOTER
   ============================ */
.site-footer {
  position: relative;
  z-index: 6;
  background: var(--bg-dark);
  padding: 100px 40px 60px;
  border-top: 1px solid rgba(200,169,110,0.08);
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.footer-logo-lockup {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 4px;
}

.footer-logo-img {
  height: 44px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1) opacity(0.55);
}

.footer-tagline {
  font-family: var(--font-luxury);
  font-size: 1.05rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(240,237,232,0.35);
  letter-spacing: 0.06em;
}

.footer-links {
  display: flex;
  gap: 32px;
  margin-top: 12px;
}

.footer-links a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(240,237,232,0.35);
  transition: color 0.3s ease;
}

.footer-links a:hover { color: var(--accent); }

.footer-copy {
  font-size: 0.68rem;
  color: rgba(240,237,232,0.2);
  letter-spacing: 0.06em;
  margin-top: 8px;
}

/* ============================
   MOBILE
   ============================ */
@media (max-width: 768px) {

  /* --- Nav --- */
  nav { padding: 0 20px; }
  .nav-links { gap: 16px; }
  .nav-links li:first-child, .nav-links li:nth-child(2) { display: none; }

  /* --- Hero --- */
  .hero-heading { font-size: clamp(3rem, 14vw, 6rem); }

  /* --- Scroll sections --- */
  .align-left, .align-right {
    padding: 0 6vw;
    justify-content: center;
  }
  .section-inner { max-width: 100%; }
  .section-heading { font-size: clamp(2rem, 8vw, 3rem); }
  #scroll-container { height: 700vh; }
  .cta-buttons { flex-direction: column; gap: 12px; }

  /* --- Stats --- */
  .stats-grid {
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .stat-number { font-size: clamp(3rem, 14vw, 5rem); }

  /* --- Marquee --- */
  .marquee-text { font-size: 18vw; }

  /* --- Ingredient reveal: show on mobile, title + para both on right --- */
  #ingredient-reveal { display: block; }

  .ingr-item {
    grid-template-columns: 1fr;
    padding-left: 44vw;
    padding-right: 4vw;
    gap: 0.3rem;
  }

  .ingr-title {
    text-align: right;
    padding-right: 0;
    font-size: clamp(1rem, 4vw, 1.4rem);
  }

  .ingr-para {
    grid-column: 1;
    padding-left: 0;
    text-align: right;
    font-size: clamp(0.58rem, 2.2vw, 0.72rem);
    line-height: 1.5;
  }

  /* --- Atelje standalone section --- */
  .atelje-standalone {
    flex-direction: column;
    background: var(--bg-dark);
    margin-top: 60px;
    padding: 60px 6vw 72px;
    gap: 3rem;
  }

  .atelje-form-wrap {
    max-width: 100%;
  }

  .atelje-form {
    background: transparent;
    border: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 0;
  }

  .atelje-form-heading {
    font-size: clamp(1.8rem, 8vw, 2.4rem);
    margin-bottom: 2rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-submit {
    width: 100%;
    justify-content: center;
  }

  .atelje-inner {
    max-width: 100%;
    border-left: none;
    border-top: 1px solid rgba(191, 160, 90, 0.2);
    padding-left: 0;
    padding-top: 2.4rem;
  }

  /* --- Footer --- */
  .footer-links { gap: 20px; }
}

/* ============================
   DESKTOP FORM TEXT
   ============================ */
@media (min-width: 769px) {
  .form-field input,
  .form-field select,
  .form-field textarea {
    color: #1a1209;
    border-bottom-color: rgba(26, 18, 9, 0.2);
  }

  .form-field input::placeholder,
  .form-field textarea::placeholder {
    color: rgba(26, 18, 9, 0.3);
  }

  .form-field select {
    color: rgba(26, 18, 9, 0.3);
  }

  .form-field select.has-value,
  .form-field select:focus {
    color: #1a1209;
  }

  .form-field input:focus,
  .form-field select:focus,
  .form-field textarea:focus {
    border-bottom-color: var(--accent);
  }
}

/* ============================
   LANGUAGE SWITCHER
   ============================ */
.lang-switcher {
  display: flex;
  gap: 0.4rem;
  align-items: center;
  margin-left: 1.5rem;
}

.lang-btn {
  background: none;
  border: 1px solid currentColor;
  color: inherit;
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  padding: 0.2rem 0.45rem;
  cursor: pointer;
  opacity: 0.4;
  transition: opacity 0.2s;
  line-height: 1.4;
}

.lang-btn:hover,
.lang-btn.active {
  opacity: 1;
}

/* ============================
   MOBILE NAV BURGER
   ============================ */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  position: fixed;
  top: 18px;
  right: 20px;
  z-index: 200;
}

.nav-burger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: currentColor;
  transform-origin: center;
  transition: transform 0.35s cubic-bezier(0.77, 0, 0.18, 1),
              opacity 0.25s ease;
}

.nav-burger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-burger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-burger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ============================
   MOBILE NAV OVERLAY
   ============================ */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: var(--bg-dark);
  z-index: 150;
  clip-path: circle(0px at var(--burger-x, calc(100vw - 36px)) var(--burger-y, 36px));
  transition: clip-path 0.65s cubic-bezier(0.77, 0, 0.18, 1);
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-overlay.open {
  clip-path: circle(150vmax at var(--burger-x, calc(100vw - 36px)) var(--burger-y, 36px));
  pointer-events: all;
}

.nav-overlay-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.nav-overlay-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.nav-overlay-link {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 12vw, 5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text-on-dark);
  letter-spacing: 0.02em;
  opacity: 0;
  transform: translateY(30px);
  transition: color 0.3s ease;
  display: block;
  padding: 0.1em 0;
}

.nav-overlay-link:hover { color: var(--accent); }

.nav-overlay-cta {
  font-style: normal;
  font-size: clamp(0.8rem, 3.5vw, 1rem) !important;
  font-family: var(--font-body) !important;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent) !important;
  border: 1px solid var(--accent);
  padding: 0.75em 2.2em !important;
  margin-top: 0.5rem;
  transition: background 0.3s ease, color 0.3s ease;
}

.nav-overlay-cta:hover {
  background: var(--accent) !important;
  color: var(--bg-dark) !important;
}

.nav-overlay.open .nav-overlay-link {
  animation: overlayLinkIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.nav-overlay.open .nav-overlay-links li:nth-child(1) .nav-overlay-link { animation-delay: 0.3s; }
.nav-overlay.open .nav-overlay-links li:nth-child(2) .nav-overlay-link { animation-delay: 0.4s; }
.nav-overlay.open .nav-overlay-links li:nth-child(3) .nav-overlay-link { animation-delay: 0.5s; }

@keyframes overlayLinkIn {
  to { opacity: 1; transform: translateY(0); }
}

.nav-overlay-lang {
  display: flex;
  gap: 0.6rem;
  opacity: 0;
  transform: translateY(16px);
}

.nav-overlay.open .nav-overlay-lang {
  animation: overlayLinkIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.6s forwards;
}

.nav-overlay-lang .lang-btn {
  color: var(--text-on-dark);
  font-size: 0.65rem;
}

@media (max-width: 768px) {
  .nav-burger { display: flex; color: var(--text-on-dark); }
  .nav-burger.scrolled { color: var(--text-on-light); }
  .nav-burger.open { color: var(--text-on-dark) !important; }
  .nav-links { display: none; }
  .lang-switcher { display: none; }
}
