:root {
  --color-bg: #f7f1ea;
  --color-surface: #ffffff;
  --color-text: #1f1a17;
  --color-muted: #6f625b;
  --color-accent: #b98b5f;
  --color-accent-dark: #8c643f;
  --color-soft: #eadfd4;
  --color-line: rgba(31, 26, 23, 0.1);
  --shadow-soft: 0 18px 42px rgba(31, 26, 23, 0.09);
  --radius: 20px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

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

.narrow {
  max-width: 860px;
}

.section {
  padding: 48px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247, 241, 234, 0.88);
  border-bottom: 1px solid var(--color-line);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
}

.brand-image img {
  width: auto;
  height: 34px;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--color-muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.nav-menu a:not(.btn):hover,
.footer-links a:hover,
.text-link:hover {
  color: var(--color-accent-dark);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--color-line);
  border-radius: 999px;
  background: var(--color-surface);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--color-text);
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 13px 22px;
  font-weight: 800;
  line-height: 1.2;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(31, 26, 23, 0.14);
}

.btn-primary {
  background: var(--color-accent);
  color: #fffaf5;
}

.btn-primary:hover {
  background: var(--color-accent-dark);
}

.btn-secondary {
  border-color: rgba(185, 139, 95, 0.35);
  background: rgba(255, 255, 255, 0.8);
  color: var(--color-accent-dark);
}

.btn-glass {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  backdrop-filter: blur(14px);
}

.btn-small {
  min-height: 40px;
  padding: 10px 17px;
}

.text-link {
  color: var(--color-accent-dark);
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: calc(100vh - 72px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fffaf5;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  filter: saturate(0.95) contrast(1.02);
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(22, 17, 14, 0.84) 0%, rgba(22, 17, 14, 0.54) 48%, rgba(22, 17, 14, 0.12) 100%),
    linear-gradient(0deg, rgba(22, 17, 14, 0.54) 0%, rgba(22, 17, 14, 0) 44%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  align-items: end;
  gap: 42px;
  padding: 86px 0 92px;
}

.hero-copy {
  max-width: 780px;
}

.eyebrow {
  margin: 0 0 11px;
  color: var(--color-accent-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f4d2ad;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--color-text);
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.08;
}

.hero h1 {
  color: #fffaf5;
}

h1 {
  max-width: 820px;
  font-size: clamp(2.65rem, 6vw, 5.2rem);
}

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

h3 {
  font-size: 1.28rem;
}

.hero-text {
  max-width: 650px;
  margin: 20px 0 0;
  color: rgba(255, 250, 245, 0.82);
  font-size: 1.1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-side {
  display: grid;
  gap: 16px;
  justify-items: stretch;
}

.hero-logo {
  /* width: min(100%, 260px); */
  height: auto;
  justify-self: center;
  filter: invert(1) brightness(1.4);
  opacity: 0.96;
  margin-bottom: 7em;

}

.hero-panel {
  display: grid;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.13);
  padding: 20px;
  backdrop-filter: blur(18px);
}

.hero-panel div {
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  padding-bottom: 12px;
}

.hero-panel div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.stat-number,
.stat-label {
  display: block;
}

.stat-number {
  color: #fff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.1;
}

.stat-label {
  margin-top: 4px;
  color: rgba(255, 250, 245, 0.76);
  font-size: 0.86rem;
  font-weight: 700;
}

.hero-trust {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-bottom: 24px;
}

.hero-trust span {
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  padding: 8px 13px;
  color: rgba(255, 250, 245, 0.86);
  font-size: 0.9rem;
  font-weight: 800;
  backdrop-filter: blur(14px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 26px;
}

.section-heading-row {
  display: flex;
  max-width: none;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.section-heading p:not(.eyebrow) {
  margin: 12px 0 0;
  color: var(--color-muted);
  font-size: 1.02rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card,
.benefit-card,
.price-item,
.faq-list details,
.newsletter-card,
.review-card {
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-surface);
  box-shadow: 0 12px 28px rgba(31, 26, 23, 0.05);
}

.service-card {
  overflow: hidden;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.service-card:hover,
.gallery-grid img:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.service-img {
  height: 230px;
  background: var(--color-soft);
}

.service-body {
  padding: 22px;
}

.service-body p {
  min-height: 76px;
  margin: 10px 0 18px;
  color: var(--color-muted);
}

.split-section {
  background: linear-gradient(180deg, rgba(234, 223, 212, 0.45), rgba(234, 223, 212, 0));
}

.split {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: 44px;
}

.split-media {
  min-height: 430px;
  overflow: hidden;
  border-radius: 28px;
  background: var(--color-soft);
  box-shadow: var(--shadow-soft);
}

.split-copy p:not(.eyebrow) {
  margin: 18px 0;
  color: var(--color-muted);
  font-size: 1.04rem;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--color-text);
  font-weight: 800;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.1em;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--color-accent);
  color: #fff;
  content: "✓";
  font-size: 0.8rem;
  line-height: 20px;
  text-align: center;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.benefit-card {
  padding: 22px;
}

.benefit-icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border-radius: 50%;
  background: var(--color-soft);
  color: var(--color-accent-dark);
  font-weight: 900;
}

.benefit-card p {
  margin: 10px 0 0;
  color: var(--color-muted);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.gallery-grid img {
  aspect-ratio: 4 / 5;
  height: auto;
  border-radius: 22px;
  background: var(--color-soft);
  box-shadow: 0 12px 30px rgba(31, 26, 23, 0.06);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.prices-section {
  background: rgba(255, 255, 255, 0.34);
}

.price-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.price-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
}

.price-item h3 {
  font-family: "Inter", Arial, sans-serif;
  font-size: 1rem;
}

.price-item p {
  margin: 4px 0 0;
  color: var(--color-muted);
  font-size: 0.92rem;
}

.price-value {
  flex: 0 0 auto;
  color: var(--color-accent-dark);
  font-weight: 900;
  text-align: right;
}

.center-action {
  margin-top: 24px;
  text-align: center;
}

.newsletter-card {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 0.85fr);
  align-items: center;
  gap: 28px;
  padding: 30px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(234, 223, 212, 0.72)),
    var(--color-surface);
}

.newsletter-card p:not(.eyebrow) {
  margin: 12px 0 0;
  color: var(--color-muted);
}

.newsletter-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.newsletter-form input {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--color-line);
  border-radius: 999px;
  padding: 0 18px;
  background: #fff;
  color: var(--color-text);
  font: inherit;
}

