
:root {
  --paper: #f5f0e6;
  --paper-light: #fbf8f1;
  --ink: #173c2a;
  --ink-soft: #486052;
  --leaf: #466748;
  --leaf-dark: #244b35;
  --sage: #afc39d;
  --coral: #ef6b4c;
  --sun: #f2c255;
  --lavender: #cfc1d9;
  --line: rgba(23, 60, 42, 0.2);
  --shadow: 0 24px 80px rgba(35, 55, 38, 0.14);
}

[hidden] {
  display: none !important;
}

body.drawer-open {
  overflow: hidden;
}

.hero-image,
.product-image,
.cover-image {
  height: 100%;
  inset: 0;
  position: absolute;
  width: 100%;
}

.product-image-lower {
  object-position: 50% 68%;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 13%, rgba(242, 194, 85, 0.12), transparent 24rem),
    var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

button {
  color: inherit;
}

::selection {
  background: var(--sun);
  color: var(--ink);
}

.site-header {
  align-items: center;
  background: rgba(245, 240, 230, 0.9);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  min-height: 88px;
  padding: 0 4vw;
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(16px);
}

.brand {
  align-items: center;
  display: inline-flex;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  font-weight: 700;
  gap: 0.7rem;
  letter-spacing: 0.08em;
  justify-self: start;
}

.brand-logo {
  border: 1px solid rgba(23, 60, 42, 0.12);
  border-radius: 50%;
  height: 52px;
  object-fit: cover;
  width: 52px;
}

.site-header nav {
  align-items: center;
  display: flex;
  gap: clamp(1.4rem, 3.5vw, 3.8rem);
}

.site-header nav a {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  position: relative;
  text-transform: uppercase;
}

.site-header nav a::after {
  background: var(--coral);
  bottom: -0.6rem;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
  width: 100%;
}

.site-header nav a:hover::after,
.site-header nav a:focus-visible::after {
  transform: scaleX(1);
}

.selection-button {
  align-items: center;
  background: transparent;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  font-size: 0.75rem;
  font-weight: 800;
  gap: 0.65rem;
  justify-self: end;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.selection-button span {
  align-items: center;
  background: var(--ink);
  border-radius: 50%;
  color: white;
  display: inline-flex;
  font-size: 0.7rem;
  height: 30px;
  justify-content: center;
  width: 30px;
}

.hero {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  min-height: calc(100vh - 88px);
  overflow: hidden;
}

.hero-copy {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 7rem 6vw 6rem;
  position: relative;
  z-index: 2;
}

.eyebrow {
  align-items: center;
  display: flex;
  font-size: 0.7rem;
  font-weight: 800;
  gap: 0.75rem;
  letter-spacing: 0.17em;
  margin: 0 0 1.5rem;
  text-transform: uppercase;
}

.eyebrow::before {
  background: var(--coral);
  border-radius: 50%;
  content: "";
  height: 8px;
  width: 8px;
}

.hero h1,
.section-heading h2,
.atelier-copy h2,
.custom-copy h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.055em;
  margin: 0;
}

.hero h1 {
  font-size: clamp(3.4rem, 6vw, 7.2rem);
  line-height: 0.93;
  max-width: 9ch;
}

.hero h1 em,
.custom-copy h2 em {
  color: var(--coral);
  font-weight: 400;
}

.hero-intro {
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  line-height: 1.75;
  margin: 2rem 0 0;
  max-width: 35rem;
}

.hero-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
  margin-top: 2.35rem;
}

.button {
  align-items: center;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  font-size: 0.77rem;
  font-weight: 800;
  gap: 1.1rem;
  justify-content: center;
  letter-spacing: 0.09em;
  min-height: 54px;
  padding: 0.25rem 1.5rem;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  box-shadow: 0 12px 30px rgba(23, 60, 42, 0.2);
  transform: translateY(-2px);
}

.button-primary {
  background: var(--ink);
  color: white;
}

.button-primary span,
.button-coral span {
  font-size: 1.25rem;
  font-weight: 400;
}

