/* ============================================================
   Yasir Tur — Hac, Umre & Kültür Turları
   Brand: warm gold + midnight navy + cream
   ============================================================ */

:root {
  --gold:        #C9A961;
  --gold-deep:   #A8893E;
  --gold-soft:   #E8D9B0;
  --midnight:    #0D1F3C;
  --midnight-2:  #1A2F54;
  --cream:       #F8F4EC;
  --cream-2:     #EFE8D8;
  --ink:         #1B1B1B;
  --ink-soft:    #4A4A4A;
  --line:        rgba(13, 31, 60, 0.12);
  --shadow-lg:   0 30px 60px -20px rgba(13, 31, 60, 0.25);
  --shadow-md:   0 12px 30px -10px rgba(13, 31, 60, 0.18);

  --font-serif:  "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --font-sans:   "Inter", "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-script: "Cormorant Garamond", serif;

  --max:         1240px;
  --gutter:      clamp(20px, 4vw, 56px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; }

/* ---------- Top Bar ---------- */
.topbar {
  background: var(--midnight);
  color: var(--cream-2);
  font-size: 13px;
  padding: 10px 0;
  letter-spacing: 0.02em;
}
.topbar__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar__contact { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar__contact a { display: inline-flex; align-items: center; gap: 8px; opacity: 0.9; transition: color .2s; }
.topbar__contact a:hover { color: var(--gold); }
.topbar__contact svg { width: 14px; height: 14px; }
.topbar__meta { opacity: 0.7; font-style: italic; }

/* ---------- Header / Nav ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 244, 236, 0.96);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 14px; }
.brand__mark {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--midnight);
  color: var(--gold);
  position: relative;
}
.brand__mark svg { width: 26px; height: 26px; }
.brand__mark::after {
  content: ""; position: absolute; inset: -4px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  opacity: 0.55;
}
.brand__text { line-height: 1.1; }
.brand__name {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 600;
  color: var(--midnight);
  letter-spacing: 0.04em;
}
.brand__tag {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-top: 2px;
}

.nav__menu {
  display: flex;
  gap: 30px;
  list-style: none;
  align-items: center;
}
.nav__menu a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--midnight);
  position: relative;
  padding: 6px 0;
  transition: color .2s;
}
.nav__menu a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.nav__menu a:hover { color: var(--gold-deep); }
.nav__menu a:hover::after { transform: scaleX(1); }
.nav__menu a.active { color: var(--gold-deep); }
.nav__menu a.active::after { transform: scaleX(1); }

.nav__cta {
  background: var(--midnight);
  color: var(--cream);
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: background .2s, transform .2s;
  display: inline-flex; align-items: center; gap: 8px;
}
.nav__cta:hover { background: var(--gold-deep); transform: translateY(-1px); }

.nav__toggle { display: none; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 86vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  background: var(--midnight);
}
.hero__bg {
  position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(1200px 600px at 70% 30%, rgba(201,169,97,0.18), transparent 60%),
    linear-gradient(160deg, #0a1830 0%, #0d1f3c 45%, #182c52 100%);
}
.hero__pattern {
  position: absolute; inset: 0; z-index: -1;
  opacity: 0.12;
  background-image:
    radial-gradient(circle at 20% 20%, var(--gold-soft) 1px, transparent 1.5px),
    radial-gradient(circle at 70% 60%, var(--gold-soft) 1px, transparent 1.5px);
  background-size: 80px 80px, 120px 120px;
}
.hero__inner {
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  padding: 100px var(--gutter) 120px;
  color: var(--cream);
  text-align: center;
  position: relative;
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 11.5px; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.hero__eyebrow::before, .hero__eyebrow::after {
  content: ""; width: 38px; height: 1px; background: var(--gold);
}
.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(40px, 6.8vw, 84px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
}
.hero__title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 500;
}
.hero__subtitle {
  font-size: clamp(15px, 1.4vw, 18px);
  max-width: 640px;
  margin: 0 auto 40px;
  opacity: 0.85;
  line-height: 1.7;
}
.hero__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 30px;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: all .25s ease;
}
.btn--gold {
  background: var(--gold);
  color: var(--midnight);
}
.btn--gold:hover { background: var(--gold-soft); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--ghost {
  border: 1px solid rgba(248, 244, 236, 0.4);
  color: var(--cream);
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn svg { width: 16px; height: 16px; }

.hero__scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10.5px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--cream-2);
  opacity: 0.7;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.hero__scroll::after {
  content: "";
  width: 1px; height: 30px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 0.7; }
  50%      { transform: scaleY(1.4); opacity: 1; }
}

/* ---------- Section base ---------- */
.section {
  padding: clamp(70px, 9vw, 120px) 0;
}
.section__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section__head {
  text-align: center;
  margin-bottom: 60px;
}
.section__eyebrow {
  font-size: 11.5px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 18px;
  display: inline-flex; align-items: center; gap: 14px;
}
.section__eyebrow::before, .section__eyebrow::after {
  content: ""; width: 30px; height: 1px; background: var(--gold-deep);
}
.section__title {
  font-family: var(--font-serif);
  font-size: clamp(34px, 4.2vw, 54px);
  font-weight: 400;
  color: var(--midnight);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
}
.section__title em { color: var(--gold-deep); font-style: italic; }
.section__lead {
  max-width: 620px;
  margin: 0 auto;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.7;
}

/* ---------- Tours Grid ---------- */
.tours {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.tour-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease;
  display: flex; flex-direction: column;
  position: relative;
}
.tour-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.tour-card__media {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: linear-gradient(135deg, var(--midnight), var(--midnight-2));
}
.tour-card__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,31,60,0.55), transparent 55%);
}
.tour-card__media svg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  opacity: 0.18;
}
.tour-card__badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--gold);
  color: var(--midnight);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  z-index: 2;
}
.tour-card__type {
  position: absolute;
  bottom: 16px; left: 20px;
  color: var(--cream);
  font-family: var(--font-serif);
  font-size: 26px;
  font-style: italic;
  font-weight: 500;
  z-index: 2;
}
.tour-card__body {
  padding: 24px 24px 28px;
  flex: 1;
  display: flex; flex-direction: column;
}
.tour-card__title {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 500;
  color: var(--midnight);
  line-height: 1.2;
  margin-bottom: 10px;
}
.tour-card__desc {
  color: var(--ink-soft);
  font-size: 14.5px;
  line-height: 1.65;
  margin-bottom: 18px;
  flex: 1;
}
.tour-card__meta {
  display: flex; gap: 18px;
  font-size: 12.5px;
  color: var(--midnight);
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.tour-card__meta span { display: inline-flex; align-items: center; gap: 6px; }
.tour-card__meta svg { width: 14px; height: 14px; color: var(--gold-deep); }
.tour-card__cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--midnight);
  transition: gap .25s ease, color .25s ease;
}
.tour-card__cta:hover { color: var(--gold-deep); gap: 14px; }
.tour-card__cta svg { width: 14px; height: 14px; transition: transform .25s ease; }

