/* ── Variables ── */
:root {
  --cream: #f9f4ee;
  --warm-white: #fdfaf6;
  --ink: #1c1917;
  --muted: #7c6f63;
  --gold: #b89a6a;
  --gold-light: #d4b896;
  --rule: rgba(184, 154, 106, 0.35);
}

/* ── Reset ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background-color: var(--cream);
  color: var(--ink);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ── Texture overlay ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

/* ── Navigation ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(249, 244, 238, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--rule);
  padding: 0 2rem;
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-brand {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}

.nav-brand span {
  color: var(--gold);
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

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

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

/* Language toggle */
.lang-toggle {
  background: none;
  border: 1px solid var(--rule);
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
  padding: 0.3rem 0.7rem;
  transition: border-color 0.2s;
  margin-left: 1rem;
  flex-shrink: 0;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 0.1rem;
}
.lang-toggle:hover {
  border-color: var(--gold);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--ink);
  transition: all 0.3s;
}

.nav-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: rgba(249, 244, 238, 0.98);
  border-bottom: 1px solid var(--rule);
  padding: 1.5rem 2rem;
  z-index: 99;
}

.nav-menu.open {
  display: block;
}

.nav-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.nav-menu a {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
}

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

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
}

/* ── Page wrapper ── */
.page {
  position: relative;
  z-index: 1;
  padding-top: 64px;
}

/* ── Hero (home only) ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  text-align: center;
}

.hero::before, .hero::after {
  content: '';
  position: absolute;
  width: 180px;
  height: 180px;
  border-color: var(--rule);
  border-style: solid;
  pointer-events: none;
}
.hero::before {
  top: 5rem;
  left: 2.5rem;
  border-width: 1px 0 0 1px;
}
.hero::after {
  bottom: 2.5rem;
  right: 2.5rem;
  border-width: 0 1px 1px 0;
}

.hero-inner {
  max-width: 680px;
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.2s forwards;
}

/* ── Page header (inner pages) ── */
.page-header {
  text-align: center;
  padding: 5rem 2rem 3rem;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 4rem;
}

/* ── Section container ── */
.container {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 2rem 6rem;
}

.container-wide {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem 6rem;
}

/* ── Typography ── */
.eyebrow {
  font-family: 'Jost', sans-serif;
  font-weight: 200;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: block;
}

.names {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(3rem, 9vw, 6rem);
  line-height: 1;
  color: var(--ink);
}

.names .amp {
  font-style: italic;
  color: var(--gold);
  font-size: 0.85em;
  margin: 0 0.15em;
}

h1.page-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2.2rem, 6vw, 3.5rem);
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 1rem;
}

h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: var(--ink);
  margin-bottom: 1rem;
}

p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

/* ── Divider ── */
.divider {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin: 2rem auto;
  max-width: 320px;
}

.divider-line {
  flex: 1;
  height: 1px;
  background: var(--rule);
}

.divider-diamond {
  width: 6px;
  height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* ── Date/location strip ── */
.date-location {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.1rem, 3vw, 1.4rem);
  color: var(--muted);
  line-height: 1.8;
}

.date-location strong {
  font-style: normal;
  font-weight: 400;
  color: var(--ink);
}

/* ── Coming soon pill ── */
.coming-soon {
  margin-top: 3.5rem;
}

.coming-soon p {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

/* ── Placeholder box ── */
.placeholder-box {
  border: 1px dashed var(--rule);
  padding: 3rem 2rem;
  text-align: center;
  border-radius: 2px;
}

.placeholder-box p {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin: 0;
}

/* ── Cards grid ── */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.card {
  border: 1px solid var(--rule);
  padding: 2rem;
  background: var(--warm-white);
}

.card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--ink);
}

.card p {
  font-size: 0.9rem;
  margin: 0;
}

/* ── Scroll hint ── */
.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeUp 1s ease 1.4s forwards;
}

.scroll-hint span {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out 1.8s infinite;
}

/* ── Footer ── */
footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--rule);
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: center;
}

footer p {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0;
}

/* ── Animations ── */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards;
}

/* ── Responsive ── */
@media (max-width: 480px) {
  .hero::before, .hero::after {
    width: 80px;
    height: 80px;
  }
}
