:root {
  --blue: #1746d1;
  --blue-dark: #0d2f91;
  --blue-light: #edf3ff;

  --silver: #c8ccd4;
  --silver-dark: #9ea4ae;
  --silver-light: #eef0f4;

  --white: #ffffff;
  --off-white: #f8f9fc;

  --text: #20242c;
  --muted: #666d78;

  --shadow-soft: 0 14px 40px rgba(13, 47, 145, 0.1);
  --shadow-card: 0 10px 28px rgba(13, 47, 145, 0.08);

  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(23, 70, 209, 0.05), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f8f9fc 100%);
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

/* =========================
   HERO
========================= */

.hero {
  position: relative;
  overflow: hidden;
  min-height: 680px;
  display: flex;
  align-items: center;
  padding: 80px 8%;
  background:
    linear-gradient(
      120deg,
      #ffffff 0%,
      #ffffff 55%,
      #f5f7fc 100%
    );
  border-bottom: 1px solid var(--silver-light);
}

/* subtle silver decorative sweep */
.hero::after {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  right: -350px;
  top: -310px;
  border: 1px solid rgba(150, 155, 165, 0.22);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgba(23, 70, 209, 0.025),
    0 0 0 140px rgba(150, 155, 165, 0.025);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 80px;
}

/* LOGO SIDE */

.hero-logo-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo-wrap::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(23, 70, 209, 0.08) 0%,
    rgba(23, 70, 209, 0.025) 45%,
    transparent 72%
  );
  filter: blur(4px);
}

.hero-logo {
  position: relative;
  z-index: 2;
  display: block;
  width: min(100%, 390px);
  height: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
}

/* COPY SIDE */

.hero-copy {
  max-width: 650px;
}

.hero-eyebrow {
  display: block;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin: 0;
  max-width: 620px;

  color: var(--blue-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.3rem, 6vw, 5.8rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.hero-copy h1::after {
  content: "";
  display: block;
  width: 90px;
  height: 2px;
  margin: 30px 0 26px;

  background: linear-gradient(
    90deg,
    var(--blue),
    var(--silver-dark),
    transparent
  );
}

.hero-description {
  max-width: 560px;
  margin: 0;

  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
}

/* HERO BUTTONS */

.hero .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 52px;
  padding: 0 28px;

  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.hero .btn-primary {
  background: linear-gradient(
    135deg,
    var(--blue),
    var(--blue-dark)
  );
  color: #ffffff;
  border: 1px solid var(--blue);

  box-shadow:
    0 10px 24px rgba(23, 70, 209, 0.18);
}

.hero .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 14px 30px rgba(23, 70, 209, 0.25);
}

.hero .btn-outline {
  background: rgba(255, 255, 255, 0.8);
  color: var(--blue-dark);
  border: 1px solid var(--silver);
}

.hero .btn-outline:hover {
  transform: translateY(-2px);
  background: #ffffff;
  border-color: var(--blue);
}

/* MOBILE HERO */

@media (max-width: 800px) {

  .hero {
    min-height: auto;
    padding: 65px 24px 70px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }

  .hero-logo {
    width: min(78vw, 300px);
  }

  .hero-logo-wrap::before {
    width: 280px;
    height: 280px;
  }

  .hero-copy {
    margin: 0 auto;
  }

  .hero-copy h1 {
    font-size: clamp(2.7rem, 11vw, 4rem);
  }

  .hero-copy h1::after {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-description {
    margin: 0 auto;
  }

  .hero-actions {
    justify-content: center;
    flex-wrap: wrap;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 175px;
  padding: 13px 24px;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.2s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: white;
  box-shadow: 0 10px 24px rgba(23, 70, 209, 0.18);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(23, 70, 209, 0.24);
}

.btn-outline {
  background: white;
  color: var(--blue-dark);
  border: 1px solid var(--silver);
}

.btn-outline:hover {
  background: var(--blue-light);
  border-color: var(--blue);
}

/* BRAND HIGHLIGHTS */

.brand-highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid var(--silver-light);
  border-bottom: 1px solid var(--silver-light);
}

.highlight {
  padding: 26px 24px;
  text-align: center;
  position: relative;
}

.highlight:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 28%;
  bottom: 28%;
  width: 1px;
  background: linear-gradient(
    180deg,
    transparent,
    var(--silver),
    transparent
  );
}

.highlight-icon {
  display: inline-block;
  color: var(--silver-dark);
  margin-bottom: 6px;
  font-size: 0.8rem;
}

.highlight h3 {
  margin: 0 0 6px;
  color: var(--blue-dark);
  font-size: 1rem;
  letter-spacing: 0.02em;
  font-weight: 700;
}

.highlight p {
  margin: 0 auto;
  max-width: 250px;
  color: var(--muted);
  line-height: 1.45;
  font-size: 0.88rem;
}
/* SHARED SECTION STYLES */

.products-section,
.scents-section,
.order-section,
.contact-section {
  padding: 88px 8%;
}

.products-section,
.contact-section {
  background: white;
}

.scents-section {
  background: var(--off-white);
}

.order-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #f8f9fc 100%);
}

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