/* ---------- Stats ---------- */
.stats {
  background: var(--midnight);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(800px 400px at 80% 50%, rgba(201,169,97,0.15), transparent 60%);
}
.stats__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 80px var(--gutter);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 40px;
  position: relative;
}
.stat { text-align: center; }
.stat__num {
  font-family: var(--font-serif);
  font-size: clamp(44px, 5vw, 64px);
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 10px;
}
.stat__label {
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.85;
}

/* ---------- Why Us (split layout) ---------- */
.why {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
}
.why__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why__visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 6px;
  background: linear-gradient(160deg, var(--midnight), var(--midnight-2));
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.why__visual::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 70%, rgba(201,169,97,0.3), transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(201,169,97,0.2), transparent 50%);
}
.why__visual svg {
  position: absolute;
  width: 80%; height: 80%;
  top: 10%; left: 10%;
  opacity: 0.4;
  color: var(--gold);
}
.why__quote {
  position: absolute;
  bottom: 30px; left: 30px; right: 30px;
  color: var(--cream);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 22px;
  line-height: 1.4;
  z-index: 2;
}
.why__quote::before {
  content: "❝";
  display: block;
  color: var(--gold);
  font-size: 50px;
  line-height: 0.5;
  margin-bottom: 14px;
}

.why .section__eyebrow,
.why .section__title,
.why .section__lead {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}
.why .section__head { text-align: left; margin-bottom: 30px; }
.why .section__lead { margin-bottom: 40px; }

