:root {
  --ink: #171613;
  --moss: #263728;
  --deep: #132219;
  --olive: #566149;
  --paper: #f7efe4;
  --cream: #efe2d2;
  --line: rgba(38, 55, 40, 0.18);
  --shadow: 0 32px 110px rgba(30, 25, 18, 0.24);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 74px;
  padding: 14px clamp(18px, 4vw, 58px);
  border-bottom: 1px solid rgba(38, 55, 40, 0.12);
  background: rgba(247, 239, 228, 0.88);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--moss);
  border-radius: 50%;
  color: var(--moss);
  font-size: 27px;
}

.brand-logo {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(38, 55, 40, 0.22);
}

.brand strong,
.site-footer span {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 25px;
  letter-spacing: 0.03em;
}

.brand small {
  display: block;
  margin-top: 1px;
  color: var(--olive);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  gap: clamp(12px, 2vw, 24px);
  color: rgba(23, 22, 19, 0.68);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cart-button,
.button,
.icon-button {
  border: 0;
  cursor: pointer;
}

.cart-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 14px 0 18px;
  border-radius: 999px;
  background: var(--moss);
  color: white;
  font-weight: 800;
}

.cart-button strong {
  display: grid;
  min-width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  background: var(--paper);
  color: var(--moss);
  font-size: 12px;
}

.hero {
  display: grid;
  min-height: auto;
  background: var(--paper);
}

.hero-main {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(520px, 1.1fr);
  align-items: start;
  min-height: 0;
  gap: 0;
  padding: 0;
}

.hero-copy {
  display: grid;
  justify-items: center;
  align-content: start;
  padding: clamp(42px, 5vw, 68px) clamp(24px, 5vw, 74px) 42px;
  text-align: center;
}

.hero-leaf {
  position: relative;
  width: min(360px, 76%);
  margin-bottom: 18px;
  color: var(--olive);
  font-size: 40px;
  line-height: 1;
}

.hero-leaf::before,
.hero-leaf::after {
  position: absolute;
  top: 50%;
  width: 34%;
  height: 1px;
  background: rgba(38, 55, 40, 0.48);
  content: "";
}

.hero-leaf::before {
  left: 0;
}

.hero-leaf::after {
  right: 0;
}

.hero h1 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(72px, 10vw, 148px);
  font-weight: 700;
  line-height: 0.78;
  letter-spacing: 0.03em;
}

.hero h1 span {
  color: var(--moss);
}

.hero-baseline {
  margin: 24px 0 0;
  font-size: clamp(16px, 1.7vw, 26px);
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.hero-description {
  max-width: 560px;
  margin: 22px 0 30px;
  color: rgba(23, 22, 19, 0.78);
  font-size: clamp(17px, 1.55vw, 23px);
  line-height: 1.5;
}

.hero-copy .button {
  margin-bottom: 22px;
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  align-self: start;
  min-height: 0;
  margin-top: clamp(38px, 3.2vw, 54px);
  overflow: hidden;
  background: var(--paper);
}

.hero-visual img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  object-fit: contain;
  object-position: center top;
}

.overline {
  margin: 0;
  color: var(--moss);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.signature {
  margin: 30px 0 0;
  color: var(--moss);
  font-size: clamp(17px, 1.8vw, 25px);
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.signature::after {
  display: block;
  width: 54px;
  height: 1px;
  margin: 18px auto 0;
  background: rgba(38, 55, 40, 0.45);
  content: "";
}

.hero-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #1b2b20;
  color: white;
}

.hero-benefits article {
  display: grid;
  justify-items: center;
  align-content: center;
  min-height: 138px;
  padding: 22px 14px;
  text-align: center;
}

.hero-benefits span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 50%;
  font-size: 24px;
}

.hero-benefits strong {
  margin-top: 10px;
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-benefits p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  line-height: 1.35;
}

.hero-bottom {
  padding: 28px 18px 34px;
  text-align: center;
  background: #f4e8d8;
}

