:root {
  color-scheme: light;
  --ink: #20201d;
  --muted: #68645d;
  --line: rgba(32, 32, 29, 0.12);
  --paper: #f7f3ec;
  --ivory: #fffdf8;
  --soft: #efe8dd;
  --teal: #0f6768;
  --deep: #123d3f;
  --gold: #bd9662;
  --gold-dark: #a87c47;
  --shadow: 0 18px 55px rgba(63, 50, 34, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--paper);
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  padding-bottom: calc(96px + env(safe-area-inset-bottom));
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  letter-spacing: 0;
  background: var(--paper);
}

a {
  color: inherit;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: relative;
  z-index: 10;
  display: grid;
  min-height: 88px;
  grid-template-columns: minmax(260px, 1fr) auto minmax(220px, 1fr);
  gap: 28px;
  align-items: center;
  padding: 0 clamp(24px, 4.4vw, 74px);
  border-bottom: 1px solid rgba(32, 32, 29, 0.06);
  background: rgba(255, 253, 248, 0.94);
  box-shadow: 0 12px 35px rgba(63, 50, 34, 0.05);
}

.brand {
  display: inline-flex;
  min-width: 0;
  width: fit-content;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand > span:last-child {
  min-width: 0;
}

.brand-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--gold);
}

.brand-icon svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.brand strong {
  display: block;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.32rem, 2vw, 1.8rem);
  font-weight: 700;
  line-height: 1;
}

.brand small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.1;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 3vw, 44px);
  color: #3e3c37;
  font-size: 0.95rem;
  font-weight: 600;
}

.main-nav a {
  position: relative;
  padding: 34px 0 31px;
  text-decoration: none;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 12px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--gold);
  opacity: 0;
  transform: scaleX(0.35);
  transition: opacity 180ms ease, transform 180ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}

.language {
  color: var(--ink);
  font-size: 0.93rem;
  font-weight: 700;
}

.page-shell {
  width: 100%;
  min-height: 100vh;
  margin: 0;
  padding: 0;
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100vh - 88px);
  grid-template-columns: minmax(0, 0.92fr) minmax(390px, 1.08fr);
  gap: clamp(30px, 4.4vw, 82px);
  align-items: center;
  overflow: hidden;
  padding: clamp(40px, 6vw, 80px) clamp(24px, 4.4vw, 74px);
  background: var(--paper);
  isolation: isolate;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.76), rgba(239, 232, 221, 0.56));
}

.hero-media {
  position: relative;
  width: min(100%, 400px);
  min-height: 0;
  justify-self: center;
}

.hero-media::before {
  display: none;
}

.hero-carousel {
  position: relative;
  width: 100%;
  aspect-ratio: 1054 / 1876;
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 6px;
  object-fit: contain;
  object-position: center;
  opacity: 0;
  background: #fbf8f2;
  box-shadow: var(--shadow);
  transition: opacity 680ms ease;
}

.hero-image.is-active {
  z-index: 1;
  opacity: 1;
}

.brand-mark {
  display: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 620px;
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--gold-dark);
  font-size: clamp(1.02rem, 1.56vw, 1.2rem);
  font-weight: 650;
  letter-spacing: 0;
  text-transform: none;
}

h1 {
  max-width: 11ch;
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.3rem, 5vw, 5.9rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
}

h2,
h3,
p {
  letter-spacing: 0;
}

.hero-lead {
  max-width: 560px;
  margin: clamp(18px, 2.4vw, 28px) 0 0;
  color: #4b4740;
  font-size: clamp(1.08rem, 1.5vw, 1.28rem);
  font-weight: 450;
  line-height: 1.55;
}

.brand:focus-visible,
.main-nav a:focus-visible {
  outline: 3px solid rgba(189, 150, 98, 0.32);
  outline-offset: 5px;
}

.location {
  display: none;
}

@media (max-width: 980px) and (min-width: 761px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
    gap: 30px;
    padding-right: 36px;
    padding-left: 36px;
  }

  .hero-media {
    width: min(100%, 350px);
  }
}