.button-coral {
  background: var(--coral);
  color: #fff;
}

.text-link {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--ink);
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0 0 0.3rem;
}

.hero-note {
  align-items: center;
  display: flex;
  gap: 1rem;
  margin-top: 3rem;
}

.hero-note p {
  color: var(--ink-soft);
  font-size: 0.78rem;
  line-height: 1.5;
  margin: 0;
}

.hero-note strong {
  color: var(--ink);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.mini-plant {
  align-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  display: flex;
  font-size: 1.15rem;
  height: 43px;
  justify-content: center;
  transform: rotate(-10deg);
  width: 43px;
}

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

.hero-image-wrap {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.hero-image {
  filter: saturate(0.86) contrast(0.97);
  object-fit: cover;
  object-position: 52% 58%;
}

.hero-image-wrap::after {
  background: linear-gradient(180deg, rgba(18, 55, 35, 0.04), rgba(18, 55, 35, 0.3));
  content: "";
  inset: 0;
  position: absolute;
}

.hero-sticker {
  align-items: center;
  background: var(--sun);
  border-radius: 50%;
  bottom: 8%;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  height: 148px;
  justify-content: center;
  left: 7%;
  line-height: 1.1;
  position: absolute;
  transform: rotate(-9deg);
  width: 148px;
  z-index: 2;
}

.hero-sticker span {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.hero-sticker strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  font-weight: 600;
  margin: 0.2rem 0;
}

.sun-shape {
  background: var(--coral);
  border-radius: 50%;
  height: 220px;
  opacity: 0.8;
  position: absolute;
  right: -86px;
  top: -80px;
  width: 220px;
}

.promise-bar {
  background: var(--ink);
  color: white;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, 1fr);
  padding: 1.5rem 6vw;
}

.promise-bar p {
  align-items: center;
  display: flex;
  font-size: 0.72rem;
  font-weight: 700;
  gap: 1rem;
  letter-spacing: 0.09em;
  margin: 0;
  text-transform: uppercase;
}

.promise-bar span {
  color: var(--sun);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
  font-style: italic;
}

.section-pad {
  padding: 8rem 6vw;
}

.collection {
  background: var(--paper-light);
}

.section-heading {
  align-items: end;
  display: grid;
  gap: 3rem;
  grid-template-columns: 1.2fr 0.8fr;
}

.section-heading h2,
.atelier-copy h2,
.custom-copy h2 {
  font-size: clamp(3rem, 5.2vw, 6.1rem);
  line-height: 0.98;
}

.section-heading > p {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.8;
  margin: 0 0 0.5rem;
  max-width: 34rem;
}

.filter-row {
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 0.5rem;
  margin: 4.5rem 0 2.5rem;
  overflow-x: auto;
  padding-bottom: 1rem;
}

.filter-row button {
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  flex: 0 0 auto;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 0.7rem 1rem;
  text-transform: uppercase;
}

.filter-row button.active,
.filter-row button:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: white;
}

