:root {
  --ink: #1a1512;
  --muted: #6b6057;
  --paper: #faf9f6;
  --surface: #ffffff;
  --ivory: #f5f2ed;
  --champagne: #e8d8c8;
  --linen: #f0ebe4;
  --gold: #b78440;
  --gold-dark: #8b6026;
  --sage: #6e7a62;
  --blush: #cca093;
  --line: rgba(183, 132, 64, 0.2);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.08);
  --font-body: Outfit, Arial, sans-serif;
  --font-display: "Playfair Display", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

img,
.lucide {
  display: block;
}

img {
  max-width: 100%;
}

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.promo-bar {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: center;
  min-height: 34px;
  padding: 7px clamp(18px, 6vw, 104px);
  background: linear-gradient(90deg, #f5f2ed, #ffffff 48%, #f5f2ed);
  color: var(--gold-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.promo-bar span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 0;
  text-align: center;
}

.lucide {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  min-height: 88px;
  padding: 14px clamp(18px, 5vw, 78px);
  background: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: max-content;
}

.brand-logo {
  height: 47px;
  width: auto;
  object-fit: contain;
  display: block;
}

.brand strong {
  display: block;
  font-family: var(--font-display);
  font-size: 31px;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 0.9;
  text-transform: uppercase;
}

.brand small {
  display: block;
  margin-top: 6px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.45em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(10px, 1.45vw, 24px);
  align-items: center;
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links a {
  position: relative;
  padding: 10px 0;
  white-space: nowrap;
}

.nav-links a::after {
  position: absolute;
  right: 10%;
  bottom: 2px;
  left: 10%;
  height: 2px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.header-actions,
.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: all 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.25);
}

.button.primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  border-color: transparent;
  color: #ffffff;
}

.button.primary:hover {
  background: linear-gradient(135deg, #c79552 0%, var(--gold) 100%);
  border-color: transparent;
}

.button.secondary,
.button.outline {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  border-color: var(--gold);
  color: var(--gold-dark);
}

.button.secondary:hover,
.button.outline:hover {
  background: var(--gold);
  color: #ffffff;
}

.button.compact {
  min-height: 46px;
  padding: 0 21px;
}

.icon-button {
  position: relative;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-radius: 50%;
  transition: all 300ms ease;
}

.icon-button:hover {
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold);
  transform: scale(1.05);
}

.icon-button .lucide {
  width: 20px;
  height: 20px;
}

.cart-button span {
  position: absolute;
  top: 7px;
  right: 4px;
  display: grid;
  place-items: center;
  width: 16px;
  height: 16px;
  color: #08080a;
  background: var(--gold);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 800;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

main {
  overflow: hidden;
}

.hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(380px, 1.1fr);
  align-items: stretch;
  min-height: 560px;
  height: clamp(560px, calc(100vh - 170px), 690px);
  background:
    radial-gradient(circle at 80% 20%, rgba(183, 132, 64, 0.08), transparent 50%),
    linear-gradient(90deg, #faf9f6 0%, #ffffff 47%, #f5f2ed 100%);
  border-bottom: 1px solid var(--line);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 620px;
  padding: clamp(48px, 9vw, 112px) 0 clamp(56px, 9vw, 116px) clamp(22px, 11vw, 136px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.about-band h2,
.signature-band h2,
.newsletter h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 640px;
  font-size: clamp(58px, 7.2vw, 104px);
  line-height: 0.92;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 560px;
  margin: 28px 0 28px;
  color: var(--muted);
  font-size: clamp(16px, 1.22vw, 18px);
  line-height: 1.7;
}

.hero-media {
  position: relative;
  min-height: 520px;
}

.hero-media::before {
  position: absolute;
  inset: 10% 0 0 10%;
  background: linear-gradient(145deg, rgba(183, 132, 64, 0.15), rgba(255, 255, 255, 0.5));
  border-radius: 80px 0 0 0;
  content: "";
  box-shadow: -20px -20px 60px rgba(183, 132, 64, 0.05);
}

.hero-media img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(860px, 100%);
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.1) contrast(1.05) brightness(0.9);
}

.section,
.benefits,
.about-band,
.signature-band,
.newsletter {
  width: min(100% - 36px, 1360px);
  margin-inline: auto;
}

.site-footer {
  width: 100%;
}

.section {
  padding: 42px 0 0;
}

.section-heading {
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  text-align: center;
}

.section-heading h2 {
  position: relative;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1;
  text-transform: uppercase;
}

.section-heading h2::after {
  display: block;
  width: 72px;
  height: 13px;
  margin: 7px auto 0;
  background:
    linear-gradient(var(--gold), var(--gold)) center / 44px 1px no-repeat,
    radial-gradient(circle, var(--gold) 0 3px, transparent 4px);
  content: "";
}

.category-grid,
.product-grid,
.testimonial-grid {
  display: grid;
  gap: 18px;
}

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

.category-card {
  display: grid;
  grid-template-rows: auto auto auto auto;
  min-height: 0;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  text-align: center;
  transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
}

.category-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(183, 132, 64, 0.05) 100%);
  opacity: 0;
  transition: opacity 400ms ease;
}

