@font-face {
  font-family: "Alcubierre";
  src: url("assets/fonts/Alcubierre.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

: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);
  --display: "Alcubierre", "Cormorant Garamond", serif;
  --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;
}

body.modal-open {
  overflow: hidden;
}

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 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);
}

.language-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--soft-ink);
  font-size: 11px;
  letter-spacing: 0.1em;
}

.language-switcher a {
  padding-bottom: 3px;
  border-bottom: 1px solid transparent;
}

.language-switcher a + a::before {
  content: "|";
  margin-right: 8px;
  color: rgba(36, 33, 31, 0.32);
}

.language-switcher a.active {
  color: var(--ink);
  border-color: currentColor;
}

.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: calc(100svh - 72px);
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--ivory);
}

.hero-media {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.25)),
    url("public/images/hero-outfit-neck-down.jpg");
  background-size: cover;
  background-position: center center;
  background-color: #efe8dc;
}

.hero-content {
  position: relative;
  width: min(600px, calc(100% - 36px));
  padding: 0 0 8vh;
  margin: 0 auto;
  text-align: center;
  transform: translateY(-5%);
}

.hero-logo {
  width: min(205px, 42vw);
  margin-bottom: 44px;
  filter: drop-shadow(0 8px 16px rgba(36, 33, 31, 0.035));
}

.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(--display);
  font-weight: 400;
  line-height: 1.16;
  letter-spacing: 0.045em;
}

h1 {
  max-width: 400px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.2;
  margin-bottom: 30px;
  margin-left: auto;
  margin-right: auto;
}

.hero-title {
  display: grid;
  gap: 4px;
  letter-spacing: 0.055em;
}

.hero-title span {
  display: block;
}

h2 {
  font-size: clamp(31px, 4.4vw, 52px);
  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;
}

.hero .button {
  min-height: 0;
  padding: 10px 18px;
  background: rgba(255, 253, 248, 0.54);
  color: var(--ink);
  border-color: rgba(36, 33, 31, 0.36);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.08em;
}

.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(--display);
  font-size: clamp(24px, 3.2vw, 36px);
  line-height: 1.36;
  font-weight: 400;
  letter-spacing: 0.035em;
  color: var(--ink);
}

.shop-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 4vw, 48px);
  align-items: start;
}

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

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

.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;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.category-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: -20px;
}

.category-links button {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.52);
  color: var(--soft-ink);
  cursor: pointer;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: border-color 280ms ease, color 280ms ease, transform 280ms ease;
}

.category-links button:hover {
  color: var(--ink);
  border-color: var(--line-strong);
  transform: translateY(-1px);
}

.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(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 44px);
}

.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:hover .product-art {
  border-color: var(--line-strong);
  transform: translateY(-2px) scale(1.006);
}

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

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

.product-art img,
.look-image img,
.gallery-main img,
.gallery-thumbs img,
.boutique-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.product-card .product-art img,
.gallery-main img,
.gallery-thumbs img,
.look-image img,
.boutique-visual img {
  transition: transform 520ms ease, filter 420ms ease;
}

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

.product-badge {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 2;
  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: minmax(280px, 0.72fr) minmax(420px, 1fr);
  gap: clamp(34px, 6vw, 92px);
  align-items: center;
}

.about-copy {
  max-width: 500px;
}

.about-copy p:not(.eyebrow) {
  color: var(--soft-ink);
  line-height: 1.92;
  margin-bottom: 18px;
}

.about > img {
  width: 100%;
  justify-self: end;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center 52%;
  border: 1px solid var(--line);
}

.lookbook-grid h3 {
  font-family: var(--display);
  font-size: clamp(23px, 2.2vw, 29px);
  font-weight: 400;
  line-height: 1.22;
  letter-spacing: 0.045em;
}

.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:hover .look-image img,
.product-card:hover .product-art img {
  transform: scale(1.025);
}

.product-cta {
  width: max-content;
  min-height: 38px;
  margin-top: 6px;
  padding: 0 15px;
  background: transparent;
}

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

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

.boutique-feature {
  position: relative;
  min-height: min(760px, 78svh);
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
}

.boutique-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(36, 33, 31, 0.18);
}

.boutique-feature img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88) contrast(0.98) brightness(0.98);
}

