:root {
  --c-night: #0F0E0A; --c-char: #1C1B16; --c-dune: #2A2620;
  --c-terra: #C45A2D; --c-terra-light: #E07040;
  --c-sand: #E8D5B5; --c-sand-light: #F5EDE0; --c-sand-pale: #FBF7F0;
  --c-gold: #D4A853; --c-gold-muted: #B89B5E;
  --c-bone: #F0E6D3; --c-stone: #8A7E6C; --c-white: #FFFDF8;
  --f-display: 'Urbanist', sans-serif;
  --f-heading: 'Space Grotesk', sans-serif;
  --f-body: 'Crimson Pro', Georgia, serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--f-body); font-size: 17px; line-height: 1.75; color: var(--c-char); background: var(--c-sand-pale); overflow-x: hidden; position: relative; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }
.wrap { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.rv { opacity: 0; transform: translateY(44px); transition: opacity 0.85s var(--ease), transform 0.85s var(--ease); }
.rv.show { opacity: 1; transform: translateY(0); }
.rv-d1 { transition-delay: 0.1s; } .rv-d2 { transition-delay: 0.2s; }
.rv-d3 { transition-delay: 0.3s; } .rv-d4 { transition-delay: 0.4s; }

/* Route path animation */
/* The route dots that appear at waypoints */

/* Particles */
.particles { position: fixed; inset: 0; pointer-events: none; z-index: 5; overflow: hidden; }

/* HEADER */
.hdr {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px 0; background: transparent;
  overflow: visible;
  transition: padding 0.5s var(--ease), top 0.5s var(--ease);
}
.hdr .wrap {
  transition: max-width 0.5s var(--ease), padding 0.5s var(--ease);
}
.hdr__inner {
  display: flex; align-items: center; justify-content: space-between;
  border-radius: 0; padding: 0;
  background: transparent;
  transition: background 0.5s var(--ease), padding 0.5s var(--ease), border-radius 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.5s var(--ease);
  border: 1px solid transparent;
}
/* Scrolled state: header collapses into a floating frosted pill */
.hdr.solid { padding: 12px 0; }
.hdr.solid .wrap { max-width: 1180px; }
.hdr.solid .hdr__inner {
  background: rgba(20,18,14,0.55);
  backdrop-filter: blur(22px) saturate(1.4); -webkit-backdrop-filter: blur(22px) saturate(1.4);
  padding: 10px 14px 10px 22px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 8px 32px rgba(0,0,0,0.28), inset 0 1px 0 rgba(255,255,255,0.08);
}
.hdr__brand { font-family: var(--f-display); font-size: 1.05rem; font-weight: 900; color: var(--c-white); letter-spacing: 0.06em; text-transform: uppercase; text-shadow: 0 1px 8px rgba(0,0,0,0.5); transition: font-size 0.5s var(--ease); }
.hdr.solid .hdr__brand { font-size: 0.95rem; text-shadow: none; }
.hdr__nav { display: flex; align-items: center; gap: 6px; }
.hdr__nav a { font-family: var(--f-heading); font-size: 0.82rem; font-weight: 500; color: var(--c-white); padding: 8px 16px; border-radius: 6px; transition: background 0.3s; text-shadow: 0 1px 6px rgba(0,0,0,0.4); }
.hdr.solid .hdr__nav a { text-shadow: none; }
.hdr__nav a:hover { background: rgba(255,255,255,0.1); }
.hdr__cta { background: var(--c-terra) !important; padding: 10px 24px !important; border-radius: 100px !important; font-weight: 600 !important; transition: background 0.3s, transform 0.2s !important; border: none !important; outline: none !important; text-shadow: none !important; }
.hdr__cta:hover { background: var(--c-terra-light) !important; transform: translateY(-1px); }
.hdr__cta:focus { outline: none !important; box-shadow: none !important; }

/* HERO */
.hero { position: relative; height: 100vh; min-height: 700px; display: flex; align-items: flex-end; overflow: hidden; background: var(--c-night); }
.hero__bg { position: absolute; inset: 0; }
.hero__bg img { width: 100%; height: 115%; object-fit: cover; object-position: center 25%; will-change: transform; }
.hero__bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15,14,10,0.3) 0%, rgba(15,14,10,0.1) 25%, rgba(15,14,10,0.15) 40%, rgba(15,14,10,0.5) 58%, rgba(15,14,10,0.88) 80%, rgba(15,14,10,1) 100%); }
.hero::after { content: ''; position: absolute; inset: 0; z-index: 1; background: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)' opacity='0.03'/%3E%3C/svg%3E"); pointer-events: none; opacity: 0.5; }
.hero__content { position: relative; z-index: 3; width: 100%; padding-bottom: 80px; }
.hero__grid { display: grid; grid-template-columns: 1fr 300px; gap: 48px; align-items: end; }
.hero__tag { font-family: var(--f-heading); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.24em; text-transform: uppercase; color: var(--c-white); margin-bottom: 24px; display: inline-flex; align-items: center; gap: 16px; text-shadow: 0 1px 4px rgba(0,0,0,0.55); }
.hero__tag::before { content: ''; width: 48px; height: 2px; background: var(--c-terra-light); }
.hero__h1 { font-family: var(--f-display); font-size: clamp(3rem, 7vw, 5.6rem); font-weight: 900; color: var(--c-white); line-height: 0.96; letter-spacing: -0.03em; text-transform: uppercase; margin-bottom: 28px; text-shadow: 0 2px 20px rgba(0,0,0,0.4); }
.hero__h1 span { display: block; }
.h1-accent { color: var(--c-terra-light); }
.h1-sub { font-family: var(--f-body); font-weight: 400; font-style: italic; text-transform: none; font-size: 0.4em; color: var(--c-sand); letter-spacing: 0.01em; line-height: 1.6; margin-top: 18px; }
.hero__btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-h { display: inline-flex; align-items: center; gap: 8px; padding: 16px 34px; font-family: var(--f-heading); font-size: 0.88rem; font-weight: 600; border-radius: 10px; cursor: pointer; transition: background 0.3s, transform 0.2s; border: none; }
.btn-h--fill { background: var(--c-terra); color: var(--c-white); }
.btn-h--fill:hover { background: var(--c-terra-light); transform: translateY(-2px); }
.btn-h--soft { background: rgba(245,237,224,0.95); color: var(--c-night); font-weight: 700; }
.btn-h--soft:hover { background: #fff; transform: translateY(-2px); }
.hero__side { display: flex; flex-direction: column; gap: 28px; border-left: 1px solid rgba(212,168,83,0.2); padding-left: 32px; }
.hero__num { font-family: var(--f-display); font-size: 3rem; font-weight: 900; color: var(--c-white); line-height: 1; }
.hero__num-label { font-family: var(--f-heading); font-size: 0.62rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--c-gold-muted); margin-top: 4px; }
.hero__scroll { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); z-index: 4; }
.hero__scroll-line { width: 1px; height: 48px; background: linear-gradient(180deg, transparent, var(--c-gold)); animation: scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse { 0%, 100% { opacity: 0.3; transform: scaleY(0.6); } 50% { opacity: 0.7; transform: scaleY(1); } }

/* DUNE DIVIDERS */
/* Section dividers - wave shapes */
.dune { position: relative; z-index: 1; line-height: 0; margin-bottom: -2px; }
.dune svg { display: block; width: 100%; height: auto; }
.testimonials, .about, .gallery, .lead, .book, .posts { position: relative; }
.wrap { position: relative; z-index: 4; }

/* TESTIMONIALS */
.testimonials { padding: 80px 0 90px; background: var(--c-sand-pale); overflow: hidden; }
.testimonials__header { text-align: center; margin-bottom: 48px; }
.testimonials__tag { font-family: var(--f-heading); font-size: 0.68rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--c-terra); margin-bottom: 10px; }
.testimonials__h2 { font-family: var(--f-display); font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 800; color: var(--c-night); }
.testimonials__stat { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 12px; font-family: var(--f-heading); font-size: 0.78rem; color: var(--c-stone); }
.testimonials__stat strong { color: var(--c-terra); font-weight: 700; font-size: 1rem; }
.testi-track { display: flex; gap: 20px; animation: marquee 45s linear infinite; width: max-content; }
.testi-track:hover { animation-play-state: paused; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.tcard { flex-shrink: 0; width: 380px; background: #FFFDF6; border: 1px solid rgba(26,26,14,0.08); border-radius: 14px; padding: 28px 26px 24px; box-shadow: 0 2px 10px rgba(28,27,22,0.06); position: relative; overflow: hidden; }
.tcard::after { content: ''; position: absolute; inset: 0; border-radius: 14px; background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E"); pointer-events: none; }
.tcard__stars { display: flex; gap: 2px; margin-bottom: 14px; color: var(--c-gold); }
.tcard__quote { font-size: 0.95rem; line-height: 1.65; color: var(--c-char); margin-bottom: 18px; font-style: italic; }
.tcard__author { display: flex; align-items: center; gap: 12px; }
.tcard__avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--c-bone); display: flex; align-items: center; justify-content: center; font-family: var(--f-display); font-weight: 800; font-size: 0.9rem; color: var(--c-terra); }
.tcard__name { font-family: var(--f-heading); font-size: 0.82rem; font-weight: 600; color: var(--c-night); }
.tcard__from { font-family: var(--f-heading); font-size: 0.7rem; color: var(--c-stone); }

/* ABOUT */
.about { padding: 110px 0 100px; background: var(--c-sand-pale); }
.about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; align-items: stretch; }
.about__photo-col { position: relative; border-radius: 24px 0 0 24px; min-height: 460px; }
.about__photo-col img { width: 100%; height: 100%; object-fit: cover; object-position: center 15%; border-radius: 24px 0 0 24px; transition: transform 0.8s var(--ease); }
.about__photo-col:hover img { transform: scale(1.03); }
.about__badge { position: absolute; bottom: -16px; left: 50%; transform: translateX(-50%); background: var(--c-terra); padding: 18px 32px; border-radius: 18px; color: var(--c-white); box-shadow: 0 6px 20px rgba(196,90,45,0.35); text-align: center; display: flex; flex-direction: column; align-items: center; gap: 2px; z-index: 3; }
.about__badge-num { font-family: var(--f-display); font-size: 2.4rem; font-weight: 900; line-height: 1; color: var(--c-white); }
.about__badge-text { font-family: var(--f-heading); font-size: 0.65rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--c-white); opacity: 0.95; }
.about__text-col { background: #FFFDF6; padding: 56px 52px; border-radius: 0 24px 24px 0; display: flex; flex-direction: column; justify-content: center; position: relative; overflow: hidden; }
.about__text-col::after { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E"); pointer-events: none; }
.about__text-col > * { position: relative; z-index: 1; }
.about__tag { font-family: var(--f-heading); font-size: 0.68rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--c-terra); margin-bottom: 14px; }
.about__h2 { font-family: var(--f-display); font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 900; color: var(--c-night); line-height: 1.08; margin-bottom: 22px; }
.about__desc { color: var(--c-stone); margin-bottom: 32px; font-size: 1.05rem; line-height: 1.8; }
.about__feats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.about__feat { display: flex; align-items: center; gap: 10px; font-family: var(--f-heading); font-size: 0.84rem; font-weight: 600; color: var(--c-char); }
.about__feat svg { color: var(--c-terra); flex-shrink: 0; }

/* GALLERY */
.gallery { padding: 80px 0; background: var(--c-sand-pale); overflow: hidden; }
.gallery__header { text-align: center; margin-bottom: 40px; }
.gallery__tag { font-family: var(--f-heading); font-size: 0.68rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--c-terra); margin-bottom: 10px; }
.gallery__h2 { font-family: var(--f-display); font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 800; color: var(--c-night); }
.gallery__show {
  position: relative; max-width: 900px; margin: 0 auto;
  aspect-ratio: 16/9; border-radius: 18px; overflow: hidden;
  background: var(--c-char);
}
.gallery__slide {
  position: absolute; inset: 0; opacity: 0;
  transition: opacity 1s var(--ease);
}
.gallery__slide.active { opacity: 1; }
.gallery__slide img {
  width: 100%; height: 100%; object-fit: cover;
}
.gallery__nav {
  position: absolute; bottom: 20px; right: 20px; z-index: 3;
  display: flex; gap: 8px;
}
.gallery__btn {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(15,14,10,0.6); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15); color: var(--c-white);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background 0.3s;
}
.gallery__btn:hover { background: rgba(15,14,10,0.85); }
.gallery__counter {
  position: absolute; bottom: 24px; left: 24px; z-index: 3;
  font-family: var(--f-heading); font-size: 0.72rem; font-weight: 600;
  color: var(--c-white); opacity: 0.6; letter-spacing: 0.05em;
}

