:root {
  --cream:     #F5EEE1;
  --cream-alt: #EDE4D3;
  --paper:     #FAF5EE;
  --text:      #231C11;
  --muted:     #7A6A54;
  --gold:      #B38D50;
  --gold-soft: rgba(179,141,80,0.12);
  --dark:      #1E1810;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--text);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; letter-spacing: -0.01em; }
.script { font-family: 'Great Vibes', cursive; }

/* ── NAV ─────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid rgba(35,28,17,0.09);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 5%;
  gap: 24px;
}

.nav-logo img { height: 130px; width: auto; display: block; }

.nav-links { display: flex; gap: 32px; list-style: none; }

.nav-links a {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--gold); }

.nav-links a.active {
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
}

.nav-cta {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid var(--text);
  color: var(--text);
  padding: 9px 22px;
  text-decoration: none;
  transition: background 0.22s, color 0.22s;
}

.nav-cta:hover { background: var(--text); color: var(--cream); }

/* ── PAGE INTRO (inner pages) ────────────────────────── */
.page-intro {
  padding: 72px 6% 56px;
  text-align: center;
  border-bottom: 1px solid rgba(35,28,17,0.07);
}

.page-intro .sec-pre { margin-bottom: 4px; }

.page-intro h1 {
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  font-weight: 300;
  letter-spacing: -0.025em;
  line-height: 1.08;
}

/* ── HERO ────────────────────────────────────────────── */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 81px);
  padding: 0;
  gap: 0;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.hero-center {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  pointer-events: none;
}

.hero-title-wrap {
  display: flex;
  align-items: baseline;
  gap: 0.25em;
  overflow: visible;
}

.hero-title-word {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(5rem, 12vw, 11rem);
  font-weight: 300;
  letter-spacing: -0.025em;
  line-height: 1;
  color: #FFFFFF;
  mix-blend-mode: difference;
  will-change: transform;
  display: inline-block;
  white-space: nowrap;
}

.hero-btns {
  position: absolute;
  bottom: 44px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 15;
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  width: max-content;
  max-width: 90vw;
  will-change: opacity;
}

.hero-bg-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 1;
  will-change: opacity;
  overflow: hidden;
}

.hero-bg-layer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

.hero-bg-tint {
  position: absolute;
  inset: 0;
  background: rgba(245,238,225,0.28);
}

.hero-expand-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 0 80px rgba(35,28,17,0.18);
  pointer-events: none;
  will-change: width, height, border-radius;
  backface-visibility: hidden;
  width: 280px;
  height: 360px;
}

.hero-expand-wrap img,
.hero-expand-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.hero-expand-darken {
  position: absolute;
  inset: 0;
  background: rgba(35,28,17,0.45);
  border-radius: inherit;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  pointer-events: none;
  white-space: nowrap;
  will-change: opacity;
}

.hero-scroll-hint span {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  font-family: 'Jost', sans-serif;
  font-weight: 400;
}

.hero-scroll-hint-arrow {
  animation: sc-bounce 1.6s ease-in-out infinite;
  color: var(--muted);
}

@keyframes sc-bounce {
  0%, 100% { transform: translateY(0); opacity: 0.5; }
  50%       { transform: translateY(5px); opacity: 0.95; }
}

/* ── BUTTONS ─────────────────────────────────────────── */
.btn-dark {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--text);
  color: var(--cream);
  padding: 13px 32px;
  text-decoration: none;
  transition: background 0.22s, color 0.22s;
}

.btn-dark:hover { background: var(--gold); }

.btn-outline {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid rgba(35,28,17,0.4);
  color: var(--text);
  padding: 12px 32px;
  text-decoration: none;
  transition: background 0.22s, color 0.22s, border-color 0.22s;
}

.btn-outline:hover {
  border-color: var(--text);
  background: var(--text);
  color: var(--cream);
}

.btn-ghost {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid rgba(245,238,225,0.38);
  color: var(--cream);
  padding: 13px 38px;
  text-decoration: none;
  transition: background 0.22s;
}

.btn-ghost:hover { background: rgba(245,238,225,0.08); }

/* ── DIVIDER ─────────────────────────────────────────── */
.rule {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 auto 14px;
  width: fit-content;
}