.services-section {
  padding: clamp(46px, 6vw, 82px) clamp(24px, 4.4vw, 74px) clamp(52px, 6vw, 82px);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.96), rgba(247, 243, 236, 0.98)),
    var(--paper);
}

.section-title {
  max-width: 980px;
  margin: 0 auto clamp(28px, 4vw, 46px);
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 5.4vw, 6rem);
  font-weight: 500;
  line-height: 0.98;
  text-align: center;
  text-wrap: balance;
}

.direction-grid {
  display: grid;
  max-width: 1180px;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(22px, 2.5vw, 34px);
  margin: 0 auto;
}

.direction-card {
  position: relative;
  display: grid;
  min-height: clamp(300px, 32vw, 380px);
  grid-template-columns: minmax(300px, 44%) minmax(0, 1fr);
  grid-template-rows: auto 1fr;
  column-gap: clamp(22px, 3vw, 42px);
  overflow: hidden;
  padding: clamp(14px, 1.7vw, 20px);
  border: 1px solid rgba(32, 32, 29, 0.08);
  border-radius: 8px;
  color: var(--ink);
  text-decoration: none;
  background: rgba(255, 253, 248, 0.82);
  box-shadow: 0 16px 42px rgba(63, 50, 34, 0.1);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.direction-card:hover,
.direction-card:focus-within {
  border-color: rgba(189, 150, 98, 0.34);
  box-shadow: 0 22px 60px rgba(63, 50, 34, 0.16);
  transform: translateY(-4px);
}

.direction-card img {
  grid-row: 1 / span 2;
  display: block;
  width: 100%;
  height: 100%;
  min-height: clamp(260px, 29vw, 340px);
  margin: 0;
  border-radius: 6px;
  object-fit: cover;
  object-position: center;
  background: var(--soft);
}

.direction-card h3 {
  margin: clamp(6px, 0.8vw, 12px) 0 0;
  color: var(--deep);
  font-size: clamp(2rem, 3.1vw, 3.35rem);
  font-weight: 780;
  line-height: 1;
  text-wrap: balance;
}

.direction-card p {
  max-width: 620px;
  margin: clamp(14px, 1.5vw, 20px) 0 0;
  color: var(--muted);
  font-size: clamp(1.12rem, 1.38vw, 1.34rem);
  line-height: 1.45;
}

.direction-action {
  display: block;
  align-self: end;
  margin-top: clamp(28px, 3vw, 44px);
}

.social-links {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}

.social-icon {
  position: relative;
  isolation: isolate;
  display: inline-grid;
  flex: 0 0 auto;
  width: 56px;
  height: 56px;
  overflow: hidden;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 14px;
  text-decoration: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.68),
    inset 0 -1px 0 rgba(0, 0, 0, 0.08),
    0 14px 28px rgba(32, 32, 29, 0.17);
  transform: translateZ(0);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.social-icon::before {
  position: absolute;
  inset: 1px 1px 48%;
  z-index: -1;
  border-radius: 11px 11px 55% 55%;
  pointer-events: none;
  content: "";
  background: linear-gradient(115deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.08) 58%);
  mix-blend-mode: screen;
}

.social-icon::after {
  position: absolute;
  inset: -40% -75%;
  z-index: -1;
  pointer-events: none;
  content: "";
  background: linear-gradient(110deg, transparent 38%, rgba(255, 255, 255, 0.5) 48%, transparent 58%);
  transform: translateX(-38%) rotate(8deg);
  animation: social-glass-shimmer 6.5s ease-in-out infinite;
}

.social-icon:hover,
.social-icon:focus-visible {
  filter: saturate(1.08) contrast(1.03);
  transform: translateY(-2px) scale(1.025);
}

.social-icon:focus-visible {
  outline: 3px solid rgba(189, 150, 98, 0.34);
  outline-offset: 4px;
}

