/* =====================================================
   Maison Lumière — editorial beauty atelier
   Palette: warm cream, terracotta, deep ink, soft gold
   Type: Fraunces (display serif) + Manrope (body)
   ===================================================== */

@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;0,9..144,700;1,9..144,300;1,9..144,400&family=Manrope:wght@300;400;500;600;700&display=swap');

:root {
  --paper:      #f7f2ec;
  --paper-2:    #efe7da;
  --cream:      #faf6f0;
  --ink:        #1f1a16;
  --ink-soft:   #3a322c;
  --muted:      #7a6f63;
  --line:       #e2d6c4;
  --terracotta: #b85c3c;
  --terracotta-dark: #8e3f25;
  --rose:       #d4a59a;
  --gold:       #b08947;

  --container:  1200px;
  --radius:     2px;
  --ease:       cubic-bezier(.22,.61,.36,1);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: 'Manrope', -apple-system, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
  /* subtle paper noise */
  background-image:
    radial-gradient(at 15% 8%, rgba(184, 92, 60, 0.04) 0px, transparent 50%),
    radial-gradient(at 85% 90%, rgba(176, 137, 71, 0.05) 0px, transparent 50%);
}

img, svg { display: block; max-width: 100%; height: auto; }

/* Photo containers — fill 4/5 art blocks with object-fit cover */
.hero-art img,
.split-art img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Service card thumbnails: convert from icon to small photo card */
.service-card .art {
  flex: none;
  margin: 24px 0 28px;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 2px;
}
.service-card .art img {
  width: 100%;
  height: 100%;
  max-height: none !important;
  object-fit: cover;
  object-position: center;
  transition: transform .8s ease;
}
.service-card:hover .art img { transform: scale(1.03); }

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

/* ------- Typography ------- */
.serif { font-family: 'Fraunces', Georgia, serif; font-weight: 400; }
.italic { font-style: italic; }

h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.05;
  color: var(--ink);
}

h1 { font-size: clamp(2.6rem, 6.5vw, 5.6rem); font-variation-settings: "opsz" 144; }
h2 { font-size: clamp(2rem, 4.2vw, 3.4rem); font-variation-settings: "opsz" 96; }
h3 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); font-variation-settings: "opsz" 48; }

p { color: var(--ink-soft); max-width: 65ch; }

.eyebrow {
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 500;
}

.eyebrow::before {
  content: '— ';
  color: var(--terracotta);
}

/* ------- Layout ------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

section { padding: clamp(70px, 10vw, 130px) 0; position: relative; }

/* ------- Navigation ------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 242, 236, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-mark {
  width: 38px; height: 38px;
}
.brand-text {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.brand-text small {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  margin-top: 1px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
  padding: 4px 0;
  transition: color .25s var(--ease);
}
.nav-links a::after {
  content: '';
  position: absolute; left: 0; bottom: -2px;
  width: 0; height: 1px; background: var(--terracotta);
  transition: width .35s var(--ease);
}
.nav-links a:hover { color: var(--terracotta); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--terracotta); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--ink);
  color: var(--paper);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all .3s var(--ease);
  border: 1px solid var(--ink);
  cursor: pointer;
}
.btn:hover {
  background: var(--terracotta);
  border-color: var(--terracotta);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
}
.btn-ghost:hover {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.btn .arrow { transition: transform .3s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

.nav-cta { padding: 10px 22px; font-size: 11px; }

.menu-toggle { display: none; }

/* ------- Hero ------- */
.hero {
  padding-top: clamp(60px, 8vw, 110px);
  padding-bottom: clamp(60px, 8vw, 110px);
  position: relative;
  overflow: hidden;
}
.hero-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 32px;
  background: var(--cream);
}
.hero-tag .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--terracotta);
  display: inline-block;
}
.hero h1 {
  margin-bottom: 28px;
}
.hero h1 .accent {
  font-style: italic;
  color: var(--terracotta);
  font-weight: 300;
}
.hero-lead {
  font-size: 18px;
  line-height: 1.55;
  margin-bottom: 36px;
  max-width: 48ch;
  color: var(--ink-soft);
}
.hero-ctas {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-meta {
  display: flex;
  gap: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.hero-meta-item .num {
  font-family: 'Fraunces', serif;
  font-size: 38px;
  font-weight: 300;
  color: var(--terracotta);
  line-height: 1;
  display: block;
}
.hero-meta-item .label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 8px;
  display: block;
}
.hero-art {
  position: relative;
  aspect-ratio: 4 / 5;
}

/* ------- Marquee strip ------- */
.marquee {
  background: var(--ink);
  color: var(--paper);
  padding: 22px 0;
  overflow: hidden;
  position: relative;
}
.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: scroll 40s linear infinite;
}
.marquee-track span {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 28px;
  font-weight: 300;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  gap: 28px;
}
.marquee-track span::after {
  content: '✦';
  color: var(--terracotta);
  font-size: 14px;
  font-style: normal;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ------- Editorial split section ------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.split.reverse > :first-child { order: 2; }

.split-content .eyebrow { display: block; margin-bottom: 20px; }
.split-content h2 { margin-bottom: 28px; }
.split-content p + p { margin-top: 20px; }
.split-art { aspect-ratio: 4/5; position: relative; }

/* ------- Service cards (home preview) ------- */
.services-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 60px;
}
.service-card {
  position: relative;
  overflow: hidden;
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 40px;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
  display: flex;
  flex-direction: column;
  min-height: 460px;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -30px rgba(31, 26, 22, 0.18);
}
.service-card .index {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 16px;
  color: var(--terracotta);
  margin-bottom: 24px;
}
.service-card .art {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px 0 30px;
}
.service-card h3 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 12px;
  font-weight: 300;
}
.service-card h3 .italic { color: var(--terracotta); }
.service-card p {
  font-size: 14px;
  margin-bottom: 24px;
  color: var(--ink-soft);
}
.service-card .read-more {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  color: var(--ink);
  transition: gap .3s var(--ease);
}
.service-card .read-more:hover { gap: 16px; color: var(--terracotta); }

