/* =========================================================
   GOLDEN HOUSE STORE
   FULL HOMEPAGE CSS
========================================================= */


/* =========================================================
   1. ROOT VARIABLES
========================================================= */

:root {
  --black: #090909;
  --soft-black: #151515;
  --white: #ffffff;
  --off-white: #f7f7f5;
  --light-grey: #eeeeeb;
  --medium-grey: #a2a2a2;
  --dark-grey: #555555;
  --border-color: #deded9;

  --heading-font: "Playfair Display", serif;
  --body-font: "DM Sans", sans-serif;

  --page-width: 1400px;
  --desktop-padding: 5vw;
  --tablet-padding: 32px;
  --mobile-padding: 20px;
}


/* =========================================================
   2. RESET AND GLOBAL STYLES
========================================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--white);
  color: var(--black);
  font-family: var(--body-font);
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
}

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

button,
input {
  font: inherit;
}

button {
  border: none;
  outline: none;
  cursor: pointer;
}

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

ul {
  list-style: none;
}

.section-container {
  width: min(
    calc(100% - (var(--desktop-padding) * 2)),
    var(--page-width)
  );

  margin: 0 auto;
}

.section-eyebrow {
  display: inline-block;
  margin-bottom: 16px;

  color: #777777;

  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.primary-button {
  min-height: 54px;
  padding: 0 25px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;

  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;

  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease;
}

.dark-button {
  background: var(--black);
  border: 1px solid var(--black);
  color: var(--white);
}

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

.light-button {
  background: var(--white);
  border: 1px solid var(--white);
  color: var(--black);
}

.light-button:hover {
  background: transparent;
  color: var(--white);
}

.text-link {
  padding-bottom: 6px;
  border-bottom: 1px solid currentColor;

  display: inline-flex;
  align-items: center;
  gap: 14px;

  font-size: 0.77rem;
  font-weight: 700;
}

.placeholder-label {
  padding: 10px 14px;

  background: rgba(255, 255, 255, 0.92);
  border: 1px dashed rgba(0, 0, 0, 0.3);
  color: var(--dark-grey);

  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-align: center;
}


/* =========================================================
   GOLDEN HOUSE NAVBAR
========================================================= */

:root {
  --gh-white: #ffffff;
  --gh-black: #111111;
  --gh-text: #343434;
  --gh-muted: #6e6e6e;
  --gh-gold: #bd8a34;
  --gh-gold-dark: #93671f;
  --gh-border: #e8e3dc;

  --gh-navbar-height: 104px;
  --gh-announcement-height: 40px;

  --gh-heading-font: "Playfair Display", serif;
  --gh-body-font: "DM Sans", sans-serif;
}


/* =========================================================
   NAVBAR RESET
========================================================= */

.gh-site-header *,
.gh-main-hero * {
  box-sizing: border-box;
}

.gh-site-header a,
.gh-main-hero a {
  color: inherit;
  text-decoration: none;
}

.gh-menu-button {
  margin: 0;
  padding: 0;
  border: 0;

  font: inherit;

  cursor: pointer;
}

body {
  margin: 0;
  padding-top: calc(var(--gh-announcement-height) + var(--gh-navbar-height));
}

body.menu-open {
  overflow: hidden;
}


/* =========================================================
   FIXED HEADER
========================================================= */

.gh-site-header {
  width: 100%;
  height: calc(var(--gh-announcement-height) + var(--gh-navbar-height));

  position: fixed;
  top: 0;
  left: 0;
  z-index: 5000;

  display: flex;
  flex-direction: column;

  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(17, 17, 17, 0.07);

  font-family: var(--gh-body-font);

  transition:
    box-shadow 0.3s ease,
    background-color 0.3s ease;
}

.gh-site-header.scrolled {
  background: rgba(255, 255, 255, 0.96);

  box-shadow:
    0 8px 30px rgba(0, 0, 0, 0.07);

  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}


/* =========================================================
   ANNOUNCEMENT BAR
========================================================= */

.gh-announcement-bar {
  width: 100%;
  height: var(--gh-announcement-height);
  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  background: var(--gh-black);
  color: var(--gh-white);
}

.gh-announcement-bar i {
  color: var(--gh-gold);
  font-size: 0.8em;
}

.gh-announcement-bar span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.gh-announcement-bar strong {
  color: var(--gh-gold);
  font-weight: 700;
}


/* =========================================================
   DESKTOP NAVBAR
========================================================= */

.gh-navbar {
  width: min(100%, 1500px);
  height: var(--gh-navbar-height);
  flex-shrink: 0;
  margin: 0 auto;
  padding: 0 5vw;

  display: grid;
  grid-template-columns: minmax(230px, 1fr) auto minmax(150px, 1fr);
  align-items: center;
  gap: 38px;
}


/* =========================================================
   NAVBAR LOGO
========================================================= */

.gh-nav-logo {
  width: fit-content;

  display: flex;
  flex-direction: column;
  align-items: center;

  color: var(--gh-black);
}

.gh-nav-logo-name {
  font-family: var(--gh-heading-font);
  font-size: clamp(1.85rem, 2.2vw, 2.55rem);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 0.95;
  white-space: nowrap;
}

.gh-nav-logo-bottom {
  width: 100%;
  margin-top: 11px;

  display: grid;
  grid-template-columns: 37px auto 37px;
  align-items: center;
  column-gap: 13px;
}

.gh-nav-logo-bottom i {
  width: 100%;
  height: 1px;

  display: block;

  background: var(--gh-gold);
}

.gh-nav-logo-bottom span {
  font-size: 0.52rem;
  font-weight: 600;
  letter-spacing: 0.42em;
  line-height: 1;
  text-indent: 0.42em;
  text-transform: uppercase;
  white-space: nowrap;
}


/* =========================================================
   DESKTOP NAVIGATION LINKS
========================================================= */

.gh-desktop-nav {
  height: 100%;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(31px, 3.4vw, 58px);
}

.gh-desktop-nav a {
  height: 100%;

  position: relative;

  color: var(--gh-black);

  display: flex;
  align-items: center;

  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;

  transition: color 0.25s ease;
}

.gh-desktop-nav a:hover,
.gh-desktop-nav a.active {
  color: var(--gh-gold-dark);
}


/* =========================================================
   DESKTOP NAVIGATION ACTIONS
========================================================= */

.gh-nav-actions {
  justify-self: end;

  display: flex;
  align-items: center;
  gap: 10px;
}

.gh-nav-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;

  position: relative;

  color: var(--gh-black);

  display: grid;
  place-items: center;

  font-size: 1.05rem;

  transition:
    background-color 0.25s ease,
    color 0.25s ease;
}

.gh-nav-icon:hover {
  background: var(--gh-black);
  color: var(--gh-white);
}