.hero-bottom p {
  margin: 0;
  color: var(--moss);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(28px, 3vw, 44px);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-bottom span {
  display: block;
  margin-top: 6px;
  color: rgba(23, 22, 19, 0.74);
  font-size: clamp(16px, 1.5vw, 22px);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 900;
}

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

.button.ghost {
  border: 1px solid var(--moss);
  background: transparent;
  color: var(--moss);
}

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

.button.full {
  width: 100%;
}

.manifest {
  max-width: 1080px;
  margin: 0 auto;
  padding: clamp(62px, 8vw, 108px) clamp(22px, 5vw, 70px);
  text-align: center;
}

.manifest h2,
.section-heading h2,
.kit h2,
.professionals h2,
.cart-header h2 {
  margin: 16px 0 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(44px, 5.8vw, 86px);
  font-weight: 600;
  line-height: 0.96;
}

.result h2 {
  max-width: 560px;
  margin: 14px 0 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(38px, 4vw, 62px);
  font-weight: 600;
  line-height: 0.98;
}

.manifest > p:last-child,
.result-copy > p,
.kit-copy > p,
.professionals p {
  color: rgba(23, 22, 19, 0.68);
  font-size: clamp(18px, 2vw, 25px);
  line-height: 1.65;
}

.manifest > p:last-child {
  max-width: 780px;
  margin: 24px auto 0;
}

.result {
  display: grid;
  grid-template-columns: minmax(340px, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: clamp(28px, 4vw, 52px);
  padding: 0 clamp(18px, 4vw, 58px) clamp(48px, 6vw, 70px);
}

.result img {
  width: 100%;
  min-height: 560px;
  border-radius: 2px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.result img.result-photo {
  object-position: center;
}

.result-copy {
  max-width: 610px;
  justify-self: center;
}

.benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.benefits span {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--moss);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.collections,
.shop {
  padding: clamp(56px, 7vw, 96px) clamp(18px, 4vw, 58px);
}

.concept-invite {
  max-width: 960px;
  margin: 0 auto;
  padding: clamp(50px, 6vw, 78px) clamp(18px, 4vw, 58px);
  text-align: center;
}

.concept-invite h2,
.concept-page h1,
.advice-page h1 {
  margin: 16px 0 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(42px, 5vw, 78px);
  font-weight: 600;
  line-height: 0.97;
}

.concept-invite p:not(.overline) {
  max-width: 720px;
  margin: 18px auto 24px;
  color: rgba(23, 22, 19, 0.66);
  font-size: clamp(17px, 1.8vw, 23px);
  line-height: 1.65;
}

.inspiration-section {
  padding: clamp(52px, 7vw, 88px) clamp(18px, 4vw, 58px);
  background: #efe2d1;
}

.visual-panel-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.visual-panel {
  position: relative;
  min-height: 238px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--deep);
  box-shadow: 0 16px 46px rgba(30, 25, 18, 0.12);
}

.visual-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visual-panel.image-only::after {
  display: none;
}

.visual-panel.image-only img {
  object-fit: cover;
  object-position: center;
}

.visual-panel::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(19, 34, 25, 0.7), rgba(19, 34, 25, 0.12));
  content: "";
}

.visual-panel > div {
  position: relative;
  z-index: 1;
}

.visual-panel > div {
  display: grid;
  align-content: center;
  min-height: 238px;
  padding: 24px;
  color: white;
}

.visual-panel h3 {
  margin: 0;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.visual-panel p {
  max-width: 230px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.45;
}

.uniform-panel::after {
  background: linear-gradient(90deg, rgba(13, 24, 17, 0.76), rgba(13, 24, 17, 0.16) 72%);
}

.uniform-panel > div {
  justify-items: start;
}

.uniform-panel h3 {
  font-family: Inter, sans-serif;
  font-size: 15px;
  letter-spacing: 0.12em;
}

.uniform-panel .panel-rule {
  display: block;
  width: 48px;
  height: 1px;
  margin: 14px 0 2px;
  background: #ead8b8;
}

.uniform-panel p {
  max-width: 220px;
  font-size: 15px;
  line-height: 1.5;
}

.tools-panel::after {
  background: linear-gradient(90deg, rgba(25, 24, 20, 0.74), rgba(25, 24, 20, 0.08) 78%);
}

.visual-panel.light {
  background: #e7d8c7;
}

.visual-panel.light::after {
  background: linear-gradient(90deg, rgba(247, 239, 228, 0.84), rgba(247, 239, 228, 0.28));
}

.visual-panel.light img {
  object-fit: contain;
  padding: 28px;
  background: #eee4d7;
}

.visual-panel.light > div {
  color: var(--ink);
}

.visual-panel.light p {
  color: rgba(23, 22, 19, 0.68);
}

.instagram-card {
  display: block;
  color: white;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.instagram-card:hover,
.instagram-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 20px 54px rgba(30, 25, 18, 0.2);
}

.instagram-card:focus-visible {
  outline: 2px solid var(--moss);
  outline-offset: 3px;
}

.concept-page {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(30px, 6vw, 86px);
  align-items: center;
  padding: clamp(52px, 7vw, 92px) clamp(18px, 4vw, 58px);
}

.concept-page img {
  width: 100%;
  max-height: 720px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.concept-copy p:last-child,
.advice-page p {
  color: rgba(23, 22, 19, 0.68);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.65;
}

.video-section {
  padding: clamp(52px, 7vw, 88px) clamp(18px, 4vw, 58px);
  background: var(--paper);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.video-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 252, 246, 0.58);
}

.video-card-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--deep);
}

