/* ============================================================
   Amis Tours — shared stylesheet
   VISAS • TRAVEL • EXPERIENCES
   ============================================================ */

:root {
  /* Brand palette drawn from the Amis Tours logo / business card:
     ink brush black, terracotta sun, sage-slate mountain, ivory paper */
  --navy: #262b2c;
  --navy-2: #3a4441;
  --teal: #64766f;
  --teal-dark: #4f5f59;
  --sun: #cd8b62;
  --sun-dark: #b3714a;
  --sand: #faf6ee;
  --ink: #2b2f2f;
  --muted: #6f7672;
  --line: #e8e0d2;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(38, 43, 44, 0.10);
  --shadow-sm: 0 4px 14px rgba(38, 43, 44, 0.08);
  --font-head: "Google Sans", "Product Sans", "Noto Sans Armenian", system-ui, sans-serif;
  --font-body: "Google Sans", "Product Sans", "Noto Sans Armenian", system-ui, sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--sand);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; display: block; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--navy);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: 0.02em;
}

a { color: var(--teal); text-decoration: none; }
a:hover { color: var(--teal-dark); }

.container {
  width: min(1140px, 92%);
  margin-inline: auto;
}

/* ---------- Header / Nav ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.brand-mark {
  width: 54px;
  height: 54px;
  flex: none;
  object-fit: contain;
}

.brand-text { line-height: 1.15; }

.brand-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.45rem;
  color: var(--navy);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.brand-tag {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  color: var(--sun-dark);
  font-weight: 600;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  list-style: none;
}

.nav-links a {
  color: var(--ink);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.3rem 0;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s;
}

.nav-links a:hover { color: var(--teal); }

.nav-links a.active {
  color: var(--teal);
  border-bottom-color: var(--sun);
}

.nav-cta {
  background: var(--teal);
  color: var(--white) !important;
  padding: 0.55rem 1.2rem !important;
  border-radius: 999px;
  border-bottom: none !important;
  font-weight: 600;
  transition: background 0.2s, transform 0.15s;
}

.nav-cta:hover { background: var(--teal-dark); transform: translateY(-1px); }

.nav-links a.lang-switch {
  border: 1.5px solid var(--sun);
  border-radius: 999px;
  padding: 0.35rem 0.85rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--sun-dark);
}

.nav-links a.lang-switch:hover {
  background: var(--sun);
  border-color: var(--sun);
  color: var(--white);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--navy);
  margin: 5px 0;
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  color: var(--ink);
  background:
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 220" preserveAspectRatio="none"><path fill="rgba(100,118,111,0.08)" d="M0 220 L0 128 Q120 60 260 112 T560 95 Q700 40 850 105 T1150 85 Q1300 55 1440 108 L1440 220 Z"/><path fill="rgba(100,118,111,0.13)" d="M0 220 L0 150 Q140 80 300 135 T620 115 Q780 55 930 125 T1230 105 Q1340 75 1440 130 L1440 220 Z"/><path fill="rgba(74,88,82,0.18)" d="M0 220 L0 185 Q210 125 390 168 T740 158 Q920 105 1080 162 T1440 172 L1440 220 Z"/></svg>') bottom / 100% 190px no-repeat,
    radial-gradient(620px 340px at 102% 102%, rgba(205, 139, 98, 0.22), transparent 60%),
    radial-gradient(900px 460px at 88% -5%, rgba(205, 139, 98, 0.14), transparent 62%),
    var(--sand);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  justify-items: center;
  padding: 1.5rem 0 4rem;
  min-height: calc(100vh - 84px);
  min-height: calc(100svh - 84px);
}

/* Nudge the headline block down (~1cm) relative to the motto/logo column */
.hero-inner > div:first-child { margin-top: 38px; }

.hero h1 {
  color: var(--navy);
  font-size: clamp(2.3rem, 4.8vw, 3.6rem);
  font-weight: 700;
  margin-bottom: 1.1rem;
}

