/* ═══════════════════════════════════════════
   DULCE DIARIES  ·  SHARED STYLESHEET
   Cormorant Garamond + DM Sans
   ═══════════════════════════════════════════ */

:root {
  --white:     #FFFFFF;
  --cream:     #FAF6F0;
  --warm:      #F6F3EE;
  --espresso:  #0F0F0F;
  --champ:     #C9A96E;
  --champ-lt:  rgba(201,169,110,0.18);
  --champ-mid: rgba(201,169,110,0.45);
  --ink-60:    rgba(15,15,15,0.60);
  --ink-40:    rgba(15,15,15,0.40);
  --cta:       #C7215D;
  --cta-hover: #a51a4e;

  /* Serape jewel tones */
  --garnet:    #7B1C2A;
  --rose:      #C2185B;
  --amber:     #D4A017;
  --forest:    #1B5E20;
  --teal:      #00838F;
  --sapphire:  #1565C0;
  --indigo:    #283593;
  --plum:      #6A1B9A;
}

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

body {
  font-family: "DM Sans", sans-serif;
  background: var(--white);
  color: var(--espresso);
  overflow-x: hidden;
}

/* ─── NAV ─────────────────────────────────── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 300;
  padding: 22px 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--cream);
  transition: box-shadow 0.35s;
}
#nav.scrolled {
  box-shadow: 0 1px 0 rgba(140,100,60,0.18);
}

.nav-brand {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  line-height: 1.15;
}
.nav-picado { display: block; }
.nav-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 21px;
  font-weight: 300;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--espresso);
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-60);
  text-decoration: none;
  transition: color 0.25s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--espresso); }

/* Book Now pill in nav */
.nav-book {
  display: inline-block;
  padding: 11px 28px;
  background: var(--cta) !important;
  color: #fff !important;
  font-size: 10px !important;
  font-weight: 600 !important;
  letter-spacing: 0.20em !important;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.25s, transform 0.2s;
}
.nav-book:hover {
  background: var(--cta-hover) !important;
  transform: translateY(-1px);
  color: #fff !important;
}

/* ─── BUTTONS ──────────────────────────────── */
.btn-gold {
  display: inline-block;
  padding: 17px 44px;
  background: var(--cta);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.25s, transform 0.2s;
}
.btn-gold:hover { background: var(--cta-hover); transform: translateY(-2px); }

.btn-outline {
  display: inline-block;
  padding: 16px 44px;
  border: 1.5px solid var(--champ);
  color: var(--champ);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.25s, color 0.25s;
}
.btn-outline:hover { background: var(--champ); color: #fff; }

.btn-outline-white {
  display: inline-block;
  padding: 16px 44px;
  border: 1.5px solid rgba(255,255,255,0.55);
  color: rgba(255,255,255,0.85);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  transition: border-color 0.25s, color 0.25s;
}
.btn-outline-white:hover {
  border-color: var(--champ);
  color: var(--champ);
}

/* ─── PENNANT STRIP ─────────────────────────── */
.pennant {
  display: flex;
  height: 5px;
  width: 100%;
}
.pennant span { flex: 1; }

/* ─── PAGE HEADER (inner pages) ──────────────── */
.page-header {
  position: relative;
  min-height: 52vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--espresso);
}
.page-header-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-header-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.30;
}
.page-header-content {
  position: relative;
  z-index: 1;
  padding: 0 64px 72px;
  max-width: 1000px;
}
.page-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--champ);
  margin-bottom: 18px;
  margin-top: 120px;
}
.page-header h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 300;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.page-header p {
  font-size: 17px;
  line-height: 1.72;
  color: rgba(255,255,255,0.62);
  max-width: 520px;
}

/* ─── SECTION LAYOUT ─────────────────────────── */
.section-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 64px;
}
.section-label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--champ);
  margin-bottom: 18px;
}

/* ─── FOOTER ─────────────────────────────────── */
footer {
  background: var(--espresso);
  padding: 80px 64px 40px;
}
.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 64px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .nav-name {
  font-size: 22px;
  color: #fff;
  display: block;
  margin-bottom: 2px;
}
.footer-brand .nav-byline { display: block; }
.footer-brand p {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255,255,255,0.45);
  margin-top: 18px;
  max-width: 300px;
}
.footer-col h4 {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 11px; }
.footer-col ul a {
  font-size: 14px;
  color: rgba(255,255,255,0.60);
  text-decoration: none;
  transition: color 0.25s;
}
.footer-col ul a:hover { color: var(--champ); }
.footer-socials {
  display: flex;
  gap: 16px;
  margin-top: 0;
}
.footer-brand .footer-socials {
  margin-top: 20px;
}
.footer-socials a {
  color: rgba(255,255,255,0.45);
  transition: color 0.25s;
  display: flex;
  align-items: center;
}
.footer-socials a:hover { color: var(--cta); }

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,0.25);
}

/* ─── ANIMATIONS ─────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.85s cubic-bezier(0.16,1,0.3,1),
              transform 0.85s cubic-bezier(0.16,1,0.3,1);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.10s; }
.delay-2 { transition-delay: 0.20s; }
.delay-3 { transition-delay: 0.30s; }
.delay-4 { transition-delay: 0.40s; }
.delay-5 { transition-delay: 0.50s; }

/* ─── RESPONSIVE ─────────────────────────────── */
@media (max-width: 1024px) {
  #nav { padding: 24px 32px; }
  .section-inner { padding: 0 32px; }
  footer { padding: 64px 32px 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .page-header-content { padding: 0 32px 60px; }
}
@media (max-width: 768px) {
  #nav { padding: 18px 20px; }
  .nav-links { gap: 20px; }
  .nav-links li:nth-child(1),
  .nav-links li:nth-child(2),
  .nav-links li:nth-child(3) { display: none; }
  .section-inner { padding: 0 20px; }
  footer { padding: 56px 20px 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .page-header-content { padding: 0 20px 48px; }
  .page-header h1 { font-size: clamp(36px, 8vw, 56px); }
  .btn-gold, .btn-outline, .btn-outline-white {
    padding: 15px 32px;
    font-size: 10px;
  }
}