/* ------- Section header ------- */
.section-head {
  text-align: center;
  margin-bottom: 70px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.section-head .eyebrow { display: inline-block; margin-bottom: 20px; }
.section-head h2 .italic { color: var(--terracotta); font-weight: 300; }
.section-head p {
  margin: 24px auto 0;
  font-size: 17px;
}

/* ------- Testimonials ------- */
.testimonials {
  background: var(--paper-2);
  position: relative;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.testimonial {
  background: var(--cream);
  padding: 40px;
  border: 1px solid var(--line);
  position: relative;
}
.testimonial .quote-mark {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 60px;
  line-height: 1;
  color: var(--terracotta);
  position: absolute;
  top: 18px; right: 26px;
  opacity: 0.4;
}
.testimonial blockquote {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  line-height: 1.55;
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}
.testimonial cite {
  font-style: normal;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  display: block;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--ink);
}
.testimonial cite .role {
  display: block;
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--muted);
  margin-top: 4px;
  font-weight: 400;
}

/* ------- Page headers ------- */
.page-hero {
  padding-top: clamp(80px, 10vw, 140px);
  padding-bottom: clamp(40px, 6vw, 80px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero .breadcrumb {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
}
.page-hero .breadcrumb a:hover { color: var(--terracotta); }
.page-hero h1 {
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 300;
}
.page-hero h1 .italic { color: var(--terracotta); }
.page-hero .lead {
  margin: 30px auto 0;
  font-size: 18px;
  max-width: 620px;
}
.page-hero .ornament {
  display: block;
  margin: 32px auto 0;
  width: 60px;
  opacity: 0.6;
}

/* ------- Services page (price list) ------- */
.price-block {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 6vw, 90px);
  margin-bottom: 100px;
  align-items: start;
}
.price-block:last-child { margin-bottom: 0; }
.price-block-head { position: sticky; top: 100px; }
.price-block-head .index {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 14px;
  color: var(--terracotta);
  margin-bottom: 12px;
}
.price-block-head h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin-bottom: 20px;
  font-weight: 300;
}
.price-block-head h2 .italic { color: var(--terracotta); }
.price-block-head p { font-size: 15px; }

.price-list { list-style: none; }
.price-list li {
  display: flex;
  align-items: baseline;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  gap: 16px;
}
.price-list li:first-child { border-top: 1px solid var(--line); }
.price-list .item {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--ink);
}
.price-list .dots {
  flex: 1;
  border-bottom: 1px dotted var(--line);
  margin: 0 6px;
  transform: translateY(-5px);
}
.price-list .price {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--terracotta);
  white-space: nowrap;
}
.price-list .desc {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: var(--muted);
  margin-top: 4px;
  letter-spacing: 0;
  text-transform: none;
}

/* ------- Bridal page ------- */
.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}
.package {
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 44px 36px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all .4s var(--ease);
}
.package.featured {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.package.featured h3,
.package.featured .price-tag,
.package.featured ul li { color: var(--paper); }
.package.featured .price-tag .currency { color: var(--rose); }
.package.featured ul li::before { color: var(--terracotta); }

.package:hover { transform: translateY(-6px); }
.package .package-label {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 16px;
  font-weight: 500;
}
.package h3 {
  font-size: 28px;
  margin-bottom: 8px;
  font-weight: 400;
}
.package .subtitle {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 28px;
}
.package.featured .subtitle { color: var(--rose); }
.package .price-tag {
  font-family: 'Fraunces', serif;
  font-size: 56px;
  font-weight: 300;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 8px;
}
.package .price-tag .currency {
  font-size: 24px;
  vertical-align: super;
  color: var(--terracotta);
  margin-right: 4px;
}
.package .price-tag .per {
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  margin-left: 8px;
}
.package ul {
  list-style: none;
  margin: 32px 0;
  flex: 1;
}
.package ul li {
  padding: 10px 0 10px 24px;
  position: relative;
  font-size: 14px;
  border-bottom: 1px solid var(--line);
}
.package.featured ul li { border-color: rgba(247, 242, 236, 0.12); }
.package ul li:last-child { border-bottom: none; }
.package ul li::before {
  content: '✦';
  position: absolute; left: 0; top: 10px;
  color: var(--terracotta);
  font-size: 11px;
}
.package .btn { width: 100%; justify-content: center; }
.package.featured .btn { background: var(--terracotta); border-color: var(--terracotta); }
.package.featured .btn:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }

