:root {
  --bg: #fffaf7;
  --soft: #fff0ec;
  --primary: #c96f78;
  --primary-dark: #93454d;
  --accent: #f2b6a0;
  --text: #392828;
  --muted: #725f5f;
  --white: #ffffff;
  --border: #f0d7d2;
  --shadow: 0 18px 45px rgba(91, 54, 54, 0.12);
  --radius: 24px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

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

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 250, 247, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

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

.brand img {
  width: 170px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  font-weight: 700;
  color: var(--muted);
}

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

.menu-toggle,
.menu-icon {
  display: none;
}

.hero {
  padding: 88px 0 72px;
  background:
    radial-gradient(circle at top left, rgba(242, 182, 160, 0.35), transparent 35%),
    linear-gradient(135deg, #fffaf7 0%, #fff0ec 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.eyebrow,
.section-label {
  display: inline-flex;
  align-items: center;
  margin-bottom: 14px;
  color: var(--primary-dark);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

h1,
h2,
h3 {
  font-family: Georgia, 'Times New Roman', serif;
  line-height: 1.12;
}

h1 {
  max-width: 670px;
  font-size: clamp(2.4rem, 6vw, 5rem);
  margin-bottom: 20px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  margin-bottom: 18px;
}

h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.hero-content p,
.section-heading p,
.intro-grid p,
.split-section p,
.contact-card p {
  color: var(--muted);
  font-size: 1.05rem;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(201, 111, 120, 0.32);
}

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

.btn-secondary {
  background: var(--white);
  color: var(--primary-dark);
  border-color: var(--border);
}

.hero-card {
  min-height: 480px;
  border-radius: 42px;
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(217, 140, 140, 0.18), rgba(242, 182, 160, 0.42)),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.55) 0 12px, rgba(255,240,236,0.55) 12px 24px);
  box-shadow: var(--shadow);
}

.pattern-card {
  height: 100%;
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 32px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.85) 0 10%, transparent 11%),
    radial-gradient(circle at 80% 10%, rgba(255,255,255,0.65) 0 7%, transparent 8%),
    radial-gradient(circle at 65% 55%, rgba(255,255,255,0.6) 0 12%, transparent 13%);
}

.pattern-card .tag {
  width: fit-content;
  margin-bottom: 18px;
  padding: 8px 14px;
  background: var(--white);
  color: var(--primary-dark);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
}

.pattern-card h2 {
  max-width: 350px;
}

.pattern-card p {
  max-width: 360px;
  color: var(--muted);
}

.section {
  padding: 84px 0;
}

.soft-bg {
  background: var(--soft);
}

.intro-grid,
.split-section,
.contact-card,
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: center;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 38px;
  text-align: center;
}

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

.card,
.step,
.feature-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 10px 24px rgba(91, 54, 54, 0.07);
}

.card-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 18px;
  background: var(--soft);
  font-size: 1.6rem;
}

.card p,
.step p,
.feature-box p {
  color: var(--muted);
}

.check-list {
  margin-top: 22px;
  list-style: none;
  display: grid;
  gap: 12px;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--muted);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 900;
}

.feature-box {
  padding: 38px;
  background: linear-gradient(145deg, #ffffff 0%, #fff5f2 100%);
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--primary-dark);
  font-weight: 900;
}

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

.step span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--primary);
  font-size: 1.5rem;
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 900;
}

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

.gallery-item {
  min-height: 190px;
  display: flex;
  align-items: flex-end;
  padding: 22px;
  border-radius: 28px;
  color: var(--primary-dark);
  font-weight: 900;
  background:
    linear-gradient(180deg, transparent 0%, rgba(255,255,255,0.84) 100%),
    radial-gradient(circle at 30% 30%, #f6c8ba 0 16%, transparent 17%),
    radial-gradient(circle at 70% 45%, #f1a8a8 0 14%, transparent 15%),
    var(--soft);
  border: 1px solid var(--border);
}

.contact-section {
  padding-top: 40px;
}

.contact-card {
  padding: 44px;
  border-radius: 34px;
  background: var(--white);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.contact-actions {
  justify-content: flex-end;
}

.site-footer {
  padding: 28px 0;
  color: var(--muted);
  border-top: 1px solid var(--border);
}

.footer-grid p:last-child {
  text-align: right;
}

@media (max-width: 960px) {
  .hero-grid,
  .intro-grid,
  .split-section,
  .contact-card,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cards-grid,
  .steps-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-card {
    min-height: 360px;
  }

  .contact-actions,
  .footer-grid p:last-child {
    justify-content: flex-start;
    text-align: left;
  }
}

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

  .menu-icon {
    display: block;
    font-size: 1.8rem;
    color: var(--primary-dark);
    cursor: pointer;
  }

  .nav-links {
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    background: var(--white);
    border-bottom: 1px solid var(--border);
  }

  .menu-toggle:checked ~ .nav-links {
    display: flex;
  }

  .hero {
    padding: 58px 0;
  }

  .section {
    padding: 58px 0;
  }

  .cards-grid,
  .steps-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .contact-card {
    padding: 28px;
  }
}
