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

:root {
  --cream: #F5F0E8;
  --warm-white: #FAF7F2;
  --gold: #B8965A;
  --gold-light: #D4B07A;
  --deep: #1C1712;
  --muted: #6B5E4E;
  --blush: #E8D5C4;
}

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

body {
  font-family: 'Jost', sans-serif;
  background: var(--warm-white);
  color: var(--deep);
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 4rem;
  background: rgba(250, 247, 242, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(184, 150, 90, 0.15);
}

.nav-logo { text-decoration: none; display: flex; align-items: center; }
.nav-logo img { height: 72px; width: auto; display: block; }

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

.nav-links a {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold); }

.nav-cta {
  background: var(--gold) !important;
  color: var(--warm-white) !important;
  padding: 0.6rem 1.4rem;
  border-radius: 1px;
  transition: background 0.3s !important;
}
.nav-cta:hover { background: var(--deep) !important; color: var(--warm-white) !important; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--deep);
  transition: all 0.3s;
}

/* MARQUEE */
.marquee-bar {
  background: var(--deep);
  padding: 0.9rem 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  animation: marquee 22s linear infinite;
}
.marquee-item {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  padding: 0 2.5rem;
}
.marquee-dot { color: var(--gold); padding: 0 1rem; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* SECTION HEADERS */
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 4rem;
}
.section-tag {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.section-tag::before {
  content: '';
  display: block;
  width: 1.5rem;
  height: 1px;
  background: var(--gold);
}

h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 5vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--deep);
  margin-bottom: 1.5rem;
}
h1 em { font-style: italic; color: var(--gold); }

h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--deep);
  line-height: 1.1;
}
h2 em { font-style: italic; color: var(--gold); }

/* BUTTONS */
.btn-primary {
  background: var(--deep);
  color: var(--warm-white);
  padding: 1rem 2rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s;
}
.btn-primary:hover { background: var(--gold); }

.btn-outline {
  background: transparent;
  color: var(--deep);
  padding: 1rem 2rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid var(--deep);
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
}
.btn-outline:hover { background: var(--deep); color: var(--warm-white); }

.btn-gold {
  background: var(--gold);
  color: var(--deep);
  padding: 1.25rem 2.5rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  white-space: nowrap;
  transition: background 0.3s;
  font-weight: 500;
}
.btn-gold:hover { background: var(--gold-light); }

/* PAGE HERO (interior pages) */
.page-hero {
  padding: 10rem 6rem 6rem;
  background: var(--cream);
  border-bottom: 1px solid rgba(184,150,90,0.15);
}
.page-hero-tag {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.page-hero-tag::before {
  content: '';
  display: block;
  width: 2rem;
  height: 1px;
  background: var(--gold);
}
.page-hero p {
  font-size: 1rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.8;
  max-width: 520px;
  margin-top: 1rem;
}

/* FOOTER */
footer {
  background: var(--deep);
  padding: 4rem 6rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.footer-logo img {
  height: 56px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
.footer-tagline {
  font-size: 0.75rem;
  color: rgba(250,247,242,0.4);
  margin-top: 0.5rem;
  letter-spacing: 0.05em;
}
.footer-col h4 {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer-col p,
.footer-col a {
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(250,247,242,0.55);
  line-height: 1.9;
  display: block;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  background: var(--deep);
  padding: 1.5rem 6rem;
  border-top: 1px solid rgba(184,150,90,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p,
.footer-bottom a {
  font-size: 0.7rem;
  color: rgba(250,247,242,0.25);
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-bottom a:hover { color: var(--gold); }
.footer-bottom p { display: flex; gap: 1.5rem; }

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(184,150,90,0.3);
  border-radius: 2px;
  color: rgba(250,247,242,0.5);
  text-decoration: none;
  transition: color 0.3s, border-color 0.3s;
}
.social-icon:hover { color: var(--gold) !important; border-color: var(--gold) !important; }

/* RESPONSIVE */
@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; }
  .nav-hamburger { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(250,247,242,0.98);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1.25rem;
    border-bottom: 1px solid rgba(184,150,90,0.15);
  }
  .nav-links.open { display: flex; }
  footer { grid-template-columns: 1fr; padding: 3rem 1.5rem; }
  .footer-bottom { padding: 1.5rem; flex-direction: column; gap: 0.75rem; text-align: center; }
  .footer-bottom p { flex-direction: column; gap: 0.5rem; }
  .section-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .page-hero { padding: 8rem 1.5rem 4rem; }
}

/* ── MOTION (added by Amori) ───────────────────────────── */
@media (prefers-reduced-motion: no-preference){
  .js .section-header,.js .reveal{opacity:0;transform:translateY(26px);
    transition:opacity 1s cubic-bezier(.2,.7,.2,1),transform 1s cubic-bezier(.2,.7,.2,1);}
  .js .in{opacity:1!important;transform:none!important;}
  .js .hero-badge,.js .hero-tag,.js .hero-sub,.js .hero-ctas,.js .hero-stats{
    opacity:0;animation:sbUp 1s cubic-bezier(.2,.7,.2,1) forwards;}
  .js .hero-tag{animation-delay:.12s;} .js .hero-sub{animation-delay:.28s;}
  .js .hero-ctas{animation-delay:.42s;} .js .hero-stats{animation-delay:.55s;}
}
@keyframes sbUp{from{opacity:0;transform:translateY(22px);}to{opacity:1;transform:none;}}
.hero{position:relative;overflow:hidden;}
.hero-glow{position:absolute;top:-14%;left:-8%;width:62%;height:82%;max-width:660px;pointer-events:none;z-index:0;
  background:radial-gradient(ellipse at center,rgba(184,150,90,0.17),transparent 62%);
  filter:blur(26px);animation:sbDrift 15s ease-in-out infinite alternate;}
@keyframes sbDrift{0%{transform:translate(0,0) scale(1);}100%{transform:translate(7%,4%) scale(1.12);}}
