:root {
  --color-orange-50: #fff7ed;
  --color-orange-100: #ffedd5;
  --color-orange-500: #f97316;
  --color-orange-600: #ea580c;
  --color-orange-700: #c2410c;
  --color-ink: #15110d;
  --color-muted: #6d6259;
  --color-line: #f0dfd1;
  --color-white: #ffffff;
  --color-green: #166534;
  --shadow-soft: 0 18px 48px rgba(120, 63, 17, 0.12);
  --shadow-card: 0 12px 32px rgba(70, 45, 24, 0.1);
  --radius-card: 8px;
  --max-width: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-white);
  color: var(--color-ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  padding-bottom: 116px;
}

body::selection {
  background: var(--color-orange-100);
}

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

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

button {
  font: inherit;
}

.site-header {
  align-items: center;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(240, 223, 209, 0.86);
  display: flex;
  justify-content: space-between;
  left: 0;
  padding: 14px clamp(18px, 4vw, 48px);
  position: sticky;
  right: 0;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
}

.brand {
  align-items: center;
  display: inline-flex;
  font-size: 1.04rem;
  font-weight: 800;
  gap: 10px;
}

.brand-mark {
  align-items: center;
  background: linear-gradient(135deg, var(--color-orange-500), var(--color-orange-700));
  border-radius: 8px;
  color: var(--color-white);
  display: inline-flex;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.nav-links {
  display: none;
  gap: 24px;
}

.nav-links a {
  color: var(--color-muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.hero {
  align-items: center;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.9) 48%, rgba(255, 246, 237, 0.62) 100%),
    url("https://images.unsplash.com/photo-1607860108855-64acf2078ed9?auto=format&fit=crop&w=1800&q=80") center / cover;
  display: grid;
  min-height: clamp(620px, 90vh, 780px);
  overflow: hidden;
  padding: 84px clamp(18px, 5vw, 72px) 52px;
  position: relative;
}

.hero::after {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, var(--color-white) 100%);
  bottom: 0;
  content: "";
  height: 92px;
  left: 0;
  position: absolute;
  right: 0;
}

.hero-content {
  max-width: 700px;
  position: relative;
  z-index: 1;
}

