/* ============================================================
   CSS CUSTOM PROPERTIES
============================================================ */
:root {
  --opal-orange: #e85d1a;
  --opal-orange-deep: #b63e0a;
  --opal-cream: #fbf2e7;
  --opal-porcelain: #fffaf3;
  --opal-ivory: #f7eadb;
  --opal-charcoal: #17120f;
  --opal-brown: #60402d;
  --opal-muted: #92705d;
  --opal-line: rgba(232, 93, 26, .18);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Manrope", Arial, sans-serif;
  --font-soft: "Instrument Serif", Georgia, serif;
  --ease: cubic-bezier(.16, 1, .3, 1);
}

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

html {
  scroll-behavior: smooth;
  background: var(--opal-cream);
}

body {
  font-family: var(--font-body);
  background: var(--opal-cream);
  color: var(--opal-charcoal);
  cursor: auto;
  overflow-x: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

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

.no-scroll {
  overflow: hidden;
}

/* ============================================================
   UTILITY & GLOBAL COMPONENTS
============================================================ */
.grain {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: .08;
  background-image: url("data:image/svg+xml, %3Csvg viewBox='0 0 240 240' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.6'/%3E%3C/svg%3E");
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--opal-orange);
  color: #fff;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.preloader:before {
  content: "";
  position: absolute;
  inset: 5vw;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 999px;
  transform: scale(.78);
  animation: pulseFrame 2.8s var(--ease) infinite alternate;
}

.preloader__inner {
  text-align: center;
  position: relative;
  z-index: 2;
}

.preloader__logo {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin: 0 auto 1.4rem;
}

.preloader__word {
  font-family: var(--font-display);
  font-size: clamp(3rem, 9vw, 8rem);
  line-height: .78;
  font-weight: 300;
  letter-spacing: .02em;
}
.preloader__word2 {
  font-family: var(--font-display);
  font-size: clamp(0.5rem, 2.5vw, 2rem);
  line-height: .58;
  font-weight: 150;
  letter-spacing: 1.05em;
  color: var(--opal-charcoal);
}

.preloader__counter {
  margin-top: 1.25rem;
  font-size: .72rem;
  letter-spacing: .32em;
  text-transform: uppercase;
}

.preloader__bar {
  width: min(360px, 70vw);
  height: 2px;
  background: rgba(255, 255, 255, .22);
  margin: 1.2rem auto 0;
  overflow: hidden;
}

.preloader__bar span {
  display: block;
  height: 100%;
  width: 0;
  background: #fff;
}

@keyframes pulseFrame {
  to {
    transform: scale(1);
    opacity: .48;
  }
}

.scroll-progress {
  position: fixed;
  left: 0;
  top: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, #fff0e4, var(--opal-orange), #ffb185);
  z-index: 12000;
  pointer-events: none;
  box-shadow: 0 0 18px rgba(232, 93, 26, .42);
}

.reveal {
  opacity: 0;
  transform: translateY(48px);
}

.split-word {
  display: inline-block;
  overflow: hidden;
}

.split-word span {
  display: inline-block;
  transform: translateY(110%);
}

.char-reveal {
  display: inline-block;
  overflow: hidden;
}

.char-reveal span {
  display: inline-block;
  transform: translateY(105%);
}

.scroll-fade {
  opacity: .2;
  filter: blur(8px);
  transform: translateY(40px);
}

.magnetic-card {
  will-change: transform;
}

.is-gsap-ready .collection-card,
.is-gsap-ready .product-card,
.is-gsap-ready .award-card,
.is-gsap-ready .story-card,
.is-gsap-ready .insight-card {
  will-change: transform, opacity;
}

/* ============================================================
   BUTTONS & LINKS
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .8rem;
  border-radius: 999px;
  padding: 1rem 1.45rem;
  border: 1px solid currentColor;
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 900;
  cursor: pointer;
  transition: .35s var(--ease);
}

.btn--solid {
  background: #fff;
  color: var(--opal-charcoal);
  border-color: #fff;
}
.buy-now2 {
  display: inline-flex;
  background: var(--opal-orange);
  border: 1px solid currentColor;
  color: #fff;
  border-radius: 999px;
  padding: 1rem 1.45rem;
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 900;
  transition: .35s var(--ease);
  gap: .8rem;
  display: inline-flex;
}
.btn--solid:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .18);
}

.btn--ghost {
  color: #fff;
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, .12);
}

.buy-now {
  width: max-content;
  background: var(--opal-orange);
  border: 1px solid rgba(255, 255, 255, .18);
  color: #fff;
  border-radius: 999px;
  padding: .62rem .85rem;
  font-size: .66rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 900;
  transition: .3s var(--ease);
}

.buy-now:hover {
  background: #fff;
  color: var(--opal-orange);
  transform: translateY(-2px);
}

.card-link {
  display: inline-flex;
  margin-top: 1.15rem;
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 900;
  color: var(--opal-orange);
  border-bottom: 1px solid currentColor;
  padding-bottom: .18rem;
}

.text-link {
  display: inline-flex;
  margin-top: 1rem;
  color: #ffd0b4;
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 900;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: var(--opal-orange);
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 900;
  margin-bottom: 1.3rem;
  border-bottom: 1px solid currentColor;
  padding-bottom: .18rem;
}

/* ============================================================
   TYPOGRAPHY
============================================================ */
.eyebrow {
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 1.3rem;
  color: var(--opal-charcoal) .86;
}

