/* ============================================================
   GUIDE FEVZI — CAPPADOCIA EXPERT
   Premium Personal Brand Stylesheet
   ============================================================ */

/* ── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Cappadocia-inspired palette */
  --clay:        #B5651D;
  --clay-dark:   #8B4513;
  --clay-light:  #D4895A;
  --sand:        #F5ECD7;
  --sand-dark:   #E8D5B0;
  --lava:        #3D2B1F;
  --sky:         #7BB8D4;
  --sky-deep:    #3A6E8A;
  --stone:       #6B5E52;
  --stone-light: #9E8E83;
  --white:       #FDFAF6;
  --black:       #1A1210;

  /* Typography */
  --font-heading: 'Playfair Display', 'Georgia', serif;
  --font-body:    'Inter', 'Segoe UI', system-ui, sans-serif;
  --font-accent:  'Cormorant Garamond', 'Georgia', serif;

  /* Spacing */
  --section-pad: 96px 0;
  --container:   1180px;

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--lava);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── TYPOGRAPHY ───────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--lava);
}

h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

p { margin-bottom: 1.1em; color: var(--stone); }
p:last-child { margin-bottom: 0; }

a { color: var(--clay); text-decoration: none; transition: color 0.2s var(--ease); }
a:hover { color: var(--clay-dark); }

/* ── UTILITIES ────────────────────────────────────────────── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clay);
  background: rgba(181, 101, 29, 0.08);
  padding: 5px 14px;
  border-radius: 2px;
  margin-bottom: 18px;
}
.section-divider {
  width: 52px; height: 3px;
  background: var(--clay);
  margin: 20px 0 32px;
}
.section-divider.center { margin: 20px auto 32px; }

.text-center { text-align: center; }
.text-clay   { color: var(--clay); }
.bg-sand     { background: var(--sand); }
.bg-lava     { background: var(--lava); }

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 3px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.25s var(--ease);
  text-decoration: none;
}
.btn-primary {
  background: var(--clay);
  color: var(--white);
  border-color: var(--clay);
}
.btn-primary:hover {
  background: var(--clay-dark);
  border-color: var(--clay-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(181,101,29,0.3);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  color: var(--white);
}
.btn-outline-dark {
  background: transparent;
  color: var(--clay);
  border-color: var(--clay);
}
.btn-outline-dark:hover {
  background: var(--clay);
  color: var(--white);
}

/* ── NAVIGATION ───────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: all 0.35s var(--ease);
}
#navbar.scrolled {
  background: rgba(26, 18, 16, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 30px rgba(0,0,0,0.3);
  padding: 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  max-width: var(--container);
  margin: 0 auto;
  transition: padding 0.35s var(--ease);
}
#navbar.scrolled .nav-inner { padding: 14px 24px; }

.nav-logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}
.nav-logo-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.nav-logo-sub {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clay-light);
  margin-top: 3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--clay-light);
  transition: width 0.25s var(--ease);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.nav-cta { margin-left: 12px; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ── HERO ─────────────────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--lava);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(26,18,16,0.55) 0%,
      rgba(26,18,16,0.38) 40%,
      rgba(26,18,16,0.72) 100%
    ),
    url('hero-bg.jpg')
      center/cover no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(61,43,31,0.6) 0%, transparent 60%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: 120px 24px 80px;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}
.hero-badge {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clay-light);
  border: 1px solid rgba(212, 137, 90, 0.4);
  padding: 5px 14px;
  border-radius: 2px;
}
.hero-line { width: 40px; height: 1px; background: var(--clay-light); }
.hero-title { color: var(--white); margin-bottom: 24px; }
.hero-title span { color: var(--clay-light); }
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(245, 236, 215, 0.88);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.75;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-stats {
  position: absolute;
  bottom: 48px;
  right: 0;
  left: 0;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
  padding: 0 48px;
}
.hero-stats-inner {
  display: flex;
  gap: 0;
  background: rgba(26,18,16,0.75);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(181,101,29,0.25);
  border-radius: 4px;
  overflow: hidden;
}
.stat-item {
  padding: 20px 36px;
  text-align: center;
  border-right: 1px solid rgba(181,101,29,0.2);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--clay-light);
  line-height: 1;
}
.stat-label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245,236,215,0.65);
  margin-top: 6px;
}

.scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.scroll-arrow {
  width: 20px; height: 20px;
  border-right: 1px solid rgba(255,255,255,0.35);
  border-bottom: 1px solid rgba(255,255,255,0.35);
  transform: rotate(45deg);
  animation: scrollBounce 2s infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50%       { transform: rotate(45deg) translateY(5px); }
}

/* ── ABOUT ────────────────────────────────────────────────── */
#about { padding: var(--section-pad); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image-wrap {
  position: relative;
}
.about-image-frame {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--sand-dark);
}
.about-image-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.about-image-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--sand-dark), var(--sand));
  color: var(--stone-light);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  gap: 12px;
}
.about-image-placeholder svg { opacity: 0.35; }
.about-accent-box {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--clay);
  color: var(--white);
  padding: 24px 28px;
  border-radius: 3px;
  text-align: center;
  box-shadow: 0 12px 40px rgba(181,101,29,0.35);
}
.about-accent-box strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.2rem;
  line-height: 1;
}
.about-accent-box span {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.88;
}
.about-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.credential-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--sand);
  border: 1px solid var(--sand-dark);
  padding: 7px 14px;
  border-radius: 3px;
  font-size: 0.78rem;
  color: var(--stone);
  font-weight: 500;
}
.credential-badge svg { color: var(--clay); flex-shrink: 0; }

