:root {
  --bg: #fafaf8;
  --paper: #ffffff;
  --ivory: #f4efe6;
  --ink: #1a1a18;
  --muted: #6b6b64;
  --line: #e8e7e2;
  --gold: #c8a97e;
  --olive: #626b55;
  --wine: #6e2f3a;
  --shadow: 0 24px 70px rgba(28, 28, 22, 0.12);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
}

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

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

.announcement {
  background: var(--ink);
  color: var(--ivory);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 0.7rem 1rem;
  text-align: center;
  text-transform: uppercase;
}

.site-header {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr auto 1fr;
  min-height: 76px;
  padding: 0 4vw;
}

.brand {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-weight: 700;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 2.2vw, 2.3rem);
  justify-content: center;
}

.main-nav a,
.header-cta,
.text-link {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header-cta {
  border: 1px solid var(--ink);
  justify-self: end;
  padding: 0.85rem 1.2rem;
}

.hero {
  align-items: center;
  display: grid;
  gap: clamp(2rem, 5vw, 5rem);
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  min-height: min(78vh, 720px);
  padding: clamp(3rem, 6vw, 5.5rem) 4vw;
}

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

.eyebrow {
  color: var(--olive);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin: 0 0 1.2rem;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
  line-height: 1;
  margin: 0;
}

h1 {
  font-size: clamp(4rem, 9.5vw, 8.8rem);
  max-width: 760px;
}

.hero-text {
  color: var(--muted);
  font-size: clamp(1.05rem, 1.45vw, 1.28rem);
  line-height: 1.75;
  margin: 1.5rem 0 0;
  max-width: 570px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.button {
  align-items: center;
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 800;
  justify-content: center;
  letter-spacing: 0.1em;
  min-height: 48px;
  padding: 0.95rem 1.4rem;
  text-transform: uppercase;
}

.button.primary {
  background: var(--ink);
  color: var(--paper);
}

.button.ghost {
  border: 1px solid var(--line);
}

.button.centered {
  margin: 2rem auto 0;
}

.hero-media {
  margin: 0;
}

.hero-media img,
.gift-band img,
.product-page-media img {
  aspect-ratio: 1 / 1;
  box-shadow: var(--shadow);
  height: auto;
  object-fit: cover;
  width: 100%;
}

.hero-media img {
  aspect-ratio: 3 / 4;
}

.values,
.collection,
.about,
.order-flow,
.product-detail,
.related-products {
  padding: clamp(3rem, 7vw, 7rem) 4vw;
}

.values {
  border-block: 1px solid var(--line);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, 1fr);
  padding-block: 0;
}

.values article {
  background: var(--bg);
  min-height: 250px;
  padding: clamp(2rem, 4vw, 4rem);
}

.values span,
.steps span {
  color: var(--gold);
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  margin-bottom: 2rem;
}

.values h2,
.steps h3 {
  font-size: clamp(1.7rem, 2.8vw, 2.5rem);
  margin-bottom: 1rem;
}

.values p,
.about-copy p,
.gift-band p,
.steps p,
.product-intro,
.product-notes li,
.site-footer p,
.product-page-copy p {
  color: var(--muted);
  line-height: 1.75;
}

.section-heading {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: minmax(180px, 0.45fr) minmax(0, 1fr);
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.section-heading h2,
.about h2,
.gift-band h2,
.order-flow h2,
.product-page-copy h1 {
  font-size: clamp(2.4rem, 5vw, 5.2rem);
  max-width: 980px;
}

.section-heading.compact {
  display: block;
  max-width: 820px;
  text-align: center;
  margin-inline: auto;
}

.product-grid {
  display: grid;
  gap: 1.15rem;
  grid-template-columns: repeat(3, 1fr);
}

.product-card {
  background: var(--paper);
  border: 1px solid var(--line);
  display: grid;
  min-width: 0;
  padding: 0.85rem;
  transition: border-color 180ms ease, transform 180ms ease;
}

.product-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.product-card img {
  aspect-ratio: 1 / 1;
  margin-bottom: 1.2rem;
  object-fit: cover;
  width: 100%;
}

.product-card span,
.product-meta {
  color: var(--olive);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-card strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.45rem, 2.4vw, 2.15rem);
  font-weight: 600;
  line-height: 1.05;
  margin: 0.35rem 0 0.7rem;
}

.product-card small {
  color: var(--muted);
  font-size: 0.95rem;
}

.manifesto {
  align-items: center;
  background: var(--ink);
  color: var(--ivory);
  display: flex;
  min-height: 420px;
  padding: clamp(3rem, 7vw, 7rem) 4vw;
}

.manifesto p {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.4rem, 6vw, 6.7rem);
  line-height: 1.05;
  margin: 0;
  max-width: 1180px;
}