.instagram-icon {
  background:
    radial-gradient(circle at 30% 112%, #ffe98a 0 18%, #ff5d42 41%, transparent 60%),
    radial-gradient(circle at 17% 14%, #ffd86f 0 14%, transparent 38%),
    linear-gradient(135deg, #7436c7 0%, #bd2f98 39%, #e6246b 63%, #ff3a36 82%, #ff853d 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    inset 0 -1px 0 rgba(93, 20, 90, 0.14),
    0 13px 26px rgba(193, 53, 132, 0.3);
}

.telegram-icon {
  background:
    radial-gradient(circle at 28% 12%, rgba(126, 224, 255, 0.92), transparent 38%),
    linear-gradient(155deg, #39c6ff 0%, #159de9 54%, #087fd7 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.74),
    inset 0 -1px 0 rgba(0, 65, 135, 0.16),
    0 13px 26px rgba(17, 147, 226, 0.3);
}

.whatsapp-icon {
  background:
    radial-gradient(circle at 28% 12%, rgba(178, 255, 202, 0.94), transparent 40%),
    linear-gradient(155deg, #42e66f 0%, #18bd52 52%, #078a3d 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.74),
    inset 0 -1px 0 rgba(0, 86, 35, 0.16),
    0 13px 26px rgba(18, 184, 89, 0.28);
}

.social-icon svg {
  position: relative;
  z-index: 1;
  width: 30px;
  height: 30px;
  fill: #fff;
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.12));
}

.telegram-icon svg {
  transform: translateX(-1px);
}

@keyframes social-glass-shimmer {
  0%,
  54% {
    transform: translateX(-38%) rotate(8deg);
  }

  74%,
  100% {
    transform: translateX(42%) rotate(8deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-image {
    transition: none;
  }

  .social-icon::after,
  .mobile-contact-link::after {
    animation: none;
  }
}

.science-section {
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 8vw, 112px) clamp(24px, 4.4vw, 74px);
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(247, 243, 236, 0.98), rgba(255, 253, 248, 0.96)),
    var(--paper);
}

.science-section::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(189, 150, 98, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(189, 150, 98, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.42), transparent 82%);
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.42), transparent 82%);
}

.science-heading {
  position: relative;
  z-index: 1;
  max-width: 1480px;
  margin: 0 auto clamp(26px, 3.8vw, 46px);
}

.science-heading h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 5.7vw, 6.1rem);
  font-weight: 500;
  line-height: 0.95;
}

.science-grid {
  position: relative;
  z-index: 1;
  display: grid;
  max-width: 1480px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 1.8vw, 22px);
  margin: 0 auto;
}

.science-card {
  display: grid;
  align-content: start;
  padding: clamp(22px, 2.2vw, 32px);
  border: 1px solid rgba(32, 32, 29, 0.08);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.72);
  box-shadow: 0 16px 42px rgba(63, 50, 34, 0.08);
}

.science-card h3 {
  margin: 0;
  color: var(--deep);
  font-size: clamp(1.18rem, 1.45vw, 1.48rem);
  font-weight: 760;
  line-height: 1.14;
}

.science-card p {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.safety-section {
  padding: clamp(56px, 7vw, 96px) clamp(24px, 4.4vw, 74px);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(247, 243, 236, 0.98)),
    var(--paper);
}

.safety-shell {
  display: grid;
  max-width: 1480px;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.6fr);
  gap: clamp(24px, 4vw, 64px);
  align-items: start;
  margin: 0 auto;
}

.safety-heading {
  position: sticky;
  top: 24px;
}

.safety-heading h2 {
  max-width: 9ch;
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.7rem, 5vw, 5.4rem);
  font-weight: 500;
  line-height: 0.98;
  text-wrap: balance;
}

.safety-heading p {
  max-width: 520px;
  margin: clamp(18px, 2.4vw, 26px) 0 0;
  color: #4b4740;
  font-size: clamp(1.02rem, 1.35vw, 1.18rem);
  line-height: 1.6;
}

.safety-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 1.8vw, 22px);
}

.safety-card {
  padding: clamp(22px, 2.2vw, 30px);
  border: 1px solid rgba(32, 32, 29, 0.08);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.76);
  box-shadow: 0 16px 42px rgba(63, 50, 34, 0.08);
}

.safety-card h3 {
  margin: 0;
  color: var(--deep);
  font-size: clamp(1.2rem, 1.5vw, 1.5rem);
  font-weight: 760;
  line-height: 1.15;
}

