/* src/styles/global.css
   Echtra Echtra — complete design system
   Design tokens, typography, nav, footer, shared components
*/

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

/* ── Design Tokens ── */
:root {
  --ink:      #1A1916;
  --ink-mid:  #4A4844;
  --ink-lt:   #8A8580;
  --cream:    #FAF8F3;
  --rule:     #E4E0D9;
  --gold:     #B8922A;
  --gold-lt:  #F5E8C4;
  --teal:     #1A7A6E;
  --teal-lt:  #EAF4F2;
  --white:    #FFFFFF;
  --dark:     #1A1412;
  --nav-h:    64px;

  --ff-disp:  'Cinzel', 'Times New Roman', serif;
  --ff-body:  'Cormorant Garamond', Georgia, serif;
  --ff-ui:    'DM Sans', system-ui, sans-serif;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--ff-body);
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; }

/* ── NAV ── */
.ee-nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 200; height: var(--nav-h);
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  background: rgba(250,248,243,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule);
  transition: background 0.3s, border-color 0.3s;
}
.ee-nav.is-dark {
  background: rgba(26,20,18,0.92);
  border-bottom-color: rgba(255,255,255,0.08);
}
.ee-nav__logo {
  font-family: var(--ff-disp);
  font-size: 1rem; letter-spacing: 0.1em;
  color: var(--ink);
}
.ee-nav.is-dark .ee-nav__logo { color: var(--white); }
.ee-nav__logo span { color: var(--gold); }
.ee-nav__back {
  font-family: var(--ff-ui); font-size: 0.65rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-lt); transition: color 0.2s;
  display: flex; align-items: center; gap: 6px;
}
.ee-nav__back:hover { color: var(--teal); }
.ee-nav.is-dark .ee-nav__back { color: rgba(255,255,255,0.4); }
.ee-nav.is-dark .ee-nav__back:hover { color: var(--white); }
.ee-nav__share {
  font-family: var(--ff-ui); font-size: 0.65rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-lt); background: none; border: none;
  transition: color 0.2s;
}
.ee-nav__share:hover { color: var(--teal); }

/* ── FOOTER ── */
.ee-footer {
  background: var(--ink);
  padding: 28px 5vw;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
}
.ee-footer__logo {
  font-family: var(--ff-disp); font-size: 0.9rem;
  letter-spacing: 0.1em; color: var(--white);
}
.ee-footer__logo span { color: var(--gold); }
.ee-footer__links { display: flex; gap: 24px; flex-wrap: wrap; }
.ee-footer__links a {
  font-family: var(--ff-ui); font-size: 0.6rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.3); transition: color 0.2s;
}
.ee-footer__links a:hover { color: var(--white); }

/* ── EYEBROW ── */
.ee-eyebrow {
  font-family: var(--ff-ui); font-size: 0.6rem;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold);
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 12px;
}
.ee-eyebrow::before {
  content: ''; width: 20px; height: 1px;
  background: var(--gold); flex-shrink: 0;
}

/* ── BUTTONS ── */
.ee-btn {
  display: block; width: 100%; padding: 16px;
  font-family: var(--ff-ui); font-size: 0.72rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  font-weight: 500; text-align: center;
  border: none; transition: all 0.2s;
  margin-bottom: 10px; cursor: pointer;
}
.ee-btn--primary { background: var(--ink); color: var(--white); }
.ee-btn--primary:hover { background: var(--teal); }
.ee-btn--secondary {
  background: none; color: var(--ink-mid);
  border: 1px solid var(--rule);
}
.ee-btn--secondary:hover { border-color: var(--teal); color: var(--teal); }
.ee-btn--gold {
  background: var(--gold); color: var(--ink);
  font-weight: 600; width: auto; padding: 18px 48px;
}
.ee-btn--gold:hover { background: var(--gold-lt); transform: translateY(-2px); }

