:root {
  --bg: #f4efe7;
  --surface: rgba(255, 255, 255, 0.88);
  --surface-strong: #ffffff;
  --text: #1f2937;
  --muted: #5b6470;
  --line: #d6dbe1;
  --brand: #2f343b;
  --brand-soft: #4a535c;
  --accent: #6f7f88;
  --shadow: 0 24px 60px rgba(31, 41, 55, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    linear-gradient(rgba(244, 239, 231, 0.72), rgba(244, 239, 231, 0.9)),
    url("../images/hero-background.png") center top / cover fixed no-repeat;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(14px);
  background: rgba(244, 239, 231, 0.92);
  border-bottom: 1px solid var(--line);
}

.site-header .container,
.hero-actions,
.hero-stats,
.section-grid,
.contact-layout,
.footer-top,
.footer-links {
  display: flex;
}

.site-header .container {
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 84px;
}

.brand-logo {
  width: 118px;
  height: auto;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.nav a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.nav a:hover {
  color: var(--text);
}

.button,
.button-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.2s ease;
}

.button {
  color: #fff;
  background: var(--brand);
}

.button:hover {
  background: #23272d;
}

.button-outline {
  color: var(--brand);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(47, 52, 59, 0.18);
}

.button-outline:hover {
  background: #fff;
}

.hero {
  padding: 72px 0 56px;
}

.hero-panel {
  max-width: 720px;
  padding: 36px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 28px;
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin: 0;
}

.hero h1 {
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.hero-copy,
.section-copy,
.footer-copy,
.card-copy,
.faq-answer,
.contact-copy {
  color: var(--muted);
}

.hero-copy {
  margin-top: 18px;
  max-width: 620px;
  font-size: 18px;
  line-height: 1.8;
}

.hero-actions,
.hero-tags,
.hero-stats,
.card-grid,
.service-grid,
.why-grid,
.gallery-grid,
.testimonial-grid,
.faq-grid,
.contact-cards {
  flex-wrap: wrap;
}

.hero-actions {
  gap: 12px;
  margin-top: 28px;
}

.hero-tags {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.tag {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
}

.hero-stats {
  gap: 14px;
  margin-top: 28px;
}

.stat {
  min-width: 150px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.stat-value {
  font-size: 28px;
  font-weight: 800;
}

.stat-label {
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section {
  padding: 72px 0;
}

.section-card {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.section-head {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-head h2 {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.12;
}

.section-copy {
  margin-top: 14px;
  font-size: 17px;
  line-height: 1.8;
}

.section-grid {
  gap: 28px;
}

.section-grid > * {
  flex: 1 1 320px;
}

.service-grid,
.why-grid,
.gallery-grid,
.testimonial-grid,
.faq-grid,
.contact-cards,
.footer-links {
  display: grid;
  gap: 16px;
}

.service-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.why-grid,
.gallery-grid,
.testimonial-grid,
.faq-grid,
.contact-cards {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.item-card,
.faq-item,
.contact-card,
.gallery-card,
.testimonial-card {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface-strong);
}

.item-card strong,
.gallery-card strong,
.testimonial-card strong,
.contact-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}

.item-card span,
.gallery-card span,
.testimonial-card span,
.contact-card span {
  color: var(--muted);
  line-height: 1.7;
}

.faq-item summary {
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
}

.faq-answer {
  margin-top: 12px;
  line-height: 1.8;
}

.contact-layout {
  gap: 20px;
  flex-wrap: wrap;
}

.contact-layout > * {
  flex: 1 1 320px;
}

.contact-panel {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface-strong);
}

.contact-copy {
  margin-top: 14px;
  line-height: 1.8;
}

.contact-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.map-placeholder {
  min-height: 260px;
  display: grid;
  place-items: center;
  padding: 24px;
  border: 1px dashed var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.75);
  text-align: center;
}

.site-footer {
  padding: 32px 0 48px;
  border-top: 1px solid var(--line);
  background: rgba(244, 239, 231, 0.94);
}

.footer-top {
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-logo {
  width: 132px;
  height: auto;
  margin-bottom: 14px;
}

.footer-copy {
  max-width: 480px;
  line-height: 1.8;
}

.footer-links {
  grid-template-columns: repeat(2, minmax(160px, 1fr));
}

.footer-links h3 {
  margin-bottom: 12px;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links a,
.footer-links p {
  color: var(--muted);
  line-height: 1.8;
}

.footer-bottom {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 880px) {
  .site-header .container {
    min-height: auto;
    padding: 16px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    gap: 12px 16px;
  }

  .hero {
    padding-top: 40px;
  }

  .hero-panel,
  .section-card,
  .contact-panel {
    padding: 24px;
  }
}

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

  .button,
  .button-outline {
    width: 100%;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }
}