.gh-cart-icon {
  width: 1em;
  height: 1em;

  display: block;

  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.gh-nav-cart-count {
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  border-radius: 999px;

  position: absolute;
  top: 0;
  right: -1px;

  background: var(--gh-gold);
  color: var(--gh-white);

  display: grid;
  place-items: center;

  font-size: 0.56rem;
  font-weight: 700;
}


/* =========================================================
   MOBILE ELEMENTS HIDDEN ON DESKTOP
========================================================= */

.gh-menu-button,
.gh-mobile-menu {
  display: none;
}


/* =========================================================
   TABLET AND MOBILE NAVBAR
========================================================= */

@media (max-width: 900px) {
  :root {
    --gh-navbar-height: 86px;
    --gh-announcement-height: 36px;
  }

  .gh-navbar {
    padding: 0 24px;

    grid-template-columns: 50px 1fr 50px;
    gap: 0;
  }


  /* Hamburger */

  .gh-menu-button {
    width: 44px;
    height: 44px;

    position: relative;
    z-index: 20;

    background: transparent;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 6px;
  }

  .gh-menu-button span {
    height: 2px;

    display: block;

    background: var(--gh-black);

    transition:
      width 0.35s ease,
      opacity 0.25s ease,
      transform 0.35s ease;
  }

  .gh-menu-button span:nth-child(1) {
    width: 28px;
  }

  .gh-menu-button span:nth-child(2) {
    width: 21px;
  }

  .gh-menu-button span:nth-child(3) {
    width: 28px;
  }

  .gh-menu-button:hover span:nth-child(2) {
    width: 28px;
  }

  .gh-menu-button.active span:nth-child(1) {
    width: 27px;

    transform: translateY(8px) rotate(45deg);
  }

  .gh-menu-button.active span:nth-child(2) {
    opacity: 0;

    transform: translateX(-8px);
  }

  .gh-menu-button.active span:nth-child(3) {
    width: 27px;

    transform: translateY(-8px) rotate(-45deg);
  }


  /* Centred Mobile Logo */

  .gh-nav-logo {
    max-width: calc(100vw - 145px);

    position: relative;
    z-index: 20;

    justify-self: center;
  }

  .gh-nav-logo-name {
    font-size: 1.75rem;
  }

  .gh-nav-logo-bottom {
    margin-top: 8px;

    grid-template-columns: 26px auto 26px;
    column-gap: 9px;
  }

  .gh-nav-logo-bottom span {
    font-size: 0.42rem;
    letter-spacing: 0.34em;
    text-indent: 0.34em;
  }


  /* Hide Desktop Text Links */

  .gh-desktop-nav {
    display: none;
  }


  /* Keep Only The Cart Icon In The Mobile Bar */

  .gh-nav-actions {
    justify-self: end;
  }

  .gh-nav-actions .gh-nav-cart {
    display: none;
  }


  /* Full-Screen Mobile Menu */

  .gh-mobile-menu {
    width: 100%;
    height: calc(100dvh - var(--gh-announcement-height) - var(--gh-navbar-height));

    position: fixed;
    top: calc(var(--gh-announcement-height) + var(--gh-navbar-height));
    left: 0;
    z-index: 4990;

    background: var(--gh-white);

    display: block;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transform: translateX(-100%);

    transition:
      transform 0.48s cubic-bezier(0.77, 0, 0.18, 1),
      opacity 0.28s ease,
      visibility 0.48s ease;

    overflow: hidden;
  }

  .gh-mobile-menu.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;

    transform: translateX(0);
  }

  .gh-mobile-menu::after {
    content: "";

    width: 240px;
    height: 240px;
    border-radius: 50%;

    position: absolute;
    right: -130px;
    bottom: -110px;

    border: 1px solid rgba(189, 138, 52, 0.25);

    pointer-events: none;
  }

  .gh-mobile-menu-inner {
    width: min(100%, 650px);
    height: 100%;
    margin: 0 auto;
    padding: 36px 28px 22px;

    position: relative;
    z-index: 2;

    display: flex;
    flex-direction: column;
  }

  .gh-mobile-links {
    min-height: 0;

    display: flex;
    flex-direction: column;

    flex: 1;
  }

  .gh-mobile-links a {
    border-bottom: 1px solid var(--gh-border);

    color: var(--gh-black);

    display: flex;
    align-items: center;
    gap: 16px;

    font-family: var(--gh-heading-font);
    font-size: clamp(1.1rem, 4.2vh, 1.85rem);
    font-weight: 500;
    letter-spacing: -0.035em;

    opacity: 0;

    transform: translateX(-25px);

    transition:
      color 0.25s ease,
      opacity 0.42s ease,
      transform 0.42s ease;

    flex: 1;
    min-height: 0;
  }

  .gh-mobile-menu.open .gh-mobile-links a {
    opacity: 1;

    transform: translateX(0);
  }

  .gh-mobile-menu.open .gh-mobile-links a:nth-child(1) {
    transition-delay: 0.08s;
  }

  .gh-mobile-menu.open .gh-mobile-links a:nth-child(2) {
    transition-delay: 0.13s;
  }

  .gh-mobile-menu.open .gh-mobile-links a:nth-child(3) {
    transition-delay: 0.18s;
  }

  .gh-mobile-menu.open .gh-mobile-links a:nth-child(4) {
    transition-delay: 0.23s;
  }

  .gh-mobile-menu.open .gh-mobile-links a:nth-child(5) {
    transition-delay: 0.28s;
  }

  .gh-mobile-menu.open .gh-mobile-links a:nth-child(6) {
    transition-delay: 0.33s;
  }

  .gh-mobile-links a span {
    width: 25px;

    color: var(--gh-gold);

    font-family: var(--gh-body-font);
    font-size: 0.59rem;
    font-weight: 700;
    letter-spacing: 0.1em;
  }

  .gh-mobile-links a:hover,
  .gh-mobile-links a.active {
    color: var(--gh-gold-dark);
  }


  /* Mobile Login and Cart */

  .gh-mobile-account-links {
    margin-top: 18px;

    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
  }

  .gh-mobile-account-links a {
    min-height: 50px;
    padding: 0 16px;

    border: 1px solid var(--gh-black);
    color: var(--gh-black);

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 11px;

    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;

    transition:
      background-color 0.25s ease,
      color 0.25s ease;
  }

  .gh-mobile-account-links a:hover {
    background: var(--gh-black);
    color: var(--gh-white);
  }

  .gh-mobile-account-links strong {
    width: 21px;
    height: 21px;
    border-radius: 50%;

    background: var(--gh-gold);
    color: var(--gh-white);

    display: grid;
    place-items: center;

    font-size: 0.56rem;
  }

  .gh-mobile-menu-message {
    margin-top: 16px;

    color: var(--gh-gold-dark);

    font-size: 0.64rem;
    font-weight: 600;
    letter-spacing: 0.19em;
    line-height: 1.5;
    text-align: center;
    text-transform: uppercase;
  }
}


/* =========================================================
   MOBILE NAVBAR
========================================================= */

@media (max-width: 650px) {
  :root {
    --gh-navbar-height: 78px;
    --gh-announcement-height: 32px;
  }

  .gh-announcement-bar span {
    font-size: 0.6rem;
    letter-spacing: 0.04em;
  }

  .gh-navbar {
    padding: 0 18px;

    grid-template-columns: 45px 1fr 45px;
  }

  .gh-nav-logo-name {
    font-size: 1.48rem;
  }

  .gh-nav-logo-bottom {
    margin-top: 7px;

    grid-template-columns: 21px auto 21px;
    column-gap: 7px;
  }

  .gh-nav-logo-bottom span {
    font-size: 0.35rem;
    letter-spacing: 0.28em;
    text-indent: 0.28em;
  }

  .gh-mobile-menu-inner {
    padding: 28px 20px 18px;
  }

  .gh-mobile-links a {
    font-size: clamp(0.92rem, 3.8vh, 1.6rem);
  }

  .gh-mobile-account-links {
    margin-top: 14px;

    gap: 10px;
  }

  .gh-mobile-account-links a {
    min-height: 46px;
    padding: 0 14px;
  }
}

/* =========================================================
   FIX MOBILE LOGO ALIGNMENT
========================================================= */

@media (max-width: 900px) {

  .gh-nav-logo {
    width: max-content;
    max-width: none;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    justify-self: center;
    text-align: center;
  }

  .gh-nav-logo-name {
    width: max-content;

    display: block;

    font-size: 1.75rem;
    line-height: 1;
    white-space: nowrap;
    text-align: center;
  }

  .gh-nav-logo-bottom {
    width: 100%;
    margin-top: 7px;

    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    column-gap: 9px;
  }

  .gh-nav-logo-bottom::before,
  .gh-nav-logo-bottom::after {
    content: "";

    width: 100%;
    height: 1px;

    display: block;

    background: var(--gh-gold);
  }

  .gh-nav-logo-bottom span {
    margin: 0;
    padding: 0;

    display: block;

    font-size: 0.42rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.32em;
    text-indent: 0.32em;
    white-space: nowrap;
    text-align: center;
  }

  /* Hide any existing line elements inside the logo */
  .gh-nav-logo-bottom i,
  .gh-nav-logo-bottom b {
    display: none;
  }
}


/* =========================================================
   SMALL MOBILE LOGO
========================================================= */

@media (max-width: 650px) {

  .gh-nav-logo-name {
    font-size: 1.48rem;
  }

  .gh-nav-logo-bottom {
    margin-top: 6px;
    column-gap: 7px;
  }

  .gh-nav-logo-bottom span {
    font-size: 0.34rem;
    letter-spacing: 0.28em;
    text-indent: 0.28em;
  }
}

