/* =============================================
   OlympusTrails.com — Main Stylesheet
   Premium Family Adventure Tours to Mount Olympus, Turkey
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,600&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300&display=swap');

/* ---- CSS Variables ---- */
:root {
  --navy:        #0d1b2a;
  --navy-mid:    #162235;
  --navy-light:  #1e3148;
  --gold:        #c9a84c;
  --gold-light:  #e8c96a;
  --gold-pale:   #f5e8c0;
  --white:       #ffffff;
  --off-white:   #f8f5ef;
  --gray-100:    #f1ede6;
  --gray-300:    #d4cfc5;
  --gray-500:    #9e9a92;
  --gray-700:    #5a5750;
  --text-dark:   #1a1814;
  --text-mid:    #3e3b35;
  --green-sage:  #4a6741;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'DM Sans', system-ui, sans-serif;

  --radius-sm:  6px;
  --radius-md:  14px;
  --radius-lg:  24px;
  --radius-xl:  40px;

  --shadow-card: 0 8px 40px rgba(13,27,42,0.12);
  --shadow-hover: 0 20px 60px rgba(13,27,42,0.22);
  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- Typography ---- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.2;
  color: var(--navy);
}
h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.9rem); }
h4 { font-size: 1.2rem; }
p { color: var(--text-mid); }

/* ---- Utility ---- */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--navy);
  margin-bottom: 20px;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-700);
  max-width: 620px;
  line-height: 1.75;
}
.text-gold { color: var(--gold); }
.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }
.text-center .section-label { justify-content: center; }
.text-center .section-label::before { display: none; }
.text-center .section-label::after {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 100px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 4px 20px rgba(201,168,76,0.35);
}
.btn-primary:hover {
  background: var(--gold-light);
  box-shadow: 0 8px 32px rgba(201,168,76,0.5);
  transform: translateY(-2px);
}
.btn-outline {
  border: 2px solid var(--white);
  color: var(--white);
  background: transparent;
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
}
.btn-outline-gold {
  border: 2px solid var(--gold);
  color: var(--gold);
  background: transparent;
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--navy);
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ========== HEADER / NAV ========== */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  transition: var(--transition);
}
#site-header.scrolled {
  background: rgba(13,27,42,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 30px rgba(0,0,0,0.25);
}
#site-header.transparent { background: transparent; }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  padding: 0 40px;
  max-width: 1440px;
  margin: 0 auto;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--gold);
}
.logo-icon img { width: 100%; height: 100%; object-fit: cover; }
.logo-text {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.logo-text span { color: var(--gold); }

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}
.main-nav a {
  padding: 8px 16px;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.82);
  border-radius: 100px;
  transition: var(--transition);
  letter-spacing: 0.02em;
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}
.header-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}
.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-light);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}
.header-phone svg { width: 16px; height: 16px; }

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: 8px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ========== HERO SECTION ========== */
#hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(13,27,42,0.82) 0%,
    rgba(13,27,42,0.55) 55%,
    rgba(13,27,42,0.2) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  padding: 0 40px;
  margin-left: max(40px, calc((100vw - 1440px)/2 + 40px));
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.18);
  border: 1px solid rgba(201,168,76,0.45);
  color: var(--gold-light);
  padding: 6px 18px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}
.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}
.hero-content h1 {
  color: var(--white);
  font-size: clamp(2.6rem, 5.5vw, 4.6rem);
  line-height: 1.1;
  margin-bottom: 24px;
  font-weight: 700;
}
.hero-content h1 em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-description {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 540px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  animation: scrollLine 2s infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* Hero stats bar */
.hero-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  background: rgba(13,27,42,0.92);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(201,168,76,0.2);
}
.hero-stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}
.hero-stat {
  padding: 22px 0;
  border-right: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}
