/* ===== Design tokens ===== */
:root {
  --cream: #fbf3e7;
  --cream-deep: #f3e4cf;
  --ink: #2c231b;
  --ink-soft: #6b5c4d;
  --teal: #1c5c5a;
  --teal-deep: #123f3e;
  --turquoise: #22b8ac;
  --coral: #ef6e4c;
  --coral-deep: #d85b3a;
  --gold: #e2a63f;
  --white: #fffdf9;

  --font-display: "Fraunces", serif;
  --font-body: "Manrope", system-ui, -apple-system, sans-serif;

  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;

  --container: 1180px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }

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

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.01em;
}

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral-deep);
  margin-bottom: 10px;
}

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 243, 231, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(44, 35, 27, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 78px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--teal-deep);
  flex-shrink: 0;
}
.logo-mark { height: 38px; width: auto; flex-shrink: 0; }
.logo-text em { font-style: normal; color: var(--coral-deep); }

.main-nav {
  display: flex;
  gap: 32px;
  font-weight: 600;
  font-size: 0.96rem;
}
.main-nav a {
  color: var(--ink-soft);
  transition: color 0.2s ease;
}
.main-nav a:hover { color: var(--teal-deep); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.phone-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--teal-deep);
  color: var(--white);
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  white-space: nowrap;
  transition: background 0.2s ease, transform 0.2s ease;
}
.phone-pill svg { width: 16px; height: 16px; }
.phone-pill:hover { background: var(--coral-deep); transform: translateY(-1px); }

.lang-switch {
  display: flex;
  align-items: center;
  gap: 2px;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  padding: 3px;
}
.lang-switch button {
  border: none;
  background: transparent;
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.03em;
  padding: 6px 13px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.lang-switch button:hover { background: rgba(44, 35, 27, 0.08); }
.lang-switch button.is-active {
  background: var(--ink);
  color: var(--white);
}
.lang-switch button.is-active:hover { background: var(--ink); }

.lang-switch--mobile { display: none; }

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
}
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  margin: 0 auto;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: 96px 0 120px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-deep) 100%);
}

.hero-decor { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.hero-decor .sun {
  position: absolute;
  top: 30px;
  right: -60px;
  width: 340px;
  height: 340px;
  color: var(--gold);
  opacity: 0.35;
}
.hero-decor .plane {
  position: absolute;
  top: 120px;
  left: 8%;
  width: 46px;
  height: 46px;
  color: var(--teal);
  opacity: 0.5;
  animation: float 6s ease-in-out infinite;
}
.hero-decor .wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 90px;
  color: var(--turquoise);
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) rotate(-6deg); }
  50% { transform: translate(0, -18px) rotate(-6deg); }
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.eyebrow {
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--teal-deep);
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(2.4rem, 5.4vw, 4.2rem);
  color: var(--ink);
  margin-bottom: 22px;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 30px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn-primary {
  background: var(--coral);
  color: var(--white);
  box-shadow: 0 10px 24px -8px rgba(239, 110, 76, 0.55);
}
.btn-primary:hover { background: var(--coral-deep); transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  color: var(--teal-deep);
  border: 1.5px solid var(--teal-deep);
}
.btn-ghost:hover { background: var(--teal-deep); color: var(--white); }

.hero-numbers {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.hero-numbers a { transition: color 0.2s ease; }
.hero-numbers a:hover { color: var(--coral-deep); }

/* ===== Services ===== */
.services { padding: 110px 0; }

.services h2, .why h2, .contacts h2 {
  font-size: clamp(2rem, 3.6vw, 2.8rem);
  margin-bottom: 48px;
  color: var(--teal-deep);
  max-width: 620px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 34px 28px;
  box-shadow: 0 4px 24px -8px rgba(44, 35, 27, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px -10px rgba(44, 35, 27, 0.16);
}

.card-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--cream-deep);
  color: var(--coral-deep);
  margin-bottom: 20px;
}
.card-icon svg { width: 26px; height: 26px; }

