@font-face {
  font-family: "Geist";
  src: url("https://cdn.jsdelivr.net/npm/geist@1.7.2/dist/fonts/geist-sans/Geist-Variable.woff2")
    format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #ffffff;
  --bg-soft: #f6f5f2;
  --bg-muted: #efeee9;
  --ink: #1a1917;
  --ink-soft: #363636;
  --muted: #6b6860;
  --line: #e4e2dc;
  --gold: #967100;
  --gold-deep: #7a5c00;
  --gold-soft: rgba(150, 113, 0, 0.1);
  --gold-ring: rgba(150, 113, 0, 0.18);
  --star: #c9a227;
  --radius: 10px;
  --radius-lg: 16px;
  --container: 1280px;
  --header-h: 80px;
  --font-body: "Inter", system-ui, sans-serif;
  --font-display: "Playfair Display", Georgia, serif;
  --font-eyebrow: "Geist", "Inter", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

button {
  font: inherit;
  background: none;
  border: none;
  padding: 0;
  cursor: default;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--ink);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1,
h2 {
  font-family: var(--font-display);
}

h1 {
  font-size: clamp(2.75rem, 4.2vw, 4rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(2.1rem, 3vw, 3rem);
}

h3 {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.35;
}

h4 {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

p {
  margin: 0;
  color: var(--muted);
}

.container {
  width: min(100% - 64px, var(--container));
  margin-inline: auto;
}

.section {
  padding: 112px 0;
}

.section-intro {
  max-width: 640px;
  margin-bottom: 56px;
}

.section-intro.centered {
  margin-inline: auto;
  text-align: center;
}

.section-intro h2 {
  margin-top: 12px;
}

.section-desc {
  margin-top: 16px;
  font-size: 1.0625rem;
}

.eyebrow {
  margin: 0;
  font-family: var(--font-eyebrow);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.eyebrow.light {
  color: rgba(255, 255, 255, 0.72);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  border: 1.5px solid transparent;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.btn-sm {
  min-height: 42px;
  padding: 0 18px;
  font-size: 0.875rem;
}

.btn-primary {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.btn-primary:hover {
  background: #000;
}

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}

.btn-secondary:hover {
  border-color: var(--ink);
}

.btn-on-dark {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}

.btn-on-dark:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.cta-pair {
  display: flex;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 48px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink);
}

.text-link svg {
  width: 15px;
  height: 15px;
}

/* Media placeholders & icons */
.media-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background:
    linear-gradient(145deg, #f0efe9 0%, #e8e6df 100%);
  color: #9a968c;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.media-placeholder svg {
  width: 28px;
  height: 28px;
  opacity: 0.55;
}

.media-placeholder span {
  font-family: var(--font-eyebrow);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.icon-tile {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--gold-soft);
  color: var(--gold-deep);
  flex-shrink: 0;
}

.icon-tile svg {
  width: 22px;
  height: 22px;
}

.icon-tile.sm {
  width: 40px;
  height: 40px;
  border-radius: 10px;
}

.icon-tile.sm svg {
  width: 18px;
  height: 18px;
}

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

.services .grid-3 {
  gap: 16px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: var(--header-h);
  position: relative;
}

.logo img {
  height: 36px;
  width: auto;
}

.menu-toggle {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
  flex-shrink: 0;
  z-index: 110;
}

.menu-toggle-bar {
  position: absolute;
  left: 12px;
  right: 12px;
  height: 1.5px;
  background: var(--ink);
  border-radius: 999px;
  transition: transform 0.3s ease, opacity 0.25s ease, top 0.3s ease;
}

.menu-toggle-bar:nth-child(1) { top: 15px; }
.menu-toggle-bar:nth-child(2) { top: 21px; }
.menu-toggle-bar:nth-child(3) { top: 27px; }

body.menu-open .menu-toggle-bar:nth-child(1) {
  top: 21px;
  transform: rotate(45deg);
}

body.menu-open .menu-toggle-bar:nth-child(2) {
  opacity: 0;
}

body.menu-open .menu-toggle-bar:nth-child(3) {
  top: 21px;
  transform: rotate(-45deg);
}

.nav-backdrop {
  display: none;
}

.nav-drawer {
  display: contents;
}

.nav-panel {
  display: contents;
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}

.nav-contacts {
  display: none;
}

.header-phone {
  flex-shrink: 0;
}

.nav a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--muted);
  position: relative;
}

.nav a svg {
  width: 14px;
  height: 14px;
  margin-top: 1px;
}

.nav a:hover,
.nav a.is-active {
  color: var(--ink);
}

.nav a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

/* Hero */
.hero {
  padding: 72px 0 32px;
  background:
    radial-gradient(ellipse 70% 55% at 85% 20%, rgba(150, 113, 0, 0.07), transparent 60%),
    linear-gradient(180deg, #fbfaf7 0%, #ffffff 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.85fr);
  gap: 48px;
  align-items: center;
}

.hero-copy .eyebrow {
  margin-bottom: 20px;
}

.hero-copy h1 {
  max-width: none;
  margin-bottom: 22px;
  font-size: clamp(2.2rem, 2.85vw, 2.9rem);
  line-height: 1.12;
}

.hero-copy .lead {
  max-width: 600px;
}

.hero-copy .lead-break {
  display: block;
  margin-top: 6px;
}

.lead {
  max-width: none;
  font-size: 1rem;
  line-height: 1.55;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 40px;
}

.trust-row {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 10px 16px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.trust-row li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--ink-soft);
  white-space: nowrap;
  flex-shrink: 0;
}

.trust-icon {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: var(--bg-soft);
  color: var(--gold-deep);
  flex-shrink: 0;
}

.trust-icon svg {
  width: 14px;
  height: 14px;
}

.hero-media {
  position: relative;
  isolation: isolate;
  min-height: 560px;
  width: 100%;
  max-width: 440px;
  margin-left: auto;
}

.hero-media-glow {
  position: absolute;
  inset: 8% -6% -8% 12%;
  background: radial-gradient(
    ellipse at center,
    rgba(150, 113, 0, 0.22) 0%,
    rgba(150, 113, 0, 0.06) 45%,
    transparent 70%
  );
  filter: blur(8px);
  z-index: 0;
  pointer-events: none;
}

.hero-media-back {
  position: absolute;
  top: 24px;
  right: -6px;
  width: 90%;
  height: 88%;
  border-radius: 22px;
  border: 1.5px solid rgba(150, 113, 0, 0.55);
  background:
    linear-gradient(145deg, rgba(150, 113, 0, 0.14), rgba(150, 113, 0, 0.04));
  z-index: 1;
  transform: rotate(3deg);
}

.hero-slider {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-slider-viewport,
.gallery-rail,
.testimonials-rail {
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}

.hero-slider-viewport.is-dragging,
.gallery-rail.is-dragging,
.testimonials-rail.is-dragging {
  cursor: grabbing;
}

.hero-slider-viewport {
  overflow: hidden;
  border-radius: 22px;
  aspect-ratio: 3 / 4;
  min-height: 540px;
  box-shadow:
    0 1px 2px rgba(26, 25, 23, 0.04),
    0 24px 48px rgba(26, 25, 23, 0.1),
    0 8px 16px rgba(150, 113, 0, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.65);
}

.hero-slider-track {
  display: flex;
  height: 100%;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.hero-slide {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  min-height: 540px;
  border-radius: 0;
  background: var(--bg-muted);
  overflow: hidden;
}

.hero-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-slider-ui {
  position: absolute;
  right: 20px;
  bottom: 20px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(228, 226, 220, 0.9);
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(26, 25, 23, 0.1);
}

.hero-slider-btn {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.hero-slider-btn:hover {
  border-color: var(--ink);
  background: var(--bg-soft);
}

.hero-slider-btn svg {
  width: 16px;
  height: 16px;
}

.hero-slider-dots {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 4px;
}

.hero-slider-dots button {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #cfcabe;
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease, border-radius 0.2s ease;
}

.hero-slider-dots button.is-active {
  width: 18px;
  border-radius: 999px;
  background: var(--gold);
}

.hero-float-card {
  position: absolute;
  left: -20px;
  bottom: 28px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 12px 8px 8px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(228, 226, 220, 0.9);
  border-radius: 12px;
  box-shadow:
    0 2px 4px rgba(26, 25, 23, 0.04),
    0 18px 40px rgba(26, 25, 23, 0.1);
}

.hero-float-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 6px;
  background: var(--gold-soft);
  color: var(--gold-deep);
  flex-shrink: 0;
}

.hero-float-icon svg {
  width: 18px;
  height: 18px;
}

.hero-float-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hero-float-card span {
  display: block;
  margin-top: 2px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--muted);
}

/* Benefits */
.benefits {
  padding-top: 8px;
  padding-bottom: 56px;
}

.benefits .grid-3 {
  gap: 14px;
}

.benefit {
  padding: 32px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--bg);
  transition: border-color 0.2s ease;
}

.benefit:hover {
  border-color: var(--gold-ring);
}

.benefit--stat {
  text-align: left;
}

.benefit-num {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: -0.04em;
  color: var(--gold);
}

.benefit--stat h3 {
  margin-bottom: 8px;
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.benefit .icon-tile {
  margin-bottom: 22px;
}

.benefit h3 {
  margin-bottom: 10px;
}

.benefit--stat h3 {
  margin-bottom: 8px;
}

.benefit p:not(.benefit-num) {
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--muted);
}

/* About */
.about {
  background: #fff;
}

.services {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
}

.about-top {
  display: grid;
  grid-template-columns: 0.95fr 1.15fr;
  gap: 72px;
  align-items: start;
  margin-bottom: 48px;
}

.about-intro h2 {
  margin-top: 14px;
  max-width: none;
}

.about-more {
  margin-top: 28px;
}

.about-content > p {
  font-size: 1.0625rem;
  line-height: 1.5;
  margin-bottom: 32px;
  max-width: 52ch;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 28px;
  row-gap: 18px;
}

.feature {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 0;
  background: none;
  border: none;
}

.feature h4 {
  margin-bottom: 2px;
  font-size: 0.9375rem;
}

.feature p {
  font-size: 0.8125rem;
  line-height: 1.45;
}

.feature .icon-tile.sm {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: rgba(150, 113, 0, 0.08);
}

.feature .icon-tile.sm svg {
  width: 16px;
  height: 16px;
}

.about-image {
  width: 100%;
  height: 400px;
  aspect-ratio: auto;
  min-height: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-muted);
}

.about-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Services cards */
.card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.2s ease;
}