/* ── BADGES ── */
.ee-badge {
  position: absolute;
  font-family: var(--ff-ui); font-size: 0.54rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 5px 12px; font-weight: 500;
}
.ee-badge--gold { background: var(--gold); color: var(--ink); }
.ee-badge--subtle {
  background: rgba(26,20,18,0.55); color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(6px);
}
.ee-badge--tl { top: 32px; left: 32px; }
.ee-badge--tr { top: 32px; right: 32px; }

/* ── TAGS ── */
.ee-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 12px; }
.ee-tag {
  font-family: var(--ff-ui); font-size: 0.55rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  background: var(--teal-lt); color: var(--teal);
  padding: 3px 9px;
}

/* ── EDITORIAL NOTE ── */
.ee-editorial-note {
  padding: 16px 18px; margin-bottom: 32px;
  font-family: var(--ff-ui); font-size: 0.65rem;
  line-height: 1.65;
  background: var(--teal-lt);
  border-left: 2px solid var(--teal);
  color: var(--teal);
}
.ee-editorial-note strong { font-weight: 600; }

/* ── PULL QUOTE ── */
.ee-pull-quote {
  margin: 36px 0; padding: 24px 28px; background: var(--white);
  border-left: 2px solid var(--gold);
  font-family: var(--ff-body); font-size: 1.25rem;
  font-style: italic; line-height: 1.65; color: var(--ink-mid);
}

/* ── FILTERS ── */
.ee-filters {
  background: var(--white); border-bottom: 1px solid var(--rule);
  padding: 16px 5vw; position: sticky;
  top: var(--nav-h); z-index: 100;
}
.ee-filters__inner {
  max-width: 1400px; margin: 0 auto;
  display: flex; flex-wrap: wrap; gap: 16px; align-items: center;
}
.ee-filter-group { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.ee-filter-label {
  font-family: var(--ff-ui); font-size: 0.58rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-lt); margin-right: 4px;
}
.ee-filter-btn {
  font-family: var(--ff-ui); font-size: 0.62rem;
  letter-spacing: 0.08em; padding: 5px 12px;
  border: 1px solid var(--rule); color: var(--ink-mid);
  background: var(--white); transition: all 0.2s;
  cursor: pointer;
}
.ee-filter-btn:hover,
.ee-filter-btn.is-active {
  background: var(--ink); color: var(--white);
  border-color: var(--ink);
}

/* ── EXPERIENCE GRID ── */
.ee-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px; padding: 2px;
}

/* ── EXPERIENCE CARD ── */
.ee-card {
  background: var(--white);
  transition: transform 0.2s;
}
.ee-card:hover { transform: translateY(-3px); }
.ee-card__link { display: block; }
.ee-card__image {
  position: relative; overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--rule);
}
.ee-card__image img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.85);
  transition: transform 0.5s ease;
}
.ee-card:hover .ee-card__image img { transform: scale(1.04); }
/* Placeholder shown when heroImage is absent or the src 404s */
.ee-card__placeholder {
  display: none;
  position: absolute; inset: 0;
  background: var(--dark);
  align-items: center; justify-content: center;
  padding: 20px;
}
.ee-card__placeholder span {
  font-family: var(--ff-ui); font-size: 0.62rem;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.35); text-align: center;
}
/* Show placeholder when no heroImage provided */
.ee-card__image:not(:has(img)) .ee-card__placeholder,
/* Show placeholder when the image fails to load */
.ee-card__image--fallback .ee-card__placeholder {
  display: flex;
}
.ee-card__image--fallback img { display: none; }
.ee-card__season {
  position: absolute; bottom: 12px; left: 12px;
  font-family: var(--ff-ui); font-size: 0.52rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  background: rgba(26,20,18,0.65); color: rgba(255,255,255,0.85);
  padding: 4px 10px; backdrop-filter: blur(4px);
}
.ee-card__booking {
  position: absolute; bottom: 12px; right: 12px;
  font-family: var(--ff-ui); font-size: 0.52rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 10px;
}
.ee-card__booking--direct { background: var(--teal); color: var(--white); }
.ee-card__booking--external { background: var(--gold); color: var(--ink); }
.ee-card__body { padding: 20px; }
.ee-card__operator {
  font-family: var(--ff-ui); font-size: 0.58rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 5px;
}
.ee-card__title {
  font-family: var(--ff-disp); font-size: 1rem;
  font-weight: 400; color: var(--ink);
  line-height: 1.25; margin-bottom: 10px;
}
.ee-card__meta {
  display: flex; justify-content: space-between;
  align-items: baseline; padding-top: 14px;
  border-top: 1px solid var(--rule);
  font-family: var(--ff-ui); font-size: 0.65rem;
}
.ee-card__price { color: var(--ink); font-weight: 500; }
.ee-card__price-from {
  font-size: 0.55rem; color: var(--ink-lt);
  display: block; letter-spacing: 0.06em;
}
.ee-card__duration { color: var(--ink-lt); }

