/* ===== Tokens ===== */
:root {
  color-scheme: light;
  --dark: #17121C;
  --dark-2: #2C2333;
  --light-ink: #F6EEE2;
  --light-ink-soft: #CBB9AA;

  --content-bg: #F7F1E6;
  --panel: #EFE4D2;
  --ink: #2A1B12;
  --ink-soft: #5C4736;
  --gold: #855F22;
  --gold-deep: #7C5A22;
  --rose: #A8395A;

  --glow-gold: #D8B26C;
  --glow-gold-deep: #C79A4E;
  --glow-rose: #E2768F;

  --border: rgba(42, 27, 18, 0.14);
  --border-dark: rgba(246, 238, 226, 0.14);

  --font-display: 'Fraunces', serif;
  --font-body: 'Work Sans', sans-serif;

  --radius: 4px;
  --max-width: 1180px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--content-bg); min-height: 100%; }

html, body { height: 100%; }

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--content-bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

main { flex: 1 0 auto; }
.site-footer { flex-shrink: 0; }

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

h2 { color: var(--gold-deep); }

em { font-style: italic; color: var(--gold-deep); }

p { margin: 0 0 1em; color: var(--ink-soft); }

a { color: inherit; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 0.6em;
}
.eyebrow.center, h2.center, .services__note.center { text-align: center; }

/* subtle film grain overlay for warmth, not decoration for its own sake */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ===== Ambient motion (hero glow orbs) ===== */
.ambient-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}
.ambient-glow--gold {
  width: 320px; height: 320px;
  background: var(--glow-gold);
  top: -60px; left: -80px;
  animation: drift-a 14s ease-in-out infinite;
}
.ambient-glow--rose {
  width: 260px; height: 260px;
  background: var(--glow-rose);
  bottom: -40px; right: -60px;
  animation: drift-b 18s ease-in-out infinite;
}
@keyframes drift-a {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, 40px) scale(1.15); }
}
@keyframes drift-b {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-25px, -30px) scale(1.1); }
}

/* ===== Scroll reveal for full sections ===== */
.reveal-up {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-up.in-view { opacity: 1; transform: translateY(0); }


/* ===== Page hero (portfolio / story) ===== */
.page-hero {
  position: relative;
  overflow: hidden;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 60px 24px 20px;
  text-align: center;
}
.page-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  max-width: 20ch;
  margin: 0 auto;
}

/* ===== Story page ===== */
.story { max-width: var(--max-width); margin: 0 auto; padding: 20px 24px 60px; }
.story__grid {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 50px;
  align-items: center;
}
.story__media img {
  width: 100%;
  border-radius: 8px;
  aspect-ratio: 3/4;
  object-fit: cover;
}
.story-block { padding: 60px 24px; }
.story-block--alt { background: var(--panel); }
.story-block__inner { max-width: 720px; margin: 0 auto; }
.story-block h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); max-width: 18ch; }

.page-cta {
  max-width: 700px;
  margin: 0 auto;
  padding: 70px 24px 100px;
  text-align: center;
}
.page-cta p {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--ink);
  margin-bottom: 20px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(23, 18, 28, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-dark);
}

.nav {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__brand {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: -0.01em;
  color: var(--light-ink);
}

.nav__links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0;
  padding: 0;
}

.nav__links a {
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--light-ink);
  transition: color 0.2s ease;
}
.nav__links a:hover { color: var(--glow-gold); }

.nav__cta {
  background: var(--glow-gold);
  color: var(--dark) !important;
  padding: 9px 18px;
  border-radius: var(--radius);
}
.nav__cta:hover { background: var(--glow-gold-deep) !important; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav__toggle span {
  width: 22px;
  height: 2px;
  background: var(--light-ink);
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
  text-align: center;
}
.btn--primary { background: var(--glow-gold); color: var(--dark); }
.btn--primary:hover { background: var(--glow-gold-deep); transform: translateY(-1px); }
.btn--ghost { border-color: var(--ink); color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--content-bg); }
.btn--outline { border-color: var(--gold); color: var(--gold); background: transparent; }
.btn--outline:hover { background: var(--gold); color: var(--content-bg); }
.btn--small { padding: 9px 18px; font-size: 0.85rem; }
.full-width { grid-column: 1 / -1; width: 100%; }

/* ===== Hero ===== */
.hero {
  position: relative;
  overflow: hidden;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 60px 24px 40px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.hero > * { position: relative; z-index: 1; }

.hero__media {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/5;
}
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.hero__title {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.08;
}

.brushstroke {
  width: 180px;
  height: auto;
  display: block;
  margin: 6px 0 20px;
}
.brushstroke path {
  stroke-dasharray: 320;
  stroke-dashoffset: 320;
  animation: draw 1.4s 0.3s ease forwards;
}
@keyframes draw { to { stroke-dashoffset: 0; } }

.hero__sub {
  font-size: 1.05rem;
  max-width: 46ch;
}

.hero__actions {
  display: flex;
  gap: 14px;
  margin-top: 8px;
  flex-wrap: wrap;
}

/* ===== Section dividers (signature motif reused) ===== */
.divider-brush {
  display: block;
  width: 100%;
  max-width: 800px;
  height: 20px;
  margin: 0 auto;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.divider-brush.in-view { opacity: 1; }
.divider-brush path {
  stroke-dasharray: 900;
  stroke-dashoffset: 900;
  transition: stroke-dashoffset 1.1s ease;
}
.divider-brush.in-view path { stroke-dashoffset: 0; }

/* ===== About ===== */
.about { padding: 40px 24px 80px; }
.about__grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 60px;
  align-items: center;
}
.about__media img {
  width: 100%;
  border-radius: 8px;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
}
.about h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); }