.card:hover {
  border-color: var(--gold-ring);
}

.card:hover .text-link {
  color: var(--gold-deep);
}

.card-image {
  aspect-ratio: 16 / 11;
  border-radius: 0;
  overflow: hidden;
  background: var(--bg-muted);
}

.card-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.card-body {
  padding: 24px 24px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-body h3 {
  margin-bottom: 10px;
}

.card-body p {
  font-size: 0.9375rem;
  flex: 1;
}

/* Why us */
/* Trust = why + testimonials as one chapter */
.trust {
  overflow: hidden;
  background: #fff;
  border-top: 1px solid var(--line);
}

.trust-intro {
  max-width: 720px;
  margin-bottom: 48px;
}

.trust-intro h2 {
  margin-top: 12px;
}

.trust-intro h2 .h2-break {
  display: inline-block;
  margin-top: 0.2em;
}

.trust-intro .section-desc {
  margin-top: 14px;
  max-width: 720px;
}

.trust-intro .desc-break {
  display: block;
  margin-top: 6px;
}

.trust-reasons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0 40px;
  margin-bottom: 64px;
  padding: 8px 0 0;
  border-top: 1px solid var(--line);
  background: transparent;
}

.why-item {
  padding: 28px 0 0;
  background: transparent;
  border: none;
  border-radius: 0;
  position: relative;
}

