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

:root {
  --pink-pale:    oklch(94% 0.025 15);
  --pink-mid:     oklch(86% 0.055 18);
  --pink-deep:    oklch(72% 0.09 18);
  --pink-accent:  oklch(60% 0.12 16);
  --warm-white:   oklch(98% 0.008 50);
  --warm-off:     oklch(96% 0.012 40);
  --warm-dark:    oklch(22% 0.02 20);
  --warm-mid:     oklch(50% 0.02 20);
  --warm-light:   oklch(78% 0.015 20);

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'DM Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--warm-white);
  color: var(--warm-dark);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.65;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 5vw;
  background: rgba(254, 249, 247, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid oklch(90% 0.02 18);
}
.nav-logo {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--warm-dark);
  text-decoration: none;
}
.nav-logo span { color: var(--pink-accent); font-style: italic; }
.nav-links {
  display: flex; gap: 2.5rem; list-style: none;
}
.nav-links a {
  font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase;
  text-decoration: none; color: var(--warm-mid);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--pink-accent); }
.nav-cta {
  background: var(--warm-dark); color: var(--warm-white);
  border: none; padding: 0.6rem 1.4rem;
  font-family: var(--sans); font-size: 0.78rem; font-weight: 400;
  letter-spacing: 0.1em; text-transform: uppercase;
  cursor: pointer; text-decoration: none;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--pink-accent); }
.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  width: 2rem; height: 2rem;
  flex-direction: column; justify-content: center; gap: 4px;
  padding: 0;
}
.nav-toggle span {
  display: block; height: 2px; width: 100%;
  background: var(--warm-dark);
  transition: transform 0.2s, opacity 0.2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ── HERO ── */
.hero {
  height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 5rem 0 0;
  overflow: hidden;
}
.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 3rem 5vw 3rem 7vw;
  position: relative; z-index: 1;
}
.hero-eyebrow {
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--pink-accent); margin-bottom: 1rem;
  display: flex; align-items: center; gap: 0.75rem;
}
.hero-eyebrow::before {
  content: ''; display: block; width: 2rem; height: 1px; background: var(--pink-accent);
}
h1 {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
h1 em { font-style: italic; color: var(--pink-accent); }
.hero-sub {
  font-size: 1rem; color: var(--warm-mid);
  max-width: 38ch; margin-bottom: 2rem;
  line-height: 1.7;
}
.hero-actions {
  display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2rem;
}
.btn-primary {
  background: var(--warm-dark); color: var(--warm-white);
  padding: 0.9rem 2rem; border: none;
  font-family: var(--sans); font-size: 0.82rem; font-weight: 400;
  letter-spacing: 0.1em; text-transform: uppercase;
  cursor: pointer; text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
}
.btn-primary:hover { background: var(--pink-accent); transform: translateY(-1px); }
.btn-outline {
  background: transparent; color: var(--warm-dark);
  padding: 0.9rem 2rem; border: 1.5px solid var(--warm-dark);
  font-family: var(--sans); font-size: 0.82rem; font-weight: 400;
  letter-spacing: 0.1em; text-transform: uppercase;
  cursor: pointer; text-decoration: none;
  transition: all 0.2s;
  display: inline-block;
}
.btn-outline:hover { border-color: var(--pink-accent); color: var(--pink-accent); transform: translateY(-1px); }
.hero-stats {
  display: flex; gap: 2.5rem; padding-top: 1.5rem;
  border-top: 1px solid oklch(88% 0.02 20);
}
.stat-num {
  font-family: var(--serif); font-size: 2.2rem; font-weight: 300;
  color: var(--pink-accent); line-height: 1;
}
.stat-label {
  font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--warm-mid); margin-top: 0.25rem;
}

.hero-right {
  position: relative; overflow: hidden;
}
.hero-right::before {
  content: '';
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background:
    linear-gradient(to right, var(--warm-white) 0%, oklch(98% 0.008 50 / 0.7) 25%, transparent 50%),
    linear-gradient(to bottom, oklch(60% 0.12 16 / 0.12) 0%, transparent 40%, oklch(22% 0.02 20 / 0.35) 100%);
}
.hero-img-wrap {
  position: absolute; inset: 0;
}
.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 30% center;
}
.hero-badge {
  position: absolute; bottom: 2rem; left: 2rem;
  background: var(--warm-dark); color: var(--warm-white);
  padding: 1.25rem 1.5rem;
  font-family: var(--serif);
  z-index: 2;
}
.hero-badge .b1 { font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; opacity: 0.7; }
.hero-badge .b2 { font-size: 1.4rem; font-weight: 300; font-style: italic; margin-top: 0.25rem; }

