:root {
  --bg: #f6efe9;
  --surface: #fffaf6;
  --surface-strong: #f2e3d8;
  --text: #2f2623;
  --muted: #6d5e58;
  --line: rgba(70, 52, 45, 0.14);
  --accent: #9b6f76;
  --accent-strong: #835b62;
  --shadow: 0 18px 40px rgba(79, 55, 47, 0.08);
  --radius: 22px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: linear-gradient(180deg, #fffaf6 0%, var(--bg) 100%);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 250, 246, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.brand-name {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-tagline {
  color: var(--muted);
  font-size: 0.92rem;
}

.header-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
  font-size: 0.95rem;
}

.header-contact a:hover,
.main-nav a:hover,
.footer-list a:hover {
  color: var(--accent-strong);
}

.nav-wrap {
  border-top: 1px solid var(--line);
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  padding: 12px 0;
}

.main-nav a {
  color: var(--muted);
  font-size: 0.96rem;
}

.main-nav a.active {
  color: var(--text);
  font-weight: 700;
}

.hero {
  padding: 72px 0 56px;
}

.hero-grid {
  display: grid;
  gap: 28px;
  align-items: start;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 380px);
}

.page-hero {
  padding: 64px 0 28px;
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.15rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.page-hero-text {
  max-width: 760px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.9;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.two-columns h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.hero-text,
.section-heading p,
.two-columns p,
.card p,
.info-box p,
.hero-card li,
.site-footer p,
.footer-list {
  color: var(--muted);
}

.hero-text {
  max-width: 720px;
  margin-top: 20px;
  font-size: 1.08rem;
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-weight: 700;
  transition: 0.2s ease;
}

.button-primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.button-primary:hover {
  background: var(--accent-strong);
  border-color: var(--accent-strong);
}

.button-secondary {
  background: var(--surface);
}

.button-secondary:hover {
  border-color: var(--accent);
  color: var(--accent-strong);
}

.hero-card,
.card,
.info-box {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 24px;
}

.hero-card h2 {
  margin: 0 0 16px;
  font-size: 1.2rem;
}

.check-list {
  margin: 0;
  padding-left: 18px;
}

.check-list li + li {
  margin-top: 10px;
}

.feature-list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.feature-list li + li {
  margin-top: 10px;
}

.section {
  padding: 32px 0 56px;
}

.section-soft {
  padding-top: 16px;
  padding-bottom: 72px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 26px;
}

.section-heading p {
  margin-top: 18px;
  font-size: 1rem;
  line-height: 1.85;
}

.cards {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  padding: 24px;
}

.card h3 {
  margin: 0 0 12px;
  font-size: 1.15rem;
}

.card p {
  margin: 0;
  line-height: 1.8;
}

.card p + p {
  margin-top: 14px;
}

.two-columns {
  display: grid;
  gap: 24px;
  align-items: start;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 380px);
}

.two-columns p {
  margin-top: 18px;
  font-size: 1rem;
  line-height: 1.85;
}

.info-box {
  padding: 24px;
}

.info-box p {
  margin: 0;
}

.info-box p + p {
  margin-top: 14px;
}

.price-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
}

.price-row {
  display: grid;
  gap: 12px;
  padding: 22px 24px;
  border-bottom: 1px solid var(--line);
}

.price-row:last-child {
  border-bottom: 0;
}

.price-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}

.price-value {
  font-size: 0.96rem;
  font-weight: 700;
  color: var(--accent-strong);
}

.price-text {
  color: var(--muted);
  line-height: 1.75;
}

.gallery-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-item {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
}

.gallery-thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4 / 3;
  border: 1px dashed var(--line);
  border-radius: 18px;
  background: #fff;
  color: var(--muted);
  font-size: 0.95rem;
}

.gallery-item h3 {
  margin: 18px 0 10px;
  font-size: 1.08rem;
}

.gallery-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.site-footer {
  margin-top: 20px;
  border-top: 1px solid var(--line);
  background: rgba(255, 250, 246, 0.75);
}

.footer-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: 1.2fr 1fr 1fr;
  padding: 44px 0 24px;
}

.site-footer h3 {
  margin: 0 0 14px;
  font-size: 1rem;
}

.footer-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-list li + li {
  margin-top: 10px;
}

.footer-bottom {
  padding: 18px 0 32px;
  border-top: 1px solid var(--line);
}

.footer-bottom p {
  margin: 0;
  font-size: 0.92rem;
}

@media (max-width: 920px) {
  .hero-grid,
  .two-columns,
  .footer-grid,
  .cards,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .main-nav {
    gap: 10px 16px;
  }

  .hero {
    padding-top: 56px;
  }

  .hero-text,
  .page-hero-text {
    font-size: 1rem;
  }

  .button {
    width: 100%;
  }
}