:root {
  --gorg-bg: #f5f1e8;
  --gorg-bg-soft: #f8f5ef;
  --gorg-surface: rgba(255, 255, 255, 0.72);
  --gorg-surface-strong: #ffffff;
  --gorg-text: #171717;
  --gorg-muted: #6d675f;
  --gorg-line: rgba(62, 42, 31, 0.12);
  --gorg-line-strong: rgba(62, 42, 31, 0.22);
  --gorg-brown: #3e2a1f;
  --gorg-sand: #cdbba3;
  --gorg-gold: #b7935d;
  --gorg-shadow: 0 20px 45px rgba(34, 23, 16, 0.08);
  --gorg-shadow-soft: 0 14px 30px rgba(34, 23, 16, 0.06);
  --gorg-radius: 28px;
  --gorg-radius-md: 24px;
  --gorg-radius-sm: 18px;
  --gorg-max: 1280px;
  --header-height: 150px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--gorg-bg);
  color: var(--gorg-text);
  font-family: "Quicksand", "Nunito", Arial, sans-serif;
  overflow-x: hidden;
}

img,
video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.home-page {
  overflow: clip;
}

.home-shell {
  width: min(var(--gorg-max), calc(100% - 32px));
  margin: 0 auto;
}

/* =========================
   HEADER OVERLAY SUPPORT
========================= */

.lux-nav {
  transition:
    background-color 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease,
    backdrop-filter 0.3s ease;
}

.lux-nav.lux-nav--overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
  border: none !important;
  outline: none !important;
  backdrop-filter: none !important;
}

.lux-nav.lux-nav--overlay .lux-nav__inner {
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
  backdrop-filter: none !important;
}

.lux-nav.lux-nav--overlay::before,
.lux-nav.lux-nav--overlay::after,
.lux-nav.lux-nav--overlay .lux-nav__inner::before,
.lux-nav.lux-nav--overlay .lux-nav__inner::after,
.lux-nav.lux-nav--scrolled::before,
.lux-nav.lux-nav--scrolled::after,
.lux-nav.lux-nav--scrolled .lux-nav__inner::before,
.lux-nav.lux-nav--scrolled .lux-nav__inner::after {
  content: none !important;
  display: none !important;
}

.lux-nav.lux-nav--overlay .lux-nav__brand,
.lux-nav.lux-nav--overlay .lux-nav__links a {
  color: #f7f1e8 !important;
}

/* =========================
   SCROLLED HEADER
========================= */

.lux-nav.lux-nav--scrolled {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(228, 221, 209, 0.94) !important;
  backdrop-filter: blur(14px);
}

.lux-nav.lux-nav--scrolled .lux-nav__brand,
.lux-nav.lux-nav--scrolled .lux-nav__links a,
.lux-nav.lux-nav--scrolled .lux-nav__actions {
  top: 0 !important;
}

.lux-nav.lux-nav--scrolled .lux-nav__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 100px;
  padding: 0 6px;
}

.lux-nav.lux-nav--scrolled .lux-nav__brand,
.lux-nav.lux-nav--scrolled .lux-nav__links a {
  color: #2a211d !important;
}

/* =========================
   HERO
========================= */

.home-hero {
  position: relative;
  min-height: 100vh;
  height: 100vh;
  display: grid;
  align-items: center;
  justify-items: center;
  background: #000;
  overflow: hidden;
}

.home-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(20, 15, 12, 0.76) 8%, rgba(20, 15, 12, 0.24) 45%, rgba(20, 15, 12, 0.18) 100%),
    linear-gradient(to right, rgba(18, 12, 9, 0.36), rgba(18, 12, 9, 0.06));
}

.home-hero__content {
  position: relative;
  z-index: 2;
  width: min(820px, calc(100% - 40px));
  margin: 0 auto;
  text-align: center;
  color: #f8f4ee;
  padding-top: 70px;
}

.home-hero__eyebrow {
	margin: 30px 0 14px;
	    font-size: 22px;
	    font-weight: 700;
	    letter-spacing: 0.32em;
	    text-transform: uppercase;
	    color: #e2d5c3;
}