.hero h1 .accent { color: var(--sun-dark); }

.hero p.lead {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 34rem;
  margin-bottom: 2rem;
}

.hero-motto {
  display: inline-block;
  letter-spacing: 0.28em;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--sun-dark);
  border-top: 1px solid rgba(179, 113, 74, 0.55);
  border-bottom: 1px solid rgba(179, 113, 74, 0.55);
  padding: 0.5rem 0.4rem;
  margin-bottom: 1.5rem;
}

.hero-art { width: min(340px, 82%); overflow: visible; margin-inline: auto; }

.hero-right { justify-self: center; text-align: center; margin-top: 38px; }

.hero-right .hero-motto { margin: 0 0 0.6rem; }

@media (prefers-reduced-motion: reduce) {
  .orbit-plane, .orbit-trail { display: none; }
}

/* Page hero (inner pages) */

.page-hero {
  color: var(--ink);
  background:
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 220" preserveAspectRatio="none"><path fill="rgba(100,118,111,0.07)" d="M0 220 L0 128 Q120 60 260 112 T560 95 Q700 40 850 105 T1150 85 Q1300 55 1440 108 L1440 220 Z"/><path fill="rgba(100,118,111,0.11)" d="M0 220 L0 150 Q140 80 300 135 T620 115 Q780 55 930 125 T1230 105 Q1340 75 1440 130 L1440 220 Z"/><path fill="rgba(74,88,82,0.16)" d="M0 220 L0 185 Q210 125 390 168 T740 158 Q920 105 1080 162 T1440 172 L1440 220 Z"/></svg>') bottom / 100% 130px no-repeat,
    radial-gradient(760px 360px at 85% -10%, rgba(205, 139, 98, 0.15), transparent 60%),
    var(--sand);
  border-bottom: 1px solid var(--line);
  padding: 3.2rem 0 6rem;
  text-align: center;
}

.page-hero h1 {
  color: var(--navy);
  font-size: clamp(2rem, 3.8vw, 2.9rem);
  margin-bottom: 0.6rem;
}

.page-hero h1::after {
  content: "";
  display: block;
  width: 64px;
  height: 2px;
  background: var(--sun);
  margin: 0.9rem auto 0;
}

.page-hero p {
  color: var(--muted);
  max-width: 42rem;
  margin-inline: auto;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  padding: 0.8rem 1.8rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.btn-primary {
  background: var(--sun);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--sun-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(205, 139, 98, 0.4);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid rgba(43, 47, 47, 0.4);
  margin-left: 0.8rem;
}

.btn-ghost:hover { border-color: var(--ink); color: var(--ink); background: rgba(43, 47, 47, 0.05); }

.btn-teal { background: var(--teal); color: var(--white); }
.btn-teal:hover { background: var(--teal-dark); color: var(--white); transform: translateY(-2px); }

/* ---------- Sections ---------- */

.section { padding: 4.5rem 0; }
.section.alt { background: var(--white); }

.section-head {
  text-align: center;
  max-width: 44rem;
  margin: 0 auto 3rem;
}

.section-head .eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.7rem;
}

.section-head h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 0.8rem; }
.section-head p { color: var(--muted); }

/* ---------- Cards ---------- */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
  gap: 1.6rem;
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.9rem 1.7rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.card .icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(14, 124, 123, 0.1);
  margin-bottom: 1.1rem;
  font-size: 1.5rem;
}

.card h3 { font-size: 1.12rem; margin-bottom: 0.55rem; }
.card p { color: var(--muted); font-size: 0.94rem; }

/* Destination / tour cards */

.tour-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}

.tour-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.tour-card .tour-img {
  height: 170px;
  display: grid;
  place-items: center;
  font-size: 3rem;
  color: var(--white);
}