.hero-stat:last-child { border-right: none; }
.hero-stat-number {
  font-family: var(--font-serif);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat-label {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ========== WHY OLYMPUS ========== */
#why-olympus {
  padding: 100px 0;
  background: var(--off-white);
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-image-stack {
  position: relative;
  height: 520px;
}
.why-img-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 78%;
  height: 88%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.why-img-main img { width: 100%; height: 100%; object-fit: cover; }
.why-img-accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 52%;
  height: 52%;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 6px solid var(--white);
  box-shadow: var(--shadow-hover);
}
.why-img-accent img { width: 100%; height: 100%; object-fit: cover; }
.why-badge {
  position: absolute;
  top: 40px;
  right: 0;
  background: var(--gold);
  color: var(--navy);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(201,168,76,0.4);
  z-index: 2;
}
.why-badge-number {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
  color: var(--navy);
}
.why-badge-text {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy-mid);
  margin-top: 4px;
}
.why-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}
.why-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
}
.why-feature:hover {
  border-color: var(--gold);
  box-shadow: 0 6px 24px rgba(201,168,76,0.12);
  transform: translateY(-2px);
}
.why-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--navy);
}
.why-feature-icon svg { width: 22px; height: 22px; }
.why-feature-text h4 {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 2px;
}
.why-feature-text p {
  font-size: 0.8rem;
  color: var(--gray-700);
  line-height: 1.5;
}

/* ========== TOURS SECTION ========== */
#tours-preview {
  padding: 100px 0;
  background: var(--white);
}
.tours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.tour-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.tour-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(201,168,76,0.3);
}
.tour-card-image {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.tour-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.tour-card:hover .tour-card-image img { transform: scale(1.06); }
.tour-difficulty {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.difficulty-easy { background: rgba(74,103,65,0.92); color: #c6e0b8; }
.difficulty-moderate { background: rgba(201,168,76,0.92); color: var(--navy); }
.difficulty-challenging { background: rgba(180,50,50,0.85); color: #ffd0d0; }
.tour-duration {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(13,27,42,0.85);
  color: var(--white);
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  backdrop-filter: blur(6px);
}
.tour-card-body {
  padding: 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.tour-card-body h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}
.tour-card-body p {
  font-size: 0.88rem;
  color: var(--gray-700);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 20px;
}
.tour-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}
.tour-tag {
  background: var(--gray-100);
  color: var(--text-mid);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 500;
}
.tour-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid var(--gray-100);
}
.tour-price {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.tour-price-from {
  font-size: 0.72rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.tour-price-amount {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.tour-price-per {
  font-size: 0.72rem;
  color: var(--gray-500);
}
.tour-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  border: 1.5px solid var(--gold);
  padding: 9px 20px;
  border-radius: 100px;
  transition: var(--transition);
}
.tour-card-link:hover {
  background: var(--gold);
  color: var(--navy);
}
.tour-card-link svg { width: 16px; height: 16px; }
.tours-cta {
  text-align: center;
  margin-top: 52px;
}

/* ========== EXPERIENCE / FULL-WIDTH BANNER ========== */
#experience-banner {
  position: relative;
  padding: 130px 0;
  overflow: hidden;
}
.experience-bg {
  position: absolute;
  inset: 0;
}
.experience-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.experience-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(13,27,42,0.9) 40%, rgba(13,27,42,0.5) 100%);
}
.experience-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
}
.experience-content h2 {
  color: var(--white);
  margin-bottom: 24px;
}
.experience-content p {
  color: rgba(255,255,255,0.78);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 36px;
}
.experience-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 40px;
}
.experience-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
}
.experience-list li::before {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%230d1b2a'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
}

/* ========== GALLERY TEASER ========== */
#gallery-teaser {
  padding: 100px 0;
  background: var(--navy);
  overflow: hidden;
}
#gallery-teaser .section-title { color: var(--white); }
#gallery-teaser .section-subtitle { color: rgba(255,255,255,0.6); }
.gallery-grid-masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 16px;
  margin-top: 52px;
}
.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,27,42,0.75) 0%, transparent 55%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay span {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
}
.gallery-item:nth-child(1) { grid-column: span 2; height: 280px; }
.gallery-item:nth-child(2) { height: 280px; }
.gallery-item:nth-child(3) { height: 280px; }
.gallery-item:nth-child(4) { height: 220px; }
.gallery-item:nth-child(5) { grid-column: span 2; height: 220px; }
.gallery-item:nth-child(6) { height: 220px; }
.gallery-cta { text-align: center; margin-top: 44px; }

/* ========== TESTIMONIALS ========== */
#testimonials {
  padding: 100px 0;
  background: var(--off-white);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  position: relative;
}
.testimonial-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}
.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 18px;
}
.testimonial-stars svg {
  width: 18px;
  height: 18px;
  fill: var(--gold);
  color: var(--gold);
}
.testimonial-text {
  font-family: var(--font-serif);
  font-size: 1.08rem;
  font-style: italic;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 28px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  flex-shrink: 0;
}
.testimonial-info h4 {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 2px;
}
.testimonial-info p {
  font-size: 0.78rem;
  color: var(--gray-500);
}

