/* ============================================================
   DEAR DARIA — Design System
   Swiss-crafted wedding stationery. Editorial, image-led, calm.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;0,9..144,600;1,9..144,400;1,9..144,500&family=Manrope:wght@400;500;600;700&display=swap');

:root {
  /* Color — botanical, Swiss, muted. No cream+terracotta cliche. */
  --ivory: #F6F2EA;
  --ivory-deep: #EFE9DC;
  --ink: #2B2822;
  --ink-soft: #57534A;
  --sage: #6B7B5E;
  --sage-deep: #4E5D44;
  --rosewood: #A06B76;
  --brass: #A3854E;
  --mist: #DBD6C9;
  --white: #FFFEFB;

  /* Type */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Manrope', -apple-system, sans-serif;

  --tracking-wide: 0.14em;

  /* Layout — wider usable width, tighter gutters than before */
  --gutter: clamp(20px, 4vw, 72px);
  --max-width: 1600px;
  --radius: 2px;

  /* Motion */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --dur: 0.4s;
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  font-style: normal;
  margin: 0;
  color: var(--ink);
  letter-spacing: -0.01em;
}

/* Italic reserved as a rare accent - the wordmark and a small number of
   hero/hand-picked moments only. Not the default heading style. */
.accent-italic { font-style: italic; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--sage-deep);
}

.eyebrow.rosewood { color: var(--rosewood); }
.eyebrow.brass { color: var(--brass); }

p { margin: 0; }

:focus-visible {
  outline: 2px solid var(--sage-deep);
  outline-offset: 3px;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section {
  padding: clamp(64px, 10vw, 140px) 0;
}
.section.tight { padding: clamp(40px, 6vw, 80px) 0; }
.section.border-top { border-top: 1px solid var(--mist); }

/* ============ NAV ============ */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246, 242, 234, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--mist);
}
.site-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.nav-links {
  display: flex;
  gap: clamp(16px, 3vw, 40px);
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  transition: color 0.25s var(--ease);
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--sage-deep);
  border-bottom-color: var(--sage-deep);
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle svg { width: 22px; height: 22px; }

.nav-lang { display: flex; align-items: center; gap: 2px; margin-left: 8px; }
.lang-btn {
  background: none; border: none; cursor: pointer; font-family: var(--font-body);
  font-size: 11px; font-weight: 700; letter-spacing: 0.04em; color: var(--ink-soft);
  padding: 6px 8px; transition: color 0.2s var(--ease);
}
.lang-btn:not(:last-child)::after { content: '/'; margin-left: 8px; color: var(--mist); }
.lang-btn.active, .lang-btn:hover { color: var(--sage-deep); }
.lang-btn.active { font-weight: 800; }

@media (max-width: 860px) {
  .site-nav .nav-consult-cta { display: none; }
  .nav-lang { margin-left: 0; order: 3; }
}

@media (max-width: 860px) {
  .nav-links {
    position: fixed;
    inset: 84px 0 0 0;
    height: calc(100vh - 84px);
    background: var(--ivory);
    flex-direction: column;
    padding: 32px var(--gutter);
    gap: 24px;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
  }
  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .nav-links a { font-size: 15px; }
  .nav-toggle { display: block; }
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 15px 30px;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.btn:hover { background: var(--ink); color: var(--white); }

.btn.primary { background: var(--sage-deep); border-color: var(--sage-deep); color: var(--white); }
.btn.primary:hover { background: var(--ink); border-color: var(--ink); }

.btn.ghost { border-color: var(--mist); color: var(--ink-soft); }
.btn.ghost:hover { border-color: var(--ink); background: transparent; color: var(--ink); }

.btn-row { display: flex; gap: 16px; flex-wrap: wrap; }

/* ============ HERO ============ */
.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: stretch;
  min-height: 88vh;
}
.hero-media { position: relative; overflow: hidden; background: var(--ivory-deep); }
.hero-media img {
  width: 100%; height: 100%; object-fit: cover;
  animation: hero-reveal 1.4s var(--ease) both;
}
@keyframes hero-reveal {
  from { opacity: 0; transform: scale(1.04); }
  to { opacity: 1; transform: scale(1); }
}
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
  padding: clamp(40px, 6vw, 96px);
}
.hero-copy h1 {
  font-size: clamp(40px, 5.4vw, 76px);
  font-style: italic;
  line-height: 1.05;
}
.hero-copy .lede {
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 40ch;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-media { height: 62vh; }
  .hero-copy { padding: 40px var(--gutter) 56px; }
}

