@font-face {
  font-family: 'CaliforniaMango';
  src: url('/fonts/mango_california_regular.woff2') format('woff2'),
       url('/fonts/mango_california_regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ============================================================
   SIP TIDE — Global Stylesheet
   Brand Guide v3.0 · 2025
   ============================================================ */

/* ── GOOGLE FONTS ── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Jost:wght@300;400;500;600;700;800&family=Satisfy&display=swap');

/* ── CSS VARIABLES ── */
:root {
  --white:        #FFFFFF;
  --ivory:        #FAF8F4;
  --bone:         #F4EFE6;
  --linen:        #EDE5D8;
  --warm-sand:    #E0D0B8;
  --deep-clay:    #8B3A24;
  --driftwood:    #6B5040;
  --warm-mid:     #A08060;
  --coral:        #E8896A;
  --terracotta:   #C5573A;
  --sage-whisper: #C8D8C4;
  --sage:         #7A9E86;
  --deep-sage:    #4A7A60;
  --deep-tide:    #3D5A80;

  --radius:   3px;
  --shadow-sm: 0 4px 20px rgba(107,80,64,.07);
  --shadow-md: 0 10px 44px rgba(107,80,64,.10);
  --shadow-lg: 0 20px 64px rgba(107,80,64,.12);
}

/* ── RESET ── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; font-size:16px; }
img { display:block; width:100%; height:100%; object-fit:cover; }
a { text-decoration:none; color:inherit; }
button, input, textarea, select { font:inherit; border:none; outline:none; background:none; }

body {
  background: var(--ivory);
  color: var(--driftwood);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  line-height: 1.8;
  overflow-x: hidden;
}

/* ── NOISE TEXTURE ── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: .018;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ── NAVIGATION ── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: 72px;
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(250,248,244,.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--warm-sand);
  transition: box-shadow .3s ease;
}
.site-nav.scrolled { box-shadow: 0 2px 32px rgba(139,58,36,.07); }

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.nav-logo-img {
  height: 52px;
  width: auto;
  display: block;
  transition: opacity .2s;
}
.nav-logo:hover .nav-logo-img {
  opacity: .85;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 10.5px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--warm-mid);
  transition: color .2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--terracotta);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.nav-links a:hover { color: var(--deep-clay); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active { color: var(--deep-clay); }
.nav-links a.active::after { transform: scaleX(1); }

.nav-cta {
  font-family: 'Jost', sans-serif;
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--white) !important;
  background: var(--terracotta);
  padding: 11px 24px;
  border-radius: var(--radius);
  transition: background .2s, transform .2s;
}
.nav-cta:hover {
  background: var(--deep-clay) !important;
  transform: translateY(-1px);
}
.nav-cta::after { display: none !important; }

/* Hamburger (mobile) */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--deep-clay);
  transition: all .25s ease;
}
.nav-mobile {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: var(--ivory);
  border-bottom: 1px solid var(--warm-sand);
  padding: 24px 32px;
  z-index: 199;
  flex-direction: column;
  gap: 20px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--warm-mid);
  padding: 6px 0;
  border-bottom: 1px solid var(--linen);
}

/* ── MARQUEE ── */
.marquee-strip {
  background: var(--deep-clay);
  padding: 15px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  animation: marquee 32s linear infinite;
}
.marquee-item {
  font-family: 'Jost', sans-serif;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(250,248,244,.42);
  padding: 0 36px;
}
.marquee-item.accent { color: var(--coral); opacity: .65; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── SECTION FOUNDATIONS ── */
.section-eyebrow {
  display: block;
  font-family: 'Satisfy', cursive;
  font-size: 17px;
  color: var(--sage);
  margin-bottom: 14px;
}
.section-h2 {
  font-family: 'CaliforniaMango', 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(34px, 3.2vw, 52px);
  color: var(--deep-clay);
  line-height: 1.08;
  letter-spacing: -.015em;
  margin-bottom: 22px;
}
.section-h2 em { font-style: italic; font-weight: 300; }
.body-copy {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--driftwood);
}
.h-rule { height: 1px; background: var(--warm-sand); }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--white);
  background: var(--terracotta);
  padding: 15px 32px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background .25s, transform .2s;
}
.btn-primary:hover { background: var(--deep-clay); transform: translateY(-2px); }

