:root {
  --color-white: #ffffff;
  --color-page: #f4f0e8;
  --color-text: #1f1b16;
  --color-muted: #74695f;
  --color-line: rgba(31, 27, 22, .14);
  --color-orange: #e73c2e;
  --color-red: #e73c2e;
  --color-footer-red: #bd2d43;
  --color-light-grey: #eeeeea;
  --color-detail-grey: #f0efec;
  --color-footer-text: #fff7ea;
  /* --container: min(1180px, calc(100vw - 48px)); */
  --container: min(1410px, calc(100vw - 48px));
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Montserrat", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #ffffff;
  color: var(--color-text);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.72;
}

body:has(.about-team) {
  background: var(--color-light-grey);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  user-drag: none;
  -webkit-user-drag: none;
  user-select: none;
  -webkit-user-select: none;
  pointer-events: auto;
  draggable: none;
}

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

.container {
  width: var(--container);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-line);
}

.header-inner {
  min-height: 118px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-block: 20px;
}

.brand {
  margin-left: 12px;
}

.brand img {
  width: 86px;
  height: 76px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.7vw, 42px);
  color: var(--color-text);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .03em;
}

.site-nav a,
.site-nav button {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  color: inherit;
  font: inherit;
}

.site-nav button {
  border: 0;
  background: transparent;
  cursor: pointer;
}

.site-nav a:hover,
.site-nav button:hover,
.site-nav a[aria-current="page"],
.site-nav button[aria-current="page"] {
  color: var(--color-orange);
}

.nav-item {
  position: relative;
}

.nav-has-submenu::after {
  content: "";
  width: 5px;
  height: 5px;
  margin-left: 8px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
}

.nav-submenu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  min-width: 190px;
  padding: 12px 0;
  visibility: hidden;
  opacity: 0;
  transform: translate(-50%, 8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  background: var(--color-white);
  border: 1px solid var(--color-line);
  box-shadow: 0 18px 45px rgba(31, 27, 22, .12);
}

.nav-item:hover .nav-submenu,
.nav-item.is-open .nav-submenu,
.nav-item:focus-within .nav-submenu {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, 0);
}

.nav-submenu a {
  display: flex;
  min-height: 0;
  padding: 8px 18px;
  color: var(--color-text);
  font-size: 14px;
  line-height: 1.35;
  white-space: nowrap;
}

.nav-order {
  min-width: 110px;
  min-height: 34px !important;
  justify-content: center;
  padding: 0 20px;
  background: var(--color-red);
  color: var(--color-white) !important;
  border-radius: 8px;
  font-size: 13px !important;
  font-weight: 700;
}

.nav-order:hover {
  filter: brightness(.94);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  padding: 9px;
}

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

.homepage-hero-media {
  position: relative;
  background: var(--color-white);
}

.homepage-hero-media img {
  width: 100%;
  min-height: 420px;
  max-height: min(1020px, 75vh);
  object-fit: cover;
}

.homepage-scroll-arrow {
  position: absolute;
  left: 50%;
  bottom: 22px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  transform: translateX(-50%);
}

.homepage-scroll-arrow img {
  width: 27px;
  height: 31px;
  min-height: 0;
  max-height: none;
  object-fit: contain;
}

.homepage-intro {
  width: 100%;
  padding: clamp(58px, 7vw, 104px) max(calc((100vw - 1180px) / 2), 24px);
  background: var(--color-white);
}

.homepage-intro h1 {
  max-width: 600px;
  margin: 0 0 34px;
  font-family: var(--sans);
  font-size: clamp(24px, 2.2vw, 34px);
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: 0;
}

.homepage-intro-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(34px, 6vw, 86px);
  max-width: 1180px;
  color: #3b3935;
  font-size: 15px;
  line-height: 1.7;
}

.homepage-intro-grid p,
.homepage-award p {
  margin: 0 0 18px;
}

.homepage-award {
  padding: clamp(42px, 5vw, 76px) 0;
  background: var(--color-light-grey);
}