.product-grid {
  display: grid;
  gap: clamp(1.5rem, 2.2vw, 2.7rem);
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-card {
  min-width: 0;
}

.product-image-wrap {
  aspect-ratio: 0.82;
  background: #d9dfd1;
  margin-bottom: 1.4rem;
  overflow: hidden;
  position: relative;
}

.product-image {
  object-fit: cover;
  transition: transform 400ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

.product-number {
  align-items: center;
  background: var(--paper-light);
  border-radius: 50%;
  display: flex;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.8rem;
  height: 38px;
  justify-content: center;
  left: 0.8rem;
  position: absolute;
  top: 0.8rem;
  width: 38px;
  z-index: 2;
}

.product-price-badge {
  background: var(--sun);
  bottom: 1rem;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
  left: 1rem;
  padding: 0.65rem 0.8rem;
  position: absolute;
  z-index: 2;
}

.quick-add {
  align-items: center;
  background: var(--ink);
  border: 0;
  border-radius: 50%;
  bottom: 1rem;
  color: white;
  cursor: pointer;
  display: flex;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.6rem;
  height: 48px;
  justify-content: center;
  opacity: 0;
  position: absolute;
  right: 1rem;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease, background 180ms ease;
  width: 48px;
  z-index: 2;
}

.product-card:hover .quick-add,
.quick-add:focus-visible {
  opacity: 1;
  transform: translateY(0);
}

.quick-add:hover {
  background: var(--coral);
}

.product-category {
  color: var(--coral);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin: 0 0 0.55rem;
  text-transform: uppercase;
}

.product-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 2vw, 2.2rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  margin: 0;
}

.product-description {
  color: var(--ink-soft);
  font-size: 0.87rem;
  line-height: 1.65;
  margin: 0.8rem 0 1rem;
}

.product-footer {
  align-items: center;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  padding-top: 0.9rem;
}

.product-footer span {
  color: var(--ink-soft);
  font-size: 0.66rem;
  line-height: 1.4;
}

.product-footer button {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--ink);
  cursor: pointer;
  font-size: 0.67rem;
  font-weight: 800;
  padding: 0 0 0.2rem;
  text-transform: uppercase;
}

.atelier {
  background: var(--leaf-dark);
  color: white;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.atelier-photo {
  min-height: 780px;
  overflow: hidden;
  position: relative;
}

.cover-image {
  object-fit: cover;
}

.atelier-photo::after {
  background: linear-gradient(180deg, transparent 55%, rgba(18, 42, 27, 0.68));
  content: "";
  inset: 0;
  position: absolute;
}

.atelier-photo > p {
  bottom: 2rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
  font-style: italic;
  left: 2.5rem;
  margin: 0;
  position: absolute;
  z-index: 2;
}

.atelier-photo > p span {
  color: var(--sun);
}

.atelier-copy {
  align-self: center;
  padding: 7rem clamp(3rem, 7vw, 8rem);
}

.atelier-copy .eyebrow::before {
  background: var(--sun);
}

.atelier-lead {
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.03rem;
  line-height: 1.75;
  margin: 2rem 0 2.5rem;
  max-width: 34rem;
}

.atelier-copy ol {
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  list-style: none;
  margin: 0;
  padding: 0;
}

.atelier-copy li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  display: grid;
  gap: 1.2rem;
  grid-template-columns: 2.5rem 1fr;
  padding: 1.3rem 0;
}

.atelier-copy li > span {
  color: var(--sun);
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
}

.atelier-copy li strong {
  display: block;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.35rem;
  text-transform: uppercase;
}

.atelier-copy li p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.8rem;
  line-height: 1.5;
  margin: 0;
}

.custom {
  align-items: center;
  background: var(--lavender);
  display: grid;
  gap: 7vw;
  grid-template-columns: 0.9fr 1.1fr;
  overflow: hidden;
  position: relative;
}

.custom-art {
  height: 470px;
  position: relative;
}

.custom-pot {
  align-items: center;
  background: var(--coral);
  border-radius: 24px 24px 110px 110px;
  bottom: 0;
  color: white;
  display: flex;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 3vw, 3rem);
  font-weight: 700;
  height: 230px;
  justify-content: center;
  left: 50%;
  letter-spacing: 0.05em;
  position: absolute;
  transform: translateX(-50%);
  width: min(330px, 76vw);
  z-index: 3;
}

.custom-pot::after {
  background: rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  content: "";
  height: 24px;
  left: 46px;
  position: absolute;
  top: 36px;
  width: 24px;
}

.leaf {
  background: var(--leaf);
  border-radius: 85% 12% 82% 18%;
  bottom: 190px;
  height: 245px;
  left: 50%;
  position: absolute;
  transform-origin: bottom center;
  width: 112px;
}

.leaf-one {
  transform: translateX(-95%) rotate(-31deg);
}

.leaf-two {
  background: var(--leaf-dark);
  height: 285px;
  transform: translateX(-45%) rotate(1deg);
}

.leaf-three {
  background: #688063;
  transform: translateX(-2%) rotate(32deg);
}