/* ── WHY LOCAL EXPERT ─────────────────────────────────────── */
#why { padding: var(--section-pad); background: var(--sand); }
.why-header { max-width: 640px; margin: 0 auto 64px; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.why-card {
  background: var(--white);
  padding: 36px 30px;
  border-radius: 4px;
  border-bottom: 3px solid transparent;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--clay);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.why-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,0.1); }
.why-card:hover::before { transform: scaleX(1); }
.why-icon {
  width: 52px; height: 52px;
  background: rgba(181,101,29,0.1);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--clay);
  font-size: 1.4rem;
}
.why-card h3 { font-size: 1.15rem; margin-bottom: 12px; }
.why-card p  { font-size: 0.9rem; color: var(--stone); line-height: 1.7; margin: 0; }

/* ── TOURS ────────────────────────────────────────────────── */
#tours { padding: var(--section-pad); }
.tours-header { max-width: 640px; margin: 0 auto 64px; }
.tours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.tour-card {
  border-radius: 4px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--sand-dark);
  transition: all 0.3s var(--ease);
}
.tour-card:hover { transform: translateY(-6px); box-shadow: 0 20px 56px rgba(0,0,0,0.12); }
.tour-card-img {
  position: relative;
  height: 220px;
  background: linear-gradient(135deg, var(--clay-dark), var(--clay));
  overflow: hidden;
}
.tour-card-img-bg {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.7;
  transition: transform 0.5s var(--ease);
}
.tour-card:hover .tour-card-img-bg { transform: scale(1.05); }
.tour-tag {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--clay);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
}
.tour-duration {
  position: absolute;
  bottom: 16px; right: 16px;
  background: rgba(26,18,16,0.8);
  color: var(--sand);
  font-size: 0.72rem;
  padding: 4px 10px;
  border-radius: 2px;
}
.tour-card-body { padding: 28px 24px; }
.tour-card-body h3 { font-size: 1.1rem; margin-bottom: 10px; }
.tour-card-body p  { font-size: 0.86rem; color: var(--stone); margin-bottom: 18px; line-height: 1.65; }
.tour-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 18px;
  border-top: 1px solid var(--sand-dark);
}
.tour-meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  color: var(--stone-light);
}
.tour-meta-item svg { color: var(--clay); }

.tours-cta {
  text-align: center;
  margin-top: 52px;
  padding-top: 52px;
  border-top: 1px solid var(--sand-dark);
}
.tours-cta p {
  font-size: 1rem;
  color: var(--stone);
  margin-bottom: 20px;
}

