/* ============================================================
   HIKE & BIKE — Main Stylesheet
   hikenbike.es · Girona, Catalonia
   © 2026 Hike & Bike. All rights reserved.
   ============================================================ */

/* ── TOKENS ── */
:root {
  --cream: #F5F0E8;
  --warm-white: #FAF7F2;
  --stone: #C8B99A;
  --clay: #A8896A;
  --earth: #7A5C3A;
  --bark: #4A3520;
  --forest: #3D5440;
  --sage: #6B7D65;
  --mist: #8FA08A;
  --charcoal: #2C2C2A;
  --ink: #1A1A18;
  --gold: #B8935A;
  --gold-light: #D4AE78;
  --brand-green: #6B8C1E;
  --section-pad: clamp(80px, 10vw, 140px);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--warm-white);
  color: var(--charcoal);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; }

/* ── TYPOGRAPHY ── */
.serif { font-family: 'Cormorant Garamond', serif; }
h1, h2, h3 { font-family: 'Cormorant Garamond', serif; font-weight: 300; line-height: 1.1; }
h1 { font-size: clamp(3.2rem, 7vw, 7rem); }
h2 { font-size: clamp(2.4rem, 4.5vw, 4rem); }
h3 { font-size: clamp(1.6rem, 2.5vw, 2.2rem); }
p  { font-size: clamp(0.95rem, 1.3vw, 1.05rem); }

.eyebrow {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clay);
}

/* ── UTILITIES ── */
.section-inner   { max-width: 1180px; margin: 0 auto; }
.text-center     { text-align: center; }
.mt-6            { margin-top: 24px; }
.mt-10           { margin-top: 40px; }
section          { padding: var(--section-pad) 6%; }

/* ── FADE IN ── */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.visible { opacity: 1; transform: none; }

/* ══════════════════════════════════════════════
   NAV
══════════════════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 28px 5%;
  transition: background 0.5s, padding 0.4s;
}
nav.scrolled {
  background: rgba(250,247,242,0.94);
  backdrop-filter: blur(12px);
  padding: 18px 5%;
  border-bottom: 1px solid rgba(168,137,106,0.15);
}
.nav-logo         { transition: opacity 0.3s; }
.nav-logo:hover   { opacity: 0.8; }
.nav-logo img     { height: 38px; width: auto; }

.nav-links        { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(245,240,232,0.85); transition: color 0.3s;
}
nav.scrolled .nav-links a { color: var(--earth); }
.nav-links a:hover         { color: var(--gold); }
nav.scrolled .nav-links a:hover { color: var(--clay); }

.nav-right { display: flex; align-items: center; gap: 20px; }

/* Language switcher */
.lang-switch {
  display: flex; gap: 0; border: 1px solid rgba(245,240,232,0.3);
}
nav.scrolled .lang-switch { border-color: rgba(168,137,106,0.3); }
.lang-btn {
  padding: 6px 12px;
  font-family: 'Jost', sans-serif;
  font-size: 0.6rem; letter-spacing: 0.16em; text-transform: uppercase;
  background: transparent; border: none; cursor: pointer;
  color: rgba(245,240,232,0.55); transition: all 0.25s;
}
nav.scrolled .lang-btn         { color: var(--stone); }
.lang-btn.active               { background: var(--gold); color: var(--cream) !important; }
.lang-btn:not(.active):hover   { color: var(--gold-light); }

.nav-cta {
  font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 10px 22px;
  border: 1px solid rgba(245,240,232,0.5);
  color: var(--cream); transition: all 0.3s;
}
nav.scrolled .nav-cta           { border-color: var(--clay); color: var(--clay); }
.nav-cta:hover                  { background: var(--gold); border-color: var(--gold); color: var(--cream); }
nav.scrolled .nav-cta:hover     { background: var(--clay); border-color: var(--clay); color: var(--cream); }

/* ══════════════════════════════════════════════
   HERO
══════════════════════════════════════════════ */
#hero {
  position: relative; height: 100vh; min-height: 680px;
  display: flex; align-items: flex-end; padding-bottom: 9vh;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(26,22,14,0.18) 0%, rgba(26,22,14,0.62) 100%),
    url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1800&q=85') center/cover no-repeat;
  transform: scale(1.04);
  animation: heroZoom 18s ease-out forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }

.hero-content {
  position: relative; z-index: 2;
  padding: 0 6%; max-width: 900px;
  animation: heroFade 1.4s ease-out 0.3s both;
}
@keyframes heroFade { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:none; } }

.hero-eyebrow {
  font-size: 0.65rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--stone); margin-bottom: 20px;
}
.hero-title {
  color: var(--cream);
  font-size: clamp(3.4rem, 7.5vw, 7.2rem);
  font-weight: 300; line-height: 1.0; margin-bottom: 28px;
}
.hero-title em    { font-style: italic; color: var(--gold-light); }
.hero-subtitle {
  color: rgba(245,240,232,0.78);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  max-width: 480px; margin-bottom: 44px; font-weight: 300;
}
.hero-actions     { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }

.btn-primary {
  display: inline-block; padding: 14px 34px;
  background: var(--gold); color: var(--cream);
  font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase;
  transition: background 0.3s;
}
.btn-primary:hover { background: var(--earth); }

.btn-ghost {
  display: inline-block; padding: 14px 34px;
  border: 1px solid rgba(245,240,232,0.45); color: var(--cream);
  font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase;
  transition: all 0.3s;
}
.btn-ghost:hover { background: rgba(245,240,232,0.1); }

.hero-scroll {
  position: absolute; bottom: 38px; right: 6%;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: rgba(245,240,232,0.5); font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 52px;
  background: linear-gradient(to bottom, rgba(245,240,232,0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:0.4;} 50%{opacity:1;} }

/* ══════════════════════════════════════════════
   INTRO STRIP
══════════════════════════════════════════════ */
#intro { background: var(--forest); padding: 56px 6%; color: var(--cream); }
.intro-inner {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  border-left: 1px solid rgba(245,240,232,0.15);
}
.intro-item {
  padding: 0 40px;
  border-right: 1px solid rgba(245,240,232,0.15);
}
.intro-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem; font-weight: 300; color: var(--gold-light);
  line-height: 1; margin-bottom: 8px;
}
.intro-label {
  font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--mist); margin-bottom: 6px;
}
.intro-desc { font-size: 0.88rem; color: rgba(245,240,232,0.65); line-height: 1.6; }

/* ══════════════════════════════════════════════
   PHILOSOPHY
══════════════════════════════════════════════ */
#philosophy { background: var(--cream); }
.philosophy-grid {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 80px; align-items: center;
}
.philosophy-img           { position: relative; }
.philosophy-img img       { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.philosophy-img::after {
  content: ''; position: absolute; bottom: -24px; right: -24px;
  width: 60%; height: 60%; border: 1px solid var(--stone); z-index: -1;
}
.philosophy-text .eyebrow { margin-bottom: 20px; }
.philosophy-text h2       { color: var(--bark); margin-bottom: 30px; }
.philosophy-text p        { color: var(--earth); margin-bottom: 22px; max-width: 520px; }
.philosophy-quote {
  margin: 36px 0; padding: 0 0 0 28px;
  border-left: 2px solid var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-style: italic; color: var(--bark); line-height: 1.4;
}

/* ══════════════════════════════════════════════
   EXPERIENCES
══════════════════════════════════════════════ */
#experiences { background: var(--warm-white); }
.exp-header              { text-align: center; margin-bottom: 70px; }
.exp-header h2           { color: var(--bark); margin-bottom: 16px; }
.exp-header p            { color: var(--earth); max-width: 540px; margin: 0 auto; }
.exp-grid                { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; }
.exp-card                { position: relative; overflow: hidden; aspect-ratio: 3/4; cursor: pointer; }
.exp-card img            { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.exp-card:hover img      { transform: scale(1.06); }
.exp-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,22,14,0.85) 0%, rgba(26,22,14,0.1) 55%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 36px 30px;
}
.exp-tag { font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 10px; }
.exp-card h3  { color: var(--cream); font-size: 1.8rem; margin-bottom: 10px; }
.exp-card p   { color: rgba(245,240,232,0.72); font-size: 0.88rem; line-height: 1.5; }
.exp-link {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 18px;
  font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--stone); transition: color 0.3s;
}
.exp-card:hover .exp-link  { color: var(--gold-light); }
.exp-link-arrow            { transition: transform 0.3s; }
.exp-card:hover .exp-link-arrow { transform: translateX(5px); }
.exp-badge {
  position: absolute; top: 22px; right: 22px;
  background: var(--gold); color: var(--cream);
  font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase; padding: 5px 12px;
}