.video-card-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 24, 17, 0.03), rgba(13, 24, 17, 0.32));
  content: "";
}

.video-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.video-card-media video {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-card:hover .video-card-media img {
  transform: scale(1.025);
}

.video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 50%;
  background: rgba(15, 27, 19, 0.34);
  color: white;
  font-size: 17px;
  text-indent: 3px;
  transform: translate(-50%, -50%);
  backdrop-filter: blur(6px);
}

.video-duration {
  position: absolute;
  right: 12px;
  bottom: 10px;
  z-index: 1;
  padding: 4px 7px;
  border-radius: 4px;
  background: rgba(15, 20, 16, 0.72);
  color: white;
  font-size: 12px;
}

.video-card-copy {
  padding: 22px;
}

.video-card-copy .video-number {
  margin: 0 0 10px;
  color: var(--moss);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.video-card-copy h3 {
  max-width: 320px;
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(28px, 2.4vw, 38px);
  font-weight: 600;
  line-height: 1;
}

.video-card-copy > p:last-child {
  margin: 12px 0 0;
  color: rgba(23, 22, 19, 0.66);
  line-height: 1.5;
}

.faq-section {
  padding: clamp(52px, 7vw, 88px) clamp(18px, 4vw, 58px);
  background: #f1e7da;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border: 1px solid var(--line);
  border-top: 0;
  background: rgba(255, 252, 246, 0.44);
}

.faq-item:first-child {
  border-radius: 8px 8px 0 0;
}

.faq-item:last-child {
  border-radius: 0 0 8px 8px;
}

.faq-item summary {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 22px;
  gap: 16px;
  align-items: center;
  min-height: 70px;
  padding: 12px 18px;
  cursor: pointer;
  list-style: none;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(22px, 2.2vw, 32px);
  line-height: 1.05;
}

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

.faq-item summary::after {
  color: var(--moss);
  font-family: Inter, sans-serif;
  font-size: 22px;
  content: "+";
  text-align: center;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: var(--moss);
  color: white;
  font-family: Inter, sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.faq-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 300px);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  margin: 0 18px;
  padding: 18px 0 20px 60px;
  border-top: 1px solid var(--line);
}

.faq-content p {
  margin: 0;
  color: rgba(23, 22, 19, 0.7);
  font-size: 16px;
  line-height: 1.65;
}

.faq-content img {
  width: 100%;
  height: 112px;
  border-radius: 6px;
  object-fit: cover;
}

.advice-section {
  padding: clamp(52px, 7vw, 88px) clamp(18px, 4vw, 58px);
  background: var(--deep);
  color: white;
}

.advice-section .overline {
  color: #d8c3aa;
}

.advice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.advice-grid a {
  min-height: 136px;
  display: flex;
  align-items: end;
  padding: 22px;
  border-radius: 8px;
  background: #2f4d36;
  color: white;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1;
}

.advice-page {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: clamp(28px, 6vw, 82px);
  min-height: 100vh;
  align-items: center;
  padding: clamp(40px, 7vw, 90px) clamp(18px, 4vw, 58px);
  background: var(--paper);
}

.advice-page img {
  width: 100%;
  max-height: 720px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.collections {
  background: #efe2d1;
}

.section-heading {
  max-width: 820px;
  margin-bottom: clamp(26px, 3.5vw, 42px);
}

.collection-choice {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 34px);
}

.collection-card {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 620px;
  overflow: hidden;
  background: rgba(255, 252, 246, 0.68);
}

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

.collection-card img.product-image-contain {
  object-fit: contain;
  background: #e8d5bf;
}

.collection-card-content {
  padding: clamp(22px, 3vw, 36px);
}

.collection-card h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(42px, 5vw, 76px);
  line-height: 0.92;
  text-transform: uppercase;
}