/* ========== CTA SECTION ========== */
#cta-section {
  padding: 100px 0;
  background: var(--navy);
  text-align: center;
  position: relative;
  overflow: hidden;
}
#cta-section::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 65%);
  pointer-events: none;
}
#cta-section h2 { color: var(--white); margin-bottom: 20px; }
#cta-section p { color: rgba(255,255,255,0.7); font-size: 1.05rem; margin-bottom: 44px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.cta-phone-card {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 20px 32px;
  backdrop-filter: blur(8px);
}
.cta-phone-icon {
  width: 46px;
  height: 46px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-phone-icon svg { width: 22px; height: 22px; color: var(--navy); }
.cta-phone-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 3px;
}
.cta-phone-number {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
}

/* ========== FOOTER ========== */
#site-footer {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 72px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 56px;
}
.footer-brand .logo-text {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 16px;
}
.footer-brand p {
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 24px;
}
.footer-socials {
  display: flex;
  gap: 10px;
}
.footer-social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.footer-social-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.1);
}
.footer-social-btn svg { width: 16px; height: 16px; }
.footer-col h5 {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer-col ul li a:hover { color: var(--white); }
.footer-col ul li a::before {
  content: '→';
  font-size: 0.75rem;
  color: var(--gold);
  opacity: 0;
  transform: translateX(-4px);
  transition: var(--transition);
}
.footer-col ul li a:hover::before { opacity: 1; transform: translateX(0); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  color: rgba(255,255,255,0.55);
  font-size: 0.87rem;
  line-height: 1.5;
}
.footer-contact-item svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 3px;
}
.footer-contact-item a { color: rgba(255,255,255,0.55); transition: var(--transition); }
.footer-contact-item a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p {
  color: rgba(255,255,255,0.35);
  font-size: 0.8rem;
}
.footer-legal {
  display: flex;
  gap: 24px;
}
.footer-legal a {
  color: rgba(255,255,255,0.35);
  font-size: 0.8rem;
  transition: var(--transition);
}
.footer-legal a:hover { color: var(--gold); }