/* ══════════════════════════════════════════════
   GASTRONOMY
══════════════════════════════════════════════ */
#gastronomy { background: var(--bark); color: var(--cream); }
.gastro-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 80px; align-items: center; }
.gastro-text .eyebrow  { margin-bottom: 20px; color: var(--gold-light); }
.gastro-text h2        { color: var(--cream); margin-bottom: 28px; }
.gastro-text p         { color: rgba(245,240,232,0.7); margin-bottom: 18px; max-width: 500px; }
.gastro-features       { list-style: none; margin-top: 34px; display: flex; flex-direction: column; gap: 16px; }
.gastro-features li {
  display: flex; align-items: flex-start; gap: 16px;
  font-size: 0.9rem; color: rgba(245,240,232,0.8);
}
.gastro-features li::before {
  content: ''; width: 20px; height: 1px;
  background: var(--gold); margin-top: 12px; flex-shrink: 0;
}
.gastro-images          { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; gap: 8px; }
.gastro-images img      { width: 100%; object-fit: cover; }
.gastro-images img:first-child { grid-column: 1/-1; aspect-ratio: 16/9; }
.gastro-images img:not(:first-child) { aspect-ratio: 1; }

/* ══════════════════════════════════════════════
   HOW IT WORKS
══════════════════════════════════════════════ */
#how { background: var(--cream); }
.how-header           { text-align: center; margin-bottom: 70px; }
.how-header h2        { color: var(--bark); }
.how-steps            { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; background: var(--stone); }
.how-step             { background: var(--cream); padding: 50px 36px; transition: background 0.3s; }
.how-step:hover       { background: var(--warm-white); }
.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4.5rem; font-weight: 300; color: var(--stone);
  line-height: 1; margin-bottom: 20px; transition: color 0.3s;
}
.how-step:hover .step-num { color: var(--gold); }
.how-step h3          { font-size: 1.3rem; color: var(--bark); margin-bottom: 14px; }
.how-step p           { font-size: 0.88rem; color: var(--earth); line-height: 1.6; }