.features { list-style: none; display: grid; gap: 22px; }
.feature {
  display: flex; gap: 18px;
  align-items: flex-start;
}
.feature__icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--midnight);
  color: var(--gold);
}
.feature__icon svg { width: 20px; height: 20px; }
.feature__title {
  font-family: var(--font-serif);
  font-size: 19px;
  color: var(--midnight);
  margin-bottom: 4px;
  font-weight: 600;
}
.feature__desc {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* ---------- Testimonials ---------- */
.testimonials {
  background: var(--cream);
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 28px;
}
.testi {
  background: white;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 36px 30px;
  position: relative;
}
.testi::before {
  content: "❝";
  position: absolute;
  top: 18px; right: 26px;
  font-size: 60px;
  color: var(--gold-soft);
  font-family: var(--font-serif);
  line-height: 0.7;
}
.testi__text {
  font-family: var(--font-serif);
  font-size: 18px;
  font-style: italic;
  color: var(--midnight);
  line-height: 1.55;
  margin-bottom: 24px;
}
.testi__author {
  display: flex; align-items: center; gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.testi__avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  display: grid; place-items: center;
  color: var(--midnight);
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 18px;
}
.testi__name {
  font-weight: 600;
  font-size: 15px;
  color: var(--midnight);
}
.testi__meta {
  font-size: 12.5px;
  color: var(--ink-soft);
}

/* ---------- CTA Band ---------- */
.cta-band {
  position: relative;
  background: var(--midnight);
  color: var(--cream);
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(900px 500px at 20% 50%, rgba(201,169,97,0.18), transparent 65%);
}
.cta-band__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 90px var(--gutter);
  text-align: center;
  position: relative;
}
.cta-band__title {
  font-family: var(--font-serif);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 20px;
}
.cta-band__title em { font-style: italic; color: var(--gold); }
.cta-band__text {
  max-width: 560px;
  margin: 0 auto 36px;
  opacity: 0.85;
  font-size: 16px;
  line-height: 1.7;
}

/* ---------- Footer ---------- */
.footer {
  background: #07142B;
  color: var(--cream-2);
  padding: 80px 0 30px;
}
.footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 60px;
  margin-bottom: 60px;
}
.footer__brand .brand__name { color: var(--cream); }
.footer__about {
  margin-top: 22px;
  font-size: 14px;
  line-height: 1.7;
  opacity: 0.75;
}
.footer__socials { display: flex; gap: 12px; margin-top: 24px; }
.footer__socials a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: grid; place-items: center;
  transition: background .2s, color .2s;
}
.footer__socials a:hover { background: var(--gold); color: var(--midnight); }
.footer__socials svg { width: 16px; height: 16px; }
.footer__heading {
  font-family: var(--font-serif);
  color: var(--gold);
  font-size: 18px;
  margin-bottom: 22px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.footer__list { list-style: none; display: grid; gap: 12px; }
.footer__list a {
  font-size: 14px;
  opacity: 0.75;
  transition: opacity .2s, color .2s;
}
.footer__list a:hover { opacity: 1; color: var(--gold); }
.footer__contact { font-size: 14px; line-height: 1.7; opacity: 0.8; }
.footer__contact a { display: block; margin-top: 8px; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12.5px;
  opacity: 0.6;
}

/* ---------- WhatsApp Floating ---------- */
.wa-float {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 90;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: grid; place-items: center;
  box-shadow: 0 14px 30px rgba(37,211,102,0.4);
  transition: transform .25s ease;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 28px; height: 28px; }

/* ---------- Page header (sub pages) ---------- */
.page-head {
  background: linear-gradient(135deg, var(--midnight) 0%, var(--midnight-2) 100%);
  color: var(--cream);
  padding: clamp(80px, 12vw, 140px) 0 clamp(60px, 8vw, 100px);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-head::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(800px 400px at 50% 100%, rgba(201,169,97,0.15), transparent 60%);
}
.page-head__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
}
.page-head__eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 11.5px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
.page-head__eyebrow::before, .page-head__eyebrow::after {
  content: ""; width: 30px; height: 1px; background: var(--gold);
}
.page-head__title {
  font-family: var(--font-serif);
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 16px;
}
.page-head__title em { font-style: italic; color: var(--gold); }
.page-head__lead {
  max-width: 640px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.7;
  opacity: 0.85;
}

