/* ── RESET & BASE ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:         #0C0A08;
  --bg2:        #171210;
  --surface:    #231C15;
  --text:       #E6DDD0;
  --muted:      #8A7B6A;
  --faint:      #3A2E24;
  --gold:       #C4A46B;
  --rose:       #B87B72;
  --serif:      'Cormorant Garamond', Georgia, serif;
  --sans:       'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  cursor: none;
  overflow-x: hidden;
}

::selection { background: var(--gold); color: var(--bg); }

/* ── SKIP NAVIGATION ─────────────────────────────── */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 16px;
  z-index: 20000;
  background: var(--gold);
  color: var(--bg);
  padding: 10px 20px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 400;
  text-decoration: none;
  letter-spacing: 0.04em;
}
.skip-link:focus { left: 16px; }

/* ── CUSTOM CURSOR ────────────────────────────────── */
#cursor {
  position: fixed;
  width: 18px; height: 18px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10001;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease, width 0.3s ease, height 0.3s ease, background 0.3s ease, border-color 0.3s ease;
  mix-blend-mode: normal;
}
#cursor.hover {
  width: 40px; height: 40px;
  background: rgba(196,164,107,0.12);
  border-color: var(--gold);
}
#cursor-dot {
  position: fixed;
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10001;
  transform: translate(-50%, -50%);
  transition: transform 0.05s linear;
}

/* ── GRAIN OVERLAY ────────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.035;
  pointer-events: none;
  z-index: 9998;
}

/* ── HEADER ───────────────────────────────────────── */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 28px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 500ms ease, padding 400ms ease;
}
header.scrolled {
  background: rgba(12, 10, 8, 0.92);
  backdrop-filter: blur(12px);
  padding: 20px 48px;
  border-bottom: 1px solid var(--faint);
}

.logo {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 18px;
  letter-spacing: 0.06em;
  color: var(--text);
  text-decoration: none;
  opacity: 0.9;
}

nav { display: flex; gap: 40px; align-items: center; }
nav a {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 250ms ease;
}
nav a:hover { color: var(--text); }

.nav-cta {
  border: 1px solid var(--faint) !important;
  padding: 8px 18px;
  color: var(--text) !important;
  transition: border-color 250ms ease, color 250ms ease !important;
}
.nav-cta:hover {
  border-color: var(--gold) !important;
  color: var(--gold) !important;
}

/* ── HAMBURGER ────────────────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--gold);
  transition: transform 300ms ease, opacity 300ms ease;
}

/* ── MOBILE MENU ──────────────────────────────────── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 48px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 500ms ease;
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}
.mobile-menu a {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 8vw, 4rem);
  font-weight: 300;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 200ms;
}
.mobile-menu a:hover { color: var(--gold); }
.menu-close {
  position: absolute;
  top: 28px; right: 48px;
  font-family: var(--sans);
  font-size: 24px;
  font-weight: 300;
  color: var(--muted);
  cursor: none;
  background: none;
  border: none;
  transition: color 200ms;
}
.menu-close:hover { color: var(--text); }

/* ── HERO ─────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
  filter: brightness(0.35) contrast(1.1) saturate(0.7);
  transform: scale(1.04);
  transition: transform 8s ease;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 30% 60%, rgba(12,10,8,0.55) 0%, transparent 70%),
    linear-gradient(to top, rgba(12,10,8,0.9) 0%, transparent 50%),
    linear-gradient(to bottom, rgba(12,10,8,0.6) 0%, transparent 30%);
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
}
.hero-shape-1 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
  top: 15%; right: 10%;
  animation: float1 8s ease-in-out infinite;
}
.hero-shape-2 {
  width: 220px; height: 220px;
  background: radial-gradient(circle, var(--rose) 0%, transparent 70%);
  bottom: 20%; left: 8%;
  animation: float2 11s ease-in-out infinite;
}
.hero-shape-3 {
  width: 140px; height: 140px;
  background: radial-gradient(circle, #8A6A40 0%, transparent 70%);
  top: 60%; right: 30%;
  animation: float1 14s ease-in-out infinite reverse;
}

@keyframes float1 {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-20px) scale(1.05); }
}
@keyframes float2 {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(15px) scale(0.97); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  animation: heroReveal 1.2s cubic-bezier(0.16,1,0.3,1) 0.3s forwards;
}

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

.hero-eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  opacity: 0;
  animation: heroReveal 1s ease 0.6s forwards;
}

.hero-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(4rem, 11vw, 9.5rem);
  line-height: 0.92;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 36px;
  opacity: 0;
  animation: heroReveal 1s ease 0.4s forwards;
}
.hero-title em {
  font-style: italic;
  color: var(--muted);
}

.hero-sub {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--muted);
  opacity: 0;
  animation: heroReveal 1s ease 0.8s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: heroReveal 1s ease 1.2s forwards;
}
.hero-scroll span {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* ── DIVIDER ──────────────────────────────────────── */
.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--faint), transparent);
}

