/* ============================================================
   TAL BRODSKY — Shared Stylesheet
   ============================================================ */

:root {
  --ink:        #1A1916;
  --ink-soft:   #3A3830;
  --ink-muted:  #7A756C;
  --ink-faint:  #A8A39A;
  --cream:      #F5F0E6;
  --cream-mid:  #EDE7DA;
  --cream-dark: #DDD8CC;
  --sage:       #2E4A30;
  --sage-mid:   #4A6E4C;
  --sage-light: #8FAF91;
  --white:      #FDFAF4;
  --nav-h:      64px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  background: var(--cream);
  color: var(--ink);
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  max-width: 1600px;
  margin: 0 auto;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  -webkit-user-drag: none;
  user-select: none;
  -webkit-touch-callout: none;
}
a { color: inherit; text-decoration: none; }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }

/* ── IMAGE PROTECTION ── */
.img-wrap { position: relative; }
.img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 52px;
  background: rgba(245,240,230,0.94);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(26,25,22,0.08); transition: transform 0.3s ease;
  max-width: 1600px;
  margin: 0 auto;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 400;
  color: var(--ink); letter-spacing: 0.02em;
}
.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-links a {
  font-size: 12px; font-weight: 400;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-soft); transition: color 0.2s;
}
.nav-links a:hover { color: var(--ink); }
.nav-btn {
  background: var(--sage) !important;
  color: var(--cream) !important;
  padding: 9px 22px !important;
  border-radius: 2px !important;
  transition: background 0.2s !important;
}
.nav-btn:hover { background: var(--sage-mid) !important; }

/* ── HAMBURGER ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none; border: none;
  cursor: pointer; padding: 8px 4px;
  z-index: 201;
}
.nav-hamburger span {
  width: 22px; height: 1.5px;
  background: var(--ink); display: block;
  transition: all 0.25s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── MOBILE DRAWER ── */
.nav-drawer {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: var(--cream);
  border-bottom: 1px solid var(--cream-dark);
  z-index: 199;
  flex-direction: column;
  padding: 8px 0 16px;
  max-width: 1600px;
  margin: 0 auto;
}
.nav-drawer.open { display: flex; }
.nav-drawer a {
  font-size: 13px; font-weight: 400;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-soft);
  padding: 16px 24px;
  border-bottom: 1px solid var(--cream-dark);
  transition: color 0.2s;
}
.nav-drawer a:last-child {
  color: var(--sage);
  border-bottom: none;
  font-weight: 500;
}
.nav-drawer a:hover { color: var(--ink); }

/* ── SECTION LABEL ── */
.section-label {
  font-family: 'Jost', sans-serif;
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--sage-mid);
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 48px;
}
.section-label::before {
  content: ''; width: 32px; height: 1.5px;
  background: var(--sage-mid); flex-shrink: 0;
}
.section-label.light { color: var(--sage-light); }
.section-label.light::before { background: var(--sage-light); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Jost', sans-serif;
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 16px 36px; border-radius: 2px;
  border: none; cursor: pointer;
  transition: background 0.2s, gap 0.2s;
  align-self: flex-start;
}
.btn-primary { background: var(--sage); color: var(--cream); }
.btn-primary:hover { background: var(--sage-mid); gap: 14px; }
.btn-outline { background: transparent; color: var(--cream); border: 1px solid rgba(245,240,230,0.4); }
.btn-outline:hover { background: rgba(245,240,230,0.08); gap: 14px; }

/* ── FOOTER ── */
footer {
  background: var(--cream);
  border-top: 1px solid var(--cream-dark);
  padding: 28px 52px;
  display: flex; align-items: center; justify-content: space-between;
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px; font-weight: 400; color: var(--ink-muted);
}
.footer-links { display: flex; gap: 28px; list-style: none; }
.footer-links a {
  font-size: 11px; font-weight: 400;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-faint); transition: color 0.2s;
  font-variant-emoji: text;
}
.footer-links a:hover { color: var(--ink-soft); }
.footer-copy { font-size: 11px; color: var(--ink-faint); }

/* ── MOBILE BASE ── */
@media (max-width: 768px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  footer { flex-direction: column; gap: 20px; padding: 28px 24px; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; gap: 16px; }
}