/* ===== Services ===== */
.services { max-width: var(--max-width); margin: 0 auto; padding: 30px 24px 60px; }
.services h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 0.3em; }
.services__note { max-width: 60ch; margin: 0 auto 40px; }

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--panel);
  border-radius: 8px;
  padding: 28px 24px;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(58, 42, 32, 0.1);
}
.service-card h3 { font-size: 1.2rem; margin-bottom: 0.2em; }
.service-card__price {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold-deep);
  margin-bottom: 0.5em;
}
.service-card__desc { font-size: 0.92rem; margin-bottom: 0; }
.service-card__badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--rose);
  color: var(--content-bg);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
}
.service-card--bridal .service-card__badge { background: var(--gold-deep); color: var(--content-bg); }

/* ===== Gallery ===== */
.gallery { max-width: var(--max-width); margin: 0 auto; padding: 20px 24px 60px; }
.gallery h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 40px; }

.book {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}

.book__scroller {
  flex: 1;
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  gap: 0;
  border-radius: 8px;
  -webkit-overflow-scrolling: touch;
}
.book__scroller::-webkit-scrollbar { display: none; }
.book__scroller { scrollbar-width: none; }

.page {
  flex: 0 0 100%;
  scroll-snap-align: start;
  aspect-ratio: 3/4;
  border-radius: 8px;
  overflow: hidden;
}
.page__frame {
  margin: 0;
  width: 100%;
  height: 100%;
  background: var(--panel);
}
.page__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.book__nav {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--panel);
  color: var(--ink);
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.book__nav:hover { background: var(--gold); color: var(--content-bg); border-color: var(--gold); }

.book__dots {
  position: absolute;
  bottom: -30px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.book__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--border);
  transition: background 0.2s ease;
}
.book__dot.is-active { background: var(--gold-deep); }

/* ===== Booking ===== */
.booking { max-width: var(--max-width); margin: 0 auto; padding: 70px 24px; }
.booking__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
}
.booking__intro h2 { font-size: clamp(1.8rem, 3vw, 2.2rem); }

.payment-info {
  background: var(--panel);
  border-radius: 8px;
  padding: 24px;
  margin-top: 28px;
}
.payment-info h3 { font-size: 1.05rem; margin-bottom: 0.4em; }
.payment-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 16px 0;
}
.payment-option__label {
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
  font-size: 0.9rem;
}
.payment-option__value {
  font-weight: 600;
  color: var(--gold-deep);
  word-break: break-all;
  margin-bottom: 4px;
}
.payment-option__hint { font-size: 0.8rem; margin-bottom: 0; }
.payment-option__disclaimer {
  font-size: 0.78rem;
  color: var(--ink-soft);
  border-top: 1px solid var(--border);
  padding-top: 12px;
  margin-bottom: 0;
}

.booking__form {
  background: var(--panel);
  padding: 32px;
  border-radius: 8px;
  align-self: start;
}
.booking__form h3 { font-size: 1.1rem; margin-bottom: 0.4em; }
.booking__form .form-status {
  font-size: 0.8rem;
  color: var(--ink-soft);
  margin-top: 10px;
  margin-bottom: 0;
}

/* ===== Policies ===== */
.policies { max-width: 800px; margin: 0 auto; padding: 60px 24px 100px; }
.policies h2 { font-size: clamp(1.8rem, 3vw, 2.2rem); margin-bottom: 40px; }
.policy-item {
  border-bottom: 1px solid var(--border);
  padding: 18px 4px;
}
.policy-item summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
}
.policy-item summary::-webkit-details-marker { display: none; }
.policy-item summary::after {
  content: '+';
  color: var(--gold-deep);
  font-size: 1.2rem;
}
.policy-item[open] summary::after { content: '–'; }
.policy-item p { margin-top: 12px; font-size: 0.92rem; }

/* ===== Footer ===== */
.site-footer {
  background: var(--dark-2);
  color: var(--light-ink);
  padding: 50px 24px 24px;
}
.site-footer p { color: var(--light-ink-soft); }
.footer__grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--border-dark);
}
.footer__brand {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 0.3em;
}
.footer__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--glow-gold);
  margin-bottom: 0.6em;
  font-weight: 600;
}
.footer__grid a { text-decoration: none; color: var(--light-ink); opacity: 0.95; }
.footer__grid a:hover { opacity: 1; color: var(--glow-gold); }
.footer__link {
  display: inline-block;
  border-bottom: 1px solid rgba(246, 238, 226, 0.35);
  padding-bottom: 1px;
}
.footer__link:hover { border-color: var(--glow-gold); }
.footer__link--ig {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
}
.footer__legal {
  max-width: var(--max-width);
  margin: 20px auto 0;
  font-size: 0.78rem;
  opacity: 0.75;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .hero, .about__grid, .booking__grid, .story__grid { grid-template-columns: 1fr; gap: 28px; }
  .hero__media { order: -1; }
  .hero { padding-top: 30px; padding-bottom: 20px; }
  .page-hero { padding-top: 30px; padding-bottom: 10px; }
  .services { padding-top: 16px; }
  .gallery { padding-top: 10px; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr; }

  .nav__toggle { display: flex; }
  .nav__links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--dark);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px;
    gap: 16px;
    border-bottom: 1px solid var(--border-dark);
    display: none;
  }
  .nav__links.is-open { display: flex; }
}

@media (max-width: 560px) {
  .services__grid { grid-template-columns: 1fr; }
  .booking__form { grid-template-columns: 1fr; }
  .payment-options { grid-template-columns: 1fr; }
  .page { aspect-ratio: 4/5; }
  .book__nav { width: 36px; height: 36px; font-size: 0.95rem; }
}
