:root {
  --bg: #f7f7fb;
  --bg2: #ffffff;
  --card: #ffffff;
  --stroke: rgba(25, 25, 40, 0.12);
  --stroke2: rgba(25, 25, 40, 0.08);
  --text: #121321;
  --muted: rgba(18, 19, 33, 0.7);

  --accent1: #fccba0;
  --accent2: #b3703b;
  --accent3: #793132;

  --shadow: 0 18px 60px rgba(20, 20, 35, 0.1);
  --shadow2: 0 10px 32px rgba(20, 20, 35, 0.08);
  --radius: 20px;
  --max: 1150px;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family:
    ui-sans-serif,
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
  color: var(--text);
  background:
    radial-gradient(900px 520px at 15% 10%, rgba(255, 77, 109, 0.12), transparent 60%),
    radial-gradient(820px 520px at 92% 5%, rgba(255, 183, 3, 0.12), transparent 55%),
    radial-gradient(900px 620px at 80% 90%, rgba(42, 157, 244, 0.1), transparent 55%),
    linear-gradient(180deg, var(--bg), #f1f2f8);
  overflow-x: hidden;
}

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

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

h1,
h2,
h3 {
  margin: 0 0 0.6rem;
  letter-spacing: -0.02em;
}

p {
  margin: 0.5rem 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.lead {
  font-size: 1.06rem;
}

.bg {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(15, 15, 25, 0.06) 0 1px, transparent 2px) 0 0/30px 30px;
  pointer-events: none;
  opacity: 0.25;
}

/* ====== Header / Nav ====== */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid var(--stroke2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
}

@media (min-width: 900px) {
  .header {
    padding: 16px 22px;
  }
}

.brand {
  display: flex;
  gap: 12px;
  align-items: center;
  min-width: 0;
}

.brand__logo {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: transparent;
  border: none;
  padding: 0;
  box-shadow: none;
  object-fit: contain;
}

@media (min-width: 900px) {
  .brand__logo {
    width: 72px;
    height: 72px;
  }
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand__name {
  font-weight: 900;
  letter-spacing: 0.01em;
}

.brand__tag {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 2px;
}

.nav {
  display: flex;
  gap: 18px;
  align-items: center;
  font-weight: 800;
}

.nav a {
  opacity: 0.92;
  padding: 10px 10px;
  border-radius: 12px;
}

.nav a:hover {
  background: rgba(20, 20, 35, 0.06);
  opacity: 1;
}

.nav__cta {
  background: linear-gradient(135deg, rgba(252, 203, 160, 0.95), rgba(179, 112, 59, 0.95));
  color: #101222;
  box-shadow: 0 14px 34px rgba(255, 77, 109, 0.18);
}

.nav__cta:hover {
  filter: brightness(1.03);
}

.nav-button {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid var(--stroke2);
  background: rgba(255, 255, 255, 0.85);
  cursor: pointer;
  padding: 0;
  appearance: none;
  position: relative;
  z-index: 1300;
  flex: 0 0 auto;
}

.nav-button span {
  position: absolute;
  left: 12px;
  right: 12px;
  height: 2px;
  background: rgba(18, 19, 33, 0.85);
  border-radius: 999px;
  transition:
    transform 0.22s ease,
    opacity 0.22s ease;
}

.nav-button span:nth-child(1) {
  top: 14px;
}

.nav-button span:nth-child(2) {
  top: 21px;
}

.nav-button span:nth-child(3) {
  top: 28px;
}

@media (max-width: 899px) {
  .nav-button {
    display: block;
  }

  .nav {
    position: fixed;
    top: 86px;
    right: 14px;
    left: 14px;
    z-index: 1200;
    flex-direction: column;
    gap: 6px;
    padding: 12px;
    border-radius: 18px;
    border: 1px solid var(--stroke2);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow2);
    transform: translateY(-14px);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition:
      transform 0.22s ease,
      opacity 0.22s ease,
      visibility 0.22s ease;
  }

  .nav a {
    width: 100%;
    text-align: center;
    padding: 12px;
  }

  .header.menu-open .nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
  }

  .header.menu-open .nav-button span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .header.menu-open .nav-button span:nth-child(2) {
    opacity: 0;
  }

  .header.menu-open .nav-button span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

@media (min-width: 900px) {
  .nav {
    position: static;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
  }
}

/* ====== Layout ====== */
.section {
  padding: 70px 18px;
}

.section--alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0));
  border-top: 1px solid var(--stroke2);
  border-bottom: 1px solid var(--stroke2);
}