.section-kicker {
  font-size: .72rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  font-weight: 900;
  color: var(--opal-orange);
  margin-bottom: .8rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 6vw, 7.5rem);
  font-weight: 300;
  line-height: .9;
  letter-spacing: -.045em;
  text-wrap: balance;
}

.section-intro {
  max-width: 650px;
  color: var(--opal-brown);
  line-height: 1.9;
}

.section--dark .section-intro {
  color: rgba(251, 242, 231, .72);
}

/* ============================================================
   HEADER & NAVIGATION
============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.1rem;
  padding: 1.1rem clamp(1rem, 3vw, 3rem);
  transition: background .4s var(--ease), padding .4s var(--ease), box-shadow .4s var(--ease);
}

.site-header.is-scrolled,
.standard-page .site-header,
.products-page .site-header,
.insights-page .site-header,
.product-page .site-header,
.product-detail-page .site-header {
  background: rgba(251, 242, 231, .88);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--opal-line);
  padding: .7rem clamp(1rem, 3vw, 3rem);
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-size: .7rem;
  flex: 0 0 auto;
}

.brand-logo img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 50%;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex: 1;
  justify-content: center;
  min-width: 0;
}

.main-nav > a,
.mega-trigger {
  background: none;
  border: 0;
  color: var(--opal-charcoal);
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
}

.main-nav > a:hover,
.mega-trigger:hover {
  color: var(--opal-orange);
}

.nav-cta {
  padding: .8rem 1.2rem;
  border: 1px solid var(--opal-orange);
  border-radius: 999px;
  color: #fff;
  background: var(--opal-orange);
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 800;
  transition: .3s var(--ease);
  flex: 0 0 auto;
}

.nav-cta:hover {
  background: var(--opal-orange);
  color: #fff;
}

.mega-wrap {
  position: relative;
}

.mega-menu {
  position: absolute;
  left: 50%;
  right: auto;
  top: calc(100% + .95rem);
  width: min(880px, calc(100vw - 32px));
  background: rgba(255, 250, 243, .96);
  border: 1px solid var(--opal-line);
  box-shadow: 0 28px 80px rgba(55, 28, 12, .14);
  padding: 2.05rem 1.5rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1.1fr 1.2fr;
  gap: 1.6rem;
  border-radius: 22px;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 12px);
  transition: .35s var(--ease);
  align-items: start;
}

.mega-wrap:hover .mega-menu,
.mega-wrap:focus-within .mega-menu,
.mega-wrap.is-open .mega-menu,
.mega-wrap.is-pinned .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.mega-col {
  min-width: 0;
}

.mega-col h4 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: .8rem;
}

.mega-col a {
  display: block;
  padding: .48rem .55rem;
  margin-left: -.55rem;
  color: var(--opal-brown);
  font-size: .82rem;
  line-height: 1.35;
  white-space: normal;
  border-radius: 12px;
}

.mega-col a:hover {
  color: var(--opal-orange);
  background: rgba(232, 93, 26, .08);
}

.mega-close {
  position: absolute;
  right: .9rem;
  top: .72rem;
  width: 2rem;
  height: 2rem;
  border: 1px solid var(--opal-line);
  border-radius: 50%;
  background: rgba(255, 250, 243, .92);
  color: var(--opal-orange);
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: .25s var(--ease);
}

.mega-close:hover {
  background: var(--opal-orange);
  color: #fff;
  transform: rotate(90deg);
}

/* Force-close state */
.mega-wrap.is-forced-closed .mega-menu,
.mega-wrap.is-forced-closed:hover .mega-menu,
.mega-wrap.is-forced-closed:focus-within .mega-menu {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transform: translate(-50%, 12px) !important;
}

@media (max-width: 980px) {
  .mega-wrap.is-forced-closed .mega-menu,
  .mega-wrap.is-forced-closed:hover .mega-menu,
  .mega-wrap.is-forced-closed:focus-within .mega-menu {
    display: none !important;
    transform: none !important;
  }
}

.mobile-toggle {
  display: none;
  background: var(--opal-orange);
  color: #fff;
  border: 0;
  border-radius: 999px;
  padding: .78rem 1rem;
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}

/* ============================================================
   HERO SECTION
============================================================ */
.hero {
  min-height: 100svh;
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--opal-charcoal);
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  filter: saturate(.98) contrast(.98);
}

.hero__shade {
  position: absolute;
  inset: 0;
background:
    linear-gradient(90deg, rgba(232, 93, 23, 0.05), rgba(232, 93, 23, 0.01) 42%, rgba(255, 255, 255, 0.0) 76%),
    linear-gradient(180deg, rgba(232, 93, 23, 0.08), rgba(232, 93, 23, 0.04) 50%, rgba(232, 93, 23, 0.2));
}



.hero__content {
  position: relative;
  z-index: 2;
  width: min(760px, 94vw);
  padding: clamp(7rem, 12vh, 11rem) clamp(1.1rem, 6vw, 6rem) 7rem;
  color: #222222;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10.8vw, 7rem);
  font-weight: 300;
  line-height: .86;
  letter-spacing: -.055em;
  max-width: 850px;
  text-wrap: balance;
  color: #fff;
  text-shadow: none;
}