/* =========================================================
   GOLDEN HOUSE HERO — NO IMAGE
========================================================= */

.gh-main-hero {
  width: 100%;
  min-height: calc(100vh - var(--gh-navbar-height));
  padding: 95px 5vw 80px;

  position: relative;
  isolation: isolate;

  background:
    radial-gradient(
      circle at 50% 48%,
      #ffffff 0%,
      #fdfcf9 48%,
      #f8f5ef 100%
    );

  color: var(--gh-black);

  font-family: var(--gh-body-font);

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;
}


/* =========================================================
   DECORATIVE BACKGROUND
========================================================= */

.gh-hero-decorations {
  position: absolute;
  inset: 0;
  z-index: -1;

  pointer-events: none;
}

.gh-decor-circle {
  border-radius: 50%;

  position: absolute;

  border: 1px solid rgba(189, 138, 52, 0.25);
}

.gh-decor-circle::before,
.gh-decor-circle::after {
  content: "";

  border-radius: inherit;

  position: absolute;

  border: 1px solid rgba(189, 138, 52, 0.13);
}

.gh-decor-circle::before {
  inset: 18px;
}

.gh-decor-circle::after {
  inset: 38px;
}

.gh-decor-circle-left {
  width: 330px;
  height: 330px;

  top: -185px;
  left: -145px;
}

.gh-decor-circle-right {
  width: 300px;
  height: 300px;

  top: -130px;
  right: -95px;
}

.gh-decor-star {
  position: absolute;

  color: var(--gh-gold);

  font-size: 1.5rem;
}

.gh-decor-star-left {
  top: 20%;
  left: 8%;
}

.gh-decor-star-right {
  right: 9%;
  bottom: 23%;
}

.gh-decor-wave {
  width: 100%;
  height: 190px;

  position: absolute;
  right: 0;
  bottom: -25px;
  left: 0;
}

.gh-decor-wave path {
  fill: none;
  stroke: rgba(189, 138, 52, 0.37);
  stroke-width: 1;
}


/* =========================================================
   HERO CONTENT
========================================================= */

.gh-hero-inner {
  width: min(100%, 970px);
  margin: 0 auto;

  position: relative;
  z-index: 2;

  display: flex;
  flex-direction: column;
  align-items: center;

  text-align: center;
}


/* =========================================================
   HERO EYEBROW
========================================================= */

.gh-hero-eyebrow {
  margin-bottom: 22px;

  color: var(--gh-gold-dark);

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 21px;
}

.gh-hero-eyebrow span {
  width: 65px;
  height: 1px;

  background: var(--gh-gold);
}

.gh-hero-eyebrow p {
  margin: 0;

  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.27em;
  line-height: 1.6;
  text-transform: uppercase;
}


/* =========================================================
   HEART DIVIDER
========================================================= */

.gh-hero-heart-divider {
  width: min(100%, 410px);
  margin-bottom: 32px;

  color: var(--gh-gold);

  display: grid;
  grid-template-columns: 1fr 28px 1fr;
  align-items: center;
  gap: 15px;
}

.gh-hero-heart-divider i {
  width: 100%;
  height: 1px;

  display: block;

  background: var(--gh-gold);
}

.gh-hero-heart-divider svg {
  width: 27px;
  height: 27px;

  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}


/* =========================================================
   HERO TITLE
========================================================= */