.section__head {
  max-width: var(--max);
  margin: 0 auto 22px;
  text-align: left;
}

.section__head h2 {
  font-size: clamp(1.6rem, 1.1rem + 1.4vw, 2.2rem);
  text-align: left;
}

.section__head p {
  max-width: 68ch;
  text-align: left;
}

.section__head--divider {
  padding-top: 42px;
  margin-top: 34px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

/* ====== Hero ====== */
.hero {
  padding: 48px 18px 22px;
}

.hero__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 22px;
  align-items: center;
}

@media (max-width: 980px) {
  .hero__inner {
    grid-template-columns: 1fr;
  }
}

.section--tight {
  padding: 34px 18px 54px;
}

.diy {
  max-width: var(--max);
  margin: 0 auto;
}

.diy__card {
  border-radius: var(--radius);
  border: 1px solid var(--stroke2);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow2);
  padding: 22px;
  position: relative;
  overflow: hidden;
}

.diy__card::before {
  content: "";
  position: absolute;
  inset: -60px -80px auto -80px;
  height: 220px;
  background:
    radial-gradient(circle at 20% 30%, rgba(252, 203, 160, 0.35), transparent 58%),
    radial-gradient(circle at 70% 20%, rgba(179, 112, 59, 0.22), transparent 62%);
  filter: blur(10px);
  pointer-events: none;
}

.diy__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--stroke2);
  background: rgba(255, 255, 255, 0.75);
  font-weight: 900;
  position: relative;
}

.diy__title {
  font-size: clamp(1.5rem, 1.1rem + 1.2vw, 2.1rem);
  line-height: 1.12;
  margin-top: 12px;
  position: relative;
}

.diy__lead {
  max-width: 130ch;
  position: relative;
}

.hero__copy,
.hero__media {
  opacity: 0;
}

.hero__copy {
  transform: translateX(-60px);
  animation: ee-slide-left 900ms cubic-bezier(0.2, 0.8, 0.2, 1) 200ms forwards;
}

.hero__media {
  transform: translateX(60px);
  animation: ee-slide-right 900ms cubic-bezier(0.2, 0.8, 0.2, 1) 300ms forwards;
}

.hero__copy .pill,
.hero__copy h1,
.hero__copy .lead,
.hero__copy .hero__actions,
.hero__copy .hero__meta {
  opacity: 0;
  transform: translateY(12px);
  animation: ee-fade-up 700ms ease forwards;
}

.hero__copy .pill {
  animation-delay: 450ms;
}
.hero__copy h1 {
  animation-delay: 550ms;
}
.hero__copy .lead {
  animation-delay: 650ms;
}
.hero__copy .hero__actions {
  animation-delay: 750ms;
}
.hero__copy .hero__meta {
  animation-delay: 850ms;
}

@keyframes ee-slide-left {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes ee-slide-right {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes ee-fade-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__copy,
  .hero__media,
  .hero__copy .pill,
  .hero__copy h1,
  .hero__copy .lead,
  .hero__copy .hero__actions,
  .hero__copy .hero__meta {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

.diy__note {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px dashed rgba(121, 49, 50, 0.28);
  background: rgba(252, 203, 160, 0.18);
  color: rgba(18, 19, 33, 0.86);
  position: relative;
}

.diy__areas {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  font-size: 0.95rem;
  color: var(--muted);
}

.diy__areas strong {
  margin-right: 6px;
  color: rgba(18, 19, 33, 0.92);
  font-weight: 900;
}

.area-tag {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--stroke2);
  background: rgba(255, 255, 255, 0.75);
  font-weight: 700;
  font-size: 0.85rem;
  color: rgba(18, 19, 33, 0.85);
  box-shadow: 0 6px 16px rgba(20, 20, 35, 0.04);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--stroke2);
  color: rgba(18, 19, 33, 0.86);
  font-weight: 900;
  font-size: 0.9rem;
  box-shadow: 0 10px 24px rgba(20, 20, 35, 0.06);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent1), var(--accent2));
  box-shadow: 0 0 0 6px rgba(255, 77, 109, 0.14);
}

