.hero {
  min-height: min(820px, calc(100vh - 35px));
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(100deg, #4b3427 0%, #71513c 48%, #b69678 100%);
  background-image: var(--hero-image);
  background-position: center;
  background-size: cover;
  color: #fff;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(28, 17, 10, 0.78),
    rgba(28, 17, 10, 0.15) 70%
  );
}
.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.16;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");
}
.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 60px;
}
.hero-copy {
  max-width: 820px;
}
.hero h1 {
  color: #fff;
  max-width: 820px;
  letter-spacing: -0.025em;
  text-wrap: balance;
}
.hero-intro {
  max-width: 580px;
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.86);
}
.hero .eyebrow {
  color: #ead7c3;
}
.hero-actions {
  display: flex;
  gap: 13px;
  margin-top: 30px;
}
.hero-note {
  display: flex;
  align-items: center;
  gap: 15px;
  width: 230px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}
.hero-note-mark {
  display: grid;
  place-items: center;
  flex: 0 0 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  font: 600 1.2rem var(--heading);
}
.hero-note p {
  margin: 0;
  font-size: 0.72rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.72);
}
.hero-note strong {
  display: block;
  color: #fff;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.scroll-cue {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 13px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}
.scroll-cue:hover {
  color: #fff;
}
.scroll-cue i {
  display: block;
  width: 1px;
  height: 34px;
  background: #fff;
  animation: cueMove 1.8s ease-in-out infinite;
}
.home-signature {
  background: #f0e9e1;
  color: var(--primary);
  padding: 17px 0;
}
.home-signature .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 4vw, 60px);
  font: 600 0.68rem var(--body);
  text-transform: uppercase;
  letter-spacing: 0.16em;
}
.home-signature i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
}
.categories {
  background: linear-gradient(180deg, #f8f7f5, #f3efea);
}
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
  gap: 22px;
}
.category-card {
  position: relative;
  background: #ded5cd;
  border: 1px solid rgba(81, 56, 37, 0.1);
  border-radius: 4px;
  box-shadow: 0 8px 24px rgba(52, 35, 25, 0.06);
}
.category-card:nth-child(even) {
  margin: 0;
}
.category-image {
  aspect-ratio: 3/4;
}
.category-image:after {
  content: "";
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(transparent, rgba(30, 18, 10, 0.38));
  pointer-events: none;
}
.category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.category-card:hover img {
  transform: scale(1.04);
}
.category-info {
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(transparent, rgba(29, 18, 11, 0.86));
  backdrop-filter: none;
  padding: 60px 22px 22px;
  border-radius: 0;
  color: #fff;
  transition: padding-bottom 0.35s ease;
}
.category-card:hover .category-info {
  transform: none;
  padding-bottom: 27px;
}
.category-info h3 {
  font-size: 1.55rem;
  color: #fff;
}
.category-info span {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.75);
}
.split-story {
  overflow: hidden;
}
.split-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  min-height: 660px;
  border-radius: var(--radius);
}
.story-image {
  background: linear-gradient(145deg, #b69577, #6e4c36);
  border-radius: var(--radius) 0 0 var(--radius);
}
.story-seal {
  position: absolute;
  right: 28px;
  bottom: 28px;
  display: grid;
  place-items: center;
  width: 116px;
  height: 116px;
  border-radius: 50%;
  background: #f5efe8;
  color: var(--primary);
  text-align: center;
  box-shadow: 0 15px 35px rgba(35, 22, 14, 0.2);
}
.story-seal:before {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(81, 56, 37, 0.22);
  border-radius: 50%;
}
.story-seal strong {
  font: 600 1.7rem/1 var(--heading);
}
.story-seal span {
  margin-top: -25px;
  font-size: 0.56rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.story-copy {
  background: #f5f1ec;
  padding: clamp(45px, 7vw, 100px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  border-radius: 0 var(--radius) var(--radius) 0;
}
.story-lead {
  font: 500 clamp(1.35rem, 2vw, 1.7rem) / 1.45 var(--heading);
  color: var(--primary);
}
.lifestyle-card {
  min-height: 560px;
  padding: 70px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: end;
  border-radius: var(--radius);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(40, 26, 17, 0.78), rgba(40, 26, 17, 0.05)),
    linear-gradient(135deg, #8d674c, #c5a98f);
  box-shadow: var(--shadow);
}
.lifestyle-card h2 {
  color: #fff;
  max-width: 650px;
}
.lifestyle-card .eyebrow {
  color: #f0dac7;
}
.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.value-grid article {
  padding: 44px 30px;
  border-right: 1px solid var(--border);
  transition:
    background 0.3s ease,
    transform 0.3s ease;
}
.value-grid article:hover {
  background: #faf7f3;
  transform: translateY(-5px);
}
.value-grid article:last-child {
  border: 0;
}
.value-grid span {
  color: var(--accent);
  font: 600 1.4rem var(--heading);
}
.value-grid h3 {
  margin-top: 25px;
}
.testimonials {
  background: linear-gradient(145deg, #f8f7f5, #f2ece6);
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-grid blockquote {
  margin: 0;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(81, 56, 37, 0.06);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
}
.testimonial-grid blockquote p {
  font: 500 1.5rem/1.4 var(--heading);
}
.stars {
  color: var(--accent);
  letter-spacing: 0.2em;
  margin-bottom: 18px;
}
.testimonial-grid cite {
  font-style: normal;
  font-size: 0.78rem;
  color: var(--muted);
}
.trust-strip {
  color: #fff;
  padding: 24px 0;
}
.trust-strip .container {
  display: flex;
  justify-content: space-around;
  gap: 24px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.7rem;
  font-weight: 700;
}

/* Match collection cards to the clean product-card treatment. */
.category-card {
  overflow: hidden;
  background: transparent;
  border: 0;
  border-radius: var(--radius);
  box-shadow: none;
}
.category-image {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--bg);
}
.category-image:after {
  display: block;
  inset: 48% 0 0;
  background: linear-gradient(transparent, rgba(32, 20, 12, 0.3));
}
.category-info {
  position: absolute;
  z-index: 2;
  left: 16px;
  right: 16px;
  bottom: 16px;
  min-height: 112px;
  padding: 22px 58px 20px 22px;
  background: rgba(250, 247, 242, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 18px;
  color: var(--text);
  box-shadow: 0 14px 35px rgba(35, 23, 15, 0.16);
  backdrop-filter: blur(12px);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}
.category-card:hover .category-info {
  padding: 22px 58px 20px 22px;
  transform: translateY(-5px);
  box-shadow: 0 20px 42px rgba(35, 23, 15, 0.22);
}
.category-info:before {
  content: "";
  position: absolute;
  left: 22px;
  top: 17px;
  width: 34px;
  height: 2px;
  background: var(--accent);
  transform-origin: left;
  transition: width 0.35s ease;
}
.category-card:hover .category-info:before {
  width: 52px;
}
.category-info h3 {
  padding: 7px 0 2px;
  margin: 0;
  color: var(--primary);
  font: 600 clamp(1.35rem, 1.8vw, 1.65rem) / 1.15 var(--heading);
}
.category-info span {
  display: block;
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.04em;
}
.category-info i {
  position: absolute;
  right: 20px;
  top: 50%;
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  border: 1px solid rgba(81, 56, 37, 0.22);
  border-radius: 50%;
  color: var(--primary);
  font-style: normal;
  transform: translateY(-50%);
  transition:
    background 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
}
.category-card:hover .category-info i {
  background: var(--primary);
  color: #fff;
  transform: translate(3px, -50%);
}
.home-page .product-card .added_to_cart {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 6;
  left: 14px;
  right: 14px;
  bottom: 72px;
  min-height: 40px;
  padding: 9px 15px;
  border-radius: 999px;
  background: #fff;
  color: var(--primary);
  box-shadow: 0 8px 24px rgba(45, 31, 22, 0.16);
  font-size: 0.7rem;
  font-weight: 700;
  text-align: center;
}
.home-page .product-card .added_to_cart:hover {
  background: var(--primary);
  color: #fff;
}
.home-page .product-card-actions .button.loading {
  position: relative;
  pointer-events: none;
  color: transparent !important;
  opacity: 0.92;
}
.home-page .product-card-actions .button.loading:after {
  content: "" !important;
  position: absolute;
  left: 50%;
  top: 50%;
  display: block !important;
  width: 18px;
  height: 18px;
  margin: -9px 0 0 -9px;
  border: 2px solid rgba(255, 255, 255, 0.38);
  border-top-color: #fff;
  border-radius: 50%;
  animation: elarionSpin 0.7s linear infinite;
}
.home-page .product-card-actions .button.added {
  color: #fff !important;
}

/* Premium homepage finishing details. */
.home-page .section-heading {
  position: relative;
}
.home-page .section-heading > .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.home-page .section-heading > .eyebrow:before,
.home-page .section-heading > .eyebrow:after {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--accent);
}
.home-page .heading-row > .eyebrow:before,
.home-page .heading-row > .eyebrow:after,
.home-page .heading-row .eyebrow:before,
.home-page .heading-row .eyebrow:after {
  display: none;
}
.home-page .products-section {
  position: relative;
  overflow: hidden;
}
.home-page .products-section:before {
  content: "";
  position: absolute;
  left: -170px;
  top: 40px;
  width: 320px;
  height: 320px;
  border: 1px solid rgba(198, 161, 110, 0.15);
  border-radius: 50%;
  pointer-events: none;
}
.home-page .split-story + .products-section {
  background: #f8f4ef;
}
.home-page .product-card-media {
  border: 1px solid rgba(81, 56, 37, 0.07);
  box-shadow: 0 12px 32px rgba(52, 35, 25, 0.06);
}
.home-page .product-card-content {
  padding-top: 20px;
}
.home-page .product-card h2 {
  transition: color 0.25s ease;
}
.home-page .product-card:hover h2 {
  color: var(--secondary);
}
.lifestyle-content {
  padding-left: 25px;
  border-left: 2px solid var(--accent);
}
.lifestyle-card:after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: calc(var(--radius) - 5px);
  pointer-events: none;
}
.value-grid article {
  position: relative;
  overflow: hidden;
}
.value-grid article > span {
  font-size: 2.25rem;
  color: rgba(198, 161, 110, 0.65);
}
.value-grid article:after {
  content: attr(data-number);
  position: absolute;
  right: -8px;
  bottom: -38px;
  font: 600 8rem/1 var(--heading);
  color: rgba(81, 56, 37, 0.025);
  pointer-events: none;
}
.testimonial-grid blockquote {
  position: relative;
  overflow: hidden;
}
.testimonial-grid blockquote:before {
  content: "“";
  position: absolute;
  right: 22px;
  top: 8px;
  color: rgba(198, 161, 110, 0.18);
  font: 600 7rem/1 var(--heading);
}
.testimonial-grid blockquote > * {
  position: relative;
  z-index: 1;
}
.trust-strip span {
  position: relative;
  padding-left: 17px;
}
.trust-strip span:before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.55rem;
}
