/* MLuppens — UI kit base */
@import url('colors_and_type.css');

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--linen); color: var(--ink); font-family: var(--font-body); -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
img { display: block; max-width: 100%; }

.app { min-height: 100vh; }

/* HEADER ──────────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  height: var(--nav-h); padding: 0 40px;
  background: rgba(247, 242, 236, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.site-header.scrolled { border-bottom-color: var(--hair); }
.brand-mark { font-family: var(--font-display); font-style: italic; font-weight: 300; font-size: 26px; line-height: 1; color: var(--ink); cursor: pointer; }
.brand-mark .sub { display: block; font-family: var(--font-body); font-style: normal; font-weight: 500; font-size: 9px; letter-spacing: 0.42em; color: var(--ink-soft); margin-top: 4px; }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-link {
  font-family: var(--font-body); font-weight: 500; font-size: 11px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink); cursor: pointer; padding: 6px 0;
  position: relative; transition: color .2s var(--ease);
}
.nav-link::after { content: ""; position: absolute; left: 50%; bottom: 0; height: 1px; width: 0; background: var(--amber); transition: all .25s var(--ease); }
.nav-link:hover { color: var(--amber); }
.nav-link:hover::after { width: 100%; left: 0; }
.nav-link.active::after { width: 100%; left: 0; background: var(--ink); }
.nav-link.active:hover::after { background: var(--amber); }

.nav-cta {
  font-family: var(--font-body); font-weight: 500; font-size: 11px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--linen); background: var(--ink); padding: 12px 20px;
  border: 0; cursor: pointer; transition: background .2s var(--ease);
}
.nav-cta:hover { background: #4b443d; }

.lang-toggle {
  display: flex; align-items: center; gap: 6px;
  font-family: var(--font-body); font-size: 11px; letter-spacing: 0.18em;
  color: var(--ink-mute);
}
.lang-toggle span { cursor: pointer; padding: 4px 2px; transition: color .2s; }
.lang-toggle span.on { color: var(--ink); }
.lang-toggle span:hover { color: var(--amber); }
.lang-toggle .sep { color: var(--ink-mute); cursor: default; }
.lang-toggle .sep:hover { color: var(--ink-mute); }

/* FOOTER ──────────────────────────────────────────────────── */
.site-footer { background: var(--bone); padding: 80px 40px 32px; border-top: 1px solid var(--hair); margin-top: 96px; }
.footer-grid { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 56px; border-bottom: 1px solid var(--hair); }
.footer-brand { font-family: var(--font-display); font-style: italic; font-weight: 300; font-size: 32px; color: var(--ink); line-height: 1; }
.footer-brand .sub { display: block; font-family: var(--font-body); font-style: normal; font-weight: 500; font-size: 10px; letter-spacing: 0.42em; color: var(--ink-soft); margin-top: 8px; }
.footer-tagline { margin-top: 16px; font-family: var(--font-display); font-style: italic; font-size: 17px; color: var(--ink-soft); line-height: 1.5; max-width: 32ch; }
.footer-col h4 { font-family: var(--font-body); font-weight: 500; font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink); margin: 0 0 16px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 8px; font-size: 14px; color: var(--ink-soft); cursor: pointer; transition: color .2s; }
.footer-col li:hover { color: var(--amber); }
.footer-bottom { max-width: var(--max-w); margin: 0 auto; padding-top: 24px; display: flex; align-items: center; justify-content: space-between; }
.footer-copy { font-family: var(--font-body); font-size: 11px; color: var(--ink-mute); letter-spacing: 0.04em; }
.footer-socials { display: flex; gap: 14px; align-items: center; }
.footer-socials img { width: 18px; height: 18px; opacity: 0.7; transition: opacity .2s; }
.footer-socials img:hover { opacity: 1; }
.footer-signature { font-family: var(--font-script); font-size: 32px; color: var(--ink); }