.homepage-award-grid {
  display: grid;
  /*grid-template-columns: minmax(360px, 1.35fr) minmax(260px, .75fr); */
  grid-template-columns: minmax(360px, 1.5fr) minmax(260px, 1.15fr);
  /* gap: clamp(34px, 5vw, 74px); */
  gap: 15px;
  align-items: center;
}

.homepage-award-copy {
  order: 2;
  max-width: 390px;
}

.homepage-award h2 {
  margin: 0 0 18px;
  max-width: 360px;
  font-family: var(--sans);
  font-size: clamp(14px, 1.35vw, 19px);
  line-height: 1.25;
  font-weight: 800;
}

.homepage-award p {
  color: #57524b;
  font-size: 15px;
  line-height: 1.7;
}

.homepage-award-media {
  margin: 0;
  order: 1;
  min-height: 360px;
}

.homepage-award-media img {
  width: 100%;
  max-width: 100%;
  min-height: 360px;
  margin-inline: auto 0;
  object-fit: contain;
}

.homepage-collections {
  padding: clamp(60px, 7vw, 96px) 0;
  background: var(--color-white);
  overflow: hidden;
}

.homepage-collections h2 {
  margin: 0 0 44px;
  color: var(--color-red);
  font-family: var(--sans);
  font-size: clamp(22px, 2.2vw, 34px);
  font-weight: 500;
  line-height: 1;
  text-align: center;
  letter-spacing: .02em;
}

.homepage-carousel {
  position: relative;
}

.homepage-carousel-viewport {
  overflow: hidden;
}

.homepage-carousel-track {
  display: flex;
  transition: transform .45s ease;
  will-change: transform;
}

.collection-card {
  flex: 0 0 25%;
  padding: 0 14px;
}

.collection-card a {
  position: relative;
  display: block;
  overflow: hidden;
}

.collection-card-image {
  display: block;
  aspect-ratio: 1 / 1.38;
  background: #ffffff;
  overflow: hidden;
}

.collection-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collection-card-title {
  position: absolute;
  left: 50%;
  bottom: 22px;
  width: min-content;
  max-width: 92%;
  padding: 10px 18px;
  transform: translate(-50%, 12px);
  border-radius: 8px;
  background: rgba(255, 255, 255, .94);
  color: var(--color-text);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
  opacity: 1;
  transform: translate(-50%, 0);
  transition: opacity .22s ease, transform .22s ease;
}

.collection-card a:hover .collection-card-title,
.collection-card a:focus-visible .collection-card-title {
  opacity: 1;
  transform: translate(-50%, 0);
}

.homepage-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 34px;
}

.homepage-carousel-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(125, 32, 32, .28);
  cursor: pointer;
}

.homepage-carousel-dots button.is-active {
  background: var(--color-red);
}

.site-footer {
  background-color: var(--color-footer-red);
  background-position: center center;
  background-size: cover;
  background-blend-mode: multiply;
  color: var(--color-footer-text);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr .8fr 1fr .8fr;
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(38px, 5vw, 64px) 0 28px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.55;
}

.footer-grid h2 {
  margin: 0 0 18px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: initial;
}

.footer-grid p {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, .9);
}

.footer-grid nav {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, .9);
}