.rule-line { display: block; width: 44px; height: 1px; background: var(--gold); }
.rule-dot  { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

/* ── SECTION SHARED ──────────────────────────────────── */
.sec { padding: 96px 6%; }
.sec-alt { background: var(--cream-alt); }

.sec-head { text-align: center; margin-bottom: 60px; }

.sec-pre {
  font-size: 1.7rem;
  color: var(--gold);
  display: block;
  margin-bottom: 6px;
}

.sec-title {
  font-size: clamp(1.9rem, 3vw, 2.9rem);
  font-weight: 600;
  line-height: 1.18;
}

.sec-body {
  font-size: 0.88rem;
  color: var(--muted);
  max-width: 460px;
  margin: 14px auto 0;
  line-height: 1.75;
}

/* ── PHILOSOPHY ──────────────────────────────────────── */
.philo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px 36px;
}

.philo-card { text-align: center; }

.philo-circle {
  width: 190px;
  height: 190px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 24px;
  border: 2px solid rgba(179,141,80,0.22);
}

.philo-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(8%) contrast(1.04);
  transition: transform 0.5s ease;
}

.philo-card:hover .philo-circle img { transform: scale(1.04); }

.philo-card h3 { font-size: 1.35rem; font-weight: 600; margin-bottom: 10px; }

.philo-card p {
  font-size: 0.86rem;
  color: var(--muted);
  max-width: 250px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── PORTFOLIO MARQUEE ───────────────────────────────── */
.mq-gallery {
  margin: 48px -6% 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mq-row { display: flex; overflow: hidden; }
.mq-row:hover .mq-inner { animation-play-state: paused; }

.mq-inner {
  display: flex;
  gap: 10px;
  will-change: transform;
  flex-shrink: 0;
}

.mq-fwd .mq-inner  { animation: mq-left 60s linear infinite; }
.mq-rev .mq-inner  { animation: mq-right 75s linear infinite; }

@keyframes mq-left  { from { transform: translateX(0); }    to { transform: translateX(-50%); } }
@keyframes mq-right { from { transform: translateX(-50%); } to { transform: translateX(0); }    }

.mq-inner img {
  height: 270px;
  width: auto;
  flex-shrink: 0;
  object-fit: cover;
  display: block;
  cursor: zoom-in;
  transition: opacity 0.35s, transform 0.35s;
}

.mq-inner img:hover {
  opacity: 0.82;
  transform: scale(1.03);
  position: relative;
  z-index: 2;
}

.port-cta { text-align: center; margin-top: 48px; }

/* ── LIGHTBOX ────────────────────────────────────────── */
#portfolio-lb {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(10,8,6,0.96);
  align-items: center;
  justify-content: center;
  padding: 20px;
  cursor: zoom-out;
}

#portfolio-lb.open { display: flex; }

#lb-img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  display: block;
  cursor: default;
  box-shadow: 0 40px 120px rgba(0,0,0,0.7);
}

.lb-btn {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: 1px solid rgba(179,141,80,0.35);
  color: var(--gold);
  font-size: 1.4rem;
  width: 48px;
  height: 48px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, background 0.2s;
  z-index: 10000;
}

.lb-btn:hover { border-color: var(--gold); background: rgba(179,141,80,0.12); }
#lb-prev { left: 20px; }
#lb-next { right: 20px; }

#lb-close {
  position: fixed;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: rgba(245,238,225,0.6);
  font-size: 1.6rem;
  cursor: pointer;
  z-index: 10000;
  line-height: 1;
  padding: 8px;
  transition: color 0.2s;
}

#lb-close:hover { color: var(--cream); }

#lb-counter {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Jost', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,238,225,0.4);
  z-index: 10000;
}

/* ── PACKAGES ────────────────────────────────────────── */
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pkg {
  background: var(--paper);
  padding: 44px 34px;
  text-align: center;
  border: 1px solid rgba(179,141,80,0.14);
  transition: box-shadow 0.28s, transform 0.28s;
}

.pkg:hover {
  box-shadow: 0 24px 60px rgba(35,28,17,0.1);
  transform: translateY(-5px);
}

.pkg.hero-pkg {
  background: var(--text);
  border-color: transparent;
}