.hero h1 .line {
  display: block;
  overflow: hidden;
}

.hero h1 .line span {
  display: inline-block;
  color: var(--opal-charcoal);
  font-family: inherit;
  font-style: normal;
  font-weight: inherit;
  font-size: 1em;
  letter-spacing: inherit;
  text-shadow: none;
  padding-left: 0;
}
.hero h1 .line .frankincense {
  display: inline-block;
  color: #ffffff;
  font-family: inherit;
  font-style: normal;
  font-weight: inherit;
  font-size: 1em;
  letter-spacing: inherit;
  text-shadow: 2px 2px 5px var(--opal-charcoal);
  padding-left: 0;
}
.hero h1 .line .qasil {
  display: inline-block;
  color: #ffffff;
  font-family: inherit;
  font-style: normal;
  font-weight: inherit;
  font-size: 1em;
  letter-spacing: inherit;
  text-shadow: 2px 2px 5px var(--opal-charcoal);
  padding-left: 0;
}
.hero .eyebrow {
  color: var(--opal-charcoal) .86;
  text-shadow: none;
  margin-bottom: 1.2rem;
}

.hero__copy {
  margin-top: 2rem;
  max-width: 560px;
  color: #000000;
  line-height: 1.8;
  font-size: 1.05rem;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2.2rem;
}

.hero-marquee {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  border-top: 1px solid rgba(255, 255, 255, .2);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  background: var(--opal-orange);
  backdrop-filter: blur(12px);
  overflow: hidden;
}

.marquee-track {
  display: flex;
  white-space: nowrap;
  will-change: transform;
}

.marquee-track span {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.5vw, 2rem);
  color: #fff;
  padding: .65rem 2rem;
}

/* ============================================================
   SECTIONS COMMON
============================================================ */
.section {
  padding: clamp(5rem, 9vw, 9rem) clamp(1.1rem, 4vw, 4rem);
  position: relative;
}

.section--cream {
  background: var(--opal-cream);
}

.section--ivory {
  background: var(--opal-ivory);
}

.section--dark {
  background: var(--opal-charcoal);
  color: var(--opal-cream);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: clamp(2.2rem, 5vw, 4.5rem);
}

/* ============================================================
   PHILOSOPHY SECTION
============================================================ */
.philosophy {
  min-height: 95svh;
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
}

.philosophy .sun {
  position: absolute;
  width: 58vmin;
  height: 58vmin;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 93, 26, .2), transparent 67%);
  filter: blur(10px);
}

.philosophy__text {
  position: relative;
  z-index: 1;
  max-width: 1100px;
}

.philosophy__text h2 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 8.5rem);
  line-height: .95;
  font-weight: 300;
  letter-spacing: -.04em;
}

.philosophy__text em {
  color: var(--opal-orange);
  font-style: italic;
}

.philosophy__text p {
  max-width: 760px;
  margin: 2rem auto 0;
  line-height: 1.95;
  color: var(--opal-brown);
}

/* ============================================================
   COLLECTIONS SECTION
============================================================ */
.collections-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.collection-card {
  position: relative;
  display: block;
  min-height: 520px;
  border-radius: 28px;
  overflow: hidden;
  background: #ddd;
  isolation: isolate;
}

.collection-card:nth-child(even) {
  margin-top: 3rem;
}

.collection-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 1s var(--ease);
}

.collection-card:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(23, 18, 15, .72));
}

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

.collection-card__text {
  position: absolute;
  left: 1.2rem;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 1;
  color: #fff;
}

.collection-card__text span {
  font-size: .66rem;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.collection-card__text h3 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.5vw, 4rem);
  font-weight: 300;
  line-height: .9;
  margin-top: .4rem;
}

/* ============================================================
   FOUNDER SECTION
============================================================ */
.founder {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.founder__image {
  position: relative;
  border-radius: 38px;
  overflow: hidden;
  min-height: 650px;
  background: #ead9c8;
}

.founder__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  object-position: bottom center;
}

.founder__quote {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 6.2rem);
  line-height: .92;
  font-weight: 300;
  letter-spacing: -.04em;
  margin: 1rem 0 1.6rem;
}

.founder p {
  line-height: 1.95;
  color: var(--opal-brown);
  max-width: 700px;
}

.founder__facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .9rem;
  margin-top: 2rem;
}

.fact {
  border: 1px solid var(--opal-line);
  border-radius: 20px;
  padding: 1rem;
}

.fact b {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 400;
  display: block;
}

.fact span {
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--opal-muted);
}