/* ── INTRO BAND ── */
.intro-band {
  background: var(--pink-mid);
  padding: 2rem 7vw;
  display: flex; gap: 4rem; align-items: center;
  flex-wrap: wrap;
}
.intro-band p {
  font-family: var(--serif); font-size: 1.3rem; font-weight: 300;
  font-style: italic; color: var(--warm-dark); flex: 1; min-width: 240px;
  line-height: 1.5;
}
.intro-services {
  display: flex; flex-wrap: wrap; gap: 0.6rem; flex: 1; min-width: 240px;
}
.service-chip {
  font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.4rem 1rem; border: 1px solid var(--warm-dark);
  color: var(--warm-dark);
}

/* ── SECTION HEADERS ── */
section { padding: 7rem 7vw; }
.section-label {
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--pink-accent); margin-bottom: 1rem;
  display: flex; align-items: center; gap: 0.75rem;
}
.section-label::before { content: ''; display: block; width: 2rem; height: 1px; background: var(--pink-accent); }
h2 {
  font-family: var(--serif); font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 300; line-height: 1.1; letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}
h2 em { font-style: italic; color: var(--pink-accent); }
.section-body { font-size: 1rem; color: var(--warm-mid); max-width: 55ch; line-height: 1.75; }

/* ── ABOUT / MEET ── */
.about-grid {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 6rem; align-items: center; margin-top: 4rem;
}
.about-img-wrap { position: relative; }
.about-placeholder {
  aspect-ratio: 3/4; width: 100%;
  overflow: hidden;
  position: relative;
}
.about-image {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  display: block;
}
.about-accent-block {
  position: absolute; bottom: -2rem; right: -2rem;
  background: var(--pink-deep); width: 120px; height: 120px;
  z-index: -1;
}
.about-name {
  font-family: var(--serif); font-size: 2rem; font-weight: 300;
  margin-bottom: 0.25rem; margin-top: 2rem;
}
.about-title {
  font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--pink-accent); margin-bottom: 1.5rem;
}
.about-text { color: var(--warm-mid); line-height: 1.8; margin-bottom: 1rem; }
.about-detail {
  display: flex; flex-wrap: wrap; gap: 2rem; margin-top: 2.5rem;
  padding-top: 2rem; border-top: 1px solid oklch(88% 0.02 20);
}
.detail-item {}
.detail-value { font-family: var(--serif); font-size: 1.6rem; font-weight: 300; color: var(--pink-accent); }
.detail-key { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--warm-mid); }

/* ── GALLERY ── */
.gallery-section { background: var(--pink-pale); }
.gallery-intro { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 2rem; margin-bottom: 3rem; }
.gallery-grid {
  column-count: 3;
  column-gap: 1rem;
}
.gal-item {
  break-inside: avoid;
  margin: 0 0 1rem;
  display: block;
  width: 100%;
  background: oklch(90% 0.03 16);
  overflow: hidden; cursor: zoom-in; position: relative;
  transition: transform 0.3s;
}
.gal-item:hover { transform: scale(1.01); }
.gal-item::after {
  content: attr(data-label);
  position: absolute; bottom: 0; left: 0; right: 0;
  background: oklch(22% 0.02 20 / 0.85); color: var(--warm-white);
  font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.6rem 0.85rem;
  transform: translateY(100%); transition: transform 0.25s;
}
.gal-item:hover::after { transform: translateY(0); }
.gal-img {
  width: 100%; height: auto;
  display: block;
  transition: transform 0.5s ease;
}
.gal-item:hover .gal-img { transform: scale(1.04); }

/* ── LIGHTBOX ── */
.lightbox-overlay {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: oklch(8% 0.01 20 / 0.92);
  align-items: center; justify-content: center;
  cursor: zoom-out;
}
.lightbox-overlay.open { display: flex; }
.lightbox-close {
  position: fixed; top: 1.5rem; right: 1.75rem;
  background: none; border: none; color: var(--warm-white);
  font-size: 2rem; line-height: 1; cursor: pointer; z-index: 2001;
  opacity: 0.8; transition: opacity 0.2s;
}
.lightbox-close:hover { opacity: 1; }
.lightbox-inner {
  max-width: min(90vw, 1100px);
  max-height: 90svh;
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
  cursor: default;
}
.lightbox-img {
  max-width: 100%; max-height: 82svh;
  object-fit: contain; display: block;
  box-shadow: 0 24px 64px oklch(0% 0 0 / 0.6);
}
.lightbox-caption {
  font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: oklch(75% 0.02 20);
}