/* BUTTONS ─────────────────────────────────────────────────── */
.btn {
  font-family: var(--font-body); font-weight: 500; font-size: 11px;
  letter-spacing: 0.22em; text-transform: uppercase;
  padding: 16px 32px; cursor: pointer; transition: all .25s var(--ease);
  border: 1px solid var(--ink); background: var(--ink); color: var(--linen);
  display: inline-flex; align-items: center; gap: 10px;
}
.btn:hover { background: #4b443d; border-color: #4b443d; }
.btn-rule { background: transparent; color: var(--ink); }
.btn-rule:hover { background: var(--ink); color: var(--linen); }
.btn-ghost { background: transparent; color: var(--linen); border-color: rgba(247,242,236,.7); }
.btn-ghost:hover { background: rgba(247,242,236,.12); border-color: var(--linen); }
.btn-text-link {
  background: none; border: 0; padding: 8px 0;
  font-family: var(--font-body); font-weight: 500; font-size: 12px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink); cursor: pointer; position: relative;
  display: inline-flex; align-items: center; gap: 10px;
}
.btn-text-link::after { content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 1px; background: var(--ink); transition: background .2s; }
.btn-text-link:hover { color: var(--amber); }
.btn-text-link:hover::after { background: var(--amber); }
.btn-text-link.on-dark { color: var(--linen); }
.btn-text-link.on-dark::after { background: var(--linen); }
.btn-text-link.on-dark:hover { color: var(--blush); }
.btn-text-link.on-dark:hover::after { background: var(--blush); }

/* TYPE HELPERS ────────────────────────────────────────────── */
.eyebrow { font-family: var(--font-body); font-weight: 500; font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--ink-soft); }
.eyebrow.amber { color: var(--amber); }
.eyebrow.light { color: rgba(247,242,236,0.85); }
.display { font-family: var(--font-display); font-weight: 300; font-style: italic; font-size: clamp(48px, 7vw, 96px); line-height: 1.05; letter-spacing: -0.012em; color: var(--ink); margin: 0; }
.h1 { font-family: var(--font-display); font-weight: 400; font-size: clamp(36px, 4.5vw, 56px); line-height: 1.12; letter-spacing: -0.01em; color: var(--ink); margin: 0; }
.h2 { font-family: var(--font-display); font-weight: 400; font-size: clamp(28px, 3.2vw, 40px); line-height: 1.18; color: var(--ink); margin: 0; }
.h3 { font-family: var(--font-display); font-weight: 500; font-style: italic; font-size: 22px; line-height: 1.25; color: var(--ink); margin: 0; }
.body { font-family: var(--font-body); font-weight: 400; font-size: 16px; line-height: 1.75; color: var(--ink); margin: 0; }
.body-lg { font-family: var(--font-body); font-weight: 400; font-size: 18px; line-height: 1.7; color: var(--ink); margin: 0; }
.small { font-family: var(--font-body); font-size: 13px; line-height: 1.55; color: var(--ink-soft); margin: 0; }
.script { font-family: var(--font-script); font-size: 64px; line-height: 1.1; color: var(--ink); }
.italic { font-style: italic; color: var(--ink-soft); }
.on-dark { color: var(--linen); }
.on-dark .italic { color: rgba(247,242,236,.8); }
.on-dark.body, .body.on-dark { color: rgba(247,242,236,.92); }

/* LAYOUT ──────────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 40px; }
.narrow { max-width: 720px; margin: 0 auto; }
.section { padding: 96px 0; }
.section-tight { padding: 56px 0; }
.section-bone { background: var(--bone); }
.section-blush { background: var(--blush); }
.section-dark { background: var(--ink); color: var(--linen); }
.divider-rule { display: block; width: 32px; height: 1px; background: var(--amber); border: 0; margin: 24px 0; }
.divider-rule.center { margin-inline: auto; }

/* HERO ────────────────────────────────────────────────────── */
.hero { position: relative; min-height: 92vh; display: flex; align-items: flex-end; padding: 80px 40px; overflow: hidden; background: var(--ink); }
.hero-img { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; animation: heroFade 1200ms var(--ease) forwards; }
.hero-img.bw { filter: grayscale(1); }
@keyframes heroFade { from { opacity: 0; transform: scale(1.03); } to { opacity: 1; transform: scale(1); } }
.hero-img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(26,24,22,.30) 0%, rgba(26,24,22,0) 30%, rgba(26,24,22,0) 55%, rgba(26,24,22,.65) 100%); }
.hero-inner { position: relative; z-index: 1; color: var(--linen); max-width: var(--max-w); margin: 0 auto; width: 100%; }
.hero-eyebrow { font-family: var(--font-body); font-weight: 500; font-size: 11px; letter-spacing: 0.42em; text-transform: uppercase; color: rgba(247,242,236,.85); margin-bottom: 20px; }
.hero-title { font-family: var(--font-display); font-weight: 300; font-style: italic; font-size: clamp(64px, 11vw, 168px); line-height: 0.94; letter-spacing: -0.025em; margin: 0; color: var(--linen); text-wrap: balance; }

