/* RESET */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* VARIABLES 8th */
:root {
  --color-bg: #F5F0E8;
  --color-text: #1A1A14;
  --color-accent: #C8B99A;
  --color-muted: #6B6B63;

  --font-title: 'Playfair Display', serif;
  --font-body: 'Cormorant Garamond', serif;
  --font-serif: 'Cormorant Garamond', serif;
  --font-mono: 'DM Mono', monospace;

  --max-width: 1200px;
}

/* BASE */
html {
  scroll-behavior: smooth;
}

body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  line-height: 1.6;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  padding-bottom: 72px;
}

::selection {
  background: var(--color-text);
  color: var(--color-bg);
}

a {
  transition: opacity 0.2s ease;
}

/* CONTENEDOR */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
}

/* TITULOS */
h1,
h2,
h3 {
  font-family: var(--font-title);
  font-weight: 400;
}

/* TYPOGRAPHY SYSTEM */
.page-kicker,
.concept-kicker,
.page-eyebrow,
.how-page__note,
.how-step__number,
.cert-note {
  font-family: var(--font-mono);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.page-kicker {
  display: inline-block;
  margin-bottom: 2rem;
}

.brand-wordmark {
  display: inline-flex;
  align-items: center;
  vertical-align: baseline;
  line-height: 1;
}

.brand-wordmark img {
  display: block;
  width: auto;
  height: 1em;
}

.brand-wordmark--body {
  margin-right: 0.18em;
  transform: translateY(0.05em);
}

.brand-wordmark--body img {
  height: 0.76em;
}

.concept-hero h1,
.how-page__hero h1,
.cert-hero h1,
.contact-hero h1,
.concept-statement p,
.concept-closing p,
.how-step__content h2,
.how-page__statement p,
.how-page__closing h2,
.cert-item h2,
.cert-closing p {
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: -0.04em;
}

.concept-hero h1,
.how-page__hero h1,
.cert-hero h1,
.contact-hero h1 {
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.concept-statement p,
.how-page__statement p {
  line-height: 1.05;
}

.concept-closing p,
.how-step__content h2,
.how-page__closing h2,
.cert-item h2,
.cert-closing p {
  line-height: 1;
}

.concept-copy p,
.how-page__hero p,
.how-page__copy p,
.how-step__content p,
.page-intro,
.page-meta-text,
.content-section p,
.content-card p,
.content-list li {
  font-family: var(--font-body);
  color: var(--color-text);
}

/* SECCIONES */
section {
  padding: clamp(64px, 8vh, 96px) 0;
  scroll-margin-top: 110px;
}

section + section {
  border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.section-shell {
  width: 100%;
}

.section-shell--soft,
.section-shell--center {
  min-height: calc(100svh - 70px);
  display: flex;
  flex-direction: column;
}

.section-shell--soft {
  justify-content: flex-start;
}

.section-shell--center {
  justify-content: flex-start;
}

.section--flow .section-shell {
  min-height: auto;
}

.section-intro {
  max-width: 42rem;
}



/* NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  z-index: 1000;
  backdrop-filter: blur(6px);
  background: rgba(245, 240, 232, 0.9);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.nav-logo {
  font-family: var(--font-title);
  font-weight: 400;
  text-decoration: none;
  color: var(--color-text);
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
}

.nav-logo img {
  display: block;
  height: 38px;
  width: auto;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: clamp(14px, 2vw, 28px);
  white-space: nowrap;
  position: relative;
}

.nav-links a {
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text);
  opacity: 0.78;
  transition: opacity 0.35s ease;
  position: relative;
  display: inline-flex;
  align-items: center;
  width: fit-content;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.45s ease;
}

.nav-links a:hover {
  opacity: 1;
}

.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* HERO */
#hero {
  scroll-margin-top: 0;
  padding-top: 0;
}

.hero {
  min-height: calc(100svh - 70px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
  padding-bottom: 24px;
}

.hero-content {
  max-width: 700px;
  grid-column: 2;
  grid-row: 1;
}

.hero-tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-muted);
  display: block;
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
  max-width: 10ch;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--color-muted);
  margin-bottom: 0;
  max-width: 36rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 24px;
}