.eyebrow {
  display: inline-block;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-heading h2 {
  margin: 0;
  color: var(--blue-dark);
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  line-height: 1.05;
}

.section-heading p {
  margin: 14px auto 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 1.05rem;
}
/* PRODUCT SECTION CONTRAST */

.products-section {
  position: relative;
  padding: 90px 8% 110px;
  background:
    linear-gradient(
      135deg,
      #0d2f91 0%,
      #1746d1 55%,
      #0b286f 100%
    );
  overflow: hidden;
}

.products-section::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -180px;
  top: -220px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.14);
  box-shadow:
    0 0 0 70px rgba(255,255,255,.025),
    0 0 0 140px rgba(255,255,255,.015);
  pointer-events: none;
}

.products-section .section-heading {
  position: relative;
  z-index: 2;
  margin-bottom: 52px;
}

.products-section .eyebrow {
  color: var(--silver);
}

.products-section .section-heading h2 {
  color: #ffffff;
}

.products-section .section-heading p {
  color: rgba(255,255,255,.78);
}

.products-section .product-cards {
  position: relative;
  z-index: 2;
}

.products-section .product-card {
  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,.98) 0%,
      rgba(247,249,255,.98) 100%
    );
  border: 1px solid rgba(255,255,255,.35);
  box-shadow:
    0 18px 38px rgba(0,0,0,.16);
}
/* PRODUCT CARDS */

.product-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  max-width: 1120px;
  margin: 0 auto;
}

.product-card {
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #fbfcff 100%
  );
  border: 1px solid rgba(192, 196, 204, 0.7);
  border-radius: 24px;
  padding: 34px 30px;
  box-shadow:
    0 14px 34px rgba(13, 47, 145, 0.08),
    inset 0 1px 0 rgba(255,255,255,.9);
  position: relative;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow:
    0 18px 40px rgba(13, 47, 145, 0.12),
    inset 0 1px 0 rgba(255,255,255,.95);
}

.product-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 12%;
  width: 76%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--blue),
    var(--silver-dark),
    transparent
  );
}

.product-card h3 {
  margin: 0 0 18px;
  color: var(--blue-dark);
  font-size: 1.55rem;
  line-height: 1.15;
}

.card-accent {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: linear-gradient(
    145deg,
    var(--blue-light),
    #ffffff
  );
  border: 1px solid var(--silver-light);
  color: var(--blue-dark);
  font-size: 0.78rem;
  font-weight: 700;
}