.category-card:hover {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  transform: translateY(-5px);
  border-color: rgba(183, 132, 64, 0.4);
}

.category-card:hover::before {
  opacity: 1;
}

.category-card img {
  width: 100%;
  aspect-ratio: 1.22;
  height: auto;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.category-card:hover img {
  transform: scale(1.05);
}

.category-card strong,
.product-card h3 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.category-card strong {
  margin-top: 14px;
  font-size: clamp(15px, 1.15vw, 18px);
}

.category-card span,
.text-link {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.category-card span {
  margin: 1px 0 16px;
}

.category-card .price {
  margin: 4px 0 6px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
}

.category-card .price small {
  color: #a02a2a;
  font-size: 11px;
  font-weight: 500;
  display: block;
  margin-top: 2px;
}

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

.product-card {
  position: relative;
  display: grid;
  grid-template-rows: auto auto auto auto;
  gap: 7px;
  min-width: 0;
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.product-card img {
  width: 100%;
  aspect-ratio: 1;
  height: clamp(170px, 15vw, 220px);
  object-fit: cover;
  object-position: center;
  background: var(--surface);
  border-radius: 6px;
}

.product-card:first-child img {
  object-position: center bottom;
}

.favorite {
  position: absolute;
  top: 13px;
  right: 13px;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 33px;
  height: 33px;
  padding: 0;
  color: var(--gold-dark);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--line);
  border-radius: 50%;
}

.favorite .lucide {
  width: 18px;
  height: 18px;
}

.product-card h3 {
  min-height: 34px;
  margin: 5px 0 0;
  font-size: 12px;
  line-height: 1.25;
}

.product-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.product-card .button {
  width: 100%;
  min-height: 37px;
  margin-top: 5px;
  padding: 0 10px;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
}

.product-card .button:hover {
  background: var(--gold);
  color: #08080a;
}

.about-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.77fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 92px);
  align-items: center;
  min-height: 290px;
  margin-top: 34px;
  padding: 0 clamp(28px, 6vw, 86px) 0 0;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(250, 249, 246, 0.95) 53%, rgba(255, 255, 255, 0.8) 100%);
  border: 1px solid var(--line);
  border-radius: 8px;
  position: relative;
}