.home-hero__title {
  margin: 0;
  font-family: "Jura", sans-serif;
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.home-hero__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

/* =========================
   HERO CTA (BOTTOM RIGHT)
========================= */

.home-hero__cta {
  position: absolute;
  right: clamp(40px, 8vw, 120px);
  bottom: clamp(90px, 16vh, 160px);
  z-index: 3;
}

.home-hero__cta .gorg-btn {
  min-height: 56px;
  padding: 0 28px;
  font-size: 1rem;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

@media (max-width: 768px) {
  .home-hero__cta {
    left: 50%;
    right: auto;
    bottom: 32px;
    transform: translateX(-50%);
  }

  .home-hero__cta .gorg-btn {
    min-width: 180px;
  }
}

.home-hero__cta .gorg-btn--primary {
  background: rgba(247, 241, 232, 0.96);
  color: #3e2a1f;
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(8px);
}

.home-hero__cta .gorg-btn--primary:hover {
  transform: translateY(-2px) scale(1.01);
}



/* =========================
   BUTTONS
========================= */

.gorg-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.98rem;
  transition:
    transform 0.22s ease,
    background 0.22s ease,
    border-color 0.22s ease,
    color 0.22s ease;
}

.gorg-btn:hover {
  transform: translateY(-2px);
}

.gorg-btn--primary {
  background: #f7f1e8;
  color: var(--gorg-brown);
  border: 1px solid rgba(62, 42, 31, 0.06);
}

.gorg-btn--ghost {
  color: #f7f1e8;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
}

.feature-panel__content .gorg-btn {
  background: transparent;
  border: 1.5px solid rgba(62, 42, 31, 0.35);
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #3e2a1f;
  transition: all 0.3s ease;
}

.feature-panel__content .gorg-btn:hover {
  background: rgba(62, 42, 31, 0.06);
  border-color: rgba(62, 42, 31, 0.6);
}

/* =========================
   GENERIC SECTION SPACING
========================= */

.home-difference,
.home-values,
.home-feature,
.home-updates {
  padding: 67px 0;
}

/* =========================
   GENERIC SECTION HEADING
========================= */

.section-heading {
  margin-bottom: 34px;
}

.section-heading--center {
  text-align: center;
}

.section-heading__eyebrow {
	margin: 0 0 10px;
	    font-size: 29px;
	    font-weight: 500;
	    letter-spacing: 0.24em;
	    text-transform: uppercase;
	    color: var(--gorg-brown);
}

.section-heading__title {
	margin: 0;
	font-family: "Quicksand", "Nunito", Arial, sans-serif;
	font-size: 62px;
	text-align: center;
	font-weight: 400;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.section-heading__text {
  max-width: 680px;
  margin: 14px 0 0;
  color: var(--gorg-muted);
  line-height: 1.75;
}

.section-heading__text--center {
  margin-left: auto;
  margin-right: auto;
}

/* =========================================================
   GORG OIL — DIFFERENCE SECTION (REFINED + MOBILE SAFE)
========================================================= */

.home-difference {
  padding-top: 48px;
  padding-bottom: 28px;
  margin-top: 106px;
}

.home-difference .section-heading {
  margin-bottom: 28px;
}

/* DESKTOP: FULL WIDTH BREAKOUT */
.home-difference .difference-story {
  width: 98vw;
  margin-left: calc(50% - 49vw);
  display: grid;
  gap: 20px;
}

.difference-story__row {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 22px;
  background: #f3efe9;
  border-radius: 30px;
  padding: 20px 28px;
  position: relative;
  width: calc(100% - 32px);
  margin: 0 auto;
}

.difference-story__row--reverse {
  grid-template-columns: 1.05fr 0.95fr;
}

.difference-story__row--reverse .difference-story__content {
  order: 2;
}

.difference-story__row--reverse .difference-story__media {
  order: 1;
}

.difference-story__row--reverse::before {
  content: none;
}

.difference-story__content {
	padding: 6px 4px;
	margin-top: -22px;
}

.difference-story__number {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 10px;
  color: var(--gorg-brown);
  font-family: "Nunito", sans-serif;
  font-size: 0.88rem;
  letter-spacing: 0.16em;
}

.difference-story__number::before {
  content: "";
  width: 34px;
 height: 1.8px;
  background: rgba(62, 42, 31, 0.22);
}

.difference-story__content h3 {
  margin: 0 0 8px;
  color: var(--gorg-text);
  font-weight: 400;
  font-size: clamp(1.9rem, 2.7vw, 2.6rem);
  line-height: 1.05;
  max-width: 520px;
}

.difference-story__content p:last-child {
	margin: 0;
	    color: var(--gorg-muted);
	    line-height: 1.65;
	    font-size: 23px;
	    font-weight: 400;
	    max-width: 628px;
}

.difference-story__media {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #111;
  border: 1px solid rgba(62, 42, 31, 0.08);
  box-shadow: 0 10px 24px rgba(34, 23, 16, 0.06);
  min-width: 0;
}

.difference-story__media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.difference-story__media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =========================
   TABLET
========================= */

@media (max-width: 1100px) {
  .difference-story__row,
  .difference-story__row--reverse {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .difference-story__row--reverse .difference-story__content,
  .difference-story__row--reverse .difference-story__media {
    order: unset;
  }
}

/* =========================
   MOBILE FIX
========================= */

@media (max-width: 768px) {
  .home-difference .difference-story {
    width: 100%;
    margin-left: 0;
    gap: 18px;
  }

  .difference-story__row {
    width: 100%;
    padding: 18px;
    border-radius: 22px;
    gap: 16px;
  }

  .difference-story__content {
    padding: 0;
  }

  .difference-story__media {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: 20px;
  }

  .difference-story__content h3 {
    font-size: 1.9rem;
    line-height: 1.08;
    max-width: 100%;
  }

  .difference-story__content p:last-child {
    max-width: 100%;
    font-size: 0.98rem;
  }
}
/* =========================================
   HOME STORY — PREMIUM PANEL
========================================= */

.home-story {
  padding: 52px 24px 72px;
}

.home-story__panel {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.02fr 1fr;
  gap: 56px;
  align-items: center;
  background: transparent;
  border-radius: 0;
  padding: 0;
}

@media screen and (min-device-width: 1900px) {
.home-story__panel {
    max-width: 1402px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.02fr 1fr;
    gap: 126px;
    align-items: center;
    background: transparent;
    border-radius: 0;
    padding: 0;
}

}

.home-story__content {
  max-width: 540px;
  padding: 12px 0;
}

.home-story__eyebrow {
	display: block;
	margin-bottom: 20px;
	font-size: 31px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: #9a876f;
}

.home-story__content h2 {
	margin: 0 0 18px;
	font-size: 43px;
	font-weight: 400;
	line-height: 0.98;
	color: #2c221c;
}

.home-story__content p {
  margin: 0 0 14px;
  font-size: 19px;
  line-height: 1.72;
  color: #6d655c;
  max-width: 480px;
}

.home-story__media {
  position: relative;
  min-height: 420px;
  border-radius: 30px;
  overflow: hidden;
  background: #d8cec1;
  box-shadow: 0 14px 34px rgba(62, 42, 31, 0.08);
}

.home-story__media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    to top,
    rgba(20, 14, 10, 0.14),
    rgba(20, 14, 10, 0.02)
  );
}

.home-story__media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: 0;
}

