/* ============================================================
   LOREDANA — GREENWINGO HUB + BLOG POST
   /blog/loredana/loredana.css
   Palette: forest green, earth, warm stone — slow travel Italy
   Requires: global.css + header-footer.css
   ============================================================ */

:root {
  --gw-forest:      #2d4a32;
  --gw-forest-mid:  #3e6645;
  --gw-forest-soft: #5c8a63;
  --gw-forest-pale: #e8f0e9;
  --gw-earth:       #8b6248;
  --gw-earth-light: #c4a882;
  --gw-earth-pale:  #f5ede4;
  --gw-stone:       #f2ede6;
  --gw-stone-dark:  #d6cfc6;
  --gw-ink:         #1e2620;
  --gw-ink-mid:     #4a524c;
  --gw-ink-light:   #8a9089;
  --gw-white:       #ffffff;
  --gw-border:      rgba(45,74,50,.12);
  --gw-gradient:    linear-gradient(135deg, #2d4a32 0%, #3e6645 55%, #5c8a63 100%);
  --gw-gradient-soft: linear-gradient(135deg, rgba(45,74,50,.07) 0%, rgba(92,138,99,.05) 100%);
}

/* ============================================================
   SKIP + UTILS
   ============================================================ */
.gw-skip-link {
  position: absolute; top: -60px; left: 8px;
  background: var(--gw-forest); color: #fff;
  padding: 10px 20px; border-radius: 0 0 8px 8px;
  z-index: 10000; font-weight: 600; transition: top .3s;
  text-decoration: none;
}
.gw-skip-link:focus { top: 0; }

.gw-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
}

.gw-eyebrow {
  font-size: .72rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--gw-forest-soft); margin-bottom: 10px;
}

.gw-section-title {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 400; line-height: 1.15;
  color: var(--gw-ink); margin-bottom: 16px;
}
.gw-section-title em { font-style: italic; color: var(--gw-forest-mid); }

.gw-section-desc {
  font-size: .97rem; color: var(--gw-ink-mid); line-height: 1.75; max-width: 540px;
}

.rv { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.rv.vis { opacity: 1; transform: translateY(0); }

/* ============================================================
   HUB HERO
   ============================================================ */
.gw-hero {
  position: relative; min-height: 72vh;
  display: flex; flex-direction: column; justify-content: flex-end;
  overflow: hidden; background: var(--gw-ink);
}
.gw-hero-bg { position: absolute; inset: 0; z-index: 1; }
.gw-hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  animation: gw-ken 24s ease-in-out infinite alternate;
}
@keyframes gw-ken {
  0%   { transform: scale(1.03); }
  100% { transform: scale(1.08) translate(-.4%, -.3%); }
}
.gw-hero-veil {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(180deg, rgba(30,38,32,.25) 0%, rgba(30,38,32,.55) 45%, rgba(30,38,32,.92) 100%);
}
.gw-hero-content {
  position: relative; z-index: 3;
  padding: 140px 0 64px;
}
.gw-identity {
  display: flex; align-items: flex-end; gap: 22px; margin-bottom: 24px;
  animation: gw-up .7s ease both;
}
@keyframes gw-up { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:translateY(0); } }
.gw-avatar-wrap { position: relative; flex-shrink: 0; }
.gw-avatar {
  width: 96px; height: 96px; border-radius: 50%; object-fit: cover;
  border: 3px solid rgba(255,255,255,.85);
  box-shadow: 0 6px 24px rgba(0,0,0,.35);
}
.gw-blog-badge {
  display: inline-block;
  background: rgba(255,255,255,.1); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.2); border-radius: 999px;
  padding: 5px 14px;
  font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.85); margin-bottom: 8px;
}
.gw-name {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 400; line-height: 1; color: #fff;
  letter-spacing: -.02em; margin-bottom: 6px;
}
.gw-handle { font-size: .88rem; color: rgba(255,255,255,.6); }
.gw-hero-tagline {
  margin-bottom: 32px;
  animation: gw-up .7s ease .12s both;
}
.gw-hero-tagline em {
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic; font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.7);
}
.gw-hero-stats {
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
  animation: gw-up .7s ease .22s both;
}
.gw-stat { text-align: left; }
.gw-stat-num {
  display: block;
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 1.8rem; font-weight: 400; line-height: 1; color: #fff; margin-bottom: 2px;
}
.gw-stat-label {
  font-size: .72rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.5);
}
.gw-stat-div { width: 1px; height: 36px; background: rgba(255,255,255,.2); }

/* ============================================================
   BIO
   ============================================================ */
.gw-bio { padding: 100px 0; background: var(--gw-stone); }
.gw-bio-grid {
  display: grid; grid-template-columns: 1fr 380px; gap: 80px; align-items: center;
}
.gw-bio-text p { font-size: .97rem; color: var(--gw-ink-mid); line-height: 1.8; margin-bottom: 18px; }
.gw-bio-text strong { color: var(--gw-ink); }
.gw-bio-chips { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 28px; }
.gw-chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--gw-forest-pale); border: 1px solid rgba(45,74,50,.2); border-radius: 999px;
  padding: 7px 16px; font-size: .82rem; font-weight: 600; color: var(--gw-forest);
}
.gw-photo-frame {
  position: relative; border-radius: 14px; overflow: hidden;
  box-shadow: 0 20px 60px rgba(45,74,50,.18); aspect-ratio: 3/4;
}
.gw-photo-frame img { width: 100%; height: 100%; object-fit: cover; }
.gw-photo-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 14px 18px;
  background: linear-gradient(0deg, rgba(30,38,32,.7) 0%, transparent 100%);
  font-size: .75rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  color: rgba(255,255,255,.85);
}
.gw-photo-deco {
  position: absolute; top: -18px; right: -18px;
  width: 140px; height: 140px; border-radius: 50%;
  background: var(--gw-gradient); opacity: .1; z-index: -1;
}