.custom-copy {
  max-width: 49rem;
  position: relative;
  z-index: 3;
}

.custom-copy > p:not(.eyebrow) {
  color: rgba(23, 60, 42, 0.76);
  line-height: 1.8;
  margin: 2rem 0;
  max-width: 35rem;
}

footer {
  align-items: center;
  background: var(--ink);
  color: white;
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr auto 1fr;
  padding: 4rem 6vw 2rem;
}

.footer-brand {
  color: var(--sun);
  font-size: 1.5rem;
}

footer > p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  margin: 0;
  text-align: center;
  text-transform: uppercase;
}

footer > div {
  display: flex;
  gap: 1.25rem;
  justify-content: flex-end;
}

footer > div a,
footer > div button {
  background: transparent;
  border: 0;
  color: white;
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0;
  text-transform: uppercase;
}

footer small {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.66rem;
  grid-column: 1 / -1;
  padding-top: 1.4rem;
  text-align: center;
}

.drawer-layer {
  inset: 0;
  position: fixed;
  z-index: 100;
}

.drawer-backdrop {
  background: rgba(10, 30, 18, 0.56);
  border: 0;
  cursor: pointer;
  inset: 0;
  position: absolute;
  width: 100%;
  backdrop-filter: blur(5px);
}

.selection-drawer {
  background: var(--paper-light);
  bottom: 0;
  box-shadow: -30px 0 80px rgba(11, 35, 20, 0.22);
  max-width: 610px;
  overflow-y: auto;
  padding: 2.5rem;
  position: absolute;
  right: 0;
  top: 0;
  width: min(100%, 610px);
}

.drawer-header {
  align-items: flex-start;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  padding-bottom: 1.4rem;
}

.drawer-header .eyebrow {
  margin-bottom: 0.6rem;
}

.drawer-header h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.5rem;
  font-weight: 500;
  margin: 0;
}

.drawer-header h2 span {
  color: var(--coral);
  font-size: 1rem;
  vertical-align: top;
}

.drawer-header > button {
  align-items: center;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.6rem;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.selected-items {
  border-bottom: 1px solid var(--line);
  padding: 1.2rem 0;
}

.selected-item {
  display: grid;
  gap: 1rem;
  grid-template-columns: 76px 1fr;
  padding: 0.7rem 0;
}

.selected-thumb {
  aspect-ratio: 1;
  background: var(--sage);
  overflow: hidden;
  position: relative;
}

.selected-item strong,
.selected-item > div > span {
  display: block;
}

.selected-item > div > .selected-price {
  color: var(--ink);
  font-weight: 800;
}

.selected-item strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
}

.selected-item > div > span {
  color: var(--ink-soft);
  font-size: 0.7rem;
  margin-top: 0.2rem;
}

.quantity {
  align-items: center;
  display: flex;
  gap: 0.75rem;
  margin-top: 0.65rem;
}

.quantity button {
  align-items: center;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  height: 25px;
  justify-content: center;
  width: 25px;
}

.quantity span {
  font-size: 0.8rem;
  font-weight: 700;
}

.empty-selection {
  border-bottom: 1px solid var(--line);
  padding: 2.5rem 1rem;
  text-align: center;
}

.selection-total {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  padding: 1rem 0;
}

.selection-total span {
  color: var(--ink-soft);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.selection-total strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
}

.empty-selection > span {
  color: var(--coral);
  display: block;
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.empty-selection h3,
.request-form h3,
.request-ready h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 500;
  margin: 0;
}

.empty-selection p {
  color: var(--ink-soft);
  font-size: 0.82rem;
  line-height: 1.6;
  margin: 0.65rem auto 0;
  max-width: 22rem;
}

.request-form {
  padding-top: 1.8rem;
}

.request-form h3 {
  margin-bottom: 1.3rem;
}

.field-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr 1fr;
}

