/* ÉnHome — landing page styles */

:root {
  --gold: #B8893D;
  --gold-deep: #8C6624;
  --gold-soft: #D9B673;
  --gold-tint: #F0E4CB;
  --ink: #15110D;
  --ink-soft: #3A322A;
  --bone: #F6F1E8;
  --cream: #EDE6D8;
  --line: rgba(21, 17, 13, 0.14);
  --line-soft: rgba(21, 17, 13, 0.07);
  --shadow-1: 0 1px 0 rgba(21,17,13,0.04), 0 24px 60px -30px rgba(21,17,13,0.25);

  --serif: "Cormorant Garamond", "Cormorant", "Times New Roman", serif;
  --sans: "Jost", "Inter Tight", ui-sans-serif, system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, "SF Mono", monospace;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--ink);
  background: var(--bone);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-size: 15px;
  line-height: 1.55;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
button { font-family: inherit; }
a { color: inherit; text-decoration: none; }

/* ─ Reusable type ─ */
.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}
.eyebrow.no-rule::before { display: none; }

.display {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  line-height: 0.98;
  letter-spacing: -0.015em;
  color: var(--ink);
}

.serif-roman {
  font-family: var(--serif);
  font-weight: 400;
  font-style: normal;
  letter-spacing: -0.01em;
}

.kicker {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* ─ Layout ─ */
.shell { max-width: 1440px; margin: 0 auto; padding: 0 56px; }
@media (max-width: 800px) { .shell { padding: 0 24px; } }

/* ─ Buttons ─ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--bone);
  cursor: pointer;
  transition: background 200ms ease, color 200ms ease, border-color 200ms ease, transform 200ms ease;
}
.btn:hover { background: var(--gold-deep); border-color: var(--gold-deep); }
.btn--ghost {
  background: transparent;
  color: var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: var(--bone); }
.btn--gold {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bone);
}
.btn--gold:hover { background: var(--gold-deep); border-color: var(--gold-deep); }
.btn .arrow { display: inline-block; transition: transform 200ms ease; }
.btn:hover .arrow { transform: translateX(4px); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  padding-bottom: 6px;
  transition: color 200ms ease, border-color 200ms ease;
}
.link-arrow:hover { color: var(--gold-deep); border-color: var(--gold); }
.link-arrow .arrow { transition: transform 200ms ease; }
.link-arrow:hover .arrow { transform: translateX(4px); }

/* ─ NAV ─ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 241, 232, 0.86);
  backdrop-filter: saturate(150%) blur(14px);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.nav-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 72px;
  gap: 24px;
}
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-link {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  transition: color 180ms ease;
  position: relative;
}
.nav-link:hover { color: var(--gold-deep); }
.nav-link.is-active { color: var(--ink); }
.nav-link.is-active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -22px;
  height: 2px;
  background: var(--gold);
}
.nav-logo { justify-self: center; height: 32px; }
.nav-logo img { height: 100%; width: auto; display: block; }
.nav-cta { justify-self: end; display: flex; gap: 16px; align-items: center; }
.lang-toggle {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 10px;
  letter-spacing: 0.14em;
  overflow: hidden;
}
.lang-toggle button {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--ink-soft);
  padding: 6px 12px;
  cursor: pointer;
  text-transform: uppercase;
  font-family: var(--sans);
}
.lang-toggle button.is-on { background: var(--ink); color: var(--bone); }

/* ─ HERO ─ */
.hero {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: end;
}
.hero h1.display {
  font-size: clamp(58px, 8vw, 124px);
  margin: 24px 0 0;
}
.hero h1 .gold { color: var(--gold); }
.hero h1 .ink { color: var(--ink); font-style: normal; font-weight: 400; }
.hero .lede {
  margin-top: 36px;
  max-width: 460px;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
}
.hero-actions { margin-top: 40px; display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }

.hero-stat-row {
  margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  max-width: 560px;
}
.stat .num { font-family: var(--serif); font-style: italic; font-size: 38px; color: var(--gold-deep); line-height: 1; }
.stat .lbl { margin-top: 6px; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); }

.hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--cream);
  overflow: hidden;
}
.hero-visual .ph {
  position: absolute;
  inset: 0;
}
.hero-meta {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  color: var(--bone);
  z-index: 2;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  mix-blend-mode: difference;
}
.hero-corner {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 72px;
  height: 72px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.05em;
  background: rgba(246, 241, 232, 0.92);
  z-index: 2;
}

