:root {
  --brown: #6b5b4d;
  --brown-dark: #302821;
  --brown-soft: #88796c;
  --paper: #faf7f3;
  --warm: #ede7e1;
  --white: #ffffff;
  --line: #ddd4cc;
  --line-strong: #c8beb5;
  --sage: #4e5f47;
  --shadow: 0 22px 60px rgba(48, 40, 33, 0.14);
  --display: "Canela", "Didot", "Bodoni 72", "Times New Roman", serif;
  --body: "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
  --content: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--brown-dark);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

.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;
  right: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 76px;
  padding: 0 42px;
  color: var(--brown-dark);
  border-bottom: 1px solid rgba(200, 190, 181, 0.35);
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(250, 247, 243, 0.94);
  border-color: rgba(200, 190, 181, 0.7);
  box-shadow: 0 12px 34px rgba(48, 40, 33, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--paper);
  background: var(--brown);
  border: 1px solid rgba(48, 40, 33, 0.08);
  font-family: var(--display);
  font-size: 0.95rem;
}

.brand-name {
  font-size: 0.79rem;
  font-weight: 600;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  color: var(--brown-dark);
  font-size: 0.82rem;
}

.site-nav a {
  padding: 8px 0;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active,
.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--brown);
}

.site-nav a.is-active {
  font-weight: 700;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 16px;
  color: var(--paper);
  background: var(--brown-dark);
  border: 1px solid var(--brown-dark);
  font-size: 0.8rem;
  font-weight: 600;
}

.header-cta:hover,
.header-cta:focus-visible {
  background: var(--brown);
  border-color: var(--brown);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  color: var(--brown-dark);
  background: transparent;
  border: 1px solid var(--line-strong);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 1px;
  margin: 6px auto;
  background: currentColor;
  transition: transform 160ms ease;
}

.nav-open .nav-toggle span:nth-child(2) {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--paper);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-image {
  background-image: url("assets/velora-product-range.jpg");
  background-position: center top;
  background-size: cover;
  transform: scale(1.01);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(250, 247, 243, 0.96) 0%, rgba(250, 247, 243, 0.82) 33%, rgba(250, 247, 243, 0.18) 66%, rgba(250, 247, 243, 0) 100%),
    linear-gradient(0deg, rgba(250, 247, 243, 0.98) 0%, rgba(250, 247, 243, 0) 46%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(680px, calc(100% - 44px));
  padding: 150px 0 130px;
  margin-left: max(22px, calc((100vw - var(--content)) / 2));
}

.company-line,
.section-kicker {
  margin: 0 0 22px;
  color: var(--brown);
  font-size: 0.8rem;
  font-weight: 700;
}

.hero h1,
.section h2,
.contact-section h2 {
  margin: 0;
  color: var(--brown-dark);
  font-family: var(--display);
  font-weight: 400;
  line-height: 0.98;
}

.hero h1 {
  max-width: 650px;
  font-size: 4.85rem;
  line-height: 1.02;
}

.hero-copy > p:not(.company-line) {
  width: min(500px, 100%);
  margin: 28px 0 0;
  color: #4b4038;
  font-size: 1.08rem;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 0.88rem;
  font-weight: 650;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  color: var(--paper);
  background: var(--brown-dark);
  border-color: var(--brown-dark);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--brown);
  border-color: var(--brown);
}

.button-secondary {
  color: var(--brown-dark);
  background: rgba(250, 247, 243, 0.58);
  border-color: var(--brown);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: var(--paper);
}

.hero-footer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  min-height: 74px;
  color: var(--brown-dark);
  background: rgba(250, 247, 243, 0.94);
  border-top: 1px solid var(--line);
}

.hero-footer span {
  display: grid;
  place-items: center;
  padding: 12px;
  border-left: 1px solid var(--line);
  font-size: 0.82rem;
  font-weight: 600;
  text-align: center;
}

.hero-footer span:first-child {
  border-left: 0;
}

.section {
  padding: 112px 0;
}

.page-main {
  padding-top: 76px;
}

