:root {
  --ivory: #fbf8f1;
  --warm-white: #fffdf8;
  --ink: #24211f;
  --soft-ink: #5c5650;
  --cipria: #d9b8ad;
  --sand: #d8c7ad;
  --taupe: #a99a8c;
  --line: rgba(36, 33, 31, 0.14);
  --line-strong: rgba(36, 33, 31, 0.22);
  --shadow: 0 18px 42px rgba(64, 54, 45, 0.08);
  --serif: "Cormorant Garamond", serif;
  --sans: "Manrope", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(18px);
    transition:
      opacity 520ms ease,
      transform 620ms cubic-bezier(0.22, 1, 0.36, 1),
      border-color 320ms ease,
      background 320ms ease;
    transition-delay: var(--reveal-delay, 0ms);
  }

  .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  .section.reveal,
  .hero.reveal {
    opacity: 1;
    transform: none;
  }

  .product-card.reveal,
  .category-card.reveal,
  .lookbook-grid article.reveal {
    transform: translateY(14px);
  }

  .product-card.reveal.is-visible,
  .category-card.reveal.is-visible,
  .lookbook-grid article.reveal.is-visible {
    transform: translateY(0);
  }
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  letter-spacing: 0;
  font-size: 15.5px;
  font-weight: 400;
  line-height: 1.75;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(18px, 3vw, 36px);
  padding: 18px clamp(18px, 4vw, 52px);
  background: rgba(251, 248, 241, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand img {
  display: block;
  width: 124px;
  height: auto;
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 2.6vw, 38px);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.045em;
  color: var(--soft-ink);
}

.nav a,
.social-strip a {
  border-bottom: 1px solid transparent;
  padding-bottom: 4px;
}

.nav a:hover,
.social-strip a:hover {
  border-color: currentColor;
}

.cart-button,
.nav-toggle,
.cart-head button {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  min-height: 38px;
  padding: 0 14px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.035em;
}

.cart-button span {
  display: inline-grid;
  place-items: center;
  min-width: 21px;
  height: 21px;
  margin-left: 6px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--ivory);
  font-size: 11px;
  font-weight: 500;
}

.nav-toggle {
  display: none;
  width: 42px;
  padding: 0 11px;
}

.nav-toggle span {
  display: block;
  height: 1px;
  margin: 6px 0;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: max(820px, calc(100svh - 72px));
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 18%, rgba(217, 184, 173, 0.28), transparent 34%),
    linear-gradient(135deg, #fbf8f1, #e8ddcf);
}

.hero-media {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(251, 248, 241, 0.78), rgba(251, 248, 241, 0.18) 58%),
    url("assets/boutique-hero.png");
  background-size: cover;
  background-position: center;
  background-color: #efe8dc;
}

.hero-content {
  position: relative;
  width: min(760px, calc(100% - 36px));
  padding: 19vh 0 16vh;
  margin: 0 auto;
  text-align: center;
}

.hero-logo {
  width: min(430px, 68vw);
  margin-bottom: 58px;
  filter: drop-shadow(0 10px 18px rgba(36, 33, 31, 0.045));
}

.eyebrow {
  margin: 0 0 16px;
  font-size: 10.5px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--soft-ink);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 300;
  line-height: 1.06;
  letter-spacing: 0.006em;
}

h1 {
  max-width: 620px;
  font-size: clamp(42px, 6.8vw, 78px);
  margin-bottom: 34px;
  margin-left: auto;
  margin-right: auto;
}

.hero-title {
  display: grid;
  gap: 4px;
}

.hero-title span {
  display: block;
}

h2 {
  font-size: clamp(34px, 5.2vw, 58px);
  margin-bottom: 22px;
}

h3 {
  font-family: var(--serif);
  font-size: clamp(25px, 2.5vw, 31px);
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: 0.01em;
  margin-bottom: 10px;
}

p {
  color: var(--soft-ink);
  line-height: 1.86;
  font-weight: 400;
}