.card-description {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.price-list {
  border-top: 1px solid var(--silver-light);
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px solid var(--silver-light);
}

.price-row strong {
  color: var(--blue-dark);
}

.featured-card {
  background: linear-gradient(
    145deg,
    #f9fbff 0%,
    #eef3ff 100%
  );
  border-color: rgba(23, 70, 209, 0.22);
  transform: translateY(-6px);
}

.featured-card::after {
  content: "MOST POPULAR";
  position: absolute;
  top: 18px;
  right: -34px;
  transform: rotate(45deg);
  width: 130px;
  text-align: center;
  padding: 5px 0;
  background: var(--blue);
  color: white;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.featured-price {
  margin-top: 24px;
  color: var(--blue);
  font-size: 2.8rem;
  font-weight: 700;
}

.featured-card {
  background:
    linear-gradient(160deg, #ffffff 0%, #f3f6ff 100%);
}

.featured-price {
  margin-top: 22px;
  color: var(--blue);
  font-size: 2.6rem;
  font-weight: 700;
}

/* =========================
   SCENT COLLECTION
========================= */

.scents-section {
  position: relative;
  padding: 100px 8% 75px;
  background:
    linear-gradient(
      180deg,
      #f8f9fc 0%,
      #ffffff 100%
    );
  overflow: hidden;
}

.scents-section::before {
  content: "";
  position: absolute;
  left: -160px;
  bottom: -220px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  border: 1px solid rgba(192, 196, 204, 0.28);
  box-shadow:
    0 0 0 70px rgba(23, 70, 209, 0.018),
    0 0 0 140px rgba(192, 196, 204, 0.018);
  pointer-events: none;
}

.scents-section .section-heading {
  position: relative;
  z-index: 2;
  margin-bottom: 48px;
}

.scent-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1080px;
  margin: 0 auto;
}

.scent-card {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  min-height: 78px;
  padding: 20px 22px;

  background:
    linear-gradient(
      145deg,
      #ffffff 0%,
      #f7f9ff 100%
    );

  color: var(--blue-dark);

  border: 1px solid rgba(192, 196, 204, 0.72);
  border-radius: 18px;

  cursor: pointer;
  font-weight: 700;
  text-align: left;

  box-shadow:
    0 10px 24px rgba(13, 47, 145, 0.055),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);

  overflow: hidden;

  transition:
    transform .2s ease,
    box-shadow .2s ease,
    border-color .2s ease;
}

.scent-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18%;
  bottom: 18%;
  width: 3px;
  border-radius: 999px;

  background: linear-gradient(
    180deg,
    var(--blue),
    var(--silver-dark)
  );

  opacity: .75;
}

.scent-card::after {
  content: "";
  position: absolute;
  width: 90px;
  height: 90px;
  right: -48px;
  top: -48px;
  border-radius: 50%;
  background: rgba(23, 70, 209, 0.035);
  transition: .2s ease;
}

.scent-card:hover {
  transform: translateY(-3px);

  border-color: rgba(23, 70, 209, 0.32);

  box-shadow:
    0 15px 30px rgba(13, 47, 145, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.scent-card:hover::after {
  width: 120px;
  height: 120px;
}

.scent-arrow {
  position: relative;
  z-index: 2;
  color: var(--blue);
  font-size: 1rem;
  opacity: .72;
  transition: transform .2s ease;
}

.scent-card:hover .scent-arrow {
  transform: translateX(4px);
}

.scent-display {
  position: relative;
  z-index: 2;

  display: flex;
  align-items: flex-start;
  gap: 18px;

  max-width: 820px;
  margin: 42px auto 0;
  padding: 28px 30px;

  background:
    linear-gradient(
      145deg,
      #0d2f91 0%,
      #1746d1 65%,
      #0b286f 100%
    );

  border: 1px solid rgba(255,255,255,.18);
  border-radius: 22px;

  box-shadow:
    0 18px 36px rgba(13, 47, 145, 0.16);
}

.scent-display-icon {
  flex: 0 0 auto;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 42px;
  height: 42px;

  border-radius: 50%;

  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);

  color: var(--silver-light);
  font-size: 1.15rem;
}

.scent-display strong {
  display: block;
  margin-bottom: 6px;

  color: #ffffff;
  font-size: 1.08rem;
}

.scent-display p {
  margin: 0;

  color: rgba(255,255,255,.78);
  line-height: 1.6;
}

/* MOBILE SCENTS */

@media (max-width: 800px) {

  .scents-section {
    padding: 75px 24px 85px;
  }

  .scent-grid {
    grid-template-columns: 1fr;
  }

  .scent-display {
    padding: 24px;
  }
}

/* =========================
   ORDER SECTION
========================= */

.order-section {
  position: relative;
  padding: 95px 8% 110px;
  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f7f9ff 100%
    );
  overflow: hidden;
}