.boutique-feature-copy {
  width: min(720px, calc(100% - 36px));
  text-align: center;
  color: var(--warm-white);
  padding: clamp(70px, 10vw, 130px) 0;
}

.boutique-feature-copy .eyebrow,
.boutique-feature-copy p {
  color: rgba(255, 253, 248, 0.88);
}

.boutique-feature-copy h2 {
  margin-bottom: 18px;
  text-shadow: 0 10px 34px rgba(36, 33, 31, 0.22);
}

.boutique-feature-copy p:not(.eyebrow) {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.boutique-feature-copy p + p {
  margin-top: -8px;
}

.inside-silly {
  display: grid;
  grid-template-columns: minmax(240px, 0.38fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: end;
  background: var(--warm-white);
}

.inside-copy {
  max-width: 440px;
}

.inside-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: clamp(12px, 1.8vw, 22px);
}

.inside-grid img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  border: 1px solid var(--line);
}

.inside-main {
  grid-row: 1 / 3;
  min-height: clamp(520px, 62vw, 760px);
}

.boutique-feature-copy .button-light {
  margin-top: 18px;
  background: rgba(255, 253, 248, 0.82);
  color: var(--ink);
}

.silly-details {
  background: var(--warm-white);
}

.details-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr 1fr;
  gap: clamp(20px, 3vw, 48px);
  align-items: center;
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.details-grid img {
  width: 100%;
  height: clamp(360px, 38vw, 540px);
  object-fit: cover;
  border: 1px solid var(--line);
}

.details-grid img:nth-child(1) {
  object-position: center 18%;
}

.details-grid img:nth-child(2) {
  width: 94%;
  height: clamp(500px, 46vw, 690px);
  justify-self: center;
  align-self: center;
  object-position: center 48%;
}

.details-grid img:nth-child(3) {
  object-position: center 62%;
}

.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;
}

.boutique-visual {
  display: grid;
  grid-template-rows: minmax(320px, 1fr) 170px;
  background: var(--warm-white);
}

.boutique-visual > img {
  min-height: 320px;
  filter: saturate(0.88) contrast(0.98) brightness(1.01);
}

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

.map-overlay {
  position: absolute;
  left: 22px;
  bottom: 194px;
  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;
}

.newsletter-consent,
.form-feedback {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--soft-ink);
  font-size: 12px;
  line-height: 1.5;
}

.newsletter-consent,
.check-row {
  display: flex;
  align-items: flex-start;
  gap: 9px;
}

.newsletter-consent input,
.check-row input {
  width: 16px;
  min-width: 16px;
  height: 16px;
  margin-top: 2px;
}

.form-feedback:not(:empty) {
  padding: 10px 12px;
  border-left: 2px solid var(--ink);
  background: rgba(251, 248, 241, 0.72);
}

.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);
}

.site-footer {
  display: grid;
  grid-template-columns: 180px 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 34px var(--page-pad);
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.site-footer img {
  width: 150px;
}

.site-footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
}

.site-footer a {
  font-size: 11px;
  text-transform: uppercase;
}

.site-footer p {
  max-width: 310px;
  margin: 0;
  color: var(--soft-ink);
  font-size: 11px;
  line-height: 1.6;
}

.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);
  align-items: start;
}

.cart-row img {
  width: 62px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 1px solid var(--line);
  flex: 0 0 auto;
}

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

.cart-row p {
  margin-bottom: 8px;
  font-size: 12px;
}

.quantity-control {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
}

.quantity-control button {
  min-height: 28px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--soft-ink);
  cursor: pointer;
  padding: 0 9px;
  font-size: 11px;
}

.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-subtotal,
.cart-shipping {
  padding-top: 0;
  border-top: 0;
}

.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%;
}

.checkout.disabled {
  opacity: 0.42;
  cursor: not-allowed;
}

.product-modal,
.checkout-modal,
.order-confirmation {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: clamp(16px, 3vw, 34px);
}

.product-modal[hidden],
.checkout-modal[hidden],
.order-confirmation[hidden] {
  display: none;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(36, 33, 31, 0.32);
  backdrop-filter: blur(8px);
}