.about {
  display: grid;
  gap: clamp(2rem, 6vw, 7rem);
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.65fr);
}

.about-copy {
  border-left: 1px solid var(--line);
  padding-left: clamp(1.5rem, 3vw, 3rem);
}

.gift-band {
  align-items: center;
  background: var(--ivory);
  display: grid;
  gap: clamp(2rem, 5vw, 5rem);
  grid-template-columns: minmax(240px, 0.62fr) minmax(0, 1fr);
  padding: clamp(3rem, 7vw, 7rem) 4vw;
}

.text-link {
  border-bottom: 1px solid currentColor;
  color: var(--wine);
  display: inline-flex;
  margin-top: 1.2rem;
  padding-bottom: 0.3rem;
}

.steps {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 3rem;
}

.steps article {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: clamp(1.5rem, 3vw, 3rem);
}

.site-footer {
  background: var(--ink);
  color: var(--ivory);
  display: grid;
  gap: 2rem;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  padding: clamp(3rem, 6vw, 5rem) 4vw;
}

.site-footer h2 {
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.site-footer a {
  color: rgba(244, 239, 230, 0.82);
  display: block;
  line-height: 1.9;
}

.site-footer .brand {
  color: var(--ivory);
  margin-bottom: 1rem;
}

.product-hero {
  align-items: center;
  display: grid;
  gap: clamp(2rem, 5vw, 5rem);
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  padding: clamp(3rem, 7vw, 6rem) 4vw;
}

.back-link {
  color: var(--muted);
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.product-intro {
  font-size: clamp(1rem, 1.4vw, 1.22rem);
  margin: 1.3rem 0 0;
}

.product-detail {
  border-top: 1px solid var(--line);
  display: grid;
  gap: clamp(2rem, 5vw, 5rem);
  grid-template-columns: minmax(0, 0.6fr) minmax(0, 1fr);
}

.product-notes {
  list-style: none;
  margin: 0;
  padding: 0;
}

.product-notes li {
  border-top: 1px solid var(--line);
  padding: 1.2rem 0;
}

.product-notes strong {
  color: var(--ink);
  display: block;
  margin-bottom: 0.35rem;
}

.related-products {
  background: var(--ivory);
}

.product-sales {
  padding-bottom: 112px;
}

.sales-header {
  background: rgba(250, 250, 248, 0.92);
  position: sticky;
  top: 0;
  z-index: 30;
}

.sales-hero {
  display: grid;
  gap: clamp(1.5rem, 4vw, 4.5rem);
  grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1fr);
  padding: clamp(1.4rem, 5vw, 4.5rem) 4vw;
}

.sales-gallery {
  min-width: 0;
}

.sales-main-image {
  margin: 0;
  position: sticky;
  top: 112px;
}

.gallery-stage {
  overflow: hidden;
  position: relative;
  touch-action: pan-y;
}

.gallery-stage:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.sales-main-image img {
  aspect-ratio: 3 / 4;
  background: var(--ivory);
  box-shadow: var(--shadow);
  object-fit: contain;
  width: 100%;
}

.gallery-stage > img {
  pointer-events: none;
  user-select: none;
}

.gallery-arrow {
  align-items: center;
  appearance: none;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(26, 26, 24, 0.2);
  border-radius: 50%;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  font-family: Georgia, serif;
  font-size: 2rem;
  height: 46px;
  justify-content: center;
  line-height: 1;
  padding: 0 0 0.15rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  z-index: 2;
}

.gallery-arrow:hover:not(:disabled),
.gallery-arrow:focus-visible {
  background: var(--paper);
  border-color: var(--gold);
}

.gallery-arrow:disabled {
  cursor: default;
  opacity: 0.35;
}

.gallery-prev {
  left: 0.8rem;
}

.gallery-next {
  right: 0.8rem;
}

.gallery-counter {
  background: rgba(26, 26, 24, 0.82);
  bottom: 0.8rem;
  color: var(--paper);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 0.5rem 0.65rem;
  position: absolute;
  right: 0.8rem;
  z-index: 2;
}

.quiet-badge {
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--olive);
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  margin-top: 0.75rem;
  padding: 0.55rem 0.75rem;
  text-transform: uppercase;
}

.sales-thumbs {
  display: flex;
  gap: 0.55rem;
  margin-top: 0.75rem;
  overflow-x: auto;
  padding: 0.1rem 0 0.35rem;
  scrollbar-width: thin;
  scroll-snap-type: x proximity;
}

.thumb-choice,
.choice-card,
.addon-choice {
  appearance: none;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 0;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
}

.thumb-choice {
  flex: 0 0 74px;
  height: 92px;
  overflow: hidden;
  padding: 0;
  scroll-snap-align: center;
}