.gh-hero-title {
  margin: 0;

  color: var(--gh-black);

  font-family: var(--gh-heading-font);
  font-size: clamp(3.4rem, 6vw, 6rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.9;
  text-transform: uppercase;
}

.gh-hero-title span {
  display: block;
  margin-top: 16px;
}


/* =========================================================
   HERO DESCRIPTION
========================================================= */

.gh-hero-description {
  max-width: 650px;
  margin: 37px auto 0;

  color: var(--gh-text);

  font-size: 1rem;
  line-height: 1.85;
}


/* =========================================================
   HERO BUTTONS
========================================================= */

.gh-hero-buttons {
  margin-top: 38px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}


/* Main Button */

.gh-hero-shop-button {
  width: auto;
  min-width: 205px;
  min-height: 58px;
  padding: 0 28px;

  background-color: #111111 !important;
  border: 1px solid #111111 !important;
  color: #ffffff !important;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;

  font-family: var(--gh-body-font);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;

  opacity: 1;
  visibility: visible;

  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}

.gh-hero-shop-button span {
  display: inline-block;
  color: #ffffff !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.gh-hero-shop-button i {
  display: inline-block;
  color: #bd8a34 !important;
  font-size: 0.82rem;
  opacity: 1 !important;
  visibility: visible !important;

  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

.gh-hero-shop-button:hover {
  background-color: #ffffff !important;
  border-color: #111111 !important;
  color: #111111 !important;
}

.gh-hero-shop-button:hover span {
  color: #111111 !important;
}

.gh-hero-shop-button:hover i {
  color: #111111 !important;
  transform: translateX(4px);
}


/* Secondary Link */

.gh-hero-story-link {
  padding: 10px 0;

  position: relative;

  color: var(--gh-black);

  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.gh-hero-story-link::after {
  content: "";

  width: 100%;
  height: 1px;

  position: absolute;
  bottom: 2px;
  left: 0;

  background: var(--gh-gold);

  transform-origin: left;

  transition: transform 0.28s ease;
}

.gh-hero-story-link:hover::after {
  transform: scaleX(0.55);
}


/* =========================================================
   SCROLL PROMPT
========================================================= */

.gh-scroll-prompt {
  position: absolute;
  right: 38px;
  bottom: 34px;

  color: var(--gh-muted);

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;

  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.gh-scroll-prompt i {
  color: var(--gh-gold);

  font-size: 0.75rem;
}


/* =========================================================
   TABLET HERO
========================================================= */

@media (max-width: 900px) {
  .gh-main-hero {
    min-height: calc(100dvh - var(--gh-navbar-height));
    padding: 85px 32px 75px;
  }

  .gh-hero-title {
    font-size: clamp(3.2rem, 9vw, 5.2rem);
  }

  .gh-decor-circle-left {
    width: 260px;
    height: 260px;
  }

  .gh-decor-circle-right {
    width: 230px;
    height: 230px;
  }

  .gh-scroll-prompt {
    display: none;
  }
}


/* =========================================================
   MOBILE HERO
========================================================= */

@media (max-width: 650px) {
  .gh-main-hero {
    min-height: calc(100dvh - var(--gh-navbar-height));
    padding: 70px 20px 65px;
  }

  .gh-hero-eyebrow {
    margin-bottom: 19px;
    gap: 11px;
  }

  .gh-hero-eyebrow span {
    width: 35px;
  }

  .gh-hero-eyebrow p {
    font-size: 0.55rem;
    letter-spacing: 0.17em;
  }

  .gh-hero-heart-divider {
    width: min(100%, 260px);
    margin-bottom: 28px;

    grid-template-columns: 1fr 23px 1fr;
    gap: 10px;
  }

  .gh-hero-heart-divider svg {
    width: 22px;
    height: 22px;
  }

  .gh-hero-title {
    font-size: clamp(3.25rem, 15.3vw, 4.8rem);
    line-height: 0.94;
  }

  .gh-hero-title span {
    margin-top: 8px;
  }

  .gh-hero-description {
    max-width: 430px;
    margin-top: 26px;

    font-size: 0.84rem;
    line-height: 1.75;
  }

  .gh-hero-buttons {
    width: 100%;
    margin-top: 31px;

    flex-direction: column;
    gap: 17px;
  }

  .gh-hero-shop-button {
    min-width: 185px;
    min-height: 55px;

    font-size: 0.65rem;
  }

  .gh-hero-story-link {
    font-size: 0.62rem;
  }

  .gh-decor-circle-left {
    width: 210px;
    height: 210px;

    top: -125px;
    left: -115px;
  }

  .gh-decor-circle-right {
    width: 190px;
    height: 190px;

    top: -95px;
    right: -95px;
  }

  .gh-decor-star-left {
    top: 15%;
    left: 7%;

    font-size: 1rem;
  }

  .gh-decor-star-right {
    right: 7%;
    bottom: 17%;

    font-size: 1rem;
  }

  .gh-decor-wave {
    height: 110px;
  }
}


/* =========================================================
   EXTRA-SMALL MOBILE
========================================================= */

@media (max-width: 390px) {
  .gh-main-hero {
    padding-inline: 16px;
  }

  .gh-hero-title {
    font-size: 3rem;
  }

  .gh-hero-shop-button {
    width: 100%;
  }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {
  .gh-menu-button span,
  .gh-mobile-menu,
  .gh-mobile-links a,
  .gh-hero-shop-button,
  .gh-hero-shop-button i,
  .gh-hero-story-link::after {
    transition: none;
  }
}


/* =========================================================
   GOLDEN HOUSE WELCOME SECTION
========================================================= */

:root {
  --gh-welcome-white: #ffffff;
  --gh-welcome-black: #111111;
  --gh-welcome-text: #333333;
  --gh-welcome-gold: #bd8a33;
  --gh-welcome-border: #ececec;

  --gh-welcome-heading-font: "Playfair Display", serif;
  --gh-welcome-body-font: "DM Sans", sans-serif;
}


/* =========================================================
   WELCOME SECTION — DESKTOP
========================================================= */

.gh-welcome-section {
  width: 100%;
  padding: 90px 5vw;

  background: var(--gh-welcome-white);
  color: var(--gh-welcome-black);

  font-family: var(--gh-welcome-body-font);
}

.gh-welcome-container {
  width: min(100%, 760px);
  margin: 0 auto;
  padding: 58px 60px;

  background: var(--gh-welcome-white);
  border: 1px solid var(--gh-welcome-border);
  border-radius: 24px;

  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.045);

  display: flex;
  flex-direction: column;
  align-items: center;

  text-align: center;
}


/* =========================================================
   TOP DECORATION
========================================================= */

.gh-welcome-top-decoration {
  margin-bottom: 28px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;

  color: var(--gh-welcome-gold);
}

.gh-welcome-top-decoration span {
  width: 105px;
  height: 1px;

  background: var(--gh-welcome-gold);
}

.gh-welcome-top-decoration svg {
  width: 34px;
  height: 34px;

  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}


/* =========================================================
   HEADING
========================================================= */

.gh-welcome-heading {
  width: 100%;

  text-align: center;
}

.gh-welcome-eyebrow {
  margin: 0 0 14px;

  color: var(--gh-welcome-black);

  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.48em;
  line-height: 1.5;
  text-indent: 0.48em;
  text-transform: uppercase;
}

.gh-welcome-heading h2 {
  margin: 0;

  color: var(--gh-welcome-black);

  font-family: var(--gh-welcome-heading-font);
  font-size: clamp(2.6rem, 4.2vw, 4.2rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.95;
  text-transform: uppercase;
}


/* =========================================================
   GOLD DIVIDER
========================================================= */

.gh-welcome-divider {
  width: min(100%, 500px);
  margin: 32px auto 30px;

  display: grid;
  grid-template-columns: 1fr 66px 1fr;
  align-items: center;
}

.gh-welcome-divider span {
  width: 100%;
  height: 1px;

  background: var(--gh-welcome-gold);
}

.gh-welcome-divider i {
  width: 100%;
  height: 5px;

  display: block;

  background: var(--gh-welcome-gold);
  border-radius: 99px;
}


/* =========================================================
   WELCOME COPY
========================================================= */

.gh-welcome-copy {
  width: min(100%, 570px);
  margin: 0 auto;

  text-align: center;
}

.gh-welcome-copy p {
  margin: 0;

  color: var(--gh-welcome-text);

  font-size: 0.96rem;
  line-height: 1.8;
}

.gh-welcome-copy p + p {
  margin-top: 8px;
}

.gh-welcome-copy .gh-welcome-thank-you {
  margin-top: 26px;

  color: var(--gh-welcome-black);

  font-size: 0.92rem;
  line-height: 1.75;
}


/* =========================================================
   CLOSING MESSAGE
========================================================= */

.gh-welcome-closing {
  margin-top: 34px;

  color: var(--gh-welcome-gold);

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;

  text-align: center;
}

.gh-welcome-closing span {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  line-height: 1.5;
  text-indent: 0.28em;
  text-transform: uppercase;
}

.gh-welcome-closing svg {
  width: 24px;
  height: 24px;

  flex-shrink: 0;

  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}


/* =========================================================
   WELCOME SECTION — TABLET
========================================================= */

@media (max-width: 900px) {
  .gh-welcome-section {
    padding: 78px 32px;
  }

  .gh-welcome-container {
    max-width: 700px;
    padding: 52px 45px;
  }

  .gh-welcome-top-decoration span {
    width: 85px;
  }
}


/* =========================================================
   WELCOME SECTION — MOBILE
========================================================= */

@media (max-width: 650px) {
  .gh-welcome-section {
    padding: 65px 20px;
  }

  .gh-welcome-container {
    width: 100%;
    padding: 42px 22px;

    border-radius: 18px;
  }

  .gh-welcome-top-decoration {
    margin-bottom: 23px;
    gap: 16px;
  }

  .gh-welcome-top-decoration span {
    width: 55px;
  }

  .gh-welcome-top-decoration svg {
    width: 28px;
    height: 28px;
  }

  .gh-welcome-eyebrow {
    margin-bottom: 12px;

    font-size: 0.61rem;
    letter-spacing: 0.34em;
    text-indent: 0.34em;
  }

  .gh-welcome-heading h2 {
    font-size: clamp(2.3rem, 11vw, 3.2rem);
  }

  .gh-welcome-divider {
    width: 100%;
    margin: 26px auto 25px;

    grid-template-columns: 1fr 45px 1fr;
  }

  .gh-welcome-copy {
    width: 100%;
  }

  .gh-welcome-copy p {
    font-size: 0.82rem;
    line-height: 1.72;
  }

  .gh-welcome-copy .gh-welcome-thank-you {
    margin-top: 22px;

    font-size: 0.81rem;
  }

  .gh-welcome-closing {
    margin-top: 28px;
    gap: 10px;
  }

  .gh-welcome-closing span {
    font-size: 0.58rem;
    letter-spacing: 0.2em;
    text-indent: 0.2em;
  }

  .gh-welcome-closing svg {
    width: 19px;
    height: 19px;
  }
}


/* =========================================================
   EXTRA-SMALL MOBILE
========================================================= */

@media (max-width: 390px) {
  .gh-welcome-container {
    padding: 38px 17px;
  }

  .gh-welcome-top-decoration span {
    width: 42px;
  }

  .gh-welcome-heading h2 {
    font-size: 2.2rem;
  }

  .gh-welcome-closing span {
    max-width: 180px;
  }
}


/* =====================================================
   EXPLORE GOLDEN HOUSE SECTION
===================================================== */

.gh-explore {
  --gh-gold: #c7953f;
  --gh-gold-light: #e0b565;
  --gh-black: #0d0d0d;
  --gh-cream: #fffaf3;
  --gh-text: #1c1a18;

  width: 100%;
  padding: 80px 24px;
  position: relative;
  overflow: hidden;

  background:
    radial-gradient(
      circle at 15% 15%,
      rgba(199, 149, 63, 0.08),
      transparent 24%
    ),
    radial-gradient(
      circle at 88% 80%,
      rgba(199, 149, 63, 0.08),
      transparent 25%
    ),
    #fff;
}

.gh-explore::before,
.gh-explore::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(199, 149, 63, 0.17);
  border-radius: 50%;
  pointer-events: none;
}

.gh-explore::before {
  left: -105px;
  bottom: -100px;
}

.gh-explore::after {
  right: -110px;
  top: -105px;
}

.gh-explore-container {
  width: min(1380px, 100%);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}


/* =====================================================
   SECTION HEADING
===================================================== */

.gh-explore-heading {
  text-align: center;
  margin-bottom: 38px;
}

.gh-explore-heading-decoration {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 17px;
  margin-bottom: 14px;
}

.gh-explore-line {
  display: block;
  width: 115px;
  height: 1px;
  background: var(--gh-gold);
}

.gh-explore-heart {
  color: var(--gh-gold);
  font-size: 1.5rem;
  line-height: 1;
}

.gh-explore-heading h2 {
  margin: 0;
  color: var(--gh-black);

  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.5rem, 4vw, 4.3rem);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.gh-explore-heading h2 span {
  color: var(--gh-gold);
}

.gh-explore-heading p {
  margin: 13px 0 0;
  color: #4d4944;

  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
}


/* =====================================================
   CARD GRID
===================================================== */

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


/* =====================================================
   EXPLORE CARD
===================================================== */

.gh-explore-card {
  min-height: 530px;
  position: relative;
  overflow: hidden;

  border: 1px solid rgba(199, 149, 63, 0.8);
  border-radius: 21px;

  background: var(--gh-black);
  isolation: isolate;

  box-shadow:
    0 20px 50px rgba(20, 14, 7, 0.12),
    0 5px 14px rgba(20, 14, 7, 0.08);
}

.gh-explore-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;

  position: absolute;
  inset: 0;
  z-index: -3;

  transition:
    transform 0.7s ease,
    filter 0.7s ease;
}

.gh-explore-card-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;

  background:
    linear-gradient(
      to bottom,
      rgba(8, 8, 8, 0.02) 0%,
      rgba(8, 8, 8, 0.09) 23%,
      rgba(8, 8, 8, 0.71) 58%,
      rgba(8, 8, 8, 0.98) 100%
    );
}

.gh-explore-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;

  background:
    linear-gradient(
      115deg,
      transparent 30%,
      rgba(255, 255, 255, 0.06) 48%,
      transparent 65%
    );

  transform: translateX(-120%);
  transition: transform 0.8s ease;
}

.gh-explore-card-content {
  width: 100%;
  min-height: 530px;
  padding: 250px 34px 28px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;

  text-align: center;
}


/* =====================================================
   CARD ICON
===================================================== */

.gh-explore-card-icon {
  width: 76px;
  height: 76px;
  margin-bottom: 18px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid var(--gh-gold-light);
  border-radius: 50%;

  color: var(--gh-gold-light);
  background: rgba(10, 10, 10, 0.88);
  backdrop-filter: blur(7px);

  font-size: 1.75rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.24);

  transition:
    background-color 0.35s ease,
    color 0.35s ease,
    transform 0.35s ease;
}