.tour-card .tour-body { padding: 1.4rem 1.5rem 1.6rem; display: flex; flex-direction: column; gap: 0.5rem; flex: 1; }
.tour-card h3 { font-size: 1.1rem; }
.tour-card .tour-meta { font-size: 0.82rem; color: var(--sun-dark); font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; }
.tour-card p { color: var(--muted); font-size: 0.93rem; flex: 1; }
.tour-card .tour-link { font-weight: 600; font-size: 0.92rem; }

.grad-1 { background: linear-gradient(135deg, #d59465, #b3714a); }
.grad-2 { background: linear-gradient(135deg, #8ba397, #5d746e); }
.grad-3 { background: linear-gradient(135deg, #55645f, #2c3231); }
.grad-4 { background: linear-gradient(135deg, #c9a27c, #a97e54); }
.grad-5 { background: linear-gradient(135deg, #7fa08f, #4f6f5f); }
.grad-6 { background: linear-gradient(135deg, #c07f6a, #8d5040); }

/* ---------- Steps (visa process) ---------- */

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.6rem;
  counter-reset: step;
}

.step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem 1.6rem;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.step .step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: var(--sun);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

.step h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.step p { color: var(--muted); font-size: 0.92rem; }

/* ---------- Split layout ---------- */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.split .split-art { width: min(420px, 100%); justify-self: center; }

/* ---------- Lists ---------- */

.check-list { list-style: none; }

.check-list li {
  padding-left: 2rem;
  position: relative;
  margin-bottom: 0.7rem;
  color: var(--ink);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.36em;
  width: 1.05em;
  height: 1.05em;
  border-radius: 50%;
  background: var(--teal) url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="3.4" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"/></svg>') center / 62% no-repeat;
}

/* ---------- Prose (About page) ---------- */

.prose { max-width: 46rem; margin-inline: auto; }
.prose h2 { font-size: 1.5rem; margin: 2.4rem 0 0.9rem; }
.prose h2:first-child { margin-top: 0; }
.prose p { margin-bottom: 1.1rem; color: var(--ink); }
.prose .motto-quote {
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--teal);
  text-align: center;
  font-size: 1.15rem;
  padding: 1.4rem;
  margin: 1.6rem 0;
  border-block: 2px solid var(--sun);
}
.prose ul { margin: 0 0 1.3rem; }

/* ---------- CTA band ---------- */

.cta-band {
  background:
    radial-gradient(700px 300px at 15% 120%, rgba(205, 139, 98, 0.22), transparent 60%),
    linear-gradient(120deg, #333b38, var(--navy));
  color: var(--white);
  text-align: center;
  padding: 4rem 0;
}

.cta-band h2 { color: var(--white); font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: 0.8rem; }
.cta-band p { color: rgba(255, 255, 255, 0.85); margin-bottom: 1.8rem; max-width: 38rem; margin-inline: auto; }

/* ---------- Forms ---------- */

.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 2.2rem 2rem;
}

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-grid .full { grid-column: 1 / -1; }

.form-field label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 0.35rem;
  color: var(--navy);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  font: inherit;
  padding: 0.7rem 0.9rem;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: var(--sand);
  color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(14, 124, 123, 0.15);
}

.form-note { font-size: 0.85rem; color: var(--muted); margin-top: 1rem; }

.age-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(84px, 1fr));
  gap: 0.6rem;
  margin-top: 0.4rem;
}

.form-status {
  display: none;
  margin-top: 1rem;
  padding: 0.8rem 1rem;
  border-radius: 10px;
  font-size: 0.92rem;
  font-weight: 500;
}
.form-status.ok { display: block; background: rgba(14, 124, 123, 0.12); color: var(--teal-dark); }

/* ---------- Contact info ---------- */

.info-list { list-style: none; display: grid; gap: 1.3rem; }

.info-list li { display: flex; gap: 0.95rem; align-items: flex-start; }

.info-list .icon {
  flex: none;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(244, 162, 89, 0.18);
  font-size: 1.25rem;
}

.info-list strong { display: block; color: var(--navy); font-family: var(--font-head); font-size: 0.98rem; }
.info-list span, .info-list a { color: var(--muted); font-size: 0.94rem; }

/* ---------- Stats ---------- */

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  text-align: center;
}

.stat .num {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--teal);
}

.stat .label { color: var(--muted); font-size: 0.9rem; }

/* ---------- FAQ ---------- */

.faq { max-width: 46rem; margin-inline: auto; display: grid; gap: 0.9rem; }

.faq details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.05rem 1.3rem;
  box-shadow: var(--shadow-sm);
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
  font-family: var(--font-head);
  color: var(--navy);
  list-style: none;
  position: relative;
  padding-right: 1.8rem;
}

.faq summary::-webkit-details-marker { display: none; }

.faq summary::after {
  content: "+";
  position: absolute;
  right: 0.1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.3rem;
  color: var(--sun-dark);
  transition: transform 0.2s;
}

.faq details[open] summary::after { content: "–"; }
.faq details p { margin-top: 0.7rem; color: var(--muted); font-size: 0.94rem; }

/* ---------- Visa country accordion ---------- */

.visa-acc { max-width: 52rem; margin-inline: auto; display: grid; gap: 1rem; }

.visa-acc details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.visa-acc summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.08rem;
  letter-spacing: 0.06em;
  color: var(--navy);
  transition: background 0.2s;
}

.visa-acc summary:hover { background: rgba(14, 124, 123, 0.06); }
.visa-acc summary::-webkit-details-marker { display: none; }

.visa-acc summary .flag {
  font-size: 1.4rem;
  flex: none;
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 0.05rem 0.3rem;
  justify-items: center;
  line-height: 1.1;
}

.visa-acc summary .chev {
  margin-left: auto;
  flex: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(244, 162, 89, 0.18);
  color: var(--sun-dark);
  font-size: 1.2rem;
  font-weight: 700;
  transition: transform 0.25s;
}

.visa-acc details[open] summary .chev { transform: rotate(45deg); }
.visa-acc details[open] summary { border-bottom: 1px solid var(--line); }

.visa-acc .visa-body {
  padding: 1.3rem 1.5rem 1.6rem;
  color: var(--muted);
}

.visa-acc .visa-body p { margin-bottom: 0.9rem; }
.visa-acc .visa-body p:last-child { margin-bottom: 0; }

.visa-acc .visa-body h4 {
  font-size: 1rem;
  color: var(--navy);
  margin: 1.3rem 0 0.45rem;
}

.visa-acc .visa-body h4:first-child { margin-top: 0; }

.visa-acc .visa-body h4 .box { color: var(--teal); margin-right: 0.35rem; }

.visa-acc .visa-body ul {
  margin: 0.4rem 0 1rem 1.3rem;
}

.visa-acc .visa-body li { margin-bottom: 0.5rem; font-size: 0.94rem; }

.visa-acc .visa-body .sub-note { font-size: 0.9rem; color: var(--muted); }

.visa-acc .visa-body .note {
  background: rgba(244, 162, 89, 0.13);
  border-left: 3px solid var(--sun);
  border-radius: 8px;
  padding: 0.95rem 1.15rem;
  font-size: 0.92rem;
  margin-top: 1.1rem;
}

.visa-acc .visa-body .note strong { color: var(--navy); }

.visa-acc .placeholder {
  border: 1.5px dashed var(--line);
  border-radius: 10px;
  padding: 1rem 1.2rem;
  background: var(--sand);
  font-size: 0.93rem;
}

/* ---------- World map (Group Tours) ---------- */

.map-wrap {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 1.5rem;
}

.world-map { width: 100%; height: auto; display: block; }

.continent { cursor: pointer; outline: none; }

.continent .land {
  fill: #a9b8ae;
  stroke: var(--white);
  stroke-width: 2;
  transition: fill 0.2s;
}

.continent:hover .land,
.continent:focus-visible .land { fill: var(--sun); }

.continent text {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  fill: var(--navy);
  pointer-events: none;
}

.continent .tap-hint { opacity: 0; transition: opacity 0.2s; }
.continent:hover .tap-hint { opacity: 1; }

.land-muted { fill: #e3ded6; stroke: var(--white); stroke-width: 2; }

.map-legend {
  text-align: center;
  color: var(--muted);
  font-size: 0.92rem;
  margin-top: 1rem;
}

/* ---------- Modal ---------- */

.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 1.2rem;
  background: rgba(15, 39, 64, 0.55);
  backdrop-filter: blur(3px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}

.modal.open { opacity: 1; pointer-events: auto; }

.modal-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: min(480px, 100%);
  padding: 1.8rem 1.7rem;
  transform: translateY(12px);
  transition: transform 0.2s;
}

.modal.open .modal-card { transform: translateY(0); }

.modal-card h3 { font-size: 1.25rem; margin-bottom: 0.4rem; }
.modal-card > p { color: var(--muted); font-size: 0.93rem; margin-bottom: 1.1rem; }

.modal-close {
  float: right;
  background: none;
  border: none;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--muted);
  cursor: pointer;
  padding: 0.2rem;
}

.modal-close:hover { color: var(--navy); }

.btn-wa {
  background: #25d366;
  color: #073b1c;
  width: 100%;
  text-align: center;
}

.btn-wa:hover { background: #1fb857; color: #073b1c; transform: translateY(-1px); }

/* ---------- Booking badge (Hotels) ---------- */

.badge-booking {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--navy);
  color: var(--sun);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(0.85rem, 2vw, 1.05rem);
  letter-spacing: 0.08em;
  padding: 0.8rem 1.6rem;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  transform: rotate(-1.5deg);
  border: 2px solid var(--sun);
}

.badge-booking .spark { font-size: 1.2em; }

/* ---------- Social buttons ---------- */

.social-btns { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 0.6rem; }

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 600;
  font-size: 0.88rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: var(--white);
  color: var(--ink);
  transition: transform 0.15s, box-shadow 0.2s, border-color 0.2s;
}

.social-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }

.social-btn.wa { border-color: #25d366; color: #128c4b; }
.social-btn.tg { border-color: #29a9eb; color: #1279ad; }
.social-btn.ig { border-color: #d6459b; color: #b02d7d; }

/* ---------- Map embed (Contact) ---------- */

.map-embed {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-top: 2.5rem;
}

.map-embed iframe {
  display: block;
  width: 100%;
  height: 380px;
  border: 0;
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.78);
  padding: 3.5rem 0 1.5rem;
  font-size: 0.93rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.9fr 0.9fr 1.15fr 1.15fr;
  gap: 2.2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer h4 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 1rem;
  letter-spacing: 0.04em;
}

.site-footer ul { list-style: none; display: grid; gap: 0.55rem; }
.site-footer a { color: rgba(255, 255, 255, 0.78); }
.site-footer a:hover { color: var(--sun); }

.footer-brand .brand-name { color: var(--white); }
.footer-brand p { margin-top: 0.8rem; max-width: 24rem; font-size: 0.9rem; color: rgba(255,255,255,0.65); }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  padding-top: 1.4rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; padding: 3.5rem 0 4rem; }
  .hero p.lead { margin-inline: auto; }
  .hero-art { width: min(320px, 80%); }
  .split { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .nav-toggle { display: block; }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .nav-links.open { max-height: 480px; }

  .nav-links li { border-top: 1px solid var(--line); }

  .nav-links a {
    display: block;
    padding: 0.95rem 5%;
    border-bottom: none;
  }

  .nav-links a.active { background: rgba(14, 124, 123, 0.07); border-bottom: none; }

  .nav-cta {
    margin: 0.9rem 5% 1.1rem;
    text-align: center;
    border-radius: 999px !important;
  }

  .form-grid { grid-template-columns: 1fr; }
  .btn-ghost { margin-left: 0; margin-top: 0.8rem; }
  .section { padding: 3.2rem 0; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; gap: 1.8rem; }
}