.safety-card p {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.58;
}

.booking-section {
  padding: clamp(58px, 7vw, 96px) clamp(24px, 4.4vw, 74px);
  color: var(--ivory);
  background: var(--deep);
}

.booking-shell {
  max-width: 1480px;
  margin: 0 auto;
}

.booking-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: clamp(24px, 5vw, 84px);
  align-items: end;
}

.booking-heading h2 {
  max-width: 10ch;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.8rem, 5vw, 5.5rem);
  font-weight: 500;
  line-height: 0.98;
  text-wrap: balance;
}

.booking-heading p {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 253, 248, 0.72);
  font-size: clamp(1.02rem, 1.35vw, 1.18rem);
  line-height: 1.6;
}

.booking-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 64px);
  margin-top: clamp(36px, 5vw, 64px);
  padding-top: clamp(26px, 3vw, 38px);
  border-top: 1px solid rgba(255, 253, 248, 0.2);
}

.booking-flow article {
  position: relative;
  padding-top: 20px;
}

.booking-flow article::before {
  position: absolute;
  top: -31px;
  left: 0;
  width: 48px;
  height: 3px;
  content: "";
  background: var(--gold);
}

.booking-flow h3 {
  margin: 0;
  color: var(--ivory);
  font-size: clamp(1.2rem, 1.55vw, 1.52rem);
  font-weight: 730;
  line-height: 1.2;
}

.booking-flow p {
  margin: 13px 0 0;
  color: rgba(255, 253, 248, 0.68);
  font-size: 0.98rem;
  line-height: 1.62;
}

.faq-section {
  padding: clamp(58px, 7vw, 96px) clamp(24px, 4.4vw, 74px);
  border-top: 1px solid rgba(32, 32, 29, 0.07);
  background: var(--ivory);
}

.faq-shell {
  display: grid;
  max-width: 1480px;
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.55fr);
  gap: clamp(28px, 5vw, 82px);
  align-items: start;
  margin: 0 auto;
}

.faq-heading h2 {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.8rem, 5vw, 5.4rem);
  font-weight: 500;
  line-height: 0.98;
  text-wrap: balance;
}

.faq-heading p {
  max-width: 510px;
  margin: clamp(18px, 2.4vw, 26px) 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.25vw, 1.15rem);
  line-height: 1.6;
}

.faq-list {
  border-top: 1px solid rgba(32, 32, 29, 0.13);
}

.faq-list details {
  border-bottom: 1px solid rgba(32, 32, 29, 0.13);
}

.faq-list summary {
  position: relative;
  padding: clamp(22px, 2.5vw, 31px) 54px clamp(22px, 2.5vw, 31px) 0;
  color: var(--deep);
  font-size: clamp(1.12rem, 1.55vw, 1.48rem);
  font-weight: 740;
  line-height: 1.28;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::before,
.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 8px;
  width: 22px;
  height: 2px;
  content: "";
  background: var(--gold-dark);
  transform: translateY(-50%);
  transition: transform 180ms ease;
}

.faq-list summary::after {
  transform: translateY(-50%) rotate(90deg);
}

.faq-list details[open] summary::after {
  transform: translateY(-50%) rotate(0deg);
}

.faq-list summary:focus-visible {
  outline: 3px solid rgba(189, 150, 98, 0.3);
  outline-offset: 5px;
}

.faq-list details p {
  max-width: 880px;
  margin: -6px 0 0;
  padding: 0 54px clamp(24px, 2.8vw, 34px) 0;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.1vw, 1.08rem);
  line-height: 1.65;
}

