/* ═══════════════════════════════════════════
   Always On Safari — Global Styles
   shared.css
═══════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400;1,600&family=Montserrat:wght@300;400;500;600&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
  --gold:        #D4A84A;
  --gold-dim:    rgba(212,168,74,0.28);
  --gold-faint:  rgba(212,168,74,0.13);
  --cream:       #f5f0e8;
  --cream-dim:   rgba(245,240,232,0.68);
  --cream-faint: rgba(245,240,232,0.32);
  --dark:        #1C1410;   /* campfire brown */
  --dark-mid:    #2E1E10;   /* copper brown */
  --dark-card:   #3D2814;   /* saddle brown */
}

body {
  background: var(--dark);
  color: var(--cream);
  font-family: 'Montserrat', sans-serif;
  overflow-x: hidden;
  padding-top: 80px; /* nav height */
}

/* ── UTILITIES ── */
.eyebrow {
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  display: block;
}
.gold-line {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 24px 0;
}
.gold-line-center { margin-left: auto; margin-right: auto; }

.btn {
  display: inline-block;
  padding: 14px 36px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.35s, color 0.35s;
  cursor: pointer;
  background: transparent;
}
.btn:hover { background: var(--gold); color: #1a1208; }
.btn-solid { background: var(--gold); color: #1a1208; }
.btn-solid:hover { background: transparent; color: var(--gold); }
.btn-sm { padding: 11px 26px; font-size: 9px; }

/* ── PAGE HERO (shared across inner pages) ── */
.page-hero {
  position: relative;
  height: 75vh;
  min-height: 480px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 50%;
  opacity: 0.92;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(13,11,8,0.05) 0%, rgba(13,11,8,0.0) 30%, rgba(13,11,8,0.55) 100%);
}
.page-hero-content {
  position: relative;
  text-align: center;
  padding: 0 24px;
  animation: fadeUp 1.2s ease both;
}
.page-hero-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 6vw, 68px);
  font-weight: 400;
  color: var(--cream);
  margin: 16px 0 0;
  line-height: 1.08;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}
.page-hero-content p {
  font-size: 14px;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.85;
  max-width: 560px;
  margin: 16px auto 0;
  text-shadow: 0 1px 8px rgba(0,0,0,0.7);
}

/* ── SECTION WRAPPERS ── */
.section { padding: 96px 24px; }
.section-mid { padding: 80px 24px; }
.section-sm { padding: 56px 24px; }
.container { max-width: 1200px; margin: 0 auto; }
.container-sm { max-width: 800px; margin: 0 auto; }

/* ── SECTION HEADINGS ── */
.section-heading { text-align: center; margin-bottom: 56px; }
.section-heading h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 400;
  color: var(--cream);
  margin-top: 16px;
  line-height: 1.2;
}

/* ── QUOTE STRIP ── */
.quote-strip {
  background: #251A0C;
  border-top: 1px solid var(--gold-dim);
  border-bottom: 1px solid var(--gold-dim);
  padding: 80px 24px;
  text-align: center;
}
.quote-strip blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 3.5vw, 36px);
  font-weight: 400;
  font-style: italic;
  color: var(--cream);
  line-height: 1.5;
  max-width: 760px;
  margin: 0 auto;
}
.quote-strip cite {
  display: block;
  margin-top: 28px;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
}
.quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px;
  color: var(--gold);
  line-height: 0.4;
  margin-bottom: 20px;
  display: block;
}

/* ── CTA STRIP ── */
.cta-strip {
  padding: 96px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-strip h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 4.5vw, 52px);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.15;
  margin: 16px 0 16px;
}
.cta-strip p {
  font-size: 13px;
  font-weight: 300;
  color: var(--cream-dim);
  line-height: 1.9;
  max-width: 500px;
  margin: 0 auto 44px;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scrollPulse {
  0%   { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50%  { opacity: 1; transform: scaleY(1); }
  100% { opacity: 0; transform: scaleY(1); transform-origin: bottom; }
}
@media (max-width: 768px) {
  body {
    --cream-dim: rgba(245,240,232,0.95);
    --cream-faint: rgba(245,240,232,0.82);
  }
}