/* ── INCLUDES LIST ── */
.ee-includes {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 32px; margin-top: 48px;
  padding-top: 48px; border-top: 1px solid var(--rule);
}
.ee-includes__col h4 {
  font-family: var(--ff-ui); font-size: 0.6rem;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-lt); margin-bottom: 14px;
  padding-bottom: 10px; border-bottom: 1px solid var(--rule);
}
.ee-includes__list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.ee-includes__list li {
  display: flex; gap: 10px; align-items: flex-start;
  font-family: var(--ff-body); font-size: 0.95rem;
  font-weight: 300; line-height: 1.5; color: var(--ink-mid);
}
.ee-includes__list li::before {
  content: '✓'; color: var(--teal);
  font-family: var(--ff-ui); font-size: 0.7rem;
  font-weight: 600; margin-top: 2px; flex-shrink: 0;
}
.ee-includes__list--excludes li::before {
  content: '–'; color: var(--ink-lt);
}

/* ── PRACTICAL WIDGET ── */
.ee-widget {
  background: var(--white); border: 1px solid var(--rule);
  margin-bottom: 20px; overflow: hidden;
}
.ee-widget__header {
  padding: 14px 18px; border-bottom: 1px solid var(--rule);
  font-family: var(--ff-ui); font-size: 0.58rem;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-lt);
}
.ee-widget__body { padding: 16px 18px; }
.ee-practical { display: flex; flex-direction: column; }
.ee-practical__item {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 9px 0; border-bottom: 1px solid var(--rule);
  font-family: var(--ff-ui); font-size: 0.67rem;
}
.ee-practical__item:last-child { border-bottom: none; }
.ee-practical__label { color: var(--ink-lt); }
.ee-practical__val { color: var(--ink); font-weight: 500; text-align: right; max-width: 55%; }

/* ── HIGHLIGHT ITEMS ── */
.ee-highlights { display: flex; flex-direction: column; gap: 12px; }
.ee-highlight { display: flex; gap: 12px; align-items: flex-start; }
.ee-highlight__icon {
  width: 26px; height: 26px; background: var(--teal-lt);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; flex-shrink: 0; margin-top: 1px;
}
.ee-highlight__text h4 {
  font-family: var(--ff-ui); font-size: 0.68rem;
  font-weight: 500; color: var(--ink); margin-bottom: 1px;
}
.ee-highlight__text p {
  font-family: var(--ff-ui); font-size: 0.6rem;
  color: var(--ink-lt); line-height: 1.5;
}

/* ── BREADCRUMB ── */
.ee-breadcrumb {
  font-family: var(--ff-ui); font-size: 0.6rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  display: flex; align-items: center; gap: 8px;
  flex-wrap: wrap; margin-bottom: 16px;
}
.ee-breadcrumb a { transition: color 0.2s; }
.ee-breadcrumb a:hover { color: rgba(255,255,255,0.8); }
.ee-breadcrumb__sep { color: rgba(255,255,255,0.2); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .ee-grid { grid-template-columns: repeat(2, 1fr); }
  .ee-includes { grid-template-columns: 1fr; gap: 24px; }
}
@media (max-width: 640px) {
  .ee-grid { grid-template-columns: 1fr; }
  .ee-footer { flex-direction: column; text-align: center; }
  .ee-filter-group { flex-wrap: wrap; }
}