/* ---------- Content prose ---------- */
.prose {
  max-width: 780px;
  margin: 0 auto;
}
.prose h2 {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 500;
  color: var(--midnight);
  margin: 50px 0 18px;
  line-height: 1.2;
}
.prose h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--midnight);
  margin: 36px 0 12px;
}
.prose p { margin-bottom: 18px; color: var(--ink-soft); line-height: 1.8; }
.prose ul { margin: 0 0 22px 22px; color: var(--ink-soft); }
.prose ul li { margin-bottom: 10px; line-height: 1.7; }
.prose strong { color: var(--midnight); }

/* ---------- Tours list (sub page) ---------- */
.tour-list {
  display: grid;
  gap: 28px;
}
.tour-row {
  display: grid;
  grid-template-columns: 280px 1fr auto;
  gap: 30px;
  align-items: center;
  background: white;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 24px;
  transition: box-shadow .3s ease, transform .3s ease;
}
.tour-row:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.tour-row__media {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--midnight), var(--midnight-2));
  position: relative;
  overflow: hidden;
}
.tour-row__media svg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  opacity: 0.25;
  color: var(--gold);
}
.tour-row__body h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  color: var(--midnight);
  margin-bottom: 8px;
  font-weight: 500;
}
.tour-row__meta {
  display: flex; gap: 16px; flex-wrap: wrap;
  font-size: 13px;
  color: var(--ink-soft);
  margin-bottom: 12px;
}
.tour-row__meta span { display: inline-flex; align-items: center; gap: 6px; }
.tour-row__meta svg { width: 14px; height: 14px; color: var(--gold-deep); }
.tour-row__desc { font-size: 14.5px; color: var(--ink-soft); line-height: 1.65; }
.tour-row__action {
  display: flex; flex-direction: column; gap: 10px; align-items: stretch;
  min-width: 160px;
}
.tour-row__price {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 600;
  color: var(--midnight);
  text-align: right;
}
.tour-row__price small {
  display: block;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 400;
  font-family: var(--font-sans);
  margin-bottom: 4px;
}

/* ---------- Contact form ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 70px;
  align-items: start;
}
.contact-info { display: grid; gap: 30px; }
.contact-block { display: flex; gap: 16px; align-items: flex-start; }
.contact-block__icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--midnight);
  color: var(--gold);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.contact-block__icon svg { width: 18px; height: 18px; }
.contact-block__label {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 6px;
}
.contact-block__value {
  font-family: var(--font-serif);
  font-size: 19px;
  color: var(--midnight);
  line-height: 1.4;
}
.contact-block__value a:hover { color: var(--gold-deep); }
.form {
  background: white;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 40px;
  display: grid;
  gap: 18px;
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--midnight);
  margin-bottom: 8px;
  font-weight: 600;
}
.form input, .form select, .form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--cream);
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  transition: border-color .2s, background .2s;
}
.form input:focus, .form select:focus, .form textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: white;
}
.form textarea { resize: vertical; min-height: 130px; }
.form__submit { margin-top: 8px; justify-self: start; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .nav__menu, .nav__cta { display: none; }
  .nav__toggle {
    display: grid; place-items: center;
    width: 44px; height: 44px;
    border: 1px solid var(--line);
    border-radius: 6px;
    color: var(--midnight);
  }
  .nav__toggle svg { width: 22px; height: 22px; }
  .nav.is-open .nav__menu {
    display: flex; flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    padding: 24px var(--gutter);
    gap: 18px;
    align-items: stretch;
  }
  .nav.is-open .nav__cta { display: inline-flex; justify-content: center; margin-top: 8px; }

  .why__inner { grid-template-columns: 1fr; gap: 40px; }
  .why__visual { max-width: 460px; margin: 0 auto; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .tour-row { grid-template-columns: 1fr; gap: 16px; }
  .tour-row__action { min-width: 0; }
  .tour-row__price { text-align: left; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form { padding: 28px; }
  .form__row { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .topbar__contact { gap: 14px; font-size: 12px; }
  .topbar__meta { display: none; }
  .hero { min-height: 78vh; }
  .footer__grid { grid-template-columns: 1fr; }
  .stats__inner { gap: 26px; padding: 60px var(--gutter); }
}
