@font-face {
  font-family: "Tanker";
  src: url("fonts/Tanker-Regular.woff2") format("woff2"),
       url("fonts/Tanker-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ============================================
   YONDER — Adventure Tourism
   Shared stylesheet
   ============================================ */

:root {
  --cream: #f1ecdf;
  --cream-dark: #e6dfcc;
  --green: #17301f;
  --green-mid: #23422c;
  --green-soft: #2f5138;
  --rust: #c75b39;
  --rust-dark: #a94826;
  --ink: #1a221c;
  --line: rgba(23, 48, 31, 0.18);
  --font-display: "Tanker", sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --font-mono: "Courier Prime", monospace;
  --radius: 20px;
  --radius-sm: 12px;
  --pad: clamp(20px, 4vw, 64px);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.02em;
  text-transform: lowercase;
  color: var(--green);
}

.wrap { max-width: 1360px; margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }

/* ---------- Announcement bar ---------- */
.announce {
  background: var(--green);
  color: var(--cream);
  overflow: hidden;
  white-space: nowrap;
  font-size: 13px;
  padding: 9px 0;
}
.announce-track {
  display: inline-flex;
  gap: 48px;
  animation: marquee 28s linear infinite;
}
.announce-item { display: inline-flex; gap: 8px; align-items: center; }
.announce-item strong { color: #e9c46a; font-weight: 600; }
.announce-item a { text-decoration: underline; text-underline-offset: 3px; color: var(--cream); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(241, 236, 223, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}
.logo {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  color: var(--green);
  letter-spacing: -0.03em;
}
.logo span { color: var(--rust); }
.nav-links { display: flex; gap: 32px; font-size: 14px; font-weight: 500; }
.nav-links a { position: relative; padding: 4px 0; color: var(--green); }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--rust);
  transition: width 0.25s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { display: flex; gap: 12px; align-items: center; }
.lang-switch { display: flex; gap: 6px; font-size: 13px; font-weight: 600; color: var(--green); align-items: center; }
.lang-switch a { opacity: 0.5; transition: opacity 0.2s ease; padding: 4px 2px; }
.lang-switch a:hover, .lang-switch a.active { opacity: 1; }
.lang-switch .sep { opacity: 0.35; }
.menu-btn { display: none; background: none; border: none; cursor: pointer; }
.menu-btn svg { stroke: var(--green); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  transition: transform 0.2s ease, background 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-rust { background: var(--rust); color: #fff; }
.btn-rust:hover { background: var(--rust-dark); }
.btn-green { background: var(--green); color: var(--cream); }
.btn-green:hover { background: var(--green-mid); }
.btn-outline { background: transparent; color: var(--green); border: 1.5px solid var(--green); }
.btn-outline:hover { background: var(--green); color: var(--cream); }
.btn-light { background: var(--cream); color: var(--green); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  margin: 16px;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 86vh;
  display: flex;
  align-items: flex-end;
}
.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroZoom 18s ease-out forwards;
}
@keyframes heroZoom { from { transform: scale(1.12); } to { transform: scale(1); } }
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 24, 14, 0.72) 0%, rgba(10, 24, 14, 0.05) 55%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: clamp(28px, 5vw, 72px);
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
}
.hero h1 {
  font-size: clamp(56px, 10vw, 148px);
  color: var(--cream);
}
.hero-sub { max-width: 380px; color: rgba(241, 236, 223, 0.92); }
.hero-sub p { font-size: 18px; margin-bottom: 20px; line-height: 1.5; }

/* Departure chip on hero */
.hero-chip {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 3;
  background: rgba(241, 236, 223, 0.92);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: 13px;
  color: var(--green);
  transition: transform 0.2s ease;
}
.hero-chip:hover { transform: translateY(-3px); }
.hero-chip .label { text-transform: uppercase; letter-spacing: 0.12em; font-size: 10px; opacity: 0.7; }
.hero-chip .title { font-weight: 700; font-size: 15px; }

/* ---------- Awards strip ---------- */
.awards {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
  overflow: hidden;
  white-space: nowrap;
}
.awards-track { display: inline-flex; gap: 64px; animation: marquee 32s linear infinite; }
.award {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--green);
}
.award::before { content: "✦"; color: var(--rust); }

/* ---------- Section headers ---------- */
.section { padding: clamp(56px, 8vw, 120px) 0; }
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(32px, 4vw, 56px);
  flex-wrap: wrap;
}
.section-head h2 { font-size: clamp(40px, 6vw, 88px); }
.section-head h2 em { font-style: italic; color: var(--rust); }
.kicker {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  font-weight: 600;
  color: var(--rust);
  margin-bottom: 12px;
  display: block;
}