/* ============================================================
   PRODUCT CARDS & GRID
============================================================ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.product-card {
  background: var(--opal-porcelain);
  border: 1px solid var(--opal-line);
  border-radius: 28px;
  overflow: hidden;
  transition: .35s var(--ease);
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 80px rgba(70, 35, 15, .12);
}

.product-card__image {
  aspect-ratio: 1/1;
  overflow: hidden;
  background: #f1e4d6;
  position: relative;
  display: block;
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}

.product-card:hover .product-card__image img {
  transform: scale(1.06);
}

.product-card__image:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(23, 18, 15, .08), rgba(23, 18, 15, .08) 38%, rgba(23, 18, 15, .78));
  opacity: .95;
  z-index: 1;
  transition: .45s var(--ease);
}

.product-card:hover .product-card__image:after {
  opacity: 1;
  background: linear-gradient(180deg, rgba(232, 93, 26, .08), rgba(23, 18, 15, .04) 34%, rgba(23, 18, 15, .86));
}

.product-card__overlay {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 2;
  color: #fff;
  display: grid;
  gap: .45rem;
}

.product-card__overlay .product-card__meta {
  margin: 0;
  color: #ffd0b4;
  text-shadow: 0 4px 18px rgba(0, 0, 0, .32);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 900;
}

.product-card__overlay h3 {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.5vw, 2.25rem);
  line-height: .96;
  font-weight: 400;
  margin: 0;
  color: #fff;
  text-shadow: 0 8px 28px rgba(0, 0, 0, .35);
}

.product-card__overlay .price-row {
  margin-top: .1rem;
}

.product-card__overlay .price {
  color: #fff;
}

.product-card__overlay .old-price {
  color: rgba(255, 255, 255, .6);
}

.product-card__body {
  padding: 1.1rem 1.35rem 1.35rem;
}

.product-card__body .product-card__meta,
.product-card__body h3,
.product-card__body .price-row {
  display: none;
}

.price-row {
  display: flex;
  gap: .75rem;
  align-items: center;
  margin-top: 1rem;
}

.price {
  font-weight: 900;
  color: var(--opal-orange);
}

.old-price {
  text-decoration: line-through;
  color: var(--opal-muted);
  font-size: .85rem;
}

/* ============================================================
   TABS
============================================================ */
.tabs {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  margin: 0 0 2rem;
}

.tab-btn {
  border: 1px solid var(--opal-line);
  background: transparent;
  border-radius: 999px;
  padding: .76rem 1rem;
  color: var(--opal-brown);
  cursor: pointer;
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 900;
  transition: .25s var(--ease);
}

.tab-btn.is-active,
.tab-btn:hover {
  background: var(--opal-orange);
  border-color: var(--opal-orange);
  color: #fff;
}

/* ============================================================
   PRODUCT GROUPS (FILTER + RESULTS)
============================================================ */
.products-page .product-groups {
  display: grid;
  grid-template-columns: minmax(220px, 260px) minmax(0, 1fr);
  align-items: start;
  gap: 2rem;
}

.products-page .filter-panel {
  grid-column: 1;
  grid-row: 1 / span 2;
  width: 100%;
  z-index: 1;
}

.products-page .products-results-head {
  grid-column: 2;
  grid-row: 1;
  min-width: 0;
}

.products-page .product-grid {
  grid-column: 2;
  grid-row: 2;
  min-width: 0;
}

.filter-panel {
  position: sticky;
  top: 6rem;
  align-self: start;
  border: 1px solid var(--opal-line);
  border-radius: 28px;
  padding: 1.2rem;
  background: rgba(255, 250, 243, .68);
}

.filter-panel h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  margin: 1rem 0 .55rem;
}

.filter-panel h3:first-child {
  margin-top: 0;
}

.filter-panel button {
  display: block;
  width: 100%;
  text-align: left;
  border: 0;
  background: transparent;
  border-radius: 12px;
  padding: .6rem .65rem;
  margin: .12rem 0;
  color: var(--opal-brown);
  cursor: pointer;
}

.filter-panel button:hover,
.filter-panel button.is-active {
  background: var(--opal-orange);
  color: #fff;
}

.products-results-head {
  border: 1px solid var(--opal-line);
  border-radius: 22px;
  background: rgba(255, 250, 243, .78);
  padding: 1rem 1.2rem;
  margin: 0 0 1.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: background .35s var(--ease), box-shadow .35s var(--ease), transform .35s var(--ease);
}

.products-results-head p {
  font-size: .75rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 900;
  color: var(--opal-orange);
}

.products-mobile-cue {
  display: none;
  font-family: var(--font-soft);
  font-style: italic;
  color: var(--opal-brown);
}

.products-results-head.is-flashing {
  background: #fff2e9;
  box-shadow: 0 16px 48px rgba(232, 93, 26, .16);
  transform: translateY(-2px);
}

/* ============================================================
   STORIES SECTION
============================================================ */
.stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
}

.story-card {
  border-radius: 30px;
  padding: 2rem;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
}

.story-card .stars {
  color: #ffb388;
  letter-spacing: .15em;
}

.story-card blockquote {
  font-family: var(--font-display);
  font-size: 1.6rem;
  line-height: 1.25;
  font-style: italic;
  margin: 1.2rem 0;
  color: rgba(251, 242, 231, .9);
}

.story-card p {
  color: rgba(251, 242, 231, .64);
  font-size: .86rem;
  line-height: 1.7;
}

/* ============================================================
   AWARDS SECTION
============================================================ */
.awards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.award-card {
  background: var(--opal-porcelain);
  border: 1px solid var(--opal-line);
  border-radius: 30px;
  overflow: hidden;
}

.award-card__image {
  height: 430px;
  background: #e9ddd2;
}