.footer-grid a:hover {
  color: var(--color-white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  padding: 20px 0 28px;
  color: rgba(255, 247, 234, .78);
  font-size: 13px;
  font-weight: 600;
}

.footer-bottom p {
  margin: 0;
}

.powered-by {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.powered-by a {
  display: inline-flex;
}

.powered-by img {
  width: 13px;
  height: 12px;
  object-fit: contain;
}

.page-main {
  background: var(--color-white);
}

.page-content {
  padding: clamp(70px, 9vw, 130px) 0;
}

.page-content h1 {
  margin: 0 0 34px;
  max-width: 720px;
  font-size: clamp(32px, 3.4vw, 52px);
  line-height: 1.12;
}

.page-content-grid {
  display: grid;
  grid-template-columns: minmax(0, .75fr) minmax(0, 1.25fr);
  gap: clamp(42px, 7vw, 96px);
  align-items: start;
}

.page-content-kicker {
  margin: 0;
  color: var(--color-red);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.page-content-copy {
  max-width: 760px;
  color: #3b3935;
}

.page-content-copy p {
  margin: 0 0 24px;
}

.about-page {
  background: var(--color-white);
}

.about-hero {
  background: #f8c94b;
  overflow: hidden;
}

.about-hero img {
  width: 100%;
  min-height: clamp(360px, 37vw, 760px);
  object-fit: cover;
  object-position: center center;
}

.about-materia {
  padding: clamp(82px, 8vw, 124px) 0 clamp(88px, 9vw, 138px);
  background: var(--color-white);
}

.about-materia-grid {
  display: grid;
  grid-template-columns: minmax(0, 60fr) minmax(300px, 40fr);
  gap: clamp(54px, 6.5vw, 92px);
  align-items: stretch;
  max-width: 1120px;
}

.about-materia-copy h1 {
  margin: 0 0 48px;
  color: #3b3935;
  font-size: clamp(30px, 2.55vw, 41px);
  font-weight: 500;
  line-height: 1.1;
  white-space: nowrap;
}

.about-materia-copy p {
  margin: 0 0 23px;
  color: #504d49;
  font-size: clamp(13px, 1.1vw, 16px);
  font-weight: 500;
  line-height: 1.5;
}

.about-materia-media {
  margin: 0;
  height: 100%;
}

.about-materia-media img {
  width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: cover;
  margin-inline: auto;
}

.about-team {
  padding: clamp(66px, 7vw, 94px) 0 clamp(94px, 10vw, 150px);
  background: var(--color-light-grey);
  text-align: center;
}

.about-team h2 {
  margin: 0 0 clamp(54px, 7vw, 88px);
  color: var(--color-red);
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: .02em;
}

.about-team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(34px, 5vw, 72px);
  max-width: 900px;
  margin-inline: auto;
}

.about-team-card {
  min-width: 0;
}

.about-team-card img {
  display: block;
  inline-size: min(100%, clamp(190px, 15vw, 246px));
  aspect-ratio: 1 / 1;
  height: auto;
  margin: 0 auto 28px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center center;
}

.about-team-card h3 {
  margin: 0 0 4px;
  color: #3b3935;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.25;
  white-space: nowrap;
}

.about-team-card p {
  margin: 0;
  color: #4d4945;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.25;
  white-space: nowrap;
}

.privacy-page {
  background: var(--color-white);
}

.privacy-content {
  padding: clamp(86px, 9vw, 150px) 0 clamp(100px, 10vw, 168px);
}

.privacy-container {
  max-width: 1060px;
}

.privacy-content h1 {
  margin: 0 0 clamp(64px, 7vw, 94px);
  color: var(--color-red);
  font-size: clamp(22px, 2.2vw, 34px);
  font-weight: 500;
  line-height: 1;
  text-align: center;
  text-transform: initial;
}

.privacy-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 5vw, 64px);
}

.privacy-grid--cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(68px, 8vw, 112px); }
.privacy-grid--cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(32px, 5vw, 64px); }
.privacy-grid--cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(24px, 3vw, 48px); }

.privacy-column {
  color: #504d49;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.45;
}

.privacy-column h2 {
  margin: 44px 0 22px;
  color: #3b3935;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.3;
}

.privacy-column p {
  margin: 0 0 25px;
}

.privacy-column a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.collections-page {
  background: var(--color-white);
}

.collections-listing {
  padding: clamp(58px, 6vw, 88px) 0 clamp(96px, 10vw, 154px);
}

.collections-container {
  max-width: 1400px;
}