.collection-card .subtitle {
  margin: 14px 0 22px;
  color: var(--moss);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.collection-card p {
  color: rgba(23, 22, 19, 0.68);
  font-size: 18px;
  line-height: 1.65;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 clamp(22px, 3vw, 36px) clamp(22px, 3vw, 36px);
}

.price {
  color: var(--moss);
  font-size: 22px;
  font-weight: 900;
}

.kit {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  align-items: center;
  background: #e6d5c1;
}

.kit img {
  width: 100%;
  height: 100%;
  min-height: 720px;
  object-fit: cover;
}

.kit > img.kit-presentation-image {
  height: auto;
  min-height: 0;
  object-fit: contain;
}

.kit-copy {
  padding: clamp(34px, 4.5vw, 60px);
}

.kit ol {
  display: grid;
  gap: 16px;
  margin: 24px 0 0;
  padding-left: 22px;
  color: var(--moss);
  font-weight: 800;
  line-height: 1.55;
}

.kit-copy .kit-list-title {
  margin: 24px 0 12px;
  color: var(--ink);
  font-weight: 800;
}

.kit-components {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px 24px;
  margin: 0;
  padding-left: 20px;
  color: var(--moss);
  line-height: 1.45;
}

.kit-components li::marker {
  color: var(--moss);
}

.shop-list,
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.4vw, 28px);
}

.product-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 252, 246, 0.72);
}

.product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.product-card-content {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 22px;
}

.product-card h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 0.96;
}

.product-card .subtitle {
  margin: 0;
  color: var(--moss);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-card p {
  margin: 0;
  color: rgba(23, 22, 19, 0.64);
  line-height: 1.55;
}

.product-card .price-row {
  padding: 8px 0 0;
}

.shop-more {
  display: flex;
  justify-content: center;
  margin-top: clamp(28px, 5vw, 56px);
}

.catalogue-hero {
  max-width: 980px;
  padding: clamp(72px, 11vw, 140px) clamp(18px, 4vw, 58px) clamp(38px, 6vw, 70px);
}

.catalogue-hero h1 {
  margin: 16px 0 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(72px, 10vw, 150px);
  line-height: 0.88;
}

.catalogue-hero p:last-child {
  max-width: 720px;
  color: rgba(23, 22, 19, 0.68);
  font-size: clamp(18px, 2vw, 25px);
  line-height: 1.6;
}

.catalogue-section {
  padding: 0 clamp(18px, 4vw, 58px) clamp(80px, 11vw, 150px);
}

.professionals {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.7fr);
  gap: clamp(30px, 5vw, 68px);
  padding: clamp(56px, 7vw, 96px) clamp(18px, 4vw, 58px);
  background: var(--deep);
  color: white;
}

.professionals .overline,
.professionals p {
  color: rgba(255, 255, 255, 0.72);
}

.professionals ul {
  display: grid;
  gap: 18px;
  align-self: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.professionals li {
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(28px, 4vw, 50px);
}

.cart-drawer,
.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  justify-content: end;
  background: rgba(16, 17, 14, 0.46);
}

.cart-drawer.is-open,
.contact-modal.is-open {
  display: flex;
}