.hero-actions,
.product-actions,
.social-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  justify-content: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border: 1px solid var(--ink);
  cursor: pointer;
  transition: transform 260ms ease, background 260ms ease, color 260ms ease, border-color 260ms ease;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.095em;
  text-transform: uppercase;
}

.button:hover {
  transform: translateY(-1px);
  border-color: rgba(36, 33, 31, 0.62);
}

.button-dark {
  background: var(--ink);
  color: var(--ivory);
}

.button-light {
  background: rgba(255, 253, 248, 0.7);
  color: var(--ink);
}

.section {
  padding: clamp(66px, 10vw, 138px) clamp(18px, 5vw, 76px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 420px);
  gap: 28px;
  align-items: end;
  margin-bottom: clamp(34px, 5vw, 58px);
}

.section-heading-left {
  max-width: 980px;
  grid-template-columns: minmax(0, 0.72fr) minmax(220px, 0.28fr);
}

.section-heading-offset {
  width: min(1120px, 100%);
  margin-left: auto;
  grid-template-columns: minmax(0, 0.62fr) minmax(220px, 0.38fr);
}

.section-heading h2 {
  grid-column: 1;
}

.section-heading p:last-child {
  grid-column: 2;
  grid-row: 2;
}

.intro-strip {
  padding-top: 46px;
  padding-bottom: 46px;
  background: var(--warm-white);
}

.intro-strip p {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  font-family: var(--serif);
  font-size: clamp(25px, 3.6vw, 40px);
  line-height: 1.25;
  font-weight: 300;
  color: var(--ink);
}

.shop-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: clamp(26px, 4vw, 52px);
  align-items: start;
}

.shop-section {
  padding-right: clamp(18px, 6vw, 96px);
}

.filters {
  position: sticky;
  top: 86px;
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.62);
  padding: 20px;
}

.filters-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  margin-bottom: 18px;
}

.filters-head .eyebrow {
  margin-bottom: 5px;
}

.filters-head strong {
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 300;
  letter-spacing: 0.01em;
}

.filters-head button {
  display: none;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  min-height: 38px;
  padding: 0 12px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.filters-controls {
  display: grid;
  gap: 16px;
}

.filters-controls label,
.coupon {
  display: grid;
  gap: 8px;
  color: var(--soft-ink);
  font-size: 12px;
  letter-spacing: 0.035em;
}

select,
input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--warm-white);
  color: var(--ink);
  min-height: 43px;
  padding: 0 12px;
  font-size: 13px;
  font-weight: 400;
}

textarea {
  min-height: 120px;
  padding-top: 12px;
  resize: vertical;
}

select:focus,
input:focus,
textarea:focus {
  outline: 1px solid var(--line-strong);
  outline-offset: 2px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.4vw, 28px);
}

.product-card {
  min-width: 0;
  border-bottom: 1px solid var(--line);
  padding-bottom: 16px;
}

.product-card button {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 0;
  text-align: left;
  cursor: pointer;
}

.product-card button:hover .product-art {
  border-color: var(--line-strong);
  transform: translateY(-2px) scale(1.006);
}

.product-art,
.look-image,
.category-card,
.map-card {
  border: 1px solid var(--line);
  background-color: var(--warm-white);
}

.product-card .product-art {
  aspect-ratio: 3 / 4;
  width: 100%;
  margin-bottom: 13px;
  position: relative;
  overflow: hidden;
  transition: transform 420ms ease, border-color 320ms ease;
}

.product-art::before,
.look-image::before {
  content: "";
  position: absolute;
  inset: 13%;
  border: 1px solid rgba(255, 253, 248, 0.62);
}