.faq-list details p a {
  color: var(--deep);
  font-weight: 700;
  text-decoration-color: var(--gold-dark);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.faq-list details p a:focus-visible {
  outline: 3px solid rgba(189, 150, 98, 0.3);
  outline-offset: 3px;
}

.mobile-contact-bar {
  position: fixed;
  right: 50%;
  bottom: max(16px, env(safe-area-inset-bottom));
  z-index: 50;
  display: grid;
  width: min(720px, calc(100% - 32px));
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 22px;
  background: rgba(255, 253, 248, 0.72);
  box-shadow:
    0 20px 54px rgba(46, 35, 22, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
  -webkit-backdrop-filter: blur(22px) saturate(1.28);
  backdrop-filter: blur(22px) saturate(1.28);
  transform: translateX(50%);
}

.mobile-contact-link {
  position: relative;
  isolation: isolate;
  display: flex;
  min-width: 0;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 14px;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 760;
  text-decoration: none;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.16);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.68),
    inset 0 -1px 0 rgba(0, 0, 0, 0.1),
    0 9px 22px rgba(32, 32, 29, 0.16);
  transition: transform 180ms ease, filter 180ms ease, box-shadow 180ms ease;
}

.mobile-contact-link::before {
  position: absolute;
  inset: 1px 1px 48%;
  z-index: -1;
  border-radius: 12px 12px 55% 55%;
  pointer-events: none;
  content: "";
  background: linear-gradient(115deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.08) 60%);
  mix-blend-mode: screen;
}

.mobile-contact-link::after {
  position: absolute;
  inset: -55% -80%;
  z-index: -1;
  pointer-events: none;
  content: "";
  background: linear-gradient(110deg, transparent 40%, rgba(255, 255, 255, 0.48) 49%, transparent 58%);
  transform: translateX(-42%) rotate(8deg);
  animation: contact-dock-shimmer 7s ease-in-out infinite;
}

.mobile-contact-link:hover,
.mobile-contact-link:focus-visible {
  filter: saturate(1.1) contrast(1.03);
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.74),
    inset 0 -1px 0 rgba(0, 0, 0, 0.08),
    0 13px 28px rgba(32, 32, 29, 0.22);
}

.mobile-contact-link:focus-visible {
  outline: 3px solid rgba(189, 150, 98, 0.5);
  outline-offset: 3px;
}

.mobile-contact-link svg {
  width: 29px;
  height: 29px;
  flex: 0 0 auto;
  fill: currentColor;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.14));
}

.mobile-instagram {
  background:
    radial-gradient(circle at 24% 108%, #ffe778 0 18%, #ff5a3f 42%, transparent 61%),
    radial-gradient(circle at 12% 10%, #ffd96d 0 10%, transparent 34%),
    linear-gradient(135deg, #7338c8 0%, #c72d91 42%, #ec2762 68%, #ff6438 100%);
}

.mobile-whatsapp {
  background:
    radial-gradient(circle at 26% 8%, rgba(184, 255, 207, 0.9), transparent 38%),
    linear-gradient(150deg, #3ee874 0%, #19bd54 52%, #078a3d 100%);
}

.mobile-telegram {
  background:
    radial-gradient(circle at 25% 8%, rgba(149, 231, 255, 0.92), transparent 38%),
    linear-gradient(150deg, #3bc9ff 0%, #159ee9 54%, #087dd5 100%);
}

@keyframes contact-dock-shimmer {
  0%,
  58% {
    transform: translateX(-42%) rotate(8deg);
  }

  78%,
  100% {
    transform: translateX(44%) rotate(8deg);
  }
}

.site-footer {
  scroll-margin-top: 88px;
  padding: clamp(34px, 5vw, 58px) clamp(24px, 4.4vw, 74px) clamp(26px, 4vw, 38px);
  border-top: 1px solid rgba(32, 32, 29, 0.08);
  color: rgba(75, 71, 64, 0.72);
  background: var(--paper);
}

.site-footer p {
  max-width: 1480px;
  margin: 0 auto;
  line-height: 1.5;
}

.footer-statement {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 4.4vw, 5rem);
  font-weight: 500;
  line-height: 1.02;
  text-wrap: balance;
}

.footer-cities {
  margin-top: clamp(14px, 2vw, 22px);
  color: var(--muted);
  font-size: clamp(1.08rem, 2.1vw, 1.65rem);
  font-weight: 600;
}

.agent-discovery-link {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.agent-page {
  min-height: 100vh;
  color: var(--ivory);
  background:
    linear-gradient(145deg, #101716 0%, #172c2d 52%, #1f1d19 100%),
    var(--deep);
}

.agent-main {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(46px, 7vw, 92px) 0;
}

.agent-hero {
  padding-bottom: clamp(28px, 4vw, 48px);
  border-bottom: 1px solid rgba(220, 193, 147, 0.24);
}

.agent-hero h1 {
  max-width: none;
  color: var(--ivory);
  font-size: clamp(3rem, 7vw, 6.4rem);
}

.agent-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 22px 0 0;
  color: rgba(255, 253, 248, 0.76);
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  line-height: 1.62;
}

.agent-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(28px, 4vw, 44px);
  background: rgba(220, 193, 147, 0.2);
  border: 1px solid rgba(220, 193, 147, 0.22);
}

.agent-facts article {
  min-height: 260px;
  padding: clamp(22px, 3vw, 34px);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.075), rgba(255, 253, 248, 0.035)),
    rgba(12, 20, 19, 0.84);
}

.agent-facts h2 {
  margin: 0 0 18px;
  color: var(--ivory);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.65rem, 2.4vw, 2.4rem);
  font-weight: 500;
  line-height: 1.05;
}

.agent-facts ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding-left: 20px;
  color: rgba(255, 253, 248, 0.74);
  line-height: 1.55;
}

