:root {
  --pink: #E4A0B7;
  --ink: #1A1A1A;
  --gold: #C9A227;
  --white: #FFFFFF;
  --serif: Georgia, 'Times New Roman', serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --container: 1240px;
  --header-height: 88px;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--white);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

img {
  display: block;
  width: 100%;
  max-width: 100%;
}

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

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

button,
select {
  cursor: pointer;
}

h1,
h2,
h3,
p,
figure,
dl,
dd {
  margin: 0;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.05;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 12px 18px;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-140%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  transition: background 250ms ease, border-color 250ms ease, height 250ms ease;
}

.site-header.is-scrolled {
  height: 74px;
  border-color: rgb(228 160 183 / 18%);
  background: rgb(26 26 26 / 94%);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  min-height: 48px;
  flex-direction: column;
  justify-content: center;
  text-transform: uppercase;
}

.brand-name {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.45rem;
  line-height: 1;
  letter-spacing: .26em;
}

.brand-note {
  margin-top: 7px;
  color: var(--white);
  font-size: .58rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: .28em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 44px);
}

.main-nav a {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: rgb(255 255 255 / 78%);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.main-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 1px;
  background: var(--pink);
  content: '';
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms var(--ease);
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--white);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.main-nav .nav-cta {
  min-width: 132px;
  justify-content: center;
  border: 1px solid var(--pink);
  color: var(--white);
  transition: background 180ms ease, color 180ms ease;
}

.main-nav .nav-cta:hover {
  background: var(--pink);
  color: var(--ink);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 11px;
  border: 1px solid rgb(255 255 255 / 24%);
  background: transparent;
}

.menu-toggle svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.5;
}

.menu-line {
  transform-origin: center;
  transition: transform 200ms ease;
}

.menu-toggle[aria-expanded='true'] .menu-line-top {
  transform: translateY(4px) rotate(45deg);
}

.menu-toggle[aria-expanded='true'] .menu-line-bottom {
  transform: translateY(-4px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 850px;
  overflow: hidden;
  padding: calc(var(--header-height) + 80px) 0 88px;
  isolation: isolate;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgb(255 255 255 / 2%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 2%) 1px, transparent 1px);
  background-size: 72px 72px;
  content: '';
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}

.hero-glow {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.hero-glow-pink {
  top: 70px;
  right: -150px;
  width: 640px;
  height: 640px;
  background: radial-gradient(circle, rgb(228 160 183 / 18%), transparent 69%);
}

.hero-glow-gold {
  bottom: -250px;
  left: -200px;
  width: 580px;
  height: 580px;
  background: radial-gradient(circle, rgb(201 162 39 / 12%), transparent 67%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(460px, 1.12fr);
  gap: clamp(44px, 7vw, 104px);
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding-top: 34px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--pink);
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.eyebrow > span {
  display: inline-block;
  width: 38px;
  height: 1px;
  background: currentColor;
}

.eyebrow-dark {
  color: var(--ink);
}

.hero h1 {
  max-width: 660px;
  margin-top: 28px;
  font-size: clamp(3.65rem, 6.7vw, 6.65rem);
  letter-spacing: -.055em;
}

.hero h1 em {
  display: block;
  color: var(--pink);
  font-weight: 400;
}

.hero-lead {
  max-width: 570px;
  margin-top: 32px;
  color: rgb(255 255 255 / 70%);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
}

.hero-actions {
  display: flex;
  margin-top: 40px;
  align-items: center;
  gap: 30px;
}

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: 0;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
  transition: background 200ms ease, border-color 200ms ease, color 200ms ease, box-shadow 200ms ease;
}

.button svg,
.back-top svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  transition: transform 200ms ease;
}

.button-primary {
  border-color: var(--pink);
  background: var(--pink);
  color: var(--ink);
  box-shadow: 0 16px 38px rgb(228 160 183 / 15%);
}

.button-primary:hover,
.button-primary:focus-visible {
  border-color: var(--gold);
  background: var(--gold);
  box-shadow: 0 18px 44px rgb(201 162 39 / 20%);
}

.button:hover svg {
  transform: translateX(4px);
}