.newsletter-form input:focus {
  outline: 2px solid rgba(185, 139, 95, 0.24);
  border-color: var(--color-accent);
}

.form-message {
  grid-column: 1 / -1;
  min-height: 20px;
  margin: 0;
  color: var(--color-accent-dark);
  font-size: 0.92rem;
  font-weight: 800;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  padding: 18px 20px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 900;
}

.faq-list p {
  margin: 12px 0 0;
  color: var(--color-muted);
}

.contact-section {
  padding-bottom: 58px;
}

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

.contact-copy {
  border-radius: 26px;
  background: var(--color-surface);
  padding: 30px;
  box-shadow: var(--shadow-soft);
}

.contact-copy > p:not(.eyebrow) {
  color: var(--color-muted);
}

.review-card {
  display: grid;
  gap: 6px;
  margin: 22px 0;
  padding: 18px;
  background: #fffaf5;
}

.review-score {
  display: block;
  color: var(--color-accent-dark);
  font-size: 1.9rem;
  font-weight: 900;
  line-height: 1.1;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin: 22px 0;
}

.contact-list div {
  border-bottom: 1px solid var(--color-line);
  padding-bottom: 12px;
}

.contact-list dt {
  color: var(--color-muted);
  font-size: 0.83rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-list dd {
  margin: 5px 0 0;
  font-weight: 800;
}

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

.map-card {
  min-height: 460px;
  overflow: hidden;
  border-radius: 26px;
  background: var(--color-soft);
  box-shadow: var(--shadow-soft);
}

.map-frame {
  display: grid;
  width: 100%;
  height: 100%;
  min-height: 460px;
  place-items: center;
  color: var(--color-accent-dark);
  font-weight: 900;
  text-align: center;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 460px;
  border: 0;
}

.site-footer {
  border-top: 1px solid var(--color-line);
  background: #211b17;
  color: #f7f1ea;
  padding: 34px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr auto;
  align-items: center;
  gap: 26px;
}

.footer-brand {
  color: #fff;
}

.footer-brand img {
  height: 32px;
  filter: invert(1) brightness(1.8);
}

.site-footer p {
  margin: 10px 0 0;
  color: rgba(247, 241, 234, 0.72);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
  justify-content: center;
  color: rgba(247, 241, 234, 0.78);
  font-weight: 800;
}

.copyright {
  text-align: right;
}

.image-placeholder {
  display: grid;
  min-height: 100%;
  place-items: center;
  padding: 20px;
  background:
    linear-gradient(135deg, rgba(185, 139, 95, 0.22), rgba(255, 255, 255, 0.7)),
    var(--color-soft);
  color: var(--color-accent-dark);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  text-align: center;
}

[data-animate] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  [data-animate] {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .section {
    padding: 42px 0;
  }

  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: 72px;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    border: 1px solid var(--color-line);
    border-radius: 24px;
    background: var(--color-surface);
    padding: 18px;
    box-shadow: var(--shadow-soft);
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-menu a {
    padding: 10px 12px;
  }

  .hero-content,
  .split,
  .contact-grid,
  .newsletter-card {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding-top: 76px;
  }

  .hero-panel {
    max-width: 520px;
  }

  .hero-side {
    max-width: 520px;
  }

  .split-media {
    min-height: 380px;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .copyright {
    text-align: center;
  }
}

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

  .section {
    padding: 34px 0;
  }

  .hero {
    min-height: 720px;
  }

  .brand-image img {
    height: 28px;
  }

  .hero-logo {
    /* width: min(100%, 210px); */
  }

  .hero-content {
    gap: 24px;
    padding: 58px 0 44px;
  }

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

  .btn,
  .newsletter-form button {
    width: 100%;
  }

  .section-heading-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .service-grid,
  .benefit-grid,
  .gallery-grid,
  .price-list {
    grid-template-columns: 1fr;
  }

  .service-img {
    height: 220px;
  }

  .service-body p {
    min-height: auto;
  }

  .price-item {
    align-items: flex-start;
    flex-direction: column;
  }

  .price-value {
    text-align: left;
  }

  .newsletter-form {
    grid-template-columns: 1fr;
  }

  .contact-copy,
  .newsletter-card {
    padding: 24px;
  }
}
