:root {
  --ink: #1a1916;
  --ink-soft: #34312b;
  --paper: #f2eee5;
  --paper-deep: #e5ddcd;
  --bamboo: #c7a15f;
  --bamboo-light: #e4c98e;
  --red: #e43b2f;
  --line: rgba(26, 25, 22, 0.18);
  --serif: "Italiana", "Times New Roman", serif;
  --sans: "DM Sans", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  background: var(--red);
  color: #fff;
}

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

button {
  color: inherit;
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 100;
  background: #fff;
  padding: 0.7rem 1rem;
}

.skip-link:focus {
  top: 1rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  width: 100%;
  height: 88px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 4vw;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: background 300ms ease, color 300ms ease, height 300ms ease;
}

.site-header.scrolled {
  height: 72px;
  background: rgba(242, 238, 229, 0.95);
  color: var(--ink);
  border-color: var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  width: fit-content;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: var(--red);
  font-family: var(--serif);
  font-size: 1.6rem;
  line-height: 1;
}

.brand-name {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.brand-name em {
  font-family: var(--serif);
  font-size: 1.15em;
  font-weight: 400;
  text-transform: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 3.5rem);
  font-size: 0.77rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-nav a,
.header-cta {
  position: relative;
}

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

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

.header-cta {
  justify-self: end;
  padding-bottom: 0.3rem;
  border-bottom: 1px solid currentColor;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 760px;
  height: 100svh;
  display: flex;
  align-items: center;
  padding: 8rem 7vw 5rem;
  color: #fff;
  background: #16140f;
  isolation: isolate;
  overflow: hidden;
}

.hero-backdrop,
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-backdrop {
  background: url("assets/windrise-hero.jpg") 58% center / cover no-repeat;
  transform: scale(1.03);
  animation: hero-settle 1800ms cubic-bezier(0.2, 0.75, 0.25, 1) forwards;
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(13, 12, 10, 0.94) 0%, rgba(13, 12, 10, 0.68) 44%, rgba(13, 12, 10, 0.08) 78%),
    linear-gradient(0deg, rgba(10, 9, 8, 0.58) 0%, transparent 40%);
}

@keyframes hero-settle {
  to { transform: scale(1); }
}

.hero-content {
  width: min(760px, 70vw);
}

.eyebrow {
  margin: 0 0 1.5rem;
  color: #705c39;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow.light {
  color: var(--bamboo-light);
}

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

h1,
h2 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.025em;
}

h1 {
  max-width: 760px;
  margin-bottom: 2rem;
  font-size: clamp(4.4rem, 8.6vw, 9.25rem);
}

h1 em,
h2 em {
  color: var(--bamboo-light);
  font-weight: 400;
}

.hero-copy {
  max-width: 520px;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1rem, 1.35vw, 1.2rem);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.8rem 1.45rem;
  border: 1px solid currentColor;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 220ms ease, color 220ms ease, transform 220ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-light {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}