.page-hero {
  padding: 110px 0 86px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.page-hero-inner {
  display: grid;
  grid-template-columns: 0.95fr 0.75fr;
  gap: 88px;
  align-items: end;
  width: min(var(--content), calc(100% - 44px));
  margin: 0 auto;
}

.page-hero h1 {
  margin: 0;
  color: var(--brown-dark);
  font-family: var(--display);
  font-size: 4.7rem;
  font-weight: 400;
  line-height: 0.98;
}

.page-hero p {
  margin: 0;
  color: #50463f;
  font-size: 1rem;
  line-height: 1.9;
}

.section-inner {
  width: min(var(--content), calc(100% - 44px));
  margin: 0 auto;
}

.two-column {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 88px;
  align-items: start;
}

.section h2,
.contact-section h2 {
  font-size: 4rem;
}

.copy-block p,
.brand-copy > p,
.section-heading > p,
.supply-intro > p,
.contact-copy p {
  margin: 0;
  color: #50463f;
  font-size: 1rem;
  line-height: 1.9;
}

.copy-block p + p {
  margin-top: 24px;
}

.bilingual-note {
  margin-top: 30px;
  padding-top: 22px;
  color: var(--brown-soft);
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
  line-height: 1.8;
}

.bilingual-note strong {
  color: var(--brown-dark);
}

.proof-rail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 76px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-rail article {
  min-height: 218px;
  padding: 34px 34px 30px;
  border-left: 1px solid var(--line);
}

.proof-rail article:first-child {
  border-left: 0;
}

.proof-rail span {
  display: block;
  margin-bottom: 48px;
  color: var(--brown-soft);
  font-family: var(--display);
  font-size: 1rem;
}

.proof-rail h3,
.values-list h3,
.collection-grid h3,
.process-list h3 {
  margin: 0;
  color: var(--brown-dark);
  font-size: 0.95rem;
  font-weight: 700;
}

.proof-rail p,
.values-list p,
.collection-grid p,
.process-list p {
  margin: 12px 0 0;
  color: #62584f;
  font-size: 0.92rem;
  line-height: 1.65;
}

.velora-section,
.supply-section {
  background: var(--paper);
}

.brand-story {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.92fr);
  gap: 68px;
  align-items: center;
}