/* ── SERVICES ── */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; margin-top: 3.5rem;
}
.service-card {
  background: var(--warm-off); padding: 2.5rem 2rem;
  border-top: 3px solid transparent;
  transition: border-color 0.2s, background 0.2s;
}
.service-card:hover { border-color: var(--pink-accent); background: var(--warm-white); }
.service-icon {
  width: 2.5rem; height: 2.5rem; margin-bottom: 1.25rem;
  background: var(--pink-mid); display: flex; align-items: center; justify-content: center;
}
.service-icon svg { width: 1.2rem; height: 1.2rem; }
.service-title {
  font-family: var(--serif); font-size: 1.35rem; font-weight: 400;
  margin-bottom: 0.75rem;
}
.service-desc { font-size: 0.88rem; color: var(--warm-mid); line-height: 1.7; }

/* ── TESTIMONIAL ── */
.testimonial-section {
  background: var(--warm-dark); color: var(--warm-white);
  text-align: center; padding: 7rem 12vw;
}
.testimonial-section blockquote {
  font-family: var(--serif); font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 300; font-style: italic; line-height: 1.5;
  margin-bottom: 2rem;
}
.testimonial-section cite {
  font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--pink-mid); font-style: normal;
}
.testimonial-dots {
  display: flex; justify-content: center; gap: 0.5rem; margin-top: 2.5rem;
}
.testimonial-dots span {
  width: 5px; height: 5px; background: var(--warm-mid); border-radius: 50%; cursor: pointer;
  transition: background 0.2s;
}
.testimonial-dots span.active { background: var(--pink-mid); }

/* ── CONTACT ── */
.contact-section { background: var(--warm-off); }
.contact-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 5rem; margin-top: 4rem; align-items: start;
  max-width: 480px;
}
.contact-info { }
.contact-detail {
  display: flex; flex-direction: column; gap: 0.25rem;
  margin-bottom: 2rem;
}
.contact-detail .label {
  font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--pink-accent);
}
.contact-detail .value { font-size: 1rem; color: var(--warm-dark); font-weight: 400; }
.contact-detail a { color: var(--warm-dark); text-decoration: none; }
.contact-detail a:hover { color: var(--pink-accent); }

.contact-actions { display: flex; flex-direction: column; gap: 1rem; margin-top: 2.5rem; }

/* FORMS */
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block; font-size: 0.7rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--warm-mid); margin-bottom: 0.4rem;
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 0.75rem 1rem;
  border: 1px solid oklch(88% 0.02 20); background: var(--warm-white);
  font-family: var(--sans); font-size: 0.9rem; color: var(--warm-dark);
  outline: none; transition: border-color 0.2s; appearance: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--pink-accent);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-submit {
  width: 100%; padding: 1rem; background: var(--warm-dark); color: var(--warm-white);
  border: none; font-family: var(--sans); font-size: 0.82rem;
  letter-spacing: 0.12em; text-transform: uppercase; cursor: pointer;
  transition: background 0.2s;
}
.form-submit:hover { background: var(--pink-accent); }

/* ── FOOTER ── */
footer {
  background: var(--warm-dark); color: var(--warm-white);
  padding: 4rem 7vw 2.5rem;
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr;
  gap: 4rem; margin-bottom: 3rem;
}
.footer-brand {
  font-family: var(--serif); font-size: 1.5rem; font-weight: 300;
  margin-bottom: 1rem;
}
.footer-brand span { font-style: italic; color: var(--pink-mid); }
.footer-desc { font-size: 0.85rem; color: var(--warm-light); line-height: 1.7; }
.footer-col-title {
  font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--pink-mid); margin-bottom: 1.25rem;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a {
  font-size: 0.85rem; color: var(--warm-light); text-decoration: none; transition: color 0.2s;
}
.footer-links a:hover { color: var(--warm-white); }
.footer-bottom {
  padding-top: 2rem; border-top: 1px solid oklch(35% 0.01 20);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: 0.75rem; color: var(--warm-light); }

