:root {
  --ink: #241f1c;
  --muted: #6f665f;
  --paper: #fbf8f3;
  --surface: #ffffff;
  --soft: #f1ebe3;
  --line: #ded5ca;
  --sage: #687967;
  --rose: #b86f68;
  --gold: #b99348;
  --blue: #536f8e;
  --charcoal: #303331;
  --shadow: 0 22px 60px rgba(39, 32, 26, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.no-scroll {
  overflow: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

button,
select {
  cursor: pointer;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 14px clamp(18px, 4vw, 54px);
  background: rgba(251, 248, 243, 0.93);
  border-bottom: 1px solid rgba(222, 213, 202, 0.78);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #fff;
  background: var(--charcoal);
  border-radius: 50%;
  font-size: 0.74rem;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 3vw, 32px);
  color: var(--muted);
  font-size: 0.94rem;
}

.nav-links a:hover {
  color: var(--ink);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 12px;
}

.currency-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.82rem;
}

.currency-switcher select,
.filter-block select,
.filter-block input,
.newsletter-form input,
.newsletter-form select,
.checkout-form input,
.checkout-form select,
.promo-row input {
  width: 100%;
  min-height: 42px;
  padding: 0 12px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.currency-switcher select {
  width: auto;
  min-height: 36px;
}

.cart-button,
.icon-button,
.cart-header button,
.checkout-button,
.button,
.product-card button,
.text-button,
.promo-row button,
.dialog-close,
.checkout-header button,
.quantity-button,
.wishlist-button {
  border: 0;
}

.cart-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  padding: 0 14px;
  color: #fff;
  background: var(--charcoal);
  border-radius: 999px;
}

.cart-count {
  display: grid;
  min-width: 22px;
  height: 22px;
  place-items: center;
  color: var(--charcoal);
  background: var(--paper);
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 800;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--charcoal);
}

.hero {
  position: relative;
  display: grid;
  min-height: min(760px, calc(100vh - 68px));
  overflow: hidden;
  background: #ece4d9;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(251, 248, 243, 0.95) 0%, rgba(251, 248, 243, 0.74) 38%, rgba(251, 248, 243, 0.08) 72%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(620px, calc(100vw - 36px));
  align-self: center;
  margin-left: clamp(18px, 6vw, 82px);
  padding: 54px 0 88px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--sage);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p,
summary,
button,
label,
span {
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.03;
}

h1 {
  max-width: 10ch;
  font-size: clamp(3rem, 7.5vw, 6.5rem);
}

h2 {
  font-size: clamp(2rem, 4.3vw, 4.3rem);
}

h3 {
  margin: 0 0 8px;
  font-size: 1rem;
}

.hero-copy p:not(.eyebrow),
.feature-copy p,
.journal-copy p,
.split-section p,
.story-copy p,
.section-note {
  max-width: 62ch;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 780;
}

.button.primary {
  color: #fff;
  background: var(--charcoal);
}

.button.secondary {
  color: var(--charcoal);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(48, 51, 49, 0.18);
}

.button.dark {
  width: fit-content;
  margin-top: 10px;
  color: #fff;
  background: var(--sage);
}

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

.trust-strip div {
  min-height: 118px;
  padding: 28px clamp(18px, 4vw, 44px);
  background: var(--surface);
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  margin-bottom: 8px;
}

.trust-strip span {
  color: var(--muted);
  line-height: 1.55;
}

.section,
.feature-band,
.journal,
.newsletter,
.faq-section {
  padding: clamp(58px, 9vw, 118px) clamp(18px, 5vw, 68px);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}

.section-note {
  margin: 0;
}

.shop-layout {
  display: grid;
  grid-template-columns: minmax(210px, 260px) minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.filters {
  position: sticky;
  top: 86px;
  display: grid;
  gap: 16px;
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.filter-block {
  display: grid;
  gap: 8px;
}

.filter-block label,
.newsletter-form label span,
.checkout-form label span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 760;
}

.text-button {
  min-height: 40px;
  color: var(--sage);
  background: transparent;
  text-align: left;
  font-weight: 780;
}

.shop-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 0.92rem;
}

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