.brand-board {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.experience-panel {
  margin: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.experience-image {
  min-height: 420px;
  background-image:
    linear-gradient(180deg, rgba(250, 247, 243, 0.02), rgba(250, 247, 243, 0.22)),
    url("assets/velora-product-range.jpg");
  background-position: center top;
  background-size: cover;
}

.experience-panel figcaption {
  padding: 34px 36px 30px;
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.experience-panel h3 {
  margin: 0;
  color: var(--brown-dark);
  font-family: var(--display);
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1.05;
}

.experience-panel figcaption p {
  margin: 18px 0 0;
  color: #50463f;
  font-size: 0.94rem;
  line-height: 1.8;
}

.experience-notes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.experience-notes div {
  min-height: 178px;
  padding: 28px 26px 24px;
  border-left: 1px solid var(--line);
}

.experience-notes div:first-child {
  border-left: 0;
}

.experience-notes span {
  display: block;
  margin-bottom: 28px;
  color: var(--brown-soft);
  font-family: var(--display);
  font-size: 0.94rem;
}

.experience-notes strong {
  display: block;
  color: var(--brown-dark);
  font-size: 0.9rem;
  font-weight: 700;
}

.experience-notes p {
  margin: 10px 0 0;
  color: #62584f;
  font-size: 0.86rem;
  line-height: 1.65;
}

.tiny-label {
  display: block;
  margin-bottom: 18px;
  color: var(--brown-soft);
  font-size: 0.64rem;
  font-weight: 700;
}

.brand-copy > p {
  margin-top: 28px;
}

.brand-copy > p + p {
  margin-top: 18px;
}

.values-list {
  display: grid;
  gap: 0;
  margin-top: 38px;
  border-top: 1px solid var(--line-strong);
}

.values-list div {
  padding: 22px 0;
  border-bottom: 1px solid var(--line-strong);
}

.range-section {
  background: var(--white);
}

.section-heading {
  display: grid;
  grid-template-columns: 0.9fr minmax(280px, 0.7fr);
  column-gap: 80px;
  align-items: end;
}

.section-heading .section-kicker {
  grid-column: 1 / -1;
}

.section-heading p:last-child {
  align-self: end;
}

.product-showcase {
  margin-top: 58px;
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.product-showcase img {
  width: 100%;
  aspect-ratio: 1.5 / 1;
  object-fit: cover;
  object-position: center;
}

.fragrance-feature {
  display: grid;
  grid-template-columns: 0.7fr 0.9fr;
  gap: 56px;
  align-items: start;
  margin-top: 34px;
  padding: 38px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.fragrance-feature h3 {
  margin: 0;
  color: var(--brown-dark);
  font-family: var(--display);
  font-size: 2.8rem;
  font-weight: 400;
  line-height: 1.04;
}

.fragrance-feature > p {
  margin: 0;
  color: #50463f;
  font-size: 1rem;
  line-height: 1.86;
}

.fragrance-points {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.fragrance-points span {
  min-height: 64px;
  padding: 20px 22px 0;
  color: var(--brown-dark);
  border-left: 1px solid var(--line);
  font-size: 0.86rem;
  font-weight: 650;
}

.fragrance-points span:first-child {
  border-left: 0;
  padding-left: 0;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin-top: 34px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.collection-grid article {
  min-height: 174px;
  padding: 24px 20px;
  border-left: 1px solid var(--line);
}

.collection-grid article:first-child {
  border-left: 0;
}

.scene-section {
  margin-top: 76px;
  padding-top: 76px;
  border-top: 1px solid var(--line);
}

.scene-heading {
  align-items: start;
}

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

.scene-grid article {
  display: grid;
  background: var(--paper);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.scene-grid img {
  width: 100%;
  aspect-ratio: 1.42 / 1;
  object-fit: cover;
}

.scene-grid article > div {
  padding: 28px 30px 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(250, 247, 243, 0.9));
}

.scene-grid span {
  display: block;
  margin-bottom: 16px;
  color: var(--brown-soft);
  font-size: 0.72rem;
  font-weight: 750;
}

.scene-grid h3 {
  margin: 0;
  color: var(--brown-dark);
  font-family: var(--display);
  font-size: 2.35rem;
  font-weight: 400;
  line-height: 1.02;
}

.scene-grid p {
  margin: 16px 0 0;
  color: #5c5149;
  font-size: 0.92rem;
  line-height: 1.72;
}

.sku-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.sku-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 520px;
  background: var(--paper);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.sku-card figure {
  margin: 0;
  padding: 22px 22px 0;
  background: var(--white);
}

.sku-card img {
  width: 100%;
  aspect-ratio: 0.62 / 1;
  object-fit: cover;
  border: 1px solid rgba(221, 212, 204, 0.7);
}

.sku-card-content {
  display: grid;
  align-content: start;
  padding: 24px 22px 26px;
}

.sku-code {
  color: var(--brown-soft);
  font-size: 0.72rem;
  font-weight: 750;
}

.sku-card h3 {
  margin: 12px 0 0;
  color: var(--brown-dark);
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.08;
}

.sku-meta {
  margin: 12px 0 0;
  color: var(--brown);
  font-size: 0.82rem;
  font-weight: 700;
}

.sku-card p {
  margin: 16px 0 0;
  color: #5c5149;
  font-size: 0.9rem;
  line-height: 1.72;
}

.domain-list {
  display: grid;
  gap: 0;
  margin-top: 42px;
  border-top: 1px solid var(--line);
}

.domain-list article {
  display: grid;
  grid-template-columns: 0.75fr 1fr;
  gap: 36px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.domain-list h3 {
  margin: 0;
  color: var(--brown-dark);
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 400;
}

.domain-list p {
  margin: 0;
  color: #50463f;
  line-height: 1.85;
}

.supply-intro {
  align-items: end;
}

.process-list {
  display: grid;
  gap: 0;
  margin-top: 70px;
  border-top: 1px solid var(--line-strong);
}

.process-list article {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 28px;
  align-items: start;
  padding: 34px 0;
  border-bottom: 1px solid var(--line-strong);
}

.process-list svg {
  width: 54px;
  height: 54px;
  color: var(--brown);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.35;
}

.contact-section {
  padding: 112px 0;
  color: var(--paper);
  background: var(--brown-dark);
}

.contact-section .section-kicker,
.contact-section h2,
.contact-copy p {
  color: var(--paper);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 88px;
  align-items: start;
}

.contact-copy p {
  margin-top: 28px;
  color: rgba(250, 247, 243, 0.78);
}

.contact-direct {
  display: grid;
  gap: 0;
  margin-top: 28px;
  border-top: 1px solid rgba(250, 247, 243, 0.24);
  border-bottom: 1px solid rgba(250, 247, 243, 0.24);
}

.contact-direct a {
  padding: 14px 0;
  color: var(--paper);
  border-top: 1px solid rgba(250, 247, 243, 0.18);
  font-size: 0.94rem;
  font-weight: 650;
}

.contact-direct a:first-child {
  border-top: 0;
}

.contact-direct a:hover,
.contact-direct a:focus-visible {
  color: var(--warm);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 34px;
  background: rgba(250, 247, 243, 0.055);
  border: 1px solid rgba(250, 247, 243, 0.2);
  border-radius: 8px;
}

.contact-form label {
  display: grid;
  gap: 9px;
  color: rgba(250, 247, 243, 0.82);
  font-size: 0.82rem;
  font-weight: 650;
}

.contact-form .full {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--paper);
  background: rgba(250, 247, 243, 0.08);
  border: 1px solid rgba(250, 247, 243, 0.28);
  border-radius: 2px;
  outline: none;
}

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

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

.contact-form option {
  color: var(--brown-dark);
}

.contact-form .button-primary {
  color: var(--brown-dark);
  background: var(--paper);
  border-color: var(--paper);
}

.contact-form .button-primary:hover,
.contact-form .button-primary:focus-visible {
  color: var(--paper);
  background: var(--brown);
  border-color: var(--brown);
}

.form-note {
  grid-column: 1 / -1;
  min-height: 24px;
  margin: 0;
  color: rgba(250, 247, 243, 0.78);
  font-size: 0.88rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 32px max(22px, calc((100vw - var(--content)) / 2));
  color: var(--brown-dark);
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.site-footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.site-footer span,
.site-footer a {
  color: var(--brown-soft);
}

@media (max-width: 1020px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
    padding: 0 24px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 18px 24px 26px;
    background: rgba(250, 247, 243, 0.98);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 40px rgba(48, 40, 33, 0.12);
    transform: translateY(-120%);
    transition: transform 180ms ease;
  }

  .nav-open .site-nav {
    transform: translateY(0);
  }

  .site-nav a {
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
  }

  .header-cta {
    display: none;
  }

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

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(250, 247, 243, 0.98) 0%, rgba(250, 247, 243, 0.75) 52%, rgba(250, 247, 243, 0.1) 100%),
      linear-gradient(0deg, rgba(250, 247, 243, 0.98) 0%, rgba(250, 247, 243, 0.05) 58%);
  }

  .two-column,
  .brand-story,
  .section-heading,
  .contact-layout,
  .page-hero-inner,
  .domain-list article {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .page-hero h1 {
    font-size: 3.8rem;
  }

  .experience-image {
    min-height: 360px;
  }

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

  .fragrance-feature {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .section h2,
  .contact-section h2 {
    font-size: 3.2rem;
  }

  .proof-rail,
  .collection-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .scene-section {
    margin-top: 60px;
    padding-top: 60px;
  }

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

  .proof-rail article:nth-child(1),
  .proof-rail article:nth-child(2),
  .proof-rail article:nth-child(3),
  .collection-grid article:nth-child(1),
  .collection-grid article:nth-child(4),
  .collection-grid article:nth-child(7) {
    border-left: 0;
  }

  .collection-grid article:nth-child(n + 4) {
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 68px;
    padding: 0 18px;
  }

  .brand-name {
    max-width: 142px;
    font-size: 0.75rem;
  }

  .site-nav {
    top: 68px;
  }

  .hero {
    min-height: 820px;
  }

  .hero-image {
    background-position: center top;
    background-size: auto 72%;
    background-repeat: no-repeat;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(250, 247, 243, 1) 0%, rgba(250, 247, 243, 1) 52%, rgba(250, 247, 243, 0.72) 66%, rgba(250, 247, 243, 0) 86%);
  }

  .hero-copy {
    width: min(100% - 36px, 520px);
    padding: 388px 0 116px;
    margin: 0 auto;
  }

  .company-line,
  .section-kicker {
    margin-bottom: 16px;
  }

  .hero h1 {
    font-size: 2.55rem;
    line-height: 1.02;
  }

  .hero-copy > p:not(.company-line) {
    font-size: 1rem;
    line-height: 1.7;
  }

  .hero-actions {
    display: grid;
    margin-top: 24px;
  }

  .hero-footer {
    grid-template-columns: 1fr;
    position: relative;
    margin-top: -84px;
  }

  .hero-footer span {
    min-height: 48px;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .section,
  .contact-section {
    padding: 78px 0;
  }

  .page-main {
    padding-top: 68px;
  }

  .page-hero {
    padding: 70px 0 58px;
  }

  .page-hero h1 {
    font-size: 3rem;
    line-height: 1.02;
  }

  .section h2,
  .contact-section h2 {
    font-size: 2.5rem;
    line-height: 1.04;
  }

  .proof-rail,
  .collection-grid {
    grid-template-columns: 1fr;
    margin-top: 44px;
  }

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

  .scene-section {
    margin-top: 48px;
    padding-top: 48px;
  }

  .scene-grid {
    grid-template-columns: 1fr;
    margin-top: 30px;
  }

  .scene-grid article > div {
    padding: 24px 22px 26px;
  }

  .scene-grid h3 {
    font-size: 1.95rem;
  }

  .sku-card {
    min-height: auto;
  }

  .sku-card img {
    aspect-ratio: 1 / 1;
    object-position: center top;
  }

  .domain-list article {
    gap: 14px;
  }

  .domain-list h3 {
    font-size: 1.65rem;
  }

  .proof-rail article,
  .collection-grid article {
    min-height: auto;
    padding: 24px 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .proof-rail article:first-child,
  .collection-grid article:first-child {
    border-top: 0;
  }

  .proof-rail span {
    margin-bottom: 22px;
  }

  .brand-story {
    gap: 42px;
  }

  .experience-image {
    min-height: 300px;
    background-position: center top;
  }

  .experience-panel figcaption {
    padding: 28px 22px 26px;
  }

  .experience-panel h3 {
    font-size: 1.9rem;
  }

  .experience-notes {
    grid-template-columns: 1fr;
  }

  .experience-notes div {
    min-height: auto;
    padding: 24px 22px;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .experience-notes div:first-child {
    border-top: 0;
  }

  .experience-notes span {
    margin-bottom: 18px;
  }

  .product-showcase img {
    aspect-ratio: 1 / 1;
  }

  .product-showcase img {
    object-position: center top;
  }

  .fragrance-feature {
    margin-top: 28px;
    padding: 30px 0;
  }

  .fragrance-feature h3 {
    font-size: 2.1rem;
  }

  .fragrance-points {
    grid-template-columns: 1fr;
  }

  .fragrance-points span {
    min-height: auto;
    padding: 16px 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .fragrance-points span:first-child {
    border-top: 0;
    padding-left: 0;
  }

  .process-list article {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .contact-form {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .site-footer {
    display: grid;
  }
}