.product-badge {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 1;
  padding: 7px 10px;
  background: rgba(255, 253, 248, 0.82);
  border: 1px solid rgba(36, 33, 31, 0.12);
  color: var(--ink);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.product-meta {
  display: grid;
  gap: 8px;
}

.product-meta strong {
  font-family: var(--serif);
  font-size: clamp(22px, 2vw, 27px);
  font-weight: 300;
  line-height: 1.14;
  letter-spacing: 0.01em;
}

.product-meta .product-line {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: baseline;
}

.product-meta .price-inline {
  color: var(--soft-ink);
  white-space: nowrap;
  font-size: 13px;
  font-weight: 400;
}

.sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.sizes span {
  min-width: 30px;
  padding: 4px 7px;
  border: 1px solid var(--line);
  text-align: center;
  color: var(--soft-ink);
  font-size: 11px;
  font-weight: 400;
}

.product-meta span,
.product-meta small {
  color: var(--soft-ink);
  font-size: 11px;
  letter-spacing: 0.04em;
}

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

.category-section {
  padding-left: clamp(18px, 8vw, 128px);
}

.category-section .section-heading h2 {
  max-width: 760px;
}

.category-card {
  min-height: 180px;
  display: flex;
  align-items: end;
  padding: 18px;
  background-image: linear-gradient(145deg, rgba(217, 184, 173, 0.24), rgba(255, 253, 248, 0.9));
  transition: border-color 360ms ease, background 420ms ease, transform 420ms ease;
}

.category-card:hover {
  border-color: var(--line-strong);
  background-image: linear-gradient(145deg, rgba(217, 184, 173, 0.34), rgba(255, 253, 248, 0.95));
  transform: translateY(-2px);
}

.category-card span {
  font-family: var(--serif);
  font-size: 31px;
  font-weight: 300;
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: clamp(28px, 6vw, 74px);
  background: var(--warm-white);
  align-items: start;
}

.gallery-main {
  aspect-ratio: 5 / 6;
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 10px;
}

.gallery-thumbs span {
  aspect-ratio: 1;
}

.product-copy {
  padding-top: clamp(10px, 2vw, 28px);
}

.product-copy > p:not(.eyebrow):not(.price) {
  max-width: 520px;
}

.price {
  font-size: 19px;
  color: var(--ink);
  font-weight: 400;
  letter-spacing: 0.025em;
  margin-bottom: 0;
}

.size-picker {
  display: flex;
  gap: 8px;
  margin: 22px 0;
}

.size-picker button {
  width: 46px;
  height: 42px;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.08em;
}

.size-picker button:hover,
.size-picker button.active {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--ivory);
}

.product-notes {
  display: grid;
  gap: 18px;
  margin: 28px 0;
}

.service-list {
  display: grid;
  gap: 10px;
  margin: 28px 0;
}

.service-list span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--soft-ink);
}

.service-list span::before {
  content: "";
  width: 7px;
  height: 7px;
  border: 1px solid var(--cipria);
  border-radius: 50%;
  background: var(--warm-white);
}

.product-notes div {
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

dt {
  color: var(--ink);
  margin-bottom: 5px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

dd {
  margin: 0;
  color: var(--soft-ink);
  line-height: 1.75;
  font-size: 14px;
}

.about {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 40px;
  align-items: start;
}

.about p:last-child {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.2;
  font-weight: 300;
  color: var(--ink);
}

.lookbook-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr 1.05fr;
  gap: clamp(16px, 3vw, 34px);
  align-items: start;
}

.lookbook .section-heading {
  margin-left: clamp(0px, 5vw, 72px);
}

.look-image {
  aspect-ratio: 4 / 5.4;
  margin-bottom: 18px;
  position: relative;
  overflow: hidden;
  transition: border-color 360ms ease, transform 520ms ease;
}

.lookbook-grid article:hover .look-image {
  border-color: var(--line-strong);
  transform: translateY(-2px);
}

.lookbook-grid article:nth-child(2) {
  margin-top: 58px;
}

.lookbook-grid article:nth-child(3) {
  margin-top: 24px;
}

.boutique {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(20px, 4vw, 46px);
  align-items: stretch;
  background: #f1eadf;
}

.boutique-copy {
  align-self: center;
  border: 1px solid rgba(36, 33, 31, 0.12);
  background: rgba(255, 253, 248, 0.42);
  padding: clamp(24px, 4vw, 44px);
}

.boutique-copy p {
  max-width: 560px;
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 28px;
  border-top: 1px solid var(--line);
}

.info-list li {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  color: var(--soft-ink);
}

.info-list span {
  color: var(--ink);
}

.map-card {
  min-height: 460px;
  position: relative;
  overflow: hidden;
  display: block;
  text-align: left;
  background:
    linear-gradient(90deg, rgba(36, 33, 31, 0.07) 1px, transparent 1px),
    linear-gradient(rgba(36, 33, 31, 0.07) 1px, transparent 1px),
    #e5dbcd;
  background-size: 56px 56px;
}

.map-card iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(1) contrast(0.86) sepia(0.16);
}