/* ========== INNER PAGE HERO ========== */
.page-hero {
  position: relative;
  height: 440px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
}
.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}
.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,27,42,0.88) 0%, rgba(13,27,42,0.4) 60%, rgba(13,27,42,0.2) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 0 40px 52px;
  max-width: 1440px;
  margin: 0 auto;
}
.page-hero-content .section-label { margin-bottom: 12px; }
.page-hero-content h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}
.breadcrumb a { color: rgba(255,255,255,0.5); transition: var(--transition); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb svg { width: 14px; height: 14px; }

/* ========== TOURS PAGE ========== */
.tours-page-section {
  padding: 80px 0;
  background: var(--off-white);
}
.tours-full-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.tour-card-full {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  display: grid;
  grid-template-columns: minmax(260px, 340px) 1fr;
  min-width: 0;
}
.tour-card-full:hover {
  box-shadow: var(--shadow-hover);
  border-color: rgba(201,168,76,0.25);
  transform: translateY(-4px);
}
.tour-card-full-image {
  position: relative;
  overflow: hidden;
  min-height: 300px;
}
.tour-card-full-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.tour-card-full:hover .tour-card-full-image img { transform: scale(1.05); }
.tour-card-full-body {
  padding: 36px;
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  overflow-wrap: break-word;
  word-wrap: break-word;
}
.tour-card-full-body h3 { margin-bottom: 12px; word-break: break-word; }
.tour-card-full-body p {
  font-size: 0.92rem;
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 22px;
  word-break: break-word;
  flex: 1;
}
.tour-meta-row {
  display: flex;
  gap: 12px 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.tour-meta-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.83rem;
  color: var(--gray-700);
}
.tour-meta-item svg { width: 15px; height: 15px; color: var(--gold); }
.tour-includes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 26px;
}
.include-tag {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(74,103,65,0.08);
  color: var(--green-sage);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.76rem;
  font-weight: 500;
  border: 1px solid rgba(74,103,65,0.15);
}
.include-tag svg { width: 12px; height: 12px; }
.tour-footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--gray-100);
  padding-top: 22px;
  flex-wrap: wrap;
  gap: 16px;
}
.price-block .from-text {
  font-size: 0.72rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.price-block .price-val {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.price-block .per-text {
  font-size: 0.72rem;
  color: var(--gray-500);
}
.booking-note {
  background: var(--gray-100);
  border-radius: var(--radius-md);
  padding: 28px 32px;
  margin-top: 48px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.booking-note-icon {
  width: 52px;
  height: 52px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--navy);
}
.booking-note-icon svg { width: 26px; height: 26px; }
.booking-note-text h4 { margin-bottom: 6px; color: var(--navy); font-family: var(--font-sans); }
.booking-note-text p { font-size: 0.88rem; color: var(--gray-700); }
.booking-note-text a { color: var(--gold); font-weight: 600; }

/* ========== ABOUT PAGE ========== */
.about-intro {
  padding: 90px 0;
  background: var(--white);
}
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-team-section {
  padding: 90px 0;
  background: var(--off-white);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 52px;
}
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  text-align: center;
  transition: var(--transition);
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.team-card-image {
  height: 220px;
  overflow: hidden;
}
.team-card-image img { width: 100%; height: 100%; object-fit: cover; }
.team-card-body { padding: 24px; }
.team-card-body h3 { font-size: 1.15rem; margin-bottom: 4px; }
.team-card-role {
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.team-card-body p { font-size: 0.85rem; color: var(--gray-700); }

.values-section {
  padding: 90px 0;
  background: var(--navy);
}
.values-section .section-title { color: var(--white); }
.values-section .section-subtitle { color: rgba(255,255,255,0.6); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.value-card {
  padding: 36px 28px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: var(--transition);
}
.value-card:hover {
  background: rgba(201,168,76,0.08);
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-4px);
}
.value-card-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(201,168,76,0.25), rgba(201,168,76,0.1));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.value-card-icon svg { width: 28px; height: 28px; }
.value-card h4 { color: var(--white); font-family: var(--font-sans); font-size: 1rem; margin-bottom: 10px; }
.value-card p { color: rgba(255,255,255,0.55); font-size: 0.85rem; line-height: 1.65; }

/* ========== GALLERY PAGE ========== */
.gallery-page-section {
  padding: 80px 0;
  background: var(--off-white);
}
.gallery-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.gallery-full-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  aspect-ratio: 4/3;
}
.gallery-full-item.tall { aspect-ratio: 3/4; }
.gallery-full-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-full-item:hover img { transform: scale(1.05); }
.gallery-full-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,27,42,0.8) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 22px;
}
.gallery-full-item:hover .gallery-full-overlay { opacity: 1; }
.gallery-full-overlay span {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
}
/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: var(--radius-md);
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: 24px;
  right: 28px;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  opacity: 0.7;
  transition: var(--transition);
  background: none;
  border: none;
  font-family: sans-serif;
}
.lightbox-close:hover { opacity: 1; color: var(--gold); }
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  font-size: 1.2rem;
  font-family: sans-serif;
}
.lightbox-nav:hover { background: rgba(201,168,76,0.3); border-color: var(--gold); }
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