/* ---------- Tour cards ---------- */
.tour-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}
.tour-card {
  background: #fbf9f2;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.tour-card:hover { transform: translateY(-6px); box-shadow: 0 24px 48px -24px rgba(23, 48, 31, 0.35); }
.tour-card-media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.tour-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.tour-card:hover .tour-card-media img { transform: scale(1.06); }
.tour-loc {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(241, 236, 223, 0.92);
  border-radius: 999px;
  font-size: 12px;
  padding: 6px 14px;
  color: var(--green);
  font-weight: 600;
}
.tour-loc span { font-weight: 400; opacity: 0.75; }
.tour-card-body { padding: 24px; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.tour-card-body h3 { font-size: 28px; }
.tour-meta { display: flex; gap: 8px; flex-wrap: wrap; }
.tour-meta span {
  font-size: 12px;
  font-weight: 600;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 12px;
  color: var(--green);
}
.tour-desc { font-size: 14.5px; color: rgba(26, 34, 28, 0.78); flex: 1; }
.tour-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}
.tour-price { font-family: var(--font-display); font-size: 26px; color: var(--green); }
.tour-price small { font-family: var(--font-body); font-size: 12px; opacity: 0.6; }
.tour-link { font-weight: 600; font-size: 14px; color: var(--rust); }
.tour-link:hover { text-decoration: underline; text-underline-offset: 4px; }

/* ---------- Guide intro ---------- */
.guide {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(24px, 4vw, 64px);
  align-items: center;
}
.guide-photo { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 5; }
.guide-photo img { width: 100%; height: 100%; object-fit: cover; }
.guide-bubble {
  background: #fbf9f2;
  border: 1px solid var(--line);
  border-radius: var(--radius) var(--radius) var(--radius) 4px;
  padding: clamp(24px, 3vw, 44px);
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.55;
  color: var(--green);
  margin-bottom: 24px;
}
.guide-name { font-weight: 700; color: var(--green); }
.guide-role { font-size: 13px; opacity: 0.65; margin-bottom: 20px; }

/* ---------- Tour types ---------- */
.types-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.type-tile {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3 / 4;
}
.type-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.type-tile:hover img { transform: scale(1.07); }
.type-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 24, 14, 0.6), transparent 55%);
}
.type-label {
  position: absolute;
  bottom: 18px;
  left: 18px;
  z-index: 2;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 26px;
  text-transform: lowercase;
}
.type-arrow {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(241, 236, 223, 0.9);
  color: var(--green);
  display: grid;
  place-items: center;
  font-size: 16px;
  transition: transform 0.25s ease;
}
.type-tile:hover .type-arrow { transform: rotate(45deg); }