/* ── SECTION BASE ─────────────────────────────────── */
section { padding: 120px 48px; }

.section-label {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.section-label::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

/* ── REVEAL ANIMATION ─────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 800ms cubic-bezier(0.16,1,0.3,1), transform 800ms cubic-bezier(0.16,1,0.3,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 100ms; }
.reveal-delay-2 { transition-delay: 200ms; }
.reveal-delay-3 { transition-delay: 300ms; }
.reveal-delay-4 { transition-delay: 400ms; }
.reveal-delay-5 { transition-delay: 500ms; }

/* ── GALLERY SECTION ──────────────────────────────── */
.gallery-section {
  padding: 80px 0 120px;
  background: var(--bg);
}

.gallery-header {
  padding: 0 48px;
  margin-bottom: 48px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.gallery-title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.gallery-title em {
  font-style: italic;
  color: var(--muted);
}

.gallery-note {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--muted);
  letter-spacing: 0.06em;
  max-width: 320px;
  text-align: right;
  line-height: 1.7;
}

/* ── GALLERY GRID ─────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 360px 300px 340px;
  gap: 5px;
  padding: 0 5px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  cursor: none;
  min-height: 0;
}

.gallery-item:nth-child(1) { grid-column: 1 / 6; grid-row: 1 / 3; }
.gallery-item:nth-child(2) { grid-column: 6 / 9; grid-row: 1; }
.gallery-item:nth-child(3) { grid-column: 9 / 13; grid-row: 1; }
.gallery-item:nth-child(4) { grid-column: 6 / 10; grid-row: 2; }
.gallery-item:nth-child(5) { grid-column: 10 / 13; grid-row: 2; }
.gallery-item:nth-child(6) { grid-column: 1 / 5; grid-row: 3; }
.gallery-item:nth-child(7) { grid-column: 5 / 9; grid-row: 3; }
.gallery-item:nth-child(8) { grid-column: 9 / 13; grid-row: 3; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 600ms ease;
}
.gallery-item:hover img { transform: scale(1.04); }

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(12, 10, 8, 0.72);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 400ms ease;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }

.gallery-item-name {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 300;
  font-style: italic;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 4px;
}
.gallery-item-tag {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── ABOUT SECTION ────────────────────────────────── */
.about-section {
  background: var(--bg2);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 140px 80px;
}

.about-visual {
  position: relative;
  height: 520px;
}

.about-frame {
  position: absolute;
  border: 1px solid var(--faint);
}
.about-frame-1 {
  inset: 0;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.about-frame-2 {
  width: 55%;
  height: 65%;
  bottom: -24px;
  right: -24px;
  background: transparent;
  border-color: var(--gold);
  opacity: 0.2;
}
.about-frame-3 {
  width: 40%;
  height: 30%;
  top: -20px;
  left: -20px;
  background: var(--surface);
  border-color: var(--gold);
  opacity: 0.4;
}

.about-frame-inner {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.about-frame-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.85) contrast(1.05);
}

.about-heading {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 32px;
}
.about-heading em { font-style: italic; color: var(--muted); }

.about-body {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 20px;
}
.about-body strong {
  color: var(--text);
  font-weight: 400;
}

.about-stat {
  display: flex;
  gap: 48px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--faint);
}

.stat-number {
  font-family: var(--serif);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--text);
  line-height: 1;
}
.stat-label {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
}