.btn-story {
  display: inline-block;
  margin-top: 18px;
  padding: 11px 22px;
  border-radius: 999px;
  background: transparent;
  border: 1.5px solid rgba(62, 42, 31, 0.28);
  color: #3e2a1f;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.25s ease;
}

.btn-story:hover {
  background: rgba(62, 42, 31, 0.05);
  border-color: rgba(62, 42, 31, 0.48);
}

/* =========================
   VALUES — CENTERED / NO IMAGE
========================= */

.home-values { 
  padding: 52px 0 72px;
  border-bottom: 1px solid rgba(62, 42, 31, 0.08);
}

.values-panel,
.values-panel--centered {
  display: flex;
  justify-content: center;
}

.values-panel__content,
.values-panel__content--centered {
  width: 100%;
  max-width: 980px;
  padding: 0;
}

.values-panel__content--centered {
  text-align: center;
}

.home-values .section-heading {
  margin-bottom: 34px;
}

.home-values .section-heading__title {
	margin: 0 0 12px;
	font-family: "Nunito", sans-serif;
	font-size: 56px;
	font-weight: 300;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--gorg-text);
}

.home-values .section-heading__text {
  max-width: 620px;
  margin: 0 auto;
  color: var(--gorg-muted);
  line-height: 1.8;
}

.values-list,
.values-list--centered {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  gap: 22px 30px;
  justify-content: center;
}

.values-list {
  border-top: 1px solid rgba(62, 42, 31, 0.10);
  padding-top: 26px;
}

.value-row {
  display: grid;
  grid-template-columns: 84px 1fr;
  align-items: center;
  gap: 18px;
  padding: 14px 0 18px;
  text-align: left;
}