/* LEAD MAGNET */
.lead { padding: 20px 0 100px; background: transparent; color: var(--c-white); position: relative; }
.lead__glow { position: absolute; top: -200px; right: -100px; width: 600px; height: 600px; background: radial-gradient(circle, rgba(196,90,45,0.1) 0%, transparent 70%); pointer-events: none; }
.lead__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; position: relative; z-index: 1; }
.lead__tag { font-family: var(--f-heading); font-size: 0.68rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--c-gold); margin-bottom: 14px; }
.lead__h2 { font-family: var(--f-display); font-size: clamp(1.6rem, 2.8vw, 2.2rem); font-weight: 800; line-height: 1.15; margin-bottom: 18px; }
.lead__sub { opacity: 0.6; margin-bottom: 28px; font-size: 1rem; line-height: 1.8; }
.lead__list { display: flex; flex-direction: column; gap: 10px; }
.lead__list li { display: flex; align-items: center; gap: 12px; font-size: 0.92rem; opacity: 0.75; font-family: var(--f-heading); font-weight: 500; }
.lead__list li svg { color: var(--c-gold); flex-shrink: 0; }
.lead__form-card { background: #E4D5BE; border: none; border-radius: 6px; padding: 40px 32px; text-align: center; box-shadow: 2px 3px 12px rgba(0,0,0,0.3), inset 0 0 30px rgba(160,140,110,0.12); position: relative; overflow: hidden; }
.lead__form-card::before { content: ''; position: absolute; inset: 0; border-radius: 6px; background: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.2' numOctaves='6' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.12'/%3E%3C/svg%3E"); pointer-events: none; mix-blend-mode: multiply; }
.lead__form-card > * { position: relative; z-index: 1; }
.lead__form-icon { display: inline-flex; align-items: center; justify-content: center; width: 64px; height: 64px; border-radius: 50%; background: rgba(140,100,50,0.15); color: #8B6530; margin-bottom: 16px; }
.lead__form-card h3 { font-family: var(--f-heading); font-size: 1.15rem; font-weight: 700; margin-bottom: 22px; color: #2A2215; }
.f-row { display: flex; gap: 10px; margin-bottom: 12px; }
.f-input { flex: 1; width: 100%; padding: 13px 16px; font-family: var(--f-heading); font-size: 0.88rem; border: 1px solid rgba(100,80,50,0.2); border-radius: 6px; background: rgba(255,255,255,0.5); color: #2A2215; outline: none; transition: border-color 0.3s; }
.f-input::placeholder { color: rgba(42,34,21,0.4); }
.f-input:focus { border-color: var(--c-terra); }
.f-btn { width: 100%; padding: 14px; font-family: var(--f-heading); font-size: 0.9rem; font-weight: 700; color: var(--c-white); background: var(--c-terra); border: none; border-radius: 6px; cursor: pointer; transition: background 0.3s; margin-top: 2px; }
.f-btn:hover { background: var(--c-terra-light); }
.f-privacy { margin-top: 14px; font-size: 0.72rem; opacity: 0.5; font-family: var(--f-heading); color: #5C4F3A; }

/* BOOKING */
.book { position: relative; overflow: hidden; color: var(--c-white); background: var(--c-night); }
.book__bg { position: absolute; inset: 0; }
.book__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 55%; opacity: 0.2; }
.book__bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, var(--c-night) 0%, rgba(15,14,10,0.7) 50%, var(--c-night) 100%); }
.book__inner { position: relative; z-index: 2; padding: 120px 0; }
.book__header { text-align: center; max-width: 700px; margin: 0 auto 64px; }
.book__tag { font-family: var(--f-heading); font-size: 0.68rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--c-gold); margin-bottom: 14px; }
.book__h2 { font-family: var(--f-display); font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; line-height: 1.05; margin-bottom: 20px; text-transform: uppercase; }
.book__intro { font-size: 1.05rem; opacity: 0.6; line-height: 1.8; max-width: 600px; margin: 0 auto; }
.book__cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 52px; }
.vc { background: #E4D5BE; border: none; border-radius: 6px; padding: 30px 24px 26px; transition: all 0.4s var(--ease); position: relative; overflow: hidden; box-shadow: 2px 3px 12px rgba(0,0,0,0.35), inset 0 0 40px rgba(160,140,110,0.15); }
.vc::after { content: ''; position: absolute; inset: 0; border-radius: 6px; background: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.2' numOctaves='6' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.12'/%3E%3C/svg%3E"); pointer-events: none; mix-blend-mode: multiply; }
.vc:hover { transform: translateY(-6px) rotate(-0.3deg); box-shadow: 4px 8px 24px rgba(0,0,0,0.4), inset 0 0 40px rgba(160,140,110,0.15); }
.vc__num { font-family: var(--f-display); font-size: 3.5rem; font-weight: 900; color: rgba(160,130,80,0.15); line-height: 1; position: absolute; top: 14px; right: 18px; }
.vc__icon { display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 10px; background: rgba(140,100,50,0.12); color: #8B6530; margin-bottom: 18px; }
.vc__title { font-family: var(--f-heading); font-size: 1.02rem; font-weight: 700; color: #2A2215; margin-bottom: 10px; }
.vc__text { font-size: 0.88rem; line-height: 1.65; color: #5C4F3A; margin-bottom: 14px; font-family: var(--f-heading); font-weight: 400; }
.vc__pip { display: inline-flex; align-items: center; gap: 6px; padding: 4px 10px; background: rgba(140,80,30,0.1); border-radius: 5px; font-family: var(--f-heading); font-size: 0.7rem; font-weight: 600; color: #8B4520; }
.vc__pip svg { flex-shrink: 0; }
.book__stack { max-width: 720px; margin: 0 auto 48px; }
.book__stack-label { text-align: center; font-family: var(--f-heading); font-size: 0.78rem; font-weight: 600; color: var(--c-gold-muted); margin-bottom: 22px; letter-spacing: 0.08em; text-transform: uppercase; }
.sg { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 28px; }
.sg li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.86rem; color: rgba(255,255,255,0.5); font-family: var(--f-heading); font-weight: 400; line-height: 1.45; }
.sg li svg { flex-shrink: 0; color: var(--c-terra-light); margin-top: 3px; }
.sg strong { color: rgba(255,255,255,0.85); font-weight: 600; }
.book__cta { text-align: center; }
.btn-cta { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 20px 52px; font-family: var(--f-heading); font-size: 1.05rem; font-weight: 700; color: var(--c-white); background: var(--c-terra); border: none; border-radius: 12px; text-decoration: none; cursor: pointer; transition: background 0.3s, transform 0.2s; }
.btn-cta:hover { background: var(--c-terra-light); transform: translateY(-2px); color: var(--c-white); }
.book__sub { margin-top: 16px; font-family: var(--f-heading); font-size: 0.82rem; opacity: 0.6; max-width: 520px; margin-left: auto; margin-right: auto; line-height: 1.5; }
.book__trust { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 22px; font-family: var(--f-heading); font-size: 0.66rem; opacity: 0.25; letter-spacing: 0.08em; text-transform: uppercase; }

/* ARTICLES */
.posts { padding: 110px 0 120px; background: var(--c-sand-pale); }
.posts__header { text-align: center; margin-bottom: 56px; }
.posts__tag { font-family: var(--f-heading); font-size: 0.68rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--c-terra); margin-bottom: 10px; }
.posts__h2 { font-family: var(--f-display); font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 800; color: var(--c-night); }
.posts__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.pcard { background: #FFFDF6; border: 1px solid rgba(26,26,14,0.06); border-radius: 14px; overflow: hidden; box-shadow: 0 2px 10px rgba(28,27,22,0.05); transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease); position: relative; }
.pcard::after { content: ''; position: absolute; inset: 0; border-radius: 14px; background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E"); pointer-events: none; z-index: 1; }
.pcard:hover { transform: translateY(-7px); box-shadow: 0 16px 44px rgba(28,27,22,0.1); }
.pcard__img { aspect-ratio: 16/10; overflow: hidden; }
.pcard__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.pcard:hover .pcard__img img { transform: scale(1.06); }
.pcard__body { padding: 22px 24px 24px; }
.pcard__title { font-family: var(--f-heading); font-size: 1.05rem; font-weight: 700; color: var(--c-night); line-height: 1.35; margin-bottom: 8px; }
.pcard__title a { transition: color 0.3s; }
.pcard__title a:hover { color: var(--c-terra); }
.pcard__excerpt { font-size: 0.9rem; color: var(--c-stone); margin-bottom: 16px; line-height: 1.6; }
.pcard__link { font-family: var(--f-heading); font-size: 0.78rem; font-weight: 600; color: var(--c-terra); display: inline-flex; align-items: center; gap: 6px; text-transform: uppercase; transition: gap 0.3s; }
.pcard__link:hover { gap: 12px; }

/* FOOTER */
.ftr { background: var(--c-night); color: rgba(232,213,181,0.75); padding: 64px 0 0; }
.ftr__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.05); }
.ftr__brand { font-family: var(--f-display); font-size: 1.15rem; font-weight: 900; color: var(--c-white); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 12px; }
.ftr__desc { font-size: 0.88rem; line-height: 1.7; opacity: 0.7; max-width: 300px; }
.ftr h4 { font-family: var(--f-heading); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--c-gold-muted); margin-bottom: 16px; }
.ftr__links { display: flex; flex-direction: column; gap: 10px; }
.ftr__links a { font-family: var(--f-heading); font-size: 0.88rem; opacity: 0.65; transition: opacity 0.3s; }
.ftr__links a:hover { opacity: 1; color: var(--c-white); }
.ftr__email { display: flex; align-items: center; gap: 8px; font-family: var(--f-heading); font-size: 0.88rem; opacity: 0.65; margin-bottom: 16px; }
.ftr__btn { display: inline-flex; padding: 10px 22px; background: var(--c-terra); color: var(--c-white); font-family: var(--f-heading); font-size: 0.82rem; font-weight: 600; border-radius: 8px; transition: background 0.3s; }
.ftr__btn:hover { background: var(--c-terra-light); }
.ftr__bottom { padding: 22px 0; font-size: 0.74rem; opacity: 0.5; text-align: center; font-family: var(--f-heading); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__side { flex-direction: row; gap: 32px; border-left: none; padding-left: 0; padding-top: 24px; border-top: 1px solid rgba(212,168,83,0.15); }
  .tcard { width: 310px; }
  .about__grid { grid-template-columns: 1fr; }
  .about__photo-col { border-radius: 24px 24px 0 0; min-height: 380px; }
  .about__photo-col img { border-radius: 24px 24px 0 0; }
  .about__text-col { border-radius: 0 0 24px 24px; padding: 40px 32px; }
  .lead__grid { grid-template-columns: 1fr; gap: 40px; }
  .book__cards { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .sg { grid-template-columns: 1fr; }
  .posts__grid { grid-template-columns: 1fr; }
  .ftr__grid { grid-template-columns: 1fr; gap: 32px; }


}
@media (max-width: 768px) {
  .wrap { padding: 0 32px; }
  .hdr__brand { font-size: 0.8rem; }
  .hdr.solid .wrap { padding: 0 16px; }
  .hdr.solid .hdr__inner { padding: 8px 10px 8px 18px; }
  .hdr.solid .hdr__brand { font-size: 0.78rem; }
  .hdr__nav {
    display: flex; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(20,18,14,0.72);
    backdrop-filter: blur(28px) saturate(1.4); -webkit-backdrop-filter: blur(28px) saturate(1.4);
    flex-direction: column; align-items: center; justify-content: center; gap: 8px;
    z-index: 150;
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity 0.45s var(--ease), visibility 0.45s var(--ease);
  }
  .hdr__nav.open { opacity: 1; visibility: visible; pointer-events: auto; }
  .hdr__nav a {
    font-size: 1.35rem; font-weight: 600; padding: 16px 32px; color: var(--c-white);
    border: none; outline: none; letter-spacing: 0.02em;
    opacity: 0; transform: translateY(16px);
    transition: opacity 0.5s var(--ease), transform 0.5s var(--ease), background 0.3s;
  }
  .hdr__nav.open a { opacity: 1; transform: translateY(0); }
  .hdr__nav.open a:nth-child(1) { transition-delay: 0.08s; }
  .hdr__nav.open a:nth-child(2) { transition-delay: 0.14s; }
  .hdr__nav.open a:nth-child(3) { transition-delay: 0.20s; }
  .hdr__nav.open a:nth-child(4) { transition-delay: 0.26s; }
  .hdr__nav a.hdr__cta { margin-top: 12px; padding: 16px 44px !important; }
  /* When menu is open, hide the pill background so the burger floats cleanly over the overlay */
  .hdr:has(.hdr__nav.open) .hdr__inner,
  .hdr.nav-open .hdr__inner { background: transparent !important; backdrop-filter: none !important; -webkit-backdrop-filter: none !important; box-shadow: none !important; border-color: transparent !important; }
  .hero { min-height: 100vh; min-height: 100dvh; align-items: center; }
  .hero__bg img { width: 100%; height: 120%; object-fit: cover; object-position: center center; }
  .hero__content { padding: 130px 32px 60px; }
  .hero__tag { font-size: 0.58rem; letter-spacing: 0.16em; }
  .hero__tag::before { width: 24px; }
  .hero__h1 { font-size: clamp(2.2rem, 10vw, 3.2rem); }
  .hero__btns { flex-direction: column; max-width: 100%; }
  .btn-h { justify-content: center; width: 100%; }
  .hero__side { flex-direction: column; gap: 16px; }
  .hero__scroll { display: none; }

  /* Testimonials - auto-scroll + swipeable on mobile */
  .testimonials { padding: 56px 0 48px; overflow: visible; }
  .testi-track { animation: none !important; display: flex; width: auto; overflow-x: auto; overflow-y: hidden; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; padding: 0 32px 20px; gap: 16px; scroll-padding: 0 32px; touch-action: pan-x pan-y; }
  .testi-track::-webkit-scrollbar { display: none; }
  .testi-track { scrollbar-width: none; }
  .tcard { width: 85vw; max-width: 340px; scroll-snap-align: center; flex-shrink: 0; }

  .gallery { padding: 56px 0; }
  .gallery__show { margin: 0 20px; border-radius: 14px; aspect-ratio: 4/3; }
  .about { padding: 64px 0; }
  .about__text-col { padding: 36px 28px; }
  .about__feats { grid-template-columns: 1fr; }
  .about__badge { padding: 14px 24px; border-radius: 14px; }
  .about__badge-num { font-size: 1.8rem; }
  .about__badge-text { font-size: 0.55rem; }

  .quiz { padding: 64px 0; }
  .quiz__card { padding: 28px 22px; }
  .quiz__question { font-size: 1rem; }

  .lead { padding: 56px 0 80px; }
  .f-row { flex-direction: column; }
  .lead__form { padding: 28px 22px; }

  /* Book section mobile */
  .book__inner { padding: 80px 32px 80px; }
  .book__header { margin-bottom: 48px; }
  .book__h2 { font-size: clamp(1.6rem, 7vw, 2.4rem); }
  .book__intro { font-size: 0.92rem; }
  .book__headline { font-size: clamp(1.6rem, 6vw, 2.2rem); }
  .book__cards { gap: 20px; padding: 0; }
  .vc { padding: 28px 24px 24px; }
  .book__card { border-radius: 14px; }
  .book__stack { margin-bottom: 40px; }
  .btn-cta { padding: 18px 32px; font-size: 0.95rem; width: 100%; max-width: 320px; }
  .book__checklist { grid-template-columns: 1fr; gap: 12px; }
  .book__trust { font-size: 0.7rem; }

  .posts { padding: 64px 0 72px; }

  .ftr { padding: 48px 0 20px; }
  .ftr__grid { text-align: left; }
  .ftr__bar { padding: 16px 24px; flex-direction: column; gap: 8px; text-align: center; }
}

/* QUIZ */
.quiz { padding: 100px 0; background: transparent; color: var(--c-white); position: relative; }
.quiz__inner { max-width: 680px; margin: 0 auto; }
.quiz__header { text-align: center; margin-bottom: 40px; }
.quiz__tag { font-family: var(--f-heading); font-size: 0.68rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--c-gold); margin-bottom: 10px; }
.quiz__h2 { font-family: var(--f-display); font-size: clamp(1.5rem, 2.8vw, 2.2rem); font-weight: 800; color: var(--c-white); margin-bottom: 10px; }
.quiz__sub { font-size: 0.95rem; opacity: 0.5; font-family: var(--f-heading); }
.quiz__card { background: #E4D5BE; border-radius: 8px; padding: 36px 32px; position: relative; overflow: hidden; box-shadow: 2px 3px 12px rgba(0,0,0,0.3); }
.quiz__card::after { content: ''; position: absolute; inset: 0; border-radius: 8px; background: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.2' numOctaves='6' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.12'/%3E%3C/svg%3E"); pointer-events: none; mix-blend-mode: multiply; }
.quiz__card > * { position: relative; z-index: 1; }
.quiz__progress { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.quiz__step { font-family: var(--f-heading); font-size: 0.75rem; font-weight: 600; color: #8B6530; letter-spacing: 0.04em; }
.quiz__bar { flex: 1; height: 4px; background: rgba(140,100,50,0.15); border-radius: 2px; margin-left: 16px; overflow: hidden; }
.quiz__bar-fill { height: 100%; background: var(--c-terra); border-radius: 2px; transition: width 0.4s var(--ease); }
.quiz__question { font-family: var(--f-heading); font-size: 1.1rem; font-weight: 700; color: #2A2215; margin-bottom: 20px; line-height: 1.4; }
.quiz__options { display: flex; flex-direction: column; gap: 10px; }
.quiz__opt { padding: 14px 18px; background: rgba(255,255,255,0.5); border: 1.5px solid rgba(100,80,50,0.12); border-radius: 8px; font-family: var(--f-heading); font-size: 0.9rem; color: #2A2215; cursor: pointer; transition: all 0.25s; text-align: left; }
.quiz__opt:hover { background: rgba(255,255,255,0.8); border-color: rgba(100,80,50,0.25); }
.quiz__opt.correct { background: #D4E8C4; border-color: #5A8A3A; color: #2A4A1A; }
.quiz__opt.wrong { background: #F0D0C0; border-color: #C45A2D; color: #6A2A10; }
.quiz__opt.disabled { pointer-events: none; opacity: 0.5; }
.quiz__opt.disabled.correct { opacity: 1; }
.quiz__feedback { margin-top: 14px; font-family: var(--f-heading); font-size: 0.85rem; color: #5C4F3A; line-height: 1.5; }
.quiz__next { margin-top: 20px; padding: 12px 28px; background: var(--c-terra); color: var(--c-white); border: none; border-radius: 8px; font-family: var(--f-heading); font-size: 0.88rem; font-weight: 600; cursor: pointer; transition: background 0.3s; }
.quiz__next:hover { background: var(--c-terra-light); }
.quiz__result { text-align: center; }
.quiz__score { font-family: var(--f-display); font-size: 3.5rem; font-weight: 900; color: var(--c-terra); line-height: 1; }
.quiz__score-label { font-family: var(--f-heading); font-size: 0.85rem; color: #5C4F3A; margin-top: 6px; margin-bottom: 20px; }
.quiz__verdict { font-family: var(--f-heading); font-size: 1rem; font-weight: 600; color: #2A2215; margin-bottom: 8px; }
.quiz__verdict-sub { font-size: 0.9rem; color: #5C4F3A; margin-bottom: 24px; line-height: 1.6; }
.quiz__cta { display: inline-flex; padding: 14px 32px; background: var(--c-terra); color: var(--c-white); border-radius: 8px; font-family: var(--f-heading); font-size: 0.9rem; font-weight: 600; transition: background 0.3s; }
.quiz__cta:hover { background: var(--c-terra-light); }

/* BURGER MENU (mobile) */
.hdr__burger { background: none; border: none; cursor: pointer; padding: 8px; z-index: 200; position: relative; display: none; outline: none; -webkit-tap-highlight-color: transparent; }
.hdr__burger:focus { outline: none; }
.hdr__burger span { display: block; width: 22px; height: 2px; background: var(--c-white); margin: 5px 0; border-radius: 2px; transition: all 0.3s var(--ease); }
.hdr__burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hdr__burger.active span:nth-child(2) { opacity: 0; }
.hdr__burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
@media (max-width: 768px) {
  .hdr__burger { display: block; }
}

/* BACK TO TOP */
.back-to-top { position: fixed; bottom: 28px; right: 28px; z-index: 90; width: 44px; height: 44px; border-radius: 50%; background: var(--c-terra); color: var(--c-white); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: all 0.3s var(--ease); box-shadow: 0 4px 12px rgba(196,90,45,0.3); }
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--c-terra-light); transform: translateY(-2px); }

/* SINGLE POST & PAGE TEMPLATES */
.site-main { position: relative; }
.page-hero { position: relative; padding: 150px 0 56px; background: linear-gradient(140deg, var(--c-night) 0%, var(--c-char) 55%, #2a1f16 100%); color: var(--c-white); overflow: hidden; }
.page-hero--post { min-height: 340px; display: flex; align-items: flex-end; }
.page-hero--post::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--c-terra), var(--c-gold)); z-index: 2; }
.page-hero__bg { position: absolute; inset: 0; background-size: cover; background-position: center; background-repeat: no-repeat; }
.page-hero__bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15,14,10,0.55) 0%, rgba(15,14,10,0.7) 50%, rgba(15,14,10,0.92) 100%); }
.page-hero__title { font-family: var(--f-display); font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 900; line-height: 1.1; position: relative; z-index: 1; }
.page-hero__tag { font-family: var(--f-heading); font-size: 0.68rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--c-gold); margin-bottom: 14px; }
.page-hero__desc { font-size: 1.05rem; opacity: 0.65; margin-top: 14px; max-width: 600px; position: relative; z-index: 1; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 32px; }
.content-container { padding: 64px 32px 80px; }
.content-layout { display: grid; grid-template-columns: 1fr 320px; gap: 48px; }
.entry-content { font-family: var(--f-heading); font-size: 1.05rem; line-height: 1.8; color: var(--c-char); }
.entry-content h2 { font-family: var(--f-display); font-size: 1.6rem; font-weight: 800; margin: 40px 0 16px; color: var(--c-night); }
.entry-content h3 { font-family: var(--f-heading); font-size: 1.15rem; font-weight: 700; margin: 32px 0 12px; color: var(--c-night); }
.entry-content p { margin-bottom: 20px; }
.entry-content ul, .entry-content ol { margin: 0 0 20px 20px; }
.entry-content li { font-family: var(--f-heading); margin-bottom: 8px; line-height: 1.7; }
.entry-content blockquote { font-family: var(--f-heading); }
.entry-content img { border-radius: 12px; margin: 24px 0; }
.entry-content a { color: var(--c-terra); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 2px; }
.entry-content a:hover { color: var(--c-terra-light); }
.content-sidebar { display: flex; flex-direction: column; gap: 24px; }
.sidebar-cta { background: #FFFDF6; border: 1px solid rgba(26,26,14,0.06); border-radius: 14px; padding: 28px 24px; }
.sidebar-cta h4 { font-family: var(--f-heading); font-size: 1rem; font-weight: 700; color: var(--c-night); margin-bottom: 10px; }
.sidebar-cta p { font-size: 0.9rem; color: var(--c-stone); margin-bottom: 16px; }
.sidebar-links { display: flex; flex-direction: column; gap: 8px; }
.sidebar-links a { font-family: var(--f-heading); font-size: 0.88rem; color: var(--c-terra); font-weight: 500; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 24px; font-family: var(--f-heading); font-size: 0.88rem; font-weight: 600; border-radius: 8px; cursor: pointer; transition: all 0.3s; border: none; text-decoration: none; }
.btn--primary { background: var(--c-terra); color: var(--c-white); }
.btn--primary:hover { background: var(--c-terra-light); }
.btn--accent { background: var(--c-terra); color: var(--c-white); }
.btn--accent:hover { background: var(--c-terra-light); }
.btn--outline { border: 1.5px solid rgba(255,255,255,0.25); color: var(--c-white); background: transparent; }
.btn--outline:hover { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.05); }
.btn--full { width: 100%; }
.btn--lg { padding: 16px 32px; font-size: 0.95rem; }

/* POST NAVIGATION */
.post-navigation { padding: 48px 32px 90px; }
.post-nav-links { display: flex; justify-content: space-between; gap: 24px; }
.post-nav-link { display: flex; flex-direction: column; gap: 4px; padding: 20px 24px; background: #FFFDF6; border: 1px solid rgba(26,26,14,0.06); border-radius: 12px; flex: 1; transition: transform 0.3s, box-shadow 0.3s; }
.post-nav-link:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(28,27,22,0.08); }
.post-nav-link--next { text-align: right; }
.post-nav-link__label { font-family: var(--f-heading); font-size: 0.72rem; font-weight: 600; color: var(--c-terra); letter-spacing: 0.06em; text-transform: uppercase; }
.post-nav-link__title { font-family: var(--f-heading); font-size: 0.92rem; font-weight: 600; color: var(--c-night); }

/* INFO PAGE STYLES */
.info-page { background: var(--c-sand-pale); }
.page-hero--info { padding: 180px 0 80px; }
.info-block { margin-bottom: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(26,26,14,0.08); }
.info-block:last-of-type { border-bottom: none; }
.info-block__icon { margin-bottom: 16px; color: var(--c-terra); }
.info-block h2 { font-family: var(--f-display); font-size: 1.5rem; font-weight: 800; color: var(--c-night); margin-bottom: 12px; }
.info-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 20px; }
.info-card { background: #FFFDF6; border: 1px solid rgba(26,26,14,0.06); border-radius: 12px; padding: 24px; }
.info-card h3 { font-family: var(--f-heading); font-size: 1rem; font-weight: 700; color: var(--c-night); margin-bottom: 10px; }
.info-card ul { display: flex; flex-direction: column; gap: 6px; padding-left: 20px; list-style: disc; }
.info-card ul li { font-size: 0.92rem; color: var(--c-stone); }
.info-card__alert { margin-top: 14px; padding: 12px 16px; background: rgba(196,90,45,0.06); border-left: 3px solid var(--c-terra); border-radius: 0 8px 8px 0; font-size: 0.88rem; color: var(--c-char); }
.info-cta { text-align: center; padding: 48px 0; }
.info-cta h2 { font-family: var(--f-display); font-size: 1.6rem; font-weight: 800; color: var(--c-night); margin-bottom: 14px; }
.info-cta p { color: var(--c-stone); margin-bottom: 24px; max-width: 500px; margin-left: auto; margin-right: auto; }

/* ARCHIVE */
.archive-hero { padding: 160px 0 60px; background: var(--c-night); color: var(--c-white); text-align: center; }
.archive-hero h1 { font-family: var(--f-display); font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 900; }
.archive-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; padding: 64px 0 80px; }

/* WEATHER WIDGET -- Header Pill (desktop) */
.wx { position: relative; }
.wx__pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px; border-radius: 20px;
  background: rgba(15,14,10,0.55); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--c-white); cursor: pointer;
  font-family: var(--f-heading); font-size: 0.72rem; font-weight: 500;
  transition: background 0.3s, border-color 0.3s;
  white-space: nowrap;
}
.wx__pill:hover { background: rgba(15,14,10,0.7); border-color: rgba(255,255,255,0.25); }
.wx__pill-icon { font-size: 0.9rem; line-height: 1; }
.wx__pill-temp { font-weight: 700; font-size: 0.78rem; }
.wx__pill-label { opacity: 0.6; font-size: 0.65rem; letter-spacing: 0.06em; text-transform: uppercase; }
.wx__pill-chev { opacity: 0.4; transition: transform 0.3s var(--ease); }
.wx__pill[aria-expanded="true"] .wx__pill-chev { transform: rotate(180deg); }

/* Dropdown panel */
.wx__drop {
  position: absolute; top: calc(100% + 10px); right: 0; z-index: 200;
  width: 320px; background: #1C1B16; border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px; padding: 0; overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s;
}
.wx__drop[aria-hidden="false"] { opacity: 1; visibility: visible; transform: translateY(0); }
.wx__drop-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px 12px; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.wx__drop-title { font-family: var(--f-heading); font-size: 0.78rem; font-weight: 700; color: var(--c-white); letter-spacing: 0.04em; }
.wx__drop-time { font-family: var(--f-heading); font-size: 0.62rem; color: rgba(255,255,255,0.55); }
.wx__zones { padding: 12px 20px 8px; }
.wx__zone { padding: 10px 0; }
.wx__zone + .wx__zone { border-top: 1px solid rgba(255,255,255,0.05); }
.wx__zone-head { display: flex; align-items: center; gap: 10px; }
.wx__zone-icon { font-size: 1.4rem; line-height: 1; }
.wx__zone-label { display: block; font-family: var(--f-heading); font-size: 0.78rem; font-weight: 700; color: var(--c-white); }
.wx__zone-sub { display: block; font-family: var(--f-heading); font-size: 0.6rem; color: rgba(255,255,255,0.6); }
.wx__zone-temp { margin-left: auto; font-family: var(--f-display); font-size: 1.6rem; font-weight: 900; color: var(--c-white); line-height: 1; }
.wx__zone-meta {
  display: flex; gap: 14px; margin-top: 6px; padding-left: 38px;
  font-family: var(--f-heading); font-size: 0.65rem; color: rgba(255,255,255,0.65);
}
.wx__seasonal {
  margin: 0 20px 12px; padding: 10px 14px; border-radius: 8px;
  font-family: var(--f-heading); font-size: 0.72rem; line-height: 1.5; color: rgba(255,255,255,0.7);
}
.wx__seasonal--rain { background: rgba(59,130,246,0.12); }
.wx__seasonal--green { background: rgba(34,197,94,0.1); }
.wx__seasonal--cold { background: rgba(147,197,253,0.1); }
.wx__seasonal--hot { background: rgba(245,158,11,0.12); }
.wx__drop-cta {
  display: block; text-align: center; padding: 14px 20px;
  font-family: var(--f-heading); font-size: 0.72rem; font-weight: 600;
  color: var(--c-terra-light); border-top: 1px solid rgba(255,255,255,0.06);
  transition: background 0.3s;
}
.wx__drop-cta:hover { background: rgba(196,90,45,0.08); color: var(--c-terra-light); }

/* WEATHER STRIP -- Mobile (below hero) */
.wx-strip {
  display: none; background: var(--c-sand-pale); padding: 16px 24px;
  border-bottom: 1px solid rgba(28,27,22,0.06);
}
.wx-strip__zones { display: flex; justify-content: center; gap: 24px; }
.wx-strip__zone { display: flex; align-items: center; gap: 6px; }
.wx-strip__icon { font-size: 1.1rem; line-height: 1; }
.wx-strip__temp { font-family: var(--f-heading); font-size: 0.85rem; font-weight: 700; color: var(--c-night); }
.wx-strip__name { font-family: var(--f-heading); font-size: 0.62rem; color: var(--c-stone); text-transform: uppercase; letter-spacing: 0.08em; }
.wx-strip__note {
  margin-top: 10px; padding: 10px 14px; border-radius: 8px;
  font-family: var(--f-heading); font-size: 0.72rem; line-height: 1.5;
  color: var(--c-char); text-align: center;
}
.wx-strip__note--rain { background: rgba(59,130,246,0.08); }
.wx-strip__note--green { background: rgba(34,197,94,0.06); }
.wx-strip__note--cold { background: rgba(147,197,253,0.08); }
.wx-strip__note--hot { background: rgba(245,158,11,0.08); }

/* Weather responsive */
@media (max-width: 768px) {
  .wx { display: none; }
  .wx-strip { display: block; }
}
@media (min-width: 769px) {
  .wx-strip { display: none !important; }
}

/* 404 */
.error-404 { text-align: center; padding: 180px 32px 120px; background: var(--c-sand-pale); min-height: 80vh; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.error-404 h1 { font-family: var(--f-display); font-size: 6rem; font-weight: 900; color: var(--c-terra); line-height: 1; margin-bottom: 16px; }
.error-404 p { font-size: 1.1rem; color: var(--c-stone); margin-bottom: 32px; }

/* WordPress admin bar compatibility */
.admin-bar .hdr { top: 32px; }
@media screen and (max-width: 782px) { .admin-bar .hdr { top: 46px; } }

/* Responsive inner pages */
@media (max-width: 1024px) {
  .content-layout { grid-template-columns: 1fr; }
  .content-sidebar { margin-top: 48px; }
  .info-cards { grid-template-columns: 1fr; }
  .archive-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .container { padding: 0 32px; }
  .page-hero { padding: 140px 0 48px; }
  .page-hero--info { padding: 140px 0 56px; }
  .content-container { padding: 40px 32px 64px; }
  .post-navigation { padding: 40px 32px 72px; }
  .post-nav-links { flex-direction: column; gap: 16px; }
  .post-nav-link--next { text-align: left; }
}