.collections-listing h1 {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.collections-filters {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  margin: 0 0 clamp(86px, 9vw, 132px);
  color: #4b4743;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
}

.collections-filters a[aria-current="page"] {
  color: var(--color-text);
  font-weight: 800;
}

.collections-filters a:hover {
  color: var(--color-red);
}

.collections-grid {
  --collections-columns: 4;
  display: grid;
  grid-template-columns: repeat(var(--collections-columns), minmax(0, 1fr));
  gap: clamp(54px, 6vw, 84px) 28px;
}

.product-card-link {
  display: block;
}

.product-card-image {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1.45;
  overflow: hidden;
  background: #ffffff;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.6s ease-in-out;
}

a.product-card-link:hover img {
  transform: scale(1.05) !important;
}

.product-card-action {
  position: absolute;
  left: 50%;
  bottom: 22px;
  min-width: 152px;
  padding: 12px 20px;
  transform: translate(-50%, 12px);
  border-radius: 8px;
  background: rgba(255, 255, 255, .96);
  color: var(--color-text);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  opacity: 0;
  transition: opacity .22s ease, transform .22s ease;
}

.product-card:hover .product-card-action,
.product-card-link:hover .product-card-action,
.product-card-link:focus-visible .product-card-action {
  opacity: 1;
  transform: translate(-50%, 0);
}

.product-card-title {
  display: block;
  margin-top: 22px;
  color: #4b4743;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.25;
  text-align: center;
}

.collections-empty {
  max-width: 680px;
  margin: 0 auto;
  color: #4b4743;
  text-align: center;
}

.collections-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-top: clamp(76px, 8vw, 112px);
  color: #4b4743;
  font-size: 16px;
  font-weight: 700;
}

.collections-pagination a,
.collections-pagination span {
  display: inline-grid;
  min-width: 30px;
  height: 30px;
  place-items: center;
}

.collections-pagination a[aria-current="page"] {
  border-radius: 999px;
  background: var(--color-light-grey);
}

.product-details-page {
  background: var(--color-white);
}

.product-detail-section {
  background: var(--color-detail-grey);
  padding: clamp(54px, 5.8vw, 82px) 0 clamp(72px, 7vw, 104px);
}

.product-detail-categories {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 13px;
  margin-bottom: clamp(54px, 5.4vw, 82px);
  color: #4b4743;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.25;
}

.product-detail-categories a[aria-current="page"] {
  color: var(--color-text);
  font-weight: 800;
}

.product-detail-categories a:hover {
  color: var(--color-red);
}

.product-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(280px, .92fr);
  gap: clamp(50px, 6vw, 82px);
  align-items: stretch;
}

.product-detail-media {
  margin: 0;
  padding: clamp(20px, 2vw, 15px);
  background: var(--color-white);
  box-shadow: 10px 14px 28px rgba(31, 27, 22, .12);
}

.product-detail-media a {
  display: block;
}

.product-detail-media img {
  width: 100%;
  height: min(68vw, 900px);
  max-height: 900px;
  object-fit: cover;
  background: #ffffff;
}

.product-detail-info {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: space-between;
  gap: 56px;
  padding-top: 4px;
}

.product-detail-summary h1 {
  margin: 0 0 2px;
  color: #3b3935;
  font-size: clamp(25px, 2.1vw, 34px);
  font-weight: 500;
  line-height: 1.18;
}

.product-dimensions {
  margin: 0 0 46px;
  color: #4b4743;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.35;
}

.product-category {
  margin: 0 0 52px;
  color: #4b4743;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
}

.product-category strong {
  font-weight: 800;
}

.product-order-button {
  display: inline-flex;
  min-width: 196px;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 8px;
  background: var(--color-red);
  color: var(--color-white);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
}

.product-share h2 {
  margin: 0 0 2px;
  color: #3b3935;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.3;
}

.product-share nav {
  display: grid;
  justify-items: start;
  color: #4b4743;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
}

.product-share a:hover {
  color: var(--color-red);
}

.product-related-section {
  background: var(--color-white);
  padding: clamp(82px, 8vw, 126px) 0 clamp(106px, 10vw, 158px);
}

.product-related-container {
  max-width: 1120px;
}

.product-related-section h2 {
  margin: 0 0 clamp(58px, 6vw, 78px);
  color: var(--color-red);
  font-size: clamp(26px, 2.4vw, 36px);
  font-weight: 500;
  line-height: 1.15;
  text-align: center;
}

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