.text-link {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgb(255 255 255 / 35%);
  color: rgb(255 255 255 / 82%);
  font-size: .82rem;
  transition: border-color 180ms ease, color 180ms ease;
}

.text-link:hover {
  border-color: var(--pink);
  color: var(--pink);
}

.hero-signature {
  display: flex;
  margin-top: 68px;
  align-items: center;
  gap: 14px;
  color: rgb(255 255 255 / 43%);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.hero-signature i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
}

.hero-visual {
  position: relative;
  min-height: 640px;
}

.hero-main-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 72%;
  height: 590px;
  overflow: hidden;
  box-shadow: 0 28px 90px rgb(0 0 0 / 42%);
}

.hero-main-image::after,
.collection-image::after,
.story-image-wrap::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgb(26 26 26 / 26%), transparent 42%);
  content: '';
  pointer-events: none;
}

.hero-main-image img,
.hero-detail-image img,
.collection-image img,
.story-image-wrap img {
  height: 100%;
  object-fit: cover;
}

.hero-main-image figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: flex;
  padding: 20px 22px;
  justify-content: space-between;
  color: var(--white);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.hero-main-image figcaption span {
  color: var(--pink);
}

.hero-detail-image {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  width: 40%;
  height: 270px;
  overflow: hidden;
  border: 10px solid var(--ink);
}

.hero-mark {
  position: absolute;
  top: 90px;
  left: -15px;
  z-index: 1;
  color: rgb(228 160 183 / 9%);
  font-family: var(--serif);
  font-size: 25rem;
  line-height: .75;
  pointer-events: none;
}

