/* ===== Design tokens ===== */
:root {
  --sand: #F5EEE1;
  --sand-2: #ECE0C9;
  --sunset: #DD7A3B;
  --sunset-dark: #B85D28;
  --gold: #D9A441;
  --denim: #2F5568;
  --denim-dark: #1F3D4C;
  --forest: #4C6A45;
  --pr-red: #C8102E;
  --pr-blue: #0050A0;
  --ink: #2B241D;
  --ink-soft: #6B5D4C;
  --white: #FFFFFF;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;

  --radius: 16px;
  --shadow-soft: 0 10px 30px rgba(43, 36, 29, 0.08);
  --shadow-card: 0 14px 34px rgba(43, 36, 29, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--sand);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, .logo-text {
  font-family: var(--font-display);
  color: var(--ink);
  margin: 0 0 0.5em;
  font-weight: 600;
}
p { margin: 0 0 1em; color: var(--ink-soft); }
a { color: inherit; text-decoration: none; }
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}
img { max-width: 100%; display: block; }

.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--sunset);
  margin-bottom: 0.6em;
}
.section-sub {
  max-width: 560px;
  margin: 0 auto 3rem;
  color: var(--ink-soft);
}
.center { text-align: center; margin-left: auto; margin-right: auto; }

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--sunset);
  color: var(--white);
  box-shadow: var(--shadow-soft);
}
.btn-primary:hover { background: var(--sunset-dark); transform: translateY(-2px); }
.btn-outline {
  border-color: var(--white);
  color: var(--white);
}
.btn-outline:hover { background: rgba(255,255,255,0.15); transform: translateY(-2px); }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 238, 225, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(43,36,29,0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo-icon { color: var(--sunset); display: flex; }
.logo-text {
  font-size: 1.3rem;
  margin: 0;
  color: var(--ink);
}
.logo-text em { font-style: italic; color: var(--denim); font-weight: 500; }
.main-nav {
  display: flex;
  gap: 28px;
}
.main-nav a {
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--ink);
  position: relative;
  padding: 4px 0;
  white-space: nowrap;
}
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--sunset);
  transition: width .2s ease;
}
.main-nav a:hover::after { width: 100%; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}
.lang-toggle {
  background: var(--white);
  border: 1px solid rgba(43,36,29,0.12);
  border-radius: 999px;
  padding: 6px 12px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: 6px;
}
.lang-option.is-active { color: var(--sunset); }
.lang-sep { color: rgba(43,36,29,0.3); }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px;
  height: 34px;
  background: none;
  border: none;
  cursor: pointer;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  background: linear-gradient(160deg, var(--sunset) 0%, #e4934f 40%, var(--gold) 100%);
  color: var(--white);
  padding: 120px 0 150px;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-scene { position: absolute; bottom: 0; left: 0; width: 100%; height: 100%; opacity: 0.9; }
.hero-wave {
  position: absolute;
  bottom: -1px; left: 0;
  width: 100%; height: 90px;
}
.hero-wave path { fill: var(--sand); }
.hero-inner { position: relative; max-width: 720px; text-align: left; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--sand);
  opacity: 0.95;
  margin-bottom: 1em;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2.3rem, 5vw, 3.8rem);
  line-height: 1.1;
  margin-bottom: 0.4em;
}
.hero-sub {
  color: rgba(255,255,255,0.95);
  font-size: 1.1rem;
  max-width: 560px;
  margin-bottom: 0.8em;
}
.hero-location {
  display: inline-block;
  background: rgba(31,26,20,0.58);
  color: var(--white);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 2em;
  text-shadow: 0 1px 2px rgba(0,0,0,0.25);
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }

/* ===== Story ===== */
.story { padding: 110px 0 90px; }
.story-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.story-media { position: relative; }
.story-photo {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}
.photo-placeholder {
  aspect-ratio: 4/5;
  background: var(--sand-2);
  border: 2px dashed rgba(43,36,29,0.2);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--ink-soft);
  text-align: center;
  padding: 32px;
}
.photo-placeholder svg { color: var(--sunset); opacity: 0.6; }
.photo-placeholder span { font-size: 0.9rem; max-width: 220px; }
.flag-badge {
  position: absolute;
  bottom: -22px;
  right: -18px;
  background: var(--denim);
  color: var(--white);
  border-radius: 999px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-card);
  max-width: 220px;
  font-size: 0.8rem;
  font-weight: 500;
}
.flag-badge svg { flex-shrink: 0; border-radius: 3px; }
.story-copy h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); }
.story-values {
  list-style: none;
  padding: 0;
  margin: 1.6em 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.story-values li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 500;
  color: var(--ink);
}
.story-values li::before {
  content: '✓';
  color: var(--forest);
  font-weight: 700;
  flex-shrink: 0;
}

/* ===== Lucas ===== */
.lucas { padding: 90px 0; background: var(--sand-2); }
.lucas-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}
.lucas h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); }
.lucas-photo {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

/* ===== Life on the Road ===== */
.life { padding: 90px 0; }
.life-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 20px;
}
.life-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 26px;
  box-shadow: var(--shadow-soft);
  transition: transform .2s ease, box-shadow .2s ease;
}
.life-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}
.card-icon {
  width: 58px; height: 58px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--white);
}
.card-icon.fishing { background: var(--denim); }
.card-icon.food { background: var(--sunset); }
.card-icon.health { background: var(--pr-red); }
.card-icon.states { background: var(--forest); }
.life-card h3 { font-size: 1.1rem; }
.life-card p { font-size: 0.92rem; }

