@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,700;1,9..144,400;1,9..144,700&family=DM+Sans:wght@400;500&display=swap');

:root {
  --cream: #F5F0E8;
  --cream-dark: #EDE8DF;
  --brown: #1a1208;
  --orange: #B85C2A;
  --orange-light: rgba(184,92,42,0.1);
  --orange-border: rgba(184,92,42,0.2);
  --brown-muted: rgba(26,18,8,0.5);
  --brown-faint: rgba(26,18,8,0.07);
  --white: #ffffff;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--cream); color: var(--brown); }

/* NAV */
nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 2.5rem; border-bottom: 1px solid var(--brown-faint);
  position: sticky; top: 0; background: var(--cream); z-index: 100;
}
.logo { font-family: 'Fraunces', serif; font-size: 22px; font-weight: 700; color: var(--brown); letter-spacing: -0.5px; text-decoration: none; }
.logo em { font-style: italic; color: var(--orange); }
.nav-links { display: flex; gap: 1.75rem; }
.nav-links a { font-size: 13px; color: var(--brown-muted); text-decoration: none; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--orange); }
.nav-cta {
  background: var(--orange); color: var(--cream); font-size: 13px; font-weight: 500;
  padding: 9px 22px; border-radius: 100px; border: none; font-family: 'DM Sans', sans-serif;
  cursor: pointer; text-decoration: none; transition: opacity 0.2s; display: inline-block;
}
.nav-cta:hover { opacity: 0.88; }