.award-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.award-card__body {
  padding: 1.5rem;
}

.award-card h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.1;
}

.award-card p {
  margin-top: .8rem;
  color: var(--opal-brown);
  line-height: 1.75;
}

/* ============================================================
   ABOUT SECTION
============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.about-panel {
  border: 1px solid var(--opal-line);
  border-radius: 34px;
  padding: clamp(1.4rem, 3vw, 3rem);
  background: rgba(255, 250, 243, .6);
}

.about-panel h3 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 300;
  line-height: .95;
  margin-bottom: 1rem;
}

.about-panel p {
  line-height: 1.95;
  color: var(--opal-brown);
  margin-bottom: 1rem;
}

.profile-list {
  display: grid;
  gap: .85rem;
}

.profile-list div {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 1rem;
  border-top: 1px solid var(--opal-line);
  padding-top: .85rem;
}

.profile-list b {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--opal-orange);
  font-weight: 400;
}

.profile-list h4 {
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: .2rem;
}

/* ============================================================
   INSIGHTS SECTION (general)
============================================================ */
.insights-grid {
  display: grid;
  grid-template-columns: 1.2fr .9fr .9fr;
  gap: 1.2rem;
}

.insight-card {
  min-height: 420px;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  background: var(--opal-charcoal);
  color: #fff;
  display: flex;
  align-items: end;
}

.insight-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .72;
  transition: transform 1s var(--ease);
}

.insight-card:hover img {
  transform: scale(1.07);
}

.insight-card:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .78));
}

.insight-card__text {
  position: relative;
  z-index: 1;
  padding: 1.6rem;
}

.insight-card__text span {
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #ffd6bd;
}

.insight-card h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
  margin: .7rem 0;
}

.insight-card p {
  line-height: 1.65;
  color: rgba(255, 255, 255, .78);
}

/* ============================================================
   FAQ SECTION
============================================================ */
.faq-list {
  max-width: 1000px;
  margin: auto;
}

.faq-item {
  border-bottom: 1px solid var(--opal-line);
}

.faq-q {
  width: 100%;
  border: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  gap: 1rem;
  padding: 1.35rem 0;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.2vw, 2rem);
  font-weight: 400;
}

.faq-a {
  height: 0;
  overflow: hidden;
  color: var(--opal-brown);
  line-height: 1.85;
}

.faq-a div {
  padding: 0 0 1.35rem;
}

.faq-item.is-open .faq-a {
  height: auto;
}

/* ============================================================
   CONTACT SECTION
============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 1.3rem;
}

.contact-card,
.contact-form {
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 32px;
  padding: clamp(1.4rem, 3vw, 3rem);
  background: rgba(255, 255, 255, .04);
}

.contact-card h3,
.contact-form h3 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 1rem;
}

.contact-list {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.contact-list p {
  color: rgba(251, 242, 231, .72);
  line-height: 1.7;
}

.contact-list b {
  display: block;
  color: #fff;
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: .25rem;
}

.form-grid {
  display: grid;
  gap: .9rem;
}

.form-grid input,
.form-grid textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .08);
  color: #fff;
  border-radius: 16px;
  padding: 1rem;
  outline: none;
}

.form-grid textarea {
  min-height: 150px;
  resize: vertical;
}

/* ============================================================
   FOOTER
============================================================ */
.site-footer {
  background: #0e0a08;
  color: rgba(251, 242, 231, .75);
  padding: 3rem clamp(1.1rem, 4vw, 4rem);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 2rem;
}

.site-footer img {
  width: 70px;
}

.site-footer h4 {
  color: #fff;
  font-size: .75rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: .9rem;
}

.site-footer a {
  display: block;
  margin: .35rem 0;
  color: rgba(251, 242, 231, .72);
}

.site-footer a[data-filter-link] {
  cursor: pointer;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  margin-top: 2rem;
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ============================================================
   PRODUCT DETAIL PAGE
============================================================ */
.product-page {
  min-height: 100svh;
  padding: 5.5rem clamp(1.1rem, 4vw, 4rem) 5rem;
}

.product-detail {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.product-detail__image {
  position: sticky;
  top: 7rem;
  border-radius: 34px;
  overflow: hidden;
  background: var(--opal-ivory);
  border: 1px solid var(--opal-line);
}

.product-detail__image img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.product-detail__content h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 7rem);
  font-weight: 300;
  line-height: .85;
  letter-spacing: -.045em;
}

.product-detail__content .desc {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--opal-brown);
  margin: 1.5rem 0;
}

.detail-lists {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 2rem 0;
}

.detail-box {
  border: 1px solid var(--opal-line);
  border-radius: 24px;
  padding: 1.2rem;
  background: rgba(255, 250, 243, .62);
}

.detail-box h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: .8rem;
}

.detail-box li {
  margin: .55rem 0 0 1.1rem;
  color: var(--opal-brown);
  line-height: 1.6;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin: 1rem 0;
}

.chip {
  border: 1px solid var(--opal-line);
  border-radius: 999px;
  padding: .5rem .75rem;
  color: var(--opal-brown);
  font-size: .76rem;
}

/* ============================================================
   INSIGHTS PAGE (extra)
============================================================ */
.insights-page {
  background: var(--opal-cream);
}