.thumb-choice img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.thumb-choice.is-active {
  border-color: var(--gold);
  color: var(--ink);
}

.sales-panel {
  min-width: 0;
}

.sales-panel h1 {
  font-size: clamp(2.45rem, 5.2vw, 5rem);
  line-height: 1.02;
  overflow-wrap: anywhere;
}

.product-subtitle {
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.35;
  margin: 1.15rem 0 0;
  max-width: 700px;
}

.sales-bullets {
  display: grid;
  gap: 0.75rem;
  list-style: none;
  margin: 1.4rem 0 0;
  padding: 0;
}

.sales-bullets li {
  align-items: flex-start;
  color: var(--ink);
  display: flex;
  gap: 0.7rem;
  line-height: 1.55;
}

.sales-bullets span {
  border: 1px solid var(--gold);
  border-radius: 999px;
  flex: 0 0 auto;
  height: 16px;
  margin-top: 0.25rem;
  position: relative;
  width: 16px;
}

.sales-bullets span::after {
  background: var(--gold);
  border-radius: 999px;
  content: "";
  height: 6px;
  inset: 4px;
  position: absolute;
  width: 6px;
}

.estimate-card {
  align-items: center;
  background: var(--ivory);
  border: 1px solid var(--line);
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  margin: 1.4rem 0;
  padding: 1rem;
}

.estimate-card span,
.mobile-buy-bar span,
.choice-label {
  color: var(--olive);
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  margin: 0;
  text-transform: uppercase;
}

.estimate-card strong,
.mobile-buy-bar strong {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  margin-top: 0.25rem;
}

.estimate-card small {
  color: var(--muted);
  line-height: 1.4;
  max-width: 170px;
  text-align: right;
}

.sales-config {
  display: grid;
  gap: 1.25rem;
}

.purchase-facts {
  border-block: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0 0 1.4rem;
}

.purchase-facts div {
  padding: 1rem 0;
}

.purchase-facts div + div {
  border-left: 1px solid var(--line);
  padding-left: 1rem;
}

.purchase-facts dt {
  color: var(--olive);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.purchase-facts dd {
  line-height: 1.45;
  margin: 0.35rem 0 0;
}

.gift-option {
  margin-top: 0;
}

.choice-grid {
  display: grid;
  gap: 0.6rem;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 0.65rem;
}

.choice-card {
  display: grid;
  gap: 0.35rem;
  min-height: 78px;
  padding: 0.85rem;
  text-align: left;
}

.choice-card span,
.addon-choice strong {
  font-weight: 800;
}

.choice-card strong {
  color: var(--muted);
  font-size: 0.84rem;
}

.choice-card.is-selected,
.addon-choice.is-selected {
  background: rgba(200, 169, 126, 0.12);
  border-color: var(--gold);
}

.choice-card.is-selected strong {
  color: var(--ink);
}

.addon-list {
  display: grid;
  gap: 0.65rem;
  margin-top: 0.65rem;
}

.addon-with-link {
  display: grid;
  gap: 0.45rem;
}

.addon-choice {
  align-items: center;
  display: grid;
  gap: 0.75rem;
  grid-template-columns: auto minmax(0, 1fr) auto;
  padding: 0.9rem;
  text-align: left;
  width: 100%;
}

.addon-choice small {
  color: var(--muted);
  display: block;
  line-height: 1.35;
  margin-top: 0.2rem;
}

.addon-choice em {
  color: var(--olive);
  font-size: 0.84rem;
  font-style: normal;
  font-weight: 800;
  white-space: nowrap;
}

.checkmark {
  border: 1px solid var(--line);
  height: 22px;
  width: 22px;
}

.addon-choice.is-selected .checkmark {
  background: var(--gold);
  border-color: var(--gold);
  position: relative;
}

.addon-choice.is-selected .checkmark::after {
  color: var(--ink);
  content: "✓";
  font-size: 0.95rem;
  font-weight: 900;
  left: 5px;
  position: absolute;
  top: 1px;
}

.sample-link {
  color: var(--wine);
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 800;
  justify-self: start;
  letter-spacing: 0.08em;
  padding-bottom: 0.2rem;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
}

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

.whatsapp-button {
  margin-top: 1.4rem;
  width: 100%;
}

.sales-reassurance {
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1rem;
  margin-top: 1rem;
}

.sales-reassurance span,
.sales-strip span {
  font-size: 0.86rem;
  line-height: 1.45;
}

.sales-strip {
  background: var(--ink);
  color: var(--ivory);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, 1fr);
  padding: 0 4vw;
}

.sales-strip article {
  padding: clamp(1.4rem, 3vw, 2.4rem);
}