.agent-facts p {
  margin: 0;
  color: rgba(255, 253, 248, 0.74);
  font-size: 1.02rem;
  line-height: 1.62;
}

.agent-facts a {
  color: #dcc193;
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: minmax(220px, 1fr) auto;
  }

  .main-nav {
    display: none;
  }

  .hero {
    min-height: auto;
    grid-template-columns: minmax(0, 560px) minmax(120px, 1fr);
    align-items: start;
    padding-top: clamp(28px, 4vw, 46px);
    padding-bottom: clamp(36px, 5vw, 60px);
  }

  .hero h1 {
    max-width: 100%;
  }

  .safety-heading h2 {
    max-width: 100%;
    font-size: clamp(2.65rem, 4.9vw, 5.4rem);
  }

  .direction-card {
    min-height: 330px;
    grid-template-columns: minmax(260px, 42%) minmax(0, 1fr);
  }

}

@media (min-width: 761px) and (max-width: 980px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.78fr);
    gap: 24px;
    padding-right: 36px;
    padding-left: 36px;
  }

  .hero-copy {
    min-width: 0;
  }

  .hero-media {
    width: min(100%, 320px);
  }

  .hero h1 {
    font-size: clamp(2.7rem, 5.2vw, 3.3rem);
  }
}

@media (min-width: 761px) and (max-width: 900px) {
  .science-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .direction-card {
    min-height: 300px;
    grid-template-columns: minmax(240px, 40%) minmax(0, 1fr);
  }

  .direction-card h3 {
    font-size: clamp(1.72rem, 4vw, 2.5rem);
  }

  .direction-card p {
    font-size: 1.06rem;
  }

  .safety-shell {
    grid-template-columns: 1fr;
  }

  .faq-shell {
    grid-template-columns: 1fr;
  }

  .booking-heading {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .safety-heading {
    position: static;
  }

  .safety-heading h2 {
    max-width: 100%;
    font-size: clamp(2.6rem, 7vw, 3.6rem);
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: calc(88px + env(safe-area-inset-bottom));
  }

  .site-header {
    min-height: 74px;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
    padding: 0 18px;
  }

  .brand {
    gap: 9px;
  }

  .brand-icon {
    width: 34px;
    height: 34px;
  }

  .brand-icon svg {
    width: 32px;
    height: 32px;
  }

  .brand strong {
    font-size: 1.18rem;
  }

  .brand small {
    font-size: 0.72rem;
  }

  .header-actions {
    gap: 12px;
  }

  .language {
    display: none;
  }

  .hero {
    display: flex;
    min-height: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 26px;
    padding: 34px 18px 30px;
  }

  .hero::before {
    background: linear-gradient(180deg, rgba(249, 246, 239, 0.98), rgba(249, 246, 239, 0.9));
  }

  .hero-media {
    position: relative;
    order: 2;
    width: min(100%, 440px);
    min-height: 0;
    margin: 0 auto;
    padding: 20px 0 0;
    overflow: visible;
    border-top: 1px solid rgba(32, 32, 29, 0.16);
    border-left: 0;
  }

  .hero-media::before {
    top: -1px;
    right: 10%;
    bottom: auto;
    left: 10%;
    width: auto;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold) 25%, var(--gold) 75%, transparent);
  }

  .hero-image {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow);
    object-position: center;
  }

  .hero-copy {
    order: 1;
    min-width: 0;
    max-width: none;
  }

  .eyebrow {
    margin-bottom: 16px;
    font-size: 0.96rem;
    line-height: 1.45;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2rem, 9.8vw, 2.9rem);
    line-height: 1;
  }

  .hero-lead {
    max-width: none;
    margin-top: 18px;
    font-size: 1.05rem;
  }

  .services-section {
    padding: 34px 18px;
  }

  .section-title {
    margin-bottom: 24px;
    font-size: clamp(2.35rem, 14vw, 4.2rem);
  }

  .direction-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .direction-card {
    min-height: 0;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    padding: 12px 12px 24px;
  }

  .direction-card img {
    grid-row: auto;
    height: auto;
    min-height: 0;
    max-height: none;
    margin-bottom: 18px;
    aspect-ratio: 4 / 3;
  }

  .direction-card h3 {
    margin-top: 0;
    font-size: clamp(1.75rem, 9vw, 2.45rem);
    line-height: 1.04;
  }

  .direction-card p {
    align-self: auto;
    font-size: 1.05rem;
  }

  .direction-action {
    align-self: auto;
    margin-top: 28px;
  }

  .faq-section {
    padding: 48px 18px;
  }

  .faq-shell {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .faq-heading h2 {
    font-size: clamp(2.45rem, 13vw, 3.65rem);
  }

  .faq-list summary {
    padding-right: 44px;
    font-size: 1.12rem;
  }

  .faq-list details p {
    padding-right: 12px;
  }

  .booking-section {
    padding: 48px 18px;
  }

  .booking-heading {
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: start;
  }

  .booking-heading h2 {
    font-size: clamp(2.45rem, 12vw, 3.65rem);
  }

  .booking-flow {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 34px;
    padding-top: 26px;
  }

  .booking-flow article {
    padding: 0 0 0 20px;
    border-left: 3px solid var(--gold);
  }

  .booking-flow article::before {
    display: none;
  }

  .mobile-contact-bar {
    bottom: 0;
    width: 100%;
    gap: 8px;
    padding: 9px 10px calc(9px + env(safe-area-inset-bottom));
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    border-radius: 0;
  }

  .mobile-contact-link {
    min-height: 56px;
    gap: 7px;
    border-radius: 13px;
    font-size: clamp(0.72rem, 3.1vw, 0.88rem);
  }

  .mobile-contact-link svg {
    width: 26px;
    height: 26px;
  }

  .science-section {
    padding: 52px 18px;
  }

  .science-heading {
    margin-bottom: 24px;
  }

  .science-heading h2 {
    font-size: clamp(2.6rem, 11vw, 3.6rem);
  }

  .science-grid {
    grid-template-columns: 1fr;
  }

  .science-card {
    min-height: 0;
  }

  .safety-section {
    padding: 52px 18px;
  }

  .safety-shell,
  .safety-grid {
    grid-template-columns: 1fr;
  }

  .safety-heading {
    position: static;
  }

  .safety-heading h2 {
    max-width: none;
    font-size: clamp(2.45rem, 12vw, 3.7rem);
  }

  .agent-main {
    width: min(100% - 36px, 1120px);
    padding: 42px 0;
  }

  .agent-facts {
    grid-template-columns: 1fr;
  }

  .agent-facts article {
    min-height: 0;
  }
}

@media (max-width: 370px) {
  .site-header {
    gap: 10px;
    padding: 0 14px;
  }

  .brand {
    gap: 7px;
  }

  .brand-icon {
    width: 30px;
    height: 30px;
  }

  .brand-icon svg {
    width: 28px;
    height: 28px;
  }

  .brand strong {
    font-size: 1rem;
  }

  .brand small {
    font-size: 0.66rem;
  }

}