.why-item + .why-item {
  padding-left: 32px;
  border-left: 1px solid var(--line);
}

.why-index {
  display: block;
  margin-bottom: 18px;
  font-family: var(--font-eyebrow);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--gold);
}

.why-item h3 {
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.why-item p {
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--muted);
}

.trust-divider {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
  padding-top: 8px;
  border-top: 1px solid var(--line);
}

.trust-divider-label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 20px;
}

.trust-divider-label strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
}

/* Gallery */
.gallery {
  background: var(--bg-soft);
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding-top: 80px;
}

.gallery-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 40px;
}

.gallery-head-copy {
  max-width: 640px;
}

.gallery-head-copy h2 {
  margin-top: 10px;
}

.gallery-head-copy .section-desc {
  margin-top: 12px;
}

.gallery-cta {
  justify-content: flex-start;
}

.gallery-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  margin-top: 20px;
}

.gallery-footer .gallery-slider-ui {
  grid-column: 2;
  justify-self: center;
}

.gallery-footer .btn {
  grid-column: 3;
  justify-self: end;
}

.gallery .section-intro {
  margin-bottom: 48px;
}

.gallery-bleed {
  position: relative;
  width: 100%;
}

.gallery-rail {
  overflow: visible;
  padding: 12px 0 8px;
  padding-left: max(32px, calc((100vw - var(--container)) / 2));
}

