/* ── IRONHORSE DESIGNS — Global Styles ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,900;1,700&family=Barlow+Condensed:wght@300;400;600;700&family=Barlow:wght@300;400;500&display=swap');

:root {
  --charcoal: #1a1814;
  --dark:     #111010;
  --mid:      #2c2820;
  --amber:    #c8832a;
  --amber-light: #e09a40;
  --stone:    #8c7e6a;
  --cream:    #f2ebe0;
  --warm-white: #faf7f2;
  --text-muted: #9a9080;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Barlow', sans-serif;
  background: var(--charcoal);
  color: var(--cream);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 60px;
  background: linear-gradient(to bottom, rgba(17,16,16,0.97) 0%, transparent 100%);
  backdrop-filter: blur(4px);
  transition: background 0.3s;
}
nav.scrolled { background: rgba(17,16,16,0.98) !important; }

.nav-logo { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.nav-logo svg { height: 52px; width: auto; flex-shrink: 0; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1; }
.nav-logo-text .brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 900;
  letter-spacing: 0.08em; color: var(--warm-white);
}
.nav-logo-text .tagline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.6rem; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--amber); margin-top: 3px;
}
.nav-links { display: flex; gap: 32px; list-style: none; align-items: center; }
.nav-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.76rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--cream);
  text-decoration: none; opacity: 0.75;
  transition: opacity 0.2s, color 0.2s;
}
.nav-links a:hover, .nav-links a.active { opacity: 1; color: var(--amber-light); }
.nav-cta {
  background: var(--amber) !important; color: var(--dark) !important;
  opacity: 1 !important; padding: 10px 20px !important;
  font-weight: 700 !important; transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--amber-light) !important; }

/* ── PAGE HEADER (inner pages) ── */
.page-hero {
  padding-top: 140px; padding-bottom: 80px;
  padding-left: 80px; padding-right: 80px;
  background: var(--dark);
  border-bottom: 1px solid rgba(200,131,42,0.15);
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 50%; height: 100%;
  background: linear-gradient(to left, rgba(200,131,42,0.04), transparent);
  pointer-events: none;
}
.page-hero-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem; letter-spacing: 0.4em;
  text-transform: uppercase; color: var(--amber);
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 18px;
}
.page-hero-eyebrow::before {
  content: ''; width: 30px; height: 1px; background: var(--amber);
}
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900; color: var(--warm-white); line-height: 1.1;
}
.page-hero h1 em { font-style: italic; color: var(--amber-light); }
.page-hero p {
  font-size: 1rem; font-weight: 300;
  color: rgba(242,235,224,0.65); line-height: 1.8;
  max-width: 560px; margin-top: 20px;
}

/* ── SECTIONS ── */
section { padding: 100px 80px; }
.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem; letter-spacing: 0.4em;
  text-transform: uppercase; color: var(--amber);
  display: flex; align-items: center; gap: 12px; margin-bottom: 18px;
}
.section-label::before { content: ''; width: 30px; height: 1px; background: var(--amber); }
h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700; color: var(--warm-white); line-height: 1.15;
}

/* ── BUTTONS ── */
.btn-primary {
  background: var(--amber); color: var(--dark);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  padding: 16px 36px; text-decoration: none;
  display: inline-block; transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover { background: var(--amber-light); transform: translateY(-2px); }
.btn-ghost {
  color: var(--cream); font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; text-decoration: none; padding: 16px 0;
  border-bottom: 1px solid var(--stone); transition: color 0.2s, border-color 0.2s;
}
.btn-ghost:hover { color: var(--amber-light); border-color: var(--amber-light); }
.btn-dark {
  background: var(--dark); color: var(--amber-light);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.82rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; padding: 18px 44px;
  text-decoration: none; white-space: nowrap;
  display: inline-block; transition: background 0.2s, transform 0.2s;
}
.btn-dark:hover { background: var(--charcoal); transform: translateY(-2px); }

/* ── CTA BAND ── */
.cta-band {
  background: var(--amber); padding: 80px;
  display: flex; align-items: center;
  justify-content: space-between; gap: 40px;
}
.cta-band h2 { color: var(--dark); font-size: clamp(1.6rem, 3vw, 2.4rem); }
.cta-band p {
  color: rgba(26,24,20,0.7); font-size: 0.95rem;
  font-weight: 300; margin-top: 10px;
  max-width: 420px; line-height: 1.7;
}

/* ── FOOTER ── */
footer {
  background: var(--dark); padding: 70px 80px 36px;
  border-top: 1px solid rgba(200,131,42,0.15);
}
.footer-top {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px; margin-bottom: 60px;
}
.footer-brand .brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 900;
  color: var(--warm-white); letter-spacing: 0.05em;
}
.footer-brand .tagline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.65rem; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--amber);
  margin-top: 4px; margin-bottom: 18px;
}
.footer-brand p {
  font-size: 0.88rem; font-weight: 300;
  color: var(--stone); line-height: 1.7; margin-bottom: 24px;
}
.footer-col h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--amber); margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 0.88rem; font-weight: 300;
  color: var(--stone); text-decoration: none; transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--amber-light); }
.footer-col address {
  font-style: normal; font-size: 0.88rem;
  font-weight: 300; color: var(--stone); line-height: 2;
}
.footer-col address a { color: var(--amber); text-decoration: none; }
.footer-bottom {
  border-top: 1px solid rgba(140,126,106,0.15);
  padding-top: 28px; display: flex;
  justify-content: space-between; align-items: center;
}
.footer-bottom p {
  font-size: 0.78rem; color: rgba(140,126,106,0.5);
  font-family: 'Barlow Condensed', sans-serif; letter-spacing: 0.1em;
}
.social-links { display: flex; gap: 18px; }
.social-links a {
  width: 34px; height: 34px;
  border: 1px solid rgba(140,126,106,0.3); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--stone); text-decoration: none;
  font-size: 0.78rem; font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; transition: border-color 0.2s, color 0.2s;
}
.social-links a:hover { border-color: var(--amber); color: var(--amber); }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 16px 24px; }
  .nav-links { display: none; }
  .mobile-menu-btn {
    display: flex; flex-direction: column; gap: 5px;
    cursor: pointer; padding: 6px;
  }
  .mobile-menu-btn span {
    display: block; width: 24px; height: 2px; background: var(--cream);
    transition: 0.3s;
  }
  section { padding: 70px 24px; }
  .page-hero { padding: 120px 24px 60px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .cta-band { flex-direction: column; padding: 60px 24px; text-align: center; }
}
@media (max-width: 600px) {
  .footer-top { grid-template-columns: 1fr; }
}