/* =====================================================
   CARD TEXT
===================================================== */

.gh-explore-card h3 {
  margin: 0;
  color: #fff;

  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.85rem, 2.6vw, 2.8rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

.gh-explore-card h3 span {
  color: var(--gh-gold-light);
}

.gh-explore-card-divider {
  margin: 16px 0 15px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  color: var(--gh-gold-light);
}

.gh-explore-card-divider span {
  width: 48px;
  height: 1px;
  background: var(--gh-gold-light);
}

.gh-explore-card-divider i {
  font-size: 0.72rem;
}

.gh-explore-card p {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.86);

  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.96rem;
  line-height: 1.65;
}


/* =====================================================
   CARD BUTTON
===================================================== */

.gh-explore-button {
  width: min(250px, 100%);
  min-height: 53px;
  padding: 12px 20px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;

  border: 1px solid var(--gh-gold);
  border-radius: 5px;

  color: var(--gh-gold-light);
  background: rgba(8, 8, 8, 0.54);

  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-decoration: none;
  text-transform: uppercase;

  transition:
    color 0.3s ease,
    background-color 0.3s ease,
    border-color 0.3s ease;
}

.gh-explore-button i {
  font-size: 0.95rem;
  transition: transform 0.3s ease;
}


/* =====================================================
   HOVER EFFECTS
===================================================== */

@media (hover: hover) {

  .gh-explore-card:hover .gh-explore-card-image {
    transform: scale(1.055);
    filter: contrast(1.03);
  }

  .gh-explore-card:hover::after {
    transform: translateX(120%);
  }

  .gh-explore-card:hover .gh-explore-card-icon {
    color: var(--gh-black);
    background: var(--gh-gold-light);
    transform: translateY(-4px);
  }

  .gh-explore-button:hover {
    color: var(--gh-black);
    background: var(--gh-gold-light);
    border-color: var(--gh-gold-light);
  }

  .gh-explore-button:hover i {
    transform: translateX(5px);
  }

}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1050px) {

  .gh-explore {
    padding: 70px 20px;
  }

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

  .gh-explore-card:last-child {
    grid-column: 1 / -1;
    width: min(600px, 100%);
    justify-self: center;
  }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 700px) {

  .gh-explore {
    padding: 58px 16px;
  }

  .gh-explore-heading {
    margin-bottom: 28px;
  }

  .gh-explore-heading-decoration {
    gap: 12px;
    margin-bottom: 12px;
  }

  .gh-explore-line {
    width: 72px;
  }

  .gh-explore-heart {
    font-size: 1.2rem;
  }

  .gh-explore-heading h2 {
    font-size: clamp(2.25rem, 10vw, 3.25rem);
    line-height: 0.98;
  }

  .gh-explore-heading p {
    margin-top: 10px;
    font-size: 0.92rem;
  }

  .gh-explore-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .gh-explore-card,
  .gh-explore-card:last-child {
    width: 100%;
    min-height: 490px;
    grid-column: auto;
    border-radius: 18px;
  }

  .gh-explore-card-content {
    min-height: 490px;
    padding: 215px 24px 24px;
  }

  .gh-explore-card-icon {
    width: 68px;
    height: 68px;
    margin-bottom: 16px;
    font-size: 1.55rem;
  }

  .gh-explore-card h3 {
    font-size: clamp(1.85rem, 8.5vw, 2.45rem);
  }

  .gh-explore-card p {
    margin-bottom: 20px;
    font-size: 0.9rem;
  }

  .gh-explore-button {
    min-height: 51px;
  }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 390px) {

  .gh-explore {
    padding-inline: 12px;
  }

  .gh-explore-heading h2 {
    font-size: 2.1rem;
  }

  .gh-explore-line {
    width: 58px;
  }

  .gh-explore-card,
  .gh-explore-card-content {
    min-height: 465px;
  }

  .gh-explore-card-content {
    padding:
      200px
      18px
      20px;
  }

  .gh-explore-card h3 {
    font-size: 1.8rem;
  }

}



/* =========================================================
   GOLDEN HOUSE NEWSLETTER
========================================================= */

:root {
  --gh-black: #0d0d0d;
  --gh-white: #ffffff;

  --gh-cream: #f8f3ea;
  --gh-cream-light: #fffdf9;
  --gh-cream-dark: #eadcc7;

  --gh-gold: #b98a45;
  --gh-gold-light: #d4b57e;
  --gh-gold-soft: rgba(185, 138, 69, 0.22);

  --gh-text: #171717;
  --gh-muted: #68635d;
  --gh-border: rgba(185, 138, 69, 0.48);

  --gh-heading-font: "Playfair Display", serif;
  --gh-body-font: "DM Sans", sans-serif;
}


/* =========================================================
   NEWSLETTER SECTION — DESKTOP
========================================================= */

.gh-newsletter {
  padding: 70px 5vw;

  position: relative;
  isolation: isolate;

  background:
    linear-gradient(
      135deg,
      #fbf7f0 0%,
      #f4eadb 48%,
      #fffdf8 100%
    );

  color: var(--gh-text);
  font-family: var(--gh-body-font);

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;
}

.gh-newsletter-container {
  width: min(100%, 900px);

  position: relative;
  z-index: 5;
}