.map-overlay {
  position: absolute;
  left: 22px;
  bottom: 22px;
  padding: 18px 20px;
  background: rgba(255, 253, 248, 0.86);
  border: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.map-card span {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--soft-ink);
  font-size: 10.5px;
  font-weight: 500;
}

.map-card strong {
  font-family: var(--serif);
  font-size: clamp(38px, 6vw, 66px);
  font-weight: 300;
}

.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: end;
}

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

.social-strip,
.contact-cards {
  grid-column: 1 / -1;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.contact-card {
  min-height: 220px;
  display: grid;
  align-content: space-between;
  gap: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.46);
  padding: clamp(20px, 3vw, 30px);
  transition: border-color 360ms ease, transform 420ms ease, background 420ms ease;
}

.contact-card:hover {
  border-color: var(--line-strong);
  background: rgba(255, 253, 248, 0.7);
  transform: translateY(-2px);
}

.contact-card .eyebrow {
  margin-bottom: 0;
}

.contact-card h3,
.contact-card p {
  margin-bottom: 0;
}

.contact-card a {
  width: max-content;
  border-bottom: 1px solid currentColor;
  color: var(--ink);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.095em;
  text-transform: uppercase;
  padding-bottom: 5px;
}

.social-strip {
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  color: var(--soft-ink);
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 40;
  pointer-events: none;
  opacity: 0;
  background: rgba(36, 33, 31, 0.18);
  transition: opacity 180ms ease;
}

.cart-drawer.open {
  pointer-events: auto;
  opacity: 1;
}

.cart-panel {
  position: absolute;
  right: 0;
  top: 0;
  width: min(440px, 100%);
  height: 100%;
  padding: 26px;
  background: var(--warm-white);
  box-shadow: var(--shadow);
  transform: translateX(100%);
  transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
  display: grid;
  grid-template-rows: auto 1fr auto auto auto auto;
  gap: 18px;
}

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