.request-form label {
  display: block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.request-form .optional {
  color: var(--ink-soft);
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.form-honeypot {
  left: -9999px;
  position: absolute;
}

.request-form input,
.request-form textarea {
  background: white;
  border: 1px solid var(--line);
  border-radius: 0;
  color: var(--ink);
  display: block;
  font-size: 0.9rem;
  font-weight: 400;
  margin-top: 0.5rem;
  outline: none;
  padding: 0.95rem;
  resize: vertical;
  text-transform: none;
  transition: border 150ms ease, box-shadow 150ms ease;
  width: 100%;
}

.request-form input:focus,
.request-form textarea:focus {
  border-color: var(--leaf);
  box-shadow: 0 0 0 3px rgba(70, 103, 72, 0.12);
}

.submit-request {
  width: 100%;
}

.submit-request:disabled {
  cursor: wait;
  opacity: 0.65;
}

.form-note {
  color: var(--ink-soft);
  font-size: 0.68rem;
  margin: 0.8rem 0 0;
  text-align: center;
}

.form-error {
  background: rgba(166, 56, 47, 0.1);
  color: #8a2d26;
  font-size: 0.76rem;
  line-height: 1.5;
  margin: 0.85rem 0 0;
  padding: 0.75rem;
}

.request-ready {
  padding: 5rem 1rem;
  text-align: center;
}

.request-ready > span {
  align-items: center;
  background: var(--leaf);
  border-radius: 50%;
  color: white;
  display: flex;
  font-size: 1.4rem;
  height: 56px;
  justify-content: center;
  margin: 0 auto 1.2rem;
  width: 56px;
}

.request-ready p {
  color: var(--ink-soft);
  font-size: 0.86rem;
  line-height: 1.7;
  margin: 0.85rem auto 1.4rem;
  max-width: 25rem;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--sun);
  outline-offset: 3px;
}

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

  .site-header nav {
    display: none;
  }

  .hero-copy {
    padding-left: 4vw;
    padding-right: 4vw;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 3rem;
  }

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

  .atelier-copy {
    padding: 5rem 4vw;
  }
}

@media (max-width: 800px) {
  .site-header {
    min-height: 72px;
    padding: 0 1rem;
  }

  .brand-logo {
    height: 43px;
    width: 43px;
  }

  .brand span {
    font-size: 1rem;
  }

  .selection-button {
    font-size: 0;
  }

  .selection-button::before {
    content: "Sélection";
    font-size: 0.64rem;
  }

  .selection-button span {
    height: 27px;
    width: 27px;
  }

  .hero {
    display: flex;
    flex-direction: column;
  }

  .hero-copy {
    padding: 5rem 1.25rem 4rem;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 15vw, 5.2rem);
    max-width: 10ch;
  }

  .hero-visual {
    min-height: 78vw;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .promise-bar {
    grid-template-columns: 1fr;
    padding: 1.6rem 1.25rem;
  }

  .promise-bar p:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    padding-bottom: 1rem;
  }

  .section-pad {
    padding: 5.5rem 1.25rem;
  }

  .section-heading {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .section-heading h2,
  .atelier-copy h2,
  .custom-copy h2 {
    font-size: clamp(3rem, 13vw, 4.8rem);
  }

  .filter-row {
    margin-top: 3rem;
  }

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

  .atelier-photo {
    min-height: 115vw;
  }

  .atelier-copy {
    padding: 5rem 1.25rem;
  }

  .custom {
    gap: 4rem;
    grid-template-columns: 1fr;
  }

  .custom-art {
    height: 400px;
    order: 2;
  }

  .custom-copy {
    order: 1;
  }

  footer {
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 3.5rem 1.25rem 2rem;
    text-align: center;
  }

  footer > div {
    justify-content: center;
  }
}

@media (max-width: 560px) {
  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-image-wrap {
    aspect-ratio: 0.94;
  }

  .hero-sticker {
    bottom: 5%;
    height: 115px;
    width: 115px;
  }

  .hero-sticker strong {
    font-size: 1.2rem;
  }

  .selection-drawer {
    padding: 1.4rem;
  }

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

  .drawer-header h2 {
    font-size: 2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
