@import "tailwindcss";

:root {
  --orange: #ff963b;
  --orange-dark: #e8781e;
  --ivory: #fffaf4;
  --cream: #f5eadc;
  --sand: #dfc6ac;
  --brown: #352a24;
  --muted: #766a62;
  --line: rgba(53, 42, 36, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--brown);
  font-family: Arial, Helvetica, sans-serif;
}

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

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

.announcement {
  min-height: 34px;
  padding: 8px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: var(--brown);
  color: #fff9f2;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.announcement-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--orange);
}

.site-header {
  width: min(100%, 1440px);
  min-height: 88px;
  margin: 0 auto;
  padding: 0 56px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.brand {
  width: 146px;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: 36px;
  font-size: 12px;
  letter-spacing: 0.04em;
}

.site-header nav a,
.header-cta {
  transition: color 180ms ease;
}

.site-header nav a:hover,
.header-cta:hover {
  color: var(--orange-dark);
}

.header-cta {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero {
  width: min(100%, 1440px);
  min-height: 690px;
  margin: 0 auto;
  padding: 38px 56px 56px;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 36px;
}

.hero-copy {
  padding: 84px 16px 48px 6px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.eyebrow {
  margin: 0;
  color: var(--orange-dark);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 590px;
  margin: 30px 0 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(58px, 6vw, 96px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.91;
}

.hero h1 em {
  display: block;
  color: var(--orange);
  font-weight: 400;
}

.hero-description {
  max-width: 420px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.primary-button {
  margin-top: 38px;
  padding: 15px 19px 15px 22px;
  display: inline-flex;
  align-items: center;
  gap: 34px;
  background: var(--brown);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 180ms ease, transform 180ms ease;
}

.primary-button:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
}

.hero-visual {
  min-height: 590px;
  position: relative;
  overflow: hidden;
  background: var(--cream);
}

.hero-visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0, 1);
}

.hero-visual:hover > img {
  transform: scale(1.025);
}

.hero-tag {
  position: absolute;
  right: 20px;
  bottom: 20px;
  padding: 16px 18px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(255, 250, 244, 0.9);
  backdrop-filter: blur(12px);
}

.hero-tag span {
  color: var(--orange-dark);
  font-family: Georgia, serif;
  font-size: 28px;
}

.hero-tag p {
  margin: 2px 0 0;
  font-size: 10px;
  line-height: 1.55;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.category-section {
  padding: 112px max(56px, calc((100vw - 1328px) / 2)) 120px;
  background: #fff;
}

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

.section-heading h2 {
  margin: 14px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 400;
  letter-spacing: -0.04em;
}

.section-heading > p {
  max-width: 430px;
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 400px));
  justify-content: center;
  gap: 18px;
}

.category-card {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 4 / 5;
  min-height: 0;
  position: relative;
  overflow: hidden;
  background: var(--cream);
}

.category-card img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: center top;
  transition: transform 600ms cubic-bezier(0.2, 0.7, 0, 1);
}

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

.category-overlay {
  position: absolute;
  inset: auto 0 0;
  padding: 24px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: end;
  gap: 18px;
  background: linear-gradient(transparent, rgba(31, 22, 17, 0.7));
  color: #fff;
}

.category-overlay > span:first-child {
  align-self: start;
  margin-top: 3px;
  color: #ffd2ac;
  font-size: 10px;
  letter-spacing: 0.12em;
}