.cart-head,
.cart-row,
.cart-total {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.cart-head h2 {
  font-size: 34px;
  margin: 0;
}

.cart-items {
  overflow: auto;
}

.empty-cart {
  min-height: 220px;
  display: grid;
  align-content: center;
  gap: 18px;
  border: 1px solid var(--line);
  padding: 24px;
  background: rgba(251, 248, 241, 0.72);
}

.empty-cart p {
  font-family: var(--serif);
  font-size: 27px;
  line-height: 1.22;
  font-weight: 300;
  color: var(--ink);
  margin: 0;
}

.cart-row {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.cart-row strong {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 300;
}

.fulfillment {
  display: grid;
  gap: 8px;
  color: var(--soft-ink);
}

.fulfillment label {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
}

.fulfillment input {
  width: auto;
  min-height: auto;
}

.coupon input {
  margin-top: 2px;
}

.cart-total {
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.cart-total span {
  color: var(--soft-ink);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cart-total strong {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 300;
}

.checkout {
  width: 100%;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 25;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.74);
  color: var(--ink);
  backdrop-filter: blur(14px);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  transition: transform 320ms ease, background 320ms ease;
}

.whatsapp-float:hover {
  background: var(--warm-white);
  transform: translateY(-1px);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

.art-avorio {
  background-image: radial-gradient(ellipse at 50% 20%, #fffaf1 0 18%, transparent 19%), linear-gradient(155deg, #efe5d6, #fbf8f1 55%, #d8c7ad);
}

.art-cipria {
  background-image: radial-gradient(ellipse at 52% 20%, #f6d6cd 0 17%, transparent 18%), linear-gradient(160deg, #d9b8ad, #fffdf8 58%, #b9a697);
}

.art-tortora {
  background-image: radial-gradient(ellipse at 46% 20%, #c9bbb0 0 18%, transparent 19%), linear-gradient(155deg, #a99a8c, #f6efe5 58%, #2f2b28);
}

.art-nero {
  background-image: radial-gradient(ellipse at 52% 20%, #3b3734 0 17%, transparent 18%), linear-gradient(160deg, #262320, #f4eadf 58%, #d9b8ad);
}

.look-one {
  background-image: linear-gradient(150deg, #fbf8f1, #d8c7ad 48%, #8d8278);
}

.look-two {
  background-image: linear-gradient(150deg, #f4d3c9, #fffdf8 52%, #a99a8c);
}

.look-three {
  background-image: linear-gradient(150deg, #f5efe6, #aeb6bc 48%, #24211f);
}

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

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    padding: 20px;
    background: var(--ivory);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    gap: 0;
  }

  .nav a {
    min-height: 50px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--line);
  }

  .nav.open {
    display: flex;
  }

  .cart-button {
    justify-self: end;
  }

  .hero {
    min-height: 760px;
  }

  .hero-media {
    background-image:
      linear-gradient(180deg, rgba(251, 248, 241, 0.2), rgba(251, 248, 241, 0.92) 76%),
      url("assets/boutique-hero.png");
    background-position: center top;
  }

  .hero-content {
    width: calc(100% - 36px);
    margin: 0 auto;
    padding: 16vh 0 70px;
  }

  .section-heading,
  .shop-layout,
  .product-detail,
  .about,
  .boutique,
  .contact {
    grid-template-columns: 1fr;
  }

  .section-heading p:last-child {
    grid-column: 1;
    grid-row: auto;
  }

  .filters {
    position: static;
    padding: 16px;
  }

  .filters-head {
    margin-bottom: 0;
  }

  .filters-head button {
    display: inline-flex;
    align-items: center;
  }

  .filters-controls {
    display: none;
    grid-template-columns: repeat(2, 1fr);
    padding-top: 18px;
  }

  .filters.open .filters-controls {
    display: grid;
  }

  .product-grid,
  .lookbook-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lookbook-grid article:nth-child(2),
  .lookbook-grid article:nth-child(3) {
    margin-top: 0;
  }

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

@media (max-width: 620px) {
  .site-header {
    gap: 10px;
    padding: 13px 14px;
  }

  .brand img {
    width: 88px;
  }

  .cart-button {
    min-height: 34px;
    padding: 0 10px;
    font-size: 11px;
  }

  .hero {
    min-height: 690px;
  }

  h1 {
    font-size: 36px;
    line-height: 1.08;
  }

  .hero-logo {
    width: min(300px, 78vw);
    margin-bottom: 38px;
  }

  h2 {
    font-size: 34px;
    line-height: 1.12;
  }

  h3 {
    font-size: 26px;
  }

  .section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .filters,
  .product-grid,
  .lookbook-grid,
  .category-grid,
  .newsletter,
  .contact-cards {
    grid-template-columns: 1fr;
  }

  .filters.open .filters-controls {
    grid-template-columns: 1fr;
  }

  .product-card .product-art {
    aspect-ratio: 4 / 5;
  }

  .info-list li {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .map-card {
    min-height: 340px;
  }

  .map-overlay {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

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