/* ── MODAL ── */
.modal-overlay {
  display: none; position: fixed; inset: 0;
  background: oklch(10% 0.01 20 / 0.7); z-index: 1000;
  align-items: center; justify-content: center;
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--warm-white); width: min(500px, 92vw);
  padding: 2.5rem; position: relative;
  max-height: calc(100svh - 2rem);
  overflow-y: auto;
}
.modal-close {
  position: absolute; top: 1rem; right: 1.25rem;
  background: none; border: none; font-size: 1.4rem; cursor: pointer;
  color: var(--warm-mid);
}
.modal h3 {
  font-family: var(--serif); font-size: 1.8rem; font-weight: 300; margin-bottom: 0.25rem;
}
.modal .modal-sub { font-size: 0.8rem; color: var(--warm-mid); margin-bottom: 2rem; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  section { padding: 5rem 6vw; }
  .testimonial-section { padding: 5rem 6vw; }

  /* Hero — magazine split: photo on top, text panel below */
  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: 40svh auto;
    height: auto; min-height: 100svh;
    padding: 0;
    position: relative;
  }
  .hero-right {
    grid-row: 1;
    position: relative;
    overflow: visible;
  }
  .hero-right::before {
    background:
      /* fade the bottom of the photo into the cream text panel */
      linear-gradient(to bottom,
        transparent 55%,
        oklch(98% 0.008 50 / 0.55) 88%,
        oklch(98% 0.008 50 / 0.95) 100%),
      /* warm pink wash at top, ties the photo to the brand palette */
      linear-gradient(to bottom,
        oklch(60% 0.12 16 / 0.28) 0%,
        oklch(60% 0.12 16 / 0.08) 20%,
        transparent 38%),
      /* gentle uniform pink tint over the whole image */
      linear-gradient(oklch(72% 0.09 18 / 0.08), oklch(72% 0.09 18 / 0.08));
  }
  .hero-img {
    transform: none;
    object-position: center 28%;
  }
  .hero-left {
    grid-row: 2;
    padding: 2.5rem 5vw 2.5rem;
  }
  /* Reorder so CTAs sit right after the headline, above the fold */
  .hero-eyebrow { margin-bottom: 0.6rem; }
  .hero-left h1 { margin-bottom: 0.85rem; }
  .hero-actions { order: 1; margin-bottom: 1.5rem; }
  .hero-sub { order: 2; margin-bottom: 1.5rem; }
  .hero-stats { order: 3; }
  .hero-badge {
    display: block;
    bottom: -1.75rem; left: auto;
    right: 5vw;
    padding: 0.9rem 1.15rem;
    z-index: 3;
  }
  .hero-badge .b2 { font-size: 1.1rem; }
  .hero-badge .b1 { font-size: 0.65rem; }

  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .services-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .gallery-grid { column-count: 2; }

  .nav-toggle { display: flex; }
  .nav-cta { margin-left: auto; margin-right: 0.75rem; }
  .nav-links {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0;
    padding: 0.5rem 5vw 1rem;
    background: rgba(254, 249, 247, 0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid oklch(90% 0.02 18);
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    padding: 0.85rem 0;
    font-size: 0.85rem;
    border-bottom: 1px solid oklch(92% 0.015 20);
  }
  .nav-links li:last-child a { border-bottom: none; }
}

@media (max-width: 600px) {
  section { padding: 3.5rem 5vw; }
  .testimonial-section { padding: 4rem 5vw; }
  .intro-band { padding: 1.75rem 5vw; gap: 1.5rem; }
  .intro-band p { font-size: 1.1rem; }
  .hero-left { padding: 2.5rem 5vw 2rem; }
  .hero-stats { gap: 1.5rem; flex-wrap: wrap; padding-top: 1.25rem; }
  .stat-num { font-size: 1.8rem; }
  .hero-actions { gap: 0.75rem; margin-bottom: 1.75rem; }
  .hero-actions .btn-primary,
  .hero-actions .btn-outline { padding: 0.8rem 1.5rem; font-size: 0.75rem; }
  .hero-badge { bottom: 1rem; left: 1rem; padding: 0.9rem 1.1rem; }
  .hero-badge .b2 { font-size: 1.15rem; }
  .form-row { grid-template-columns: 1fr; }
  .modal { padding: 1.75rem 1.25rem; max-height: calc(100svh - 1rem); }
  .modal h3 { font-size: 1.5rem; }
  .modal .modal-sub { margin-bottom: 1.25rem; }
  .form-group { margin-bottom: 0.9rem; }
  .form-group textarea { min-height: 80px; }
  .form-submit { padding: 0.85rem; }
  .modal-overlay { padding: 0.5rem; }
  .about-detail { gap: 1.5rem; }
  .about-accent-block { width: 80px; height: 80px; bottom: -1rem; right: -1rem; }
  .about-name { font-size: 1.6rem; }
  .gallery-grid { column-count: 1; }
  .gallery-intro { margin-bottom: 2rem; }
  .services-grid { margin-top: 2.5rem; }
  .service-card { padding: 2rem 1.5rem; }
  .contact-actions { gap: 0.75rem; }
  .footer-bottom {
    flex-direction: column; align-items: flex-start; gap: 0.5rem;
  }
  .nav-cta { padding: 0.5rem 1rem; font-size: 0.7rem; letter-spacing: 0.08em; }
  nav { padding: 1rem 5vw; }
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { opacity: 0; animation: fadeUp 0.7s ease forwards; }
.fade-up:nth-child(1) { animation-delay: 0.1s; }
.fade-up:nth-child(2) { animation-delay: 0.25s; }
.fade-up:nth-child(3) { animation-delay: 0.4s; }
.fade-up:nth-child(4) { animation-delay: 0.55s; }