.gallery-track {
  display: flex;
  align-items: end;
  gap: 14px;
  width: max-content;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
  padding: 0 0 12px;
}

.gallery-item {
  width: min(280px, 20vw);
  flex-shrink: 0;
  aspect-ratio: 3 / 4;
  min-height: 320px;
  border-radius: 14px;
  overflow: hidden;
  background: var(--bg-muted);
}

.gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.gallery-item.tall {
  aspect-ratio: 3 / 4.55;
  min-height: 380px;
}

.gallery-item:nth-child(even) {
  margin-bottom: 32px;
}

.gallery-slider-ui {
  display: flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin: 0;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  border-radius: 999px;
}

/* Testimonials */
.testimonials-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 48px;
}

.testimonials-header h2 {
  margin-top: 12px;
}

.slider-nav {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
  padding-top: 20px;
}

.nav-arrow {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1.5px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  cursor: pointer;
  background: #fff;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.nav-arrow:hover {
  border-color: var(--ink);
  background: var(--bg-soft);
}

.nav-arrow:disabled {
  opacity: 0.35;
  cursor: default;
}

.nav-arrow svg {
  width: 18px;
  height: 18px;
}

.testimonials-bleed {
  width: 100%;
}

.testimonials-rail {
  padding-left: max(32px, calc((100vw - var(--container)) / 2));
  overflow: visible;
}

.testimonials-track {
  display: flex;
  gap: 18px;
  width: max-content;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
  padding-right: 48px;
}

.testimonial {
  position: relative;
  width: 360px;
  flex-shrink: 0;
  padding: 32px 28px 28px;
  border: 1px solid var(--line);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 300px;
  background: var(--bg-soft);
}

.testimonial-mark {
  position: absolute;
  top: 10px;
  right: 22px;
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.28;
  pointer-events: none;
  user-select: none;
}

.stars {
  display: flex;
  gap: 3px;
  color: var(--star);
}

.stars svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
  stroke: currentColor;
}

.testimonial > p {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.55;
  letter-spacing: -0.01em;
  color: var(--ink);
  flex: 1;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(228, 226, 220, 0.9);
}

.avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(145deg, #e8e6df, #d8d5cc);
}

.testimonial-footer strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink);
}

.testimonial-footer .role {
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 2px;
}

/* Contact */
.contact {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  color: #f6f5f2;
  background-color: #1a1917;
  background-image: var(--contact-image);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.contact-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      100deg,
      rgba(18, 17, 15, 0.92) 0%,
      rgba(18, 17, 15, 0.82) 38%,
      rgba(18, 17, 15, 0.55) 70%,
      rgba(18, 17, 15, 0.4) 100%
    );
  pointer-events: none;
}

.contact-inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.contact-inner .eyebrow {
  margin-bottom: 16px;
  color: #d4b04a;
}

.contact-inner h2 {
  margin-bottom: 18px;
  color: #fff;
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  line-height: 1.08;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.contact-lead {
  max-width: 700px;
  margin-bottom: 36px;
  font-size: 1.05rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.4);
}

.contact-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 0;
}

.btn-contact-primary {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}

.btn-contact-primary:hover {
  background: var(--bg-soft);
  border-color: var(--bg-soft);
}

.btn-contact-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.btn-contact-secondary:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.2);
}

.contact-meta {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: nowrap;
  gap: 28px 48px;
  margin: 48px 0 0;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  list-style: none;
}

.contact-meta li {
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex-shrink: 0;
}

.contact-meta strong {
  font-family: var(--font-eyebrow);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #d4b04a;
}

.contact-meta span {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.88);
  white-space: nowrap;
}

/* Footer */
.site-footer {
  margin-top: 0;
  padding: 80px 0 0;
  background: #2c2b28;
  color: rgba(246, 245, 242, 0.72);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 64px;
  padding-bottom: 56px;
}

.footer-brand img {
  height: 34px;
  width: auto;
  margin-bottom: 16px;
}

.footer-brand p {
  max-width: 28ch;
  font-size: 0.9375rem;
  color: rgba(246, 245, 242, 0.62);
}

.footer-col h4 {
  margin-bottom: 18px;
  font-family: var(--font-eyebrow);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #c4a035;
}

.site-footer .contact-list li {
  margin-bottom: 14px;
}

.site-footer .sitemap li {
  margin-bottom: 6px;
}

.site-footer .contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9375rem;
  color: rgba(246, 245, 242, 0.62);
}