.hero-actions .text-link {
  font-size: 0.74rem;
  letter-spacing: 0.16em;
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image {
  width: 100%;
  min-height: 420px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 24px;
  grid-column: 1;
  grid-row: 1;
}

.hero-image::after {
  content: "Not just clothes";
  position: absolute;
  left: 24px;
  bottom: 24px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(26, 26, 20, 0.48);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 5;
}

/* BOTONES */
.btn-primary,
.btn-secondary,
.btn-secondary-grey {
  text-decoration: none;
  padding: 14px 28px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  transition: all 0.2s ease;
}

.btn-primary {
  background: var(--color-text);
  color: white;
  border: 1px solid transparent;
}

.btn-secondary {
  border: 1px solid var(--color-text);
  color: var(--color-text);
  background: transparent;
}

.btn-secondary-grey {
  background: transparent;
  border: 1px solid rgba(26, 26, 20, 1);
  color: rgba(26, 26, 20, 1);
  backdrop-filter: blur(2px);
}

.btn-primary:hover {
  opacity: 0.92;
}

.btn-secondary:hover {
  background: var(--color-text);
  color: var(--color-bg);
}

.btn-secondary-grey:hover {
  border-color: rgba(26, 26, 20, 0.35);
  color: rgba(26, 26, 20, 0.9);
  background: rgba(26, 26, 20, 0.03);
}

/* HOW IT WORKS */
.how {
  text-align: left;
}

.section-intro {
  margin-bottom: 60px;
}

.section-intro h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.section-intro h2.page-kicker {
  margin-bottom: 1rem;
  font-family: var(--font-mono);
  font-size: 0.98rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
  color: var(--color-muted);
}

.section-intro p {
  color: var(--color-muted);
  font-size: 1rem;
  max-width: 560px;
  line-height: 1.7;
}

.steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.step {
  padding-right: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  opacity: 0;
  transform: translateY(18px);
  animation: columnReveal 0.8s ease forwards;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.step:nth-child(2) {
  animation-delay: 0.12s;
}

.step:nth-child(3) {
  animation-delay: 0.24s;
}

.step:nth-child(4) {
  animation-delay: 0.36s;
}

.step-number {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--color-muted);
  display: block;
  margin-bottom: 10px;
}

.step h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.step p {
  color: var(--color-muted);
  font-size: 0.95rem;
}

.step:hover {
  transform: translateY(-4px);
}

/* ABOUT */
.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.about-item {
  padding-right: 16px;
  padding: 1.75rem;
  border: 1px solid rgba(26, 26, 20, 0.1);
  background: rgba(255, 255, 255, 0.28);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(18px);
  animation: columnReveal 0.8s ease forwards;
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.35s ease,
    background 0.35s ease,
    box-shadow 0.35s ease,
    opacity 0.35s ease;
}

.about-item::after {
  content: "";
  position: absolute;
  inset: auto 1.75rem 0.9rem 1.75rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(26, 26, 20, 0.18), rgba(26, 26, 20, 0));
  transform: scaleX(0.35);
  transform-origin: left;
  transition: transform 0.45s ease, opacity 0.35s ease;
  opacity: 0.55;
}

.about-item:nth-child(2) {
  animation-delay: 0.12s;
}

.about-item:nth-child(3) {
  animation-delay: 0.24s;
}

.about-item h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.about-item p {
  color: var(--color-muted);
  font-size: 1rem;
}

.about-item:hover {
  border-color: rgba(26, 26, 20, 0.18);
  background: rgba(255, 255, 255, 0.4);
  box-shadow: 0 16px 34px rgba(26, 26, 20, 0.06);
}

.about-item:hover::after {
  transform: scaleX(1);
  opacity: 0.9;
}

/* COLLECTION */
.collection {
  text-align: left;
}

.products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.product {
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease;
  opacity: 0;
  transform: translateY(18px);
  animation: columnReveal 0.8s ease forwards;
}

.product:nth-child(2) {
  animation-delay: 0.12s;
}

.product:nth-child(3) {
  animation-delay: 0.24s;
}

.product:hover {
  transform: translateY(-4px);
}

.product-image-link {
  display: block;
  text-decoration: none;
}

.product-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  background: #e9e2d8;
  border: 1px solid rgba(0, 0, 0, 0.06);
  overflow: hidden;
  position: relative;
  margin-bottom: 18px;
}

.product-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: opacity 0.4s ease, transform 0.4s ease, filter 0.35s ease;
}

.img-primary {
  opacity: 1;
  z-index: 1;
}

.img-secondary {
  opacity: 0;
  z-index: 2;
}

.product:hover .img-primary {
  opacity: 0;
  transform: scale(1.02);
}

.product:hover .img-secondary {
  opacity: 1;
  transform: scale(1.02);
}

.product-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product h3 {
  font-size: 1.3rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.product p {
  font-size: 0.98rem;
  color: var(--color-muted);
  line-height: 1.7;
  max-width: 30ch;
}

.product-link {
  display: inline-block;
  width: fit-content;
  margin-top: 4px;
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text);
  opacity: 0.72;
  position: relative;
  padding-bottom: 6px;
}

