@import url("https://fonts.googleapis.com/css2?family=Anton&display=swap");

/* Edit brand tokens here */
:root {
  --color-bg: #ffffff;
  --color-text: #000000;
  --color-muted: #666666;
  --color-border: #e5e5e5;
  --font-sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --header-height: 56px;
  --max-width: 1440px;
  --page-padding: 16px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 12px;
  line-height: 1.5;
  color: var(--color-text);
  background: var(--color-bg);
  letter-spacing: 0.02em;
}

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

a:hover {
  opacity: 0.65;
}

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 var(--page-padding);
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
}

.site-header__start {
  justify-self: start;
  display: flex;
  align-items: center;
  min-width: 0;
}

.site-header__end {
  justify-self: end;
}

.site-header__menu-btn {
  width: 44px;
  height: 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  flex-shrink: 0;
}

.site-header__menu-btn span {
  display: block;
  width: 18px;
  height: 1px;
  background: currentColor;
}

.site-header__logo {
  text-decoration: none;
}

.site-header__logo:hover {
  opacity: 1;
}

.site-header__logo-text {
  font-family: "Anton", sans-serif;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1;
}

.site-header--over-hero .site-header__logo-text {
  color: #fff;
}

.site-nav {
  position: fixed;
  inset: var(--header-height) 0 0 0;
  width: min(320px, 88vw);
  background: var(--color-bg);
  transform: translateX(-100%);
  transition: transform 0.25s ease;
  overflow-y: auto;
  padding: 24px var(--page-padding) 48px;
  border-top: 1px solid var(--color-border);
  border-right: 1px solid var(--color-border);
  z-index: 95;
}

.site-nav.is-open {
  transform: translateX(0);
}

.site-nav__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.site-nav__link {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.site-nav-overlay {
  position: fixed;
  inset: var(--header-height) 0 0 0;
  background: rgba(0, 0, 0, 0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 90;
}

.site-nav-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

@media (min-width: 1024px) {
  .site-header {
    grid-template-columns: 1fr auto 1fr;
    padding: 0 32px;
  }

  .site-header__menu-btn {
    display: none;
  }

  .site-nav {
    position: static;
    width: auto;
    transform: none;
    border: none;
    padding: 0;
    overflow: visible;
  }

  .site-nav__list {
    flex-direction: row;
    gap: 28px;
  }

  .site-nav__link {
    font-size: 11px;
  }

  .site-nav-overlay {
    display: none;
  }
}

/* Collection page */
.collection {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 32px var(--page-padding) 64px;
}

.collection__title {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
}

.collection__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--color-border);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-muted);
}

.collection__toolbar button {
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 12px;
}

@media (min-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px 16px;
  }
}

@media (min-width: 1200px) {
  .product-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 40px 20px;
  }
}

.product-card__media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #f4f4f4;
  margin-bottom: 12px;
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card__name {
  margin: 0;
  font-size: 11px;
  font-weight: 400;
  text-transform: lowercase;
  letter-spacing: 0.04em;
  text-align: center;
}

.product-card__price {
  margin: 6px 0 0;
  font-size: 11px;
  font-weight: 400;
  text-align: center;
  letter-spacing: 0.04em;
}

.collection__story {
  margin-top: 64px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  font-size: 12px;
  line-height: 1.7;
  color: var(--color-text);
}

.collection__story p {
  margin: 0 0 1.25em;
}

/* Product page */
.product-page {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 16px var(--page-padding) 80px;
}

.breadcrumb {
  margin: 0 0 24px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-muted);
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.breadcrumb li + li::before {
  content: "/";
  margin-right: 8px;
}

.product-layout {
  display: grid;
  gap: 32px;
}

@media (min-width: 1024px) {
  .product-layout {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 48px;
    align-items: start;
  }
}

.product-gallery__main {
  position: relative;
  background: #f4f4f4;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.product-gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-gallery__thumbs {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.product-gallery__thumb {
  flex: 1;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid transparent;
  opacity: 0.55;
  transition: opacity 0.2s, border-color 0.2s;
}

.product-gallery__thumb.is-active,
.product-gallery__thumb:hover {
  opacity: 1;
  border-color: var(--color-text);
}

.product-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-gallery__thumbs--many {
  flex-wrap: wrap;
}

.product-gallery__thumbs--many .product-gallery__thumb {
  flex: 0 0 calc(25% - 6px);
  max-width: calc(25% - 6px);
}

