:root {
  --bg: #f9f7f4;
  --bg-soft: #fffdf9;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: #ffffff;
  --text: #2f2a27;
  --muted: #746c66;
  --line: rgba(47, 42, 39, 0.08);
  --primary: #b98d74;
  --primary-dark: #9c7159;
  --accent: #e8d9cd;
  --shadow: 0 20px 50px rgba(77, 56, 43, 0.08);
  --radius-lg: 28px;
  --radius-md: 18px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(232, 217, 205, 0.8), transparent 35%),
    linear-gradient(180deg, #fcfaf7 0%, #f7f2ed 100%);
  line-height: 1.6;
}

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

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

.container {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
}

.section {
  padding: 5.5rem 0;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  margin: 0 0 1rem;
  letter-spacing: -0.03em;
}

.section-intro {
  max-width: 680px;
  color: var(--muted);
  margin: 0 0 2.4rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: var(--shadow);
  font-size: 0.9rem;
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(249, 247, 244, 0.74);
  border-bottom: 1px solid rgba(47, 42, 39, 0.05);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.brand strong {
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.brand span {
  font-size: 0.82rem;
  color: var(--muted);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-links {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.nav-links a {
  color: var(--muted);
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

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

.button,
button {
  border: 0;
  cursor: pointer;
  font: inherit;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.3rem;
  border-radius: 999px;
  background: var(--primary);
  color: white;
  font-weight: 600;
  box-shadow: 0 14px 30px rgba(185, 141, 116, 0.28);
  transition: transform 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
  background: var(--primary-dark);
}

.button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.button-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
  box-shadow: none;
}

.hero {
  padding: 4.5rem 0 3rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
}

.hero-card,
.glass-card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
  border-radius: var(--radius-lg);
}

.hero-copy {
  padding: 2.2rem;
}

.hero h1 {
  font-size: clamp(2.7rem, 5vw, 5rem);
  line-height: 0.98;
  margin: 0 0 1.2rem;
  letter-spacing: -0.05em;
}

.hero p {
  font-size: 1.07rem;
  color: var(--muted);
  max-width: 62ch;
}

.hero-actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-top: 1.75rem;
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.hero-highlight {
  padding: 1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(47, 42, 39, 0.06);
}

.hero-highlight strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.hero-highlight span {
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-visual {
  padding: 1.1rem;
}

.image-frame {
  position: relative;
  min-height: 560px;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(180deg, #f1e5db 0%, #eadfd6 100%);
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 18px;
  padding: 1rem 1.1rem;
  box-shadow: var(--shadow);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.service-card,
.price-card,
.about-card,
.contact-card {
  padding: 1.5rem;
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.service-card h3,
.price-card h3 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
}

.service-card p,
.price-card p,
.about-card p,
.contact-card p,
.contact-list a,
.contact-list span {
  color: var(--muted);
}

.service-meta {
  display: inline-flex;
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--primary-dark);
  background: #f7efe8;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
}

.price-list {
  display: grid;
  gap: 0.9rem;
}

.price-row {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--line);
}

.price-row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.price-row strong {
  display: block;
  margin-bottom: 0.2rem;
}

.price {
  font-weight: 700;
  white-space: nowrap;
}

.about-grid,
.contact-grid,
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.about-card ul {
  margin: 1rem 0 0;
  padding-left: 1rem;
  color: var(--muted);
}

.contact-list {
  display: grid;
  gap: 0.85rem;
  margin-top: 1rem;
}

.contact-item {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fcfaf8;
}

form {
  display: grid;
  gap: 0.9rem;
}

label {
  display: grid;
  gap: 0.45rem;
  font-weight: 600;
}

input,
textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(47, 42, 39, 0.12);
  background: #fff;
  font: inherit;
  color: var(--text);
}

textarea {
  min-height: 150px;
  resize: vertical;
}

input:focus,
textarea:focus {
  outline: 2px solid rgba(185, 141, 116, 0.2);
  border-color: var(--primary);
}

.status {
  min-height: 1.5rem;
  font-size: 0.95rem;
  color: var(--muted);
}

footer {
  padding: 1.8rem 0 3rem;
}

.footer-card {
  padding: 1.5rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(47, 42, 39, 0.06);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: white;
  border: 1px solid var(--line);
}

@media (max-width: 960px) {
  .hero-grid,
  .about-grid,
  .contact-grid,
  .footer-grid,
  .cards-grid {
    grid-template-columns: 1fr;
  }

  .hero-highlights {
    grid-template-columns: 1fr;
  }

  .image-frame {
    min-height: 360px;
  }
}

@media (max-width: 760px) {
  .nav-links {
    position: absolute;
    top: calc(100% + 0.75rem);
    right: 1rem;
    left: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.2rem;
    padding: 0.7rem;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(47, 42, 39, 0.08);
    border-radius: 20px;
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a,
  .nav-links .button {
    width: 100%;
    padding: 0.95rem 1rem;
    border-radius: 16px;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav > .button {
    display: none;
  }

  .hero {
    padding-top: 2rem;
  }

  .hero-copy,
  .hero-visual,
  .service-card,
  .price-card,
  .about-card,
  .contact-card,
  .footer-card {
    padding: 1.2rem;
  }
}