:root {
  --bg: #f5f1ea;
  --bg-soft: #faf7f2;
  --surface: rgba(255, 255, 255, 0.7);
  --surface-strong: #ffffff;
  --text: #181512;
  --muted: #655d56;
  --line: rgba(24, 21, 18, 0.08);
  --accent: #1f1a15;
  --accent-soft: #ece5dc;
  --shadow: 0 18px 60px rgba(47, 34, 23, 0.12);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.82), transparent 30%),
    linear-gradient(180deg, #f7f3ee 0%, #f4efe8 48%, #f1ebe3 100%);
}

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

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

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 28px 0 44px;
  min-height: min(100svh, 920px);
  display: flex;
  align-items: center;
}

.hero__glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(40px);
  opacity: 0.5;
  pointer-events: none;
}

.hero__glow--one {
  width: 340px;
  height: 340px;
  left: -80px;
  top: -50px;
  background: rgba(255,255,255,0.75);
}

.hero__glow--two {
  width: 420px;
  height: 420px;
  right: -120px;
  bottom: -80px;
  background: rgba(223, 211, 197, 0.55);
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 34px;
  align-items: center;
}

.hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero__eyebrow {
  margin: 0 0 16px;
  padding: 9px 14px;
  border: 1px solid rgba(24, 21, 18, 0.08);
  background: rgba(255,255,255,0.44);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--muted);
  backdrop-filter: blur(16px);
}

.hero__title {
  margin: 0;
  max-width: 11ch;
  font-size: clamp(2.85rem, 8vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  font-weight: 800;
}

.hero__title-line-wrap {
  display: block;
  overflow: hidden;
  padding-bottom: 0.08em;
}

.hero__title-line {
  display: block;
  will-change: transform, opacity;
}

.hero__subtitle {
  max-width: 36rem;
  margin: 22px 0 0;
  font-size: clamp(1.02rem, 2.5vw, 1.22rem);
  line-height: 1.68;
  color: #4b433c;
}

.hero__actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 32px;
  width: 100%;
}

.btn {
  min-height: 56px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  font-size: 16px;
  font-weight: 600;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--primary {
  background: var(--accent);
  color: white;
  box-shadow: 0 16px 36px rgba(24, 21, 18, 0.2);
}

.btn--primary::after {
  content: '↗';
  margin-left: 10px;
  font-size: 14px;
  opacity: 0.85;
}

.btn--secondary {
  border: 1px solid rgba(24, 21, 18, 0.14);
  background: rgba(255,255,255,0.8);
  color: var(--text);
  backdrop-filter: blur(18px);
}

.hero__link {
  margin-top: 16px;
  font-size: 15px;
  font-weight: 600;
  color: var(--muted);
  text-decoration: underline;
  text-decoration-color: rgba(101, 93, 86, 0.3);
  text-underline-offset: 0.22em;
}

.hero__pill {
  margin-top: 22px;
  padding: 10px 14px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(24, 21, 18, 0.08);
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 8px 22px rgba(24, 21, 18, 0.06);
  backdrop-filter: blur(14px);
}

.hero__facts {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero__facts li {
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.54);
  border: 1px solid rgba(24, 21, 18, 0.07);
  color: #5d554e;
  font-size: 13px;
  font-weight: 600;
}

.hero__media {
  position: relative;
}

.hero__image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #f8f4ef 0%, #efe7de 100%);
  box-shadow: var(--shadow);
  min-height: 420px;
  border: 1px solid rgba(255,255,255,0.65);
}

.hero__image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0));
  pointer-events: none;
}

.hero__image {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center center;
  will-change: transform, opacity;
}

.section-label {
  margin: 0 0 12px;
  font-size: 13px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pricing {
  padding: 72px 0 96px;
}

.pricing__inner {
  border-top: 1px solid var(--line);
  padding-top: 34px;
}

.pricing__intro h2 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.pricing__intro p:last-child {
  max-width: 42rem;
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.72;
}

.pricing__grid {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.price-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  background: rgba(255,255,255,0.68);
  border: 1px solid rgba(24, 21, 18, 0.08);
  border-radius: 22px;
  box-shadow: 0 12px 26px rgba(32, 23, 16, 0.05);
  backdrop-filter: blur(14px);
}

.price-card__name {
  font-size: 16px;
  font-weight: 600;
  color: #332c26;
}

.price-card__value {
  font-size: 28px;
  line-height: 1;
  letter-spacing: -0.04em;
}

.pricing__footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin-top: 24px;
}

.pricing__footer p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
}

.pricing__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 18px;
  border-radius: 14px;
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(24, 21, 18, 0.1);
  font-size: 15px;
  font-weight: 600;
}

.trust {
  padding: 0 0 96px;
}

.trust__inner {
  border-top: 1px solid var(--line);
  padding-top: 34px;
}

.trust__intro h2 {
  margin: 0;
  max-width: 13ch;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.trust__intro p:last-child {
  max-width: 42rem;
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.72;
}

.trust__grid {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.trust-card {
  padding: 22px 20px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.78) 0%, rgba(248,244,238,0.92) 100%);
  border: 1px solid rgba(24, 21, 18, 0.08);
  box-shadow: 0 12px 28px rgba(32, 23, 16, 0.05);
}