.gh-newsletter-card {
  padding: 56px 56px 50px;

  position: relative;

  background:
    linear-gradient(
      145deg,
      rgba(255, 253, 249, 0.94),
      rgba(250, 245, 237, 0.91)
    );

  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 24px;

  box-shadow:
    0 35px 90px rgba(75, 52, 23, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  display: flex;
  flex-direction: column;
  align-items: center;

  text-align: center;

  overflow: hidden;
}


/* Subtle Internal Shine */

.gh-newsletter-card::before {
  content: "";

  width: 380px;
  height: 380px;
  border-radius: 50%;

  position: absolute;
  top: -260px;
  left: 50%;

  background:
    radial-gradient(
      circle,
      rgba(255, 255, 255, 0.95),
      rgba(255, 255, 255, 0)
    );

  transform: translateX(-50%);
  pointer-events: none;
}


/* =========================================================
   ANIMATED BACKGROUND — DESKTOP
========================================================= */

.gh-newsletter-background {
  position: absolute;
  inset: 0;
  z-index: 0;

  pointer-events: none;
}

.gh-blob {
  display: block;

  position: absolute;

  border: 1px solid rgba(185, 138, 69, 0.28);

  background:
    linear-gradient(
      145deg,
      rgba(225, 196, 148, 0.34),
      rgba(255, 255, 255, 0.2)
    );

  filter: blur(0.2px);

  animation:
    ghBlobMove 13s ease-in-out infinite alternate,
    ghBlobShape 10s ease-in-out infinite alternate;
}

.gh-blob-one {
  width: 380px;
  height: 310px;

  top: -100px;
  left: -90px;

  border-radius: 58% 42% 45% 55% / 58% 42% 58% 42%;
}

.gh-blob-two {
  width: 320px;
  height: 390px;

  top: -150px;
  right: -70px;

  border-radius: 44% 56% 62% 38% / 48% 44% 56% 52%;

  animation-delay: -3s;
}

.gh-blob-three {
  width: 430px;
  height: 320px;

  left: 8%;
  bottom: -200px;

  border-radius: 61% 39% 43% 57% / 41% 52% 48% 59%;

  animation-delay: -6s;
}

.gh-blob-four {
  width: 330px;
  height: 420px;

  right: 4%;
  bottom: -210px;

  border-radius: 45% 55% 62% 38% / 57% 38% 62% 43%;

  animation-delay: -8s;
}

.gh-glow {
  width: 7px;
  height: 7px;
  border-radius: 50%;

  position: absolute;

  background: var(--gh-white);

  box-shadow:
    0 0 12px rgba(255, 255, 255, 0.95),
    0 0 28px rgba(208, 167, 97, 0.75);

  animation: ghGlowFloat 5s ease-in-out infinite;
}

.gh-glow-one {
  top: 20%;
  left: 15%;
}

.gh-glow-two {
  right: 13%;
  bottom: 24%;

  animation-delay: -1.5s;
}

.gh-glow-three {
  top: 13%;
  right: 35%;

  animation-delay: -3s;
}

.gh-leaf-shadow {
  width: 340px;
  height: 560px;

  position: absolute;

  opacity: 0.13;
  filter: blur(1.5px);

  background:
    repeating-linear-gradient(
      72deg,
      transparent 0 32px,
      rgba(83, 62, 34, 0.65) 33px 37px,
      transparent 38px 65px
    );

  transform-origin: bottom center;

  animation: ghLeafSway 8s ease-in-out infinite alternate;
}

.gh-leaf-left {
  left: -120px;
  bottom: -130px;

  transform: rotate(-20deg);
}

.gh-leaf-right {
  top: -170px;
  right: -110px;

  transform: rotate(155deg);

  animation-delay: -3s;
}


/* =========================================================
   TOP DECORATION
========================================================= */

.gh-newsletter-decoration {
  margin-bottom: 20px;

  position: relative;
  z-index: 2;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;

  color: var(--gh-gold);
}

.gh-newsletter-decoration span {
  width: 60px;
  height: 1px;

  background:
    linear-gradient(
      90deg,
      transparent,
      var(--gh-gold)
    );
}

.gh-newsletter-decoration span:last-child {
  background:
    linear-gradient(
      90deg,
      var(--gh-gold),
      transparent
    );
}

.gh-newsletter-decoration i {
  font-size: 0.78rem;

  animation: ghDiamondGlow 2.8s ease-in-out infinite;
}


/* =========================================================
   NEWSLETTER HEADING
========================================================= */

.gh-newsletter-heading {
  position: relative;
  z-index: 2;
}

.gh-newsletter-heading h2 {
  font-family: var(--gh-heading-font);
  font-size: clamp(2.3rem, 4vw, 3.4rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.gh-newsletter-subheading {
  margin-top: 14px;

  color: var(--gh-gold);

  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  line-height: 1.5;
  text-transform: uppercase;
}

.gh-newsletter-description {
  max-width: 560px;
  margin: 18px auto 0;

  color: var(--gh-muted);

  font-size: 0.92rem;
  line-height: 1.75;
}


/* =========================================================
   NEWSLETTER FORM
========================================================= */

.gh-newsletter-form {
  width: min(100%, 640px);
  margin-top: 28px;

  position: relative;
  z-index: 2;
}

.gh-newsletter-field {
  min-height: 60px;
  padding: 6px;

  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--gh-border);
  border-radius: 999px;

  box-shadow:
    0 16px 40px rgba(69, 48, 19, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);

  display: flex;
  align-items: center;
}

.gh-newsletter-field:focus-within {
  border-color: var(--gh-gold);

  box-shadow:
    0 0 0 4px var(--gh-gold-soft),
    0 16px 40px rgba(69, 48, 19, 0.08);
}

.gh-newsletter-input-area {
  min-width: 0;
  padding: 0 20px;

  flex: 1;

  display: flex;
  align-items: center;
  gap: 14px;
}

.gh-newsletter-input-area i {
  color: var(--gh-gold);
  font-size: 1.05rem;
}

.gh-newsletter-input-area input {
  width: 100%;

  background: transparent;
  border: none;
  outline: none;

  color: var(--gh-text);

  font-family: var(--gh-body-font);
  font-size: 0.88rem;
}

.gh-newsletter-input-area input::placeholder {
  color: #9b9893;
}

.gh-newsletter-button {
  min-width: 170px;
  min-height: 60px;
  padding: 0 26px;
  border-radius: 999px;

  position: relative;

  background:
    linear-gradient(
      135deg,
      #1a1a1a,
      #070707
    );

  color: var(--gh-white);

  overflow: hidden;

  transition:
    background 0.3s ease,
    transform 0.3s ease,
    opacity 0.3s ease;
}

.gh-newsletter-button::before {
  content: "";

  width: 80px;
  height: 180%;

  position: absolute;
  top: -40%;
  left: -110px;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.2),
      transparent
    );

  transform: rotate(20deg);

  transition: left 0.7s ease;
}

.gh-newsletter-button:hover::before {
  left: calc(100% + 70px);
}

.gh-newsletter-button:hover {
  background:
    linear-gradient(
      135deg,
      #b98a45,
      #8f642d
    );
}

.gh-newsletter-button:disabled {
  cursor: not-allowed;
  opacity: 0.75;
}

.gh-button-default,
.gh-button-loading {
  width: 100%;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;

  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.gh-button-loading {
  display: none;
}

.gh-newsletter-button.is-loading .gh-button-default {
  display: none;
}

.gh-newsletter-button.is-loading .gh-button-loading {
  display: flex;
}

.gh-button-spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: var(--gh-white);
  border-radius: 50%;

  animation: ghSpinner 0.75s linear infinite;
}


/* =========================================================
   MESSAGE AND PRIVACY
========================================================= */

.gh-newsletter-message {
  min-height: 24px;
  margin-top: 13px;

  font-size: 0.75rem;
  font-weight: 600;
}

.gh-newsletter-message.is-error {
  color: #a12f2f;
}

.gh-newsletter-privacy {
  margin-top: 12px;

  position: relative;
  z-index: 2;

  color: #8a857e;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;

  font-size: 0.76rem;
  line-height: 1.6;
}

.gh-newsletter-privacy i {
  color: var(--gh-gold);
}


/* =========================================================
   SUCCESS MESSAGE
========================================================= */

.gh-newsletter-success {
  width: min(100%, 640px);
  margin-top: 24px;
  padding: 22px 26px;

  position: relative;
  z-index: 4;

  background:
    linear-gradient(
      135deg,
      rgba(21, 21, 21, 0.98),
      rgba(8, 8, 8, 0.98)
    );

  border: 1px solid rgba(212, 181, 126, 0.4);
  border-radius: 28px;

  color: var(--gh-white);

  display: none;
  align-items: center;
  gap: 24px;

  text-align: left;

  opacity: 0;
  transform: translateY(20px);
}

.gh-newsletter-success.is-visible {
  display: flex;

  animation: ghSuccessReveal 0.55s ease forwards;
}