/* ── PROCESS SECTION ──────────────────────────────── */
.process-section {
  padding: 140px 48px;
  background: var(--bg);
}

.process-header {
  max-width: 500px;
  margin-bottom: 80px;
}

.process-heading {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-top: 16px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.process-step {
  padding: 40px 32px;
  background: var(--bg2);
  position: relative;
  transition: background 300ms ease;
}
.process-step:hover { background: var(--surface); }

.step-number {
  font-family: var(--serif);
  font-size: 5rem;
  font-weight: 300;
  color: var(--faint);
  line-height: 1;
  margin-bottom: 24px;
  transition: color 300ms ease;
}
.process-step:hover .step-number { color: var(--gold); opacity: 0.4; }

.step-title {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 12px;
  font-style: italic;
}

.step-body {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.8;
}

.step-line {
  position: absolute;
  top: 40px; right: 0;
  width: 1px;
  height: 40px;
  background: var(--faint);
}
.process-step:last-child .step-line { display: none; }

/* ── ORDERS SECTION ───────────────────────────────── */
.orders-section {
  padding: 140px 48px;
  background: var(--bg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}

.orders-heading {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-top: 16px;
  margin-bottom: 24px;
}
.orders-heading em { font-style: italic; color: var(--muted); }

.orders-text {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 40px;
}

.orders-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--sans);
  font-size: 13px;
  color: var(--muted);
}

.info-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ── FORM ─────────────────────────────────────────── */
form { display: flex; flex-direction: column; gap: 20px; }

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field label {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-hint {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
  opacity: 0.75;
  margin-bottom: 2px;
}

.form-field input:not([type="checkbox"]),
.form-field select,
.form-field textarea {
  background: var(--bg2);
  border: 1px solid var(--faint);
  color: var(--text);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  padding: 14px 16px;
  outline: none;
  transition: border-color 250ms ease;
  resize: none;
  appearance: none;
  cursor: none;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.form-field input[type="checkbox"] {
  appearance: auto;
  width: 16px;
  min-width: 16px;
  height: 16px;
  cursor: pointer;
  accent-color: var(--gold);
  flex-shrink: 0;
}

.form-field input:not([type="checkbox"]):focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--gold);
}

/* Custom dropdown arrow (appearance:none removes native one) */
.form-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5l5 5 5-5' stroke='%238A7B6A' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 42px;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--faint);
}