.product-card {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.product-media {
  display: grid;
  min-height: 340px;
  place-items: end start;
  padding: 18px;
  background:
    radial-gradient(circle at 70% 24%, rgba(255, 255, 255, 0.7), transparent 34%),
    var(--swatch);
}

.product-figure {
  width: min(72%, 245px);
  aspect-ratio: 0.62;
  border-radius: 999px 999px 22px 22px;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.08)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.18) 0 18%, transparent 18% 30%, rgba(255, 255, 255, 0.12) 30% 46%, transparent 46%),
    var(--fabric);
  box-shadow: inset 0 -28px 0 rgba(36, 31, 28, 0.07), 0 18px 40px rgba(36, 31, 28, 0.1);
}

.badge-row {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.badge {
  padding: 6px 9px;
  color: var(--charcoal);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(36, 31, 28, 0.08);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
}

.wishlist-button {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--charcoal);
  background: rgba(255, 255, 255, 0.82);
  border-radius: 50%;
  font-weight: 900;
}

.wishlist-button.is-active {
  color: #fff;
  background: var(--rose);
}

.product-body {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: var(--muted);
  font-size: 0.92rem;
}

.product-title {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.42rem;
  line-height: 1.16;
}

.product-card p {
  min-height: 54px;
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.product-card button[data-add-to-cart],
.product-card button[data-view-product] {
  min-height: 44px;
  border-radius: 6px;
  font-weight: 780;
}

.product-card button[data-add-to-cart] {
  color: #fff;
  background: var(--charcoal);
}

.product-card button[data-view-product] {
  color: var(--charcoal);
  background: var(--soft);
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.78fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
  background: #e9eee6;
  border-block: 1px solid #d4dfd1;
}

.size-table-wrap {
  overflow: auto;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(104, 121, 103, 0.28);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.size-table {
  width: 100%;
  min-width: 480px;
  border-collapse: collapse;
}

.size-table th,
.size-table td {
  padding: 17px 18px;
  border-bottom: 1px solid rgba(104, 121, 103, 0.2);
  text-align: left;
}

.size-table th {
  color: var(--sage);
  font-size: 0.84rem;
  text-transform: uppercase;
}

.story-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: clamp(30px, 7vw, 90px);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.process-grid article {
  min-height: 260px;
  padding: 24px;
  background: var(--surface);
}

.process-grid span {
  display: block;
  margin-bottom: 44px;
  color: var(--rose);
  font-weight: 850;
}

.process-grid p,
.info-grid p,
.faq-list p,
.site-footer p {
  color: var(--muted);
  line-height: 1.6;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 88px);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.info-grid article {
  min-height: 160px;
  padding: 24px;
  background: var(--surface);
}

.faq-section {
  background: var(--soft);
}

.faq-list {
  display: grid;
  gap: 10px;
  max-width: 980px;
}

.faq-list details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.faq-list summary {
  padding: 20px 22px;
  font-weight: 800;
  cursor: pointer;
}

.faq-list p {
  margin: 0;
  padding: 0 22px 22px;
}

.journal {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.62fr);
  gap: clamp(28px, 7vw, 90px);
  align-items: center;
  color: #fff;
  background: var(--charcoal);
}

.journal .eyebrow,
.journal-copy p {
  color: #d7c89f;
}

.journal-list {
  display: grid;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.journal-list a {
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 1.1rem;
}

.newsletter {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(320px, 0.7fr);
  gap: clamp(28px, 7vw, 80px);
  align-items: start;
}

.newsletter-form,
.checkout-form {
  display: grid;
  gap: 14px;
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.newsletter-form label,
.checkout-form label {
  display: grid;
  gap: 8px;
}

.form-message,
.promo-message {
  min-height: 20px;
  margin: 0;
  color: var(--sage);
  font-size: 0.92rem;
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  justify-items: end;
  pointer-events: none;
  background: rgba(36, 31, 28, 0);
  transition: background 0.2s ease;
}

.cart-drawer.is-open {
  pointer-events: auto;
  background: rgba(36, 31, 28, 0.34);
}

.cart-panel {
  display: flex;
  flex-direction: column;
  width: min(450px, 100vw);
  height: 100%;
  padding: 22px;
  background: var(--surface);
  box-shadow: var(--shadow);
  transform: translateX(100%);
  transition: transform 0.24s ease;
}

.cart-drawer.is-open .cart-panel {
  transform: translateX(0);
}

.cart-header,
.cart-total,
.cart-line,
.quantity-control,
.checkout-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cart-header h2,
.checkout-header h2 {
  font-size: 2rem;
}

.cart-header button,
.checkout-header button,
.dialog-close {
  color: var(--muted);
  background: transparent;
}

.cart-items {
  display: grid;
  gap: 14px;
  margin: 24px 0;
  overflow: auto;
}

.cart-line {
  align-items: start;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.cart-line strong,
.cart-line span,
.cart-line small {
  display: block;
}

.cart-line span,
.cart-line small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.9rem;
}

.quantity-control {
  justify-content: flex-start;
  margin-top: 10px;
}

.quantity-button {
  width: 28px;
  height: 28px;
  color: var(--ink);
  background: var(--soft);
  border-radius: 50%;
}

.cart-remove {
  padding: 0;
  color: var(--rose);
  background: transparent;
  border: 0;
  font-size: 0.84rem;
}

.cart-empty {
  margin: auto 0;
  color: var(--muted);
  text-align: center;
}

.promo-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.promo-row button {
  padding: 0 14px;
  color: #fff;
  background: var(--sage);
  border-radius: 6px;
  font-weight: 800;
}

.cart-footer {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.cart-total {
  margin-bottom: 8px;
}

.cart-total.muted {
  color: var(--muted);
  font-size: 0.92rem;
}

.cart-total.grand {
  margin-top: 12px;
  font-size: 1.1rem;
}

.checkout-button {
  width: 100%;
  min-height: 50px;
  margin-top: 16px;
  color: #fff;
  background: var(--rose);
  border-radius: 6px;
  font-weight: 800;
}

dialog {
  width: min(980px, calc(100vw - 28px));
  max-height: min(880px, calc(100vh - 28px));
  padding: 0;
  overflow: auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow);
}

dialog::backdrop {
  background: rgba(36, 31, 28, 0.42);
}

.dialog-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1fr);
  gap: 1px;
  background: var(--line);
}

.detail-media,
.detail-copy {
  background: #fff;
}

.detail-media {
  display: grid;
  min-height: 540px;
  place-items: end center;
  padding: 28px;
  background:
    radial-gradient(circle at 58% 26%, rgba(255, 255, 255, 0.72), transparent 34%),
    var(--swatch);
}

.detail-media .product-figure {
  width: min(74%, 320px);
}

.detail-copy {
  display: grid;
  gap: 18px;
  align-content: center;
  padding: 34px;
}

.detail-copy p {
  color: var(--muted);
  line-height: 1.65;
}

.detail-options {
  display: grid;
  gap: 12px;
}

.size-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.size-options button {
  min-width: 44px;
  min-height: 38px;
  background: var(--soft);
  border: 1px solid transparent;
  border-radius: 6px;
}

.size-options button.is-selected {
  color: #fff;
  background: var(--charcoal);
}

.detail-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.dialog-close {
  position: sticky;
  bottom: 0;
  width: 100%;
  min-height: 48px;
  background: #fff;
  border-top: 1px solid var(--line);
}

.checkout-dialog {
  width: min(760px, calc(100vw - 28px));
}

.checkout-form {
  border: 0;
  border-radius: 0;
}

.checkout-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.payment-preview {
  display: grid;
  gap: 6px;
  padding: 16px;
  color: var(--muted);
  background: var(--soft);
  border-radius: 8px;
}

.payment-preview strong {
  color: var(--ink);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  padding: 38px clamp(18px, 5vw, 68px);
  background: #fff;
  border-top: 1px solid var(--line);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  color: var(--muted);
}

.policy-hero {
  background: var(--soft);
}

.policy-hero h1 {
  max-width: 12ch;
}

.policy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.policy-grid article {
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.policy-grid h2 {
  margin-bottom: 18px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.policy-grid p {
  color: var(--muted);
  line-height: 1.65;
}

@media (max-width: 1080px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .menu-toggle {
    display: grid;
  }

  .nav-links {
    position: fixed;
    top: 63px;
    right: 14px;
    left: 14px;
    display: none;
    flex-direction: column;
    padding: 18px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .currency-switcher span {
    display: none;
  }

  .hero {
    min-height: 720px;
  }

  .hero::after {
    background: linear-gradient(180deg, rgba(251, 248, 243, 0.97) 0%, rgba(251, 248, 243, 0.78) 48%, rgba(251, 248, 243, 0.08) 100%);
  }

  .hero-image {
    object-position: 64% center;
  }

  .hero-copy {
    align-self: start;
    margin: 0;
    padding: 44px 18px 0;
  }

  h1 {
    max-width: 11ch;
  }

  .trust-strip,
  .shop-layout,
  .feature-band,
  .story-section,
  .split-section,
  .journal,
  .newsletter,
  .site-footer,
  .dialog-layout {
    grid-template-columns: 1fr;
  }

  .filters {
    position: static;
  }

  .section-heading,
  .shop-toolbar {
    align-items: start;
    flex-direction: column;
  }

  .product-media {
    min-height: 310px;
  }

  .info-grid,
  .checkout-grid,
  .policy-grid {
    grid-template-columns: 1fr;
  }

  .detail-media {
    min-height: 420px;
  }
}

@media (max-width: 560px) {
  .site-header {
    gap: 10px;
    padding-inline: 12px;
  }

  .brand span:last-child,
  .cart-button span:first-child {
    display: none;
  }

  .product-grid,
  .card-actions,
  .detail-actions {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 690px;
  }

  .hero-copy {
    width: 100%;
  }

  .button {
    width: 100%;
  }

  .newsletter-form,
  .checkout-form,
  .detail-copy {
    padding: 18px;
  }
}

.shop-launch {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

@media (max-width: 860px) {
  .shop-launch {
    grid-template-columns: 1fr;
  }
}


.category-launch {
  background: var(--soft);
}

.category-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.category-links a {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: center;
  padding: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 800;
  text-align: center;
}

@media (max-width: 860px) {
  .category-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 480px) {
  .category-links {
    grid-template-columns: 1fr;
  }
}

.hero-carousel {
  min-height: min(780px, calc(100vh - 68px));
  isolation: isolate;
}

.carousel-track,
.carousel-slide {
  position: absolute;
  inset: 0;
}

.carousel-slide {
  display: grid;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.55s ease;
}

.carousel-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.carousel-slide::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(251, 248, 243, 0.96) 0%, rgba(251, 248, 243, 0.76) 38%, rgba(251, 248, 243, 0.12) 74%);
}

.hero-carousel .hero-image {
  object-position: 68% center;
}

.hero-carousel .hero-copy {
  z-index: 2;
}

.carousel-arrow {
  position: absolute;
  z-index: 4;
  top: 50%;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--charcoal);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(48, 51, 49, 0.16);
  border-radius: 50%;
  font-size: 2rem;
  line-height: 1;
  transform: translateY(-50%);
  backdrop-filter: blur(10px);
}

.carousel-prev {
  left: clamp(12px, 2vw, 24px);
}

.carousel-next {
  right: clamp(12px, 2vw, 24px);
}

.carousel-dots {
  position: absolute;
  z-index: 4;
  bottom: 24px;
  left: clamp(18px, 6vw, 82px);
  display: flex;
  gap: 10px;
}

.carousel-dots button {
  width: 34px;
  height: 6px;
  padding: 0;
  background: rgba(48, 51, 49, 0.28);
  border: 0;
  border-radius: 999px;
}

.carousel-dots button.is-active {
  background: var(--charcoal);
}

@media (max-width: 860px) {
  .hero-carousel {
    min-height: 730px;
  }

  .carousel-slide::after {
    background: linear-gradient(180deg, rgba(251, 248, 243, 0.98) 0%, rgba(251, 248, 243, 0.82) 50%, rgba(251, 248, 243, 0.06) 100%);
  }

  .hero-carousel .hero-image {
    object-position: center bottom;
  }

  .carousel-arrow {
    top: auto;
    bottom: 22px;
    width: 42px;
    height: 42px;
    transform: none;
  }

  .carousel-prev {
    right: 70px;
    left: auto;
  }

  .carousel-next {
    right: 18px;
  }

  .carousel-dots {
    bottom: 34px;
    left: 18px;
  }
}
