/* ============================================================
   KEVA Luxury Spaa — Stylesheet
   Palette: deep black + gradient gold
   ============================================================ */

:root {
  --black: #0a0805;
  --black-2: #100c07;
  --black-3: #161009;
  --gold: #d8a93b;
  --gold-light: #f3d785;
  --gold-bright: #f7e7a9;
  --gold-deep: #b8862a;
  --cream: #efe6d2;
  --muted: #b6a98c;
  --line: rgba(216, 169, 59, 0.22);
  --gold-grad: linear-gradient(180deg, #f7e7a9 0%, #e7c468 38%, #c79433 70%, #a6761f 100%);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Jost", "Helvetica Neue", Arial, sans-serif;
  --maxw: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--black);
  color: var(--cream);
  line-height: 1.65;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.section { padding: 96px 0; position: relative; }

/* ---------- Typography helpers ---------- */
.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 18px;
}

.section__title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: var(--gold-light);
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section__head { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.section__sub { color: var(--muted); font-size: 1.05rem; margin-top: 18px; }

.lead { color: var(--muted); font-size: 1.08rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: 2px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.4s var(--ease);
  white-space: nowrap;
}

.btn--gold {
  background: var(--gold-grad);
  color: #2a1d05;
  box-shadow: 0 8px 28px rgba(199, 148, 51, 0.28);
}
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 14px 38px rgba(199, 148, 51, 0.42); }

.btn--ghost {
  background: transparent;
  color: var(--gold-light);
  border-color: var(--line);
}
.btn--ghost:hover { border-color: var(--gold); background: rgba(216, 169, 59, 0.08); }

.btn--block { width: 100%; justify-content: center; }
.btn__arrow { transition: transform 0.4s var(--ease); }
.btn:hover .btn__arrow { transform: translateX(5px); }

/* ---------- Topbar ---------- */
.topbar {
  background: var(--black-2);
  border-bottom: 1px solid var(--line);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.topbar__inner { display: flex; justify-content: space-between; align-items: center; height: 40px; }
.topbar__item { color: var(--muted); }
.topbar__phone { color: var(--gold-light); transition: color 0.3s; }
.topbar__phone:hover { color: var(--gold-bright); }

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 8, 5, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: background 0.4s, box-shadow 0.4s;
}
.header.scrolled { background: rgba(10, 8, 5, 0.96); box-shadow: 0 6px 30px rgba(0,0,0,0.5); }
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 84px; }

.brand__logo { height: 60px; width: auto; }

.nav { display: flex; align-items: center; gap: 34px; }
.nav__link {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream);
  font-weight: 400;
  position: relative;
  padding: 6px 0;
  transition: color 0.3s;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.35s var(--ease);
}
.nav__link:hover, .nav__link.is-active { color: var(--gold-light); }
.nav__link:hover::after, .nav__link.is-active::after { width: 100%; }
.nav__cta { margin-left: 8px; padding: 13px 26px; }
.nav__cta::after { display: none; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  position: relative;
  z-index: 70;
}
.nav-toggle span {
  width: 26px;
  height: 2px;
  background: var(--gold-light);
  transition: transform 0.35s var(--ease), opacity 0.25s var(--ease);
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Backdrop behind mobile menu — must sit BELOW the header (z-index 50)
   so the menu panel, which lives inside the header, paints above it. */
.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgba(5, 4, 2, 0.78);
  backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.nav-backdrop.show { opacity: 1; }
body.menu-open { overflow: hidden; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    radial-gradient(circle at 70% 30%, rgba(199, 148, 51, 0.14), transparent 55%),
    radial-gradient(circle at 15% 80%, rgba(199, 148, 51, 0.08), transparent 50%),
    linear-gradient(180deg, #0c0906 0%, #0a0805 60%, #070503 100%);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23d8a93b' stroke-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}
.hero__inner { position: relative; z-index: 2; flex: 1; display: flex; align-items: center; padding-top: 60px; padding-bottom: 60px; }
.hero__content { max-width: 640px; }

.hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.34em;
  font-size: 0.78rem;
  color: var(--gold);
  margin-bottom: 26px;
}
.hero__title { font-family: var(--serif); line-height: 0.98; margin-bottom: 26px; }
.hero__title-main {
  display: block;
  font-size: clamp(3.4rem, 8vw, 6.6rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--cream);
}
.hero__title-script {
  display: block;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(2.4rem, 5.5vw, 4.4rem);
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: -4px;
}

.hero__divider { display: flex; align-items: center; gap: 14px; color: var(--gold); margin: 8px 0 26px; font-size: 0.8rem; }
.hero__divider span { height: 1px; width: 60px; background: linear-gradient(90deg, transparent, var(--gold)); }
.hero__divider span:last-child { background: linear-gradient(90deg, var(--gold), transparent); }

.hero__text { color: var(--muted); font-size: 1.18rem; max-width: 460px; margin-bottom: 38px; }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Feature strip */
.features {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--line);
  background: rgba(8, 6, 3, 0.55);
  backdrop-filter: blur(4px);
}
.features__inner { display: grid; grid-template-columns: repeat(4, 1fr); }
.feature {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 30px 20px;
  border-left: 1px solid var(--line);
}
.feature:first-child { border-left: none; }
.feature__icon { font-size: 1.7rem; color: var(--gold); line-height: 1; }
.feature__label {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.82rem;
  color: var(--cream);
  font-weight: 400;
  line-height: 1.35;
}

/* ---------- About ---------- */
.about { background: var(--black-2); }
.about__inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 70px; align-items: center; }
.about__media-frame {
  position: relative;
  border: 1px solid var(--line);
  padding: 26px;
  background:
    radial-gradient(circle at 50% 40%, rgba(199,148,51,0.12), transparent 70%),
    var(--black);
}
.about__media-frame::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid var(--line);
  pointer-events: none;
}
.about__list { list-style: none; margin: 28px 0 36px; }
.about__list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: var(--cream);
  font-weight: 300;
}
.about__list li::before { content: "❖"; position: absolute; left: 0; color: var(--gold); font-size: 0.8rem; top: 3px; }