/* ========== CONTACTS PAGE ========== */
.contacts-section {
  padding: 80px 0;
  background: var(--off-white);
}
.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
}
.contacts-info-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  color: var(--white);
}
.contacts-info-card h3 {
  color: var(--white);
  margin-bottom: 32px;
  font-size: 1.6rem;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.contact-info-item:last-of-type { border-bottom: none; margin-bottom: 0; }
.contact-info-icon {
  width: 44px;
  height: 44px;
  background: rgba(201,168,76,0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.25);
}
.contact-info-icon svg { width: 20px; height: 20px; }
.contact-info-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.contact-info-value {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 500;
}
.contact-info-value a { color: var(--gold-light); transition: var(--transition); }
.contact-info-value a:hover { color: var(--gold); }
.contacts-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-card);
}
.contacts-form-card h3 { margin-bottom: 8px; }
.contacts-form-card > p { margin-bottom: 32px; color: var(--gray-700); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 22px; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: 0.03em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 18px;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: var(--text-dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-notice {
  font-size: 0.8rem;
  color: var(--gray-500);
  margin-top: 16px;
  line-height: 1.6;
}
.form-success {
  display: none;
  background: rgba(74,103,65,0.08);
  border: 1px solid rgba(74,103,65,0.25);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin-top: 20px;
  color: var(--green-sage);
  font-size: 0.9rem;
  font-weight: 500;
}

/* ========== LEGAL PAGES ========== */
.legal-section {
  padding: 80px 0 100px;
  background: var(--white);
}
.legal-content {
  max-width: 860px;
  margin: 0 auto;
}
.legal-content h2 {
  font-size: 1.7rem;
  margin-bottom: 16px;
  margin-top: 44px;
  color: var(--navy);
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p {
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 0.95rem;
}
.legal-content ul {
  list-style: disc;
  padding-left: 28px;
  margin-bottom: 20px;
}
.legal-content ul li {
  color: var(--gray-700);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 8px;
}
.legal-updated {
  display: inline-block;
  background: var(--gray-100);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.78rem;
  color: var(--gray-700);
  margin-bottom: 40px;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 8888;
  background: var(--navy);
  border-top: 1px solid rgba(201,168,76,0.3);
  padding: 20px 40px;
  display: flex;
  align-items: center;
  gap: 24px;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner p {
  color: rgba(255,255,255,0.72);
  font-size: 0.85rem;
  flex: 1;
  line-height: 1.55;
}
.cookie-banner a { color: var(--gold-light); text-decoration: underline; }
.cookie-actions { display: flex; gap: 12px; flex-shrink: 0; }
.cookie-accept {
  background: var(--gold);
  color: var(--navy);
  padding: 10px 24px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
}
.cookie-accept:hover { background: var(--gold-light); }
.cookie-decline {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.6);
  padding: 10px 18px;
  border-radius: 100px;
  font-size: 0.85rem;
  transition: var(--transition);
}
.cookie-decline:hover { border-color: rgba(255,255,255,0.4); color: var(--white); }

/* Back to top */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 46px;
  height: 46px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(201,168,76,0.4);
  z-index: 999;
  opacity: 0;
  transform: translateY(16px);
  transition: var(--transition);
  pointer-events: none;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-to-top:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}
.back-to-top svg { width: 20px; height: 20px; }

/* ========== RESPONSIVE ========== */
@media (max-width: 1100px) {
  .tours-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .tours-full-grid { grid-template-columns: 1fr; }
  .tour-card-full { grid-template-columns: minmax(240px, 38%) 1fr; }
}
@media (max-width: 900px) {
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .why-image-stack { height: 380px; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats-inner { grid-template-columns: repeat(2, 1fr); }
  .hero-stat:nth-child(2) { border-right: none; }
  .hero-stat:nth-child(3) { border-top: 1px solid rgba(255,255,255,0.08); }
  .gallery-grid-masonry { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:nth-child(1) { grid-column: span 2; }
  .gallery-item:nth-child(5) { grid-column: span 2; }
  .about-intro-grid { grid-template-columns: 1fr; gap: 48px; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .contacts-grid { grid-template-columns: 1fr; }
  .gallery-full-grid { grid-template-columns: repeat(2, 1fr); }
  .tour-card-full { grid-template-columns: 1fr; }
  .tour-card-full-image { min-height: 220px; }
  .header-inner { padding: 0 24px; }
  .main-nav { display: none; }
  .menu-toggle { display: flex; }
  .hero-content { padding: 0 24px; margin-left: 0; }
}
@media (max-width: 640px) {
  .tours-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .gallery-full-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .contacts-form-card { padding: 28px 20px; }
  .hero-stats-inner { grid-template-columns: 1fr 1fr; padding: 0 20px; }
  .cookie-banner { flex-direction: column; padding: 20px 24px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { flex-wrap: wrap; justify-content: center; gap: 16px; }
  #experience-banner { padding: 80px 0; }
}

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 999;
  padding: 100px 40px 40px;
  flex-direction: column;
  gap: 8px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 14px 0;
  font-size: 1.3rem;
  font-family: var(--font-serif);
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav-phone {
  margin-top: 28px;
  padding: 20px 0 0;
  border-top: 1px solid rgba(201,168,76,0.3);
  color: var(--gold-light);
  font-size: 1.1rem;
  font-weight: 600;
}

/* Animate on scroll */
.anim-fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.anim-fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.anim-delay-1 { transition-delay: 0.1s; }
.anim-delay-2 { transition-delay: 0.2s; }
.anim-delay-3 { transition-delay: 0.3s; }
.anim-delay-4 { transition-delay: 0.4s; }