.about-band::before {
  content: "";
  position: absolute;
  right: -10%;
  top: -20%;
  width: 50%;
  height: 140%;
  background: radial-gradient(circle, rgba(183, 132, 64, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.about-band img {
  width: 100%;
  height: 100%;
  min-height: 290px;
  object-fit: cover;
}

.about-band h2,
.signature-band h2 {
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
}

.about-band p:not(.eyebrow),
.signature-band p {
  max-width: 610px;
  margin: 18px 0;
  color: var(--muted);
}

.text-link::after {
  content: "  \2192";
}

.benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 24px;
  padding: 28px 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.benefits article {
  display: flex;
  gap: 18px;
  align-items: center;
  min-height: 74px;
  padding: 0 clamp(12px, 2vw, 30px);
  border-right: 1px solid var(--line);
  transition: transform 300ms ease;
}

.benefits article:hover {
  transform: translateY(-2px);
}

.benefits article:last-child {
  border-right: 0;
}

.benefits .lucide {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  color: var(--gold);
}

.benefits h3 {
  margin: 0 0 4px;
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.benefits p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.signature-band {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 420px;
  margin-top: 60px;
  margin-bottom: 60px;
  padding: 40px clamp(20px, 5vw, 60px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.signature-band > img {
  position: absolute;
  top: -30px;
  right: 5%;
  width: clamp(300px, 45%, 500px);
  height: calc(100% + 60px);
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  z-index: 2;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.signature-band:hover > img {
  transform: scale(1.03) translateY(-10px);
}

.signature-band > div {
  position: relative;
  z-index: 1;
  width: clamp(300px, 55%, 600px);
  padding: 50px clamp(30px, 5vw, 60px);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.9);
}

.signature-band .button {
  margin-top: 4px;
}

.testimonial-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  margin-top: 20px;
}

.testimonial-grid article {
  position: relative;
  min-height: 146px;
  padding: 45px 35px 30px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-grid article:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: rgba(183, 132, 64, 0.4);
}

.quote-mark {
  position: absolute;
  top: 10px;
  left: 25px;
  color: rgba(183, 132, 64, 0.25);
  font-family: var(--font-display);
  font-size: 72px;
  line-height: 1;
}

.testimonial-grid p {
  position: relative;
  z-index: 1;
  min-height: 64px;
  margin: 15px 0 24px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.testimonial-grid strong {
  display: inline-block;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.stars {
  float: right;
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 0.25em;
}

.newsletter {
  display: grid;
  grid-template-columns: minmax(180px, 0.42fr) minmax(320px, 1fr);
  align-items: center;
  margin-top: 24px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(250, 249, 246, 0.1), rgba(255, 255, 255, 0.9) 42%, rgba(245, 242, 237, 0.78)),
    var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  text-align: center;
}

.newsletter img {
  width: 100%;
  height: 168px;
  object-fit: cover;
}

.newsletter > div {
  padding: 32px clamp(24px, 6vw, 84px);
}

.newsletter h2 {
  font-size: clamp(31px, 3vw, 43px);
  line-height: 1;
  text-transform: uppercase;
}

.newsletter p {
  margin: 12px 0 20px;
  color: var(--muted);
  font-size: 14px;
}

.newsletter form {
  display: grid;
  grid-template-columns: minmax(160px, 1fr) auto;
  max-width: 520px;
  margin: 0 auto;
}

.newsletter input {
  min-width: 0;
  height: 43px;
  padding: 0 18px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--gold);
  border-right: 0;
  border-radius: 4px 0 0 4px;
  color: var(--ink);
}

.newsletter .button {
  border-radius: 0 4px 4px 0;
}

.newsletter small {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
}

.site-footer {
  background: var(--linen);
  margin-top: 40px;
  padding: 60px 0 20px;
  border-top: 1px solid var(--line);
}

.site-footer > div:not(.copyright), .footer-brand {
  width: min(100% - 36px, 1360px);
  margin-inline: auto;
}

.site-footer-inner {
  display: grid;
  grid-template-columns: 1.25fr repeat(4, minmax(120px, 1fr));
  gap: clamp(22px, 4vw, 64px);
  width: min(100% - 36px, 1360px);
  margin-inline: auto;
}

.site-footer h2 {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.site-footer a:not(.brand),
.site-footer p {
  display: block;
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 13px;
}

.site-footer a:hover {
  color: var(--gold);
}

.footer-brand p {
  max-width: 230px;
  margin-top: 14px;
}

.socials,
.payments {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
}

.socials a {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: all 300ms ease;
}

.socials a:hover {
  background: var(--gold);
  color: #ffffff;
  transform: translateY(-2px);
}

.socials i {
  color: inherit;
  font-size: 15px;
  line-height: 1;
}

.payments {
  margin-top: 22px;
}

.payments span {
  display: grid;
  place-items: center;
  min-width: 44px;
  height: 26px;
  padding: 0 8px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 3px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.copyright {
  grid-column: 1 / -1;
  padding-top: 14px;
  text-align: center;
  border-top: 1px solid var(--line);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 3px;
  }

  .hero {
    min-height: 560px;
    height: 620px;
  }

  .hero-copy {
    padding-left: clamp(22px, 7vw, 86px);
  }

  .category-grid,
  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .benefits article:nth-child(2) {
    border-right: 0;
  }

  .benefits article:nth-child(n + 3) {
    padding-top: 22px;
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 820px) {
  .promo-bar {
    grid-template-columns: 1fr;
    gap: 5px;
    padding-block: 9px;
    font-size: 11px;
  }

  .site-header {
    min-height: auto;
    gap: 14px;
  }

  .header-actions {
    gap: 6px;
  }

  .header-actions .button {
    display: none;
  }

  .brand strong {
    font-size: 26px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    height: auto;
  }

  .hero-copy {
    padding: 48px 22px 28px;
  }

  .hero h1 {
    font-size: clamp(54px, 15vw, 86px);
  }

  .hero-copy > p:not(.eyebrow) {
    font-size: 16px;
  }

  .hero-actions {
    flex-wrap: wrap;
  }

  .hero-media {
    min-height: 340px;
  }

  .hero-media::before {
    inset: 0 0 0 16%;
    border-radius: 48px 0 0 0;
  }

  .hero-media img {
    height: 100%;
  }

  .category-grid,
  .product-grid,
  .testimonial-grid,
  .about-band,
  .signature-band,
  .newsletter {
    grid-template-columns: 1fr;
  }

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

  .about-band {
    padding: 0 0 28px;
  }

  .about-band > div {
    padding: 0 24px;
  }

  .signature-band {
    flex-direction: column;
    min-height: auto;
    margin-top: 40px;
    margin-bottom: 40px;
    padding: 20px;
  }

  .signature-band > img {
    position: relative;
    top: 0;
    right: 0;
    width: 100%;
    height: 280px;
    margin-bottom: -40px;
  }

  .signature-band > div {
    width: 100%;
    padding: 60px 24px 30px;
  }

  .testimonial-grid article {
    padding: 35px 25px 25px;
  }

  .newsletter img {
    height: 132px;
  }

  .site-footer-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 540px) {
  .section,
  .benefits,
  .about-band,
  .signature-band,
  .newsletter {
    width: min(100% - 24px, 1360px);
  }

  .site-footer-inner, .site-footer > div:not(.copyright), .footer-brand {
    width: min(100% - 24px, 1360px);
  }

  .site-header {
    padding-inline: 12px;
  }

  .brand {
    gap: 6px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    font-size: 35px;
  }

  .brand strong {
    font-size: 22px;
    letter-spacing: 0.15em;
  }

  .brand small {
    font-size: 8px;
  }

  .icon-button {
    width: 36px;
    height: 36px;
  }

  .nav-links {
    gap: 18px;
    font-size: 11px;
  }

  .category-grid {
    gap: 12px;
  }

  .category-card strong {
    font-size: 15px;
  }

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

  .product-card img {
    height: clamp(220px, 62vw, 280px);
  }

  .benefits {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .benefits article {
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .benefits article:nth-child(n + 3) {
    padding-top: 18px;
  }

  .benefits article:last-child {
    border-bottom: 0;
  }

  .newsletter form {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .newsletter input {
    border-right: 1px solid var(--gold);
    border-radius: 4px;
  }

  .newsletter .button {
    border-radius: 4px;
  }
}