.card h3 { font-size: 1.2rem; margin-bottom: 10px; color: var(--ink); }
.card p { color: var(--ink-soft); font-size: 0.96rem; line-height: 1.55; }

/* ===== Why ===== */
.why {
  background: var(--teal-deep);
  color: var(--white);
  padding: 110px 0;
}

.why-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
}

.why .section-tag { color: var(--gold); }
.why h2 { color: var(--white); }
.why-lead {
  color: rgba(255, 253, 249, 0.75);
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 420px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px 40px;
}

.why-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--coral);
  margin-bottom: 10px;
}

.why-item h3 { font-size: 1.15rem; margin-bottom: 8px; color: var(--white); }
.why-item p { color: rgba(255, 253, 249, 0.7); font-size: 0.95rem; line-height: 1.55; }

/* ===== Contacts ===== */
.contacts { padding: 110px 0; }
.contacts-lead {
  color: var(--ink-soft);
  font-size: 1.05rem;
  max-width: 480px;
  margin-bottom: 48px;
}

.contacts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}

.contact-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 26px 24px;
  box-shadow: 0 4px 24px -8px rgba(44, 35, 27, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
a.contact-block:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px -10px rgba(44, 35, 27, 0.16);
}

.contact-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--coral-deep);
}
.contact-value {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ink);
}
.contact-value--sm { font-size: 1rem; line-height: 1.4; }
.contact-sub {
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.contacts-bank {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 26px 24px;
  box-shadow: 0 4px 24px -8px rgba(44, 35, 27, 0.08);
  margin-bottom: 56px;
}
.contacts-bank p {
  margin-top: 6px;
  color: var(--ink-soft);
  line-height: 1.5;
}

.reviews-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--teal-deep);
  padding: 12px 20px;
  border: 1.5px solid var(--teal-deep);
  border-radius: 999px;
  margin-bottom: 28px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.reviews-link svg { width: 18px; height: 18px; }
.reviews-link:hover {
  background: var(--teal-deep);
  color: var(--white);
  transform: translateY(-2px);
}

.social-row { display: flex; gap: 16px; }
.social-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--white);
  color: var(--teal-deep);
  box-shadow: 0 4px 16px -6px rgba(44, 35, 27, 0.14);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.social-icon svg { width: 20px; height: 20px; }
.social-icon:hover {
  background: var(--coral);
  color: var(--white);
  transform: translateY(-3px);
}

/* ===== Footer ===== */
.site-footer {
  background: var(--ink);
  color: rgba(255, 253, 249, 0.6);
  padding: 26px 0;
  font-size: 0.86rem;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

/* ===== Mobile ===== */
@media (max-width: 900px) {
  .why-inner { grid-template-columns: 1fr; gap: 40px; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .contacts-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .container { padding: 0 18px; }

  .main-nav {
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    gap: 0;
    padding: 8px 18px 18px;
    border-bottom: 1px solid rgba(44, 35, 27, 0.08);
    box-shadow: 0 12px 24px -12px rgba(44, 35, 27, 0.2);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }
  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .main-nav a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(44, 35, 27, 0.06);
  }

  .header-inner { gap: 10px; }
  .logo-mark { height: 28px; }
  .logo-text { font-size: 1rem; }

  .header-actions { gap: 8px; }
  .phone-pill span { display: none; }
  .phone-pill { padding: 9px 10px; }

  .lang-switch--desktop { display: none; }
  .lang-switch--mobile {
    display: inline-flex;
    align-self: flex-start;
    margin-top: 14px;
  }

  .burger { display: flex; width: 32px; height: 32px; }

  .hero { padding: 60px 0 80px; }
  .hero-decor .sun { width: 220px; height: 220px; top: -60px; right: -80px; }
  .hero-decor .plane { top: 60px; left: 4%; }

  .services, .why, .contacts { padding: 72px 0; }

  .cards-grid { grid-template-columns: 1fr; }
  .contacts-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }

  .footer-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 400px) {
  .logo-mark { height: 24px; }
  .logo-text { font-size: 0.88rem; }
  .phone-pill { display: none; }
}
