:root {
  --cream: #f5eede;
  --cream-light: #faf6ee;
  --cream-mid: #e8d8bc;
  --dark: #2b1a0f;
  --dark-mid: #3d2712;
  --brown: #6b3f1e;
  --brown-light: #9c6840;
  --brown-faint: #c9a882;
  --warm-white: #fdf9f3;
  --text-mid: #7a5535;
  --text-light: #a88060;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--warm-white);
  color: var(--dark);
  overflow-x: hidden;
}
section { padding: 80px 5%; }
.section-label { font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--brown); font-weight: 500; margin-bottom: 1rem; }
.section-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 4vw, 2.75rem); font-weight: 300; line-height: 1.15; margin-bottom: 1rem; }
.section-title em { color: var(--brown); font-style: italic; }
.cursive-title { font-style: italic; }
.section-desc { font-size: 0.95rem; line-height: 1.8; color: var(--text-mid); font-weight: 300; max-width: 560px; }
.reveal { opacity: 0; transform: translateY(38px); transition: opacity 0.9s cubic-bezier(0.16,1,0.3,1), transform 0.9s cubic-bezier(0.16,1,0.3,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.22s; }
.reveal-delay-3 { transition-delay: 0.36s; }

nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.85rem 5%;
  background: linear-gradient(140deg, rgba(253,249,243,0.72), rgba(253,249,243,0.46));
  backdrop-filter: blur(18px) saturate(125%);
  border-bottom: 1px solid rgba(107,63,30,0.09);
  box-shadow: 0 14px 38px rgba(43,26,15,0.08);
}
.nav-logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; overflow: visible; }
.nav-logo img {
  height: 44px; width: auto; display: block;
  mix-blend-mode: multiply;
  filter: brightness(0.45) sepia(0.4) saturate(2) hue-rotate(10deg);
  transform: scale(3.8); transform-origin: left center;
}
.nav-right { display: flex; align-items: center; gap: 1rem; }
.nav-links {
  display: flex; gap: 0.55rem; align-items: center; padding: 0.38rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255,255,255,0.54), rgba(245,238,222,0.42));
  border: 1px solid rgba(107,63,30,0.12);
}
.nav-links a {
  text-decoration: none; color: var(--text-mid);
  font-size: 0.8rem; letter-spacing: 0.07em; text-transform: uppercase;
  border-radius: 999px; padding: 0.55rem 1.05rem;
  transition: color 0.2s, background 0.25s;
}
.nav-links a:hover, .nav-links a.active { color: var(--dark); background: rgba(253,249,243,0.72); }
.nav-inner-links { display: flex; gap: 0.22rem; align-items: center; }
.nav-cta {
  background: var(--dark) !important; color: var(--cream) !important;
  padding: 0.62rem 1.35rem !important; border-radius: 999px;
  font-size: 0.8rem; letter-spacing: 0.07em; text-transform: uppercase;
  text-decoration: none; white-space: nowrap;
}
.nav-cta:hover { background: var(--brown) !important; }
.hamburger {
  display: none; flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; width: 40px; height: 40px; background: none; border: none; padding: 6px; cursor: pointer;
}
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--dark); border-radius: 2px; transition: transform 0.35s, opacity 0.25s; }
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.mobile-menu {
  display: none; position: fixed; top: 0; left: 0; right: 0;
  background: rgba(253,249,243,0.97); backdrop-filter: blur(20px); z-index: 99;
  padding: 100px 8% 3rem; flex-direction: column;
  transform: translateY(-110%); transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
  border-bottom: 1px solid var(--cream-mid);
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a {
  text-decoration: none; color: var(--text-mid);
  font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 300; font-style: italic;
  padding: 0.85rem 0; border-bottom: 1px solid rgba(107,63,30,0.08); display: block;
}
.mobile-cta {
  margin-top: 1.5rem; background: var(--dark); color: var(--cream) !important;
  padding: 1rem 2rem; border-radius: 50px; text-align: center;
  font-family: 'DM Sans', sans-serif; font-size: 0.9rem; font-style: normal; font-weight: 500;
}

.sub-hero {
  padding: 140px 5% 80px; position: relative; overflow: hidden;
  background: var(--dark-mid); color: var(--cream);
}
.sub-hero::before { content: ''; position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0.38; }
.sub-hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(43,26,15,0.82) 0%, rgba(61,39,18,0.55) 55%, rgba(43,26,15,0.75) 100%);
}
.sub-hero-inner { position: relative; z-index: 1; max-width: 720px; }
.sub-hero .section-label { color: var(--brown-faint); }
.sub-hero .section-title { color: var(--cream); }
.sub-hero .section-desc { color: rgba(245,238,222,0.72); }
.breadcrumb {
  position: relative; z-index: 1; font-size: 0.78rem; letter-spacing: 0.06em;
  text-transform: uppercase; margin-bottom: 1.25rem; color: rgba(245,238,222,0.55);
}
.breadcrumb a { color: var(--brown-faint); text-decoration: none; }
.breadcrumb a:hover { color: var(--cream); }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }
.photo-frame {
  border-radius: 22px; overflow: hidden; border: 1px solid var(--cream-mid);
  box-shadow: 0 24px 60px rgba(43,26,15,0.12); line-height: 0; background: var(--cream-light);
}
.photo-frame img { width: 100%; display: block; object-fit: cover; aspect-ratio: 4/3; }
.photo-frame.portrait img { aspect-ratio: 3/4; object-position: center top; }

