/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }

:root {
  --black:    #000000;
  --eggshell: #F0E8DD;
  --orange:   #CC5500;
  --white:    #FFFFFF;
  --dark:     #0d0d0d;
  --mid:      #1a1a1a;
  --muted:    rgba(240,232,221,0.5);
  --subtle:   rgba(240,232,221,0.08);
}

body {
  font-family: 'Open Sans', sans-serif;
  background: var(--eggshell);
  color: var(--black);
  line-height: 1.7;
  padding-top: 72px;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

/* ── TYPOGRAPHY ── */
.section-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px; font-weight: 700; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--orange);
  margin-bottom: 14px;
  display: flex; align-items: center; gap: 10px;
}
.section-label::before { content: ''; width: 24px; height: 1px; background: var(--orange); }

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800; line-height: 1.05;
  letter-spacing: -0.02em; color: var(--black);
  margin-bottom: 56px;
}
.section-title.light { color: var(--eggshell); }

/* ── BUTTONS ── */
.btn-primary {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; text-decoration: none;
  background: var(--orange); color: var(--white);
  padding: 15px 36px; display: inline-block;
  transition: background 0.2s, transform 0.15s;
  border: none; cursor: pointer;
}
.btn-primary:hover { background: #aa4400; transform: translateY(-1px); }

.btn-ghost {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; text-decoration: none;
  color: var(--muted); border-bottom: 1px solid rgba(240,232,221,0.25);
  padding-bottom: 2px; transition: color 0.2s, border-color 0.2s;
}
.btn-ghost:hover { color: var(--eggshell); border-color: var(--eggshell); }

/* ── NAV ── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--black);
  height: 72px; padding: 0 48px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid var(--subtle);
  transition: border-color 0.3s;
}
.site-nav.scrolled { border-bottom-color: rgba(204,85,0,0.35); }

.nav-logo img {
  height: 40px;
  mix-blend-mode: screen;
  opacity: 0.92;
}

.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; text-decoration: none;
  color: var(--eggshell); transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-links a.current { color: var(--white); }
.nav-links a.current { border-bottom: 1px solid var(--orange); padding-bottom: 2px; }

.nav-cta {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; text-decoration: none;
  background: var(--orange); color: var(--white);
  padding: 10px 22px; transition: background 0.2s;
}
.nav-cta:hover { background: #aa4400; }

.nav-ham {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px;
}
.nav-ham span {
  width: 22px; height: 2px; background: var(--eggshell);
  display: block; transition: 0.3s; transform-origin: center;
}
.nav-ham.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-ham.open span:nth-child(2) { opacity: 0; }
.nav-ham.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 820px) {
  .nav-ham { display: flex; }
  .nav-links {
    display: none; position: absolute; top: 72px; left: 0; right: 0;
    background: var(--black); flex-direction: column;
    padding: 24px 48px; gap: 18px;
    border-bottom: 1px solid var(--subtle);
  }
  .nav-links.open { display: flex; }
  .nav-cta { display: none; }
  .site-nav { padding: 0 24px; }
}

/* ── FOOTER ── */
.site-footer {
  background: var(--black);
  padding: 72px 48px 36px;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 48px;
  border-bottom: 1px solid var(--subtle);
}
.footer-brand img {
  height: 44px; mix-blend-mode: screen; opacity: 0.9; margin-bottom: 18px;
}
.footer-brand p { font-size: 14px; color: var(--muted); line-height: 1.7; max-width: 260px; }
.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 9px; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--orange); margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a { font-size: 14px; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: var(--eggshell); }
.footer-bottom {
  max-width: 1200px; margin: 0 auto; padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 11px; color: rgba(240,232,221,0.3);
}
.footer-orange { color: var(--orange); }

@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .site-footer { padding: 56px 24px 32px; }
}
@media (max-width: 560px) {
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
}

/* ── SCROLL ANIMATIONS ── */
.anim { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.anim.visible { opacity: 1; transform: none; }
.anim-d1 { transition-delay: 0.1s; }
.anim-d2 { transition-delay: 0.2s; }
.anim-d3 { transition-delay: 0.3s; }
.anim-d4 { transition-delay: 0.4s; }