/* ── INSIGHTS ─────────────────────────────────────────────── */
#insights { padding: var(--section-pad); background: var(--lava); }
.insights-header { max-width: 640px; margin: 0 auto 64px; }
.insights-header h2 { color: var(--white); }
.insights-header p  { color: rgba(245,236,215,0.72); }
.insights-header .section-tag { color: var(--clay-light); background: rgba(212,137,90,0.12); }

.insights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: rgba(255,255,255,0.06);
  border-radius: 4px;
  overflow: hidden;
}
.insight-panel {
  background: rgba(26,18,16,0.5);
  padding: 40px 36px;
  transition: background 0.3s;
  border: 1px solid rgba(255,255,255,0.05);
}
.insight-panel:hover { background: rgba(181,101,29,0.12); }
.insight-panel h3 {
  color: var(--sand);
  font-size: 1.2rem;
  margin-bottom: 14px;
}
.insight-panel p { color: rgba(245,236,215,0.68); font-size: 0.9rem; }
.insight-num {
  font-family: var(--font-accent);
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(181,101,29,0.2);
  line-height: 1;
  margin-bottom: 12px;
}

/* ── ARTICLES / BLOG ──────────────────────────────────────── */
#articles { padding: var(--section-pad); background: var(--sand); }
.articles-header { max-width: 640px; margin: 0 auto 64px; }
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.article-card {
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--sand-dark);
  transition: all 0.3s var(--ease);
}
.article-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,0.1); }
.article-card-img {
  height: 180px;
  background: linear-gradient(135deg, var(--clay), var(--clay-dark));
  position: relative;
  overflow: hidden;
}
.article-cat {
  position: absolute;
  bottom: 14px; left: 14px;
  background: var(--white);
  color: var(--clay);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
}
.article-card-body { padding: 22px 20px; }
.article-card-body h4 { font-size: 1rem; margin-bottom: 8px; line-height: 1.4; }
.article-card-body p { font-size: 0.82rem; color: var(--stone); margin-bottom: 14px; }
.article-meta { display: flex; gap: 12px; font-size: 0.72rem; color: var(--stone-light); }
.article-meta span { display: flex; align-items: center; gap: 4px; }

.articles-footer { text-align: center; margin-top: 48px; }
.articles-footer p { color: var(--stone); font-size: 0.9rem; font-style: italic; margin-bottom: 16px; }

/* ── MEDIA / VISUAL ───────────────────────────────────────── */
#media { padding: var(--section-pad); }
.media-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 72px;
  align-items: center;
}
.media-text .section-divider { margin: 20px 0 32px; }
.media-philosophy {
  background: var(--sand);
  border-left: 3px solid var(--clay);
  padding: 24px 28px;
  border-radius: 0 4px 4px 0;
  margin: 28px 0;
  font-family: var(--font-accent);
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--lava);
  font-style: italic;
}
.media-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
  height: 440px;
}
.gallery-cell {
  border-radius: 3px;
  background: linear-gradient(135deg, var(--sand-dark), var(--sand));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--stone-light);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  padding: 12px;
  overflow: hidden;
  position: relative;
}
.gallery-cell:first-child { grid-row: span 2; }
.gallery-cell img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; opacity: 0.7; }
.gallery-cell-label { position: relative; z-index: 1; }

/* ── TESTIMONIALS ─────────────────────────────────────────── */
#testimonials { padding: var(--section-pad); background: var(--sand); }
.testimonials-header { max-width: 560px; margin: 0 auto 64px; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: var(--white);
  padding: 32px 28px;
  border-radius: 4px;
  border: 1px solid var(--sand-dark);
  position: relative;
  transition: box-shadow 0.3s;
}
.testimonial-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.09); }
.testimonial-quote {
  font-family: var(--font-accent);
  font-size: 3.5rem;
  color: rgba(181,101,29,0.18);
  line-height: 0.6;
  margin-bottom: 14px;
  display: block;
}
.testimonial-text {
  font-family: var(--font-accent);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--stone);
  font-style: italic;
  margin-bottom: 22px;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--sand-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--clay);
  flex-shrink: 0;
}
.testimonial-name { font-size: 0.85rem; font-weight: 600; color: var(--lava); }
.testimonial-origin { font-size: 0.72rem; color: var(--stone-light); }
.testimonial-stars { color: var(--clay); font-size: 0.8rem; margin-bottom: 2px; letter-spacing: 2px; }