/* Subtle striped placeholder (no SVG slop) */
.ph-stripes {
  background:
    linear-gradient(135deg, transparent 0 49.5%, rgba(21,17,13,0.06) 49.5% 50.5%, transparent 50.5% 100%),
    linear-gradient(135deg, rgba(21,17,13,0.035), rgba(21,17,13,0.035)) center / 8px 8px,
    var(--cream);
  background-size: 16px 16px, 16px 16px, auto;
  position: relative;
}
.ph-stripes::after {
  content: attr(data-label);
  position: absolute;
  inset: auto 0 50% 0;
  text-align: center;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  opacity: 0.55;
}
.ph-stripes.warm {
  background:
    linear-gradient(135deg, transparent 0 49.5%, rgba(184,137,61,0.18) 49.5% 50.5%, transparent 50.5% 100%),
    linear-gradient(135deg, rgba(184,137,61,0.06), rgba(184,137,61,0.06)) center / 8px 8px,
    var(--gold-tint);
  background-size: 16px 16px, 16px 16px, auto;
}
.ph-stripes.dark {
  background:
    linear-gradient(135deg, transparent 0 49.5%, rgba(246,241,232,0.08) 49.5% 50.5%, transparent 50.5% 100%),
    linear-gradient(135deg, rgba(246,241,232,0.04), rgba(246,241,232,0.04)) center / 8px 8px,
    var(--ink);
  background-size: 16px 16px, 16px 16px, auto;
  color: var(--bone);
}
.ph-stripes.dark::after { color: rgba(246,241,232,0.55); }

/* ─ Marquee / atelier strip ─ */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
  background: var(--bone);
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 56px;
  white-space: nowrap;
  animation: marquee 50s linear infinite;
  width: max-content;
}
.marquee-item {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 56px;
}
.marquee-item::after {
  content: "✦";
  color: var(--gold);
  font-style: normal;
  font-size: 12px;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ─ Section base ─ */
section { position: relative; }
.section { padding: 120px 0; }
.section.tight { padding: 80px 0; }
.section.dark { background: var(--ink); color: var(--bone); }
.section.cream { background: var(--cream); }

.section-head {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 56px;
}
.section-head h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.015em;
  margin: 16px 0 0;
}
.section-head h2 em { color: var(--gold-deep); font-style: italic; }
.section-head p {
  font-size: 16px;
  color: var(--ink-soft);
  max-width: 540px;
  margin: 0;
  line-height: 1.65;
}
.section.dark .section-head p { color: rgba(246,241,232,0.72); }
.section.dark .section-head h2 em { color: var(--gold-soft); }

/* ─ Manifesto / pillars ─ */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.pillar {
  padding: 48px 36px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pillar:last-child { border-right: none; }
.pillar .num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--gold-deep);
}
.pillar h3 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 32px;
  margin: 0;
  line-height: 1.05;
}
.pillar p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.6;
}

/* ─ Collezioni / categories ─ */
.tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.tab {
  appearance: none;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 18px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  cursor: pointer;
  transition: all 180ms ease;
}
.tab:hover { color: var(--ink); border-color: var(--ink); }
.tab.is-on { background: var(--ink); color: var(--bone); border-color: var(--ink); }

.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}
.card {
  position: relative;
  overflow: hidden;
  background: var(--cream);
  cursor: pointer;
}
.card .ph { position: absolute; inset: 0; transition: transform 600ms cubic-bezier(.16,.84,.44,1); }
.card:hover .ph { transform: scale(1.04); }
.card .scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(21,17,13,0.6) 0%, rgba(21,17,13,0) 50%);
  opacity: 0;
  transition: opacity 300ms ease;
  z-index: 1;
}
.card:hover .scrim { opacity: 1; }
.card .caption {
  position: absolute;
  bottom: 18px;
  left: 18px;
  right: 18px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: end;
  color: var(--bone);
  transform: translateY(10px);
  opacity: 0;
  transition: transform 300ms ease, opacity 300ms ease;
}
.card:hover .caption { transform: translateY(0); opacity: 1; }
.card .title {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  line-height: 1;
}
.card .meta {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.85;
}
.card .badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background: rgba(246,241,232,0.92);
  color: var(--ink);
  padding: 4px 10px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.card.size-lg { grid-column: span 7; aspect-ratio: 4/3; }
.card.size-md { grid-column: span 5; aspect-ratio: 4/4.4; }
.card.size-sm { grid-column: span 4; aspect-ratio: 1/1; }
.card.size-wide { grid-column: span 8; aspect-ratio: 16/9; }
.card.size-tall { grid-column: span 4; aspect-ratio: 3/4; }