/* ---------- Services ---------- */
.services { background: var(--black); }
.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card {
  position: relative;
  padding: 44px 34px;
  background: linear-gradient(160deg, rgba(22,16,9,0.9), rgba(10,8,5,0.9));
  border: 1px solid var(--line);
  text-align: center;
  transition: transform 0.45s var(--ease), border-color 0.45s, box-shadow 0.45s;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold-grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.card:hover { transform: translateY(-8px); border-color: var(--gold); box-shadow: 0 22px 50px rgba(0,0,0,0.55); }
.card:hover::before { transform: scaleX(1); }
.card__icon { font-size: 2.4rem; color: var(--gold); display: block; margin-bottom: 20px; }
.card__title { font-family: var(--serif); font-size: 1.6rem; font-weight: 600; color: var(--gold-light); margin-bottom: 12px; }
.card__text { color: var(--muted); font-size: 0.98rem; margin-bottom: 22px; }
.card__price { display: inline-block; font-size: 0.82rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); border-top: 1px solid var(--line); padding-top: 16px; }

/* ---------- Packages ---------- */
.packages {
  background:
    radial-gradient(circle at 50% 0%, rgba(199,148,51,0.12), transparent 60%),
    var(--black-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.packages__inner { text-align: center; max-width: 720px; margin: 0 auto; }
.packages__inner .section__sub { margin-bottom: 36px; }

/* ---------- Gallery ---------- */
.gallery { background: var(--black); }
.gallery__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery__item {
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: flex-end;
  padding: 22px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--gold-light);
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.7)),
    radial-gradient(circle at 30% 30%, rgba(199,148,51,0.16), transparent 60%),
    linear-gradient(135deg, #1a130a, #0a0805);
  transition: transform 0.4s var(--ease), border-color 0.4s;
}
.gallery__item:hover { transform: scale(1.02); border-color: var(--gold); }
.gallery__note { text-align: center; color: var(--muted); margin-top: 28px; font-style: italic; }

/* ---------- Contact ---------- */
.contact { background: var(--black-2); }
.contact__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact__details { list-style: none; margin: 30px 0 34px; }
.contact__details li { display: flex; gap: 16px; margin-bottom: 20px; color: var(--cream); align-items: flex-start; }
.contact__icon { font-size: 1.2rem; line-height: 1.4; }
.contact__details a { color: var(--gold-light); transition: color 0.3s; }
.contact__details a:hover { color: var(--gold-bright); }
.contact__actions { display: flex; gap: 14px; flex-wrap: wrap; }