.page-hero {
  min-height: 72svh;
  display: grid;
  align-items: end;
  padding: 9rem clamp(1.1rem, 5vw, 5rem) 5rem;
  background: radial-gradient(circle at 80% 20%, rgba(232, 93, 26, .24), transparent 34%),
              linear-gradient(135deg, var(--opal-charcoal), #2a1810);
  color: var(--opal-cream);
  overflow: hidden;
  position: relative;
}

.page-hero:before {
  content: attr(data-ghost);
  position: absolute;
  left: 4vw;
  bottom: -3vw;
  font-family: var(--font-display);
  font-size: clamp(6rem, 16vw, 17rem);
  line-height: .72;
  color: rgba(255, 255, 255, .055);
  white-space: nowrap;
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 980px;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 10rem);
  font-weight: 300;
  line-height: .82;
  letter-spacing: -.055em;
  text-wrap: balance;
}

.page-hero h1 em {
  font-family: var(--font-soft);
  color: #ffb88f;
}

.editorial-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: start;
}

.article-card {
  border: 1px solid var(--opal-line);
  border-radius: 34px;
  background: rgba(255, 250, 243, .72);
  overflow: hidden;
}

.article-card img {
  width: 100%;
  height: min(54vw, 560px);
  object-fit: cover;
}

.article-card__body {
  padding: clamp(1.25rem, 3vw, 3rem);
}

.article-card h2 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 5.8rem);
  line-height: .9;
  font-weight: 300;
  letter-spacing: -.04em;
}

.article-card p,
.side-note p {
  line-height: 1.95;
  color: var(--opal-brown);
  margin-top: 1rem;
}

.article-list {
  display: grid;
  gap: 1rem;
}

.side-note {
  border: 1px solid var(--opal-line);
  border-radius: 28px;
  padding: 1.4rem;
  background: var(--opal-porcelain);
  position: sticky;
  top: 6rem;
}

.side-note h3 {
  font-family: var(--font-display);
  font-size: 2.1rem;
  line-height: 1;
  font-weight: 400;
}

.mini-story {
  border: 1px solid var(--opal-line);
  border-radius: 28px;
  overflow: hidden;
  background: var(--opal-porcelain);
}

.mini-story img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.mini-story__body {
  padding: 1.2rem;
}

.mini-story h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
  font-weight: 400;
}

.ritual-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.ritual-step {
  border: 1px solid var(--opal-line);
  border-radius: 28px;
  padding: 1.3rem;
  background: rgba(255, 250, 243, .62);
}

.ritual-step b {
  display: block;
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 300;
  color: var(--opal-orange);
}

.ritual-step h3 {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 400;
  margin: .4rem 0;
}

.ritual-step p {
  line-height: 1.75;
  color: var(--opal-brown);
}

/* ============================================================
   MEDIA QUERIES
============================================================ */
@media (max-width: 1180px) {
  .main-nav {
    gap: .9rem;
  }

  .main-nav > a,
  .mega-trigger,
  .nav-cta {
    font-size: .62rem;
    letter-spacing: .13em;
  }

  .brand-logo span {
    letter-spacing: .1em;
  }

  .mega-menu {
    width: min(820px, calc(100vw - 24px));
  }
}