/* ─ Materiali ─ */
.materials-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}
.materials-visual {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 200px);
  gap: 12px;
}
.materials-visual .swatch { position: relative; overflow: hidden; }
.materials-visual .swatch span {
  position: absolute;
  bottom: 12px;
  left: 12px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bone);
  background: rgba(21,17,13,0.6);
  padding: 4px 8px;
}
.swatch.s1 { background:
  linear-gradient(135deg, #c39558 0%, #8a6128 50%, #5e3f17 100%); }
.swatch.s2 { background:
  linear-gradient(180deg, #efe7d6 0%, #d9caa9 50%, #b9a378 100%); }
.swatch.s3 { background:
  radial-gradient(circle at 30% 30%, #6f6358 0%, #2c241e 80%); }
.swatch.s4 { background:
  linear-gradient(135deg, #ddd3c4 0%, #b8a585 50%, #7a6440 100%); }

.materials-list {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
}
.materials-list li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: baseline;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.materials-list li .idx { font-family: var(--mono); font-size: 11px; color: var(--gold-deep); letter-spacing: 0.1em; }
.materials-list li .name { font-family: var(--serif); font-size: 22px; font-style: italic; }
.materials-list li .origin { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); }

/* ─ Featured project ─ */
.featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 620px;
  border: 1px solid rgba(246,241,232,0.12);
}
.featured-img { position: relative; }
.featured-img .ph { position: absolute; inset: 0; }
.featured-body {
  padding: 56px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}
.featured-body h3 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(40px, 4vw, 56px);
  line-height: 1.02;
  margin: 12px 0 16px;
}
.featured-body p { color: rgba(246,241,232,0.72); font-size: 15px; line-height: 1.65; max-width: 440px; }
.featured-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(246,241,232,0.18);
}
.featured-meta .row .k {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-soft);
}
.featured-meta .row .v {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  margin-top: 4px;
}

/* ─ Process ─ */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
.process::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 12px;
  right: 12px;
  height: 1px;
  background: var(--line);
}
.step { position: relative; }
.step .dot {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: var(--bone);
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold-deep);
  font-size: 18px;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.step h4 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 26px;
  margin: 0 0 12px;
  line-height: 1.05;
}
.step p { color: var(--ink-soft); font-size: 14px; line-height: 1.6; margin: 0; }

/* ─ Testimonial ─ */
.testimonial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.testimonial blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0;
}
.testimonial blockquote .mark { color: var(--gold); font-size: 1.4em; line-height: 0; vertical-align: -0.05em; }
.testimonial cite {
  display: block;
  margin-top: 32px;
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.testimonial .ph { aspect-ratio: 4/5; }
.testimonial-nav { display: flex; gap: 8px; margin-top: 40px; }
.testimonial-nav button {
  appearance: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  color: var(--ink);
  font-size: 14px;
  transition: all 180ms ease;
}
.testimonial-nav button:hover { background: var(--ink); color: var(--bone); border-color: var(--ink); }

/* ─ Contact / consultation form ─ */
.consult {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.consult-info h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.02;
  margin: 16px 0 24px;
  letter-spacing: -0.015em;
}
.consult-info h2 em { font-style: italic; color: var(--gold-deep); }
.consult-info p { color: var(--ink-soft); font-size: 16px; line-height: 1.65; max-width: 420px; }
.consult-meta { margin-top: 40px; display: grid; gap: 18px; }
.consult-meta .item { display: grid; grid-template-columns: 110px 1fr; gap: 16px; }
.consult-meta .item .k { font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-soft); padding-top: 2px; }
.consult-meta .item .v { font-family: var(--serif); font-style: italic; font-size: 18px; }

.form {
  background: var(--bone);
  border: 1px solid var(--line);
  padding: 40px;
}
.form-progress {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.form-progress .bar { flex: 1; height: 1px; background: var(--line); position: relative; }
.form-progress .bar > i { position: absolute; left: 0; top: 0; bottom: 0; background: var(--gold); transition: width 350ms ease; }

.step-title {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 30px;
  line-height: 1.1;
  margin: 0 0 28px;
}
.field { display: grid; gap: 8px; margin-bottom: 20px; }
.field label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.field input, .field textarea, .field select {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 300;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
  color: var(--ink);
  outline: none;
  transition: border-color 200ms ease;
  width: 100%;
  resize: vertical;
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--gold); }
.field input::placeholder, .field textarea::placeholder { color: rgba(21,17,13,0.35); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
@media (max-width: 700px) { .field-row { grid-template-columns: 1fr; } }

.choice-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.choice-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.choice {
  appearance: none;
  background: transparent;
  border: 1px solid var(--line);
  padding: 18px 16px;
  text-align: left;
  cursor: pointer;
  font-family: var(--sans);
  transition: all 180ms ease;
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: var(--ink);
}
.choice:hover { border-color: var(--ink); }
.choice.is-on { background: var(--ink); color: var(--bone); border-color: var(--ink); }
.choice.is-on .meta { color: rgba(246,241,232,0.65); }
.choice .lbl { font-family: var(--serif); font-style: italic; font-size: 20px; line-height: 1; }
.choice .meta { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); }

