:root {
  --paper: #fffaf3;
  --paper-2: #f7efe4;
  --ink: #2a211c;
  --muted: #6f6259;
  --line: #e5d4c0;
  --brand: #b87942;
  --brand-dark: #6b3f1f;
  --cream: #fffefb;
  --shadow: 0 18px 45px rgba(70, 43, 22, 0.12);
  --radius-lg: 24px;
  --radius-md: 16px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: linear-gradient(180deg, #fffdf8 0%, var(--paper) 45%, #f2e4d3 100%);
  color: var(--ink);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, a.btn { font: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 54px);
  background: rgba(255, 253, 248, 0.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(229, 212, 192, 0.75);
}
.brand-word {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 800;
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  letter-spacing: -0.055em;
}
.site-header nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
  font-weight: 700;
  font-size: 0.96rem;
}
.nav-cta {
  border: 1px solid var(--line);
  padding: 10px 14px;
  border-radius: 999px;
  background: #fff;
}

.section-pad {
  width: min(var(--max), calc(100% - 32px));
  margin-inline: auto;
}
.card-soft {
  background: linear-gradient(135deg, rgba(255,255,255,0.92), rgba(250,242,231,0.88));
  border: 1px solid rgba(229, 212, 192, 0.85);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.hero {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 16px;
  padding-top: 22px;
}
.hero-copy {
  padding: clamp(22px, 4vw, 42px);
  overflow: hidden;
  min-height: 560px;
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--brand-dark);
  font-weight: 800;
  letter-spacing: 0.01em;
}
h1, h2 {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -0.055em;
  line-height: 0.94;
}
h1 {
  margin: 0;
  font-size: clamp(3.2rem, 6.3vw, 5.45rem);
}
h2 {
  margin: 0;
  font-size: clamp(2rem, 3.4vw, 3rem);
}
h3 { margin: 0; }
.lede {
  max-width: 46rem;
  font-size: clamp(1.02rem, 1.2vw, 1.15rem);
  line-height: 1.5;
  color: var(--muted);
  margin: 20px 0 10px;
}
.wash-note {
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 22px;
}
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 22px;
}
.btn {
  border: 0;
  border-radius: 10px;
  padding: 13px 24px;
  min-width: 155px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 850;
  cursor: pointer;
  transition: transform 0.16s ease, box-shadow 0.16s ease, opacity 0.16s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:disabled { opacity: 0.55; cursor: wait; transform: none; }
.btn.primary {
  background: linear-gradient(180deg, #c98a4e, var(--brand));
  color: #fff;
  box-shadow: 0 12px 24px rgba(184, 121, 66, 0.25);
}
.btn.secondary {
  border: 1px solid #857466;
  background: #fffdf8;
  color: var(--ink);
}
.hero-product {
  width: min(440px, 100%);
  margin: 12px auto -14px;
  filter: drop-shadow(0 24px 25px rgba(70, 43, 22, 0.14));
}
.hero-image {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 560px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(229, 212, 192, 0.85);
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.how-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 16px;
  background: rgba(255,255,255,0.72);
}
.how-card h2 {
  font-family: inherit;
  font-size: 1.05rem;
  letter-spacing: 0;
  margin-bottom: 10px;
}
.steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 10px;
}
.step {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.86rem;
}
.step strong { color: var(--ink); line-height: 1.15; }
.step-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #f3dfc6;
  color: var(--brand-dark);
  font-weight: 900;
  border: 1px solid #d9bd9e;
}
.arrow { color: var(--brand); font-size: 1.5rem; }

.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 14px;
}
.feature-strip article {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 14px;
  align-items: center;
  padding: 20px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.75);
  border: 1px solid rgba(229, 212, 192, 0.9);
}
.feature-icon {
  grid-row: 1 / 3;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #e5c9a7;
  color: var(--brand-dark);
  font-size: 1.65rem;
  font-weight: 900;
}
.feature-strip p { margin: 4px 0 0; color: var(--muted); line-height: 1.35; }

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 14px;
}
.gallery figure {
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 8px 18px rgba(70, 43, 22, 0.08);
}
.gallery img { aspect-ratio: 1.33; width: 100%; object-fit: cover; }
.gallery figcaption { text-align: center; padding: 12px 8px 14px; font-weight: 850; }

.section-head { text-align: center; margin: 24px 0 18px; }
.section-head p { margin: 8px auto 0; max-width: 620px; color: var(--muted); }
.place-grid {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 12px;
}
.place-grid div {
  display: grid;
  place-items: center;
  gap: 8px;
  min-height: 104px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255,255,255,0.78);
  font-weight: 800;
  text-align: center;
  font-size: 0.9rem;
}
.place-grid span { font-size: 2rem; }