.category-overlay p {
  margin: 0 0 3px;
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.category-overlay h3 {
  margin: 0;
  font-family: Georgia, serif;
  font-size: 35px;
  font-weight: 400;
}

.circle-arrow {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  transition: background 180ms ease, color 180ms ease;
}

.category-card:hover .circle-arrow {
  background: #fff;
  color: var(--brown);
}

.value-strip {
  min-height: 66px;
  padding: 18px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  overflow: hidden;
  background: var(--orange);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}

.value-strip span[aria-hidden="true"] {
  color: var(--brown);
  font-size: 12px;
}

.product-section {
  padding: 120px max(56px, calc((100vw - 1328px) / 2));
  background: var(--ivory);
}

.product-heading {
  align-items: center;
}

.collection-groups {
  display: grid;
  gap: 96px;
}

.collection-group {
  scroll-margin-top: 24px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.collection-group-heading {
  margin-bottom: 30px;
  display: flex;
  align-items: flex-start;
  gap: 22px;
}

.collection-group-heading > span {
  margin-top: 5px;
  color: var(--orange-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
}

.collection-group-heading p {
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.collection-group-heading h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 400;
  letter-spacing: -0.035em;
}

.text-link {
  padding-bottom: 5px;
  display: inline-flex;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid var(--brown);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 180ms ease, border-color 180ms ease;
}

.text-link:hover {
  color: var(--orange-dark);
  border-color: var(--orange-dark);
}

.product-slider {
  position: relative;
}

.product-grid {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.product-grid::-webkit-scrollbar {
  display: none;
}

.product-card {
  flex: 0 0 calc((100% - 18px) / 2);
  min-width: 0;
  scroll-snap-align: start;
}

.slider-arrow {
  width: 48px;
  height: 48px;
  position: absolute;
  top: 255px;
  z-index: 5;
  display: grid;
  place-items: center;
  border: 1px solid var(--brown);
  border-radius: 50%;
  background: var(--ivory);
  color: var(--brown);
  font-size: 20px;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.slider-prev {
  left: -24px;
}

.slider-next {
  right: -24px;
}

.slider-arrow:hover {
  background: var(--orange);
  color: #fff;
  transform: scale(1.05);
}

.product-image {
  width: 100%;
  height: 510px;
  position: relative;
  display: block;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: var(--cream);
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms cubic-bezier(0.2, 0.7, 0, 1);
}

.product-image:hover img {
  transform: scale(1.035);
}

.product-index {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 7px 9px;
  background: rgba(255, 250, 244, 0.88);
  color: var(--orange-dark);
  font-family: Georgia, serif;
  font-size: 15px;
  backdrop-filter: blur(8px);
}

.quick-view {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 12px 14px;
  background: var(--brown);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.product-image:hover .quick-view {
  opacity: 1;
  transform: translateY(0);
}

.product-info {
  padding: 16px 2px 0;
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.product-info p,
.product-meta span {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-info h4 {
  margin: 0;
  font-family: Georgia, serif;
  font-size: 23px;
  font-weight: 400;
}

.product-meta {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  text-align: right;
}

.product-meta strong {
  font-size: 12px;
}

.order-button {
  width: 100%;
  margin-top: 18px;
  padding: 15px 17px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--brown);
  background: transparent;
  color: var(--brown);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.order-button:hover {
  background: var(--brown);
  color: #fff;
  transform: translateY(-2px);
}

.product-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1000;
  padding: 32px;
  display: grid;
  place-items: center;
  background: rgba(52, 39, 32, 0.58);
  backdrop-filter: blur(3px);
  animation: modal-backdrop-in 180ms ease-out;
}

.product-modal-backdrop[hidden] {
  display: none;
}

body.modal-open {
  overflow: hidden;
}

.product-modal {
  width: min(1040px, 100%);
  max-height: calc(100svh - 64px);
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  overflow: hidden;
  background: #fffcf8;
  box-shadow: 0 28px 80px rgba(39, 26, 19, 0.24);
  animation: modal-rise-in 220ms ease-out;
}

.modal-close {
  width: 44px;
  height: 44px;
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  border: 0;
  background: transparent;
  color: var(--brown);
  font-family: Georgia, serif;
  font-size: 34px;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
}

.modal-product-image {
  min-height: 640px;
  background: var(--cream);
}

.modal-product-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
}

.modal-product-content {
  min-width: 0;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

.modal-product-scroll {
  min-height: 0;
  padding: 46px 54px 20px;
  overflow-y: auto;
}

.modal-category,
.modal-section > p,
.size-guide-toggle {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.modal-product-scroll h2 {
  margin: 9px 0 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 4vw, 58px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.modal-product-meta {
  padding-bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  text-transform: uppercase;
}

.modal-product-meta span {
  color: var(--muted);
  letter-spacing: 0.13em;
}

.modal-product-meta strong {
  font-size: 14px;
}

.modal-section {
  padding-top: 22px;
}

.modal-material strong {
  margin-top: 8px;
  display: block;
  font-family: Georgia, serif;
  font-size: 17px;
  font-weight: 400;
}

.size-options {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.size-options button {
  min-width: 54px;
  height: 46px;
  padding-inline: 15px;
  border: 1px solid var(--brown);
  background: transparent;
  color: var(--brown);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: background 150ms ease, border-color 150ms ease, color 150ms ease;
}

.size-options button:hover,
.size-options button.is-selected {
  border-color: var(--orange);
  background: var(--orange);
  color: #fff;
}

.size-guide-toggle {
  width: 100%;
  padding: 0 0 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.size-table-wrap {
  overflow-x: auto;
}

.size-table-wrap table {
  width: 100%;
  border-collapse: collapse;
  font-size: 10px;
  text-align: center;
}

.size-table-wrap th,
.size-table-wrap td {
  min-width: 76px;
  padding: 10px 7px;
  border: 1px solid var(--line);
}

.size-table-wrap thead th {
  background: rgba(239, 226, 211, 0.4);
  color: var(--muted);
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mobile-measurements {
  display: none;
}

.modal-order-area {
  margin-top: auto;
  padding: 16px 54px 28px;
  background: #fffcf8;
}

.modal-order-button {
  min-height: 56px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--orange);
  color: #fff;
  font-family: Georgia, serif;
  font-size: 17px;
  transition: background 180ms ease, opacity 180ms ease;
}

.modal-order-button:hover {
  background: var(--orange-dark);
}

.modal-order-button.is-disabled {
  background: #cfc2b6;
  cursor: not-allowed;
}

.modal-order-area > p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 10px;
}

@keyframes modal-backdrop-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes modal-rise-in {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 720px) {
  .product-modal-backdrop {
    padding: 0;
    place-items: end stretch;
    overscroll-behavior: contain;
  }

  .product-modal {
    width: 100%;
    height: calc(100vh - 10px);
    height: calc(100dvh - 10px);
    max-height: calc(100vh - 10px);
    max-height: calc(100dvh - 10px);
    grid-template-columns: 1fr;
    grid-template-rows: 180px minmax(0, 1fr);
    border-radius: 18px 18px 0 0;
    animation-name: modal-sheet-in;
  }

  .modal-close {
    top: 12px;
    right: 12px;
    border-radius: 50%;
    background: rgba(255, 252, 248, 0.9);
  }

  .modal-product-image {
    height: 180px;
    min-height: 0;
  }

  .modal-product-content {
    min-height: 0;
    overflow: hidden;
  }

  .modal-product-scroll {
    flex: 1 1 auto;
    min-height: 0;
    padding: 24px 20px 18px;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
  }

  .modal-product-scroll h2 {
    font-size: 38px;
  }

  .size-table-wrap {
    display: none;
  }

  .mobile-measurements {
    display: block;
  }

  .mobile-measurements > p {
    margin: 6px 0 0;
    color: var(--muted);
    font-size: 12px;
  }

  .mobile-measurements dl {
    margin: 0;
    border-top: 1px solid var(--line);
  }

  .mobile-measurements dl div {
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    border-bottom: 1px solid var(--line);
    font-size: 12px;
  }

  .mobile-measurements dt {
    color: var(--muted);
  }

  .mobile-measurements dd {
    margin: 0;
    font-weight: 700;
  }

  .modal-order-area {
    position: relative;
    z-index: 2;
    flex: 0 0 auto;
    padding: 12px 20px max(16px, env(safe-area-inset-bottom));
    border-top: 1px solid var(--line);
    box-shadow: 0 -10px 30px rgba(52, 39, 32, 0.06);
  }

  .modal-order-button {
    min-height: 52px;
    font-size: 15px;
  }

  .modal-order-area > p {
    display: none;
  }

  @keyframes modal-sheet-in {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-modal-backdrop,
  .product-modal {
    animation: none;
  }
}

.story-section {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  background: #fff;
}

.story-image {
  min-height: 700px;
  position: relative;
  overflow: hidden;
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 18% center;
}

.story-image span {
  position: absolute;
  left: 24px;
  bottom: 24px;
  padding: 13px 16px;
  background: rgba(255, 250, 244, 0.9);
  color: var(--orange-dark);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.story-copy {
  padding: 100px clamp(48px, 8vw, 130px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}

.story-copy h2 {
  max-width: 520px;
  margin: 24px 0 30px;
  font-family: Georgia, serif;
  font-size: clamp(48px, 5vw, 76px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.story-copy > p:not(.eyebrow) {
  max-width: 480px;
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.story-copy .text-link {
  margin-top: 18px;
}

.contact-section {
  padding: 130px 28px;
  display: flex;
  align-items: center;
  flex-direction: column;
  background: var(--orange);
  color: #fff;
  text-align: center;
}

.contact-section .eyebrow {
  color: var(--brown);
}

.contact-section h2 {
  margin: 24px 0 22px;
  font-family: Georgia, serif;
  font-size: clamp(55px, 7vw, 100px);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.9;
}

.contact-section h2 em {
  display: block;
  color: var(--brown);
  font-weight: 400;
}

.contact-section > p:not(.eyebrow) {
  max-width: 530px;
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
}

.contact-button {
  margin-top: 34px;
  padding: 17px 22px;
  display: inline-flex;
  align-items: center;
  gap: 34px;
  background: #fff;
  color: var(--brown);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease;
}

.contact-actions {
  margin-top: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.contact-actions .contact-button {
  margin-top: 0;
}

.contact-button-secondary {
  background: var(--brown);
  color: #fff;
}

.contact-button-secondary:hover {
  background: #fff;
  color: var(--brown);
}

.contact-button:hover {
  background: var(--brown);
  color: #fff;
  transform: translateY(-2px);
}

footer {
  min-height: 150px;
  padding: 38px max(28px, calc((100vw - 1328px) / 2));
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 40px;
  background: var(--brown);
  color: rgba(255, 255, 255, 0.68);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-brand {
  width: 136px;
  padding: 9px 11px;
  background: #fffaf4;
}

footer > p {
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a:hover {
  color: #fff;
}

@media (max-width: 960px) {
  .site-header {
    padding-inline: 28px;
  }

  .site-header nav {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 20px 28px 50px;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding: 54px 0 18px;
  }

  .hero-visual {
    min-height: 520px;
  }

  .category-section {
    padding: 84px 28px;
  }

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

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

  .product-section {
    padding: 84px 28px;
  }

  .collection-groups {
    gap: 76px;
  }

  .story-section {
    grid-template-columns: 1fr;
  }

  .story-image {
    min-height: 560px;
  }

  footer {
    grid-template-columns: 1fr 1fr;
  }

  .footer-links {
    justify-content: flex-end;
  }
}

@media (max-width: 600px) {
  .announcement {
    justify-content: center;
  }

  .announcement span:nth-child(2),
  .announcement span:nth-child(3) {
    display: none;
  }

  .site-header {
    min-height: 72px;
    padding-inline: 18px;
    grid-template-columns: 1fr auto;
  }

  .brand {
    width: 126px;
  }

  .header-cta {
    font-size: 10px;
  }

  .hero {
    padding: 12px 18px 40px;
  }

  .hero h1 {
    margin-top: 24px;
    font-size: 55px;
  }

  .hero-description {
    font-size: 14px;
  }

  .hero-visual {
    min-height: 420px;
  }

  .hero-visual > img {
    object-position: 57% center;
  }

  .hero-tag {
    display: none;
  }

  .category-section {
    padding: 72px 18px;
  }

  .section-heading {
    gap: 22px;
  }

  .value-strip {
    justify-content: flex-start;
  }

  .product-section {
    padding: 72px 18px;
  }

  .collection-groups {
    gap: 64px;
  }

  .collection-group {
    padding-top: 24px;
  }

  .collection-group-heading {
    gap: 15px;
  }

  .product-heading {
    align-items: flex-start;
  }

  .product-card {
    flex-basis: 88%;
  }

  .slider-arrow {
    top: 260px;
  }

  .slider-prev {
    left: 8px;
  }

  .slider-next {
    right: 8px;
  }

  .product-image {
    height: 520px;
  }

  .quick-view {
    opacity: 1;
    transform: none;
  }

  .story-image {
    min-height: 470px;
  }

  .story-copy {
    padding: 72px 24px;
  }

  .contact-section {
    padding: 90px 18px;
  }

  .contact-actions {
    width: min(100%, 330px);
    align-items: stretch;
    flex-direction: column;
  }

  .contact-actions .contact-button {
    justify-content: space-between;
  }

  footer {
    padding: 46px 18px;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-links {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }
}