.order-section::before {
  content: "";
  position: absolute;
  right: -180px;
  bottom: -230px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(192, 196, 204, .24);
  box-shadow:
    0 0 0 70px rgba(23, 70, 209, .018),
    0 0 0 140px rgba(192, 196, 204, .018);
  pointer-events: none;
}

.order-container {
  position: relative;
  z-index: 2;
  max-width: 1120px;
  margin: 0 auto;
}

.order-form {
  background: rgba(255,255,255,.97);
  border: 1px solid rgba(192, 196, 204, .55);
  border-radius: 28px;
  padding: 38px;
  box-shadow:
    0 24px 55px rgba(13, 47, 145, .10),
    inset 0 1px 0 rgba(255,255,255,.95);
}

.order-builder {
  display: grid;
  grid-template-columns: 1.15fr 1.15fr .8fr .8fr;
  gap: 18px;
  align-items: end;

  padding: 24px;

  background:
    linear-gradient(
      145deg,
      #f6f8fd 0%,
      #eef3ff 100%
    );

  border: 1px solid rgba(192,196,204,.55);
  border-radius: 20px;
}

.form-field label,
.mix-match-fields > label {
  display: block;
  margin-bottom: 8px;
  color: var(--blue-dark);
  font-weight: 700;
}

.form-field select,
.form-field input,
.form-field textarea,
.mix-match-fields select {
  width: 100%;
  padding: 13px 14px;

  background: #ffffff;
  color: var(--text);

  border: 1px solid rgba(150,155,165,.65);
  border-radius: 12px;

  outline: none;

  transition:
    border-color .2s ease,
    box-shadow .2s ease,
    background .2s ease;
}

.form-field select:focus,
.form-field input:focus,
.form-field textarea:focus,
.mix-match-fields select:focus {
  border-color: var(--blue);
  box-shadow:
    0 0 0 3px rgba(23,70,209,.10);
}

.mix-match-fields {
  grid-column: 1 / -1;
  margin-top: 6px;
}

.mix-match-fields > label {
  display: block;
  margin-bottom: 8px;
  color: var(--blue-dark);
  font-weight: 700;
}

/* MIX & MATCH FINAL LAYOUT */

.order-builder {
  position: relative;
}

.mix-match-fields {
  grid-column: 1 / 4;
  margin-top: 10px;
}

.order-total {
  grid-column: 4;
  grid-row: 1;
  align-self: start;
}

#bundleSelections {
  width: 100%;
}

.mix-match-bundle {
  width: 100%;
}

.mix-match-bundle .mix-match-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

@media (max-width: 800px) {
  .mix-match-fields,
  .order-total {
    grid-column: 1 / -1;
  }

  .order-total {
    grid-row: auto;
  }

  .mix-match-bundle .mix-match-grid {
    grid-template-columns: 1fr;
  }
}

/* Mobile */
@media (max-width: 700px) {
  .mix-match-fields {
    grid-template-columns: 1fr;
  }

  .mix-match-fields .order-total {
    grid-column: 1;
    grid-row: auto;
    width: 100%;
    margin-top: 12px;
  }

  .mix-match-bundle .mix-match-grid {
    grid-template-columns: 1fr;
  }
}
#bundleQuantity {
  width: min(260px, 100%);
  margin-bottom: 18px;
}

#bundleSelections {
  display: grid;
  gap: 14px;
}

.mix-match-bundle {
  padding: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(192, 196, 204, 0.55);
  border-radius: 16px;
  box-shadow: 0 8px 18px rgba(13, 47, 145, 0.045);
}

.bundle-title {
  display: block;
  margin-bottom: 10px;
  color: var(--blue-dark);
  font-size: 0.95rem;
  font-weight: 700;
}

.mix-match-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.mix-match-bundle + .mix-match-bundle {
  margin-top: 0;
  padding-top: 18px;
  border-top: none;
}

@media (max-width: 800px) {
  .mix-match-grid {
    grid-template-columns: 1fr;
  }

  #bundleQuantity {
    width: 100%;
  }
}