/* ============ SECTION HEADERS ============ */
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  margin-bottom: clamp(32px, 5vw, 64px);
}
.section-head h2 {
  font-size: clamp(30px, 3.4vw, 48px);
  font-style: italic;
}
.section-head .lede { max-width: 46ch; color: var(--ink-soft); font-size: 15px; margin-top: 12px; }

@media (max-width: 700px) {
  .section-head { flex-direction: column; align-items: flex-start; }
}

/* ============ CARD GRID + SIGNATURE UNFOLD REVEAL ============ */
.grid {
  display: grid;
  gap: clamp(20px, 3vw, 40px);
}
.grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid.cols-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 980px) {
  .grid.cols-3, .grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .grid.cols-2, .grid.cols-3, .grid.cols-4 { grid-template-columns: 1fr; }
}

.card { display: block; color: inherit; }
.card-media {
  position: relative; overflow: hidden; background: var(--ivory-deep); aspect-ratio: 4 / 5;
}
.card-media img {
  width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease);
}
.card:hover .card-media img { transform: scale(1.035); }

.card-hover-caption {
  position: absolute; inset: auto 0 0 0; padding: 22px 20px 18px;
  background: linear-gradient(to top, rgba(43,40,34,0.55), transparent 75%);
  color: var(--white); opacity: 0; transform: translateY(6px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
@media (hover: hover) and (pointer: fine) { .card:hover .card-hover-caption { opacity: 1; transform: translateY(0); } }
.card-hover-caption .unfold-rule {
  width: 0; height: 1px; background: var(--white); margin-bottom: 10px;
  transition: width 0.5s var(--ease) 0.05s;
}
.card:hover .card-hover-caption .unfold-rule { width: 32px; }
.card-hover-caption .name { font-family: var(--font-display); font-style: italic; font-size: 19px; }
.card-hover-caption .view { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.85; margin-top: 4px; }

.card-caption-static { padding-top: 14px; }
.card-caption-static .name { font-family: var(--font-display); font-size: 18px; font-style: italic; }
.card-caption-static .meta { font-size: 12px; color: var(--ink-soft); margin-top: 3px; letter-spacing: 0.03em; }

@media (hover: hover) and (pointer: fine) { .card-caption-static { display: none; } }
@media not all and (hover: hover) and (pointer: fine) { .card-hover-caption { display: none; } }

/* ============ EDITORIAL SPLIT ROW ============ */
.split-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 72px); align-items: center;
}
.split-row.reverse { direction: rtl; }
.split-row.reverse > * { direction: ltr; }
.split-row .media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.split-row .copy .eyebrow { margin-bottom: 14px; display: block; }
.split-row .copy h2 { font-size: clamp(28px, 3.2vw, 42px); font-style: italic; margin-bottom: 20px; }
.split-row .copy p { color: var(--ink-soft); margin-bottom: 28px; max-width: 46ch; }

@media (max-width: 860px) {
  .split-row { grid-template-columns: 1fr; }
  .split-row.reverse { direction: ltr; }
}