.pkg-tag {
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
}

.pkg-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 20px;
}

.hero-pkg .pkg-name { color: var(--cream); }

.pkg-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  line-height: 1;
  color: var(--text);
}

.hero-pkg .pkg-price { color: var(--cream); }

.pkg-price sup {
  font-size: 1.3rem;
  vertical-align: super;
  font-weight: 400;
}

.pkg-dur {
  font-size: 0.76rem;
  color: var(--muted);
  letter-spacing: 0.06em;
  margin: 8px 0 26px;
}

.hero-pkg .pkg-dur { color: rgba(245,238,225,0.55); }

.pkg-list {
  list-style: none;
  text-align: left;
  border-top: 1px solid rgba(35,28,17,0.08);
  padding-top: 22px;
  margin-bottom: 30px;
}

.hero-pkg .pkg-list { border-color: rgba(245,238,225,0.12); }

.pkg-list li {
  font-size: 0.84rem;
  color: var(--muted);
  padding: 5px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-pkg .pkg-list li { color: rgba(245,238,225,0.7); }

.pkg-list li::before {
  content: '–';
  color: var(--gold);
  font-size: 0.8rem;
  flex-shrink: 0;
}

.pkg .btn-pkg-light {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid rgba(245,238,225,0.3);
  color: var(--cream);
  padding: 12px 24px;
  text-decoration: none;
  text-align: center;
  transition: background 0.22s;
}

.pkg .btn-pkg-light:hover { background: rgba(245,238,225,0.1); }

/* ── ABOUT ───────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: center;
}

.about-imgs { position: relative; }

.about-main {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
  filter: sepia(8%) contrast(1.04);
}

.about-accent {
  position: absolute;
  bottom: -40px;
  right: -36px;
  width: 52%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border: 7px solid var(--cream);
  filter: sepia(6%);
  box-shadow: 0 12px 40px rgba(35,28,17,0.12);
}

.about-body { padding-left: 16px; }

.about-body h2 {
  font-size: clamp(2rem, 3.2vw, 3rem);
  font-weight: 500;
  line-height: 1.16;
  margin: 10px 0 20px;
}

.about-body p {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 14px;
  line-height: 1.76;
}

.about-sig {
  font-size: 2.3rem;
  color: var(--text);
  display: block;
  margin-top: 24px;
  margin-bottom: 28px;
}

/* ── TESTIMONIALS ────────────────────────────────────── */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testi {
  background: var(--paper);
  padding: 38px 30px;
  border: 1px solid rgba(179,141,80,0.12);
}

.testi-stars {
  color: var(--gold);
  font-size: 0.82rem;
  letter-spacing: 3px;
  margin-bottom: 14px;
}

.testi-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.65;
  color: var(--text);
  margin-bottom: 22px;
}

.testi-name {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.testi-where {
  font-size: 0.7rem;
  color: var(--gold);
  margin-top: 3px;
}

/* ── TESTIMONIAL MARQUEE ─────────────────────────────── */
.testi-marquee {
  overflow: hidden;
  width: 100%;
  /* fade edges */
  mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}

.testi-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: testi-scroll 40s linear infinite;
}

.testi-marquee:hover .testi-track {
  animation-play-state: paused;
}

@keyframes testi-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.testi-marquee .testi {
  width: 380px;
  flex-shrink: 0;
}

/* ── CONTACT CTA ─────────────────────────────────────── */
.cta-sec {
  background: var(--dark);
  text-align: center;
  padding: 110px 6%;
}

.cta-sec h2 {
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 500;
  color: var(--cream);
  line-height: 1.14;
  margin: 12px 0 20px;
}

.cta-sec p {
  font-size: 0.9rem;
  color: rgba(245,238,225,0.55);
  max-width: 440px;
  margin: 0 auto 40px;
  line-height: 1.75;
}

/* ── FOOTER ──────────────────────────────────────────── */
footer {
  background: var(--dark);
  color: var(--cream);
  padding: 56px 6% 28px;
  border-top: 1px solid rgba(245,238,225,0.06);
}

.foot-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 44px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(245,238,225,0.07);
  margin-bottom: 24px;
}