.trust-card__kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: rgba(31, 26, 21, 0.08);
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.trust-card h3 {
  margin: 18px 0 10px;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
}

.trust-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.trust__note {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin-top: 24px;
  padding: 22px 20px;
  border-radius: 24px;
  background: rgba(31, 26, 21, 0.94);
  color: #f8f4ef;
  box-shadow: 0 18px 40px rgba(24, 21, 18, 0.16);
}

.trust__note p {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: rgba(248, 244, 239, 0.82);
}

.trust__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 18px;
  border-radius: 14px;
  background: #f8f4ef;
  color: var(--accent);
  font-size: 15px;
  font-weight: 700;
}

.contact {
  padding: 0 0 84px;
}

.contact__inner {
  border-top: 1px solid var(--line);
  padding-top: 34px;
}

.contact__intro h2 {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.contact__intro p:last-child {
  max-width: 42rem;
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.72;
}

.contact__layout {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.contact__stack {
  display: grid;
  gap: 14px;
}

.contact__card {
  padding: 22px 20px;
  border-radius: 24px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(24, 21, 18, 0.08);
  box-shadow: 0 12px 28px rgba(32, 23, 16, 0.05);
  backdrop-filter: blur(14px);
}

.contact__card--primary {
  background: linear-gradient(180deg, rgba(31, 26, 21, 0.96) 0%, rgba(48, 39, 31, 0.96) 100%);
  color: #f8f4ef;
  box-shadow: 0 22px 48px rgba(24, 21, 18, 0.18);
}

.contact__card--soft {
  background: linear-gradient(180deg, rgba(248,244,238,0.92) 0%, rgba(255,255,255,0.78) 100%);
}

.contact__eyebrow {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact__card--primary .contact__eyebrow {
  color: rgba(248, 244, 239, 0.72);
}

.contact__card h3 {
  margin: 0;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  letter-spacing: -0.04em;
}

.contact__address {
  margin: 14px 0 0;
  font-size: 1.05rem;
  line-height: 1.7;
  color: inherit;
}

.contact__actions {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.contact__card--primary .btn--secondary {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.16);
  color: #f8f4ef;
}

.hours-list,
.contact__facts {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hours-list {
  display: grid;
  gap: 12px;
}

.hours-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(24, 21, 18, 0.08);
  color: #3b342d;
}

.hours-list li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.hours-list span {
  color: var(--muted);
}

.hours-list strong {
  font-size: 14px;
  letter-spacing: -0.01em;
}

.contact__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact__facts li {
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.68);
  border: 1px solid rgba(24, 21, 18, 0.08);
  color: #5d554e;
  font-size: 14px;
  font-weight: 600;
}

.site-footer {
  padding: 0 0 38px;
}

.site-footer__inner {
  display: grid;
  gap: 20px;
  padding-top: 28px;
  border-top: 1px solid rgba(24, 21, 18, 0.08);
}

.site-footer__eyebrow {
  margin: 0;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.site-footer__text {
  margin: 8px 0 0;
  max-width: 28rem;
  color: var(--muted);
  line-height: 1.65;
}

.site-footer__nav,
.site-footer__meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.site-footer__nav a,
.site-footer__meta a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

@media (min-width: 760px) {
  .hero {
    padding: 34px 0 54px;
  }

  .hero__actions {
    width: auto;
    grid-template-columns: repeat(2, minmax(170px, 1fr));
  }

  .pricing__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing__footer {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .trust__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .trust__note {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .contact__actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer__inner {
    grid-template-columns: 1.2fr 0.9fr 1fr;
    align-items: start;
  }
}

@media (min-width: 980px) {
  .hero__inner {
    grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
    gap: 54px;
  }

  .hero__content {
    padding-right: 20px;
  }

  .hero__image-wrap,
  .hero__image {
    min-height: 520px;
  }

  .contact__layout {
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
    align-items: stretch;
  }

  .contact__card--primary {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}

@media (max-width: 759px) {
  .hero {
    min-height: auto;
    padding-top: 22px;
  }

  .hero__title {
    max-width: 10.5ch;
  }

  .hero__image-wrap,
  .hero__image {
    min-height: 360px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

/* ─── Language switcher ──────────────────────────────────────────────────── */

.lang-switcher {
  position: absolute;
  top: 18px;
  right: max(20px, calc((100% - var(--container)) / 2));
  z-index: 10;
  display: flex;
  gap: 6px;
}

.lang-btn {
  padding: 7px 11px;
  border-radius: 999px;
  border: 1px solid rgba(24, 21, 18, 0.12);
  background: rgba(255, 255, 255, 0.52);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--muted);
  cursor: pointer;
  font-family: inherit;
  line-height: 1;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.lang-btn:hover {
  background: rgba(255, 255, 255, 0.82);
}

.lang-btn.is-active {
  background: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
}