/* ============ PROCESS STEPS ============ */
.process-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.process-step .num { font-family: var(--font-display); font-style: italic; font-size: 15px; color: var(--brass); margin-bottom: 14px; }
.process-step h3 { font-size: 19px; margin-bottom: 10px; font-style: italic; }
.process-step p { color: var(--ink-soft); font-size: 14px; }
@media (max-width: 860px) { .process-list { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .process-list { grid-template-columns: 1fr; } }

/* ============ FOOTER ============ */
.site-footer { border-top: 1px solid var(--mist); padding: 64px 0 40px; background: var(--ivory-deep); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand .nav-logo { display: block; margin-bottom: 14px; }
.footer-brand p { color: var(--ink-soft); font-size: 14px; max-width: 32ch; }
.footer-col h4 { font-family: var(--font-body); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 16px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14px; color: var(--ink); transition: color 0.2s var(--ease); }
.footer-col a:hover { color: var(--sage-deep); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; border-top: 1px solid var(--mist); font-size: 12px; color: var(--ink-soft); }
@media (max-width: 860px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; gap: 8px; align-items: flex-start; }
}

/* ============ FILTER BAR (shop) ============ */
.filter-bar { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: clamp(32px, 5vw, 56px); }
.filter-pill {
  font-size: 12px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase;
  padding: 9px 18px; border: 1px solid var(--mist); background: transparent; cursor: pointer;
  color: var(--ink-soft); transition: all 0.25s var(--ease);
}
.filter-pill:hover { border-color: var(--ink); color: var(--ink); }
.filter-pill.active { background: var(--ink); border-color: var(--ink); color: var(--white); }

/* ============ PRODUCT / COLLECTION DETAIL ============ */
.detail-hero { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px,4vw,64px); align-items: center; }
.detail-hero .media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.detail-hero .copy .eyebrow { margin-bottom: 16px; display: block; }
.detail-hero .copy h1 { font-size: clamp(32px, 4vw, 56px); font-style: italic; margin-bottom: 20px; }
.detail-hero .copy p.desc { color: var(--ink-soft); max-width: 46ch; margin-bottom: 28px; line-height: 1.75; }
.price-tag { font-family: var(--font-display); font-size: 22px; margin-bottom: 20px; color: var(--ink); }
@media (max-width: 860px) { .detail-hero { grid-template-columns: 1fr; } }

.gallery-strip { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; }
.gallery-strip img { width: 100%; aspect-ratio: 4/5; object-fit: cover; cursor: zoom-in; transition: opacity 0.3s var(--ease); }
.gallery-strip img:hover { opacity: 0.88; }

.pieces-list { display: flex; flex-direction: column; gap: 0; margin-top: 8px; }
.piece-row { display: flex; justify-content: space-between; align-items: center; padding: 18px 0; border-bottom: 1px solid var(--mist); }
.piece-row .piece-name { font-size: 15px; }
.piece-row .piece-price { font-family: var(--font-display); font-style: italic; color: var(--ink-soft); }

/* ============ MAKE IT YOURS ============ */
.myo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.myo-card.custom-card { padding: 40px 36px; }
.myo2-eyebrow { white-space: nowrap; }