@media (max-width: 1100px) {
  .collections-grid,
  .awards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .founder,
  .about-grid,
  .contact-grid,
  .product-detail {
    grid-template-columns: 1fr;
  }

  .founder__image,
  .product-detail__image {
    min-height: 440px;
    position: relative;
    top: auto;
  }

  .product-groups {
    grid-template-columns: 1fr;
  }

  .products-page .product-groups {
    grid-template-columns: 1fr;
  }

  .products-page .filter-panel,
  .products-page .products-results-head,
  .products-page .product-grid {
    grid-column: 1;
    grid-row: auto;
  }

  .filter-panel {
    position: relative;
    top: auto;
  }

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

  .insight-card:first-child {
    grid-column: 1 / -1;
  }

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

@media (max-width: 980px) {
  .site-header {
    padding: .75rem 1rem;
  }

  .mobile-toggle {
    display: block;
  }

  .nav-cta {
    display: none;
  }

  .main-nav {
    position: fixed;
    inset: 76px 12px auto 12px;
    max-height: calc(100svh - 92px);
    overflow-y: auto;
    overflow-x: hidden;
    background: rgba(255, 250, 243, .98);
    border: 1px solid var(--opal-line);
    border-radius: 24px;
    padding: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: .35rem;
    box-shadow: 0 22px 70px rgba(55, 28, 12, .16);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav > a,
  .mega-trigger {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    padding: .88rem .9rem;
    border-radius: 14px;
    color: var(--opal-charcoal);
  }

  .main-nav > a:hover,
  .mega-trigger:hover {
    background: rgba(232, 93, 26, .08);
  }

  .mega-wrap {
    width: 100%;
    position: relative;
  }

  .mega-trigger:after {
    content: "+";
    font-size: 1rem;
    color: var(--opal-orange);
  }

  .mega-wrap.is-open .mega-trigger:after {
    content: "−";
  }

  .mega-menu {
    display: none;
    position: static;
    left: auto;
    right: auto;
    top: auto;
    width: 100%;
    grid-template-columns: 1fr;
    gap: .6rem;
    opacity: 1;
    visibility: visible;
    transform: none !important;
    box-shadow: none;
    margin: .25rem 0 .75rem;
    padding: 2.8rem .85rem .85rem;
    border-radius: 18px;
    background: rgba(251, 242, 231, .8);
  }

  .mega-wrap.is-open .mega-menu,
  .mega-wrap.is-pinned .mega-menu {
    display: grid;
    transform: none;
  }

  .mega-col {
    border-top: 1px solid var(--opal-line);
    padding-top: .65rem;
  }

  .mega-col:first-child {
    border-top: 0;
  }

  .mega-col h4 {
    font-size: 1.35rem;
    margin-bottom: .4rem;
  }

  .mega-col a {
    padding: .55rem .65rem;
    margin-left: 0;
  }

  .mega-close {
    display: grid;
    right: .75rem;
    top: .65rem;
  }

  .hero__content {
    width: min(680px, 94vw);
    padding-top: 7.2rem;
  }

  .hero h1 {
    font-size: clamp(3.8rem, 15vw, 7.2rem);
    line-height: .86;
    max-width: 88vw;
  }

  .hero-word--elevated {
    font-size: .68em;
  }

  .editorial-grid,
  .ritual-steps {
    grid-template-columns: 1fr;
  }

  .side-note {
    position: relative;
    top: auto;
  }

  .products-results-head {
    position: sticky;
    top: 72px;
    z-index: 20;
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 1rem;
  }

  .products-mobile-cue {
    display: block;
  }

  .filter-panel {
    display: grid;
    grid-template-columns: 1fr;
    gap: .2rem;
    max-height: none;
  }

  .filter-panel button,
  .tab-btn {
    min-height: 44px;
  }
}

@media (max-width: 780px) {
  .main-nav {
    inset: 72px 1rem auto 1rem;
    padding: 1.2rem;
  }

  .mega-menu {
    width: 100%;
    grid-template-columns: 1fr;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    margin-top: .8rem;
    padding: 1rem;
  }

  .hero__content {
    padding-left: 1.1rem;
  }

  .hero h1 {
    font-size: clamp(4.5rem, 22vw, 7.6rem);
  }

/*  .hero__shade {
   background: linear-gradient(90deg, rgba(23, 18, 15, .76), rgba(23, 18, 15, .38) 62%, rgba(23, 18, 15, .06));
  } */

  .hero__media img {
    object-position: 62% center;
  }

  .section-head {
    display: block;
  }

  .collections-grid,
  .product-grid,
  .stories-grid,
  .awards-grid,
  .insights-grid,
  .detail-lists,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .collection-card:nth-child(even) {
    margin-top: 0;
  }

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

  .award-card__image {
    height: 340px;
  }

  .site-header {
    padding: .8rem 1rem;
  }

  .brand-logo span {
    display: none;
  }
}

@media (max-width: 560px) {
  .brand-logo img {
    width: 42px;
    height: 42px;
  }

  .mobile-toggle {
    padding: .68rem .82rem;
  }

  .main-nav {
    inset: 66px 8px auto 8px;
    max-height: calc(100svh - 76px);
  }

  .hero__media img {
    object-position: 38% center;
  }

  .hero__content {
    padding-top: 7rem;
    padding-bottom: 6rem;
  }

  .hero h1 {
    font-size: clamp(3.3rem, 17vw, 5.35rem);
    line-height: .88;
  }

  .hero__copy {
    font-size: .96rem;
    max-width: 84vw;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .product-card__overlay {
    left: .82rem;
    right: .82rem;
    bottom: .82rem;
  }

  .product-card__overlay h3 {
    font-size: 1.55rem;
  }

  .ritual-step {
    border-radius: 22px;
  }

  .page-hero {
    min-height: 64svh;
  }

  .page-hero h1 {
    font-size: clamp(3.2rem, 17vw, 6rem);
  }

  .products-results-head {
    top: 66px;
  }
}

@media (min-width: 981px) {
  .mega-wrap.is-open .mega-menu {
    transform: translate(-50%, 0);
  }
}

@media (max-width: 780px) {
  .hero h1 {
    font-size: clamp(2.5rem, 12vw, 4rem) !important;
  }
  .eyebrow {
  font-size: .52rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--opal-charcoal) .86;
}
}

/* ============================================================
   HERO REFINEMENT — MATCH MOCKUP MORE CLOSELY
   Only adjusts hero image overlay and hero typography.
============================================================ */
:root {
  --font-script: "Allura", "Ballet", "Snell Roundhand", cursive;
}

.hero {
  background: #f6ebdf;
}

.hero__media {
  z-index: 1;
}

.hero__media img {
  object-position: center right;
  filter: brightness(1.06) contrast(1.02) saturate(1.02);
}

.hero__shade {
  opacity: 1 !important;
  background:
    linear-gradient(90deg,
      rgba(248, 240, 230, 0.94) 0%,
      rgba(248, 240, 230, 0.88) 19%,
      rgba(248, 240, 230, 0.62) 40%,
      rgba(248, 240, 230, 0.28) 59%,
      rgba(248, 240, 230, 0.10) 74%,
      rgba(248, 240, 230, 0.00) 88%),
    linear-gradient(180deg,
      rgba(255, 255, 255, 0.04) 0%,
      rgba(255, 255, 255, 0.02) 40%,
      rgba(255, 255, 255, 0.00) 100%);
}

.hero__content {
  width: min(46vw, 590px);
  max-width: 590px;
  padding-top: clamp(8rem, 14vh, 10.4rem);
  padding-right: clamp(1rem, 2vw, 1.5rem);
  padding-left: clamp(1.25rem, 4.4vw, 4rem);
  padding-bottom: 7rem;
  color: #1b1512;
}

.hero .eyebrow {
  color: #17120f;
  font-size: clamp(0.68rem, 0.85vw, 0.95rem);
  letter-spacing: 0.27em;
  font-weight: 800;
  margin-bottom: 1.25rem;
  text-shadow: none;
}

.hero h1 {
  color: #1a1410;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(4.7rem, 7.6vw, 7.25rem);
  font-weight: 300;
  line-height: 0.88;
  letter-spacing: -0.04em;
  max-width: 540px;
  text-shadow: none;
}

.hero h1 .line {
  overflow: visible;
}

.hero h1 .line span,
.hero h1 .line .frankincense,
.hero h1 .line .qasil {
  color: #1a1410 !important;
  text-shadow: none !important;
  font-family: inherit;
  font-style: normal;
  font-weight: 300;
}

.hero h1 .line:nth-child(2) {
  margin-top: 0.06em;
  margin-bottom: 0.02em;
}

.hero h1 .line:nth-child(2) span,
.hero h1 .line:nth-child(2) i {
  font-family: var(--font-script) !important;
  font-style: normal !important;
  font-weight: 400 !important;
  font-size: clamp(3rem, 5vw, 5.25rem);
  line-height: 0.78;
  letter-spacing: 0.01em;
  color: #c17331 !important;
  background: transparent !important;
  text-shadow: none !important;
}

.hero h1 .line:nth-child(2) i {
  display: inline-block;
}

.hero__copy {
  margin-top: 1.5rem;
  max-width: 430px;
  color: #2f2620;
  line-height: 1.65;
  font-size: clamp(1rem, 1.28vw, 1.18rem);
}

.hero__actions {
  margin-top: 2rem;
}

.hero__actions .btn--ghost {
  color: var(--opal-orange);
  border-color: rgba(232, 93, 26, 0.45);
  background: rgba(255, 255, 255, 0.12);
}

.hero__actions .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.34);
  color: var(--opal-orange);
}