/* ===== Gallery ===== */
.gallery { padding: 90px 0; background: var(--sand-2); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery-tile {
  aspect-ratio: 1/1;
  border-radius: var(--radius);
  overflow: hidden;
}
.gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}
.gallery-tile img:hover { transform: scale(1.05); }
.tile-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(160deg, var(--sand), #e6d6b8);
  border: 2px dashed rgba(43,36,29,0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--ink-soft);
  font-size: 0.82rem;
  text-align: center;
  padding: 16px;
}
.tile-placeholder svg { color: var(--sunset); opacity: 0.5; }

/* ===== Quote strip ===== */
.quote-strip {
  background: var(--denim);
  color: var(--white);
  padding: 60px 0;
}
.quote-inner { max-width: 700px; margin: 0 auto; text-align: center; }
.quote-inner blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.4rem;
  margin: 0 0 16px;
  line-height: 1.5;
}
.quote-inner cite {
  font-style: normal;
  font-size: 0.85rem;
  opacity: 0.85;
}

/* ===== Gear ===== */
.gear { padding: 90px 0; }
.gear-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 20px;
}
.gear-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 30px;
  box-shadow: var(--shadow-soft);
  transition: transform .2s ease, box-shadow .2s ease;
}
.gear-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}
.gear-card .card-icon.toilet { background: var(--forest); }
.gear-card .card-icon.water { background: var(--denim); }
.gear-card .card-icon.spf { background: var(--gold); }
.gear-card h3 { font-size: 1.2rem; }
.card-link {
  display: inline-block;
  margin-top: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--sunset);
}
.card-link:hover { text-decoration: underline; }
.gear-note {
  text-align: center;
  font-size: 0.8rem;
  font-style: italic;
  margin-top: 30px;
}

/* ===== Follow ===== */
.follow { padding: 90px 0; background: var(--sand-2); }
.follow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 20px;
}
.follow-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 20px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--ink);
  transition: transform .2s ease, box-shadow .2s ease, color .2s ease;
}
.follow-card svg { color: var(--sunset); }
.follow-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
  color: var(--sunset);
}

/* ===== Contact ===== */
.contact { padding: 100px 0; }
.contact-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
}
.contact-intro h2 { font-size: clamp(1.7rem, 3vw, 2.2rem); }
.contact-details { margin-top: 2em; display: flex; flex-direction: column; gap: 14px; }
.contact-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-weight: 500;
}
.contact-detail svg { color: var(--sunset); flex-shrink: 0; }
.contact-social { gap: 16px; }
.contact-social a {
  background: var(--sand-2);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--sunset);
  box-shadow: var(--shadow-soft);
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact-form label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
  margin-top: 14px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1.5px solid rgba(43,36,29,0.15);
  background: var(--sand);
  color: var(--ink);
  resize: vertical;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--sunset);
}
.contact-form .btn { margin-top: 22px; align-self: flex-start; }
.hidden-field { position: absolute; left: -9999px; }
.form-note {
  font-size: 0.78rem;
  color: var(--ink-soft);
  margin-top: 14px;
  font-style: italic;
}
.form-status {
  margin-top: 14px;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 500;
}
.form-status-success { background: rgba(76,106,69,0.15); color: var(--forest); }
.form-status-error { background: rgba(200,16,46,0.1); color: var(--pr-red); }

/* ===== Footer ===== */
.site-footer {
  background: var(--ink);
  color: var(--sand);
  padding: 40px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--sand);
}
.footer-logo .logo-icon { color: var(--gold); }
.site-footer p { color: rgba(245,238,225,0.75); margin: 0; font-size: 0.85rem; }
.footer-social { display: flex; gap: 18px; }
.footer-social a { font-size: 0.85rem; color: rgba(245,238,225,0.85); }
.footer-social a:hover { color: var(--gold); }

/* ===== Reveal animation ===== */
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .life-grid { grid-template-columns: 1fr 1fr; }
  .follow-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .story-inner, .lucas-inner, .contact-inner { grid-template-columns: 1fr; }
  .lucas-inner .lucas-media { order: -1; }
  .gear-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .flag-badge { position: static; margin-top: 16px; max-width: none; justify-content: center; }
}
@media (max-width: 720px) {
  .main-nav {
    position: fixed;
    top: 66px; left: 0; right: 0;
    background: var(--sand);
    flex-direction: column;
    padding: 20px 24px;
    gap: 18px;
    border-bottom: 1px solid rgba(43,36,29,0.1);
    transform: translateY(-130%);
    transition: transform .25s ease;
    max-height: calc(100vh - 66px);
    overflow-y: auto;
  }
  .main-nav.is-open { transform: translateY(0); }
  .hamburger { display: flex; }
  .header-actions { gap: 10px; }
  .life-grid { grid-template-columns: 1fr; }
  .gear-grid { grid-template-columns: 1fr; }
  .follow-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .hero { padding: 90px 0 120px; text-align: left; }
  .hero-cta { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .follow-grid { grid-template-columns: 1fr; }
}