/* ============================================================
   GUIDES
   ============================================================ */
.gw-guides { padding: 100px 0; background: var(--gw-white); }
.gw-guides-header { margin-bottom: 52px; }
.gw-guides-grid { display: grid; grid-template-columns: 1fr; gap: 24px; max-width: 720px; }
.gw-guide-card {
  background: var(--gw-white); border-radius: 16px;
  border: 1px solid var(--gw-border);
  overflow: hidden; transition: transform .4s ease, box-shadow .4s ease;
  position: relative;
}
.gw-guide-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(45,74,50,.13); }
.gw-guide-card-link { position: absolute; inset: 0; z-index: 1; }
.gw-guide-img { position: relative; aspect-ratio: 16/9; overflow: hidden; background: var(--gw-forest-pale); }
.gw-guide-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.gw-guide-card:hover .gw-guide-img img { transform: scale(1.05); }
.gw-guide-img-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(30,38,32,.3) 100%); }
.gw-guide-badge {
  position: absolute; top: 14px; right: 14px;
  background: rgba(30,38,32,.55); backdrop-filter: blur(8px); color: rgba(255,255,255,.92);
  font-size: .66rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 999px; border: 1px solid rgba(255,255,255,.15);
}
.gw-guide-body { padding: 24px; }
.gw-guide-meta { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.gw-guide-tag {
  font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--gw-earth); background: var(--gw-earth-pale); padding: 3px 10px; border-radius: 999px;
}
.gw-guide-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--gw-ink-light); }
.gw-guide-date { font-size: .75rem; color: var(--gw-ink-light); }
.gw-guide-title {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 1.35rem; font-weight: 400; line-height: 1.2; margin-bottom: 12px;
}
.gw-guide-title a { color: var(--gw-ink); text-decoration: none; transition: color .2s; position: relative; z-index: 2; }
.gw-guide-title a:hover { color: var(--gw-forest); }
.gw-guide-excerpt { font-size: .87rem; color: var(--gw-ink-mid); line-height: 1.7; margin-bottom: 20px; }
.gw-guide-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .85rem; font-weight: 700; color: var(--gw-forest);
  text-decoration: none; position: relative; z-index: 2; transition: gap .3s ease, color .2s;
}
.gw-guide-cta:hover { gap: 12px; color: var(--gw-earth); }

/* ============================================================
   COUNTRY CTA
   ============================================================ */
.gw-country-cta { padding: 0 0 80px; background: var(--gw-white); }
.gw-country-card {
  background: var(--gw-gradient); border-radius: 20px;
  padding: 52px clamp(32px, 5vw, 64px);
  display: flex; align-items: center; gap: 32px; flex-wrap: wrap;
  position: relative; overflow: hidden;
}
.gw-country-card::before {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 280px; height: 280px; border-radius: 50%;
  background: rgba(255,255,255,.06); pointer-events: none;
}
.gw-country-flag { font-size: 3.5rem; flex-shrink: 0; filter: drop-shadow(0 4px 12px rgba(0,0,0,.2)); }
.gw-country-text { flex: 1; min-width: 240px; }
.gw-country-title {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 400; color: #fff;
  margin-bottom: 8px; line-height: 1.15;
}
.gw-country-title em { font-style: italic; }
.gw-country-text p { font-size: .92rem; color: rgba(255,255,255,.72); line-height: 1.65; }
.gw-country-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.15); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.3); color: #fff;
  padding: 14px 22px; border-radius: 999px;
  font-size: .88rem; font-weight: 700;
  text-decoration: none; flex-shrink: 0; transition: background .25s, gap .3s ease;
}
.gw-country-btn:hover { background: rgba(255,255,255,.25); gap: 12px; }

/* ============================================================
   BACK LINK
   ============================================================ */
.gw-back-row { padding: 20px 0 80px; background: var(--gw-white); }
.gw-back-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .85rem; font-weight: 700; color: var(--gw-ink-light);
  text-decoration: none; transition: color .2s, gap .3s ease;
}
.gw-back-link:hover { color: var(--gw-forest); gap: 12px; }

/* ============================================================
   RESPONSIVE — HUB
   ============================================================ */
@media (max-width: 860px) {
  .gw-bio-grid { grid-template-columns: 1fr; gap: 48px; }
  .gw-bio-photo { max-width: 360px; }
}
@media (max-width: 600px) {
  .gw-identity { flex-direction: column; align-items: flex-start; gap: 16px; }
  .gw-hero { min-height: 80vh; }
  .gw-country-card { flex-direction: column; text-align: center; }
  .gw-country-flag { margin: 0 auto; }
}