.button-light:hover {
  background: var(--bamboo-light);
  border-color: var(--bamboo-light);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding-bottom: 0.3rem;
  border-bottom: 1px solid rgba(26, 25, 22, 0.45);
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.text-link.light {
  border-color: rgba(255, 255, 255, 0.5);
}

.text-link span {
  transition: transform 200ms ease;
}

.text-link:hover span {
  transform: translate(3px, -3px);
}

.hero-detail {
  position: absolute;
  right: 5vw;
  bottom: 7.5rem;
  display: flex;
  align-items: flex-end;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
}

.hero-detail strong {
  color: var(--bamboo-light);
  font-family: var(--serif);
  font-size: 4.6rem;
  font-weight: 400;
  line-height: 0.8;
}

.hero-detail span {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  line-height: 1.5;
  text-transform: uppercase;
}

.scroll-cue {
  position: absolute;
  left: 4vw;
  bottom: 2.7rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.63rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.scroll-cue i {
  display: block;
  width: 70px;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
}

.section {
  position: relative;
  padding: clamp(6rem, 11vw, 10rem) 7vw;
}

.section-number {
  position: absolute;
  top: clamp(6rem, 11vw, 10rem);
  left: 3vw;
  color: #8a7960;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
}

.intro {
  min-height: 720px;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 9vw;
  align-items: center;
}

.intro h2,
.section-top h2,
.craft h2,
.founder h2,
.promise h2,
.contact h2 {
  margin-bottom: 0;
  font-size: clamp(3.5rem, 6.8vw, 7.2rem);
}

.intro h2 em,
.craft h2 em,
.promise h2 em {
  color: #a37330;
}

.intro-copy {
  max-width: 520px;
  padding-top: 5rem;
}

.lead {
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.3vw, 2.25rem);
  line-height: 1.25;
}

.intro-copy > p:not(.lead) {
  color: #625d54;
}

.intro-copy .text-link {
  margin-top: 1rem;
}

.dark-section {
  background: var(--ink);
  color: #fff;
}

.section-top {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 5rem;
  margin-bottom: 4.5rem;
}

.section-top > p {
  max-width: 390px;
  color: rgba(255, 255, 255, 0.58);
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.collection-card {
  position: relative;
  min-height: 540px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.collection-card:last-child {
  border-right: 0;
}

.card-art {
  position: absolute;
  inset: 0;
  background: linear-gradient(150deg, #373329, #1d1c18);
  overflow: hidden;
  transition: transform 500ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.collection-card:hover .card-art {
  transform: scale(1.025);
}

.collection-card--concert .card-art {
  background: linear-gradient(145deg, #ad7d32, #58401d);
}

.collection-card--custom .card-art {
  background: linear-gradient(155deg, #57251d, #241513);
}

.flute {
  position: absolute;
  display: block;
  width: 620px;
  height: 40px;
  border-radius: 20px;
  background:
    radial-gradient(circle at 20% 50%, #1c160d 0 5px, transparent 6px),
    radial-gradient(circle at 35% 50%, #1c160d 0 5px, transparent 6px),
    radial-gradient(circle at 50% 50%, #1c160d 0 5px, transparent 6px),
    radial-gradient(circle at 65% 50%, #1c160d 0 5px, transparent 6px),
    radial-gradient(circle at 80% 50%, #1c160d 0 5px, transparent 6px),
    linear-gradient(180deg, #e1bc70, #9e6b29 53%, #d19d4f);
  box-shadow: 0 16px 25px rgba(0, 0, 0, 0.35);
}

.flute::before,
.flute::after {
  content: "";
  position: absolute;
  top: -2px;
  width: 5px;
  height: 44px;
  background: repeating-linear-gradient(90deg, #9d3428 0 2px, #e7b359 2px 3px);
}

.flute::before { left: 52px; }
.flute::after { right: 52px; }

.flute-one {
  left: -140px;
  top: 30%;
  transform: rotate(-29deg);
}

.flute-two {
  left: -90px;
  top: 44%;
  transform: rotate(-29deg);
  filter: brightness(0.78);
}

.flute-three {
  left: -65px;
  top: 30%;
  width: 670px;
  height: 46px;
  transform: rotate(66deg);
}

.flute-four {
  left: -80px;
  top: 29%;
  transform: rotate(-42deg);
}

.sound-ring {
  position: absolute;
  width: 270px;
  height: 270px;
  border: 1px solid rgba(229, 192, 120, 0.22);
  border-radius: 50%;
}

.ring-one {
  top: 0;
  right: -100px;
}

.ring-two {
  top: 60px;
  right: -160px;
  width: 390px;
  height: 390px;
}

.card-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: end;
  gap: 1rem;
  padding: 2rem;
  background: linear-gradient(0deg, rgba(10, 9, 8, 0.95), transparent);
}

.card-index,
.card-content p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.card-content p {
  margin-bottom: 0.15rem;
}

.card-content h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 2.8rem;
  font-weight: 400;
  line-height: 1;
}

.card-content a {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  transition: color 200ms ease, background 200ms ease;
}

.card-content a:hover {
  background: var(--paper);
  color: var(--ink);
}

.catalogue-note {
  max-width: 520px;
  margin: 2.2rem 0 0 auto;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.86rem;
}

.craft {
  background:
    linear-gradient(rgba(72, 58, 37, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(72, 58, 37, 0.05) 1px, transparent 1px),
    var(--paper);
  background-size: 32px 32px;
}

.craft-title {
  max-width: 850px;
  margin-bottom: 6rem;
}

.process-list {
  margin-left: 18vw;
  border-top: 1px solid var(--line);
}

.process-item {
  display: grid;
  grid-template-columns: 50px 150px 1fr;
  align-items: center;
  gap: 2rem;
  min-height: 190px;
  border-bottom: 1px solid var(--line);
}

.process-item > span {
  align-self: start;
  padding-top: 2rem;
  color: #887458;
  font-size: 0.65rem;
}

.process-symbol {
  position: relative;
  width: 90px;
  height: 90px;
  justify-self: center;
}

.bamboo-symbol {
  width: 22px;
  height: 100px;
  border-radius: 12px;
  background: linear-gradient(90deg, #a6752e, #e4c17c, #a6752e);
  transform: rotate(32deg);
}

.bamboo-symbol::before,
.bamboo-symbol::after {
  content: "";
  position: absolute;
  left: -2px;
  width: 26px;
  height: 4px;
  background: #77501f;
}

.bamboo-symbol::before { top: 25px; }
.bamboo-symbol::after { bottom: 24px; }

.measure-symbol {
  border: 1px solid #96723c;
  border-radius: 50%;
}

.measure-symbol::before,
.measure-symbol::after {
  content: "";
  position: absolute;
  background: #96723c;
}

.measure-symbol::before {
  top: 44px;
  left: -18px;
  width: 126px;
  height: 1px;
}

.measure-symbol::after {
  top: -18px;
  left: 44px;
  width: 1px;
  height: 126px;
}

.ear-symbol {
  border: 2px solid #96723c;
  border-left-color: transparent;
  border-radius: 60% 45% 55% 40%;
  transform: rotate(-12deg);
}

.ear-symbol::after {
  content: "";
  position: absolute;
  inset: 23px;
  border: 1px solid #96723c;
  border-left-color: transparent;
  border-radius: 50%;
}

.process-item h3 {
  margin-bottom: 0.4rem;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
}

.process-item p {
  max-width: 550px;
  margin-bottom: 0;
  color: #686158;
}

.craft-quote {
  max-width: 960px;
  margin: 9rem auto 0;
  text-align: center;
}

.craft-quote p {
  margin-bottom: 1.5rem;
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4.5vw, 5rem);
  line-height: 1.15;
}

.craft-quote cite {
  color: #806e54;
  font-size: 0.68rem;
  font-style: normal;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.founder {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 850px;
  background: #24221e;
  color: #fff;
}

.founder-visual {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 45%, rgba(206, 159, 76, 0.28), transparent 38%),
    linear-gradient(145deg, #3d3528, #171613);
}

.founder-monogram {
  position: absolute;
  left: 50%;
  top: 50%;
  color: rgba(223, 189, 124, 0.14);
  font-family: var(--serif);
  font-size: min(55vw, 40rem);
  line-height: 0.7;
  transform: translate(-50%, -50%);
}

.founder-flute {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 780px;
  height: 55px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 25% 50%, #1d160e 0 7px, transparent 8px),
    radial-gradient(circle at 37% 50%, #1d160e 0 7px, transparent 8px),
    radial-gradient(circle at 49% 50%, #1d160e 0 7px, transparent 8px),
    radial-gradient(circle at 61% 50%, #1d160e 0 7px, transparent 8px),
    radial-gradient(circle at 73% 50%, #1d160e 0 7px, transparent 8px),
    linear-gradient(180deg, #dcb568, #8a5a22 55%, #c79143);
  box-shadow: 0 30px 50px rgba(0, 0, 0, 0.45);
  transform: translate(-50%, -50%) rotate(-58deg);
}

.founder-years {
  position: absolute;
  right: 2.5rem;
  bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.founder-copy {
  align-self: center;
  padding: 7vw;
}

.founder h2 {
  margin-bottom: 3rem;
}

.founder-copy > p:not(.eyebrow):not(.lead) {
  color: rgba(255, 255, 255, 0.58);
}

.founder-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.founder-stats strong,
.founder-stats span {
  display: block;
}

.founder-stats strong {
  color: var(--bamboo-light);
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 400;
}

.founder-stats span {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.promise {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
}

.promise-grid {
  padding-top: 3rem;
}

.promise-grid article {
  display: grid;
  grid-template-columns: 45px 1fr;
  padding: 2.3rem 0;
  border-top: 1px solid var(--line);
}

.promise-grid article:last-child {
  border-bottom: 1px solid var(--line);
}

.promise-grid span {
  grid-row: 1 / 3;
  color: #8b7556;
  font-size: 0.65rem;
}

.promise-grid h3 {
  margin-bottom: 0.5rem;
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 400;
}

.promise-grid p {
  margin-bottom: 0;
  color: #6a6359;
}

.contact {
  position: relative;
  min-height: 720px;
  display: grid;
  place-items: center;
  padding: 7rem 7vw;
  background: #6d2d25;
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.contact-inner {
  position: relative;
  z-index: 2;
  max-width: 850px;
}

.contact h2 {
  margin-bottom: 2rem;
}

.contact h2 em {
  color: var(--bamboo-light);
}

.contact-inner > p:not(.eyebrow) {
  max-width: 520px;
  margin: 0 auto 2.5rem;
  color: rgba(255, 255, 255, 0.65);
}

.contact-rings,
.contact-rings i {
  position: absolute;
  inset: 0;
  margin: auto;
}

.contact-rings i {
  display: block;
  width: 440px;
  height: 440px;
  border: 1px solid rgba(231, 199, 137, 0.13);
  border-radius: 50%;
}

.contact-rings i:nth-child(2) { width: 700px; height: 700px; }
.contact-rings i:nth-child(3) { width: 960px; height: 960px; }
.contact-rings i:nth-child(4) { width: 1220px; height: 1220px; }

.site-footer {
  padding: 5rem 7vw 1.5rem;
  background: var(--ink);
  color: #fff;
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 4.5rem;
}

.footer-brand {
  margin-bottom: 1.2rem;
}

.footer-main p,
.footer-main address {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.86rem;
}

.footer-main nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.82rem;
}

.footer-main address {
  font-style: normal;
}

.footer-main address strong {
  display: block;
  margin-bottom: 0.8rem;
  color: var(--bamboo-light);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

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

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: -1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1.6rem;
    padding: 8rem 8vw 4rem;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--serif);
    font-size: clamp(2.3rem, 8vw, 4rem);
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 250ms ease, visibility 250ms ease;
  }

  .site-nav.open {
    opacity: 1;
    visibility: visible;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: grid;
    gap: 7px;
    justify-self: end;
    width: 42px;
    padding: 10px 0;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle span:not(.sr-only) {
    display: block;
    width: 28px;
    height: 1px;
    margin-left: auto;
    background: currentColor;
    transition: transform 220ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(-4px) rotate(-45deg);
  }

  .menu-open .site-header {
    color: var(--ink);
  }

  .hero-content {
    width: min(760px, 85vw);
  }

  .hero-detail {
    display: none;
  }

  .intro {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .intro-copy {
    max-width: 650px;
    padding: 0;
  }

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

  .collection-card {
    min-height: 430px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .collection-card:last-child {
    border-bottom: 0;
  }

  .process-list {
    margin-left: 0;
  }

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

  .founder-visual {
    min-height: 600px;
  }

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

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-main > div:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .site-header {
    height: 72px;
    padding: 0 5vw;
  }

  .brand-name {
    font-size: 0.78rem;
  }

  .brand-mark {
    width: 32px;
    height: 32px;
  }

  .hero {
    min-height: 720px;
    padding: 7rem 6vw 4rem;
    align-items: flex-end;
  }

  .hero-backdrop {
    background-position: 64% center;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(12, 11, 9, 0.96) 0%, rgba(12, 11, 9, 0.68) 58%, rgba(12, 11, 9, 0.15) 100%),
      linear-gradient(90deg, rgba(12, 11, 9, 0.35), transparent);
  }

  .hero-content {
    width: 100%;
    padding-bottom: 2.5rem;
  }

  h1 {
    font-size: clamp(3.75rem, 19vw, 5.8rem);
  }

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

  .scroll-cue {
    display: none;
  }

  .section {
    padding: 6rem 6vw;
  }

  .section-number {
    display: none;
  }

  .intro {
    min-height: auto;
  }

  .intro h2,
  .section-top h2,
  .craft h2,
  .founder h2,
  .promise h2,
  .contact h2 {
    font-size: clamp(3.1rem, 15vw, 5.2rem);
  }

  .section-top {
    align-items: flex-start;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
  }

  .collection-card {
    min-height: 390px;
  }

  .card-content {
    padding: 1.5rem;
  }

  .process-item {
    grid-template-columns: 30px 85px 1fr;
    gap: 0.75rem;
    min-height: 170px;
  }

  .process-symbol {
    transform: scale(0.72);
  }

  .bamboo-symbol {
    transform: rotate(32deg) scale(0.72);
  }

  .process-item p {
    font-size: 0.84rem;
    line-height: 1.45;
  }

  .craft-quote {
    margin-top: 6rem;
  }

  .founder-visual {
    min-height: 480px;
  }

  .founder-copy {
    padding: 6rem 6vw;
  }

  .founder-stats {
    grid-template-columns: 1fr;
  }

  .contact {
    min-height: 650px;
    padding: 6rem 6vw;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-main > div:first-child {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
