:root {
  --bg: #fffaf4;
  --bg-soft: #fff2e6;
  --surface: #ffffff;
  --text: #1f2937;
  --muted: #6b7280;
  --line: #f1d4bc;
  --accent: #ea580c;
  --accent-dark: #c2410c;
  --accent-soft: #ffedd5;
  --footer-bg: #101114;
  --footer-line: #2a2d33;
  --footer-text: #f8fafc;
  --footer-muted: #c0c7d1;
  --shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 237, 213, 0.95), transparent 32%),
    linear-gradient(180deg, #fff8ef 0%, #ffffff 28%, #fff7f0 100%);
  line-height: 1.6;
}

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

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.84);
  border-bottom: 1px solid rgba(241, 212, 188, 0.7);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

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

.brand {
  flex: 0 0 auto;
}

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

.site-nav {
  display: flex;
  align-items: center;
  gap: 14px;
}

.site-nav a {
  text-decoration: none;
  color: #4b5563;
  font-size: 1.05rem;
  font-weight: 600;
  padding: 12px 16px;
  border-radius: 999px;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.site-nav a:hover {
  color: var(--accent-dark);
  background: var(--accent-soft);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: var(--surface);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.12);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero-section {
  padding: 64px 0 32px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(460px, 1.1fr);
  gap: 40px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 18px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--accent-soft);
  border: 1px solid rgba(251, 146, 60, 0.28);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
  color: var(--accent-dark);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.hero-copy h1,
.section-heading h2,
.about-copy h2 {
  margin: 0;
  color: #111827;
  line-height: 1.05;
}

.hero-copy h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  max-width: 8ch;
}

.hero-text,
.section-heading p,
.about-copy p,
.card p,
.footer-brand p {
  color: var(--muted);
}

.hero-text {
  margin: 18px 0 0;
  font-size: 1.18rem;
  max-width: 620px;
}

.hero-actions,
.action-row,
.center-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-actions {
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

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

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

.button-secondary {
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
  border-color: var(--line);
}

.button-secondary:hover {
  background: #fff4ea;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid rgba(241, 212, 188, 0.9);
}

.hero-stats strong {
  display: block;
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  color: #d97706;
}

.hero-stats span {
  display: block;
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-visual {
  position: relative;
  width: min(100%, 760px);
  margin-left: auto;
}

.hero-images {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.hero-images img,
.about-image {
  width: 100%;
  border-radius: 28px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.hero-images img {
  aspect-ratio: 1 / 1;
}

.hero-note {
  position: absolute;
  left: -20px;
  bottom: -22px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.14);
}

.hero-note strong,
.hero-note span {
  display: block;
}

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

.section {
  padding: 42px 0;
}

.section-soft {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 247, 240, 0.84) 100%);
}

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

.section-heading h2 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
}

.section-heading p {
  margin: 16px 0 0;
  font-size: 1.08rem;
  margin-bottom: 15px;
}

.card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(241, 212, 188, 0.9);
  border-radius: 30px;
  padding: 34px;
  box-shadow: var(--shadow);
}

.card-top {
  text-align: center;
  margin-bottom: 26px;
}