/* ---------- Testimonial ---------- */
.quote-band {
  background: var(--green);
  border-radius: var(--radius);
  margin: 0 16px;
  padding: clamp(56px, 8vw, 110px) var(--pad);
  text-align: center;
  color: var(--cream);
}
.quote-band h2 { color: var(--cream); font-size: clamp(32px, 4.6vw, 64px); max-width: 20ch; margin: 0 auto 28px; }
.quote-band .attr { font-size: 14px; opacity: 0.75; }
.quote-band .stars { color: #e9c46a; letter-spacing: 4px; margin-bottom: 24px; font-size: 18px; }

/* ---------- Why choose us ---------- */
.why {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}
.why-photo {
  border-radius: var(--radius);
  overflow: hidden;
  position: sticky;
  top: 100px;
  aspect-ratio: 3 / 4;
}
.why-photo img { width: 100%; height: 100%; object-fit: cover; }
.why-item { border-bottom: 1px solid var(--line); padding: 28px 0; }
.why-item:first-child { border-top: 1px solid var(--line); }
.why-item h3 { font-size: clamp(26px, 3vw, 40px); margin-bottom: 12px; }
.why-item p { color: rgba(26, 34, 28, 0.78); max-width: 52ch; }
.why-num { color: var(--rust); font-size: 13px; font-weight: 700; display: block; margin-bottom: 8px; }

/* ---------- Story cards ---------- */
.story-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.story-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3 / 4.2;
  display: flex;
  align-items: flex-end;
}
.story-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.story-card:hover img { transform: scale(1.05); }
.story-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 24, 14, 0.78), transparent 50%);
}
.story-body { position: relative; z-index: 2; padding: 26px; color: var(--cream); }
.story-body h3 { color: var(--cream); font-size: 30px; margin-bottom: 8px; }
.story-body p { font-size: 14px; opacity: 0.9; margin-bottom: 16px; }
.story-body a { font-weight: 600; font-size: 13px; text-decoration: underline; text-underline-offset: 4px; }

/* ---------- Journal ---------- */
.journal-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.journal-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
  background: #fbf9f2;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.25s ease;
}
.journal-card:hover { transform: translateY(-4px); }
.journal-card img { width: 100%; height: 100%; object-fit: cover; }
.journal-body { padding: 24px 24px 24px 0; display: flex; flex-direction: column; gap: 10px; }
.journal-tag {
  align-self: flex-start;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--rust);
  border: 1px solid var(--rust);
  border-radius: 999px;
  padding: 3px 10px;
}
.journal-body h3 { font-size: 24px; }
.journal-body p { font-size: 14px; color: rgba(26, 34, 28, 0.75); flex: 1; }
.journal-body .read { font-size: 13px; font-weight: 600; color: var(--green); text-decoration: underline; text-underline-offset: 4px; }

/* ---------- FAQ ---------- */
.faq-wrap { max-width: 820px; margin: 0 auto; }
.faq-wrap h2 { text-align: center; font-size: clamp(36px, 5vw, 64px); margin-bottom: 40px; }
details.faq {
  border-bottom: 1px solid var(--line);
  padding: 4px 0;
}
details.faq:first-of-type { border-top: 1px solid var(--line); }
details.faq summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 4px;
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 24px);
  color: var(--green);
  text-transform: lowercase;
}
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::after {
  content: "+";
  font-size: 26px;
  color: var(--rust);
  transition: transform 0.25s ease;
  font-family: var(--font-body);
}
details.faq[open] summary::after { transform: rotate(45deg); }
details.faq .faq-body { padding: 0 4px 22px; color: rgba(26, 34, 28, 0.78); max-width: 60ch; }
.faq-cta { text-align: center; margin-top: 36px; color: rgba(26, 34, 28, 0.7); font-size: 14px; }
.faq-cta a { color: var(--rust); font-weight: 600; text-decoration: underline; text-underline-offset: 4px; }

/* ---------- Instagram strip ---------- */
.insta { text-align: center; }
.insta h2 { font-size: clamp(36px, 5vw, 72px); margin-bottom: 8px; }
.insta p { color: rgba(26, 34, 28, 0.7); margin-bottom: 36px; }
.insta-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 36px; }
.insta-tile { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 1; }
.insta-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.insta-tile:hover img { transform: scale(1.06); }
.insta-cap {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(241, 236, 223, 0.92);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--green);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--green);
  color: var(--cream);
  border-radius: var(--radius) var(--radius) 0 0;
  margin: 0 16px;
  padding: clamp(48px, 6vw, 88px) var(--pad) 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
  gap: clamp(28px, 4vw, 56px);
  margin-bottom: 56px;
}
.footer .logo { color: var(--cream); font-size: 32px; }
.footer-tag { font-size: 14px; opacity: 0.75; margin-top: 12px; max-width: 30ch; }
.footer h4 {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
  opacity: 0.6;
  margin-bottom: 18px;
  font-weight: 600;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; font-size: 15px; }