/* ── FULL NAV (blog + homepage) ── */
.ee-nav-full {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5vw;
  background: transparent;
  transition: all 0.4s ease;
}
.ee-nav-full.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule);
}
.ee-nav-full__logo {
  font-family: var(--ff-disp); font-size: 1rem;
  letter-spacing: 0.1em; color: var(--ink);
}
.ee-nav-full__logo span { color: var(--gold); }
.ee-nav-full__links {
  display: flex; gap: 28px; align-items: center;
}
.ee-nav-full__links a {
  font-family: var(--ff-ui); font-size: 0.62rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-lt); transition: color 0.2s;
}
.ee-nav-full__links a:hover { color: var(--ink); }
.ee-nav-full__exp {
  padding: 8px 16px;
  background: var(--gold); color: var(--ink) !important;
  font-weight: 500 !important;
  transition: background 0.2s !important;
}
.ee-nav-full__exp:hover { background: var(--gold-lt) !important; }
.ee-nav-full__ham {
  display: none; background: none; border: none;
  flex-direction: column; gap: 5px; padding: 4px;
}
.ee-nav-full__ham span {
  display: block; width: 22px; height: 1.5px; background: var(--ink);
}
@media (max-width: 768px) {
  .ee-nav-full__links { display: none; }
  .ee-nav-full__ham { display: flex; }
}

/* ── FULL FOOTER (blog + homepage) ── */
.ee-footer-full {
  background: var(--ink); padding: 52px 5vw 26px;
}
.ee-footer-full__top {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 44px; margin-bottom: 44px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.ee-footer-full__logo {
  font-family: var(--ff-disp); font-size: 1rem;
  letter-spacing: 0.1em; color: white;
  display: block; margin-bottom: 10px;
}
.ee-footer-full__logo span { color: var(--gold); }
.ee-footer-full__tag {
  font-family: var(--ff-body); font-size: 0.95rem;
  font-style: italic; color: rgba(255,255,255,0.22);
  line-height: 1.7;
}
.ee-footer-full__h {
  font-family: var(--ff-ui); font-size: 0.58rem;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.22); margin-bottom: 14px;
}
.ee-footer-full__links {
  display: flex; flex-direction: column; gap: 9px;
}
.ee-footer-full__links a {
  font-family: var(--ff-ui); font-size: 0.65rem;
  color: rgba(255,255,255,0.38); transition: color 0.2s;
}
.ee-footer-full__links a:hover { color: white; }
.ee-footer-full__bot {
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 10px;
  font-family: var(--ff-ui); font-size: 0.57rem;
  color: rgba(255,255,255,0.18);
}
@media (max-width: 1024px) {
  .ee-footer-full__top { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 480px) {
  .ee-footer-full__top { grid-template-columns: 1fr; gap: 20px; }
  .ee-footer-full__bot { flex-direction: column; text-align: center; }
}

/* ── Cookie notice (minimal bar) ── */
.ee-cookie {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 250;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 20px;
  padding: 10px 5vw 12px;
  background: rgba(26, 25, 22, 0.92);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
}
.ee-cookie__text {
  font-family: var(--ff-ui);
  font-size: 0.68rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.72);
  max-width: 42rem;
  margin: 0;
  text-align: center;
}
.ee-cookie__text a {
  color: var(--gold-lt);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.ee-cookie__text a:hover { color: var(--white); }
.ee-cookie__ok {
  flex-shrink: 0;
  font-family: var(--ff-ui);
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 8px 18px;
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.22);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.ee-cookie__ok:hover {
  border-color: var(--gold);
  color: var(--gold-lt);
}
.ee-cookie__ok:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}