.contact__form {
  background: var(--black);
  border: 1px solid var(--line);
  padding: 40px;
}
.form__title { font-family: var(--serif); font-size: 1.7rem; color: var(--gold-light); margin-bottom: 24px; }
.field { margin-bottom: 18px; }
.field label {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  color: var(--muted);
  margin-bottom: 8px;
}
.field input, .field select, .field textarea {
  width: 100%;
  background: var(--black-3);
  border: 1px solid var(--line);
  color: var(--cream);
  padding: 13px 16px;
  font-family: var(--sans);
  font-size: 0.95rem;
  border-radius: 2px;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.field input::placeholder, .field textarea::placeholder { color: #6f6650; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(216,169,59,0.12);
}
.field textarea { resize: vertical; }
.form__note { margin-top: 16px; color: var(--gold-light); font-size: 0.92rem; text-align: center; }

/* ---------- Footer ---------- */
.footer { background: var(--black); border-top: 1px solid var(--line); padding-top: 64px; }
.footer__inner { display: grid; grid-template-columns: 1.4fr 1fr 1.4fr; gap: 40px; padding-bottom: 48px; }
.footer__logo { height: 70px; margin-bottom: 16px; }
.footer__tag { color: var(--muted); font-style: italic; font-family: var(--serif); font-size: 1.15rem; }
.footer__nav { display: flex; flex-direction: column; gap: 12px; }
.footer__nav a { color: var(--cream); font-size: 0.9rem; letter-spacing: 0.1em; text-transform: uppercase; transition: color 0.3s; }
.footer__nav a:hover { color: var(--gold-light); }
.footer__contact p { color: var(--muted); margin-bottom: 12px; }
.footer__contact a { color: var(--gold-light); font-size: 1.05rem; }
.footer__social { display: flex; gap: 14px; margin-top: 22px; }
.footer__social a {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold-light);
  transition: all 0.35s var(--ease);
}
.footer__social a:hover {
  color: #2a1d05;
  background: var(--gold-grad);
  border-color: transparent;
  transform: translateY(-3px);
}
.footer__bottom { border-top: 1px solid var(--line); padding: 22px 0; }
.footer__bottom-inner { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.footer__bottom p { color: var(--muted); font-size: 0.82rem; letter-spacing: 0.08em; }
.footer__legal a { color: var(--muted); font-size: 0.82rem; letter-spacing: 0.08em; transition: color 0.3s; }
.footer__legal a:hover { color: var(--gold-light); }

/* ---------- Inner page banner ---------- */
.page-hero {
  position: relative;
  padding: 150px 0 70px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(199, 148, 51, 0.16), transparent 60%),
    linear-gradient(180deg, #0c0906, #0a0805);
  border-bottom: 1px solid var(--line);
}
.page-hero__title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  line-height: 1.05;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.page-hero__crumb { color: var(--muted); letter-spacing: 0.2em; text-transform: uppercase; font-size: 0.74rem; margin-top: 16px; }
.page-hero__crumb a { color: var(--gold); }

/* ---------- Prose (privacy) ---------- */
.prose { max-width: 820px; margin: 0 auto; }
.prose h2 {
  font-family: var(--serif);
  font-size: 1.7rem;
  color: var(--gold-light);
  margin: 38px 0 14px;
}
.prose p, .prose li { color: var(--muted); margin-bottom: 14px; }
.prose ul { padding-left: 22px; margin-bottom: 14px; }
.prose a { color: var(--gold-light); text-decoration: underline; }
.prose .prose__updated { font-style: italic; color: var(--gold); margin-bottom: 30px; }

/* ---------- Contact page map ---------- */
.map-frame {
  border: 1px solid var(--line);
  padding: 12px;
  background: var(--black);
}
.map-frame iframe { display: block; width: 100%; height: 340px; border: 0; filter: grayscale(0.3) contrast(1.05); }

/* ---------- Services menu (services page) ---------- */
.menu-cat { display: flex; align-items: center; gap: 16px; margin-bottom: 28px; }
.menu-cat__icon { font-size: 1.6rem; color: var(--gold); }
.menu-cat__title { font-family: var(--serif); font-size: 1.9rem; font-weight: 600; color: var(--gold-light); white-space: nowrap; }
.menu-cat__line { flex: 1; height: 1px; background: linear-gradient(90deg, var(--gold), transparent); }

.menu-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 0 56px; }
.menu-item { padding: 22px 0; border-bottom: 1px solid var(--line); }
.menu-item__head { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; }
.menu-item__head h4 { font-family: var(--serif); font-size: 1.4rem; font-weight: 600; color: var(--cream); }
.menu-item__head::after {
  content: "";
  flex: 1;
  height: 0;
  border-bottom: 1px dotted rgba(216, 169, 59, 0.35);
  margin: 0 4px 6px;
  order: 2;
}
.menu-item__price { order: 3; color: var(--gold-light); font-size: 1.1rem; font-weight: 500; white-space: nowrap; }
.menu-item p { color: var(--muted); font-size: 0.96rem; margin-top: 6px; }
.menu-item__dur {
  display: inline-block;
  margin-left: 6px;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--line);
  padding: 2px 8px;
  border-radius: 999px;
}