.contact-page {
  background: var(--color-white);
}

.contact-map-hero {
  position: relative;
  overflow: hidden;
  background: var(--color-light-grey);
}

.contact-map-hero img {
  width: 100%;
  height: clamp(420px, 42vw, 660px);
  object-fit: cover;
  object-position: center bottom;
}

.contact-section {
  padding: clamp(68px, 7vw, 106px) 0 clamp(126px, 10vw, 168px);
  background: var(--color-white);
  margin-bottom: 7vw;
}

.contact-layout {
  max-width: 840px;
}

.contact-layout h1 {
  margin: 0 0 clamp(36px, 4vw, 54px);
  color: #3b3935;
  font-size: clamp(24px, 2.2vw, 34px);
  font-weight: 500;
  line-height: 1.15;
  text-align: center;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 44px;
  padding: 0;
  background: var(--color-white);
  box-shadow: none;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #4b4743;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(31, 27, 22, .24);
  border-radius: 8px;
  padding: 16px 18px;
  background: var(--color-white);
  color: var(--color-text);
  font: inherit;
  font-size: 16px;
  line-height: 1.4;
}

.contact-form input[readonly] {
  background: #f8f8f6;
}

.contact-message,
.contact-form-bottom {
  grid-column: 1 / -1;
}

.contact-form textarea {
  min-height: 190px;
  resize: vertical;
}