.value-strip {
  border-top: 1px solid rgb(228 160 183 / 20%);
  border-bottom: 1px solid rgb(228 160 183 / 20%);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.value-grid p {
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border-right: 1px solid rgb(228 160 183 / 20%);
  color: rgb(255 255 255 / 77%);
  font-family: var(--serif);
  font-size: 1.08rem;
}

.value-grid p:first-child {
  border-left: 1px solid rgb(228 160 183 / 20%);
}

.value-grid span {
  color: var(--gold);
  font-family: var(--sans);
  font-size: .64rem;
  font-weight: 800;
  letter-spacing: .13em;
}

.section-light {
  background: var(--white);
  color: var(--ink);
}

.collections {
  padding: 132px 0 144px;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.2fr .65fr;
  gap: 80px;
  align-items: end;
}

.section-heading h2,
.experience-head h2,
.faq-heading h2 {
  max-width: 780px;
  margin-top: 24px;
  font-size: clamp(2.85rem, 5.4vw, 5.25rem);
  letter-spacing: -.045em;
}

.section-heading > p {
  max-width: 460px;
  padding-bottom: 7px;
  color: rgb(26 26 26 / 67%);
}

.collection-grid {
  display: grid;
  margin-top: 80px;
  grid-template-columns: 1.25fr .875fr .875fr;
  gap: 24px;
  align-items: start;
}

.collection-card:nth-child(2) {
  margin-top: 72px;
}

.collection-card:nth-child(3) {
  margin-top: 144px;
}

.collection-image {
  position: relative;
  height: 410px;
  overflow: hidden;
  background: var(--pink);
}

.collection-card-tall .collection-image {
  height: 590px;
}

.collection-image img {
  transition: transform 600ms var(--ease), filter 400ms ease;
}

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

.collection-number {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgb(255 255 255 / 55%);
  border-radius: 50%;
  background: rgb(26 26 26 / 58%);
  color: var(--white);
  font-size: .65rem;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.collection-copy {
  padding-top: 22px;
}

.collection-copy h3 {
  font-size: clamp(1.6rem, 2.4vw, 2.3rem);
}

.collection-copy p {
  max-width: 330px;
  margin-top: 10px;
  color: rgb(26 26 26 / 62%);
  font-size: .92rem;
}

.manifesto {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  background: var(--pink);
  color: var(--ink);
}

.manifesto-track {
  position: absolute;
  top: 20px;
  left: 50%;
  display: flex;
  width: max-content;
  align-items: center;
  gap: 28px;
  color: rgb(26 26 26 / 8%);
  font-family: var(--serif);
  font-size: clamp(6rem, 13vw, 12rem);
  line-height: 1;
  text-transform: uppercase;
  transform: translateX(-50%);
  white-space: nowrap;
}

.manifesto-track i {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
}

.manifesto-inner {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 440px;
  place-items: center;
}

.manifesto p {
  max-width: 900px;
  text-align: center;
  font-family: var(--serif);
  font-size: clamp(2.3rem, 5vw, 4.7rem);
  line-height: 1.12;
  letter-spacing: -.04em;
}

.story {
  padding: 144px 0;
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(380px, .95fr) minmax(0, 1.05fr);
  gap: clamp(64px, 9vw, 130px);
  align-items: center;
}

.story-visual {
  position: relative;
  padding: 0 0 72px 46px;
}

.story-visual::before {
  position: absolute;
  top: -28px;
  left: 0;
  width: 54%;
  height: 75%;
  border: 1px solid var(--gold);
  content: '';
}

.story-image-wrap {
  position: relative;
  height: 620px;
  overflow: hidden;
}

.story-caption {
  position: absolute;
  right: -8px;
  bottom: 0;
  z-index: 3;
  width: min(330px, 76%);
  padding: 24px 28px;
  background: var(--pink);
  color: var(--ink);
  font-size: .87rem;
}

.story-caption span {
  display: block;
  margin-bottom: 5px;
  font-family: var(--serif);
  font-size: 1.35rem;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.story-copy h2,
.contact-copy h2 {
  max-width: 720px;
  margin-top: 28px;
  font-size: clamp(3rem, 5.8vw, 5.65rem);
  letter-spacing: -.05em;
}

.story-intro {
  margin-top: 34px !important;
  color: var(--white) !important;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.65rem) !important;
  line-height: 1.45;
}

.story-copy > p:not(.eyebrow) {
  max-width: 650px;
  margin-top: 20px;
  color: rgb(255 255 255 / 62%);
  font-size: .98rem;
}

.story-facts {
  display: grid;
  margin-top: 48px;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgb(228 160 183 / 24%);
}

.story-facts div {
  padding: 22px 16px 0 0;
}

.story-facts dt {
  color: var(--gold);
  font-size: .63rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.story-facts dd {
  margin-top: 8px;
  color: rgb(255 255 255 / 78%);
  font-size: .83rem;
}

.experience {
  padding: 132px 0 140px;
}

.experience-head {
  display: grid;
  grid-template-columns: .42fr 1fr;
  align-items: start;
}

.experience-head h2 {
  margin-top: 0;
}

.experience-grid {
  display: grid;
  margin-top: 84px;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgb(26 26 26 / 22%);
}

.experience-item {
  min-height: 300px;
  padding: 34px 38px 30px 0;
  border-right: 1px solid rgb(26 26 26 / 16%);
}

.experience-item + .experience-item {
  padding-left: 38px;
}

.experience-item:last-child {
  border-right: 0;
}

.experience-item > span {
  color: var(--gold);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .15em;
}

.experience-item h3 {
  margin-top: 58px;
  font-size: clamp(1.65rem, 2.6vw, 2.45rem);
}

.experience-item p {
  max-width: 330px;
  margin-top: 18px;
  color: rgb(26 26 26 / 65%);
  font-size: .93rem;
}

.contact {
  position: relative;
  overflow: hidden;
  padding: 138px 0;
}

.contact::after {
  position: absolute;
  right: -180px;
  bottom: -300px;
  width: 620px;
  height: 620px;
  border: 1px solid rgb(228 160 183 / 18%);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgb(228 160 183 / 3%), 0 0 0 140px rgb(228 160 183 / 2%);
  content: '';
  pointer-events: none;
}

.contact-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: clamp(60px, 9vw, 130px);
}

.contact-copy > p:not(.eyebrow) {
  max-width: 550px;
  margin-top: 28px;
  color: rgb(255 255 255 / 64%);
}

.contact-note {
  display: flex;
  margin-top: 50px;
  align-items: center;
  gap: 18px;
}

.contact-note > span {
  display: grid;
  width: 55px;
  height: 55px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.45rem;
}

.contact-note p {
  color: rgb(255 255 255 / 60%);
  font-size: .79rem;
}

.contact-note strong {
  color: var(--white);
  font-size: .88rem;
}

.contact-form {
  display: grid;
  padding: clamp(28px, 4vw, 52px);
  gap: 28px;
  border: 1px solid rgb(228 160 183 / 22%);
  background: rgb(255 255 255 / 3%);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.contact-form label {
  display: grid;
  gap: 10px;
  color: rgb(255 255 255 / 77%);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.contact-form label > span {
  color: rgb(255 255 255 / 42%);
  font-size: .62rem;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: none;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 0;
  border: 0;
  border-bottom: 1px solid rgb(255 255 255 / 30%);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--white);
  font-size: .9rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  transition: border-color 180ms ease;
}

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

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgb(255 255 255 / 34%);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--pink);
}

.contact-form select option {
  background: var(--ink);
  color: var(--white);
}

.contact-form .button {
  width: 100%;
  margin-top: 4px;
}

.form-status {
  min-height: 1.5em;
  color: var(--pink);
  font-size: .82rem;
  text-align: center;
}

.faq {
  padding: 126px 0 132px;
}

.faq-grid {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: clamp(50px, 9vw, 130px);
}

.faq-list {
  border-top: 1px solid rgb(26 26 26 / 24%);
}

.faq-list details {
  border-bottom: 1px solid rgb(26 26 26 / 24%);
}

.faq-list summary {
  display: flex;
  min-height: 92px;
  padding: 20px 4px 20px 0;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  position: relative;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border: 1px solid rgb(26 26 26 / 22%);
  border-radius: 50%;
}

.faq-list summary span::before,
.faq-list summary span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 1px;
  background: var(--ink);
  content: '';
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.faq-list summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-list details[open] summary span::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-list details[open] summary {
  color: var(--gold);
}

.faq-list details p {
  max-width: 700px;
  padding: 0 64px 28px 0;
  color: rgb(26 26 26 / 64%);
  font-size: .92rem;
}

.site-footer {
  padding: 72px 0 24px;
  border-top: 1px solid rgb(228 160 183 / 18%);
}

.footer-main {
  display: grid;
  padding-bottom: 62px;
  grid-template-columns: 1fr auto auto;
  gap: clamp(40px, 7vw, 100px);
  align-items: start;
}

.brand-footer {
  margin-bottom: 18px;
}

.footer-main > div > p {
  max-width: 330px;
  color: rgb(255 255 255 / 50%);
  font-size: .82rem;
}

.footer-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 38px;
}