/* ── FAQ ──────────────────────────────────────────────────── */
#faq { padding: var(--section-pad); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 60px; }
.faq-item {
  padding: 24px 0;
  border-bottom: 1px solid var(--sand-dark);
}
.faq-item:last-child { border-bottom: none; }
.faq-question {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--lava);
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}
.faq-question::before {
  content: 'Q';
  flex-shrink: 0;
  width: 24px; height: 24px;
  background: var(--clay);
  color: var(--white);
  border-radius: 2px;
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.faq-answer { font-size: 0.88rem; color: var(--stone); line-height: 1.75; padding-left: 34px; }

/* ── CONTACT ──────────────────────────────────────────────── */
#contact { padding: var(--section-pad); background: var(--lava); }
.contact-header { max-width: 560px; margin: 0 auto 64px; }
.contact-header h2 { color: var(--white); }
.contact-header p  { color: rgba(245,236,215,0.72); }
.contact-header .section-tag { color: var(--clay-light); background: rgba(212,137,90,0.12); }
.contact-header .section-divider { background: var(--clay-light); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}

.contact-info-items { display: flex; flex-direction: column; gap: 24px; margin-bottom: 36px; }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  border-radius: 3px;
  background: rgba(181,101,29,0.15);
  border: 1px solid rgba(181,101,29,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clay-light);
  font-size: 1.1rem;
}
.contact-info-text strong { display: block; font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--clay-light); margin-bottom: 3px; }
.contact-info-text span  { color: rgba(245,236,215,0.8); font-size: 0.92rem; }

.contact-languages {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  padding: 20px 22px;
}
.contact-languages strong {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clay-light);
  margin-bottom: 12px;
}
.language-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.lang-tag {
  background: rgba(181,101,29,0.15);
  border: 1px solid rgba(181,101,29,0.3);
  color: var(--sand);
  font-size: 0.78rem;
  padding: 5px 12px;
  border-radius: 2px;
}

.contact-form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  padding: 40px 36px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.form-group label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,236,215,0.6);
  font-weight: 500;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 3px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.25); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--clay-light); }
.form-group select { cursor: pointer; appearance: none; }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit { width: 100%; padding: 15px; font-size: 1rem; margin-top: 8px; }

/* ── FOOTER ───────────────────────────────────────────────── */
footer {
  background: #110D0B;
  padding: 52px 0 28px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 28px;
}
.footer-brand-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 12px;
}
.footer-brand-tagline {
  font-size: 0.8rem;
  color: rgba(245,236,215,0.5);
  line-height: 1.7;
  margin-bottom: 22px;
  max-width: 280px;
}
.footer-social { display: flex; gap: 12px; }
.social-link {
  width: 36px; height: 36px;
  border-radius: 3px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
  transition: all 0.2s;
  text-decoration: none;
}
.social-link:hover { background: var(--clay); border-color: var(--clay); color: var(--white); }
.footer-col-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--clay-light);
  margin-bottom: 18px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: rgba(245,236,215,0.55); font-size: 0.85rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--clay-light); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 0.75rem; color: rgba(255,255,255,0.3); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 0.75rem; color: rgba(255,255,255,0.3); transition: color 0.2s; }
.footer-legal a:hover { color: rgba(255,255,255,0.6); }

/* ── SCROLL ANIMATIONS ────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── MOBILE NAV ───────────────────────────────────────────── */
.nav-mobile {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(26,18,16,0.98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-mobile a:hover { color: var(--clay-light); }
.nav-mobile-close {
  position: absolute;
  top: 24px; right: 24px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0.7;
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .why-grid,
  .tours-grid,
  .articles-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid,
  .media-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-image-wrap { max-width: 460px; margin: 0 auto; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .hero-stats { display: none; }
  .insights-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --section-pad: 64px 0; }
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.7rem; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .why-grid,
  .tours-grid,
  .articles-grid,
  .testimonials-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .media-gallery { height: 300px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .contact-form { padding: 28px 20px; }
  h1 { font-size: 1.9rem; }
}