.hero h1 {
  margin-top: 14px;
  font-size: clamp(2.2rem, 1.2rem + 3vw, 3.5rem);
  line-height: 1.06;
}

.accent {
  background: linear-gradient(135deg, var(--accent1), var(--accent2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 16px;
  border: 0px solid var(--stroke2);
  background: rgba(255, 255, 255, 0.85);
  color: rgba(18, 19, 33, 0.92);
  font-weight: 900;
  letter-spacing: 0.01em;
  transition: 0.18s ease;
  box-shadow: 0 10px 24px rgba(20, 20, 35, 0.06);
}

.btn:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.95);
}

.btn--primary {
  border-color: transparent;
  color: #101222;
  background: linear-gradient(135deg, rgba(252, 203, 160, 0.95), rgba(179, 112, 59, 0.95));
  box-shadow: 0 18px 52px rgba(255, 77, 109, 0.18);
}

.btn--primary:hover {
  filter: brightness(1.03);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.65);
}

.hero__meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

@media (max-width: 520px) {
  .hero__meta {
    grid-template-columns: 1fr;
  }
}

.meta-card {
  padding: 12px 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--stroke2);
  box-shadow: 0 10px 24px rgba(20, 20, 35, 0.05);
}

.meta-card__title {
  font-weight: 1000;
  color: rgba(18, 19, 33, 0.92);
}

.meta-card__sub {
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 4px;
}

.hero__media {
  position: relative;
}

.media-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--stroke2);
  background: rgba(255, 255, 255, 0.85);
  box-shadow: var(--shadow);
}

.media-card img {
  width: 100%;
  height: auto;
}

.media-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 10%, rgba(255, 77, 109, 0.18), transparent 55%),
    radial-gradient(circle at 80% 30%, rgba(255, 183, 3, 0.18), transparent 55%);
  filter: blur(18px);
  z-index: -1;
  transform: scale(1.15);
  pointer-events: none;
}

/* ====== Cards / Grid ====== */
.grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}

.card {
  grid-column: span 6;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--stroke2);
  overflow: hidden;
  box-shadow: var(--shadow2);
}

.card--wide {
  grid-column: span 12;
  display: grid;
}

@media (max-width: 960px) {
  .card {
    grid-column: span 12;
  }

  .card--wide {
    grid-template-columns: 1fr;
  }
}

.card__img {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.8));
  border-bottom: 1px solid var(--stroke2);
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card__img img {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: contain;
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--stroke2);
  box-shadow: 0 10px 26px rgba(20, 20, 35, 0.06);
}

.card--wide .card__img img {
  max-height: 640px;
}

.card__body {
  padding: 16px 16px 18px;
}

.card__body h3 {
  font-size: 1.25rem;
}

.card__row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.tag {
  display: inline-flex;
  padding: 8px 10px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 0.85rem;
  color: rgba(18, 19, 33, 0.9);
  border: 1px solid var(--stroke2);
  background: rgba(255, 255, 255, 0.85);
}

.tag--soft {
  color: rgba(18, 19, 33, 0.78);
  background: rgba(255, 255, 255, 0.65);
}

.card__cta {
  display: inline-block;
  margin-top: 14px;
  font-weight: 1000;
  color: rgba(18, 19, 33, 0.92);
  opacity: 0.92;
}