.footer-links a:hover { color: #e9c46a; }
.newsletter p { font-size: 14px; opacity: 0.8; margin-bottom: 16px; }
.newsletter-form { display: flex; gap: 8px; }
.newsletter-form input {
  flex: 1;
  background: rgba(241, 236, 223, 0.1);
  border: 1px solid rgba(241, 236, 223, 0.25);
  border-radius: 999px;
  padding: 12px 18px;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 14px;
}
.newsletter-form input::placeholder { color: rgba(241, 236, 223, 0.5); }
.newsletter small { display: block; margin-top: 10px; font-size: 12px; opacity: 0.55; }
.footer-bottom {
  border-top: 1px solid rgba(241, 236, 223, 0.15);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  opacity: 0.75;
}
.socials { display: flex; gap: 20px; }
.socials a:hover { color: #e9c46a; }

/* ---------- Page hero (interior pages) ---------- */
.page-hero { padding: clamp(48px, 7vw, 100px) 0 clamp(32px, 4vw, 56px); }
.page-hero h1 { font-size: clamp(48px, 8vw, 110px); }
.page-hero p { max-width: 52ch; margin-top: 20px; font-size: 18px; color: rgba(26, 34, 28, 0.75); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(32px, 5vw, 72px); align-items: start; }
.contact-info h3 { font-size: 26px; margin-bottom: 8px; }
.contact-info .block { margin-bottom: 28px; }
.contact-info p { color: rgba(26, 34, 28, 0.75); font-size: 15px; }
.contact-form {
  background: #fbf9f2;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 40px);
  display: grid;
  gap: 18px;
}
.contact-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form label { font-size: 13px; font-weight: 600; color: var(--green); display: block; margin-bottom: 6px; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--cream);
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink);
}
.contact-form textarea { min-height: 130px; resize: vertical; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  outline: 2px solid var(--rust);
  outline-offset: 1px;
}

/* ---------- About ---------- */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.about-split img { border-radius: var(--radius); aspect-ratio: 4 / 5; object-fit: cover; width: 100%; }
.about-split h2 { font-size: clamp(32px, 4vw, 56px); margin-bottom: 20px; }
.about-split p { color: rgba(26, 34, 28, 0.78); margin-bottom: 16px; }
.stats-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat {
  background: #fbf9f2;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
}
.stat .num { font-family: var(--font-display); font-size: clamp(36px, 4vw, 56px); color: var(--rust); line-height: 1; }
.stat .lbl { font-size: 13px; margin-top: 10px; color: rgba(26, 34, 28, 0.7); }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.team-card { text-align: center; }
.team-card img { border-radius: var(--radius); aspect-ratio: 3 / 4; object-fit: cover; width: 100%; margin-bottom: 16px; }
.team-card h3 { font-size: 24px; }
.team-card p { font-size: 13px; color: rgba(26, 34, 28, 0.65); }

/* ---------- App page ---------- */
.app-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.app-features { list-style: none; margin: 28px 0; display: grid; gap: 16px; }
.app-features li { display: flex; gap: 14px; align-items: flex-start; color: rgba(26, 34, 28, 0.85); }
.app-features li::before {
  content: "✓";
  flex: none;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--green);
  color: var(--cream);
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 700;
}
.app-features strong { color: var(--green); display: block; }
.badges { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }
.badge-pill {
  border: 1.5px solid var(--green);
  border-radius: 14px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 700;
  color: var(--green);
  line-height: 1.25;
}
.badge-pill small { display: block; font-size: 11px; font-weight: 500; opacity: 0.6; }