.myo-premium {
  grid-column: 1 / -1;
  background: var(--ink);
  color: var(--ivory);
  padding: clamp(40px, 5vw, 72px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 4vw, 64px);
  align-items: start;
  position: relative;
  border: 1px solid var(--ink);
}
.myo-premium::before {
  content: '';
  position: absolute; inset: 10px;
  border: 1px solid rgba(163, 133, 78, 0.35);
  pointer-events: none;
}
.myo-premium .eyebrow.brass { color: #C9AD74; margin-bottom: 18px; display: block; }
.myo-premium h3 {
  font-size: clamp(28px, 3vw, 40px);
  font-style: italic;
  color: var(--ivory);
  margin-bottom: 18px;
  grid-column: 1 / -1;
}
.myo-premium-text {
  color: rgba(246, 242, 234, 0.82);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 8px;
}
.myo-includes-label {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #C9AD74;
  margin-bottom: 16px;
}
.myo-includes-list {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  display: grid;
  gap: 12px;
}
.myo-includes-list li {
  font-size: 14px;
  color: rgba(246, 242, 234, 0.9);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}
.myo-includes-list li::before {
  content: '';
  position: absolute; left: 0; top: 8px;
  width: 6px; height: 1px;
  background: #C9AD74;
}
.myo-cta {
  background: #C9AD74 !important;
  border-color: #C9AD74 !important;
  color: var(--ink) !important;
}
.myo-cta:hover { background: var(--ivory) !important; border-color: var(--ivory) !important; }

@media (max-width: 860px) {
  .myo-grid { grid-template-columns: 1fr; }
  .myo-premium { grid-template-columns: 1fr; }
}
.custom-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.custom-card { padding: 40px 32px; background: var(--white); border: 1px solid var(--mist); }
.custom-card .eyebrow { margin-bottom: 16px; display: block; }
.custom-card h3 { font-size: 22px; font-style: italic; margin-bottom: 14px; }
.custom-card p { color: var(--ink-soft); font-size: 14px; }
@media (max-width: 860px) { .custom-grid { grid-template-columns: 1fr; } }

/* ============ FAQ ============ */
.faq-item { border-bottom: 1px solid var(--mist); padding: 24px 0; }
.faq-item summary {
  cursor: pointer; font-family: var(--font-display); font-size: 18px; font-style: italic;
  list-style: none; display: flex; justify-content: space-between; align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-family: var(--font-body); font-size: 20px; color: var(--brass); transition: transform 0.3s var(--ease); }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { margin-top: 14px; color: var(--ink-soft); font-size: 14px; max-width: 60ch; line-height: 1.7; }

/* ============ FORM ============ */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-grid .full { grid-column: 1 / -1; }
.field label { display: block; font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%; border: 1px solid var(--mist); background: var(--white);
  padding: 13px 14px; font-family: var(--font-body); font-size: 14px; color: var(--ink);
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--sage-deep); }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }

/* ============ MISC ============ */
.tag-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 8px; }
.tag { font-size: 11px; letter-spacing: 0.05em; text-transform: uppercase; color: var(--ink-soft); border: 1px solid var(--mist); padding: 5px 12px; }
.divider { height: 1px; background: var(--mist); border: none; margin: 0; }
.empty-state { text-align: center; padding: 80px 20px; color: var(--ink-soft); }
.empty-state h3 { font-style: italic; margin-bottom: 10px; color: var(--ink); }
.breadcrumb { font-size: 12px; color: var(--ink-soft); margin-bottom: 24px; letter-spacing: 0.02em; }
.breadcrumb a { color: var(--ink-soft); }
.breadcrumb a:hover { color: var(--sage-deep); }
.lazy-img { opacity: 0; transition: opacity 0.5s var(--ease); }
.lazy-img.loaded { opacity: 1; }

/* ============ CONSULTATION FORM ============ */
.consult-form { max-width: 780px; }
.cf-design-banner {
  background: var(--ivory-deep); border: 1px solid var(--mist);
  padding: 14px 18px; margin-bottom: 24px; font-size: 14px;
}
.piece-check-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 8px; }
.piece-check { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--ink-soft); }
.piece-check input { width: 16px; height: 16px; }
.consent-row { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--ink-soft); }
.consent-row input { margin-top: 3px; }
.cf-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }
.cf-validation-note, .cf-success-note { font-size: 13px; margin-top: 12px; }
.cf-validation-note { color: var(--rosewood); }
.cf-success-note { color: var(--sage-deep); }

/* ============ DESIGN-PRESENTATION GALLERY CARD (no prices) ============ */
.design-card-meta { padding-top: 14px; }
.design-card-meta .name { font-family: var(--font-display); font-size: 18px; font-style: italic; }
.design-card-meta .type-row { display: flex; align-items: center; gap: 8px; margin-top: 4px; }
.design-card-meta .type { font-size: 12px; color: var(--ink-soft); }
.badge-personalisable {
  font-size: 10px; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--sage-deep); border: 1px solid var(--sage-deep); padding: 2px 8px;
}
.photos-example-note {
  font-size: 12px; color: var(--ink-soft); font-style: italic;
  border-top: 1px solid var(--mist); padding-top: 14px; margin-top: 20px; max-width: 60ch;
}