.card__cta:hover {
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.bullets {
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.bullets li {
  margin: 6px 0;
}

/* ====== Steps ====== */
.steps {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

@media (max-width: 820px) {
  .steps {
    grid-template-columns: 1fr;
  }
}

.step {
  border-radius: var(--radius);
  border: 1px solid var(--stroke2);
  background: rgba(255, 255, 255, 0.82);
  padding: 16px;
  box-shadow: 0 10px 24px rgba(20, 20, 35, 0.05);
}

.step__num {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 1000;
  color: #101222;
  background: linear-gradient(135deg, rgba(252, 203, 160, 0.95), rgba(179, 112, 59, 0.95));
  box-shadow: 0 16px 44px rgba(255, 77, 109, 0.18);
  margin-bottom: 10px;
}

/* ====== Reviews ====== */
.reviews-shell {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(290px, 0.9fr) minmax(0, 1.1fr);
  gap: 14px;
  align-items: stretch;
}

@media (max-width: 980px) {
  .reviews-shell {
    grid-template-columns: 1fr;
  }
}

.card-surface {
  border-radius: var(--radius);
  border: 1px solid var(--stroke2);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow2);
  min-width: 0;
}

.reviews-intro,
.reviews-panel {
  padding: 20px;
  min-width: 0;
}

.reviews-intro {
  position: sticky;
  top: 100px;
}

@media (max-width: 980px) {
  .reviews-intro {
    position: static;
    top: auto;
  }
}

.reviews-intro__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--stroke2);
  background: rgba(255, 255, 255, 0.75);
  font-size: 0.84rem;
  font-weight: 900;
  color: rgba(18, 19, 33, 0.84);
}

.reviews-score {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
}

.reviews-score__stars {
  display: inline-block;
  font-size: 1.25rem;
  line-height: 1;
  letter-spacing: 0.18em;
  color: var(--accent2);
}

.reviews-score__value {
  font-size: clamp(1.6rem, 1.1rem + 1vw, 2.2rem);
  font-weight: 1000;
  color: rgba(18, 19, 33, 0.96);
  line-height: 1.05;
}

.reviews-score__count {
  margin-top: 4px;
  color: var(--muted);
  font-weight: 700;
}

.reviews-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.reviews-note {
  margin-top: 14px;
  font-size: 0.9rem;
}

.reviews-carousel {
  position: relative;
  width: 100%;
  min-width: 0;
}

.reviews-viewport {
  overflow: hidden;
  width: 100%;
  min-width: 0;
}

.reviews-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  gap: 0;
  align-items: stretch;
  will-change: transform;
  width: 100%;
}

.reviews-carousel__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 16px;
}

.reviews-nav {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 999px;
  border: 1px solid var(--stroke2);
  background: rgba(255, 255, 255, 0.84);
  color: rgba(18, 19, 33, 0.86);
  box-shadow: 0 10px 24px rgba(20, 20, 35, 0.06);
  font-size: 1.4rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease;
  cursor: pointer;
}

.reviews-nav:hover,
.reviews-nav:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(18, 19, 33, 0.18);
  box-shadow: 0 14px 28px rgba(20, 20, 35, 0.1);
}

.reviews-nav:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.reviews-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 1 1 auto;
  min-width: 0;
}

.reviews-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  padding: 0;
  background: rgba(18, 19, 33, 0.18);
  transition:
    transform 0.22s ease,
    width 0.22s ease,
    background 0.22s ease;
  cursor: pointer;
}

.reviews-dot.is-active {
  width: 28px;
  background: var(--accent2);
}

.review-card {
  min-height: 100%;
  height: 100%;
  width: 100%;
  min-width: 0;
  border-radius: 18px;
  border: 1px solid var(--stroke2);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.78));
  box-shadow: 0 10px 24px rgba(20, 20, 35, 0.05);
  padding: 16px;
}