.cart-panel,
.contact-panel {
  width: min(460px, 100%);
  min-height: 100%;
  padding: 24px;
  overflow: auto;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.contact-panel {
  display: grid;
  align-content: start;
  gap: 16px;
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.cart-header h2 {
  font-size: 50px;
}

.icon-button {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 50%;
  background: var(--moss);
  color: white;
  font-size: 24px;
}

.cart-items {
  display: grid;
  gap: 12px;
}

.cart-line {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.cart-line h3 {
  margin: 0 0 6px;
  font-size: 16px;
}

.cart-line p {
  margin: 0;
  color: rgba(23, 22, 19, 0.62);
  font-size: 14px;
}

.quantity {
  display: inline-grid;
  grid-template-columns: 32px 34px 32px;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--cream);
}

.quantity button {
  height: 32px;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-weight: 900;
}

.quantity span {
  text-align: center;
  font-size: 13px;
  font-weight: 800;
}

.checkout-box {
  display: grid;
  gap: 12px;
  margin-top: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

label {
  display: block;
  margin-bottom: 8px;
  color: rgba(23, 22, 19, 0.62);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid rgba(38, 55, 40, 0.22);
  border-radius: 6px;
  background: white;
  color: var(--ink);
}

textarea {
  resize: vertical;
  line-height: 1.5;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.summary-row.total {
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-size: 20px;
}

.checkout-note {
  margin: 0;
  color: rgba(23, 22, 19, 0.58);
  font-size: 13px;
  line-height: 1.45;
  text-align: center;
}

.form-success {
  display: grid;
  gap: 5px;
  padding: 14px 16px;
  border-left: 3px solid var(--moss);
  background: rgba(47, 77, 54, 0.08);
  color: var(--moss);
  line-height: 1.45;
}

.form-success[hidden] {
  display: none;
}

.form-success span {
  color: rgba(23, 22, 19, 0.7);
  font-size: 14px;
}

.form-error {
  display: grid;
  gap: 5px;
  padding: 14px 16px;
  border-left: 3px solid #963f36;
  background: rgba(150, 63, 54, 0.08);
  color: #7e3028;
  line-height: 1.45;
}

.form-error[hidden] {
  display: none;
}

.form-error span {
  color: rgba(23, 22, 19, 0.7);
  font-size: 14px;
}

.contact-panel button[type="submit"]:disabled {
  cursor: wait;
  opacity: 0.68;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 4vw, 58px);
  background: #151513;
  color: white;
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
}

.site-footer a {
  color: #e9d9bf;
  font-weight: 900;
}

.footer-brand {
  display: grid;
  gap: 5px;
}

.footer-brand > a {
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
  font-weight: 600;
}

.legal-page {
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(58px, 8vw, 110px) clamp(18px, 5vw, 70px);
}

.legal-intro {
  max-width: 850px;
  margin-bottom: clamp(42px, 6vw, 72px);
}

.legal-intro h1 {
  margin: 14px 0 18px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 600;
  line-height: 0.96;
}

.legal-intro > p:last-child {
  color: rgba(23, 22, 19, 0.6);
}

.legal-content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.legal-content section {
  padding: 30px 30px 30px 0;
  border-bottom: 1px solid var(--line);
}

.legal-content section:nth-child(even) {
  padding-right: 0;
  padding-left: 30px;
  border-left: 1px solid var(--line);
}

.legal-content h2 {
  margin: 0 0 14px;
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
  font-weight: 600;
}

.legal-content p {
  margin: 0 0 12px;
  color: rgba(23, 22, 19, 0.7);
  line-height: 1.65;
}

.legal-content a {
  color: var(--moss);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (min-width: 1081px) and (max-height: 820px) {
  .manifest {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .result {
    padding-bottom: 56px;
  }

  .collections,
  .shop,
  .inspiration-section,
  .professionals {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .concept-invite {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .manifest h2,
  .section-heading h2,
  .professionals h2 {
    font-size: 76px;
  }

  .concept-invite h2 {
    font-size: 70px;
  }

  .result h2 {
    font-size: 58px;
  }
}

@media (max-width: 1080px) {
  .hero-main,
  .result,
  .kit,
  .professionals,
  .concept-page,
  .advice-page {
    grid-template-columns: 1fr;
  }

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

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

  .visual-panel-grid,
  .video-grid,
  .advice-grid {
    grid-template-columns: 1fr 1fr;
  }

  .result img,
  .kit img {
    min-height: 520px;
  }

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

}

@media (max-width: 760px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .brand {
    flex: 1 1 100%;
  }

  .main-nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
    overflow-x: auto;
    padding-bottom: 3px;
  }

  .hero {
    min-height: auto;
  }

  .hero-main {
    padding: 0;
  }

  .hero-copy {
    padding: 34px 18px 40px;
  }

  .hero h1 {
    font-size: clamp(58px, 18vw, 86px);
  }

  .hero-baseline {
    letter-spacing: 0.16em;
  }

  .hero-visual {
    min-height: 0;
    margin: 0;
  }

  .hero-visual img {
    height: auto;
    min-height: 0;
  }

  .hero-benefits {
    grid-template-columns: repeat(2, 1fr);
  }

  .manifest {
    text-align: left;
  }

  .result,
  .collections,
  .shop,
  .professionals {
    padding-left: 18px;
    padding-right: 18px;
  }

  .result img,
  .kit img,
  .collection-card img {
    min-height: 390px;
  }

  .shop-list,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .visual-panel-grid,
  .video-grid,
  .advice-grid {
    grid-template-columns: 1fr;
  }

  .faq-item summary {
    grid-template-columns: 38px minmax(0, 1fr) 20px;
    gap: 12px;
    padding: 12px;
  }

  .faq-content {
    grid-template-columns: 1fr;
    gap: 16px;
    margin: 0 12px;
    padding: 16px 0;
  }

  .faq-content img {
    height: 180px;
  }

  .legal-content {
    grid-template-columns: 1fr;
  }

  .legal-content section,
  .legal-content section:nth-child(even) {
    padding: 24px 0;
    border-left: 0;
  }

  .kit-components {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