.site-footer .contact-list svg {
  width: 16px;
  height: 16px;
  margin-top: 3px;
  color: #c4a035;
  flex-shrink: 0;
}

.site-footer .contact-list a,
.site-footer .sitemap a {
  color: rgba(246, 245, 242, 0.72);
}

.site-footer .contact-list a:hover,
.site-footer .sitemap a:hover,
.site-footer .footer-legal a:hover {
  color: #fff;
}

.site-footer .sitemap a {
  font-size: 0.9375rem;
}

.footer-bottom-bar {
  background: #242320;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}

.footer-legal {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 20px;
}

.footer-legal p,
.footer-legal a {
  margin: 0;
  font-size: 0.8125rem;
  color: rgba(246, 245, 242, 0.45);
}

.footer-sitepro {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.footer-sitepro-logo {
  position: relative;
  display: inline-block;
  width: auto;
  height: 32px;
}

.footer-sitepro-logo img {
  display: block;
  width: auto;
  height: 32px;
  object-fit: contain;
  object-position: right center;
  transition: opacity 0.35s ease;
}

.footer-sitepro-logo-white {
  position: relative;
  opacity: 1;
}

.footer-sitepro-logo-color {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.footer-sitepro:hover .footer-sitepro-logo-white,
.footer-sitepro:focus-visible .footer-sitepro-logo-white {
  opacity: 0;
}

.footer-sitepro:hover .footer-sitepro-logo-color,
.footer-sitepro:focus-visible .footer-sitepro-logo-color {
  opacity: 1;
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ========== Responsive ========== */
@media (max-width: 1200px) and (min-width: 1101px) {
  .hero {
    padding: 56px 0 28px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
    gap: 28px;
    align-items: center;
  }

  .hero-copy h1 {
    font-size: clamp(1.95rem, 2.6vw, 2.4rem);
  }

  .hero-copy .lead {
    max-width: none;
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .hero-actions {
    margin-bottom: 28px;
  }

  .trust-row {
    flex-wrap: wrap;
    gap: 10px 12px;
  }

  .trust-row li {
    white-space: normal;
    font-size: 0.75rem;
  }

  .hero-media {
    max-width: 400px;
    min-height: 0;
  }

  .hero-slider-viewport,
  .hero-slide {
    min-height: 400px;
  }

  .hero-float-card {
    left: -20px;
    bottom: 16px;
    gap: 8px;
  }

  .hero-float-card strong {
    font-size: 1.05rem;
  }

  .hero-float-card span {
    font-size: 0.7rem;
  }

  .hero-float-icon {
    width: 34px;
    height: 34px;
  }
}

@media (max-width: 1100px) {
  .hero {
    padding: 48px 0 24px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero-copy h1 {
    font-size: clamp(1.95rem, 4.2vw, 2.45rem);
  }

  .hero-copy h1 br {
    display: none;
  }

  .hero-copy .lead {
    max-width: 54ch;
  }

  .hero-media {
    max-width: 400px;
    margin: 0 auto;
    min-height: 0;
  }

  .hero-slider-viewport,
  .hero-slide {
    min-height: 440px;
  }

  .hero-float-card {
    display: none;
  }

  .trust-row {
    flex-wrap: wrap;
    gap: 12px 16px;
  }

  .trust-row li {
    white-space: normal;
  }

  .trust-reasons {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 32px;
  }

  .why-item + .why-item {
    padding-left: 0;
    border-left: none;
  }

  .why-item:nth-child(even) {
    padding-left: 28px;
    border-left: 1px solid var(--line);
  }

  .footer-top {
    gap: 40px;
  }
}

@media (max-width: 900px) {
  :root {
    --header-h: 68px;
  }

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

  .section {
    padding: 48px 0;
  }

  .menu-toggle {
    display: block;
  }

  .header-phone {
    display: none;
  }

  .site-header {
    z-index: 200;
    background: #ffffff;
  }

  .header-inner {
    z-index: 220;
    background: #ffffff;
  }

  .logo,
  .menu-toggle {
    position: relative;
    z-index: 230;
  }

  .nav-backdrop {
    display: block;
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 180;
    background: rgba(18, 17, 15, 0.48);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s ease, visibility 0.35s ease;
  }

  body.menu-open .nav-backdrop {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-backdrop[hidden] {
    display: block;
  }

  .nav-drawer {
    display: block;
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    z-index: 190;
    overflow: hidden;
    pointer-events: none;
  }

  body.menu-open .nav-drawer {
    pointer-events: auto;
  }

  .nav-panel {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    padding: 16px 20px 24px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 24px 48px rgba(26, 25, 23, 0.12);
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  }

  body.menu-open .nav-panel {
    transform: translateY(0);
  }

  .nav {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin-left: 0;
  }

  .nav a {
    padding: 10px 0;
    font-size: 0.9375rem;
    border-bottom: 1px solid var(--line);
  }

  .nav a.is-active::after {
    display: none;
  }

  .nav a.is-active {
    color: var(--gold-deep);
  }

  .nav-contacts {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .nav-contacts .btn {
    width: 100%;
    justify-content: center;
  }

  body.menu-open {
    overflow: hidden;
  }

  .hero {
    padding: 48px 0 24px;
  }

  .hero-copy h1 {
    font-size: clamp(1.9rem, 7vw, 2.5rem);
  }

  .hero-media {
    max-width: 400px;
  }

  .hero-slider-viewport,
  .hero-slide {
    min-height: 420px;
  }

  .grid-3,
  .services .grid-3,
  .benefits .grid-3 {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .trust-reasons {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .why-item {
    padding-top: 16px;
  }

  .why-item:nth-child(even) {
    padding-left: 0;
    border-left: none;
  }

  .gallery {
    padding: 48px 0;
  }

  .gallery-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .gallery-item {
    width: min(240px, 68vw);
    min-height: 280px;
  }

  .gallery-item.tall {
    aspect-ratio: 3 / 4;
    min-height: 280px;
  }

  .gallery-track {
    align-items: center;
  }

  .gallery-item:nth-child(even) {
    margin-bottom: 0;
  }

  .gallery-footer {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .gallery-footer .gallery-slider-ui {
    grid-column: auto;
    justify-self: auto;
    align-self: center;
  }

  .gallery-footer .btn {
    grid-column: auto;
    justify-self: auto;
    width: 100%;
    justify-content: center;
  }

  .gallery-rail {
    padding-left: 20px;
  }

  .about-top {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .about-image {
    height: 260px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    row-gap: 16px;
  }

  .section-intro.centered {
    text-align: left;
  }

  .section-intro.centered h2 {
    margin-left: 0;
  }

  .cta-pair {
    flex-wrap: wrap;
  }

  .about-intro h2 br,
  .contact-inner h2 br {
    display: none;
  }

  .trust-intro h2 .h2-break {
    margin-top: 0.28em;
  }

  .trust-divider {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .trust-divider-label strong {
    font-size: 1.25rem;
  }

  .testimonials-rail {
    padding-left: 20px;
  }

  .testimonial {
    width: min(320px, 82vw);
    min-height: 280px;
  }

  .contact {
    padding: 48px 0;
    background-attachment: scroll;
  }

  .contact-meta {
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-start;
    gap: 18px;
  }

  .contact-meta li {
    flex-shrink: 1;
    width: 100%;
  }

  .contact-meta span {
    white-space: normal;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-bottom: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 32px, var(--container));
  }

  .section {
    padding: 48px 0;
  }

  .gallery-rail {
    padding-left: 16px;
  }

  .logo img {
    height: 30px;
  }

  .btn {
    min-height: 46px;
    padding: 0 20px;
    font-size: 0.875rem;
  }

  .btn-sm {
    min-height: 40px;
    padding: 0 14px;
    font-size: 0.8125rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

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

  .hero-slider-viewport,
  .hero-slide {
    min-height: 360px;
    border-radius: 16px;
  }

  .benefit {
    padding: 24px 20px;
  }

  .benefit-num {
    font-size: 2.5rem;
  }

  .gallery-footer .btn {
    width: 100%;
    justify-content: center;
  }

  .about-image {
    height: 200px;
  }

  .about-more {
    width: 100%;
    justify-content: center;
  }

  .card-body {
    padding: 20px 18px 22px;
  }

  .contact-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .contact-cta .btn {
    width: 100%;
    justify-content: center;
  }

  .contact-inner h2 {
    font-size: clamp(1.85rem, 8vw, 2.4rem);
  }

  .site-footer {
    padding-top: 56px;
  }

  .footer-sitepro-logo,
  .footer-sitepro-logo img {
    height: 28px;
  }
}

@media (max-width: 400px) {
  .header-inner {
    gap: 12px;
  }

  .nav-panel {
    padding: 22px 16px 28px;
  }

  .hero-copy .eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.08em;
  }

  .gallery-item {
    width: 78vw;
  }
}