.service-tags {
  display: flex; flex-wrap: wrap; gap: 0.55rem; margin-top: 1.75rem;
}
.service-tag {
  padding: 0.5rem 1rem; border-radius: 999px; font-size: 0.8rem;
  background: var(--cream-light); border: 1px solid var(--cream-mid); color: var(--text-mid);
}
.info-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 2.5rem;
}
.info-card {
  padding: 1.75rem 1.5rem; border-radius: 18px; border: 1px solid var(--cream-mid);
  background: var(--warm-white); box-shadow: 0 8px 30px rgba(43,26,15,0.05);
}
.info-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; margin-bottom: 0.5rem; }
.info-card p { font-size: 0.86rem; line-height: 1.7; color: var(--text-mid); font-weight: 300; }
.gallery {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2.5rem;
}
.gallery img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 16px;
  border: 1px solid var(--cream-mid); box-shadow: 0 8px 24px rgba(43,26,15,0.08);
}
.gallery .gallery-tall { grid-row: span 2; aspect-ratio: auto; height: 100%; min-height: 280px; }

.cta-band {
  text-align: center; background: var(--cream-light); position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%); width: 700px; height: 700px;
  background: radial-gradient(circle, var(--cream-mid) 0%, transparent 65%);
  pointer-events: none;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; position: relative; z-index: 1; }
.store-btn {
  display: flex; align-items: center; gap: 0.75rem; padding: 0.85rem 1.6rem;
  border-radius: 14px; text-decoration: none; transition: transform 0.25s, box-shadow 0.25s;
}
.store-btn:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(43,26,15,0.14); }
.store-btn.apple { background: var(--dark); color: var(--cream); }
.store-btn.google { background: #fff; color: var(--dark); border: 1.5px solid var(--cream-mid); }
.store-btn-text { display: flex; flex-direction: column; }
.store-btn-text span:first-child { font-size: 0.62rem; letter-spacing: 0.06em; opacity: 0.7; text-transform: uppercase; }
.store-btn-text span:last-child { font-size: 0.95rem; font-weight: 500; }

footer { background: var(--dark); color: var(--cream); padding: 4rem 5% 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-desc { font-size: 0.88rem; line-height: 1.75; color: rgba(245,238,222,0.6); margin-bottom: 1.25rem; max-width: 280px; }
.footer-email { color: var(--brown-faint); text-decoration: none; font-size: 0.88rem; }
.footer-col h4 { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--brown-faint); margin-bottom: 1.25rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.footer-links a { color: rgba(245,238,222,0.55); text-decoration: none; font-size: 0.86rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--cream); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
  padding-top: 2rem; border-top: 1px solid rgba(245,238,222,0.08);
  font-size: 0.78rem; color: rgba(245,238,222,0.4);
}

@media (max-width: 900px) {
  .split, .info-grid, .gallery { grid-template-columns: 1fr; }
  .split.reverse { direction: ltr; }
  .gallery .gallery-tall { grid-row: auto; min-height: auto; aspect-ratio: 4/3; }
  .footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: flex; }
  .nav-logo img { height: 38px; transform: scale(2.85); }
}
