/* ── DORIT POSDORF — Shared Stylesheet ── */

:root {
  --cream:   #FAF7F2;
  --sand:    #F2EDE6;
  --ink:     #1A1410;
  --ink-mid: #4A4038;
  --ink-muted: #7A6E65;
  --burgundy: #6B1D3E;
  --burgundy-light: #8F2B54;
  --gold:    #C5A96A;
  --teal:    #1B7A8A;
  --border:  #E0D8D0;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: 'Inter', -apple-system, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 400;
  line-height: 1.2;
  color: var(--ink);
}

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  padding: 0 4rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: 0.02em;
}
.nav-links { display: flex; align-items: center; gap: 2.5rem; list-style: none; }
.nav-links a {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--burgundy); }
.nav-links .nav-cta {
  color: var(--burgundy);
  border-bottom: 1.5px solid var(--burgundy);
  padding-bottom: 1px;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: var(--burgundy);
  color: var(--cream);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 14px 28px;
  text-decoration: none;
  transition: background 0.2s;
  font-family: 'Inter', sans-serif;
}
.btn-primary:hover { background: var(--burgundy-light); }
.btn-ghost {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  color: var(--ink-mid);
  text-decoration: none;
  border: 1.5px solid var(--border);
  padding: 14px 28px;
  transition: color 0.2s, border-color 0.2s;
}
.btn-ghost:hover { color: var(--burgundy); border-color: var(--burgundy); }

/* ── SECTION SHARED ── */
section { padding: 5rem 4rem; }

.section-label {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mid);
  font-weight: 500;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--gold);
  flex-shrink: 0;
}

/* ── PAGE HERO (subpages) ── */
.page-hero {
  padding: 5rem 4rem 4rem;
  border-bottom: 1px solid var(--border);
  max-width: 720px;
}
.page-hero h1 {
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  margin-bottom: 1.25rem;
  margin-top: 0.5rem;
}
.page-hero p {
  font-size: 1.05rem;
  color: var(--ink-mid);
  line-height: 1.8;
  max-width: 580px;
}

/* ── SITE CTA BAND ── */
.site-cta {
  background: var(--sand);
  border-top: 3px solid var(--burgundy);
  border-bottom: 1px solid var(--border);
  text-align: center;
  padding: 5rem 4rem;
}
.site-cta h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  margin-bottom: 1rem;
  color: var(--ink);
}
.site-cta p {
  font-size: 1rem;
  color: var(--ink-mid);
  max-width: 480px;
  margin: 0 auto 2rem;
  line-height: 1.75;
}
.site-cta .section-label { justify-content: center; }
.btn-burgundy {
  display: inline-block;
  background: var(--burgundy);
  color: var(--cream);
  border: 1.5px solid var(--burgundy);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 14px 28px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  font-family: 'Inter', sans-serif;
}
.btn-burgundy:hover { background: var(--burgundy-light); border-color: var(--burgundy-light); }

/* ── FOOTER ── */
footer {
  background: var(--ink);
  color: var(--cream);
  padding: 3rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem;
  color: var(--cream);
}
.footer-tagline {
  font-size: 0.8rem;
  color: rgba(250,247,242,0.5);
  margin-top: 0.25rem;
}
.footer-links { display: flex; gap: 2rem; list-style: none; }
.footer-links a {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(250,247,242,0.6);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-copy { font-size: 0.72rem; color: rgba(250,247,242,0.35); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a {
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(250,247,242,0.35);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-legal a:hover { color: var(--gold); }

/* ── IMAGE PLACEHOLDER ── */
.img-placeholder {
  background: var(--sand);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--ink-muted);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
}
.img-placeholder svg {
  width: 28px; height: 28px;
  stroke: var(--ink-muted); fill: none; stroke-width: 1;
}

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

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 0 1.5rem; position: relative; }
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(250, 247, 242, 0.98);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0.5rem 0;
    z-index: 150;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    font-size: 0.85rem;
    padding: 0.85rem 1.5rem;
    border-bottom: 1px solid var(--border);
    letter-spacing: 0.08em;
  }
  .nav-links li:last-child a { border-bottom: none; }
  .nav-links .nav-cta { border-bottom: none; padding-bottom: 0.85rem; }

  section { padding: 3rem 1.5rem; }
  .page-hero { padding: 3rem 1.5rem 2.5rem; }
  .site-cta { padding: 3rem 1.5rem; }
  footer { flex-direction: column; gap: 1.5rem; text-align: center; padding: 2rem 1.5rem; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
  .footer-legal { justify-content: center; flex-wrap: wrap; }
}