.eyebrow {
  color: var(--color-orange-700);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.site-footer h2 {
  line-height: 1.05;
  margin: 0;
}

.hero h1 {
  font-size: clamp(3rem, 9vw, 5.8rem);
  max-width: 820px;
}

.hero-copy {
  color: #3f372f;
  font-size: clamp(1.08rem, 2.6vw, 1.42rem);
  margin: 24px 0 0;
  max-width: 620px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-note {
  color: var(--color-muted);
  font-weight: 700;
  margin: 24px 0 0;
}

.button {
  align-items: center;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    opacity 180ms ease;
}

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

.button:focus-visible,
.faq-question:focus-visible {
  outline: 3px solid rgba(249, 115, 22, 0.28);
  outline-offset: 3px;
}

.button-primary {
  background: linear-gradient(135deg, var(--color-orange-500), var(--color-orange-700));
  box-shadow: 0 10px 24px rgba(234, 88, 12, 0.24);
  color: var(--color-white);
}

.button[disabled] {
  cursor: not-allowed;
  opacity: 0.62;
  transform: none;
}

.section {
  margin: 0 auto;
  max-width: var(--max-width);
  padding: 58px clamp(18px, 4vw, 32px);
}

.section-heading {
  margin-bottom: 26px;
  max-width: 700px;
}

.section-heading h2,
.hygiene h2,
.order-summary h2 {
  font-size: clamp(2rem, 5vw, 3.1rem);
}

.section-heading p:not(.eyebrow),
.hygiene p,
.info-card p,
.step-card p,
.site-footer p {
  color: var(--color-muted);
  margin: 12px 0 0;
}

.order-layout {
  align-items: start;
  display: grid;
  gap: 24px;
}

.service-grid {
  display: grid;
  gap: 18px;
}

.service-card,
.info-card,
.step-card,
.order-summary,
.faq-item {
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
}

.service-card {
  display: grid;
  overflow: hidden;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.service-card.is-selected {
  border-color: var(--color-orange-500);
  box-shadow: 0 20px 44px rgba(234, 88, 12, 0.18);
  transform: translateY(-2px);
}

.service-image-wrap {
  aspect-ratio: 16 / 10;
  background: var(--color-orange-50);
  overflow: hidden;
}

.service-image {
  height: 100%;
  object-fit: cover;
}

.service-body {
  display: grid;
  gap: 16px;
  padding: 18px;
}

.service-title-row {
  align-items: start;
  display: flex;
  gap: 18px;
  justify-content: space-between;
}

.service-card h3,
.info-card h3,
.step-card h3 {
  font-size: 1.2rem;
  line-height: 1.2;
  margin: 0;
}

.service-card p {
  color: var(--color-muted);
  margin: 6px 0 0;
}

.price {
  color: var(--color-orange-700);
  font-size: 1.35rem;
  font-weight: 900;
  white-space: nowrap;
}

.service-footer {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-content: space-between;
}

.selected-pill {
  color: var(--color-green);
  display: none;
  font-size: 0.86rem;
  font-weight: 800;
}

.service-card.is-selected .selected-pill {
  display: inline;
}

.order-summary {
  display: none;
  padding: 22px;
}

.summary-service {
  font-size: 1.1rem;
  font-weight: 900;
  margin-top: 22px;
}

.summary-price {
  color: var(--color-orange-700);
  font-size: 2rem;
  font-weight: 900;
  margin-top: 2px;
}

.summary-button {
  margin-top: 22px;
  width: 100%;
}

.overview-grid,
.steps {
  display: grid;
  gap: 16px;
}

.info-card,
.step-card {
  padding: 22px;
}

.info-card ul,
.hygiene-list {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding-left: 20px;
}

.info-card li,
.hygiene-list li {
  color: #4c423a;
}

.highlight-card {
  background: linear-gradient(135deg, var(--color-orange-50), var(--color-white));
}

.step-card {
  position: relative;
}

.step-number {
  align-items: center;
  background: var(--color-orange-50);
  border: 1px solid var(--color-orange-100);
  border-radius: 999px;
  color: var(--color-orange-700);
  display: inline-flex;
  font-weight: 900;
  height: 42px;
  justify-content: center;
  margin-bottom: 18px;
  width: 42px;
}

.hygiene-panel {
  background:
    linear-gradient(135deg, rgba(255, 247, 237, 0.96), rgba(255, 255, 255, 0.98)),
    url("https://images.unsplash.com/photo-1520340356584-f9917d1eea6f?auto=format&fit=crop&w=1400&q=80") center / cover;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 24px;
  padding: clamp(24px, 5vw, 42px);
}

.hygiene-list {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(240, 223, 209, 0.9);
  border-radius: var(--radius-card);
  margin: 0;
  padding: 22px 22px 22px 42px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  box-shadow: none;
  overflow: hidden;
}

.faq-question {
  align-items: center;
  background: var(--color-white);
  border: 0;
  color: var(--color-ink);
  cursor: pointer;
  display: flex;
  font-weight: 900;
  gap: 16px;
  justify-content: space-between;
  min-height: 64px;
  padding: 18px;
  text-align: left;
  width: 100%;
}

.faq-icon {
  align-items: center;
  background: var(--color-orange-50);
  border-radius: 999px;
  color: var(--color-orange-700);
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 1.4rem;
  height: 32px;
  justify-content: center;
  line-height: 1;
  width: 32px;
}

.faq-answer {
  display: none;
  padding: 0 18px 18px;
}

.faq-answer p {
  color: var(--color-muted);
  margin: 0;
}

.faq-item.is-open .faq-answer {
  display: block;
}

.faq-item.is-open .faq-icon {
  background: var(--color-orange-500);
  color: var(--color-white);
}

.mobile-order-bar {
  align-items: center;
  background: rgba(255, 255, 255, 0.95);
  border-top: 1px solid var(--color-line);
  bottom: 0;
  box-shadow: 0 -10px 32px rgba(70, 45, 24, 0.12);
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
  left: 0;
  padding: 12px 16px 16px;
  position: fixed;
  right: 0;
  z-index: 30;
  backdrop-filter: blur(14px);
}

.mobile-label,
.mobile-order-bar span {
  color: var(--color-muted);
  display: block;
  font-size: 0.82rem;
}

.mobile-order-bar strong {
  display: block;
  font-size: 0.98rem;
}

.mobile-order-bar .button {
  width: 100%;
}

.site-footer {
  background: #17130f;
  color: var(--color-white);
  display: grid;
  gap: 20px;
  padding: 42px clamp(18px, 4vw, 48px) 132px;
}

.site-footer h2 {
  font-size: 2rem;
}

.site-footer address {
  color: #f9d7bd;
  display: grid;
  font-style: normal;
  gap: 8px;
}

.site-footer p {
  color: #f9d7bd;
}

@media (min-width: 640px) {
  body {
    padding-bottom: 92px;
  }

  .nav-links {
    display: flex;
  }

  .service-card {
    grid-template-columns: minmax(210px, 0.48fr) 1fr;
  }

  .service-image-wrap {
    aspect-ratio: auto;
    min-height: 220px;
  }

  .mobile-order-bar {
    grid-template-columns: 1fr auto;
  }

  .mobile-order-bar .button {
    min-width: 190px;
  }

  .overview-grid,
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 980px) {
  body {
    padding-bottom: 0;
  }

  .hero {
    min-height: 720px;
    padding-top: 92px;
  }

  .order-layout {
    grid-template-columns: minmax(0, 1fr) 330px;
  }

  .desktop-summary {
    display: block;
    position: sticky;
    top: 92px;
  }

  .mobile-order-bar {
    display: none;
  }

  .overview-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .steps,
  .hygiene-panel {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hygiene-panel > div {
    grid-column: span 1;
  }

  .hygiene-list {
    grid-column: span 2;
  }

  .site-footer {
    align-items: start;
    grid-template-columns: 1.2fr 1fr auto;
    padding-bottom: 42px;
  }
}