.gh-success-icon {
  width: 58px;
  min-width: 58px;
  height: 58px;
  border-radius: 50%;

  background:
    linear-gradient(
      135deg,
      var(--gh-gold-light),
      var(--gh-gold)
    );

  color: var(--gh-black);

  display: grid;
  place-items: center;

  font-size: 1.2rem;
}

.gh-success-label {
  display: block;
  margin-bottom: 6px;

  color: var(--gh-gold-light);

  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.gh-success-content h3 {
  margin-bottom: 7px;

  font-family: var(--gh-heading-font);
  font-size: 1.55rem;
  font-weight: 500;
}

.gh-success-content p {
  max-width: 710px;

  color: rgba(255, 255, 255, 0.68);

  font-size: 0.75rem;
  line-height: 1.65;
}

.gh-success-reset {
  margin-top: 14px;
  padding-bottom: 4px;

  background: transparent;
  border-bottom: 1px solid var(--gh-gold-light);

  color: var(--gh-gold-light);

  font-size: 0.67rem;
  font-weight: 700;
}


/* =========================================================
   NEWSLETTER — TABLET
========================================================= */

@media (max-width: 1000px) {
  .gh-newsletter {
    padding: 55px 32px;
  }

  .gh-newsletter-card {
    padding: 48px 40px 42px;
  }

  .gh-newsletter-heading h2 {
    font-size: clamp(2.2rem, 6vw, 3rem);
  }

  .gh-newsletter-field {
    min-height: 58px;
  }

  .gh-newsletter-button {
    min-width: 160px;
    min-height: 56px;
    padding-inline: 24px;
  }

  .gh-blob-one {
    left: -180px;
  }

  .gh-blob-two {
    right: -170px;
  }
}


/* =========================================================
   NEWSLETTER — MOBILE
========================================================= */

@media (max-width: 700px) {
  .gh-newsletter {
    padding: 45px 20px;
  }

  .gh-newsletter-card {
    padding: 38px 22px 34px;
    border-radius: 20px;
  }

  .gh-newsletter-decoration {
    margin-bottom: 18px;
    gap: 13px;
  }

  .gh-newsletter-decoration span {
    width: 44px;
  }

  .gh-newsletter-heading h2 {
    font-size: clamp(1.9rem, 9vw, 2.6rem);
    line-height: 1;
  }

  .gh-newsletter-subheading {
    margin-top: 16px;

    font-size: 0.59rem;
    letter-spacing: 0.35em;
  }

  .gh-newsletter-description {
    margin-top: 23px;

    font-size: 0.8rem;
    line-height: 1.7;
  }

  .gh-newsletter-form {
    margin-top: 32px;
  }

  .gh-newsletter-field {
    min-height: 0;
    padding: 7px;

    background: transparent;
    border: none;
    border-radius: 0;

    box-shadow: none;

    flex-direction: column;
    gap: 11px;
  }

  .gh-newsletter-field:focus-within {
    border-color: transparent;
    box-shadow: none;
  }

  .gh-newsletter-input-area {
    width: 100%;
    min-height: 54px;
    padding: 0 19px;

    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--gh-border);
    border-radius: 999px;
  }

  .gh-newsletter-input-area input {
    font-size: 0.82rem;
  }

  .gh-newsletter-input-area i {
    font-size: 1rem;
  }

  .gh-newsletter-button {
    width: 100%;
    min-width: 0;
    min-height: 54px;
  }

  .gh-newsletter-privacy {
    margin-top: 14px;

    align-items: flex-start;

    font-size: 0.65rem;
    text-align: left;
  }

  .gh-newsletter-success {
    padding: 24px 20px;

    align-items: flex-start;
    flex-direction: column;

    border-radius: 23px;
  }

  .gh-success-icon {
    width: 48px;
    min-width: 48px;
    height: 48px;
  }

  .gh-success-content h3 {
    font-size: 1.3rem;
  }

  .gh-blob-one {
    width: 260px;
    height: 220px;
  }

  .gh-blob-two {
    width: 240px;
    height: 290px;
  }

  .gh-blob-three,
  .gh-blob-four {
    opacity: 0.6;
  }

  .gh-leaf-shadow {
    opacity: 0.08;
  }
}


/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes ghBlobMove {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }

  50% {
    transform: translate3d(30px, -20px, 0) rotate(7deg);
  }

  100% {
    transform: translate3d(-15px, 25px, 0) rotate(-5deg);
  }
}

@keyframes ghBlobShape {
  0% {
    border-radius: 58% 42% 45% 55% / 58% 42% 58% 42%;
  }

  50% {
    border-radius: 42% 58% 62% 38% / 48% 61% 39% 52%;
  }

  100% {
    border-radius: 63% 37% 44% 56% / 40% 52% 48% 60%;
  }
}

@keyframes ghGlowFloat {
  0%,
  100% {
    opacity: 0.35;
    transform: translateY(0) scale(0.8);
  }

  50% {
    opacity: 1;
    transform: translateY(-18px) scale(1.2);
  }
}

@keyframes ghLeafSway {
  from {
    transform: rotate(-22deg) translateX(-5px);
  }

  to {
    transform: rotate(-15deg) translateX(10px);
  }
}

@keyframes ghDiamondGlow {
  0%,
  100% {
    opacity: 0.55;
    transform: scale(0.85) rotate(45deg);
  }

  50% {
    opacity: 1;
    transform: scale(1.15) rotate(45deg);
  }
}

@keyframes ghSpinner {
  to {
    transform: rotate(360deg);
  }
}

@keyframes ghSuccessReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* Respect Reduced Motion Settings */

@media (prefers-reduced-motion: reduce) {
  .gh-blob,
  .gh-glow,
  .gh-leaf-shadow,
  .gh-newsletter-decoration i {
    animation: none;
  }

  .gh-newsletter-success.is-visible {
    animation: none;
    opacity: 1;
    transform: none;
  }
}


/* =========================================================
   GOLDEN HOUSE FOOTER
========================================================= */


/* =========================================================
   FOOTER VARIABLES
========================================================= */

:root {
  --footer-background: #f7f2ea;
  --footer-background-light: #fbf8f3;
  --footer-text: #171717;
  --footer-muted: #54504b;
  --footer-gold: #b8893d;
  --footer-border: rgba(184, 137, 61, 0.35);
  --footer-heading-font: "Playfair Display", serif;
  --footer-body-font: "DM Sans", sans-serif;
  --footer-container-width: 1400px;
}


/* =========================================================
   FOOTER DESKTOP
========================================================= */