.review-card__top {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.review-card__avatar {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  overflow: hidden;
  background: #eee;
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-card__avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.review-card__avatar-fallback {
  font-weight: 1000;
  color: rgba(18, 19, 33, 0.88);
}

.review-card__identity {
  min-width: 0;
  flex: 1 1 auto;
}

.review-card__author-link {
  display: inline-block;
  font-weight: 1000;
  color: rgba(18, 19, 33, 0.94);
  word-break: break-word;
}

.review-card__author-link--static {
  cursor: default;
}

.review-card__meta {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.92rem;
}

.review-card__stars {
  margin-top: 14px;
  color: var(--accent2);
  font-size: 0.98rem;
  letter-spacing: 0.14em;
}

.review-card__text {
  margin-top: 12px;
  color: rgba(18, 19, 33, 0.78);
  overflow-wrap: anywhere;
  word-break: break-word;
}

.review-card--message {
  grid-column: 1 / -1;
}

@media (max-width: 640px) {
  .reviews-intro,
  .reviews-panel {
    padding: 16px;
  }

  .review-card {
    padding: 14px;
  }

  .reviews-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .reviews-actions .btn {
    width: 100%;
  }
}

.skeleton {
  animation: ee-pulse 1.2s ease-in-out infinite;
  background: linear-gradient(90deg, rgba(18, 19, 33, 0.06), rgba(18, 19, 33, 0.1), rgba(18, 19, 33, 0.06));
  background-size: 200% 100%;
}

.skeleton--line {
  width: 150px;
  height: 14px;
  border-radius: 999px;
}

.skeleton--line.short {
  width: 100px;
  margin-top: 8px;
}

.skeleton--block {
  width: 100%;
  height: 78px;
  border-radius: 14px;
  margin-top: 12px;
}

@keyframes ee-pulse {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* ====== FAQ ====== */
.faq {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 10px;
}

details {
  border-radius: var(--radius);
  border: 1px solid var(--stroke2);
  background: rgba(255, 255, 255, 0.82);
  padding: 12px 14px;
  box-shadow: 0 10px 24px rgba(20, 20, 35, 0.05);
}

summary {
  cursor: pointer;
  font-weight: 1000;
  color: rgba(18, 19, 33, 0.92);
}

details p {
  margin-top: 10px;
}

/* ====== Contact ====== */
.contact {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 14px;
  align-items: start;
}

@media (max-width: 920px) {
  .contact {
    grid-template-columns: 1fr;
  }
}

.contact__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.contact__note {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid var(--stroke2);
  background: rgba(255, 255, 255, 0.75);
  color: rgba(18, 19, 33, 0.86);
  box-shadow: 0 10px 24px rgba(20, 20, 35, 0.05);
}

.muted {
  color: var(--muted);
}

.tiny {
  font-size: 0.85rem;
}

/* ====== Form ====== */
.ee-form {
  display: grid;
  gap: 12px;
  margin-top: 10px;
}

.ee-grid {
  display: grid;
  gap: 12px;
}

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

@media (max-width: 560px) {
  .ee-grid--2 {
    grid-template-columns: 1fr;
  }
}

.ee-field span {
  display: block;
  font-weight: 900;
  color: rgba(18, 19, 33, 0.92);
  margin-bottom: 6px;
}

.ee-field b {
  color: rgba(121, 49, 50, 0.9);
}

.ee-field input,
.ee-field textarea {
  width: 100%;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid var(--stroke2);
  background: rgba(236, 226, 226, 0.85);
  color: var(--text);
  outline: none;
  box-shadow: 0 10px 24px rgba(20, 20, 35, 0.05);
}

.ee-field input:focus,
.ee-field textarea:focus {
  border-color: rgba(179, 112, 59, 0.55);
  box-shadow: 0 0 0 4px rgba(179, 112, 59, 0.18);
}

.ee-hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}

.social-section {
  padding: 20px 20px;
  background: var(--bg2);
  border-top: 1px solid var(--stroke);
}

.social-container {
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.social-container h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.social-container p {
  font-size: 22px;
  color: var(--muted);
  margin-bottom: 12px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: white;
  border: 1px solid var(--stroke2);
  transition: all 0.25s ease;
}

.social-icons svg {
  width: 26px;
  height: 26px;
}

.social-icons a:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.12);
}

/* ====== Footer ====== */
.footer {
  border-top: 1px solid var(--stroke2);
  padding: 22px 18px;
  background: rgba(255, 255, 255, 0.7);
  text-align: center;
}

.supplies-grid img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  padding: 10px;
}

.small-hero {
  padding: 80px 0 40px;
}

.top-gap {
  margin-top: 12px;
}

/* ====== Legal Pages ====== */
.legal-page {
  padding: 72px 18px;
}

.legal-shell {
  max-width: 940px;
  margin: 0 auto;
}

.legal-hero {
  margin-bottom: 22px;
}

