/* ===== CSS Variables ===== */
:root {
  --gold: #C4922A;
  --gold-hover: #A67820;
  --gold-light: #E8D5A0;
  --gold-pale: #FDF6E7;
  --brown: #3D1F0D;
  --brown-light: #6B4226;
  --cream: #FBF5EC;
  --cream-dark: #F0E6D3;
  --white: #FFFFFF;
  --text: #2C1A0E;
  --text-secondary: #5C3D2E;
  --text-muted: #9B7255;
  --border: #DEC99A;
  --border-light: #EEE0C4;
  --shadow-sm: 0 1px 4px rgba(42,20,8,0.08);
  --shadow: 0 4px 16px rgba(42,20,8,0.10);
  --shadow-lg: 0 8px 32px rgba(42,20,8,0.14);
  --radius: 6px;
  --radius-lg: 12px;
  --transition: 220ms ease;
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', system-ui, -apple-system, sans-serif;
  --nav-height: 70px;
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ===== Typography ===== */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--brown);
}
h1 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 600; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); font-weight: 500; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); font-weight: 500; }
h4 { font-size: 1.1rem; font-weight: 500; }
p { color: var(--text-secondary); }
.lead { font-size: 1.15rem; color: var(--text-secondary); line-height: 1.75; }

/* ===== Layout ===== */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section { padding: 5rem 0; }
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.section-title { margin-bottom: 0.75rem; }
.section-desc { max-width: 520px; margin: 0 auto; }
.section-cta { text-align: center; margin-top: 2.5rem; }

/* ===== Header ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}
.site-header.scrolled,
.site-header:focus-within {
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.logo-icon {
  color: var(--gold);
  font-size: 1.4rem;
  line-height: 1;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-main {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--brown);
}
.logo-sub {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}
.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--brown);
  transition: color var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0; right: 0;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }
.nav-link:hover,
.nav-link.active { color: var(--gold); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--brown);
  border-radius: 2px;
  transition: var(--transition);
}
@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: var(--nav-height);
    left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 1rem 0;
    box-shadow: var(--shadow);
    transform: translateY(-110%);
    transition: transform var(--transition);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-link { padding: 0.8rem 1.5rem; width: 100%; }
}

/* ===== Page offset for fixed header ===== */
main { padding-top: var(--nav-height); }

/* ===== Page Hero ===== */
.page-hero {
  background: var(--brown);
  padding: 3.5rem 0 2.5rem;
  text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: 0.5rem; }
.page-hero p { color: var(--gold-light); }

/* ===== Breadcrumb ===== */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
}
.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: var(--gold-light); }

/* ===== Footer ===== */
.site-footer {
  background: var(--brown);
  color: var(--cream-dark);
  padding-top: 4rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo .logo-main { color: var(--white); }
.footer-logo .logo-sub { color: rgba(255,255,255,0.45); }
.footer-tagline { font-size: 0.88rem; color: rgba(255,255,255,0.5); margin-top: 0.75rem; }
.footer-heading {
  font-family: var(--font-heading);
  color: var(--gold-light);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col a { font-size: 0.88rem; color: rgba(255,255,255,0.6); transition: color var(--transition); }
.footer-col a:hover { color: var(--gold-light); }
.footer-contact { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-contact li { display: flex; align-items: center; gap: 0.6rem; font-size: 0.88rem; color: rgba(255,255,255,0.6); }
.footer-bottom {
  padding: 1.25rem 0;
  text-align: center;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.35); }
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ===== Error Pages ===== */
.error-page { min-height: 60vh; display: flex; align-items: center; }
.error-page-content { text-align: center; padding: 5rem 1rem; }
.error-ornament { font-size: 2rem; color: var(--gold); margin-bottom: 1rem; }
.error-code { font-size: clamp(4rem, 12vw, 8rem); color: var(--gold-light); font-family: var(--font-heading); line-height: 1; margin-bottom: 0.5rem; }
.error-actions { display: flex; justify-content: center; gap: 1rem; margin-top: 2rem; flex-wrap: wrap; }

/* ===== Utilities ===== */
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.empty-state { text-align: center; padding: 4rem 1rem; color: var(--text-muted); }
.empty-state a { color: var(--gold); text-decoration: underline; }