.pill {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 0.92rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.card-top h3 {
  margin: 18px 0 10px;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.card-intro {
  margin: 0;
  color: var(--muted);
  font-style: italic;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 22px;
  margin-bottom: 28px;
}

.feature-item {
  position: relative;
  padding-left: 30px;
  color: #374151;
}

.feature-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fb923c, #ea580c);
  box-shadow: 0 0 0 4px rgba(251, 146, 60, 0.18);
}

.composition-box,
.contact-note {
  padding: 24px;
  border-radius: 22px;
  background: linear-gradient(180deg, #fff7ed, #fff2df);
  border: 1px solid rgba(251, 191, 36, 0.22);
}

.composition-box {
  margin-bottom: 28px;
}

.composition-box h4 {
  margin: 0 0 10px;
  font-size: 1.15rem;
}

.price-card {
  max-width: 900px;
  margin: 0 auto;
}

.price-copy {
  font-size: 1.12rem;
  color: #374151;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.92fr);
  gap: 54px;
  align-items: center;
}

.about-copy h2 {
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  margin-bottom: 18px;
}

.story-list {
  margin: 18px 0;
  padding-left: 22px;
  list-style: disc;
}

.story-list li {
  margin-bottom: 10px;
  color: #374151;
}

.story-list li::marker {
  color: var(--accent);
}

.about-stats {
  margin-top: 28px;
}

.about-visual {
  position: relative;
}

.about-image {
  aspect-ratio: 4 / 5;
}

.quote-box {
  position: absolute;
  left: -18px;
  bottom: -24px;
  max-width: 320px;
  padding: 24px;
  border-radius: 22px;
  background: linear-gradient(135deg, #d97706, #ea580c);
  color: #fff;
  box-shadow: 0 20px 45px rgba(194, 65, 12, 0.3);
}

.quote-box strong,
.quote-box span {
  display: block;
}

.quote-box span {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
}

.contact-card {
  max-width: 980px;
  margin: 0 auto;
}

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

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.icon-box {
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(180deg, #fff0df, #ffe0c2);
  color: var(--accent-dark);
}

.icon-box svg {
  width: 24px;
  height: 24px;
  display: block;
}

.contact-item h3 {
  margin: 0 0 4px;
  font-size: 1.08rem;
}

.contact-item a {
  color: #374151;
  text-decoration: none;
  font-weight: 700;
}

.contact-item a:hover {
  color: var(--accent-dark);
}

.contact-item p {
  margin: 0;
  color: var(--muted);
}

.contact-note {
  margin-top: 30px;
  color: #374151;
}

.center-row,
.action-row {
  justify-content: center;
}

.site-footer {
  margin-top: 56px;
  padding: 52px 0 22px;
  background:
    radial-gradient(circle at top left, rgba(251, 146, 60, 0.16), transparent 20%),
    linear-gradient(180deg, #121317 0%, #0b0c0f 100%);
  color: var(--footer-text);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 34px;
  align-items: start;
}

.footer-brand img {
  height: 132px;
  width: auto;
  object-fit: contain;
  margin-bottom: 12px;
  margin-left: auto;
  margin-right: auto;
}

.site-footer h3 {
  margin: 0 0 14px;
  font-size: 1.9rem;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer li,
.site-footer p {
  color: var(--footer-muted);
  font-size: 1.1rem;
}

.site-footer li + li {
  margin-top: 8px;
}

.site-footer a {
  color: #fff;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

.footer-bottom {
  margin-top: 28px;
  padding-top: 18px;
  text-align: center;
  border-top: 1px solid var(--footer-line);
}

.footer-bottom p {
  margin: 0 0 10px;
}

.site-footer p.footer-credit {
  font-size: 0.8rem;
}

.site-footer p.footer-policy {
  font-size: 0.8rem;
}

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

  .hero-copy h1 {
    max-width: none;
  }

  .hero-visual,
  .about-visual {
    max-width: 760px;
    margin: 0 auto;
  }
}

@media (max-width: 820px) {
  .nav-shell {
    min-height: 92px;
  }

  .brand img {
    height: 78px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(100% + 12px);
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 14px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(241, 212, 188, 0.9);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 14px 16px;
  }

  .hero-section {
    padding-top: 38px;
  }

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

  .hero-note,
  .quote-box {
    position: static;
    margin-top: 18px;
    max-width: none;
  }

  .features-grid,
  .contact-grid,
  .hero-stats {
    grid-template-columns: 1fr;
  }

  .card {
    padding: 24px;
  }

  .site-footer h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 560px) {
  .shell {
    width: min(100% - 24px, 1180px);
  }

  .brand img {
    height: 68px;
  }

  .hero-copy h1 {
    font-size: 2.5rem;
  }

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

  .button {
    width: 100%;
  }

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

  .footer-brand img {
    height: 112px;
  }
}