.form-nav { display: flex; justify-content: space-between; margin-top: 36px; align-items: center; gap: 12px; }
.form-back {
  appearance: none;
  background: transparent;
  border: 0;
  padding: 6px 0;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  cursor: pointer;
}
.form-back:hover { color: var(--ink); }
.form-back[disabled] { opacity: 0.3; cursor: not-allowed; }

.success {
  text-align: center;
  padding: 40px 20px;
}
.success .ring {
  width: 72px; height: 72px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: grid; place-items: center;
  margin: 0 auto 24px;
  color: var(--gold-deep);
  font-size: 28px;
  font-family: var(--serif);
  font-style: italic;
}
.success h3 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 36px;
  margin: 0 0 12px;
  line-height: 1.05;
}
.success p { color: var(--ink-soft); margin: 0 auto; max-width: 360px; }

/* ─ Footer ─ */
.footer {
  background: var(--ink);
  color: var(--bone);
  padding: 80px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 56px;
  align-items: start;
  margin-bottom: 64px;
}
.footer h4 {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin: 0 0 20px;
  font-weight: 400;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer ul a { color: rgba(246,241,232,0.78); font-size: 14px; transition: color 180ms ease; }
.footer ul a:hover { color: var(--gold-soft); }
.footer-tag {
  font-family: var(--serif);
  font-style: italic;
  font-size: 28px;
  line-height: 1.15;
  max-width: 360px;
  margin: 0 0 24px;
}
.footer-logo {
  height: 36px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
  opacity: 0.95;
  width: auto;
}
.footer-wordmark {
  display: inline-flex;
  align-items: center;
  font-family: var(--serif);
  font-size: 44px;
  line-height: 1;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
  position: relative;
}
.footer-wordmark .fw-disc {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  font-style: italic;
  font-weight: 400;
  font-size: 38px;
  margin-right: -10px;
  position: relative;
  z-index: 1;
}
.footer-wordmark .fw-disc::before {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 1.5px dotted var(--bone);
  opacity: 0.85;
}
.footer-wordmark .fw-n {
  color: var(--bone);
  font-style: italic;
  font-weight: 400;
  position: relative;
  z-index: 2;
}
.footer-wordmark .fw-home {
  color: var(--gold-soft);
  font-style: normal;
  font-weight: 400;
}
.footer-base {
  padding-top: 24px;
  border-top: 1px solid rgba(246,241,232,0.14);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(246,241,232,0.55);
  font-family: var(--mono);
}

/* ─ Responsive ─ */
@media (max-width: 1024px) {
  .hero-grid, .section-head, .materials-grid, .testimonial, .consult { grid-template-columns: 1fr; gap: 40px; }
  .pillars { grid-template-columns: 1fr; }
  .pillar { border-right: 0; border-bottom: 1px solid var(--line); }
  .pillar:last-child { border-bottom: none; }
  .process { grid-template-columns: repeat(2, 1fr); }
  .process::before { display: none; }
  .featured { grid-template-columns: 1fr; }
  .featured-body { padding: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
}
@media (max-width: 600px) {
  .gallery { grid-template-columns: 1fr; }
  .card.size-lg, .card.size-md, .card.size-sm, .card.size-wide, .card.size-tall { grid-column: span 1; aspect-ratio: 4/3; }
  .process { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form { padding: 24px; }
  .choice-grid { grid-template-columns: 1fr; }
}

/* ─ Theme variants (controlled by Tweaks) ─ */
body[data-accent="sage"] {
  --gold: #7B8C5E;
  --gold-deep: #56673D;
  --gold-soft: #B9C49C;
  --gold-tint: #DCE2C9;
}
body[data-accent="ink"] {
  --gold: #2A3445;
  --gold-deep: #15192A;
  --gold-soft: #6E7A93;
  --gold-tint: #C9CED7;
}
body[data-accent="terra"] {
  --gold: #B5613D;
  --gold-deep: #8B4521;
  --gold-soft: #DFA887;
  --gold-tint: #F0D6C2;
}

body[data-bg="paper"] {
  --bone: #F6F1E8;
  --cream: #EDE6D8;
}
body[data-bg="snow"] {
  --bone: #FAFAF7;
  --cream: #EFEEEA;
}
body[data-bg="mist"] {
  --bone: #ECE7DC;
  --cream: #E3DCCC;
}
