@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Playfair+Display:wght@600;700&display=swap");
:root {
  --brown: #432916;
  --brown-2: #6c482b;
  --gold: #c9a25a;
  --gold-2: #e8d1a0;
  --cream: #fbf6ec;
  --white: #fff;
  --blue: #101a35;
  --text: #24170f;
  --muted: #73665b;
  --line: rgba(67, 41, 22, 0.14);
  --shadow: 0 28px 80px rgba(67, 41, 22, 0.14);
  --radius: 30px;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: Inter, system-ui, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
button,
input,
select,
textarea {
  font: inherit;
}
.lux-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(
      circle at 15% 10%,
      rgba(201, 162, 90, 0.22),
      transparent 34%
    ),
    radial-gradient(
      circle at 90% 22%,
      rgba(108, 72, 43, 0.16),
      transparent 28%
    ),
    linear-gradient(135deg, #fffaf1 0%, #fbf6ec 48%, #f4e6cc 100%);
}
.container {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(251, 246, 236, 0.76);
  border-bottom: 1px solid var(--line);
}
.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 13px;
}
.brand-logo-wrap {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  flex: 0 0 58px;
}
.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}
.brand strong {
  display: block;
  letter-spacing: 0.2em;
  color: var(--brown);
  line-height: 1;
}
.brand small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}
.nav-links a:hover {
  color: var(--brown);
}
.nav-cta {
  padding: 11px 18px;
  border-radius: 999px;
  background: var(--brown);
  color: white !important;
}
.hero {
  padding: 96px 0 72px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 54px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--brown);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
  font-size: 12px;
  margin-bottom: 18px;
}
.eyebrow span {
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: var(--gold);
  box-shadow: 0 0 0 7px rgba(201, 162, 90, 0.16);
}
.centered {
  justify-content: center;
}
h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
}
h1 {
  font-size: clamp(46px, 7vw, 82px);
  line-height: 0.96;
  letter-spacing: -0.045em;
  color: var(--brown);
  max-width: 760px;
}
.lead {
  max-width: 650px;
  margin: 24px 0 30px;
  color: var(--muted);
  font-size: clamp(17px, 2.2vw, 21px);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 30px;
}
.btn {
  min-height: 52px;
  padding: 15px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
  transition: 0.2s ease;
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-primary {
  color: #fff8e9;
  background: linear-gradient(135deg, var(--brown), #8b623b);
  box-shadow: 0 18px 38px rgba(67, 41, 22, 0.24);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.7);
  border-color: var(--line);
  color: var(--brown);
}
.btn-darkblue {
  color: #f4f7ff;
  background: linear-gradient(135deg, var(--blue), #263a68);
  box-shadow: 0 18px 38px rgba(16, 26, 53, 0.22);
}
.full {
  width: 100%;
}
.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.trust-row div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.66);
}
.trust-row strong {
  display: block;
  color: var(--brown);
  margin-bottom: 3px;
}
.trust-row span {
  display: block;
  color: var(--muted);
  font-size: 13px;
}
.hero-showcase {
  min-height: 560px;
  position: relative;
  display: grid;
  place-items: center;
}
.glow-card {
  width: min(520px, 100%);
  border-radius: 42px;
  padding: 16px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.86),
    rgba(232, 209, 160, 0.36)
  );
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
  transform: rotate(-2deg);
}
.glow-card img {
  width: 100%;
  height: 390px;
  object-fit: cover;
  border-radius: 30px;
}
.mini-product-card {
  position: absolute;
  right: 8px;
  bottom: 34px;
  width: 290px;
  padding: 12px;
  border-radius: 26px;
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 14px;
  align-items: center;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 22px 60px rgba(16, 26, 53, 0.18);
}
.mini-product-card img {
  height: 82px;
  width: 92px;
  object-fit: cover;
  border-radius: 18px;
}
.mini-product-card strong,
.mini-product-card span {
  display: block;
}
.mini-product-card strong {
  color: var(--blue);
}
.mini-product-card span {
  color: var(--muted);
  font-size: 13px;
}
.logo-strip {
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.42);
}
.logo-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  font-weight: 800;
}
.logo-strip p {
  color: var(--brown);
  font-size: 15px;
}
.section {
  padding: 88px 0;
}
.section-head {
  max-width: 820px;
  margin: 0 auto 46px;
  text-align: center;
}
.section-head h2,
.package-grid h2,
.order-copy h2 {
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
  letter-spacing: -0.035em;
  color: var(--brown);
}
.section-head p,
.package-grid p,
.order-copy p {
  color: var(--muted);
  font-size: 18px;
  margin-top: 16px;
}
.product-grid {
  display: grid;
  gap: 28px;
}
.product-card {
  display: grid;
  grid-template-columns: 0.96fr 1.04fr;
  gap: 34px;
  align-items: center;
  border-radius: var(--radius);
  padding: 24px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 22px 70px rgba(67, 41, 22, 0.1);
}
.product-card.cooling {
  grid-template-columns: 1.04fr 0.96fr;
}
.product-card.cooling .product-image {
  order: 2;
}
.product-image {
  border-radius: 26px;
  padding: 10px;
  background: linear-gradient(
    145deg,
    rgba(201, 162, 90, 0.26),
    rgba(255, 255, 255, 0.72)
  );
}
.cooling .product-image {
  background: linear-gradient(
    145deg,
    rgba(16, 26, 53, 0.16),
    rgba(255, 255, 255, 0.72)
  );
}
.product-image img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 20px;
}
.product-content {
  padding: 14px 10px;
}
.pill {
  display: inline-flex;
  padding: 8px 13px;
  border-radius: 999px;
  color: var(--brown);
  background: rgba(201, 162, 90, 0.18);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 16px;
}
.pill.blue {
  color: var(--blue);
  background: rgba(16, 26, 53, 0.1);
}
.product-content h3 {
  font-size: 42px;
  color: var(--brown);
  line-height: 1;
  margin-bottom: 14px;
}
.cooling h3 {
  color: var(--blue);
}
.product-content p {
  color: var(--muted);
  font-size: 17px;
  margin-bottom: 18px;
}
.product-content ul {
  list-style: none;
  display: grid;
  gap: 10px;
  margin: 0 0 24px;
}
.product-content li {
  color: var(--text);
  display: flex;
  gap: 10px;
}
.product-content li::before {
  content: "✓";
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(201, 162, 90, 0.18);
  color: var(--brown);
  font-weight: 900;
  font-size: 13px;
  margin-top: 1px;
}
.cooling li::before {
  background: rgba(16, 26, 53, 0.1);
  color: var(--blue);
}
.muted-section {
  background: rgba(255, 255, 255, 0.42);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.step {
  padding: 26px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 44px rgba(67, 41, 22, 0.07);
}
.step span {
  color: var(--gold);
  font-weight: 900;
  letter-spacing: 0.14em;
}
.step h3 {
  color: var(--brown);
  margin: 12px 0 8px;
  font-size: 20px;
}
.step p {
  color: var(--muted);
  font-size: 15px;
}
.package-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 38px;
  align-items: center;
}
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.price-card {
  min-height: 210px;
  padding: 24px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.price-card h3 {
  color: var(--brown);
  font-size: 21px;
  line-height: 1.15;
}
.price-card p {
  font-size: 14px;
  margin-top: 8px;
}
.price-card strong {
  color: var(--brown);
  margin-top: 20px;
}
.price-card.featured {
  color: #fff8e9;
  background: linear-gradient(145deg, var(--brown), #8b623b);
  box-shadow: var(--shadow);
  transform: translateY(-12px);
}
.price-card.featured h3,
.price-card.featured strong {
  color: #fff8e9;
}
.price-card.featured p {
  color: var(--gold-2);
}
.price-card.featured span {
  width: fit-content;
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.14);
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.order-section {
  background: linear-gradient(145deg, var(--brown), #2b190e);
  color: #fff8e9;
}
.order-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: start;
}
.order-copy h2,
.order-copy .eyebrow {
  color: #fff8e9;
}
.order-copy p {
  color: var(--gold-2);
}
.order-note {
  margin-top: 28px;
  padding: 20px;
  border-radius: 22px;
  color: #f8ecd0;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.order-note code {
  color: #fff;
  font-weight: 800;
}
.order-form {
  padding: 28px;
  border-radius: 30px;
  background: #fffaf1;
  color: var(--text);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.2);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
label {
  display: block;
  color: var(--brown);
  font-weight: 800;
  font-size: 14px;
  margin-bottom: 14px;
}
input,
select,
textarea {
  width: 100%;
  display: block;
  margin-top: 7px;
  padding: 15px 14px;
  border: 1px solid rgba(67, 41, 22, 0.16);
  border-radius: 16px;
  background: white;
  color: var(--text);
  outline: none;
}
input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 162, 90, 0.15);
}
textarea {
  min-height: 92px;
  resize: vertical;
}
.faq-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}
details {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 20px 22px;
}
summary {
  cursor: pointer;
  font-weight: 900;
  color: var(--brown);
}
details p {
  color: var(--muted);
  margin-top: 12px;
}
.medical-note {
  max-width: 900px;
  margin: 28px auto 0;
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 15px;
}
.medical-note strong {
  color: var(--brown);
}
footer {
  padding: 38px 0;
  border-top: 1px solid var(--line);
}
.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 14px;
}
.footer-content strong {
  display: block;
  color: var(--brown);
  letter-spacing: 0.18em;
}
.footer-content span {
  display: block;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 11px;
}
@media (max-width: 980px) {
  .hero-grid,
  .product-card,
  .product-card.cooling,
  .package-grid,
  .order-grid {
    grid-template-columns: 1fr;
  }
  .product-card.cooling .product-image {
    order: 0;
  }
  .hero-showcase {
    min-height: auto;
  }
  .mini-product-card {
    position: static;
    margin: -20px auto 0;
  }
  .steps,
  .pricing-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-row {
    grid-template-columns: 1fr;
  }
  .nav-links a:not(.nav-cta) {
    display: none;
  }
}
@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, 1160px);
  }
  .hero {
    padding: 58px 0 56px;
  }
  .brand small {
    display: none;
  }
  .brand strong {
    font-size: 14px;
  }
  .brand-logo-wrap {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
  }
  h1 {
    font-size: 44px;
  }
  .lead {
    font-size: 17px;
  }
  .hero-actions,
  .btn {
    width: 100%;
  }
  .glow-card img,
  .product-image img {
    height: 260px;
  }
  .mini-product-card {
    width: 100%;
  }
  .logo-strip .container {
    overflow-x: auto;
    justify-content: flex-start;
  }
  .section {
    padding: 64px 0;
  }
  .product-card,
  .order-form {
    padding: 18px;
    border-radius: 24px;
  }
  .product-content h3 {
    font-size: 34px;
  }
  .steps,
  .pricing-cards,
  .form-row {
    grid-template-columns: 1fr;
  }
  .price-card.featured {
    transform: none;
  }
  .footer-content {
    flex-direction: column;
  }
}
.instruction-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.instruction-card {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  box-shadow: 0 14px 40px rgba(67, 41, 22, 0.08);
}
.instruction-card h3 {
  font-size: 24px;
  color: var(--brown);
  margin-bottom: 12px;
}
.instruction-card p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 10px;
}
.instruction-card ul {
  list-style: none;
  display: grid;
  gap: 10px;
}
.instruction-card li {
  color: var(--text);
  display: flex;
  gap: 10px;
}
.instruction-card li::before {
  content: "•";
  color: var(--brown);
  font-weight: 900;
}
.future-note {
  margin-top: 20px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  color: var(--muted);
}
.future-note strong {
  color: var(--brown);
}
@media (max-width: 980px) {
  .instruction-grid {
    grid-template-columns: 1fr;
  }
}
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.review-card {
  padding: 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  box-shadow: 0 14px 30px rgba(67, 41, 22, 0.06);
}
.review-card p {
  margin: 0;
  color: var(--text);
  font-size: 15px;
  line-height: 1.5;
}
.review-card .stars {
  color: #b18133;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.review-card .reviewer {
  margin-top: 10px;
  color: var(--muted);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.packshots-wrap {
  margin-top: 22px;
}
.packshots {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.packshot {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 10px 28px rgba(67, 41, 22, 0.08);
}
.packshot img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  background: #f7f6f3;
  padding: 8px;
}
.packshot-temperature {
  border-color: rgba(38, 58, 104, 0.35);
  box-shadow: 0 10px 28px rgba(16, 26, 53, 0.14);
}
.packshot-temperature img {
  background: #eef3ff;
}
.reviews-cta {
  margin-top: 22px;
}
.reviews-cta .btn {
  min-width: 240px;
}
.temperature-accent .section-head h2 {
  color: var(--blue);
}
.temperature-accent .eyebrow {
  color: var(--blue);
}
.temperature-accent .eyebrow span {
  background: #3b6dc5;
  box-shadow: 0 0 0 7px rgba(59, 109, 197, 0.2);
}
.temperature-accent .instruction-card {
  border-color: rgba(16, 26, 53, 0.16);
}
@media (max-width: 980px) {
  .review-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .packshots {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  .review-grid,
  .packshots {
    grid-template-columns: 1fr;
  }
  .packshot img {
    height: 250px;
  }
  .reviews-cta .btn {
    width: 100%;
    min-width: 0;
  }
}