.value-row__icon {
  width: 84px;
  height: 84px;
  border-radius: 22px;
  background: linear-gradient(
    145deg,
    rgba(243, 237, 228, 0.9),
    rgba(255, 252, 246, 0.7)
  );
  border: 1px solid rgba(62, 42, 31, 0.08);
  box-shadow:
    0 8px 18px rgba(62, 42, 31, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  display: grid;
  place-items: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.value-row:hover .value-row__icon {
  transform: translateY(-3px);
  box-shadow:
    0 14px 26px rgba(62, 42, 31, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.value-row__icon img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.value-row__text h3 {
  margin: 0 0 7px;
  font-size: 1.08rem;
  line-height: 1.2;
  color: var(--gorg-text);
}

.value-row__text p {
  margin: 0;
  color: var(--gorg-muted);
  line-height: 1.66;
  font-size: 0.95rem;
  max-width: 280px;
}

/* =========================
   FEATURE PANEL
========================= */

.feature-panel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  border-radius: 28px;
  overflow: hidden;
  background: #F3EDE4;
  border: 1px solid rgba(62, 42, 31, 0.06);
  box-shadow: 0 14px 32px rgba(34, 23, 16, 0.05);
}

.feature-panel__content {
  padding: 52px;
}

.feature-panel__eyebrow {
  margin: 0 0 12px;
  color: var(--gorg-brown);
  font-size: 0.84rem;
  letter-spacing: 0.08em;
}

.feature-panel__content h2 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.15;
}

.feature-panel__content p {
  margin: 0 0 24px;
  color: var(--gorg-muted);
  line-height: 1.75;
}

.feature-panel__btn {
  align-self: flex-start;
}

.feature-panel__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =========================
   UPDATES GRID
========================= */

.updates-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.update-card {
  border-radius: 24px;
  overflow: hidden;
  background: #F3EDE4;
  border: 1px solid rgba(62, 42, 31, 0.08);
  box-shadow: 0 12px 28px rgba(34, 23, 16, 0.06);
}

.update-card__image {
  position: relative;
  aspect-ratio: 16 / 11;
}

.update-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.update-card__tag {
  position: absolute;
  left: 14px;
  top: 14px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(246, 241, 232, 0.92);
  color: var(--gorg-brown);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid rgba(62, 42, 31, 0.06);
}

.update-card__body {
  padding: 22px;
}

.update-card__body h3 {
  margin: 0 0 12px;
  color: var(--gorg-text);
  font-size: 1.2rem;
}

.update-card__body p {
  margin: 0 0 16px;
  color: var(--gorg-muted);
  line-height: 1.7;
}

.update-card__body a {
  color: var(--gorg-brown);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.update-card__body a::after {
  content: " →";
  opacity: 0;
  transition: all 0.25s ease;
}

.update-card__body a:hover::after {
  opacity: 1;
  margin-left: 6px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1100px) {
  .difference-story__row,
  .difference-story__row--reverse {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .difference-story__row--reverse .difference-story__content,
  .difference-story__row--reverse .difference-story__media {
    order: unset;
  }

  .difference-story__media {
    min-height: 340px;
  }

  .feature-panel,
  .home-story__panel {
    grid-template-columns: 1fr;
  }

  .updates-grid {
    grid-template-columns: 1fr 1fr;
  }

  .home-story__panel {
    gap: 32px;
  }

  .home-story__content {
    max-width: 100%;
  }
}

@media (max-width: 900px) {
  .home-story {
    padding: 40px 20px 56px;
  }

  .home-story__panel {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .home-story__content {
    max-width: 100%;
    padding: 0;
  }

  .home-story__content h2 {
    font-size: 2.2rem;
    line-height: 1.02;
  }

  .home-story__media {
    min-height: 260px;
    border-radius: 22px;
  }

  .home-story__media img {
    min-height: 260px;
  }
}

@media (max-width: 768px) {
  .home-shell {
    width: min(var(--gorg-max), calc(100% - 20px));
  }

  .home-difference,
  .home-values,
  .home-feature,
  .home-updates {
    padding: 56px 0;
  }

  .home-difference {
    padding-top: 64px;
  }

  .home-difference .section-heading {
    margin-bottom: 36px;
  }

  .difference-story {
    gap: 34px;
  }

  .difference-story__row {
    padding: 18px;
    border-radius: 22px;
  }

  .difference-story__content {
    padding: 4px 0;
  }

  .difference-story__content h3 {
    font-size: 1.9rem;
    line-height: 1.06;
  }

  .difference-story__content p:last-child {
    max-width: 100%;
  }

  .difference-story__media {
    min-height: 260px;
    border-radius: 24px;
  }

  .feature-panel__content {
    padding: 24px;
  }

  .home-values {
    padding: 40px 0 52px;
  }

  .home-values .section-heading {
    margin-bottom: 26px;
  }

  .home-values .section-heading__text {
    max-width: 100%;
  }

  .values-list,
  .values-list--centered {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-top: 18px;
  }

  .value-row {
    grid-template-columns: 56px 1fr;
    gap: 12px;
    padding: 6px 0 10px;
  }

  .value-row__icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
  }

  .value-row__icon img {
    width: 48px;
    height: 48px;
  }

  .value-row__text p {
    max-width: 100%;
  }

  .home-hero__content {
    width: calc(100% - 26px);
    padding-top: 82px;
  }

  .home-hero__title {
    letter-spacing: 0.18em;
  }

  .home-hero__actions {
    flex-direction: column;
  }

  .gorg-btn {
    width: 100%;
  }

  .updates-grid {
    grid-template-columns: 1fr;
  }
}

/* ==============================
   HENDAURA COMPARISON SECTION
============================== */

.home-comparison {
  padding: 90px 0;
}

.comparison-panel {
  background: rgba(255, 252, 246, 0.78);
  border: 1px solid rgba(83, 61, 43, 0.13);
  border-radius: 34px;
  padding: 56px;
  box-shadow: 0 28px 70px rgba(62, 42, 31, 0.08);
  backdrop-filter: blur(14px);
}

.comparison-table-wrap {
  margin-top: 38px;
  overflow-x: auto;
  border-radius: 26px;
  border: 1px solid rgba(83, 61, 43, 0.12);
  background: rgba(255, 255, 255, 0.58);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

.comparison-table th,
.comparison-table td {
  padding: 22px 24px;
  text-align: left;
  border-bottom: 1px solid rgba(83, 61, 43, 0.1);
  font-family: "Nunito", sans-serif;
  color: #3e2a1f;
}

.comparison-table th {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
  background: rgba(62, 42, 31, 0.045);
}

.comparison-table td {
  font-size: 0.98rem;
  line-height: 1.55;
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.comparison-table td:first-child {
  font-weight: 800;
  color: #2f2119;
  width: 24%;
}

.comparison-table__brand {
  background: rgba(180, 166, 143, 0.22) !important;
  color: #2f2119;
}

.check,
.dash {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  margin-right: 8px;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 800;
}

.check {
  background: #3e2a1f;
  color: #fffaf3;
}

.dash {
  background: rgba(62, 42, 31, 0.08);
  color: rgba(62, 42, 31, 0.65);
}

.comparison-note {
  margin-top: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.comparison-note p {
  max-width: 650px;
  margin: 0;
  font-family: "Nunito", sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(62, 42, 31, 0.78);
}

/* Mobile */
@media (max-width: 768px) {
  .home-comparison {
    padding: 58px 0;
  }

  .comparison-panel {
    padding: 34px 18px;
    border-radius: 26px;
  }

  .comparison-table-wrap {
    margin-top: 28px;
    overflow: visible;
    border: none;
    background: transparent;
  }

  .comparison-table {
    min-width: 0;
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 16px;
  }

  .comparison-table thead {
    display: none;
  }

  .comparison-table,
  .comparison-table tbody,
  .comparison-table tr,
  .comparison-table td {
    display: block;
    width: 100%;
  }

  .comparison-table tr {
    background: rgba(255, 252, 246, 0.82);
    border: 1px solid rgba(83, 61, 43, 0.12);
    border-radius: 22px;
    padding: 18px;
    box-shadow: 0 16px 34px rgba(62, 42, 31, 0.06);
  }

  .comparison-table td {
    border-bottom: none;
    padding: 0;
    font-size: 0.92rem;
    line-height: 1.55;
  }

  .comparison-table td:first-child {
    width: 100%;
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(83, 61, 43, 0.1);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #7f6244;
  }

  .comparison-table td:nth-child(2),
  .comparison-table td:nth-child(3) {
    position: relative;
    padding: 14px 0 0 0;
  }

  .comparison-table td:nth-child(2)::before {
    content: "Hendaura";
    display: block;
    margin-bottom: 7px;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #3e2a1f;
  }

  .comparison-table td:nth-child(3)::before {
    content: "Other Brands";
    display: block;
    margin-bottom: 7px;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(62, 42, 31, 0.55);
  }

  .comparison-table td:nth-child(3) {
    margin-top: 12px;
    padding-top: 16px;
    border-top: 1px solid rgba(83, 61, 43, 0.1);
    color: rgba(62, 42, 31, 0.7);
  }

  .check,
  .dash {
    width: 22px;
    height: 22px;
    margin-right: 7px;
    font-size: 0.78rem;
  }

  .comparison-note {
    margin-top: 26px;
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }

  .comparison-note p {
    font-size: 0.95rem;
    line-height: 1.75;
  }

  .comparison-note .gorg-btn {
    width: 100%;
    justify-content: center;
  }
}


/* ==============================
   HENDAURA SIGNATURE SCENT
============================== */

.hendaura-signature {
  padding: 135px 0 46px;
}

.hendaura-signature__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 42px;
  align-items: center;
}

.hendaura-signature__media {
  height: 490px;
  border-radius: 34px;
  overflow: hidden;
  background: #d8cec1;
  box-shadow: 0 22px 50px rgba(62, 42, 31, 0.12);
}

.hendaura-signature__media img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  filter: saturate(0.92) contrast(0.96) brightness(0.98);
}

.hendaura-signature__panel {
  align-self: center;
  padding: 32px 36px;
  max-height: 479px;
  border-radius: 34px;
  background: rgba(255, 252, 246, 0.76);
  border: 1px solid rgba(62, 42, 31, 0.11);
  box-shadow: var(--gorg-shadow);
  backdrop-filter: blur(12px);
}

.hendaura-signature__badge {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 16px;
  padding: 8px 15px;
  border-radius: 999px;
  background: rgba(62, 42, 31, 0.06);
  border: 1px solid rgba(62, 42, 31, 0.12);
  color: var(--gorg-brown);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hendaura-signature__panel h2 {
  margin: 0 0 16px;
  font-family: "Nunito", sans-serif;
  font-size: 52px;
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #2c221c;
}

.hendaura-signature__panel p:not(.hendaura-signature__badge) {
  margin: 0 0 20px;
  max-width: 560px;
  color: var(--gorg-muted);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.7;
}

.hendaura-signature__notes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.hendaura-signature__notes span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(205, 187, 163, 0.22);
  border: 1px solid rgba(62, 42, 31, 0.08);
  color: var(--gorg-brown);
  font-size: 0.88rem;
  font-weight: 700;
}

.hendaura-signature__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.hendaura-signature__panel .gorg-btn--primary {
  background: #3e2a1f;
  color: #fffaf3;
  border-color: rgba(62, 42, 31, 0.18);
}

.hendaura-signature__link {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 999px;
  border: 1.5px solid rgba(62, 42, 31, 0.28);
  color: var(--gorg-brown);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.25s ease;
}

.hendaura-signature__link:hover {
  background: rgba(62, 42, 31, 0.06);
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .hendaura-signature__grid {
    grid-template-columns: 1fr;
  }

  .hendaura-signature__media {
    height: 420px;
  }
}

/* Desktop/mobile signature image control */
.hendaura-signature__media--mobile {
  display: none;
}

@media (max-width: 768px) {
  .hendaura-signature__media--desktop {
    display: none;
  }

  .hendaura-signature__media--mobile {
    display: block;
    width: 100%;
    height: 285px;
    margin: 4px 0 24px;
    border-radius: 24px;
    overflow: hidden;
    background: transparent;
    box-shadow: none;
  }

  .hendaura-signature__media--mobile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

/* =========================
   SIGNATURE SCENT MOBILE
========================= */

@media (max-width: 768px) {

  .hendaura-signature {
    padding: 62px 0 38px;
  }

  .hendaura-signature__grid {
    display: block;
  }

  .hendaura-signature__panel {
    padding: 28px 20px;
    border-radius: 26px;
    text-align: center;
    max-height: none;

    display: flex;
    flex-direction: column;
  }

  .hendaura-signature__badge {
    margin-left: auto;
    margin-right: auto;
  }

  .hendaura-signature__panel h2 {
    margin-bottom: 18px;
  }

  .hendaura-signature__panel p:not(.hendaura-signature__badge) {
    max-width: 100%;
    font-size: 0.96rem;
    line-height: 1.72;
    margin-bottom: 24px;
  }

  /* IMAGE MOVES UNDER PARAGRAPH */
  .hendaura-signature__media {
    order: 4;

    width: 100%;
    height: 300px;

    margin: 0 0 24px;

    border-radius: 24px;
    overflow: hidden;
  }

  .hendaura-signature__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .hendaura-signature__notes {
    order: 5;

    justify-content: center;
    gap: 10px;

    margin-bottom: 24px;
  }

  .hendaura-signature__actions {
    order: 6;

    justify-content: center;
    width: 100%;
  }

  .hendaura-signature__actions .gorg-btn,
  .hendaura-signature__link {
    width: 100%;
  }
}

/* Wider signature layout on large screens */
@media (min-width: 1700px) {
  .hendaura-signature .home-shell {
    width: min(1580px, calc(100% - 120px));
  }

  .hendaura-signature__grid {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 56px;
  }

  .hendaura-signature__media {
    height: 540px;
  }

  .hendaura-signature__panel {
    max-width: 620px;
    padding: 38px 42px;
  }

  .hendaura-signature__panel h2 {
    font-size: 60px;
  }

  .hendaura-signature__panel p:not(.hendaura-signature__badge) {
    font-size: 1.05rem;
  }
}

/* =========================================================
   LARGE DESKTOP POLISH — 1700PX+
   Gives wider screens a fuller, less empty layout
========================================================= */

@media (min-width: 1700px) {

  /* Global homepage shell width */
  .home-shell {
    width: min(1580px, calc(100% - 120px));
  }

  /* Signature Scent */
  .hendaura-signature .home-shell {
    width: min(1580px, calc(100% - 120px));
  }

  .hendaura-signature__grid {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 56px;
  }

  .hendaura-signature__media {
    height: 540px;
  }

  .hendaura-signature__panel {
    max-width: 620px;
    padding: 38px 42px;
  }

  .hendaura-signature__panel h2 {
    font-size: 60px;
  }

  .hendaura-signature__panel p:not(.hendaura-signature__badge) {
    font-size: 1.05rem;
  }

  /* Hendaura Difference */
  .home-difference .difference-story {
    width: min(1580px, calc(100vw - 120px));
    margin-left: auto;
    margin-right: auto;
  }

  .difference-story__row {
    width: 100%;
    padding: 34px 44px;
    gap: 54px;
  }

  .difference-story__content h3 {
	font-size: 52px;
	max-width: 640px;
	font-weight: 400;
  }

  .difference-story__content p:last-child {
    max-width: 700px;
  }

  /* Values */
  .values-panel__content,
  .values-panel__content--centered {
    max-width: 1180px;
  }

  .values-list,
  .values-list--centered {
    gap: 30px 54px;
  }

  /* Story */
  .home-story__panel {
    max-width: 1580px;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 96px;
  }

  .home-story__content {
    max-width: 620px;
  }

  .home-story__media {
    min-height: 520px;
  }

  .home-story__media img {
    min-height: 520px;
  }

  /* Comparison */
  .comparison-panel {
    padding: 68px 76px;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 26px 30px;
  }

  /* Latest / Updates */
  .updates-grid {
    gap: 32px;
  }

  .update-card__body {
    padding: 28px;
  }
}

/* =========================================================
   HENDAURA HOME — COMPLETE MOBILE RESPONSIVE POLISH
   Drop this at the very bottom of /css/home-lux.css
========================================================= */

@media (max-width: 900px) {
  .home-shell {
    width: min(var(--gorg-max), calc(100% - 24px));
  }

  .section-heading__title,
  .home-values .section-heading__title,
  .hendaura-signature__panel h2 {
    font-size: clamp(2.15rem, 8vw, 3rem);
    line-height: 1.04;
    letter-spacing: 0.045em;
  }

  .section-heading__eyebrow {
	font-size: 27px;
	letter-spacing: 0.18em;
	display: block;
	margin-top: -53px;
	text-align: center;
  }
}

@media (max-width: 768px) {

  /* =========================
     HERO
  ========================= */

  .home-hero {
    min-height: 82svh;
    height: 82svh;
  }

  .home-hero__content {
    width: calc(100% - 28px);
    padding-top: 54px;
  }

  .home-hero__content img {
    width: min(320px, 78vw);
    margin: 0 auto;
  }

  .home-hero__eyebrow {
    margin: 18px auto 0;
    font-size: 13px;
    line-height: 1.55;
    letter-spacing: 0.22em;
    max-width: 310px;
  }

  .home-hero__cta {
    left: 50%;
    right: auto;
    bottom: 42px;
    transform: translateX(-50%);
  }

  .home-hero__cta .gorg-btn {
	min-width: 185px;
	min-height: 52px;
	width: auto;
	padding: 0 26px;
	font-size: 21px;
	letter-spacing: 1px;
	font-family: "Jura", sans-serif;
  }

  /* =========================
     GLOBAL MOBILE SPACING
  ========================= */

  .home-difference,
  .home-values,
  .home-feature,
  .home-updates,
  .home-comparison {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .section-heading {
    margin-bottom: 30px;
  }

  .section-heading__text {
    font-size: 0.96rem;
    line-height: 1.72;
  }

  .gorg-btn {
    width: 100%;
    min-height: 52px;
  }

  /* =========================
     SIGNATURE SCENT
  ========================= */

  .hendaura-signature {
    padding: 62px 0 38px;
  }

  .hendaura-signature__grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .hendaura-signature__panel {
    order: 1;
    padding: 28px 20px;
    border-radius: 26px;
    text-align: center;
    max-height: none;
  }

  .hendaura-signature__badge {
    margin-left: auto;
    margin-right: auto;
  }

  .hendaura-signature__panel p:not(.hendaura-signature__badge) {
    max-width: 100%;
    font-size: 0.96rem;
    line-height: 1.72;
  }

  .hendaura-signature__notes {
    justify-content: center;
    gap: 9px;
  }

  .hendaura-signature__notes span {
    padding: 9px 12px;
    font-size: 0.82rem;
  }

  .hendaura-signature__actions {
    justify-content: center;
  }

  .hendaura-signature__actions .gorg-btn,
  .hendaura-signature__link {
    width: 100%;
  }

  .hendaura-signature__media {
    order: 2;
    height: 300px;
    border-radius: 24px;
  }

  /* =========================
     HENDAURA DIFFERENCE
  ========================= */

  .home-difference {
    margin-top: 58px;
    padding-top: 54px;
    padding-bottom: 34px;
  }

  .home-difference .section-heading {
    margin-bottom: 28px;
  }

  .home-difference .difference-story {
    width: 100%;
    margin-left: 0;
    gap: 22px;
  }

  .difference-story__row,
  .difference-story__row--reverse {
    grid-template-columns: 1fr;
    width: 100%;
    padding: 16px;
    gap: 15px;
    border-radius: 22px;
  }

  .difference-story__row--reverse .difference-story__content,
  .difference-story__row--reverse .difference-story__media {
    order: unset;
  }

  .difference-story__content {
    padding: 0;
    margin-top: 0;
  }

  .difference-story__number {
	margin-bottom: 8px;
	font-size: 18px;
  }

  .difference-story__content h3 {
    font-size: 1.72rem;
    line-height: 1.08;
    max-width: 100%;
    margin-bottom: 10px;
  }

  .difference-story__content p:last-child {
	max-width: 100%;
	        font-size: 18px;
	        font-weight: 400;
	        line-height: 1.72;
  }

  .difference-story__media {
    width: 100%;
    min-height: 220px;
    aspect-ratio: 16 / 10;
    border-radius: 18px;
  }

  /* =========================
     VALUES
  ========================= */

  .home-values {
    padding: 52px 0 58px;
  }

  .home-values .section-heading {
    margin-bottom: 28px;
  }

  .home-values .section-heading__text {
    max-width: 100%;
  }

  .values-list,
  .values-list--centered {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-top: 20px;
  }

  .value-row {
    grid-template-columns: 58px 1fr;
    gap: 14px;
    padding: 10px 0;
  }

  .value-row__icon {
    width: 58px;
    height: 58px;
    border-radius: 16px;
  }

  .value-row__icon img {
    width: 48px;
    height: 48px;
  }

  .value-row__text h3 {
    font-size: 1rem;
  }

  .value-row__text p {
    max-width: 100%;
    font-size: 0.9rem;
    line-height: 1.62;
  }

  /* =========================
     STORY
  ========================= */

  .home-story {
    padding: 58px 18px 72px;
  }

  .home-story__panel {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .home-story__content {
    max-width: 100%;
    padding: 0;
    text-align: center;
  }

  .home-story__eyebrow {
	font-size: 28px;
	        position: relative;
	        top: -20px;
	        margin-top: -1px;
	        letter-spacing: 8px;
			font-weight: 500;
  }

  .home-story__content h2 {
    font-size: clamp(2rem, 8vw, 2.55rem);
    line-height: 1.04;
  }

  .home-story__content p {
    max-width: 100%;
    font-size: 1rem;
    line-height: 1.72;
  }

  .home-story__media {
    min-height: 300px;
    border-radius: 24px;
  }

  .home-story__media img {
    min-height: 300px;
  }

  .btn-story {
    width: 100%;
    text-align: center;
    padding: 14px 22px;
  }

  /* =========================
     COMPARISON
  ========================= */

  .comparison-panel {
    padding: 32px 16px;
    border-radius: 26px;
  }

  .comparison-table-wrap {
    margin-top: 28px;
  }

  .comparison-table tr {
    padding: 17px;
    border-radius: 20px;
	position: relative;
	margin-bottom: 34px;
  }

  .comparison-table td {
    font-size: 0.92rem;
  }

  /* =========================
     UPDATES
  ========================= */

  .updates-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .update-card {
    border-radius: 20px;
  }

  .update-card__body {
    padding: 18px;
  }

  .update-card__body h3 {
    font-size: 1.12rem;
  }

  .update-card__body p {
    font-size: 0.94rem;
    line-height: 1.65;
  }
}

/* Extra-small phones */
@media (max-width: 390px) {
  .home-shell {
    width: min(var(--gorg-max), calc(100% - 18px));
  }

  .home-hero {
    min-height: 80svh;
    height: 80svh;
  }

  .home-hero__content img {
    width: min(285px, 76vw);
  }

  .home-hero__eyebrow {
    font-size: 12px;
    letter-spacing: 0.19em;
  }

  .hendaura-signature__panel,
  .comparison-panel {
    padding-left: 15px;
    padding-right: 15px;
  }

  .difference-story__row {
    padding: 14px;
  }

  .difference-story__media {
    min-height: 205px;
  }

  .home-story {
    padding-left: 14px;
    padding-right: 14px;
  }
}

/* =========================================================
   HOME UPDATE CARDS — CTA BUTTONS
========================================================= */

.update-card__body a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0 18px;
	margin-top: 4px;
	border-radius: 999px;
	background: #3e2a1f;
	color: #fffaf3 !important;
	border: 1px solid rgba(62, 42, 31, 0.12);
	text-decoration: none;
	font-size: 17px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	box-shadow: 0 8px 18px rgba(62, 42, 31, 0.12);
	transition: transform 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.update-card__body a::after {
  display: none;
}

.update-card__body a:hover {
  transform: translateY(-2px);
  background: #7a4d17;
  box-shadow: 0 12px 24px rgba(62, 42, 31, 0.18);
}

@media (max-width: 768px) {

  .update-card__body a {
    width: 100%;
    min-height: 46px;
    margin-top: 10px;
  }
}

/* =========================================================
   MOBILE HERO — FULL SCREEN VIDEO
========================================================= */

@media (max-width: 768px) {
  .home-hero {
    min-height: 100svh;
    height: 100svh;
  }

  .home-hero__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .home-hero__content {
    padding-top: 40px;
  }

  .home-hero__cta {
	opacity: 0.8;
    bottom: 64px;
  }
}

@media (max-width: 390px) {
  .home-hero {
    min-height: 100svh;
    height: 100svh;
  }
}