/* ============ COMPACT 5-STEP PROCESS ============ */
.process5-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.process5-grid .step { padding: 20px 16px; background: var(--white); border: 1px solid var(--mist); }
.process5-grid .step .num { font-family: var(--font-display); font-style: italic; font-size: 20px; color: var(--brass); margin-bottom: 10px; }
.process5-grid .step h4 { font-size: 14.5px; margin-bottom: 8px; }
.process5-grid .step p { font-size: 12.5px; color: var(--ink-soft); line-height: 1.6; }
@media (max-width: 980px) { .process5-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .process5-grid { grid-template-columns: 1fr; } }

/* ============ CONTROLLED CONTENT WIDTH ============ */
.container-narrow { max-width: 1260px; margin: 0 auto; padding: 0 var(--gutter); }

/* ============ REDIRECT NOTICE ============ */
.redirect-notice { text-align: center; padding: 100px 20px; }

/* ============ CONTROLLED SINGLE-IMAGE HERO (600-680px) ============ */
.hero-controlled {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  height: clamp(560px, 62vw, 680px);
  min-height: 560px;
}
.hero-controlled .hc-media { overflow: hidden; background: var(--ivory-deep); height: 100%; }
.hero-controlled .hc-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-controlled .hc-copy {
  display: flex; flex-direction: column; justify-content: center; gap: 22px;
  padding: 40px clamp(24px, 4vw, 64px);
}
.hero-controlled .hc-copy h1 { font-size: clamp(30px, 3.2vw, 44px); font-style: italic; line-height: 1.12; max-width: 15ch; }
.hero-controlled .hc-copy .lede { font-size: 15.5px; color: var(--ink-soft); max-width: 40ch; line-height: 1.7; }
@media (max-width: 900px) {
  .hero-controlled { grid-template-columns: 1fr; height: auto; }
  .hero-controlled .hc-media { height: 46vh; min-height: 320px; }
}

/* ============ FINAL CONTACT BANNER (before footer) ============ */
.contact-banner {
  background: var(--ivory-deep);
  text-align: center;
  padding: 56px 20px;
}
.contact-banner h2 { font-size: clamp(24px, 2.6vw, 32px); font-style: italic; margin-bottom: 14px; }
.contact-banner p { color: var(--ink-soft); font-size: 14.5px; margin-bottom: 22px; max-width: 52ch; margin-left: auto; margin-right: auto; }

.nav-mobile-cta { display: none; }
@media (max-width: 860px) {
  .nav-mobile-cta { display: block; margin-top: 8px; }
  .nav-mobile-cta .btn { width: 100%; justify-content: center; }
}

.nav-consult-cta { white-space: nowrap; font-size: 11.5px !important; padding: 11px 18px !important; }

/* ============ CRÉATION SUR MESURE (dark, proportionate, never oversized) ============ */
.custom-dark-section {
  background: var(--accent-deep, #16212F);
  color: var(--ivory);
}
.custom-dark-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
}
.custom-dark-grid .media {
  overflow: hidden;
  max-width: 420px;
  margin: 0 auto;
}
.custom-dark-grid .media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  max-height: 480px;
  display: block;
}
.custom-dark-grid .copy .eyebrow { color: #C9AD74; opacity: 1; margin-bottom: 16px; display: block; }
.custom-dark-grid .copy h2 { color: var(--ivory); font-size: clamp(28px, 3vw, 40px); margin-bottom: 18px; }
.custom-dark-grid .copy p { color: rgba(246,242,234,0.85); font-size: 15px; line-height: 1.8; margin-bottom: 26px; max-width: 48ch; }
.custom-dark-grid .btn.primary { background: #C9AD74; border-color: #C9AD74; color: var(--accent-deep, #16212F); }
.custom-dark-grid .btn.primary:hover { background: var(--ivory); border-color: var(--ivory); }
@media (max-width: 860px) {
  .custom-dark-grid { grid-template-columns: 1fr; }
  .custom-dark-grid .media { max-width: 320px; }
}