.contact-form-bottom {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.contact-form-bottom-row {
  display: flex;
  align-items: center;
}

.contact-form-bottom-row--captcha {
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

.contact-required-note {
  margin: 0;
  font-size: 12px;
  font-weight: 400;
  color: #4b4743;
  text-transform: none;
  text-align: right;
  white-space: nowrap;
  align-self: flex-start;
}

.contact-form-bottom-row--submit {
  display: flex;
  align-items: center;
  gap: 45px;
}

.contact-privacy {
  display: flex !important;
  grid-template-columns: none !important;
  align-items: center;
  gap: 12px;
  font-weight: 500 !important;
  font-size: 11px !important;
  text-transform: none !important;
}

.contact-privacy input {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  padding: 0;
}

.contact-privacy a {
  font-weight: 800;
}

.contact-form button {
  width: 168px;
  min-height: 48px;
  flex-shrink: 0;
  border: 0;
  border-radius: 8px;
  padding: 12px 28px;
  background: var(--color-red);
  color: var(--color-white);
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  text-transform: initial;
  cursor: pointer;
}

/* ── Contact page footer art ─────────────────────────────────────────────────
   The section collapses to height:0. The img is absolutely positioned with
   transform:translate(-50%,50%) so it always sits exactly 50% above / 50%
   below the footer top edge at every screen size.
   footer-grid padding-top ≈ (image height / 2) + gap.
   Image aspect ratio ≈ 1.25 (height = width × 1.25).
   ────────────────────────────────────────────────────────────────────────── */
.contact-footer-art {
  position: relative;
  height: 0;
  overflow: visible;
  z-index: 10;
  pointer-events: none;
  margin-top: 90px;
}

.contact-footer-art img {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translate(-50%, 50%);
  width: 600px;
  height: auto;
  display: block;
}

.site-footer--has-art {
  position: relative;
}

.site-footer--has-art .footer-grid {
  padding-top: 120px;
  padding-bottom: 28px;
}

@media (min-width: 821px) and (max-width: 1024px) {
  .contact-footer-art img {
    width: calc(240px * 1.65);
  }
  .site-footer--has-art .footer-grid {
    padding-top: 170px;
  }
}



@media (max-width: 980px) {
  .collection-card {
    flex-basis: 50%;
  }

  .collections-grid,
  .product-related-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .product-detail-layout {
    grid-template-columns: 1fr;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .product-detail-media img {
    height: auto;
    max-height: none;
  }
}

@media (max-width: 820px) {
  .container {
    padding-inline: 18px;
  }

  .header-inner {
    min-height: 92px;
    padding-block: 14px;
  }

  .brand img {
    width: 72px;
    height: 64px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    padding: 18px 24px 26px;
    background: var(--color-white);
    border-bottom: 1px solid var(--color-line);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a,
  .site-nav button {
    min-height: 34px;
  }

  .nav-item.nav-item-collections button {
    padding-left: 0px;
  }

  .nav-order {
    width: fit-content;
  }

  /* Submenus are hidden by default on mobile and toggled via click */
  .nav-submenu {
    display: none;
    position: static;
    min-width: 0;
    padding: 0 0 0 14px;
    transform: none !important;
    border: 0;
    box-shadow: none;
    transition: none;
  }

  /* Show submenu only when explicitly toggled open (not focus-within which prevents close) */
  .nav-item.is-open .nav-submenu {
    display: block;
  }

  /* Rotate chevron arrow when open */
  .nav-item.is-open .nav-has-submenu::after {
    transform: rotate(225deg) translateY(1px);
  }

  /* Prevent desktop hover rule transform from applying on mobile */
  .nav-item:hover .nav-submenu {
    transform: none !important;
  }

  .homepage-intro-grid,
  .homepage-award-grid,
  .page-content-grid,
  .about-materia-grid,
  .privacy-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px 24px;
  }

  .about-materia-grid {
    gap: 42px;
    padding: 0px 15px;
  }

  .about-materia-copy h1,
  .about-team-card h3,
  .about-team-card p {
    white-space: normal;
  }

  .about-materia-media {
    height: auto;
  }

  .about-materia-media img {
    height: auto;
    width: min(100%, 520px);
  }

  .homepage-award-copy,
  .homepage-award-media {
    order: initial;
  }

  .homepage-hero-media img {
    min-height: 300px;
  }

  .collections-filters {
    flex-wrap: wrap;
    gap: 10px 14px;
    white-space: normal;
    overflow-x: visible;
    padding-bottom: 0;
    margin-bottom: clamp(48px, 6vw, 80px);
  }

  .collections-grid,
  .product-related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-detail-info {
    gap: 44px;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .contact-form-bottom-row--captcha {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .contact-required-note {
    text-align: left;
  }

  .contact-form-bottom-row--submit {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .contact-privacy {
    align-items: flex-start;
  }

  .contact-footer-art img {
    width: calc(200px * 1.65);
  }
  .site-footer--has-art .footer-grid {
    padding-top: 145px;
  }
}

@media (max-width: 560px) {
  :root {
    --container: min(100vw - 28px, 1180px);
  }

  body {
    font-size: 16px;
  }

  .collection-card {
    flex-basis: 100%;
  }

  .collections-grid,
  .product-related-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 6px;
  }

  .about-team-grid {
    grid-template-columns: 1fr;
  }

  .contact-map-hero img {
    height: 380px;
  }

  .contact-footer-art img {
    width: calc(220px * 1.65);
    bottom: 0px;
  }
  .site-footer--has-art .footer-grid {
    padding-top: 120px;
  }
}

.homepage-hero-media .homepage-scroll-arrow img {
  width: 27px;
  height: 31px;
  min-height: 0;
  max-height: none;
  object-fit: contain;
}

.container_home {
    margin-inline: auto;
    width: min(1400px, calc(100vw - 48px));
}

/* ── Scroll animations ──────────────────────────────────────────────────── */
[data-animate] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .55s ease, transform .55s ease;
}
[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}
[data-animate][data-delay="1"] { transition-delay: .1s; }
[data-animate][data-delay="2"] { transition-delay: .2s; }
[data-animate][data-delay="3"] { transition-delay: .3s; }
[data-animate][data-delay="4"] { transition-delay: .4s; }
[data-animate][data-delay="5"] { transition-delay: .5s; }

/* ── Contact status message ─────────────────────────────────────────────── */
.contact-status {
  padding: 14px 20px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 24px;
}
.contact-status--success {
  background: #eaf3de;
  color: #3b6d11;
  border: 1px solid #c0dd97;
}
.contact-status--error {
  background: #fcebeb;
  color: #a32d2d;
  border: 1px solid #f09595;
}