.order-total {
  min-height: 74px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  padding: 12px 16px;

  background:
    linear-gradient(
      145deg,
      #ffffff 0%,
      #f7f9ff 100%
    );

  border: 1px solid rgba(192,196,204,.55);
  border-left: 4px solid var(--blue);
  border-radius: 16px;

  box-shadow:
    0 8px 20px rgba(13,47,145,.06);
}

.order-total span {
  color: var(--muted);
  font-size: .82rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.order-total strong {
  margin-top: 2px;
  color: var(--blue);
  font-size: 2.15rem;
  line-height: 1;
}

.customer-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 26px;
}

.customer-fields {
  display: grid;
  gap: 16px;
}

.special-request-field textarea {
  min-height: 148px;
  resize: vertical;
}

.order-notes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 26px;
}

.order-note {
  display: flex;
  gap: 14px;

  padding: 20px;

  background:
    linear-gradient(
      145deg,
      #fafbff 0%,
      #f2f5fb 100%
    );

  border: 1px solid rgba(192,196,204,.48);
  border-radius: 16px;
}

.order-note-number {
  flex: 0 0 auto;

  width: 38px;
  height: 38px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: linear-gradient(
    145deg,
    #eef3ff,
    #ffffff
  );

  border: 1px solid rgba(23,70,209,.10);

  color: var(--blue-dark);
  font-size: .78rem;
  font-weight: 700;
}

.order-note h3 {
  margin: 0 0 7px;
  color: var(--blue-dark);
  font-size: 1rem;
}

.order-note p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
  font-size: .92rem;
}

.submit-area {
  text-align: center;
  margin-top: 32px;
}
.submit-helper {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}
.send-btn {
  min-width: 270px;
  padding: 15px 30px;

  border: 1px solid rgba(255,255,255,.3);
  border-radius: 999px;

  background:
    linear-gradient(
      135deg,
      var(--blue),
      var(--blue-dark)
    );

  color: #ffffff;

  cursor: pointer;

  font-weight: 700;
  font-size: 1.06rem;

  box-shadow:
    0 12px 28px rgba(23,70,209,.22);

  transition:
    transform .2s ease,
    box-shadow .2s ease;
}

.send-btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 16px 34px rgba(23,70,209,.28);
}

/* MOBILE ORDER FORM */

@media (max-width: 850px) {

  .order-section {
    padding: 75px 24px 85px;
  }

  .order-form {
    padding: 24px;
  }

  .order-builder {
    grid-template-columns: 1fr;
  }

  .customer-section,
  .order-notes {
    grid-template-columns: 1fr;
  }

  .send-btn {
    width: 100%;
    min-width: 0;
  }
}
/* CONTACT */

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.contact-item {
  padding: 24px;
  text-align: center;
  border: 1px solid var(--silver-light);
  border-radius: var(--radius-md);
  background: var(--off-white);
}

.contact-label {
  display: block;
  margin-bottom: 7px;
  color: var(--silver-dark);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  font-weight: 700;
}

.contact-item a {
  color: var(--blue-dark);
  font-weight: 700;
}

/* FOOTER */

.site-footer {
  padding: 34px 8%;
  text-align: center;
  background: linear-gradient(180deg, #f8f9fc, #eef1f6);
  border-top: 1px solid var(--silver-light);
}

.footer-logo {
  width: 170px;
  max-width: 70%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

/* RESPONSIVE */

@media (max-width: 980px) {
  .brand-highlights,
  .product-cards,
  .scent-grid,
  .order-notes,
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .order-builder {
    grid-template-columns: 1fr 1fr;
  }

  .order-total {
    min-height: 68px;
  }
}

@media (max-width: 720px) {
  .hero {
    min-height: auto;
    padding: 64px 6% 56px;
  }

  .brand-highlights,
  .product-cards,
  .scent-grid,
  .order-builder,
  .customer-section,
  .order-notes,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .highlight:not(:last-child)::after {
    display: none;
  }

  .highlight {
    border-bottom: 1px solid var(--silver-light);
  }

  .products-section,
  .scents-section,
  .order-section,
  .contact-section {
    padding: 68px 6%;
  }

  .order-form {
    padding: 22px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: min(320px, 100%);
  }
}