.sales-strip strong {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.sales-strip span {
  color: rgba(244, 239, 230, 0.72);
}

.sales-detail {
  border-top: 0;
}

.product-story {
  display: grid;
  gap: clamp(2rem, 5vw, 5rem);
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  padding: clamp(3rem, 7vw, 7rem) 4vw;
}

.product-story h2,
.product-detail h2 {
  font-size: clamp(2.25rem, 4.5vw, 4.7rem);
  line-height: 1.05;
}

.story-copy {
  max-width: 760px;
}

.story-copy p {
  color: var(--muted);
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  line-height: 1.8;
  margin: 0 0 1.25rem;
}

.story-copy .photo-note {
  border-left: 2px solid var(--gold);
  font-size: 0.88rem;
  padding-left: 1rem;
}

.use-grid {
  border-block: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 0 4vw;
}

.use-grid article {
  padding: clamp(2rem, 4vw, 4rem);
}

.use-grid article + article {
  border-left: 1px solid var(--line);
}

.use-grid ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.use-grid li {
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--muted);
  padding: 0.65rem 0.8rem;
}

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

.faq-block {
  padding: 0 4vw clamp(4rem, 7vw, 7rem);
}

.faq-block details {
  background: var(--paper);
  border: 1px solid var(--line);
  margin-bottom: 0.65rem;
}

.faq-block summary {
  cursor: pointer;
  font-weight: 800;
  list-style: none;
  padding: 1rem;
}

.faq-block summary::-webkit-details-marker {
  display: none;
}

.faq-block details div {
  color: var(--muted);
  line-height: 1.65;
  padding: 0 1rem 1rem;
}

.mobile-buy-bar {
  align-items: center;
  background: rgba(250, 250, 248, 0.96);
  border-top: 1px solid var(--line);
  bottom: 0;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  left: 0;
  padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom));
  position: fixed;
  right: 0;
  z-index: 40;
}

.mobile-buy-bar strong {
  font-size: 1.45rem;
}

.mobile-buy-bar a {
  background: #1f8f52;
  color: var(--paper);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  min-width: 138px;
  padding: 0.95rem 1rem;
  text-align: center;
  text-transform: uppercase;
}

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

  .main-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    padding-bottom: 1rem;
  }

  .hero,
  .about,
  .gift-band,
  .product-hero,
  .sales-hero,
  .product-detail,
  .section-heading,
  .product-story {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .values,
  .product-grid,
  .steps,
  .site-footer,
  .sales-strip {
    grid-template-columns: 1fr;
  }

  .sales-main-image {
    position: static;
  }

  .about-copy {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding-left: 0;
    padding-top: 2rem;
  }
}

@media (max-width: 560px) {
  .announcement {
    font-size: 0.68rem;
    line-height: 1.55;
  }

  .site-header {
    padding-inline: 1rem;
  }

  .main-nav {
    gap: 0.85rem 1rem;
  }

  .sales-header {
    grid-template-columns: 1fr auto;
    min-height: 64px;
  }

  h1 {
    font-size: 3.4rem;
  }

  .hero {
    gap: 1.25rem;
    padding-bottom: 2rem;
    padding-top: 2rem;
  }

  .hero-media img {
    aspect-ratio: 3 / 4;
    box-shadow: none;
    height: auto;
    object-fit: cover;
  }

  .hero,
  .values,
  .collection,
  .about,
  .gift-band,
  .order-flow,
  .product-hero,
  .product-detail,
  .related-products,
  .manifesto,
  .site-footer,
  .sales-hero,
  .sales-strip,
  .faq-block {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .sales-panel h1 {
    font-size: 2.45rem;
  }

  .sales-hero {
    gap: 1.5rem;
    padding-top: 1rem;
  }

  .sales-main-image img {
    max-height: none;
  }

  .gallery-arrow {
    height: 42px;
    width: 42px;
  }

  .gallery-prev {
    left: 0.5rem;
  }

  .gallery-next,
  .gallery-counter {
    right: 0.5rem;
  }

  .gallery-counter {
    bottom: 0.5rem;
  }

  .purchase-facts,
  .use-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .purchase-facts div + div,
  .use-grid article + article {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding-left: 0;
  }

  .use-grid {
    padding-inline: 1rem;
  }

  .use-grid article {
    padding-inline: 0;
  }

  .addon-choice {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .addon-choice em {
    grid-column: 2;
  }

  .mobile-buy-bar {
    gap: 0.6rem;
  }

  .mobile-buy-bar strong {
    font-size: 1.25rem;
  }

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

  .estimate-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .estimate-card small {
    max-width: none;
    text-align: left;
  }

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

  .button {
    width: 100%;
  }
}