.golden-footer {
  position: relative;

  background-color: var(--footer-background);
  background-image:
    linear-gradient(
      rgba(249, 246, 240, 0.88),
      rgba(249, 246, 240, 0.88)
    ),
    url("WhatsApp Image 2026-07-15 at 19.58.26.jpeg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  color: var(--footer-text);
  font-family: var(--footer-body-font);

  overflow: hidden;
}

.golden-footer-overlay {
  position: absolute;
  inset: 0;

  background:
    radial-gradient(
      circle at center,
      rgba(255, 255, 255, 0.2),
      transparent 60%
    );

  pointer-events: none;
}

.golden-footer-container {
  width: min(
    calc(100% - 10vw),
    var(--footer-container-width)
  );

  margin: 0 auto;
  padding: 56px 0 46px;

  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr 1fr 1.15fr;
  gap: 42px;
}


/* =========================================================
   FOOTER BRAND
========================================================= */

.golden-footer-brand {
  max-width: 340px;
}

.golden-footer-logo {
  display: inline-flex;
  flex-direction: column;
  align-items: center;

  color: var(--footer-text);
  text-align: center;
}

.golden-footer-logo-main {
  font-family: var(--footer-heading-font);
  font-size: clamp(1.5rem, 1.9vw, 1.95rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.05;
  text-transform: uppercase;
}

.golden-footer-logo-subtitle {
  margin-top: 8px;

  color: var(--footer-gold);

  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  line-height: 1.4;
  text-transform: uppercase;
}

.golden-footer-logo-line {
  width: 32px;
  height: 1px;
  margin: 12px 0 18px;

  display: block;

  background: var(--footer-gold);
}

.golden-footer-description {
  max-width: 305px;

  color: var(--footer-muted);

  font-size: 0.82rem;
  line-height: 1.75;
}

.golden-footer-social-area {
  margin-top: 28px;
}

.golden-footer-social-area h3 {
  margin-bottom: 10px;

  font-family: var(--footer-heading-font);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.golden-footer-socials {
  display: flex;
  align-items: center;
  gap: 11px;
}

.golden-footer-socials a {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(23, 23, 23, 0.48);
  border-radius: 50%;

  color: var(--footer-text);

  display: inline-flex;
  align-items: center;
  justify-content: center;

  font-size: 0.78rem;

  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease;
}

.golden-footer-socials a:hover {
  background: var(--footer-text);
  border-color: var(--footer-text);
  color: #ffffff;
}


/* =========================================================
   FOOTER COLUMNS
========================================================= */

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

.golden-footer-column > h3 {
  margin-bottom: 16px;

  font-family: var(--footer-heading-font);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.golden-footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.golden-footer-links a {
  position: relative;

  color: var(--footer-muted);

  font-size: 0.78rem;
  line-height: 1.4;

  transition: color 0.3s ease;
}

.golden-footer-links a::after {
  content: "";

  width: 0;
  height: 1px;

  position: absolute;
  left: 0;
  bottom: -5px;

  background: var(--footer-gold);

  transition: width 0.3s ease;
}

.golden-footer-links a:hover {
  color: var(--footer-text);
}

.golden-footer-links a:hover::after {
  width: 100%;
}


/* =========================================================
   FOOTER CONTACT
========================================================= */

.golden-footer-contact-list {
  width: 100%;

  display: flex;
  flex-direction: column;
  gap: 15px;
}

.golden-footer-contact-item {
  color: var(--footer-muted);

  display: flex;
  align-items: flex-start;
  gap: 13px;

  font-size: 0.78rem;
  line-height: 1.65;
}

a.golden-footer-contact-item {
  transition: color 0.3s ease;
}

a.golden-footer-contact-item:hover {
  color: var(--footer-text);
}

.golden-footer-contact-icon {
  width: 22px;
  min-width: 22px;
  height: 22px;

  color: var(--footer-text);

  display: inline-flex;
  align-items: center;
  justify-content: center;

  font-size: 0.86rem;
}


/* =========================================================
   FOOTER BOTTOM
========================================================= */

.golden-footer-bottom {
  position: relative;
  z-index: 2;

  border-top: 1px solid var(--footer-border);
}

.golden-footer-bottom-container {
  width: min(
    calc(100% - 10vw),
    var(--footer-container-width)
  );

  min-height: 64px;
  margin: 0 auto;
  padding: 14px 0;

  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 35px;
}

.golden-footer-copyright {
  color: var(--footer-muted);

  font-size: 0.72rem;
}

.golden-footer-payments {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.golden-payment-card {
  width: 44px;
  height: 26px;
  border: 1px solid rgba(23, 23, 23, 0.18);
  border-radius: 5px;

  background: rgba(255, 255, 255, 0.8);

  display: flex;
  align-items: center;
  justify-content: center;
}

.payment-text {
  font-size: 0.52rem;
  font-weight: 800;
}

.payment-visa {
  color: #1747a5;
  font-size: 0.68rem;
  font-style: italic;
}

.payment-eft {
  color: #24708b;
  font-size: 0.6rem;
}

.payment-paypal {
  color: #143d7b;
  font-size: 0.5rem;
}

.payment-mastercard {
  position: relative;

  width: 26px;
  height: 15px;

  display: block;
}

.payment-mastercard span {
  width: 15px;
  height: 15px;
  border-radius: 50%;

  position: absolute;
  top: 0;
}

.payment-mastercard span:first-child {
  left: 1px;
  background: #e94c22;
}

.payment-mastercard span:last-child {
  right: 1px;
  background: #f6aa1c;
  opacity: 0.92;
}

.golden-footer-tagline {
  justify-self: end;

  color: var(--footer-gold);

  font-family: "Allura", cursive;
  font-size: clamp(1.7rem, 2.3vw, 2.6rem);
  line-height: 1;
}

.golden-footer-credit {
  justify-self: end;

  color: var(--footer-muted);

  display: inline-flex;
  align-items: center;
  gap: 6px;

  font-size: 0.72rem;
}

.golden-footer-credit i {
  color: var(--footer-gold);
  font-size: 0.7rem;
}


/* =========================================================
   FOOTER LARGE TABLET
========================================================= */

@media (max-width: 1200px) {
  .golden-footer-container {
    width: calc(100% - 64px);

    grid-template-columns: 1.2fr repeat(2, 1fr);
    gap: 36px 32px;
  }

  .golden-footer-brand {
    max-width: 100%;
    grid-column: 1 / -1;
  }

  .golden-footer-description {
    max-width: 500px;
  }

  .golden-footer-social-area {
    margin-top: 20px;
  }

  .golden-footer-contact {
    grid-column: span 1;
  }

  .golden-footer-bottom-container {
    width: calc(100% - 64px);
  }

  .golden-footer-tagline {
    font-size: 1.9rem;
  }
}


/* =========================================================
   FOOTER TABLET
========================================================= */

@media (max-width: 900px) {
  .golden-footer {
    background-position: center bottom;
  }

  .golden-footer-container {
    padding: 48px 0 40px;

    grid-template-columns: repeat(2, 1fr);
    gap: 32px 26px;
  }

  .golden-footer-brand {
    grid-column: 1 / -1;
  }

  .golden-footer-logo {
    align-items: flex-start;
    text-align: left;
  }

  .golden-footer-contact {
    grid-column: 1 / -1;
  }

  .golden-footer-contact-list {
    max-width: 500px;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 24px;
  }

  .golden-footer-bottom-container {
    min-height: auto;
    padding: 20px 0;

    grid-template-columns: 1fr auto;
    justify-items: stretch;
    gap: 14px;

    text-align: left;
  }

  .golden-footer-payments {
    display: none;
  }

  .golden-footer-tagline {
    justify-self: end;
  }
}


/* =========================================================
   FOOTER MOBILE
========================================================= */

@media (max-width: 600px) {
  .golden-footer {
    background-size: auto 100%;
    background-position: center bottom;
  }

  .golden-footer-container {
    width: calc(100% - 40px);
    padding: 42px 0 36px;

    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 18px;
  }

  .golden-footer-brand {
    grid-column: 1 / -1;
  }

  .golden-footer-logo-main {
    font-size: 1.55rem;
  }

  .golden-footer-logo-subtitle {
    font-size: 0.55rem;
  }

  .golden-footer-description {
    max-width: 100%;

    font-size: 0.76rem;
    line-height: 1.7;
  }

  .golden-footer-social-area {
    margin-top: 20px;
  }

  .golden-footer-social-area h3 {
    font-size: 0.8rem;
  }

  .golden-footer-column > h3 {
    margin-bottom: 14px;

    font-size: 0.8rem;
  }

  .golden-footer-links {
    gap: 11px;
  }

  .golden-footer-links a {
    font-size: 0.72rem;
  }

  .golden-footer-contact {
    grid-column: 1 / -1;
  }

  .golden-footer-contact-list {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .golden-footer-contact-item {
    font-size: 0.74rem;
  }

  .golden-footer-bottom-container {
    width: calc(100% - 40px);
  }

  .golden-footer-payments {
    display: flex;
    grid-column: 1 / -1;
    order: 3;

    max-width: 300px;
    margin: 6px auto 0;

    flex-wrap: wrap;
    justify-content: center;
  }

  .golden-payment-card {
    width: 42px;
    height: 26px;
  }

  .golden-footer-tagline {
    font-size: 1.65rem;
  }
}


/* =========================================================
   FOOTER EXTRA SMALL MOBILE
========================================================= */

@media (max-width: 390px) {
  .golden-footer-container {
    grid-template-columns: 1fr;
  }

  .golden-footer-brand,
  .golden-footer-contact {
    grid-column: auto;
  }

  .golden-footer-logo-main {
    font-size: 1.4rem;
  }

  .golden-footer-column {
    padding-bottom: 5px;
  }

  .golden-footer-contact-list {
    max-width: 100%;
  }

  .golden-footer-tagline {
    font-size: 1.5rem;
  }
}