/* TICKER */
.ticker { background: var(--orange); padding: 0.75rem 0; overflow: hidden; }
.ticker-track { display: flex; gap: 2.5rem; animation: ticker 20s linear infinite; white-space: nowrap; width: max-content; }
.ticker-track span { font-family: 'Fraunces', serif; font-size: 15px; font-style: italic; color: #F5F0E8; }
.ticker-dot { color: rgba(245,240,232,0.35) !important; font-style: normal !important; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* SECTIONS */
.section { padding: 3.5rem 2.5rem; }
.section-alt { background: var(--cream-dark); border-top: 1px solid var(--brown-faint); }
.section-inner { max-width: 1100px; margin: 0 auto; }
.sh { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 0.5rem; }
.sh-title { font-family: 'Fraunces', serif; font-size: 44px; font-weight: 700; letter-spacing: -1.5px; color: var(--brown); }
.sh-link { font-size: 13px; color: var(--orange); text-decoration: none; }
.sh-link:hover { text-decoration: underline; }
.sh-sub { font-size: 14px; color: var(--brown-muted); margin-bottom: 2rem; }

/* BUTTONS */
.btn-primary {
  background: var(--brown); color: var(--cream); font-size: 14px; font-weight: 500;
  padding: 13px 28px; border-radius: 100px; border: none; font-family: 'DM Sans', sans-serif;
  cursor: pointer; text-decoration: none; display: inline-block; transition: opacity 0.2s;
}
.btn-primary:hover { opacity: 0.85; }
.btn-ghost {
  background: transparent; color: var(--brown); font-size: 14px;
  padding: 13px 28px; border-radius: 100px; border: 1px solid rgba(26,18,8,0.2);
  font-family: 'DM Sans', sans-serif; cursor: pointer; text-decoration: none;
  display: inline-block; transition: background 0.2s;
}
.btn-ghost:hover { background: var(--orange-light); }

/* TRIP CARDS */
.trips-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.trip-card { background: var(--white); border-radius: 14px; overflow: hidden; border: 1px solid var(--brown-faint); transition: transform 0.2s; }
.trip-card:hover { transform: translateY(-3px); }
.trip-img { height: 155px; position: relative; }
.ti1 { background: linear-gradient(135deg,#1a4020,#3a8040,#70c060); }
.ti2 { background: linear-gradient(135deg,#402010,#805030,#c08050); }
.ti3 { background: linear-gradient(135deg,#102040,#204080,#5080c0); }
.ti4 { background: linear-gradient(135deg,#103030,#206060,#40a090); }
.ti5 { background: linear-gradient(135deg,#301010,#602020,#a04040); }
.ti6 { background: linear-gradient(135deg,#202010,#504030,#907060); }
.trip-badge { position: absolute; top: 10px; left: 10px; font-size: 10px; padding: 4px 10px; border-radius: 100px; background: var(--cream); color: var(--orange); font-weight: 500; z-index: 2; }
.trip-affiliate { position: absolute; top: 10px; right: 10px; font-size: 10px; padding: 4px 10px; border-radius: 100px; background: rgba(26,18,8,0.55); color: rgba(245,240,232,0.85); z-index: 2; }
.trip-body { padding: 1rem; }
.trip-name { font-family: 'Fraunces', serif; font-size: 17px; font-weight: 700; color: var(--brown); margin-bottom: 3px; }
.trip-meta { font-size: 12px; color: var(--brown-muted); }
.trip-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 10px; padding-top: 10px; border-top: 1px solid var(--brown-faint); }
.trip-price { font-size: 14px; font-weight: 500; color: var(--orange); }
.trip-book { font-size: 12px; color: var(--orange); text-decoration: none; font-weight: 500; }
.trip-book:hover { text-decoration: underline; }

/* BLOG CARDS */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.blog-card { background: var(--cream); border-radius: 14px; padding: 1.25rem; border: 1px solid var(--brown-faint); text-decoration: none; display: block; transition: transform 0.2s; }
.blog-card:hover { transform: translateY(-3px); }
.blog-tag { font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--orange); margin-bottom: 8px; }
.blog-title { font-family: 'Fraunces', serif; font-size: 18px; font-weight: 700; color: var(--brown); line-height: 1.15; margin-bottom: 8px; }
.blog-excerpt { font-size: 12px; color: var(--brown-muted); line-height: 1.65; }
.blog-date { font-size: 11px; color: rgba(26,18,8,0.25); margin-top: 12px; }

/* TIER CARDS */
.tier-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.tier-card { background: var(--cream); border-radius: 16px; overflow: hidden; border: 1px solid var(--brown-faint); transition: transform 0.2s; }
.tier-card:hover { transform: translateY(-3px); }
.tier-card.featured { border: 1.5px solid var(--orange); }
.featured-badge { background: var(--orange); color: var(--cream); font-size: 10px; letter-spacing: 1px; text-transform: uppercase; padding: 5px 14px; text-align: center; }
.tier-header { padding: 1.25rem 1.25rem 1rem; border-bottom: 1px solid var(--brown-faint); }
.tier-label { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--orange); margin-bottom: 6px; }
.tier-name { font-family: 'Fraunces', serif; font-size: 22px; font-weight: 700; color: var(--brown); margin-bottom: 4px; }
.tier-price { font-size: 13px; color: var(--brown-muted); }
.tier-price strong { font-size: 18px; color: var(--orange); font-weight: 500; }
.tier-trips { padding: 1rem 1.25rem; display: flex; flex-direction: column; gap: 12px; }
.tier-trip { display: flex; gap: 10px; align-items: flex-start; }
.tier-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--orange); flex-shrink: 0; margin-top: 5px; }
.tier-trip-name { font-size: 13px; font-weight: 500; color: var(--brown); }
.tier-trip-meta { font-size: 11px; color: var(--brown-muted); }
.tier-cta {
  margin: 0 1.25rem 1.25rem; background: var(--brown); color: var(--cream);
  font-size: 13px; font-weight: 500; padding: 11px; border-radius: 100px; border: none;
  font-family: 'DM Sans', sans-serif; cursor: pointer; width: calc(100% - 2.5rem);
  text-align: center; text-decoration: none; display: block; transition: opacity 0.2s;
}
.tier-cta:hover { opacity: 0.85; }
.tier-card.featured .tier-cta { background: var(--orange); }

/* FOOTER */
footer { padding: 2rem 2.5rem; border-top: 1px solid var(--brown-faint); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-logo { font-family: 'Fraunces', serif; font-size: 18px; font-weight: 700; color: var(--brown); text-decoration: none; }
.footer-logo em { font-style: italic; color: var(--orange); }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { font-size: 12px; color: rgba(26,18,8,0.3); text-decoration: none; }
.footer-links a:hover { color: var(--orange); }
.footer-copy { font-size: 12px; color: rgba(26,18,8,0.2); }
.affiliate-note { font-size: 11px; color: rgba(26,18,8,0.3); text-align: center; padding: 0.75rem 2.5rem; border-top: 1px solid var(--brown-faint); line-height: 1.6; background: var(--cream-dark); }

/* FILTER BUTTONS */
.dest-filter { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 2rem; }
.filter-btn { font-size: 12px; padding: 7px 16px; border-radius: 100px; border: 1px solid rgba(26,18,8,0.15); background: transparent; color: var(--brown-muted); cursor: pointer; font-family: 'DM Sans', sans-serif; transition: all 0.2s; }
.filter-btn.active, .filter-btn:hover { background: var(--orange); color: var(--cream); border-color: var(--orange); }

/* CONTACT FORM */
.contact-form { display: flex; flex-direction: column; gap: 10px; }
.contact-form input, .contact-form textarea, .contact-form select {
  background: var(--white); border: 1px solid rgba(26,18,8,0.12); border-radius: 10px;
  padding: 12px 16px; color: var(--brown); font-family: 'DM Sans', sans-serif; font-size: 14px; outline: none; transition: border-color 0.2s;
}
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { border-color: var(--orange); }
.contact-form textarea { height: 100px; resize: none; }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: rgba(26,18,8,0.3); }
.contact-submit { background: var(--orange); color: var(--cream); font-size: 14px; font-weight: 500; padding: 13px 32px; border-radius: 100px; border: none; font-family: 'DM Sans', sans-serif; cursor: pointer; align-self: flex-start; transition: opacity 0.2s; }
.contact-submit:hover { opacity: 0.88; }
.form-success { display: none; background: var(--orange-light); border: 1px solid var(--orange-border); border-radius: 10px; padding: 1rem 1.25rem; color: var(--orange); font-size: 14px; }

/* BLOG POST PAGE */
.post-header { padding: 4rem 2.5rem 2rem; max-width: 760px; margin: 0 auto; }
.post-tag { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--orange); margin-bottom: 1rem; }
.post-title { font-family: 'Fraunces', serif; font-size: 52px; font-weight: 700; letter-spacing: -2px; line-height: 1; color: var(--brown); margin-bottom: 1.5rem; }
.post-meta { font-size: 13px; color: var(--brown-muted); margin-bottom: 2rem; }
.post-hero-img { width: 100%; height: 400px; background: linear-gradient(135deg,#1a3020,#3a6040,#60a060); border-radius: 16px; margin-bottom: 3rem; }
.post-body { max-width: 760px; margin: 0 auto; padding: 0 2.5rem 4rem; }
.post-body h2 { font-family: 'Fraunces', serif; font-size: 28px; font-weight: 700; color: var(--brown); margin: 2rem 0 1rem; letter-spacing: -0.5px; }
.post-body p { font-size: 15px; color: rgba(26,18,8,0.75); line-height: 1.85; margin-bottom: 1.25rem; }
.post-body ul { margin: 0 0 1.25rem 1.5rem; }
.post-body ul li { font-size: 15px; color: rgba(26,18,8,0.75); line-height: 1.85; margin-bottom: 0.5rem; }
.post-affiliate-box { background: var(--orange-light); border: 1px solid var(--orange-border); border-radius: 12px; padding: 1.25rem 1.5rem; margin: 2rem 0; }
.post-affiliate-box p { color: var(--brown); font-size: 14px; margin-bottom: 0.75rem; }
.post-affiliate-box a { color: var(--orange); font-weight: 500; font-size: 14px; text-decoration: none; }
.post-affiliate-box a:hover { text-decoration: underline; }

/* RESPONSIVE */
@media (max-width: 768px) {
  nav { padding: 1rem 1.25rem; }
  .nav-links { display: none; }
  .section { padding: 2.5rem 1.25rem; }
  .sh-title { font-size: 32px; }
  .trips-grid, .blog-grid, .tier-grid { grid-template-columns: 1fr; }
  footer { flex-direction: column; align-items: flex-start; padding: 1.5rem 1.25rem; }
  .post-title { font-size: 36px; }
  .post-header, .post-body { padding-left: 1.25rem; padding-right: 1.25rem; }
}