.product-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: rgba(26, 26, 20, 0.35);
  transition: background 0.2s ease, transform 0.2s ease;
}

.product:hover .product-link,
.product-link:hover {
  opacity: 1;
}

.product:hover .product-link::after,
.product-link:hover::after {
  background: rgba(26, 26, 20, 0.65);
}

.collection-more {
  margin-top: 48px;
  display: flex;
  justify-content: center;
}

/* CERTIFICATIONS */
.cert {
  padding-right: 20px;
  padding: 1.75rem;
  border: 1px solid rgba(26, 26, 20, 0.1);
  background: rgba(255, 255, 255, 0.28);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(18px);
  animation: columnReveal 0.8s ease forwards;
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.35s ease,
    background 0.35s ease,
    box-shadow 0.35s ease,
    opacity 0.35s ease;
}

.cert::after {
  content: "";
  position: absolute;
  inset: auto 1.75rem 0.9rem 1.75rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(26, 26, 20, 0.18), rgba(26, 26, 20, 0));
  transform: scaleX(0.35);
  transform-origin: left;
  transition: transform 0.45s ease, opacity 0.35s ease;
  opacity: 0.55;
}

.cert:nth-child(2) {
  animation-delay: 0.12s;
}

.cert:nth-child(3) {
  animation-delay: 0.24s;
}

.cert:nth-child(4) {
  animation-delay: 0.36s;
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.cert h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.cert-watermark {
  position: absolute;
  right: 20%;
  top: 50%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.05;
  transform: translate(50%, -50%) rotate(7deg) scale(2.35);
  transform-origin: center;
}

.cert-watermark img {
  display: block;
  width: auto;
  max-width: 160px;
  max-height: 84px;
}

.cert-watermark--gots,
.cert-watermark--oeko {
  right: 10%;
}

.cert p {
  font-size: 0.95rem;
  color: var(--color-muted);
  position: relative;
  z-index: 1;
}

.cert:hover {
  border-color: rgba(26, 26, 20, 0.18);
  background: rgba(255, 255, 255, 0.4);
  box-shadow: 0 16px 34px rgba(26, 26, 20, 0.06);
}

.cert:hover::after {
  transform: scaleX(1);
  opacity: 0.9;
}

/* PHILOSOPHY */
.philosophy {
  text-align: center;
}

.philosophy-content {
  max-width: 700px;
  margin: 0 auto;
}

.philosophy-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 0.85fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
  width: 100%;
}

.philosophy-lead {
  text-align: left;
  opacity: 0;
  transform: translateY(18px);
  animation: columnReveal 0.8s ease forwards;
}

.philosophy-copy {
  text-align: left;
  opacity: 0;
  transform: translateY(18px);
  animation: columnReveal 0.8s ease forwards;
  animation-delay: 0.12s;
}

.philosophy h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.philosophy-copy p {
  color: var(--color-muted);
  margin-bottom: 16px;
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 34rem;
}


/* CTA */
.cta {
  text-align: center;
}

.cta h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 30px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  max-width: 12ch;
  margin-left: auto;
  margin-right: auto;
}

/* CONTACT */
.contact {
  text-align: center;
}

.contact .section-intro {
  margin-left: auto;
  margin-right: auto;
}

.contact-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  opacity: 0;
  transform: translateY(18px);
  animation: columnReveal 0.8s ease forwards;
  animation-delay: 0.12s;
}

.contact-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  row-gap: 12px;
}

.contact-mail,
.contact-links a {
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text);
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.contact-links a:hover {
  opacity: 1;
}

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

.contact .section-intro p {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* SHARED TEXT LINKS */
.text-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  color: inherit;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  opacity: 0.78;
  transition: opacity 0.35s ease;
}

.text-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.45s ease;
}

.text-link:hover {
  opacity: 1;
}

.text-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.about-more {
  margin-top: 2.5rem;
  text-align: center;
}

.section-link-row {
  margin-top: 2.5rem;
  text-align: center;
}

.contact .section-link-row {
  width: 100%;
  display: flex;
  justify-content: center;
}

#about .about-more,
#how .section-link-row,
#collection .section-link-row,
#certs .section-link-row,
#philosophy .section-link-row {
  text-align: left;
}

#about,
#how,
#collection,
#certs,
#philosophy,
#contact {
  padding-top: clamp(52px, 6vh, 76px);
  padding-bottom: clamp(40px, 5vh, 60px);
}

#about .section-shell,
#how .section-shell,
#collection .section-shell,
#certs .section-shell,
#philosophy .section-shell,
#contact .section-shell {
  min-height: auto;
}