.foot-brand img {
  height: 110px;
  filter: invert(1) brightness(0.9);
  display: block;
  margin-bottom: 16px;
}

.foot-brand p {
  font-size: 0.82rem;
  color: rgba(245,238,225,0.45);
  line-height: 1.72;
  max-width: 240px;
}

.foot-h {
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

.foot-links { list-style: none; }
.foot-links li { margin-bottom: 9px; }

.foot-links a {
  font-size: 0.82rem;
  color: rgba(245,238,225,0.55);
  text-decoration: none;
  transition: color 0.2s;
}

.foot-links a:hover { color: var(--cream); }

.foot-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.foot-copy { font-size: 0.74rem; color: rgba(245,238,225,0.3); }

/* ── Footer social icons ─────────────────────────────── */
.foot-social {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 4px;
}

.foot-social-link {
  color: rgba(245,238,225,0.5);
  display: flex;
  align-items: center;
  transition: color 0.2s, transform 0.2s;
}

.foot-social-link:hover {
  color: var(--cream);
  transform: translateY(-2px);
}

/* ── RESPONSIVE ──────────────────────────────────────── */
/* ── Mobile nav ──────────────────────────────────────── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 2px;
  flex-shrink: 0;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  transition: transform 0.25s ease, opacity 0.2s ease;
  transform-origin: center;
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-mobile {
  position: fixed;
  top: 81px;
  left: 0;
  right: 0;
  background: var(--cream);
  border-bottom: 1px solid rgba(35,28,17,0.09);
  z-index: 99;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-mobile.open { max-height: 500px; }

.nav-mobile-inner {
  padding: 20px 5% 32px;
}

.nav-mobile-links {
  list-style: none;
  margin-bottom: 24px;
}

.nav-mobile-links li a {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 300;
  letter-spacing: -0.01em;
  color: var(--text);
  text-decoration: none;
  padding: 13px 0;
  border-bottom: 1px solid rgba(35,28,17,0.07);
  transition: color 0.2s;
}

.nav-mobile-links li:last-child a { border-bottom: none; }
.nav-mobile-links li a:hover,
.nav-mobile-links li a.active { color: var(--gold); }

.nav-mobile-cta {
  display: block;
  text-align: center;
  margin-top: 8px;
}

@media (max-width: 900px) {
  .philo-grid,
  .pkg-grid,
  .testi-grid { grid-template-columns: 1fr; }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-accent { display: none; }
  .about-body { padding-left: 0; }

  .foot-inner { grid-template-columns: 1fr 1fr; }

  .nav-links { display: none; }
  .nav-cta  { display: none; }
  .nav-hamburger { display: flex; }

  .hero-title-word { font-size: clamp(3.5rem, 14vw, 6rem); }

  .sec { padding: 64px 5%; }
  .page-intro { padding: 52px 5% 40px; }
  .cta-sec { padding: 72px 5%; }
}

@media (max-width: 767px) {
  .mq-inner img { height: 170px; }
  .mq-gallery { gap: 7px; }
}

@media (max-width: 600px) {
  /* Nav logo */
  .nav-logo img { height: 72px; }
  .nav { padding: 10px 4%; }

  /* Sections */
  .sec { padding: 48px 4%; }
  .page-intro { padding: 40px 4% 32px; }
  .cta-sec { padding: 56px 4%; }

  /* Hero */
  .hero-expand-wrap { width: 220px; height: 280px; }
  .hero-btns { gap: 10px; bottom: 32px; }
  .hero-btns .btn-dark,
  .hero-btns .btn-ghost { padding: 11px 22px; font-size: 0.68rem; }

  /* Philosophy */
  .philo-grid { gap: 32px; }
  .philo-circle { width: 150px; height: 150px; }

  /* Footer */
  .foot-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .foot-brand img { height: 80px; }
  .foot-brand p { max-width: 100%; }
  .foot-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  /* Testimonials */
  .testi-grid { gap: 16px; }
  .testi-quote { font-size: 1rem; }
  .testi { padding: 28px 22px; }

  /* Marquee images smaller */
  .mq-inner img { height: 140px; }

  /* Section headings */
  .sec-head { margin-bottom: 40px; }
  .sec-pre { font-size: 1.4rem; }
}