/* Editorial all-caps hero — for the "VISUAL STORYTELLER" magazine-cover headline */
.hero-headline-caps {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: normal;
  font-size: clamp(48px, 8.5vw, 140px);
  line-height: 0.94;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  margin: 0;
  color: var(--linen);
  text-wrap: balance;
}
.hero-headline-caps em {
  font-style: italic;
  font-weight: 300;
  text-transform: none;
  letter-spacing: -0.01em;
}
.hero-meta { margin-top: 28px; display: flex; gap: 32px; align-items: center; flex-wrap: wrap; }
.hero-meta-item { font-family: var(--font-body); font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(247,242,236,.85); }
.hero-scroll { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); z-index: 1; font-family: var(--font-body); font-size: 10px; letter-spacing: 0.4em; text-transform: uppercase; color: rgba(247,242,236,.7); display: flex; flex-direction: column; align-items: center; gap: 12px; }
.hero-scroll-line { width: 1px; height: 36px; background: rgba(247,242,236,.5); animation: scrollPulse 2s var(--ease) infinite; }
@keyframes scrollPulse { 0% { transform: scaleY(0.3); transform-origin: top; } 50% { transform: scaleY(1); } 100% { transform: scaleY(0.3); transform-origin: bottom; } }

/* PHOTO GRID ──────────────────────────────────────────────── */
.photo-tile { position: relative; overflow: hidden; cursor: pointer; background: var(--ink); }
.photo-tile-img { width: 100%; height: 100%; background-size: cover; background-position: center; transition: transform .8s var(--ease), filter .6s var(--ease); }
.photo-tile.bw .photo-tile-img { filter: grayscale(1); }
.photo-tile:hover .photo-tile-img { transform: scale(1.04); }
.photo-tile-overlay {
  position: absolute; inset: 0; padding: 24px;
  display: flex; flex-direction: column; justify-content: flex-end;
  background: linear-gradient(to top, rgba(46,42,38,.55) 0%, rgba(46,42,38,0) 50%);
  color: var(--linen);
  opacity: 0; transition: opacity .35s var(--ease);
}
.photo-tile:hover .photo-tile-overlay { opacity: 1; }
.photo-tile-title { font-family: var(--font-display); font-style: italic; font-weight: 300; font-size: 28px; line-height: 1; margin: 0 0 6px; }
.photo-tile-meta { font-family: var(--font-body); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; }

/* FORM ────────────────────────────────────────────────────── */
.form-field { margin-bottom: 22px; }
.form-field label { display: block; font-family: var(--font-body); font-weight: 500; font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 8px; }
.form-field input, .form-field textarea, .form-field select {
  width: 100%; padding: 14px 16px;
  font-family: var(--font-body); font-size: 15px; color: var(--ink);
  background: transparent; border: 1px solid var(--hair); border-radius: 2px;
  transition: border-color .2s var(--ease);
}
.form-field input::placeholder, .form-field textarea::placeholder { color: var(--ink-mute); font-style: italic; }
.form-field input:focus, .form-field textarea:focus, .form-field select:focus { outline: none; border-color: var(--ink); }
.form-field textarea { min-height: 120px; resize: vertical; line-height: 1.55; }
.form-field select {
  appearance: none; -webkit-appearance: none; -moz-appearance: none;
  padding-right: 44px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' fill='none' stroke='%231A1816' stroke-width='1' stroke-linecap='square'><path d='M1 1.5 L6 6.5 L11 1.5'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px 8px;
  cursor: pointer;
  line-height: 1.4;
}
.form-field select[data-empty="true"] { color: var(--ink-mute); font-style: italic; }
.form-field select option { color: var(--ink); font-style: normal; background: var(--linen); }
.form-field select option[disabled] { color: var(--ink-mute); }
.form-helper { font-family: var(--font-body); font-size: 12px; color: var(--ink-mute); margin-top: 6px; font-style: italic; }