#about {
  position: relative;
}

@keyframes columnReveal {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* FOOTER */
.footer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  z-index: 1050;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding: 14px 0 16px;
  margin-top: 0;
  background: rgba(245, 240, 232, 0.88);
  backdrop-filter: blur(8px);
}

.footer-content {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-direction: row;
  text-align: center;
}

.footer-brand {
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.footer-brand img {
  height: 28px;
  width: auto;
  display: block;
}

.footer-copy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.footer-copy--split {
  width: 100%;
  justify-content: space-between;
  gap: 2rem;
}

.footer-copy--split > span {
  flex: 1 1 0;
}

.footer-copy--split > span:first-child {
  text-align: left;
}

.footer-copy--split > span:last-child {
  text-align: right;
}

.footer-variation {
  color: var(--color-muted);
}

.footer-text-track {
  display: inline-flex;
  flex-wrap: wrap;
}

.footer-char {
  display: inline-block;
  opacity: 0.72;
  transform: translateY(0);
  transition:
    opacity 0.34s ease,
    color 0.34s ease,
    transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(var(--char-index) * 0.012s);
}

.footer:hover .footer-char,
.footer-copy:hover .footer-char {
  opacity: 1;
  color: var(--color-text);
  transform: translateY(-1px);
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 78px;
  z-index: 1100;
  border: 1px solid rgba(26, 26, 20, 0.12);
  background: rgba(245, 240, 232, 0.72);
  color: var(--color-text);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 12px 14px;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
  backdrop-filter: blur(6px);
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  border-color: rgba(26, 26, 20, 0.22);
}

/* GENERAL MOBILE */
@media (max-width: 900px) {
  .navbar {
    padding-top: 20px;
  }

  .nav-container {
    height: auto;
    min-height: 70px;
    padding-top: 14px;
    padding-bottom: 14px;
    flex-direction: column;
    gap: 14px;
  }

  .nav-links {
    width: 100%;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .hero {
    min-height: auto;
    padding-top: 40px;
    padding-bottom: 40px;
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-content,
  .hero-visual {
    width: 100%;
    min-width: 0;
  }

  .hero-content,
  .hero-image {
    grid-column: auto;
    grid-row: auto;
  }

  .hero-image {
    order: -1;
  }

  .hero-title {
    font-size: clamp(2.2rem, 10vw, 3.4rem);
    max-width: none;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-visual {
    order: -1;
  }

  .hero-image {
    height: 260px;
  }

  .hero-image img {
    display: block;
    max-width: 100%;
    height: 100%;
  }

  #hero {
    padding-top: 24px;
  }

  .about-grid,
  .steps,
  .products,
  .cert-grid,
  .philosophy-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  section {
    padding: 72px 0;
  }

  .section-shell--soft,
  .section-shell--center {
    min-height: auto;
  }

  .section-intro {
    margin-bottom: 40px;
  }

  .section-intro h2,
  .philosophy h2,
  .cta h2 {
    line-height: 1.1;
  }

  body {
    font-size: 1rem;
  }

  .container {
    padding: 0 20px;
  }

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

  .btn-primary,
  .btn-secondary,
  .btn-secondary-grey {
    width: 100%;
  }

  .contact {
    padding-bottom: 40px;
  }

  .contact-content {
    gap: 16px;
  }

  .contact-mail {
    font-size: clamp(1.4rem, 8vw, 2rem);
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .contact-links {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .footer {
    padding: 12px 0 14px;
  }

  .footer-content {
    gap: 12px;
  }

  .product p {
    max-width: none;
  }

  .philosophy-lead,
  .philosophy-copy {
    text-align: center;
  }

  .philosophy-copy p {
    margin-left: auto;
    margin-right: auto;
  }

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

  .img-secondary {
    display: none;
  }

  .collection-more {
    justify-content: center;
  }

  .about-more {
    text-align: left;
  }

  .section-link-row {
    text-align: left;
  }

  .back-to-top {
    right: 16px;
    bottom: 70px;
  }

  .footer-copy {
    font-size: 0.58rem;
    letter-spacing: 0.12em;
  }

  .footer-copy--split {
    gap: 1rem;
  }

  .footer-copy--split > span:first-child,
  .footer-copy--split > span:last-child {
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .footer-char {
    transition: none;
  }

  .about-item {
    opacity: 1;
    transform: none;
    animation: none;
    transition: none;
  }

  .step,
  .product,
  .cert,
  .philosophy-lead,
  .philosophy-copy,
  .contact-content {
    opacity: 1;
    transform: none;
    animation: none;
    transition: none;
  }

}