/* ------- Contact ------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.contact-info-block {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.contact-info-block:first-child { padding-top: 0; }
.contact-info-block .label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 10px;
  font-weight: 500;
}
.contact-info-block .value {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.4;
}
.contact-info-block .value a:hover { color: var(--terracotta); }
.contact-info-block .hours-row {
  display: flex;
  justify-content: space-between;
  font-family: 'Fraunces', serif;
  padding: 6px 0;
  font-size: 17px;
}
.contact-info-block .hours-row .day { color: var(--ink); }
.contact-info-block .hours-row .time { color: var(--muted); font-style: italic; font-weight: 300; }

.contact-form {
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 44px;
}
.contact-form h3 {
  font-size: 28px;
  margin-bottom: 28px;
  font-weight: 400;
}
.contact-form .field {
  margin-bottom: 20px;
}
.contact-form label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
  font-weight: 500;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  font-family: 'Fraunces', serif;
  font-size: 17px;
  color: var(--ink);
  outline: none;
  transition: border-color .3s var(--ease);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-bottom-color: var(--terracotta);
}
.contact-form textarea { min-height: 100px; resize: vertical; }
.contact-form .btn { margin-top: 12px; }

/* ------- CTA banner ------- */
.cta-banner {
  background: var(--ink);
  color: var(--paper);
  text-align: center;
  padding: clamp(70px, 10vw, 110px) 32px;
  position: relative;
  overflow: hidden;
}
.cta-banner h2 {
  color: var(--paper);
  font-size: clamp(2.4rem, 5.5vw, 4.4rem);
  font-weight: 300;
  margin-bottom: 28px;
}
.cta-banner h2 .italic { color: var(--rose); }
.cta-banner p {
  color: var(--rose);
  margin: 0 auto 36px;
  font-size: 17px;
}
.cta-banner .btn {
  background: var(--terracotta);
  border-color: var(--terracotta);
}
.cta-banner .btn:hover {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}
.cta-banner .ornament {
  position: absolute;
  opacity: 0.08;
  width: 360px;
}
.cta-banner .ornament.tl { top: -60px; left: -60px; }
.cta-banner .ornament.br { bottom: -60px; right: -60px; transform: rotate(180deg); }

/* ------- Footer ------- */
.footer {
  background: var(--paper-2);
  padding: 80px 0 30px;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}
.footer h4 {
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 22px;
  font-weight: 500;
  font-family: 'Manrope', sans-serif;
}
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; font-size: 14px; }
.footer ul li a { color: var(--ink-soft); transition: color .25s var(--ease); }
.footer ul li a:hover { color: var(--terracotta); }
.footer-brand p {
  font-size: 14px;
  margin-top: 18px;
  max-width: 32ch;
}
.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--muted);
  flex-wrap: wrap;
  gap: 14px;
}

/* ------- Floating ornaments ------- */
.ornament-fixed {
  position: absolute;
  pointer-events: none;
  opacity: 0.5;
  z-index: 0;
}

/* ------- Animations ------- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.fade-up.in {
  opacity: 1;
  transform: none;
}

/* ------- Responsive ------- */
@media (max-width: 900px) {
  .hero-grid, .split, .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .split.reverse > :first-child { order: 0; }
  .services-preview, .testimonial-grid, .package-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .price-block { grid-template-columns: 1fr; }
  .price-block-head { position: static; }
  .nav-links {
    position: fixed;
    inset: 70px 0 0 0;
    background: var(--paper);
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 60px;
    gap: 28px;
    transform: translateX(100%);
    transition: transform .4s var(--ease);
  }
  .nav-links.open { transform: none; }
  .nav-links a { font-size: 20px; }
  .menu-toggle {
    display: flex;
    background: transparent;
    border: none;
    width: 32px; height: 32px;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding: 0;
  }
  .menu-toggle span {
    display: block;
    width: 24px; height: 1.5px;
    background: var(--ink);
    transition: transform .3s var(--ease);
  }
  .menu-toggle.open span:first-child { transform: translateY(3px) rotate(45deg); }
  .menu-toggle.open span:last-child { transform: translateY(-4px) rotate(-45deg); }
}

@media (max-width: 600px) {
  .container, .nav-inner, .hero-grid { padding-left: 22px; padding-right: 22px; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-meta { flex-wrap: wrap; gap: 28px; }
  .testimonial, .package, .contact-form { padding: 28px; }
  .price-list .item { font-size: 18px; }
  .price-list .price { font-size: 17px; }
  .marquee-track span { font-size: 22px; padding: 0 18px; }
}