.footer-nav a,
.back-top {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: rgb(255 255 255 / 66%);
  font-size: .76rem;
  transition: color 180ms ease;
}

.footer-nav a:hover,
.back-top:hover {
  color: var(--pink);
}

.back-top {
  gap: 12px;
  color: var(--white);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.back-top:hover svg {
  transform: translateY(-4px);
}

.footer-bottom {
  display: flex;
  padding-top: 22px;
  justify-content: space-between;
  border-top: 1px solid rgb(255 255 255 / 12%);
  color: rgb(255 255 255 / 38%);
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}

.js .reveal[data-delay='1'] {
  transition-delay: 100ms;
}

.js .reveal[data-delay='2'] {
  transition-delay: 200ms;
}

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

@media (max-width: 1080px) {
  .hero {
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: minmax(0, .95fr) minmax(400px, 1.05fr);
    gap: 38px;
  }

  .hero-main-image {
    width: 80%;
  }

  .section-heading {
    grid-template-columns: 1fr .6fr;
    gap: 50px;
  }

  .story-grid,
  .contact-grid {
    gap: 65px;
  }

  .story-image-wrap {
    height: 540px;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 76px;
  }

  .container {
    width: min(calc(100% - 40px), var(--container));
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    inset: var(--header-height) 0 auto;
    display: grid;
    max-height: 0;
    overflow: hidden;
    gap: 0;
    border-bottom: 1px solid transparent;
    background: var(--ink);
    opacity: 0;
    visibility: hidden;
    transition: max-height 300ms var(--ease), opacity 180ms ease, visibility 180ms ease, border-color 180ms ease;
  }

  .site-header.is-scrolled .main-nav {
    top: 74px;
  }

  .main-nav.is-open {
    max-height: 420px;
    padding: 10px 20px 26px;
    border-color: rgb(228 160 183 / 18%);
    opacity: 1;
    visibility: visible;
  }

  .main-nav a,
  .main-nav .nav-cta {
    min-height: 58px;
    padding-inline: 18px;
    justify-content: flex-start;
    border: 0;
    border-bottom: 1px solid rgb(255 255 255 / 10%);
  }

  .main-nav .nav-cta {
    margin-top: 12px;
    justify-content: center;
    border: 1px solid var(--pink);
  }

  .hero {
    padding-top: calc(var(--header-height) + 58px);
  }

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

  .hero-copy {
    max-width: 740px;
    padding-top: 0;
  }

  .hero h1 {
    font-size: clamp(3.8rem, 11vw, 6.5rem);
  }

  .hero-signature {
    margin-top: 45px;
  }

  .hero-visual {
    min-height: 660px;
  }

  .hero-main-image {
    width: 72%;
  }

  .hero-detail-image {
    width: 38%;
  }

  .section-heading,
  .experience-head,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .section-heading > p {
    max-width: 660px;
  }

  .collection-grid {
    grid-template-columns: 1.1fr .9fr;
  }

  .collection-card:nth-child(3) {
    margin-top: -40px;
  }

  .story-grid {
    grid-template-columns: .9fr 1.1fr;
    gap: 45px;
  }

  .story-visual {
    padding-left: 26px;
  }

  .story-facts {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .experience-head {
    gap: 24px;
  }

  .contact-copy {
    max-width: 780px;
  }

  .faq-grid {
    gap: 54px;
  }
}

@media (max-width: 700px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

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

  .hero {
    padding-bottom: 64px;
  }

  .hero h1 {
    font-size: clamp(3.05rem, 15.5vw, 4.8rem);
  }

  .hero-lead {
    margin-top: 24px;
  }

  .hero-actions {
    margin-top: 32px;
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
  }

  .text-link {
    align-self: flex-start;
  }

  .hero-signature {
    margin-top: 36px;
  }

  .hero-visual {
    min-height: 530px;
  }

  .hero-main-image {
    width: 85%;
    height: 480px;
  }

  .hero-detail-image {
    width: 43%;
    height: 195px;
    border-width: 7px;
  }

  .hero-mark {
    top: 120px;
    left: -5px;
    font-size: 17rem;
  }

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

  .value-grid p,
  .value-grid p:first-child {
    min-height: 74px;
    justify-content: flex-start;
    border: 0;
    border-bottom: 1px solid rgb(228 160 183 / 18%);
  }

  .value-grid p:last-child {
    border-bottom: 0;
  }

  .collections,
  .story,
  .experience,
  .contact,
  .faq {
    padding-top: 92px;
    padding-bottom: 96px;
  }

  .section-heading {
    gap: 28px;
  }

  .section-heading h2,
  .experience-head h2,
  .faq-heading h2,
  .story-copy h2,
  .contact-copy h2 {
    font-size: clamp(2.65rem, 13vw, 4.4rem);
  }

  .collection-grid {
    margin-top: 54px;
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .collection-card:nth-child(2),
  .collection-card:nth-child(3) {
    margin-top: 0;
  }

  .collection-image,
  .collection-card-tall .collection-image {
    height: min(112vw, 550px);
  }

  .manifesto,
  .manifesto-inner {
    min-height: 380px;
  }

  .story-grid {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .story-visual {
    padding: 0 0 52px 24px;
  }

  .story-image-wrap {
    height: min(120vw, 580px);
  }

  .story-caption {
    right: 0;
  }

  .story-facts {
    grid-template-columns: 1fr 1fr;
  }

  .experience-grid {
    margin-top: 54px;
    grid-template-columns: 1fr;
  }

  .experience-item,
  .experience-item + .experience-item {
    min-height: auto;
    padding: 28px 0 38px;
    border-right: 0;
    border-bottom: 1px solid rgb(26 26 26 / 16%);
  }

  .experience-item:last-child {
    border-bottom: 0;
  }

  .experience-item h3 {
    margin-top: 24px;
  }

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

  .contact-form {
    gap: 23px;
  }

  .faq-list summary {
    min-height: 82px;
  }

  .faq-list details p {
    padding-right: 0;
  }

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

  .footer-nav {
    max-width: 320px;
  }
}

@media (max-width: 390px) {
  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .hero h1 {
    font-size: 2.9rem;
  }

  .hero-visual {
    min-height: 455px;
  }

  .hero-main-image {
    height: 420px;
  }

  .hero-detail-image {
    height: 170px;
  }

  .story-facts {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }

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

/* Custom sections styled under ui-ux-pro-max guidelines for Daztrez */
.ts-custom-section {
  padding: 112px 0;
  border-top: 1px solid rgb(228 160 183 / 18%);
  background-color: #1a1a1a;
  color: var(--white);
}
.ts-custom-section:nth-of-type(even) {
  background-color: #121212;
}
.ts-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.ts-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.ts-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.ts-img-wrap {
  position: relative;
  border: 1px solid rgb(228 160 183 / 24%);
  overflow: hidden;
}
.ts-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 600ms ease;
}
.ts-img-wrap:hover img {
  transform: scale(1.035);
}
.ts-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgb(228 160 183 / 15%);
  padding: 34px 28px;
  transition: all 400ms ease;
}
.ts-card:hover {
  transform: translateY(-4px);
  border-color: var(--pink);
  background: rgba(255, 255, 255, 0.05);
}
.ts-title {
  font-family: var(--serif, Georgia, serif);
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  color: var(--pink);
  margin-bottom: 12px;
}
.ts-card-number {
  font-family: var(--serif, Georgia, serif);
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 8px;
  font-weight: 700;
  line-height: 1;
}
.ts-sub-items {
  margin-top: 24px;
  display: grid;
  gap: 20px;
}
.ts-sub-item {
  border-left: 2px solid var(--gold);
  padding-left: 16px;
}
.ts-sub-item h4 {
  font-family: var(--serif, Georgia, serif);
  color: var(--white);
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  margin-bottom: 4px;
}
.ts-sub-item p {
  color: rgb(255 255 255 / 62%);
  font-size: 0.9rem;
}

/* Ratings */
.ts-ratings-header {
  text-align: center;
  margin-bottom: 50px;
}
.ts-stars {
  color: var(--gold);
  font-size: 20px;
  margin-bottom: 15px;
  letter-spacing: 4px;
}
.ts-author {
  margin-top: 20px;
  border-top: 1px solid rgb(255 255 255 / 10%);
  padding-top: 14px;
  font-size: 0.85rem;
}
.ts-author strong {
  color: var(--white);
  display: block;
}
.ts-author span {
  color: rgb(255 255 255 / 48%);
}

/* FAQ Accordion in Section 5 */
.ts-faq-preview-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
}
.ts-faq-list-custom {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ts-faq-item-custom {
  border: 1px solid rgb(228 160 183 / 15%);
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
}
.ts-faq-question-custom {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 24px;
  text-align: left;
  color: var(--white);
  font-family: var(--serif, Georgia, serif);
  font-size: 1.15rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 300ms ease;
}
.ts-faq-question-custom:hover {
  color: var(--pink);
}
.ts-faq-answer-custom {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: rgb(255 255 255 / 62%);
  font-size: 0.95rem;
  line-height: 1.6;
}
.ts-faq-question-custom.active + .ts-faq-answer-custom {
  padding: 0 24px 20px 24px;
}
.ts-faq-question-custom .fa-chevron-down {
  transition: transform 0.3s;
  font-size: 0.8rem;
}
.ts-faq-question-custom.active .fa-chevron-down {
  transform: rotate(180deg);
}

/* Section 7 Legal */
.ts-legal-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgb(228 160 183 / 24%);
  padding: 42px;
}
.ts-legal-box p {
  font-size: 0.88rem;
  color: rgb(255 255 255 / 66%);
  line-height: 1.8;
}

/* Responsiveness for custom sections */
@media (max-width: 992px) {
  .ts-grid-2, .ts-faq-preview-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .ts-grid-3 {
    grid-template-columns: 1fr 1fr;
  }
  .ts-grid-4 {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .ts-grid-3, .ts-grid-4 {
    grid-template-columns: 1fr;
  }
  .ts-custom-section {
    padding: 72px 0;
  }
}