.product-info {
  position: sticky;
  top: calc(var(--header-height) + 16px);
}

.product-info__title {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.4;
}

.product-info__subtitle {
  margin: 0 0 8px;
  font-size: 11px;
  color: var(--color-muted);
  text-transform: capitalize;
}

.product-info__price {
  margin: 0 0 24px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.product-info__label {
  display: block;
  margin-bottom: 10px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.color-swatches {
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
}

.color-swatch {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  position: relative;
}

.color-swatch.is-active::after {
  content: "";
  position: absolute;
  inset: -4px;
  border: 1px solid var(--color-text);
  border-radius: 50%;
}

.color-swatch--navy {
  background: #1a2744;
}

.color-swatch--grey {
  background: #b8b8b8;
}

.size-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.product-info__size-hint {
  margin: -4px 0 12px;
  font-size: 10px;
  color: var(--color-muted);
}

.custom-order {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--color-border);
}

.custom-order__step {
  margin-bottom: 24px;
}

.custom-order__step:last-child {
  margin-bottom: 0;
}

.custom-order__step-title {
  margin: 0 0 10px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.custom-order__text {
  margin: 0 0 12px;
  font-size: 11px;
  line-height: 1.7;
}

.custom-order__text a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.custom-order__btn {
  display: inline-block;
  padding: 14px 20px;
  border: 1px solid var(--color-text);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: background 0.15s, color 0.15s;
}

.custom-order__btn:hover {
  background: var(--color-text);
  color: var(--color-bg);
  opacity: 1;
}

.custom-order__btn--secondary {
  margin-top: 4px;
}

.size-grid__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 40px;
  padding: 0 12px;
  border: 1px solid var(--color-border);
  font-size: 11px;
  text-transform: uppercase;
  transition: background 0.15s, color 0.15s;
}

.size-grid__link:hover {
  background: var(--color-text);
  color: var(--color-bg);
  border-color: var(--color-text);
  opacity: 1;
}

.product-info__id {
  margin: 0 0 24px;
  font-size: 10px;
  color: var(--color-muted);
  letter-spacing: 0.06em;
}

.accordion {
  border-top: 1px solid var(--color-border);
}

.accordion__item {
  border-bottom: 1px solid var(--color-border);
}

.accordion__trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: left;
}

.accordion__trigger::after {
  content: "+";
  font-size: 14px;
  font-weight: 300;
}

.accordion__item.is-open .accordion__trigger::after {
  content: "−";
}

.accordion__panel {
  display: none;
  padding: 0 0 16px;
  font-size: 11px;
  line-height: 1.7;
  color: var(--color-text);
}

.accordion__item.is-open .accordion__panel {
  display: block;
}

.accordion__panel ul {
  margin: 0;
  padding-left: 1em;
}

.accordion__panel li {
  margin-bottom: 0.35em;
}

.accordion__image {
  width: 100%;
  max-width: 100%;
  margin-top: 16px;
  background: #f4f4f4;
}

.related-products {
  margin-top: 80px;
  padding-top: 32px;
  border-top: 1px solid var(--color-border);
}