/* Phone mockup */
.phone-wrap { display: flex; justify-content: center; }
.phone {
  width: min(300px, 78vw);
  aspect-ratio: 9 / 18.5;
  border-radius: 44px;
  border: 10px solid var(--green);
  background: var(--cream);
  box-shadow: 0 40px 80px -40px rgba(23, 48, 31, 0.5);
  overflow: hidden;
}
.phone-notch { width: 110px; height: 20px; background: var(--green); border-radius: 0 0 14px 14px; margin: 0 auto; }
.phone-screen { padding: 16px 14px; display: flex; flex-direction: column; gap: 10px; }
.p-head { display: flex; justify-content: space-between; align-items: baseline; }
.p-head .p-title { font-family: var(--font-display); font-size: 19px; color: var(--green); }
.p-head .p-sub { font-size: 10px; color: var(--rust); font-weight: 700; }
.p-card { background: #fbf9f2; border: 1px solid var(--line); border-radius: 14px; padding: 10px; }
.p-img { height: 74px; border-radius: 10px; background-size: cover; background-position: center; margin-bottom: 8px; }
.p-name { font-weight: 700; font-size: 12.5px; color: var(--green); }
.p-meta { font-size: 10.5px; color: rgba(26, 34, 28, 0.6); margin: 2px 0 8px; }
.p-row { display: flex; justify-content: space-between; align-items: center; }
.p-avatars { display: flex; }
.p-avatars span {
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 2px solid #fbf9f2;
  margin-left: -6px;
  background: var(--green-soft);
}
.p-avatars span:first-child { margin-left: 0; background: var(--rust); }
.p-avatars span:nth-child(2) { background: #e9c46a; }
.p-btn { background: var(--rust); color: #fff; border-radius: 999px; padding: 6px 14px; font-size: 11px; font-weight: 700; }
.p-tab { display: flex; justify-content: space-around; border-top: 1px solid var(--line); padding-top: 10px; margin-top: auto; font-size: 9.5px; color: rgba(26, 34, 28, 0.55); font-weight: 600; }
.p-tab .on { color: var(--rust); }

/* Steps */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.step-card { background: #fbf9f2; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 28px; }
.step-card .step-num { font-family: var(--font-display); font-size: 44px; color: var(--rust); line-height: 1; margin-bottom: 14px; }
.step-card h3 { font-size: 24px; margin-bottom: 10px; }
.step-card p { font-size: 14.5px; color: rgba(26, 34, 28, 0.75); }

/* Join band */
.join-band {
  background: var(--green);
  border-radius: var(--radius);
  margin: 0 16px;
  padding: clamp(48px, 7vw, 96px) var(--pad);
  text-align: center;
  color: var(--cream);
}
.join-band h2 { color: var(--cream); font-size: clamp(36px, 5vw, 68px); margin-bottom: 12px; }
.join-band > p { opacity: 0.85; max-width: 52ch; margin: 0 auto; }
.join-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 40px auto;
  max-width: 1000px;
  text-align: left;
}
.join-item {
  background: rgba(241, 236, 223, 0.07);
  border: 1px solid rgba(241, 236, 223, 0.2);
  border-radius: 16px;
  padding: 26px;
}
.join-item h3 { color: var(--cream); font-size: 24px; margin-bottom: 8px; }
.join-item p { font-size: 14px; opacity: 0.85; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 24px var(--pad);
    gap: 18px;
    border-bottom: 1px solid var(--line);
  }
  .nav-links.open { display: flex; }
  .menu-btn { display: block; }
  .types-grid { grid-template-columns: repeat(2, 1fr); }
  .guide, .why, .journal-grid, .contact-grid, .about-split, .app-grid { grid-template-columns: 1fr; }
  .steps-grid, .join-grid { grid-template-columns: 1fr; }
  .why-photo { position: static; }
  .story-grid, .team-grid { grid-template-columns: 1fr; }
  .stats-band { grid-template-columns: repeat(2, 1fr); }
  .insta-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .journal-card { grid-template-columns: 1fr; }
  .journal-body { padding: 0 24px 24px; }
  .hero-chip { display: none; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .contact-form .row { grid-template-columns: 1fr; }
  .stats-band { grid-template-columns: 1fr; }
}
