/* Entual shared base: tokens, base, nav, buttons, footer, animations */
:root {
  --cream: #F3EFE7;
  --cream-dark: #E8E2D6;
  --blue: #1E3142;
  --blue-light: #2A4158;
  --bronze: #B59463;
  --bronze-light: #C9AB7E;
  --grey: #7A7A7A;
  --grey-light: #A0A0A0;
  --white: #FFFFFF;

  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --max-width: 1140px;
  --section-pad: 100px;
  --section-pad-mobile: 60px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--blue);
  background-color: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

p {
  font-size: 1.05rem;
  color: var(--blue);
  max-width: 620px;
}

.text-grey { color: var(--grey); }
.text-bronze { color: var(--bronze); }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.8rem; }

.section-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 16px;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 14px 32px;
  border-radius: 6px;
  transition: all 0.25s ease;
}

.btn-primary {
  background-color: var(--blue);
  color: var(--cream);
}
.btn-primary:hover {
  background-color: var(--blue-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(30, 49, 66, 0.2);
}

.btn-outline {
  background-color: transparent;
  color: var(--blue);
  border: 1.5px solid var(--blue);
}
.btn-outline:hover {
  background-color: var(--blue);
  color: var(--cream);
}

.btn-bronze {
  background-color: var(--bronze);
  color: var(--white);
}
.btn-bronze:hover {
  background-color: var(--bronze-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(181, 148, 99, 0.25);
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: all 0.3s ease;
}

.nav.scrolled {
  background-color: rgba(243, 239, 231, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 14px 0;
  box-shadow: 0 1px 0 rgba(30, 49, 66, 0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo img {
  height: 36px;
  width: auto;
}

.nav-logo span {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--blue);
  opacity: 0.7;
  transition: opacity 0.2s;
}

.nav-links a:hover { opacity: 1; }

.nav-cta {
  opacity: 1 !important;
  background-color: var(--blue);
  color: var(--cream) !important;
  padding: 10px 24px;
  border-radius: 6px;
  transition: all 0.25s ease !important;
}

.nav-cta:hover {
  background-color: var(--blue-light);
}

.nav-signin {
  opacity: 1 !important;
  color: var(--blue) !important;
  padding: 10px 24px;
  border-radius: 6px;
  border: 1.5px solid var(--blue);
  transition: all 0.25s ease !important;
  font-weight: 500;
}

.nav-signin:hover {
  background-color: var(--blue);
  color: var(--cream) !important;
}

/* Mobile Nav */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

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

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--cream);
    padding: 24px 32px;
    gap: 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }
  .nav-links.open { display: flex; }
}

.footer {
  padding: 72px 0 32px;
  border-top: 1px solid var(--cream-dark);
  background: var(--cream);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 56px;
  align-items: start;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 360px;
}
.footer-brand-row { display: flex; align-items: center; gap: 10px; }
.footer-brand-row img { height: 28px; width: auto; }
.footer-brand-row span {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--blue);
}
.footer-tagline {
  font-size: 0.88rem;
  color: var(--grey);
  line-height: 1.6;
  margin: 0;
  max-width: none;
}
.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  margin: 4px 0 16px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  font-size: 0.88rem;
  color: var(--grey);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--bronze); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--cream-dark);
}
.footer-legal {
  font-size: 0.78rem;
  color: var(--grey);
  margin: 0;
  max-width: none;
}
.footer-legal a { color: var(--bronze); text-decoration: none; }
.footer-legal a:hover { color: var(--blue); }
.footer-copy {
  font-size: 0.78rem;
  color: var(--grey-light);
  margin: 0;
  max-width: none;
}
@media (max-width: 768px) {
  .footer { padding: 56px 0 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; margin-bottom: 36px; }
  .footer-brand { max-width: none; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.stagger > .fade-up:nth-child(1) { transition-delay: 0s; }
.stagger > .fade-up:nth-child(2) { transition-delay: 0.1s; }
.stagger > .fade-up:nth-child(3) { transition-delay: 0.2s; }
.stagger > .fade-up:nth-child(4) { transition-delay: 0.3s; }
.stagger > .fade-up:nth-child(5) { transition-delay: 0.4s; }
.stagger > .fade-up:nth-child(6) { transition-delay: 0.5s; }
.stagger > .fade-up:nth-child(7) { transition-delay: 0.6s; }
.stagger > .fade-up:nth-child(8) { transition-delay: 0.7s; }
.stagger > .fade-up:nth-child(9) { transition-delay: 0.8s; }
.stagger > .fade-up:nth-child(10) { transition-delay: 0.9s; }
.stagger > .fade-up:nth-child(11) { transition-delay: 1.0s; }
.stagger > .fade-up:nth-child(12) { transition-delay: 1.1s; }