@media (max-width: 980px) {
  .hero__content {
    width: min(92vw, 34rem);
    max-width: 34rem;
    padding-top: 6.8rem;
    padding-right: 1rem;
    padding-left: 1rem;
    padding-bottom: 6rem;
  }

  .hero__media img {
    object-position: 72% center;
    filter: brightness(1.05) contrast(1.02) saturate(1.02);
  }

  .hero__shade {
    background:
      linear-gradient(90deg,
        rgba(248, 240, 230, 0.82) 0%,
        rgba(248, 240, 230, 0.72) 22%,
        rgba(248, 240, 230, 0.42) 46%,
        rgba(248, 240, 230, 0.16) 68%,
        rgba(248, 240, 230, 0.00) 88%),
      linear-gradient(180deg,
        rgba(255, 255, 255, 0.10) 0%,
        rgba(255, 255, 255, 0.03) 44%,
        rgba(255, 255, 255, 0.00) 100%);
  }

  .hero h1 {
    font-size: clamp(3.7rem, 14.5vw, 5.45rem) !important;
    line-height: 0.92;
    max-width: 80vw;
  }

  .hero h1 .line:nth-child(2) span,
  .hero h1 .line:nth-child(2) i {
    font-size: clamp(2.45rem, 10.2vw, 4.1rem);
    line-height: 0.82;
  }

  .hero__copy {
    max-width: 23rem;
  }
}

@media (max-width: 560px) {
  .hero__media img {
    object-position: 75% center;
  }

  .hero__shade {
    background:
      linear-gradient(90deg,
        rgba(248, 240, 230, 0.76) 0%,
        rgba(248, 240, 230, 0.64) 20%,
        rgba(248, 240, 230, 0.35) 42%,
        rgba(248, 240, 230, 0.12) 64%,
        rgba(248, 240, 230, 0.00) 86%),
      linear-gradient(180deg,
        rgba(255, 255, 255, 0.08) 0%,
        rgba(255, 255, 255, 0.02) 42%,
        rgba(255, 255, 255, 0.00) 100%);
  }

  .hero__content {
    padding-top: 6.7rem;
    padding-bottom: 5.8rem;
  }

  .hero .eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.22em;
  }

  .hero h1 {
    font-size: clamp(3.25rem, 15vw, 4.95rem) !important;
    max-width: 86vw;
  }

  .hero h1 .line:nth-child(2) {
    margin-top: 0.08em;
    margin-bottom: 0.02em;
  }

  .hero h1 .line:nth-child(2) span,
  .hero h1 .line:nth-child(2) i {
    font-size: clamp(2.3rem, 11vw, 3.65rem);
  }

  .hero__copy {
    font-size: 0.99rem;
    line-height: 1.6;
    max-width: 92%;
  }
}