.legal-kicker {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--stroke2);
  background: rgba(255, 255, 255, 0.78);
  font-weight: 900;
  font-size: 0.86rem;
  color: rgba(18, 19, 33, 0.78);
  box-shadow: 0 10px 24px rgba(20, 20, 35, 0.05);
}

.legal-hero h1 {
  margin-top: 14px;
  font-size: clamp(2rem, 1.3rem + 2vw, 3rem);
}

.legal-hero p {
  max-width: 70ch;
}

.legal-card {
  border-radius: var(--radius);
  border: 1px solid var(--stroke2);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow2);
  padding: 26px;
}

.legal-card h2,
.legal-card h3 {
  margin-top: 24px;
}

.legal-card h2:first-child,
.legal-card h3:first-child {
  margin-top: 0;
}

.legal-card p {
  margin-top: 8px;
}

.legal-card a {
  font-weight: 900;
  color: rgba(121, 49, 50, 0.95);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer__links {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.footer__links a {
  color: var(--muted);
  font-weight: 800;
}

.footer__links a:hover {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (max-width: 640px) {
  .legal-page {
    padding: 48px 18px;
  }

  .legal-card {
    padding: 20px;
  }
}

/* ===== Google Places Autocomplete Dropdown Fix ===== */

.pac-container {
  z-index: 2147483647 !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: #ffffff !important;
  border: 1px solid rgba(25, 25, 40, 0.12) !important;
  border-radius: 14px !important;
  overflow: hidden !important;
  box-shadow: 0 18px 45px rgba(20, 20, 35, 0.18) !important;
  font-family: inherit !important;
}

.pac-item {
  display: block !important;
  padding: 11px 14px !important;
  font-size: 14px !important;
  line-height: 1.35 !important;
  color: rgba(18, 19, 33, 0.82) !important;
  background: #ffffff !important;
  border-top: 1px solid rgba(25, 25, 40, 0.08) !important;
  cursor: pointer !important;
}

.pac-item:first-child {
  border-top: 0 !important;
}

.pac-item:hover,
.pac-item-selected {
  background: rgba(252, 203, 160, 0.22) !important;
}

.pac-item-query {
  color: rgba(18, 19, 33, 0.96) !important;
  font-weight: 900 !important;
}

.pac-matched {
  color: rgba(121, 49, 50, 0.95) !important;
  font-weight: 900 !important;
}

.pac-icon {
  display: none !important;
}

.pac-logo::after {
  margin: 8px 12px 10px !important;
}

.ee-address-dropdown {
  position: absolute;
  z-index: 2147483647;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(25, 25, 40, 0.12);
  box-shadow: 0 18px 45px rgba(20, 20, 35, 0.18);
}

.ee-address-option {
  width: 100%;
  display: grid;
  gap: 2px;
  padding: 11px 14px;
  border: 0;
  border-top: 1px solid rgba(25, 25, 40, 0.08);
  background: #fff;
  text-align: left;
  cursor: pointer;
}

.ee-address-option:first-child {
  border-top: 0;
}

.ee-address-option:hover {
  background: rgba(252, 203, 160, 0.22);
}

.ee-address-main {
  font-weight: 900;
  color: rgba(18, 19, 33, 0.96);
}

.ee-address-secondary {
  font-size: 0.86rem;
  color: rgba(18, 19, 33, 0.62);
}

.ee-grid--3 {
  grid-template-columns: 1fr 0.42fr 0.55fr;
  align-items: end;
}

.whats-new-card {
  opacity: 0;
  transform: translateY(30px) scale(0.98);
  transition: all 0.6s ease;
}

/* active state when visible */
.whats-new-card.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* slight overshoot effect */
.whats-new-card.is-visible {
  animation: whatsNewPop 0.6s ease;
}

@keyframes whatsNewPop {
  0% {
    transform: translateY(30px) scale(0.98);
  }
  60% {
    transform: translateY(-4px) scale(1.02);
  }
  100% {
    transform: translateY(0) scale(1);
  }
}

.whats-new-card.is-visible .tag:first-child {
  animation: tagPulseOnce 0.5s ease;
}

@keyframes tagPulseOnce {
  0% { transform: scale(1); }
  50% { transform: scale(1.15); }
  100% { transform: scale(1); }
}