/* ---------- Pricing tiers (packages page) ---------- */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 40px 32px;
  background: linear-gradient(160deg, rgba(22,16,9,0.9), rgba(10,8,5,0.9));
  border: 1px solid var(--line);
  transition: transform 0.4s var(--ease), border-color 0.4s, box-shadow 0.4s;
}
.plan:hover { transform: translateY(-6px); border-color: var(--gold); box-shadow: 0 22px 50px rgba(0,0,0,0.55); }
.plan--featured {
  border-color: var(--gold);
  background:
    radial-gradient(circle at 50% 0%, rgba(199,148,51,0.16), transparent 60%),
    linear-gradient(160deg, rgba(28,20,10,0.95), rgba(12,9,5,0.95));
  box-shadow: 0 18px 48px rgba(0,0,0,0.5);
}
.plan__badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold-grad);
  color: #2a1d05;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 6px 18px;
  border-radius: 999px;
  white-space: nowrap;
}
.plan__head { text-align: center; }
.plan__icon { font-size: 2.2rem; color: var(--gold); display: block; margin-bottom: 12px; }
.plan__name { font-family: var(--serif); font-size: 1.9rem; font-weight: 600; color: var(--gold-light); }
.plan__tag { color: var(--muted); font-size: 0.92rem; margin-top: 4px; }
.plan__price { text-align: center; margin: 24px 0; padding: 20px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.plan__amount { display: block; font-family: var(--serif); font-size: 2.6rem; font-weight: 700; background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.plan__per { color: var(--muted); font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; }
.plan__list { list-style: none; margin: 0 0 28px; flex: 1; }
.plan__list li { position: relative; padding-left: 26px; margin-bottom: 12px; color: var(--cream); font-weight: 300; font-size: 0.96rem; }
.plan__list li::before { content: "❖"; position: absolute; left: 0; color: var(--gold); font-size: 0.78rem; top: 2px; }

@media (max-width: 1000px) {
  .pricing { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .menu-list { grid-template-columns: 1fr; gap: 0; }
}
@media (max-width: 600px) {
  .menu-cat__title { font-size: 1.5rem; white-space: normal; }
}

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  width: 58px; height: 58px;
  display: flex; align-items: center; justify-content: center;
  background: var(--gold-grad);
  border-radius: 50%;
  font-size: 1.5rem;
  box-shadow: 0 8px 24px rgba(199,148,51,0.4);
  transition: transform 0.3s;
}
.wa-float:hover { transform: scale(1.08); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Mobile nav panel ---------- */
@media (max-width: 900px) {
  /* backdrop-filter creates a containing block for fixed children, which would
     trap the fixed nav panel inside the 84px header. Disable it here so the
     panel is positioned against the viewport and shows all links. */
  .header {
    background: rgba(10, 8, 5, 0.97);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .header.scrolled { background: rgba(10, 8, 5, 0.99); }

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    z-index: 60;
    height: 100vh;
    height: 100dvh;
    width: min(86vw, 340px);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 4px;
    padding: 104px 32px 40px;
    background: var(--black-2);
    border-left: 1px solid var(--line);
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.55);
    transform: translateX(100%);
    transition: transform 0.45s var(--ease);
    overflow-y: auto;
  }
  .nav.open { transform: translateX(0); }
  .nav__link {
    padding: 16px 0;
    font-size: 0.95rem;
    border-bottom: 1px solid var(--line);
  }
  .nav__link::after { display: none; }
  .nav__cta {
    margin-left: 0;
    margin-top: 24px;
    justify-content: center;
  }
  .nav-toggle { display: flex; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .about__inner { grid-template-columns: 1fr; gap: 44px; }
  .about__media { max-width: 460px; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .contact__inner { grid-template-columns: 1fr; gap: 44px; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 700px) {
  .section { padding: 70px 0; }
  .features__inner { grid-template-columns: repeat(2, 1fr); }
  .feature:nth-child(odd) { border-left: none; }
  .feature:nth-child(n+3) { border-top: 1px solid var(--line); }
  .services__grid { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: 1fr 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .topbar__item:first-child { display: none; }
  .topbar__inner { justify-content: center; }
  .hero { min-height: 78vh; }
}

@media (max-width: 440px) {
  .gallery__grid { grid-template-columns: 1fr; }
  .hero__actions .btn, .contact__actions .btn { width: 100%; justify-content: center; }
}