.pack-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: stretch;
}
.pack-card {
  position: relative;
  text-align: center;
  padding: 28px 22px 24px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.88);
  border: 1px solid var(--line);
  box-shadow: 0 8px 22px rgba(70, 43, 22, 0.07);
}
.pack-card.best { border: 2px solid var(--brand); transform: translateY(-5px); }
.badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand);
  color: #fff;
  border-radius: 999px;
  padding: 5px 14px;
  font-size: 0.8rem;
  font-weight: 900;
}
.pack-card h3 { font-size: 1.45rem; }
.price {
  font-size: 2.2rem;
  font-weight: 950;
  margin: 4px 0 10px;
}
.pack-name {
  font-weight: 900;
  margin: 0 0 8px;
}
.pack-card p:not(.price):not(.pack-name) {
  color: var(--muted);
  min-height: 44px;
  margin-bottom: 20px;
}
.pack-card .btn { width: 100%; min-width: 0; }
.checkout-status {
  text-align: center;
  min-height: 24px;
  color: #9b2c1c;
  font-weight: 800;
}

.about {
  display: grid;
  grid-template-columns: minmax(230px, 0.8fr) minmax(320px, 1.5fr) minmax(180px, 0.7fr);
  gap: 24px;
  align-items: center;
  padding: clamp(18px, 3vw, 30px);
  margin-top: 10px;
}
.about > img:first-child {
  border-radius: var(--radius-md);
  width: 100%;
  aspect-ratio: 1.3;
  object-fit: cover;
}
.about h2 { margin-bottom: 12px; }
.about p { color: var(--muted); line-height: 1.55; }
.signature {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: 1.7rem;
  color: var(--brand-dark) !important;
  margin-bottom: 0;
}
.about-product { filter: drop-shadow(0 20px 24px rgba(70, 43, 22, 0.16)); }

.final-cta {
  display: grid;
  grid-template-columns: 160px 1fr auto;
  align-items: center;
  gap: 24px;
  margin-top: 16px;
  margin-bottom: 20px;
  padding: 18px 28px;
  background: linear-gradient(135deg, rgba(255,255,255,0.85), rgba(239,222,202,0.75));
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
}
.final-cta h2 { font-size: clamp(1.8rem, 2.5vw, 2.65rem); }
.final-cta p { margin: 8px 0 0; color: var(--muted); }

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  gap: 22px;
  align-items: end;
  padding: 28px clamp(18px, 4vw, 54px);
  background: #4a2a14;
  color: #fff7ed;
}
.site-footer strong { font-family: Georgia, "Times New Roman", serif; font-size: 1.7rem; letter-spacing: -0.04em; }
.site-footer p { margin: 8px 0 0; color: #ecd8c3; }
.site-footer nav { display: flex; flex-wrap: wrap; gap: 14px 22px; }
.legal { justify-self: end; }

.simple-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}
.message-card {
  max-width: 560px;
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
}
.message-card img { width: 240px; margin: 0 auto 10px; }
.message-card h1 { font-size: clamp(2.4rem, 6vw, 4rem); }
.message-card p { color: var(--muted); line-height: 1.5; }

@media (max-width: 980px) {
  .site-header { align-items: flex-start; }
  .site-header nav { justify-content: flex-end; flex-wrap: wrap; font-size: 0.86rem; }
  .hero { grid-template-columns: 1fr; }
  .hero-copy, .hero-image { min-height: auto; }
  .hero-image img { aspect-ratio: 16 / 10; }
  .feature-strip, .gallery, .pack-grid { grid-template-columns: repeat(2, 1fr); }
  .place-grid { grid-template-columns: repeat(5, 1fr); }
  .about { grid-template-columns: 1fr 1.4fr; }
  .about-product { display: none; }
  .final-cta { grid-template-columns: 120px 1fr; }
  .final-cta .btn { grid-column: 1 / -1; width: 100%; }
}

@media (max-width: 640px) {
  .site-header { position: static; display: block; }
  .site-header nav { margin-top: 12px; justify-content: flex-start; gap: 10px 14px; }
  .nav-cta { padding: 0; border: 0; background: transparent; }
  .section-pad { width: min(100% - 20px, var(--max)); }
  h1 { font-size: 3rem; }
  .button-row .btn { width: 100%; }
  .steps { grid-template-columns: 1fr; }
  .arrow { transform: rotate(90deg); justify-self: center; }
  .feature-strip, .gallery, .pack-grid { grid-template-columns: 1fr; }
  .place-grid { grid-template-columns: repeat(2, 1fr); }
  .pack-card.best { transform: none; }
  .about { grid-template-columns: 1fr; }
  .final-cta { grid-template-columns: 1fr; text-align: center; }
  .final-cta img { width: 180px; margin: 0 auto; }
  .site-footer { grid-template-columns: 1fr; align-items: start; }
  .legal { justify-self: start; }
}