.product-modal-card,
.checkout-card,
.confirmation-card {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  max-height: min(860px, calc(100svh - 32px));
  overflow: auto;
  background: var(--warm-white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.product-modal-card {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.75fr);
}

.product-modal-gallery {
  min-height: 620px;
  background: #eee4d7;
}

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

.product-modal-copy,
.checkout-card,
.confirmation-card {
  padding: clamp(24px, 4vw, 46px);
}

.modal-close {
  position: absolute;
  right: 16px;
  top: 16px;
  z-index: 2;
  min-height: 36px;
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.82);
  color: var(--ink);
  cursor: pointer;
  padding: 0 12px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-choices,
.checkout-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 20px 0;
}

.compact {
  margin: 20px 0;
}

.checkout-card {
  width: min(980px, 100%);
}

.checkout-form {
  display: grid;
  gap: 14px;
}

.payment-note {
  padding: 14px 16px;
  border: 1px solid var(--line);
  background: rgba(251, 248, 241, 0.72);
  color: var(--soft-ink);
  font-size: 13px;
  line-height: 1.6;
}

.checkout-summary {
  margin: 8px 0;
  padding: 18px;
  border: 1px solid var(--line);
  background: rgba(251, 248, 241, 0.62);
}

.checkout-summary h3 {
  margin-bottom: 16px;
}

.checkout-summary p,
.confirmation-summary p {
  margin: 0 0 8px;
  font-size: 13px;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 10px;
  margin-top: 10px;
  border-top: 1px solid var(--line);
  color: var(--soft-ink);
}

.summary-line.total {
  color: var(--ink);
  font-size: 18px;
}

.confirmation-card {
  width: min(640px, 100%);
}

.confirmation-card h2 {
  font-size: clamp(31px, 4vw, 48px);
}

.confirmation-card a {
  border-bottom: 1px solid currentColor;
}

.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 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;
  }

  .language-switcher {
    justify-self: end;
  }

  .hero {
    min-height: 760px;
  }

  .hero-media {
    background-image:
      linear-gradient(rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.25)),
      url("public/images/hero-outfit-neck-down.jpg");
    background-size: cover;
    background-position: center center;
  }

  .hero-content {
    width: calc(100% - 36px);
    margin: 0 auto;
    padding: 0 0 8vh;
    transform: translateY(-5%);
  }

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

  .inside-main {
    grid-row: auto;
    min-height: 420px;
  }

  .inside-grid img {
    min-height: 320px;
  }

  .about {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
  }

  .about > img {
    justify-self: stretch;
  }

  .details-grid img:nth-child(2) {
    width: 100%;
    height: clamp(420px, 72vw, 620px);
    transform: none;
  }

  .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;
  }

  .language-switcher {
    grid-column: 2 / 4;
    justify-self: end;
    font-size: 10px;
  }

  .hero {
    min-height: calc(100svh - 61px);
  }

  h1 {
    font-size: clamp(28px, 8vw, 36px);
    line-height: 1.2;
  }

  .hero-logo {
    width: min(178px, 48vw);
    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,
  .product-choices,
  .checkout-grid,
  .lookbook-grid,
  .category-grid,
  .inside-grid,
  .details-grid,
  .newsletter,
  .contact-cards {
    grid-template-columns: 1fr;
  }

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

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

  .product-modal,
  .checkout-modal,
  .order-confirmation {
    padding: 0;
    align-items: end;
  }

  .product-modal-card,
  .checkout-card,
  .confirmation-card {
    width: 100%;
    max-height: 92svh;
    border-left: 0;
    border-right: 0;
  }

  .product-modal-gallery {
    min-height: 420px;
  }

  .boutique-feature {
    min-height: 620px;
  }

  .boutique-feature-copy {
    align-self: end;
    padding-bottom: 72px;
  }

  .inside-main,
  .inside-grid img {
    min-height: 300px;
  }

  .details-grid img,
  .details-grid img:nth-child(2) {
    width: 100%;
    height: clamp(340px, 118vw, 520px);
  }

  .about > img {
    width: 100%;
    justify-self: stretch;
    aspect-ratio: 16 / 11;
  }

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

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

  .boutique-visual {
    grid-template-rows: 320px 150px;
  }

  .map-card iframe {
    height: 150px;
  }

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

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

@media (max-width: 760px) {
  .site-footer {
    grid-template-columns: 1fr;
    align-items: start;
  }
}