/* ══════════════════════════════════════════════
   TRANSFERS
══════════════════════════════════════════════ */
#transfers { background: var(--warm-white); }
.transfers-inner      { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.transfers-img        { position: relative; }
.transfers-img img    { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.transfers-img::before {
  content: ''; position: absolute; top: -24px; left: -24px;
  width: 55%; height: 55%; border: 1px solid var(--stone); z-index: -1;
}
.transfers-text .eyebrow { margin-bottom: 18px; }
.transfers-text h2    { color: var(--bark); margin-bottom: 24px; }
.transfers-text p     { color: var(--earth); margin-bottom: 18px; }

/* ══════════════════════════════════════════════
   GUESTHOUSE
══════════════════════════════════════════════ */
#guesthouse           { background: var(--forest); position: relative; overflow: hidden; }
.guesthouse-bg {
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1520250497591-112f2f40a3f4?w=1600&q=80') center/cover no-repeat;
  opacity: 0.18;
}
.guesthouse-inner     { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.guesthouse-text .eyebrow { color: var(--gold-light); margin-bottom: 20px; }
.guesthouse-text h2   { color: var(--cream); margin-bottom: 24px; }
.guesthouse-text p    { color: rgba(245,240,232,0.7); margin-bottom: 18px; }
.guesthouse-features  { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 36px; }
.guesthouse-feat      { padding: 22px 24px; border: 1px solid rgba(245,240,232,0.12); background: rgba(245,240,232,0.04); }
.guesthouse-feat-icon { font-size: 1.4rem; margin-bottom: 10px; }
.guesthouse-feat h4   { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: var(--cream); margin-bottom: 6px; }
.guesthouse-feat p    { font-size: 0.82rem; color: rgba(245,240,232,0.55); }
.guesthouse-visual    { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.guesthouse-visual img { width: 100%; object-fit: cover; aspect-ratio: 1; }
.guesthouse-visual img:nth-child(2) { margin-top: 40px; }
.coming-tag {
  display: inline-block; margin-top: 30px; padding: 10px 22px;
  border: 1px solid rgba(184,147,90,0.4); color: var(--gold-light);
  font-size: 0.65rem; letter-spacing: 0.22em; text-transform: uppercase;
}

/* ══════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════ */
#testimonials        { background: var(--cream); }
.test-header         { text-align: center; margin-bottom: 60px; }
.test-header h2      { color: var(--bark); }
.test-grid           { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.test-card           { padding: 40px 34px; border: 1px solid rgba(168,137,106,0.2); background: var(--warm-white); transition: box-shadow 0.3s; }
.test-card:hover     { box-shadow: 0 8px 40px rgba(74,53,32,0.08); }
.test-stars          { color: var(--gold); font-size: 0.8rem; letter-spacing: 3px; margin-bottom: 20px; }
.test-quote          { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-style: italic; color: var(--bark); line-height: 1.5; margin-bottom: 24px; }
.test-author         { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--clay); }
.test-location       { font-size: 0.78rem; color: var(--stone); margin-top: 3px; }

/* ══════════════════════════════════════════════
   ABOUT
══════════════════════════════════════════════ */
#about              { background: var(--warm-white); }
.about-grid         { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-images       { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.about-images img   { width: 100%; object-fit: cover; aspect-ratio: 2/3; }
.about-images img:nth-child(2) { margin-top: 48px; }
.about-text .eyebrow  { margin-bottom: 18px; }
.about-text h2        { color: var(--bark); margin-bottom: 24px; }
.about-text p         { color: var(--earth); margin-bottom: 18px; max-width: 500px; }
.about-signature      { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-style: italic; color: var(--clay); margin-top: 28px; }

/* ══════════════════════════════════════════════
   SUSTAINABILITY
══════════════════════════════════════════════ */
#sustainability       { padding: 80px 6%; background: var(--sage); color: var(--cream); text-align: center; }
.sust-inner           { max-width: 800px; margin: 0 auto; }
.sust-inner .eyebrow  { color: rgba(245,240,232,0.65); margin-bottom: 20px; }
.sust-inner h2        { color: var(--cream); margin-bottom: 24px; }
.sust-inner p         { color: rgba(245,240,232,0.75); margin-bottom: 18px; }
.sust-pillars         { display: flex; justify-content: center; gap: 48px; margin-top: 48px; flex-wrap: wrap; }
.sust-pillar          { text-align: center; }
.sust-pillar-icon     { font-size: 1.8rem; margin-bottom: 12px; }
.sust-pillar-label    { font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(245,240,232,0.7); }

/* ══════════════════════════════════════════════
   FIELD NOTES / GALLERY
══════════════════════════════════════════════ */
#gallery              { background: var(--ink); padding: var(--section-pad) 0 0; }
.gallery-intro        { padding: 0 6%; max-width: 1180px; margin: 0 auto 60px; }
.gallery-intro-inner  { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 24px; }
.gallery-intro h2     { color: var(--cream); max-width: 500px; line-height: 1.1; }
.gallery-intro h2 em  { font-style: italic; color: var(--gold-light); }
.gallery-intro-copy   { color: rgba(245,240,232,0.5); font-size: 0.9rem; max-width: 360px; line-height: 1.7; }

.gallery-tabs         { padding: 0 6%; max-width: 1180px; margin: 0 auto 48px; display: flex; gap: 4px; flex-wrap: wrap; }
.gallery-tab {
  background: transparent; border: 1px solid rgba(245,240,232,0.15);
  color: rgba(245,240,232,0.5); padding: 10px 22px;
  font-family: 'Jost', sans-serif; font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase;
  cursor: pointer; transition: all 0.25s; display: flex; align-items: center; gap: 7px;
}
.gallery-tab:hover:not(.coming) { border-color: var(--gold); color: var(--gold-light); }
.gallery-tab.active   { background: var(--gold); border-color: var(--gold); color: var(--cream); }
.gallery-tab.coming   { opacity: 0.4; cursor: default; }
.tab-soon             { font-size: 0.52rem; letter-spacing: 0.12em; background: rgba(184,147,90,0.25); padding: 2px 6px; color: var(--gold-light); }
.tab-icon             { font-size: 0.85rem; }

.gallery-grid-wrap    { padding: 0 6%; max-width: 1180px; margin: 0 auto; }
.gallery-masonry      { columns: 4; column-gap: 12px; }
.gallery-item         { break-inside: avoid; margin-bottom: 12px; transition: opacity 0.4s; }
.gallery-item.hidden  { display: none; }
.gallery-card         { position: relative; overflow: hidden; cursor: zoom-in; }
.gallery-card img     { width: 100%; display: block; transition: transform 0.6s ease; }
.gallery-card:hover img { transform: scale(1.04); }
.gallery-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 28px 16px 14px;
  background: linear-gradient(to top, rgba(26,22,14,0.85) 0%, transparent 100%);
  opacity: 0; transition: opacity 0.35s;
}
.gallery-card:hover .gallery-caption { opacity: 1; }
.gallery-caption p    { font-size: 0.75rem; letter-spacing: 0.08em; color: rgba(245,240,232,0.9); line-height: 1.4; margin: 0; }

.gallery-copyright    { text-align: center; padding: 48px 6% 60px; margin-top: 48px; border-top: 1px solid rgba(245,240,232,0.08); }
.gallery-copyright p  { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(245,240,232,0.3); }
.gallery-copyright small { font-size: 0.78rem; color: rgba(245,240,232,0.18); margin-top: 8px; display: block; max-width: 520px; margin-left: auto; margin-right: auto; }

/* Lightbox */
#lightbox             { display: none; position: fixed; inset: 0; z-index: 999; background: rgba(10,8,6,0.95); align-items: center; justify-content: center; cursor: zoom-out; }
#lightbox.open        { display: flex; }
#lightbox img         { max-width: 90vw; max-height: 90vh; object-fit: contain; box-shadow: 0 0 80px rgba(0,0,0,0.6); }
#lightbox-close       { position: absolute; top: 24px; right: 32px; color: rgba(245,240,232,0.5); font-size: 2rem; cursor: pointer; background: none; border: none; font-family: 'Jost', sans-serif; transition: color 0.2s; }
#lightbox-close:hover { color: var(--cream); }
#lightbox-caption     { position: absolute; bottom: 28px; left: 0; right: 0; text-align: center; font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(245,240,232,0.4); }
#lightbox-nav         { position: absolute; top: 50%; transform: translateY(-50%); width: 100%; display: flex; justify-content: space-between; padding: 0 24px; pointer-events: none; }
.lb-arrow             { pointer-events: all; background: rgba(245,240,232,0.08); border: 1px solid rgba(245,240,232,0.15); color: rgba(245,240,232,0.6); width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.2s; font-size: 1.1rem; }
.lb-arrow:hover       { background: var(--gold); border-color: var(--gold); color: var(--cream); }

/* ══════════════════════════════════════════════
   INQUIRY / CONTACT
══════════════════════════════════════════════ */
#inquiry              { background: var(--bark); }
.inquiry-inner        { max-width: 800px; margin: 0 auto; text-align: center; }
.inquiry-inner .eyebrow { color: var(--gold-light); margin-bottom: 20px; }
.inquiry-inner h2     { color: var(--cream); margin-bottom: 18px; }
.inquiry-inner > p    { color: rgba(245,240,232,0.65); margin-bottom: 50px; max-width: 480px; margin-left: auto; margin-right: auto; }

.inquiry-form         { display: flex; flex-direction: column; gap: 18px; text-align: left; }
.form-row             { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group           { display: flex; flex-direction: column; gap: 8px; }
.form-group label     { font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(245,240,232,0.5); }
.form-group input,
.form-group select,
.form-group textarea  { background: rgba(245,240,232,0.06); border: 1px solid rgba(245,240,232,0.15); padding: 14px 18px; color: var(--cream); font-family: 'Jost', sans-serif; font-size: 0.92rem; font-weight: 300; outline: none; transition: border-color 0.3s; appearance: none; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(245,240,232,0.3); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group textarea  { resize: vertical; min-height: 120px; }
.form-group select    { color: var(--cream); }
.form-group select option { background: var(--bark); }
.form-submit          { align-self: center; padding: 16px 48px; background: var(--gold); border: none; color: var(--cream); font-family: 'Jost', sans-serif; font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; cursor: pointer; transition: background 0.3s; }
.form-submit:hover    { background: var(--clay); }
.form-submit:disabled { background: var(--forest); cursor: default; }
.form-note            { text-align: center; font-size: 0.78rem; color: rgba(245,240,232,0.35); margin-top: 8px; }
.form-success         { text-align: center; padding: 40px; border: 1px solid rgba(184,147,90,0.3); display: none; }
.form-success h3      { font-family: 'Cormorant Garamond', serif; font-size: 2rem; color: var(--cream); margin-bottom: 16px; }
.form-success p       { color: rgba(245,240,232,0.65); }

/* ══════════════════════════════════════════════
   JOURNAL
══════════════════════════════════════════════ */
#journal              { background: var(--cream); }
.journal-header       { text-align: center; margin-bottom: 60px; }
.journal-header h2    { color: var(--bark); }
.journal-grid         { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 24px; }
.journal-card         { overflow: hidden; }
.journal-card img     { width: 100%; object-fit: cover; transition: transform 0.5s; }
.journal-card:hover img { transform: scale(1.04); }
.journal-card:first-child img  { aspect-ratio: 4/3; }
.journal-card:not(:first-child) img { aspect-ratio: 3/4; }
.journal-meta         { padding: 20px 0; }
.journal-date         { font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--clay); margin-bottom: 8px; }
.journal-title        { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; color: var(--bark); line-height: 1.3; }

/* ══════════════════════════════════════════════
   PARTNERSHIPS
══════════════════════════════════════════════ */
#partnerships         { padding: 60px 6%; background: var(--warm-white); border-top: 1px solid rgba(168,137,106,0.15); border-bottom: 1px solid rgba(168,137,106,0.15); }
.partnerships-inner   { max-width: 1180px; margin: 0 auto; text-align: center; }
.partnerships-inner .eyebrow { margin-bottom: 16px; }
.partnerships-inner p { color: var(--earth); font-size: 0.88rem; margin-bottom: 36px; }
.partner-logos        { display: flex; justify-content: center; align-items: center; gap: 48px; flex-wrap: wrap; }
.partner-logo         { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-style: italic; color: var(--stone); transition: color 0.3s; }
.partner-logo:hover   { color: var(--clay); }
.partner-sep          { color: var(--stone); opacity: 0.4; }

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
footer                { background: var(--ink); padding: 80px 6% 40px; color: rgba(245,240,232,0.5); }
.footer-grid          { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 50px; margin-bottom: 60px; }
.footer-brand h3      { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 300; color: var(--cream); margin-bottom: 16px; }
.footer-brand p       { font-size: 0.85rem; line-height: 1.7; max-width: 280px; }
.footer-social        { display: flex; gap: 16px; margin-top: 24px; }
.footer-social a      { width: 36px; height: 36px; border: 1px solid rgba(245,240,232,0.15); display: flex; align-items: center; justify-content: center; color: rgba(245,240,232,0.5); font-size: 0.75rem; text-decoration: none; transition: all 0.3s; }
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-col h4        { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--stone); margin-bottom: 20px; }
.footer-col ul        { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a      { color: rgba(245,240,232,0.45); font-size: 0.85rem; text-decoration: none; transition: color 0.3s; }
.footer-col ul a:hover { color: var(--stone); }
.footer-bottom        { max-width: 1180px; margin: 0 auto; padding-top: 28px; border-top: 1px solid rgba(245,240,232,0.08); display: flex; justify-content: space-between; align-items: center; font-size: 0.75rem; flex-wrap: wrap; gap: 12px; }
.footer-bottom a      { color: rgba(245,240,232,0.35); text-decoration: none; }

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 1100px) { .gallery-masonry { columns: 3; } }

@media (max-width: 900px) {
  .intro-inner                { grid-template-columns: 1fr; }
  .intro-item                 { border-right: none; border-bottom: 1px solid rgba(245,240,232,0.15); padding: 24px 0; }
  .philosophy-grid,
  .gastro-grid,
  .guesthouse-inner,
  .about-grid,
  .transfers-inner            { grid-template-columns: 1fr; gap: 40px; }
  .philosophy-img::after      { display: none; }
  .exp-grid                   { grid-template-columns: 1fr; }
  .how-steps                  { grid-template-columns: 1fr 1fr; }
  .test-grid                  { grid-template-columns: 1fr; }
  .footer-grid                { grid-template-columns: 1fr 1fr; }
  .journal-grid               { grid-template-columns: 1fr; }
  .guesthouse-visual          { display: none; }
  .about-images img:nth-child(2) { margin-top: 0; }
  .form-row                   { grid-template-columns: 1fr; }
  .sust-pillars               { gap: 28px; }
  .nav-links                  { display: none; }
  .gallery-masonry            { columns: 2; }
  .gallery-intro-inner        { flex-direction: column; gap: 16px; }
}

@media (max-width: 440px) {
  .gallery-masonry            { columns: 1; }
  .how-steps                  { grid-template-columns: 1fr; }
}