.form-field select option {
  background: var(--bg2);
  color: var(--text);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.btn-submit {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 16px 32px;
  cursor: none;
  transition: background 300ms ease, color 300ms ease;
  align-self: flex-start;
  margin-top: 8px;
}
.btn-submit:hover {
  background: var(--gold);
  color: var(--bg);
}

/* ── INSTAGRAM STRIP ──────────────────────────────── */
.ig-strip {
  padding: 80px 48px;
  background: var(--bg2);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.ig-label {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.ig-handle {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 300;
  font-style: italic;
  color: var(--text);
  text-decoration: none;
  transition: color 250ms;
}
.ig-handle:hover { color: var(--gold); }

/* ── FAQ ──────────────────────────────────────────── */
.faq-section {
  background: var(--bg);
  padding: 80px 48px;
  border-top: 1px solid var(--faint);
}
.faq-inner {
  max-width: 720px;
  margin: 0 auto;
}
.faq-heading {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 300;
  color: var(--text);
  margin-bottom: 40px;
  letter-spacing: -0.01em;
}
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid var(--faint);
  padding: 24px 0;
}
.faq-item dt {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 400;
  color: var(--text);
  letter-spacing: 0.02em;
  margin-bottom: 10px;
}
.faq-item dd {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.75;
  margin: 0;
}
@media (max-width: 768px) {
  .faq-section { padding: 60px 24px; }
}

/* ── FOOTER ───────────────────────────────────────── */
footer {
  padding: 48px;
  background: var(--surface);
  border-top: 1px solid var(--faint);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.footer-logo {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--text);
}

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

.footer-links a {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 200ms;
}
.footer-links a:hover { color: var(--text); }

.footer-copy {
  font-family: var(--sans);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.06em;
}

/* ── RESPONSIVE ───────────────────────────────────── */
@media (max-width: 1024px) {
  section { padding: 100px 32px; }
  .about-section { padding: 100px 32px; gap: 48px; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .orders-section { grid-template-columns: 1fr; gap: 60px; padding: 100px 32px; }
  .gallery-header { padding: 0 32px; }
}

@media (max-width: 768px) {
  header { padding: 22px 24px; }
  header.scrolled { padding: 16px 24px; }
  nav { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: flex; }

  section { padding: 80px 24px; }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: unset;
    gap: 3px;
    padding: 0 3px;
  }
  .gallery-item:nth-child(n) {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
    aspect-ratio: 1/1;
  }

  .about-section {
    grid-template-columns: 1fr;
    padding: 80px 24px;
    gap: 48px;
  }
  .about-visual { height: 280px; overflow: hidden; }
  .about-frame-2 { display: none; }
  .about-frame-3 { display: none; }

  .process-steps { grid-template-columns: 1fr; gap: 2px; }

  .orders-section { grid-template-columns: 1fr; padding: 80px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .btn-submit { width: 100%; text-align: center; align-self: stretch; }
  form { width: 100%; }

  .gallery-header { padding: 0 24px; flex-direction: row; align-items: flex-end; justify-content: space-between; gap: 16px; }
  .gallery-note { font-size: 13px; max-width: 140px; text-align: right; }

  footer { padding: 36px 24px; }
  .footer-links { flex-wrap: wrap; justify-content: center; }

  .ig-strip { padding: 60px 24px; }
}

/* ── TOUCH DEVICES: hide custom cursor ───────────── */
@media (hover: none) and (pointer: coarse) {
  body { cursor: auto; }
  #cursor, #cursor-dot { display: none !important; }
  .hamburger, .gallery-item, .form-field input,
  .form-field select, .form-field textarea,
  .btn-submit, .menu-close { cursor: auto; }
}

/* ── FORM VALIDATION ──────────────────────────────── */
.field-error {
  border-color: var(--rose) !important;
}
.form-error {
  font-family: var(--sans);
  font-size: 11px;
  color: var(--rose);
  letter-spacing: 0.04em;
  margin-top: -4px;
}

/* ── CONSENT CHECKBOX ────────────────────────────── */
/* Honeypot — never visible to humans, bots fill it */
.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.form-consent { margin-top: 4px; }

.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}
.consent-label input[type="checkbox"] {
  margin-top: 2px;
}
.consent-label span {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.6;
}

/* ── LINK BUTTON ──────────────────────────────────── */
.link-btn {
  background: none;
  border: none;
  padding: 0;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  color: var(--gold);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 200ms;
}
.link-btn:hover { opacity: 0.75; }

.footer-legal-btn {
  color: var(--muted);
  text-decoration: none;
  letter-spacing: 0.06em;
  font-size: 11px;
}
.footer-legal-btn:hover { color: var(--text); opacity: 1; }

/* ── LEGAL MODAL ──────────────────────────────────── */
.legal-modal {
  position: fixed;
  inset: 0;
  background: rgba(12, 10, 8, 0.88);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  backdrop-filter: blur(4px);
}
.legal-modal[hidden] { display: none; }

.legal-modal-box {
  background: var(--surface);
  border: 1px solid var(--faint);
  max-width: 640px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 48px;
  position: relative;
}

.modal-strong { color: var(--text); }

.legal-modal-close {
  position: absolute;
  top: 20px; right: 24px;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 20px;
  cursor: pointer;
  transition: color 200ms;
  line-height: 1;
}
.legal-modal-close:hover { color: var(--text); }

.legal-modal-box h2 {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--text);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--faint);
}
.legal-modal-box h3 {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 24px 0 8px;
}
.legal-modal-box p {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 8px;
}
.legal-modal-box a {
  color: var(--gold);
}

@media (max-width: 768px) {
  .legal-modal-box { padding: 32px 24px; }
}

/* ── REDUCED MOTION ───────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  #cursor, #cursor-dot { display: none !important; }
  body { cursor: auto !important; }
}

/* ── FOCUS VISIBLE ────────────────────────────────── */
:focus-visible {
  outline: 1px solid var(--gold);
  outline-offset: 4px;
}