.related-products__title {
  margin: 0 0 24px;
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Reviews */
.reviews {
  margin-top: 80px;
  padding-top: 32px;
  border-top: 1px solid var(--color-border);
  max-width: 720px;
}

.reviews__title {
  margin: 0 0 32px;
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.review-card {
  padding: 0 0 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--color-border);
}

.review-card:last-child {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}

.review-card__stars {
  display: flex;
  gap: 2px;
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1;
}

.review-card__stars .star.is-filled {
  color: var(--color-text);
}

.review-card__author {
  margin: 0 0 8px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.review-card__text {
  margin: 0 0 20px;
  font-size: 12px;
  line-height: 1.7;
}

.review-card__media {
  max-width: 320px;
}

.review-card__media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: #f4f4f4;
}

.review-card__media--video {
  max-width: 100%;
}

.review-card__media video {
  width: 100%;
  max-width: 640px;
  background: #000;
}

/* Checkout */
.checkout-page {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 40px var(--page-padding) 80px;
}

.checkout-page__back {
  margin: 0 0 32px;
  font-size: 11px;
}

.checkout-page__header {
  margin-bottom: 40px;
  text-align: center;
}

.checkout-page__title {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: lowercase;
}

.checkout-page__price {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.checkout-page__meta {
  margin: 0;
  font-size: 12px;
  color: var(--color-muted);
}

.checkout-page__reminder {
  max-width: 720px;
  margin: 0 auto 32px;
  padding: 16px 20px;
  border: 1px solid var(--color-border);
  font-size: 11px;
  line-height: 1.7;
  text-align: center;
}

.checkout-page__reminder a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.checkout-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 900px) {
  .checkout-options {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: stretch;
  }
}

.checkout-option {
  display: flex;
  flex-direction: column;
  padding: 24px 20px;
  border: 1px solid var(--color-border);
  text-align: left;
}

.checkout-option__title {
  margin: 0 0 16px;
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.checkout-option__qr {
  margin-bottom: 20px;
  text-align: center;
}

.checkout-option__qr img {
  width: 160px;
  height: 160px;
  margin: 0 auto;
  object-fit: contain;
  background: #fff;
  border: 1px solid var(--color-border);
  padding: 24px;
  box-sizing: border-box;
}

.checkout-option__qr img.checkout-option__brand-logo {
  filter: brightness(0);
}

.checkout-option__qr-caption {
  margin: 10px 0 0;
  font-size: 9px;
  color: var(--color-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.checkout-option__text {
  flex: 1;
  margin: 0 0 24px;
  font-size: 11px;
  line-height: 1.7;
  color: var(--color-text);
}

.checkout-option__text p {
  margin: 0 0 1em;
}

.checkout-option__text p:last-child {
  margin-bottom: 0;
}

.checkout-option__contact {
  font-style: normal;
}

.checkout-option__btn {
  display: block;
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--color-text);
  font-size: 11px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: background 0.15s, color 0.15s;
  margin-top: auto;
}

.checkout-option__btn:hover {
  background: var(--color-text);
  color: var(--color-bg);
  opacity: 1;
}

/* Blog index */
.blog-page {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 40px var(--page-padding) 80px;
}

.blog-page__title {
  margin: 0 0 32px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
}

.blog-page__intro {
  max-width: 720px;
  margin: 0 auto 64px;
  font-size: 12px;
  line-height: 1.75;
}

.blog-page__intro p {
  margin: 0 0 1.25em;
}

.blog-page__cta {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 11px;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.blog-section__label {
  margin: 0 0 24px;
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.blog-featured {
  max-width: 640px;
  margin: 0 auto 80px;
}

.blog-featured__link {
  display: block;
}

.blog-featured__link:hover {
  opacity: 1;
}

.blog-featured__media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #f4f4f4;
  margin-bottom: 20px;
}

.blog-featured__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-featured__heading {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 400;
  text-transform: lowercase;
}

.blog-featured__excerpt {
  margin: 0 0 12px;
  font-size: 12px;
  line-height: 1.7;
  color: var(--color-text);
}

.blog-featured__more {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.blog-all-posts {
  padding-top: 0;
}

.blog-section__label--grid {
  margin-bottom: 24px;
}

/* Grid keeps source order: left-to-right, top-to-bottom (newest first in HTML) */
.blog-masonry {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

@media (min-width: 540px) {
  .blog-masonry {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .blog-masonry {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
}

@media (min-width: 1200px) {
  .blog-masonry {
    grid-template-columns: repeat(4, 1fr);
  }
}

.blog-masonry__item {
  min-width: 0;
}

.blog-masonry__item img,
.blog-masonry__video {
  width: 100%;
  height: auto;
  display: block;
  background: #f0f0f0;
}

.blog-masonry__video {
  background: #000;
}

.blog-all-posts__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.carousel-controls {
  display: flex;
  gap: 16px;
}

.carousel-controls__btn {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-muted);
}

.carousel-controls__btn:hover {
  color: var(--color-text);
}

.post-carousel {
  overflow: hidden;
}

.post-carousel__track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 8px;
}

.post-carousel__track::-webkit-scrollbar {
  display: none;
}

.post-carousel__slide {
  flex: 0 0 min(72vw, 280px);
  scroll-snap-align: start;
}

@media (min-width: 768px) {
  .post-carousel__slide {
    flex: 0 0 calc(25% - 12px);
  }
}

.post-carousel__media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #f4f4f4;
  margin-bottom: 12px;
}

.post-carousel__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-carousel__title {
  margin: 0;
  font-size: 11px;
  font-weight: 400;
  text-transform: lowercase;
  letter-spacing: 0.04em;
}

/* Blog post */
.blog-post-page {
  max-width: 720px;
  margin: 0 auto;
  padding: 32px var(--page-padding) 80px;
}

.blog-post-page__back {
  margin: 0 0 24px;
  font-size: 11px;
}

.blog-post-page__title {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: lowercase;
}

.blog-post-page__date {
  margin: 0 0 32px;
  font-size: 10px;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.blog-post-page__hero {
  margin-bottom: 32px;
  background: #f4f4f4;
}

.blog-post-page__hero img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.blog-post-page__body {
  font-size: 12px;
  line-height: 1.75;
}

.blog-post-page__body p {
  margin: 0 0 1.25em;
}

/* Campaign homepage */
.site-header--over-hero {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  border-bottom: none;
  background: transparent;
}

.campaign-page {
  padding: 0;
}

.campaign-hero {
  position: relative;
  width: 100%;
  min-height: 70vh;
  max-height: 92vh;
  overflow: hidden;
  background: #111;
}

.campaign-hero__image,
.campaign-hero__video {
  width: 100%;
  height: 70vh;
  max-height: 92vh;
  object-fit: cover;
  display: block;
}

.campaign-hero__title {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 24px var(--page-padding) 32px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.55));
}

.campaign-intro {
  padding: 56px var(--page-padding) 64px;
  border-bottom: 1px solid var(--color-border);
}

.campaign-intro__inner {
  max-width: 720px;
  margin: 0 auto;
  font-size: 12px;
  line-height: 1.75;
  text-align: center;
}

.campaign-intro__inner p {
  margin: 0 0 1.25em;
}

.campaign-intro__cta-block {
  margin-top: 8px;
}

.campaign-intro__divider {
  width: 48px;
  margin: 40px auto 32px;
  border: 0;
  border-top: 1px solid var(--color-border);
}

.campaign-intro__cta-lead {
  margin: 0 0 1.25em;
  font-size: 12px;
  line-height: 1.75;
}

.campaign-intro__cta {
  display: inline-block;
  margin-top: 8px;
  font-size: 12px;
  letter-spacing: 0.02em;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.campaign-reviews {
  padding: 56px var(--page-padding) 80px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.campaign-reviews__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.campaign-reviews__title {
  margin: 0;
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.review-carousel {
  overflow: hidden;
}

.review-carousel__track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 8px;
}

.review-carousel__track::-webkit-scrollbar {
  display: none;
}

.review-carousel__slide {
  flex: 0 0 min(85vw, 320px);
  scroll-snap-align: start;
}

@media (min-width: 768px) {
  .review-carousel__slide {
    flex: 0 0 calc(33.333% - 11px);
  }
}

@media (min-width: 1100px) {
  .review-carousel__slide {
    flex: 0 0 calc(25% - 12px);
  }
}

.review-carousel__card {
  height: 100%;
  padding: 20px;
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
}

.review-carousel__stars {
  display: flex;
  gap: 2px;
  margin-bottom: 10px;
  font-size: 13px;
  line-height: 1;
}

.review-carousel__stars .star.is-filled {
  color: var(--color-text);
}

.review-carousel__author {
  margin: 0 0 8px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.review-carousel__text {
  flex: 1;
  margin: 0 0 16px;
  font-size: 11px;
  line-height: 1.65;
}

.review-carousel__media {
  margin-top: auto;
}

.review-carousel__media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: #f4f4f4;
}

.review-carousel__media--video video {
  width: 100%;
  background: #000;
}

/* Contact page */
.contact-page {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 48px var(--page-padding) 80px;
}

.contact-page__title {
  margin: 0 0 48px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
}

.contact-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .contact-columns {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

.contact-column {
  padding: 32px 24px;
  border: 1px solid var(--color-border);
  text-align: center;
}

.contact-column__title {
  margin: 0 0 16px;
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.contact-column__text {
  margin: 0 0 20px;
  font-size: 11px;
  line-height: 1.7;
  color: var(--color-muted);
}

.contact-column__link {
  font-size: 13px;
  letter-spacing: 0.04em;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.contact-column__link:hover {
  opacity: 1;
}

.site-footer {
  margin-top: auto;
  padding: 32px var(--page-padding);
  border-top: 1px solid var(--color-border);
  text-align: center;
  font-size: 10px;
  color: var(--color-muted);
  letter-spacing: 0.06em;
}