/* PACKAGES ───────────────────────────────────────────────── */
.package-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--hair); border-bottom: 1px solid var(--hair); }
.package { padding: 56px 36px; border-right: 1px solid var(--hair); display: flex; flex-direction: column; transition: background .3s var(--ease); }
.package:last-child { border-right: 0; }
.package:hover { background: var(--bone); }
.package.featured { background: var(--bone); }
.package.featured:hover { background: var(--blush); }
.package-tag { font-family: var(--font-body); font-weight: 500; font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--amber); margin-bottom: 14px; }
.package-name { font-family: var(--font-display); font-style: italic; font-weight: 300; font-size: 40px; line-height: 1; color: var(--ink); margin: 0 0 20px; }
.package-price { font-family: var(--font-display); font-size: 22px; color: var(--ink-soft); margin-bottom: 28px; }
.package-price b { color: var(--ink); font-weight: 500; }
.package-list { list-style: none; padding: 0; margin: 0 0 32px; flex: 1; }
.package-list li { font-family: var(--font-body); font-size: 14px; color: var(--ink); padding: 10px 0; border-bottom: 1px solid var(--hair); display: flex; align-items: baseline; gap: 12px; }
.package-list li::before { content: "—"; color: var(--amber); flex: none; }

/* TESTIMONIAL ─────────────────────────────────────────────── */
.testimonial { padding: 24px 0; }
.testimonial-quote { font-family: var(--font-display); font-style: italic; font-weight: 300; font-size: clamp(24px, 2.6vw, 34px); line-height: 1.4; color: var(--ink); margin: 0 0 24px; }
.testimonial-attr { font-family: var(--font-body); font-weight: 500; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-soft); }
.testimonial-attr .location { color: var(--ink-mute); margin-left: 12px; }

/* TIMELINE (an average day) ──────────────────────────────── */
.timeline { display: grid; grid-template-columns: 110px 1fr; gap: 36px; }
.timeline-time { font-family: var(--font-display); font-style: italic; font-weight: 300; font-size: 32px; color: var(--amber); line-height: 1; padding-top: 6px; }
.timeline-row { display: contents; }
.timeline-content { padding: 0 0 48px; border-left: 1px solid var(--hair); padding-left: 28px; position: relative; }
.timeline-content::before { content: ""; position: absolute; left: -4px; top: 12px; width: 7px; height: 7px; background: var(--ink); border-radius: 50%; }
.timeline-content:last-child { padding-bottom: 0; }
.timeline-title { font-family: var(--font-display); font-style: italic; font-weight: 400; font-size: 22px; color: var(--ink); margin: 0 0 8px; }
.timeline-body { font-family: var(--font-body); font-size: 14px; line-height: 1.65; color: var(--ink-soft); margin: 0; }

/* FAQ ─────────────────────────────────────────────────────── */
.faq-item { border-bottom: 1px solid var(--hair); padding: 24px 0; cursor: pointer; }
.faq-q { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.faq-q-text { font-family: var(--font-display); font-style: italic; font-weight: 400; font-size: 22px; line-height: 1.3; color: var(--ink); margin: 0; }
.faq-toggle { font-family: var(--font-display); font-size: 24px; color: var(--amber); flex: none; transition: transform .25s var(--ease); }
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-a { font-family: var(--font-body); font-size: 15px; line-height: 1.7; color: var(--ink-soft); max-height: 0; overflow: hidden; transition: max-height .35s var(--ease), margin .25s var(--ease); margin-top: 0; }
.faq-item.open .faq-a { max-height: 400px; margin-top: 16px; }

/* PROCESS STEPS ───────────────────────────────────────────── */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 48px; }
.step-num { font-family: var(--font-display); font-style: italic; font-weight: 300; font-size: 64px; line-height: 1; color: var(--amber); margin-bottom: 18px; }
.step-title { font-family: var(--font-display); font-style: italic; font-weight: 400; font-size: 22px; color: var(--ink); margin: 0 0 12px; }
.step-body { font-family: var(--font-body); font-size: 14px; line-height: 1.65; color: var(--ink-soft); margin: 0; }

/* MARQUEE-STYLE BRAND LINE ───────────────────────────────── */
.brand-strip { padding: 28px 0; background: var(--ink); color: var(--linen); overflow: hidden; }
.brand-strip-inner { display: flex; gap: 56px; align-items: center; white-space: nowrap; }
.brand-strip-item { font-family: var(--font-display); font-style: italic; font-weight: 300; font-size: 26px; color: var(--linen); }
.brand-strip-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--amber); flex: none; }

/* RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 880px) {
  .nav-links { display: none; }
  .site-header { padding: 0 24px; }
  .container { padding: 0 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .package-grid { grid-template-columns: 1fr; }
  .package { border-right: 0; border-bottom: 1px solid var(--hair); }
  .steps-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .timeline { grid-template-columns: 1fr; gap: 8px; }
  .timeline-content { border-left: 0; padding-left: 0; padding-bottom: 32px; }
  .timeline-content::before { display: none; }
}