.btn-secondary {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  font-size: 10.5px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--driftwood);
  border-bottom: 1px solid var(--warm-sand);
  padding-bottom: 2px;
  transition: color .2s, border-color .2s;
}
.btn-secondary:hover { color: var(--deep-clay); border-color: var(--deep-clay); }

.btn-light {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--deep-clay);
  background: var(--ivory);
  padding: 15px 32px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background .25s, transform .2s;
}
.btn-light:hover { background: var(--bone); transform: translateY(-2px); }

/* ── PLACEHOLDER IMAGES ── */
.img-ph {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.img-ph-icon { font-size: 32px; opacity: .2; }
.img-ph-label {
  font-family: 'Jost', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--warm-mid);
  opacity: .45;
}

/* ── INQUIRY FORM ── */
.inquiry-form {
  background: var(--white);
  border: 1px solid var(--warm-sand);
  border-radius: var(--radius);
  padding: 48px;
}
.form-title {
  font-family: 'CaliforniaMango', 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 26px;
  color: var(--deep-clay);
  margin-bottom: 6px;
}
.form-sub {
  font-size: 15px;
  font-weight: 300;
  color: var(--warm-mid);
  margin-bottom: 30px;
}
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-field { margin-bottom: 14px; }
.form-label {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--warm-mid);
  margin-bottom: 7px;
}
.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--warm-sand);
  border-radius: 2px;
  background: var(--ivory);
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-weight: 300;
  color: var(--driftwood);
  transition: border-color .2s;
}
.form-input:focus { border-color: var(--terracotta); }
.form-input::placeholder { color: var(--warm-sand); }
textarea.form-input { resize: none; line-height: 1.65; }
.btn-submit {
  width: 100%;
  margin-top: 8px;
  font-family: 'Jost', sans-serif;
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--white);
  background: var(--terracotta);
  padding: 16px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background .25s;
}
.btn-submit:hover { background: var(--deep-clay); }

/* ── FOOTER ── */
.site-footer {
  background: var(--deep-clay);
  padding: 72px 60px 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 52px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(237,229,216,.1);
}
.footer-brand-name {
  font-family: 'CaliforniaMango', 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 22px;
  color: var(--ivory);
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.footer-logo {
  height: 70px;
  width: auto;
  display: block;
  margin-bottom: 10px;
  filter: brightness(0) invert(1) opacity(.85);
}
.footer-tagline {
  font-family: 'Satisfy', cursive;
  font-size: 18px;
  color: rgba(200,216,196,.5);
  margin-bottom: 18px;
}
.footer-desc {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(237,229,216,.4);
}
.footer-col-title {
  font-family: 'Jost', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: rgba(250,248,244,.25);
  margin-bottom: 20px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-links a {
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .5px;
  color: rgba(237,229,216,.4);
  transition: color .2s;
}
.footer-links a:hover { color: var(--ivory); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Jost', sans-serif;
  font-size: 9.5px;
  font-weight: 400;
  letter-spacing: 1px;
  color: rgba(237,229,216,.22);
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .75s ease, transform .75s ease;
}
.reveal.d1 { transition-delay: .1s; }
.reveal.d2 { transition-delay: .2s; }
.reveal.d3 { transition-delay: .3s; }
.reveal.d4 { transition-delay: .4s; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .site-nav { padding: 0 28px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .site-footer { padding: 52px 28px 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .inquiry-form { padding: 28px 22px; }
  .form-grid-2 { grid-template-columns: 1fr; }
}


/* ── California Mango Display Font ── */
.section-h2,
.hero-h1,
.page-hero-h1,
h1, h2, h3,
.addon-name,
.event-title,
.pillar-title,
.value-title,
.show-up-title,
.pkg-name,
.t-mark,
.footer-tagline {
  font-family: 'CaliforniaMango', 'Cormorant Garamond', serif;
}
