/* =========================================================
   Aarohi Silver — Global Stylesheet
   Sections: tokens, base, layout, header, buttons, hero,
   sections, gallery, footer, animations, responsive
   ========================================================= */

/* ---------- Tokens ---------- */
:root {
  --ink: #0e0f11;
  --ink-soft: #16181b;
  --ink-line: #26292e;
  --paper: #f6f4ef;
  --paper-dim: #ddd8ce;
  --silver: #c9ccd2;
  --silver-bright: #eef1f5;
  --accent: #b99a5b;
  --accent-soft: #d9bd85;
  --muted: #8c9099;

  --font-display: "Montserrat", "Plus Jakarta Sans", -apple-system, sans-serif;
  --font-body: "Plus Jakarta Sans", "Montserrat", -apple-system, sans-serif;

  --wrap: 95%;
  --wrap-max: 1680px;
  --gut: 28px;
  --radius: 2px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.35s var(--ease);
}

ul {
  list-style: none;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(3rem, 8vw, 7rem);
}

h2,
.section-title {
  font-size: clamp(1.25rem, 1.8vw, 1.65rem);
  line-height: 1.25;
}

h3 {
  font-size: clamp(1.3rem, 2vw, 1.7rem);
}

p {
  color: var(--silver);
}

::selection {
  background: var(--accent);
  color: var(--ink);
}

/* ---------- Layout helpers ---------- */
.wrap {
  width: 100%;
  max-width: 1680px;
  margin: 0 auto;
  padding: 0 var(--gut);
}

.section {
  padding: 65px 0;
  position: relative;
}

.section--tight {
  padding: 65px 0;
}
.numbercounter{
  padding-top: 0px;
}
.collection-slider-section {
  padding: 65px 0;
}

.section--paper {
  background: var(--paper);
  color: var(--ink);
}

.section--paper p {
  color: #4d5157;
}

.eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 22px;
}

.lead {
  font-size: 1.06rem;
  max-width: 56ch;
}

.rule {
  height: 1px;
  background: var(--ink-line);
  border: 0;
}

.grid {
  display: grid;
  gap: 60px;
}

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

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

.grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

.align-center {
  align-items: center;
}

.text-center {
  text-align: center;
}

.center-narrow {
  max-width: 720px;
  margin: 0 auto;
}

/* ---------- Preloader ---------- */
.loader {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader__mark {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.4em;
  color: var(--paper);
  text-transform: uppercase;
}

.loader__bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: var(--accent);
}

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: #ffffff;
  color: #111111;
  font-family: var(--font-body);
  border-bottom: 1px solid #e5e5e5;
  padding: 0;
  transition: box-shadow 0.3s ease;
}

.header.is-scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.header__wrap {
  width: 95%;
  max-width: 1680px;
  margin: 0 auto;
  padding: 0 var(--gut);
}

/* Row 1: Top Pink Promo Bar */
.header__promo-bar {
  background-color: #fae5e1; /* Blush pink tint from reference image */
  color: #2b2b2b;
  text-align: center;
  padding: 9px 16px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.header__promo-bar .highlight-num {
  font-weight: 800;
  font-size: 0.82rem;
  color: #111111;
  margin: 0 2px;
}

/* Row 2: Top Utility Bar */
.header__utility-bar {
  background: #ffffff;
  border-bottom: 1px solid #f0f0f0;
  padding: 8px 0;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #555555;
}

.header__utility-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__utility-links {
  display: flex;
  gap: 22px;
}

.header__utility-link {
  color: #555555;
  text-decoration: none;
  transition: color 0.2s ease;
}

.header__utility-link:hover {
  color: #000000;
}

.header__utility-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header__support-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #444444;
  text-decoration: none;
}

.header__support-link svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.header__support-phone {
  font-weight: 700;
  color: #111111;
}

.header__utility-divider {
  color: #dddddd;
  font-weight: 300;
}

/* Dropdowns in Utility */
.header__dropdown {
  position: relative;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  user-select: none;
  padding: 2px 4px;
}

.header__dropdown svg {
  width: 10px;
  height: 10px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  transition: transform 0.2s ease;
}

.header__dropdown:hover svg,
.header__dropdown.is-open svg {
  transform: rotate(180deg);
}

.header__dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 4px;
  background: #ffffff;
  border: 1px solid #e2e4e8;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-radius: 4px;
  padding: 6px 0;
  min-width: 110px;
  display: none;
  z-index: 120;
}

.header__dropdown:hover .header__dropdown-menu,
.header__dropdown.is-open .header__dropdown-menu {
  display: block;
}

.header__dropdown-item {
  padding: 6px 14px;
  font-size: 0.72rem;
  color: #333333;
  display: block;
  text-decoration: none;
  transition: background 0.15s ease;
}

.header__dropdown-item:hover {
  background: #f5f5f7;
  color: #000000;
}

/* Top Running Marquee Announcement Bar */
.header__running-bar {
  background: var(--ink-soft);
  color: var(--silver-bright);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 8px 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  white-space: nowrap;
}

.header__running-track {
  display: inline-flex;
  gap: 36px;
  animation: headerMarquee 30s linear infinite;
}

@keyframes headerMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* 3-Column Header Row (Left Menu | Center Logo | Right Contact) */
.header__main-row--3col {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 14px var(--gut);
  background: #ffffff;
  border-bottom: 1px solid #eef1f5;
}

.header__left-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.header__center-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.header__logo-img {
  height: 52px;
  max-width: 240px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease;
}

.header__logo-link:hover .header__logo-img {
  transform: scale(1.03);
}

.header__right-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}

.header__support-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #333333;
}

.header__support-link svg {
  width: 17px;
  height: 17px;
  fill: none !important;
  stroke: #111111 !important;
  stroke-width: 1.5 !important;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.header__support-txt {
  color: #555555;
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
}

.header__support-txt a {
  color: #111111;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s ease;
}

.header__support-txt a:hover {
  color: var(--accent);
}

.header__btn-contact {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #0e0f11;
  background: var(--silver-bright);
  border: 1px solid var(--silver-bright);
  border-radius: 2px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.header__btn-contact:hover {
  background: #F5F0E7 !important;
  border-color: #F5F0E7 !important;
  color: #0e0f11 !important;
  transform: translateY(-1px);
}

.header__brand-group {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header__logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #000000;
}

/* Logo Icon for R.N Payal */
.header__logo-icon {
  width: 34px;
  height: 34px;
  background: #000000;
  border-radius: 3px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #ffffff;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.header__logo-icon::before {
  content: "RN";
  position: relative;
  z-index: 1;
}

.header__logo-text {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #000000;
  line-height: 1;
}

/* Hamburger button */
.burger {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 5px !important;
  width: 38px;
  height: 38px;
  z-index: 10001;
}

.burger span {
  display: block !important;
  width: 22px;
  height: 2px;
  background: #111111;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
}

.burger.is-active span {
  background: #ffffff;
}

.burger.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger.is-active span:nth-child(2) {
  opacity: 0;
}

.burger.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Center Main Navigation */
.header__center-nav {
  display: flex;
  align-items: center;
  justify-content: center;
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header__nav-item {
  position: relative;
}

.header__nav-link {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #111111;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 0;
  text-decoration: none;
  transition: color 0.2s ease;
}

.header__nav-link svg {
  width: 10px;
  height: 10px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  transition: transform 0.2s ease;
}

.header__nav-item:hover .header__nav-link svg {
  transform: rotate(180deg);
}

.header__nav-link:hover,
.header__nav-link.is-active {
  color: #c5a059;
}

/* Mega Dropdown for Navigation */
.header__mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 4px;
  background: #ffffff;
  border: 1px solid #e2e4e8;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  border-radius: 4px;
  padding: 14px 18px;
  min-width: 220px;
  display: none;
  z-index: 120;
}

.header__nav-item:hover .header__mega-menu {
  display: block;
}

.header__mega-menu a {
  display: block;
  padding: 6px 0;
  font-size: 0.78rem;
  font-weight: 500;
  color: #444444;
  text-transform: capitalize;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.header__mega-menu a:hover {
  color: #c5a059;
  padding-left: 4px;
}

/* Right Group (Midnight Sales Widget) */
.header__right-group {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header__midnight-widget {
  display: flex;
  align-items: center;
  gap: 10px;
  user-select: none;
  cursor: pointer;
}

.header__midnight-label {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #111111;
}

.header__timer-boxes {
  display: flex;
  align-items: center;
  gap: 4px;
}

.header__timer-box {
  background: #ffffff;
  border: 1px solid #dcdfe6;
  border-radius: 3px;
  padding: 3px 7px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #111111;
  min-width: 26px;
  text-align: center;
}

.header__timer-colon {
  font-weight: 700;
  font-size: 0.8rem;
  color: #333333;
}

.header__midnight-widget svg {
  width: 10px;
  height: 10px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  margin-left: 2px;
}

/* Mobile Responsiveness */
@media (max-width: 1100px) {
  .header__center-nav {
    display: none;
  }
}

@media (max-width: 992px) {
  .header__utility-bar {
    display: none;
  }
  .header__brand-group {
    min-width: auto;
  }
}

@media (max-width: 640px) {
  .header__promo-bar {
    font-size: 0.68rem;
  }
  .header__logo-text {
    font-size: 1.3rem;
  }
}

/* Playfight Style Fullscreen Luxury Menu Overlay */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(11, 12, 14, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.45s;
  padding: 24px 6% 40px;
  overflow-y: auto;
}

body.is-open .drawer {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.drawer__logo-img {
  height: 44px;
  width: auto;
  filter: brightness(0) invert(1);
}

.drawer__close-btn {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.35s ease;
}

.drawer__close-btn:hover {
  background: #F5F0E7 !important;
  border-color: #F5F0E7 !important;
  color: #0b0c0e !important;
  transform: rotate(90deg) scale(1.08);
}

.drawer__content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 50px;
  flex: 1;
  padding: 20px 0;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

/* Left Navigation Links */
.drawer__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.drawer__nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.drawer__item {
  overflow: hidden;
}

.drawer__link {
  display: inline-flex;
  align-items: baseline;
  gap: 18px;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  font-weight: 300;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: -0.01em;
  line-height: 1.25;
  transform: translateY(90px);
  opacity: 0;
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s ease, opacity 0.4s ease;
}

body.is-open .drawer__link {
  transform: translateY(0);
  opacity: 1;
  transition-delay: calc(0.08s * var(--i));
}

.drawer__link-num {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--accent-soft);
  letter-spacing: 0.1em;
  font-family: var(--font-body);
  transition: color 0.3s ease;
}

.drawer__link-text {
  position: relative;
  display: inline-block;
}

/* Playfight Animated Strikethrough Line */
.drawer__link-text::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -2px;
  right: -2px;
  height: 3.5px;
  background: #ffffff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

/* Hover state: Only hovered item turns gray + gets strikethrough line, others stay white */
.drawer__link:hover {
  color: rgba(255, 255, 255, 0.45) !important;
}

.drawer__link:hover .drawer__link-text::after {
  transform: scaleX(1);
}

.drawer__footer {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
}

.drawer__btn-contact {
  display: inline-flex;
  align-items: center;
  padding: 12px 28px;
  border-radius: 40px;
  background: #ffffff;
  color: #0b0c0e;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
}

.drawer__btn-contact:hover {
  background: #F5F0E7 !important;
  color: #0b0c0e !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(245, 240, 231, 0.35);
}

.drawer__socials {
  display: flex;
  align-items: center;
  gap: 18px;
}

.drawer__socials a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.3s ease;
}

.drawer__socials a:hover {
  color: var(--accent-soft);
}

/* Right Interactive Preview Box */
.drawer__right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.drawer__preview-wrap {
  position: relative;
  width: 100%;
  max-width: 520px;
  aspect-ratio: 4 / 3;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transform: scale(0.92);
  opacity: 0;
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.65s ease;
}

body.is-open .drawer__preview-wrap {
  transform: scale(1);
  opacity: 1;
  transition-delay: 0.25s;
}

.drawer__preview-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.35s ease, transform 0.6s ease;
}

.drawer__preview-overlay {
  position: absolute;
  bottom: 18px;
  left: 22px;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  color: #ffffff;
  font-weight: 600;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.85);
  pointer-events: none;
}

@media (max-width: 900px) {
  .drawer__content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .drawer__right {
    display: none;
  }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 30px;
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  border: 1px solid var(--accent);
  color: var(--accent);
  background: transparent;
  border-radius: var(--radius);
  cursor: pointer;
  overflow: hidden;
  position: relative;
  transition:
    color 0.4s var(--ease),
    border-color 0.4s var(--ease);
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease);
  z-index: -1;
}

.btn:hover {
  color: #0e0f11 !important;
  border-color: #F5F0E7 !important;
}

.btn:hover::before {
  transform: scaleX(1);
  background: #F5F0E7 !important;
}

.btn--solid {
  background: var(--accent);
  color: var(--ink);
}

.btn--solid::before {
  background: #F5F0E7 !important;
}

.btn--ghost {
  border-color: var(--ink-line);
  color: var(--paper);
}

.btn--ghost::before {
  background: #F5F0E7 !important;
}

/* ---------- Full-Width Hero Slider Banner ---------- */
.hero-banner {
  position: relative;
  width: 100%;
  height: 86vh;
  min-height: 580px;
  max-height: 820px;
  overflow: hidden;
  background: #0b0c0e;
}

/* Full-Width Slides Container */
.hero-banner__slides {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-banner__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.9s cubic-bezier(0.25, 1, 0.5, 1), visibility 0.9s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 1;
}

.hero-banner__slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.hero-banner__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  transform: scale(1.04);
  transition: transform 6s ease-out;
}

.hero-banner__slide.is-active img {
  transform: scale(1);
}

/* Gradient Overlay for Readability */
.hero-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(4, 5, 7, 0.95) 0%,
    rgba(4, 5, 7, 0.6) 45%,
    rgba(4, 5, 7, 0.07) 75%,
    rgba(4, 5, 7, 0.15) 100%
  );
  z-index: 2;
  pointer-events: none;
}

/* Navigation Arrow Buttons */
.hero-banner__nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(15, 16, 20, 0.75);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease, color 0.3s ease;
}

.hero-banner__nav-btn:hover {
  background: #F5F0E7 !important;
  border-color: #F5F0E7 !important;
  color: #0b0c0e !important;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(245, 240, 231, 0.45);
}

.hero-banner__nav-btn svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
}

.hero-banner__nav-prev {
  left: 24px;
}

.hero-banner__nav-next {
  right: 24px;
}

/* Slider Dots Navigation */
.hero-banner__dots {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
}

.hero-banner__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.hero-banner__dot.is-active,
.hero-banner__dot:hover {
  background: var(--accent-soft);
  border-color: var(--accent-soft);
  transform: scale(1.3);
}

/* Left-Centered Content Box (Matching Reference Image) */
.hero-banner__content--left {
  position: absolute;
  top: 50%;
  left: 6%;
  transform: translateY(-50%);
  z-index: 5;
  text-align: left;
  width: 100%;
  max-width: 540px;
  padding: 0;
  color: #ffffff;
  opacity: 1;
}

/* Headline */
.hero-banner__headline {
  display: flex;
  flex-direction: column;
  margin-bottom: 14px;
}

.hero-banner__headline-top {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 2.05rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  color: #ffffff;
  line-height: 1.1;
  text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

.hero-banner__headline-main {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 3.8vw, 3.25rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #e5c178;
  line-height: 1.02;
  text-shadow: 0 2px 14px rgba(0,0,0,0.9);
}

/* Ornament Line */
.hero-banner__ornament-line {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  max-width: 420px;
}

.hero-banner__line-left,
.hero-banner__line-right {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--accent-soft), transparent);
}

.hero-banner__line-left {
  background: linear-gradient(-90deg, var(--accent-soft), transparent);
}

/* Tagline */
.hero-banner__tagline {
  display: flex;
  flex-direction: column;
  margin-bottom: 14px;
}

.hero-banner__tagline-top {
  font-family: var(--font-display);
  font-size: clamp(0.92rem, 1.4vw, 1.15rem);
  font-weight: 400;
  letter-spacing: 0.12em;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.8);
}

.hero-banner__tagline-sub {
  font-family: var(--font-display);
  font-size: clamp(0.92rem, 1.4vw, 1.15rem);
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--accent-soft);
  text-shadow: 0 2px 8px rgba(0,0,0,0.8);
}

/* Description */
.hero-banner__desc {
  font-size: 0.86rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.86);
  margin-bottom: 24px;
  font-weight: 300;
  max-width: 440px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.9);
}

/* Actions Group */
.hero-banner__actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.hero-banner__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.35s ease;
  border-radius: 2px;
}

.hero-banner__btn--gold {
  background: linear-gradient(135deg, #c5a059 0%, #a37c3f 100%);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(197, 160, 89, 0.3);
}

.hero-banner__btn--gold:hover {
  background: #F5F0E7 !important;
  border-color: #F5F0E7 !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(245, 240, 231, 0.45);
  color: #0b0c0e !important;
}

.hero-banner__btn--outline {
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(4px);
}

.hero-banner__btn--outline:hover {
  border-color: #F5F0E7 !important;
  color: #0b0c0e !important;
  background: #F5F0E7 !important;
  transform: translateY(-2px);
}

/* 50+ Years Heritage Badge (Right Side) */
.hero-banner__heritage-badge {
  position: absolute;
  top: 50%;
  right: 6%;
  transform: translateY(-50%);
  z-index: 4;
}

.hero-banner__badge-inner {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 1.5px solid var(--accent-soft);
  outline: 6px solid rgba(197, 160, 89, 0.15);
  background: rgba(11, 12, 14, 0.4);
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  padding: 12px;
  transition: transform 0.5s ease;
}

.hero-banner__heritage-badge:hover .hero-banner__badge-inner {
  transform: scale(1.05);
  border-color: #ffffff;
}

.hero-banner__badge-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1;
  color: var(--accent-soft);
}

.hero-banner__badge-lbl {
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.3;
  margin: 4px 0 6px;
  font-weight: 500;
}

/* ---------- Hero Perks Strip (Matching Reference Image) ---------- */
.hero-perks-strip {
  background: #08090b;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
}

.hero-perks-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: center;
}

.hero-perks-strip__item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-perks-strip__item:last-child {
  border-right: none;
}

.hero-perks-strip__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--accent-soft);
  color: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-perks-strip__icon svg {
  width: 20px;
  height: 20px;
}

.hero-perks-strip__badge-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--accent-soft);
  color: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
}

.hero-perks-strip__text strong {
  display: block;
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 2px;
}

.hero-perks-strip__text p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  line-height: 1.35;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
  .hero-banner__heritage-badge {
    display: none;
  }
  .hero-perks-strip__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 16px;
  }
  .hero-perks-strip__item:nth-child(2) {
    border-right: none;
  }
}

@media (max-width: 768px) {
  .hero-banner {
    height: 82vh;
    min-height: 520px;
  }
  .hero-banner__content--left {
    position: absolute;
    top: 50%;
    left: 5%;
    right: 5%;
    transform: translateY(-50%);
    width: 90%;
    max-width: 100%;
    z-index: 10;
  }
  .hero-banner__nav-btn {
    display: flex !important;
    width: 34px;
    height: 34px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 12;
  }
  .hero-banner__nav-prev {
    left: 6px;
  }
  .hero-banner__nav-next {
    right: 6px;
  }
  .hero-banner__headline-top {
    font-size: 1.15rem;
  }
  .hero-banner__headline-main {
    font-size: 1.75rem;
  }
  .hero-banner__tagline-top,
  .hero-banner__tagline-sub {
    font-size: 0.82rem;
  }
  .hero-banner__desc {
    font-size: 0.8rem;
    line-height: 1.45;
    margin-bottom: 18px;
  }
  .hero-banner__actions {
    flex-wrap: wrap;
    gap: 10px;
  }
  .hero-banner__btn {
    padding: 10px 18px;
    font-size: 0.7rem;
  }
  .hero-banner__dots {
    bottom: 16px;
    z-index: 15;
  }
}

@media (max-width: 640px) {
  .hero-perks-strip {
    padding: 18px 0;
  }
  .hero-perks-strip__grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }
  .hero-perks-strip__item {
    border-right: none !important;
    border-bottom: none !important;
    padding: 14px 10px !important;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 10px;
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 8px;
  }
  .hero-perks-strip__text strong {
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    margin-bottom: 3px;
  }
  .hero-perks-strip__text p {
    font-size: 0.72rem;
    line-height: 1.35;
  }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 160px 0 80px;
}

.hero__bg {
  position: absolute;
  inset: -12% 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}

.hero__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    100deg,
    rgba(14, 15, 17, 0.96) 12%,
    rgba(14, 15, 17, 0.6) 55%,
    rgba(14, 15, 17, 0.85) 100%
  );
}

.hero__inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.hero__title span {
  display: block;
  overflow: hidden;
}

.hero__title em {
  font-style: italic;
  color: var(--accent-soft);
}

.hero__text {
  margin: 34px 0 44px;
  max-width: 46ch;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__meta {
  position: absolute;
  right: var(--gut);
  bottom: 60px;
  z-index: 2;
  text-align: right;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- Marquee ---------- */
.marquee {
  border-top: 1px solid var(--ink-line);
  border-bottom: 1px solid var(--ink-line);
  padding: 26px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee__track {
  display: inline-flex;
  gap: 60px;
  will-change: transform;
}

.marquee__item {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.06em;
  color: var(--silver);
}

.marquee__item i {
  color: var(--accent);
  font-style: normal;
  margin-left: 60px;
}

/* ---------- Page head (inner pages) ---------- */
.pagehead {
  padding: 50px 0 35px;
  border-bottom: 1px solid var(--ink-line);
  position: relative;
}

.pagehead--has-bg {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 70px 0 70px !important;
  overflow: hidden;
}

.pagehead__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(14, 15, 17, 0.92) 0%,
    rgba(14, 15, 17, 0.78) 35%,
    rgba(14, 15, 17, 0.35) 65%,
    rgba(14, 15, 17, 0.1) 100%
  );
  z-index: 1;
}

.pagehead--has-bg .wrap {
  position: relative;
  z-index: 2;
}

.pagehead h1,
.pagehead .hero__title {
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.015em;
}

@media (max-width: 768px) {
  .pagehead {
    padding: 70px 0 70px !important;
  }
  .pagehead--has-bg {
    padding: 70px 0 70px !important;
    background-position: 78% center;
  }
  .pagehead h1,
  .pagehead .hero__title {
    font-size: clamp(1.5rem, 5vw, 2.2rem);
  }
  .story-showcase-section {
	padding: 60px 0 !important;
}
}

@media (max-width: 480px) {
  .pagehead--has-bg {
    padding: 70px 0 70px !important;
    background-position: 82% center;
  }
}

.pagehead__crumb {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 18px;
}

.split__media {
  position: relative;
  overflow: hidden;
  max-height: 380px;
  border-radius: 4px;
}

.split__media img {
  width: 100%;
  height: 380px;
  max-height: 380px;
  object-fit: cover;
  transform: scale(1.04);
}

@media (max-width: 992px) {
  .split__media,
  .split__media img {
    height: 320px;
    max-height: 320px;
  }
}

.split__badge {
  position: absolute;
  right: 0;
  bottom: 0;
  background: var(--accent);
  color: var(--ink);
  padding: 22px 26px;
  font-family: var(--font-display);
  font-size: 2.4rem;
  line-height: 1;
}

.split__badge small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-top: 8px;
}

/* ---------- Feature cards ---------- */
.card {
  border: 1px solid var(--ink-line);
  padding: 40px 34px;
  background: var(--ink-soft);
  transition:
    transform 0.5s var(--ease),
    border-color 0.5s var(--ease);
}

.card:hover {
  transform: translateY(-8px);
  border-color: var(--accent);
}

.card__num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--accent);
  display: block;
  margin-bottom: 16px;
}

.card h3 {
  margin-bottom: 12px;
}

.card p {
  font-size: 0.95rem;
}

/* ---------- Stats ---------- */
.stat {
  text-align: center;
  border-left: 1px solid var(--ink-line);
  padding: 10px 20px;
}

.stat:first-child {
  border-left: 0;
}

.stat__num {
  font-family: var(--font-display);
  font-size: 3.4rem;
  color: var(--paper);
  line-height: 1;
}

.stat__label {
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 12px;
}

/* ---------- Gallery ---------- */
.filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 60px;
}

.filter {
  background: transparent;
  border: 1px solid var(--ink-line);
  color: var(--silver);
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 11px 22px;
  cursor: pointer;
  transition:
    color 0.35s var(--ease),
    border-color 0.35s var(--ease),
    background 0.35s var(--ease);
}

.filter:hover,
.filter.is-active {
  color: var(--ink);
  background: var(--accent);
  border-color: var(--accent);
}

.tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.tile {
  position: relative;
  overflow: hidden;
  background: var(--ink-soft);
  display: block;
}

.tile.is-hidden {
  display: none;
}

.tile img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition:
    transform 0.9s var(--ease),
    filter 0.6s var(--ease);
}

.tile:hover img {
  transform: scale(1.07);
  filter: brightness(0.6);
}

.tile__cap {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 26px;
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.5s var(--ease),
    transform 0.5s var(--ease);
}

.tile:hover .tile__cap {
  opacity: 1;
  transform: translateY(0);
}

.tile__cap h3 {
  font-size: 1.4rem;
}

.tile__cap span {
  font-size: 0.68rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--accent-soft);
}

.tile--tall img {
  aspect-ratio: 3 / 5;
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  background: rgba(10, 11, 12, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.4s var(--ease),
    visibility 0.4s;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-height: 84vh;
  width: auto;
}

.lightbox__close {
  position: absolute;
  top: 26px;
  right: 30px;
  background: transparent;
  border: 1px solid var(--ink-line);
  color: var(--paper);
  width: 46px;
  height: 46px;
  font-size: 1.1rem;
  cursor: pointer;
}

/* ---------- Quote ---------- */
.quote {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.4vw, 3rem);
  line-height: 1.3;
  font-style: italic;
}

.quote__by {
  margin-top: 26px;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ---------- Contact ---------- */
.info__item {
  border-top: 1px solid var(--ink-line);
  padding: 26px 0;
}

.info__item h3 {
  font-size: 1.25rem;
  margin-bottom: 6px;
}

.info__item p,
.info__item a {
  font-size: 0.95rem;
  color: var(--silver);
}

.info__item a:hover {
  color: var(--accent);
}

.form {
  display: grid;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.field label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--silver);
  font-weight: 500;
  margin-bottom: 6px;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 0.88rem;
  padding: 10px 14px;
  outline: none;
  transition: all 0.25s ease;
}

.field select option {
  background: #151515;
  color: var(--paper);
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.85rem;
  font-weight: 300;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--accent-soft);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.12);
}

.field textarea {
  min-height: 90px;
  height: 90px;
  resize: vertical;
}

/* Custom Modern Select Dropdown */
.custom-select {
  position: relative;
  width: 100%;
}

.custom-select__trigger {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 0.88rem;
  padding: 10px 14px;
  outline: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  transition: all 0.25s ease;
}

.custom-select__trigger:hover,
.custom-select.is-open .custom-select__trigger {
  border-color: var(--accent-soft);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.12);
}

.custom-select__arrow {
  color: var(--accent-soft);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.custom-select.is-open .custom-select__arrow {
  transform: rotate(180deg);
}

.custom-select__options {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: #141518;
  border: 1px solid rgba(197, 160, 89, 0.25);
  border-radius: 8px;
  padding: 6px;
  z-index: 100;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.custom-select.is-open .custom-select__options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.custom-select__option {
  padding: 10px 14px;
  font-size: 0.88rem;
  color: var(--silver);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.custom-select__option:hover {
  background: rgba(197, 160, 89, 0.12);
  color: #ffffff;
}

.custom-select__option.is-selected {
  background: rgba(197, 160, 89, 0.2);
  color: var(--accent-soft);
  font-weight: 500;
}

.form__note {
  font-size: 0.8rem;
  color: var(--muted);
}

.map {
  width: 100%;
  height: 420px;
  border: 0;
  filter: grayscale(1) invert(0.92) contrast(0.85);
}

/* ---------- CTA band ---------- */
.band {
  padding: 120px 0;
  text-align: center;
  border-top: 1px solid var(--ink-line);
  border-bottom: 1px solid var(--ink-line);
}

/* ---------- Footer ---------- */
.footer {
  padding: 90px 0 34px;
  background: var(--ink-soft);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 50px;
}

.footer h4 {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--paper);
  font-family: var(--font-body);
  margin-bottom: 22px;
}

.footer li {
  margin-bottom: 12px;
}

.footer li a,
.footer p {
  font-size: 0.92rem;
  color: var(--muted);
}

.footer li a:hover {
  color: var(--accent);
}

.footer__bottom {
  margin-top: 70px;
  padding-top: 26px;
  border-top: 1px solid var(--ink-line);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.78rem;
  color: var(--muted);
}

/* ---------- Animation helpers ---------- */
.reveal {
  opacity: 0;
  transform: translateY(38px);
}

.line-mask {
  display: block;
  overflow: hidden;
}

.no-scroll {
  overflow: hidden;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  :root {
    --gut: 26px;
  }

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

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

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

  .section {
    padding: 50px 0;
  }
}

@media (max-width: 768px) {
  .wrap {
    width: 100%;
    padding: 0 24px !important;
  }

  .nav,
  .header__cta .btn {
    display: none;
  }

  .burger {
    display: flex !important;
  }

  .grid--2,
  .grid--3,
  .grid--4,
  .grid,
  .tiles,
  .category-grid,
  .value-grid,
  .footer__grid {
    grid-template-columns: 1fr !important;
  }

  .grid {
    gap: 36px;
  }

  .stat {
    border-left: 0;
    border-top: 1px solid var(--ink-line);
    padding: 24px 0;
  }

  .hero__meta {
    display: none;
  }
  .section.section--tight.about-process-section {
	padding: 50px 0px;
	background: #1a1a1a;
}
.section.band.about-quote-band-section {
	padding: 50px 0px;
}
.section.about-traditions-section {
	padding: 50px 0px;
}
.section.section--tight.text-center.about-cta-section {
	padding: 50px 0px;
	background: #000;
}
}

/* ---------- Slider ---------- */
.slider {
  position: relative;
}

.slider__head,
.section-head {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 820px;
  margin: 0 auto 60px;
}

.section-head--left {
  text-align: left;
  align-items: flex-start;
  justify-content: flex-start;
  margin-left: 0;
  margin-right: auto;
  margin-bottom: 36px;
}

.section-head--left .section-title,
.section-head--left .section-desc {
  text-align: left;
  white-space: normal;
}

.section-title, .slider__head h2 {
	font-family: var(--font-display);
	font-size: clamp(2.2rem, 4.4vw, 2.9rem);
	font-weight: 400;
	line-height: 0.96;
	color: var(--paper);
	margin: 0;
	text-align: center;
	letter-spacing: -0.01em;
}

.section-title em,
.slider__head h2 em {
  display: block;
  font-style: italic;
  font-weight: 300;
  color: var(--accent-soft);
  margin-top: -2px;
}

.section-desc,
.slider__head p {
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 1.3vw, 1.05rem);
  color: var(--silver);
  font-weight: 300;
  letter-spacing: 0.02em;
  max-width: 100%;
  text-align: center;
  line-height: 1.6;
  white-space: nowrap;
  margin-top: 14px;
}

@media (max-width: 768px) {
  .section-desc,
  .slider__head p {
    white-space: normal;
  }
}

.slider__wrapper {
  position: relative;
  width: 100%;
}

.slider__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 15;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(14, 15, 17, 0.85);
  backdrop-filter: blur(6px);
  border: 1px solid var(--accent);
  color: #ffffff;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.35s var(--ease), color 0.35s var(--ease),
    border-color 0.35s var(--ease), transform 0.35s var(--ease);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
}

.slider__btn svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2.2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  display: block;
}

.slider__btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--ink);
  transform: translateY(-50%) scale(1.1);
}

.slider__btn[data-slider-prev] {
  left: 14px;
}

.slider__btn[data-slider-next] {
  right: 14px;
}

@media (max-width: 900px) {
  .slider__btn {
    display: flex !important;
    width: 38px;
    height: 38px;
    z-index: 25;
    background: rgba(14, 15, 17, 0.94);
    border: 1px solid var(--accent);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.6);
  }
  .slider__btn svg {
    width: 18px;
    height: 18px;
  }
  .slider__btn[data-slider-prev] {
    left: 8px;
  }
  .slider__btn[data-slider-next] {
    right: 8px;
  }
}

.slider__btn[disabled] {
  opacity: 0.3;
  cursor: default;
}

/* ---------- Highlighted White & Sterling Silver Craft Pillar Cards ---------- */
.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  width: 100%;
}

.value-card {
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(220, 226, 235, 0.85);
  border-radius: 8px;
  padding: 38px 28px 34px;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #a0aec0, #e2e8f0, #a0aec0, transparent);
  opacity: 0.6;
  transition: opacity 0.4s ease, height 0.3s ease;
}

.value-card:hover {
  transform: translateY(-8px);
  border-color: #cbd5e0;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35), 0 0 25px rgba(255, 255, 255, 0.12);
}

.value-card:hover::before {
  opacity: 1;
  height: 4px;
}

.value-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.value-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #f1f5f9;
  border: 1px solid #cbd5e0;
  color: #1e293b;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.35s ease, border-color 0.35s ease, color 0.35s ease, transform 0.35s ease;
}

.value-card:hover .value-card__icon {
  background: #0f172a;
  border-color: #0f172a;
  color: #ffffff;
  transform: scale(1.08);
}

.value-card__num {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 700;
  color: #94a3b8;
  letter-spacing: 0.05em;
  transition: color 0.35s ease;
}

.value-card:hover .value-card__num {
  color: #0f172a;
}

.value-card__title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 12px;
  line-height: 1.25;
  letter-spacing: 0.01em;
}

.value-card__text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #475569;
  font-weight: 400;
}

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

@media (max-width: 600px) {
  .value-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* ---------- Feature Band (Matching Reference Image) ---------- */
.features-band {
  background: var(--paper);
  color: var(--ink);
  padding: 56px 0;
  border-top: 1px solid var(--ink-line);
  border-bottom: 1px solid var(--ink-line);
}

.features-band__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
}

.features-band__item {
  padding: 0 38px;
  border-right: 1px solid rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
}

.features-band__item:first-child {
  padding-left: 0;
}

.features-band__item:last-child {
  padding-right: 0;
  border-right: none;
}

.features-band__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 16px;
}

.features-band__num {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--accent);
  text-transform: uppercase;
}

.features-band__icon {
  color: var(--ink);
  opacity: 0.85;
  transition: transform 0.35s ease, opacity 0.35s ease, color 0.35s ease;
}

.features-band__item:hover .features-band__icon {
  transform: translateY(-3px) scale(1.06);
  opacity: 1;
  color: var(--accent);
}

.features-band__title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 1.8vw, 1.85rem);
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.2;
}

.features-band__text {
  font-size: 0.88rem;
  line-height: 1.6;
  color: #4a4d52;
  font-weight: 400;
}

@media (max-width: 1100px) {
  .features-band__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px 0;
  }
  .features-band__item {
    padding: 0 24px;
  }
  .features-band__item:nth-child(2n) {
    border-right: none;
  }
}

@media (max-width: 600px) {
  .features-band__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .features-band__item {
    padding: 0;
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 24px;
  }
  .features-band__item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
}

.slider__viewport {
  overflow: hidden;
}

.slider__track {
  display: flex;
  gap: 28px;
  transition: transform 0.8s var(--ease);
  will-change: transform;
}

.slider__slide {
  flex: 0 0 auto;
}

.slider__dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
  position: relative;
  z-index: 20;
}

/* ---------- Category Grid Showcase (Matching Reference Image) ---------- */
.categories-section {
	padding-top: 60px;
	padding-bottom: 60px;
	background: #000;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  width: 100%;
}

.cat-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 4px;
  background: var(--ink-soft);
  text-decoration: none;
  border: 1px solid var(--ink-line);
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease);
}

.cat-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}

.cat-card__media {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  position: relative;
}

.cat-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), filter 0.4s ease;
  filter: brightness(0.92);
}

.cat-card:hover .cat-card__media img {
  transform: scale(1.08);
  filter: brightness(1);
}

.cat-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px 14px;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.88) 0%,
    rgba(0, 0, 0, 0.45) 45%,
    rgba(0, 0, 0, 0) 82%
  );
  transition: background 0.3s ease;
}

.cat-card__title {
  font-family: var(--font-body);
  font-size: clamp(0.92rem, 1.15vw, 1.2rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 3px;
  letter-spacing: 0.02em;
}

.cat-card__count {
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

@media (max-width: 1100px) {
  .category-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

@media (max-width: 640px) {
  .category-grid {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }
}

.slider__dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease), transform 0.35s var(--ease);
}

.slider__dot.is-active {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.3);
}

/* ---------- Product card ---------- */
.product__media {
  position: relative;
  overflow: hidden;
  background: var(--ink-soft);
  aspect-ratio: 1 / 1;
  margin-bottom: 22px;
}

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

.product:hover .product__media img {
  transform: scale(1.07);
}

.product__tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--ink);
  color: var(--accent-soft);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 12px;
}

.product__cat {
  display: block;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.product__name {
  font-size: 1.5rem;
  margin-bottom: 4px;
}

.product__meta {
  font-size: 14px;
  color: var(--muted);
}

/* ---------- Collection card ---------- */
.collection img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  margin-bottom: 20px;
  filter: grayscale(0.15);
  transition: transform 1.1s var(--ease), filter 0.6s var(--ease);
}

.collection:hover img {
  transform: translateY(-8px);
  filter: grayscale(0);
}

.collection h3 {
  font-size: 1.5rem;
}

.collection h3 small {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-left: 8px;
}

/* ---------- Feature band ---------- */
.features {
  border-top: 1px solid var(--ink-line);
  border-bottom: 1px solid var(--ink-line);
  background: var(--ink-soft);
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.feature {
  padding: 70px 34px;
  border-left: 1px solid var(--ink-line);
}

.feature:first-child {
  border-left: 0;
  padding-left: 0;
}

.feature__num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--accent);
  margin-bottom: 10px;
}

.feature h3 {
  margin-bottom: 16px;
}

.feature p {
  font-size: 15px;
}

/* ---------- Accordion ---------- */
.acc {
  border-bottom: 1px solid var(--ink-line);
}

.acc__head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0;
  background: none;
  border: 0;
  color: var(--paper);
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1.7vw, 1.5rem);
  text-align: left;
  cursor: pointer;
  transition: color 0.35s var(--ease);
}

.acc__head:hover {
  color: var(--accent-soft);
}

.acc__icon {
  position: relative;
  flex: 0 0 18px;
  height: 18px;
}

.acc__icon::before,
.acc__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 18px;
  height: 1px;
  background: var(--accent);
  transition: transform 0.4s var(--ease);
}

.acc__icon::after {
  transform: rotate(90deg);
}

.acc.is-open .acc__icon::after {
  transform: rotate(0deg);
}

.acc__panel {
  overflow: hidden;
  height: 0;
  transition: height 0.5s var(--ease);
}

.acc__panel p {
  padding-bottom: 28px;
  max-width: 56ch;
}

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

  .feature {
    padding: 48px 24px;
  }

  .feature:first-child,
  .feature:nth-child(3) {
    border-left: 0;
    padding-left: 0;
  }
}

@media (max-width: 700px) {
  .slider__head {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 40px;
  }

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

  .feature {
    border-left: 0;
    padding: 40px 0;
    border-top: 1px solid var(--ink-line);
  }

  .feature:first-child {
    border-top: 0;
  }
}

/* ==========================================
   SITE FOOTER (Matching User Reference Image)
   ========================================== */
.site-footer {
  background: #082023;
  color: #e2e8f0;
  padding-top: 50px;
  padding-bottom: 24px;
  font-family: var(--font-body);
  position: relative;
}

/* --- Top Perks Strip --- */
.site-footer__perks {
  padding-bottom: 40px;
}

.site-footer__perks-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  width: 100%;
}

.site-footer__perk {
  padding: 0 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-direction: column;
}

.site-footer__perk:first-child {
  padding-left: 0;
}

.site-footer__perk:last-child {
  padding-right: 0;
  border-right: none;
}

.site-footer__col {
  padding-left: 0;
}

.site-footer__brand-col {
  padding-left: 0;
}

.site-footer__perk-icon {
  color: #ffffff;
  margin-bottom: 14px;
  transition: transform 0.35s ease, color 0.35s ease;
}

.site-footer__perk:hover .site-footer__perk-icon {
  transform: translateY(-3px);
  color: var(--accent);
}

.site-footer__perk-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 8px;
  line-height: 1.25;
}

.site-footer__perk-desc {
  font-size: 0.82rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 300;
}

.site-footer__divider {
  width: 95%;
  max-width: 1680px;
  margin: 0 auto;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
}

/* --- Main Middle Grid --- */
.site-footer__main {
  padding: 40px 0 40px;
}

.site-footer-main-section {
  padding-top: 40px !important;
  padding-left: 28px !important;
}

@media (max-width: 768px) {
  .site-footer-main-section,
  .site-footer__main,
  .site-footer__perks {
    padding-top: 40px !important;
    padding-left: 24px !important;
    padding-right: 24px !important;
  }
  .wrap.site-footer__perks-grid {
    padding: 0px !important;
}
.site-footer {
    padding-top: 0px;
}
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 0.9fr 0.9fr;
  gap: 44px;
  align-items: stretch;
}

.site-footer__eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
}

.site-footer__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.2vw, 2.7rem);
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.1;
}

/* Form Pill */
.site-footer__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.site-footer__input-wrap {
  position: relative;
  max-width: 380px;
  width: 100%;
}

.site-footer__input {
  width: 100%;
  height: 48px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 0 54px 0 22px;
  color: #ffffff;
  font-size: 0.9rem;
  font-family: var(--font-body);
  outline: none;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.site-footer__input:focus {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

.site-footer__input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.site-footer__submit {
  position: absolute;
  right: 4px;
  top: 4px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ffffff;
  color: #082023;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, transform 0.3s ease;
}

.site-footer__submit:hover {
  background: var(--accent);
  color: #000000;
  transform: scale(1.05);
}

.site-footer__checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  user-select: none;
}

.site-footer__checkbox-label input {
  accent-color: var(--accent);
}

/* Col Titles & Links */
.site-footer__col-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 18px;
}

.site-footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.site-footer__links a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.site-footer__links a:hover {
  color: #ffffff;
  padding-left: 4px;
}

/* Brand Column */
.site-footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 16px;
}

.site-footer__brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.site-footer__brand-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: #ffffff;
}

.site-footer__brand-desc {
  font-size: 0.86rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.68);
  margin-bottom: 20px;
  font-weight: 300;
}

.site-footer__socials {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-footer__social {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.site-footer__brand-col {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.site-footer__social:hover {
  background: #ffffff;
  border-color: #ffffff;
  color: #082023;
  transform: translateY(-3px);
}

.site-footer__col-quote {
  margin-top: auto;
  padding-top: 38px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.site-footer__quote-icon {
  color: var(--accent-soft);
  opacity: 0.85;
}

.site-footer__quote-txt {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.08rem;
  line-height: 1.5;
  color: var(--accent-soft);
  font-weight: 300;
}

/* Legal Inline inside Collections Column */
.site-footer__legal-inline {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
}

.site-footer__legal-inline a {
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.3s ease;
}

.site-footer__legal-inline a:hover {
  color: #ffffff;
}

.site-footer__legal-inline span {
  color: rgba(255, 255, 255, 0.35);
}

/* Bottom Bar - Centered Copyright */
.site-footer__bottom-line {
  width: 95%;
  max-width: 1680px;
  margin: 40px auto 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding-top: 28px;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.65);
  text-align: center;
}

.site-footer__copy {
  margin: 0 auto;
  margin-top: 12px;
  text-align: center;
}

@media (max-width: 1024px) {
  .header__support-link {
    display: none;
  }
}

@media (max-width: 900px) {
  .header__main-row--3col {
    grid-template-columns: 1fr auto;
    padding: 12px 16px;
  }
  .header__left-nav {
    display: none;
  }
  .header__center-logo {
    justify-content: flex-start;
  }
  .header__btn-contact {
    padding: 8px 14px;
    font-size: 0.68rem;
  }
}

.site-footer__totop {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, transform 0.3s ease;
}
 

.site-footer__totop:hover {
  background: var(--accent);
  color: #000000;
  transform: translateY(-2px);
}

@media (max-width: 1200px) {
  .site-footer__perks-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 24px;
  }
  .site-footer__perk {
    border-right: none;
    padding: 0 !important;
  }
  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 640px) {
  .site-footer__perks-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .site-footer__perk,
  .site-footer__col {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .site-footer__bottom-line {
    margin-top: 36px;
  }
  .site-footer__bottom {
    flex-direction: column;
    gap: 16px;
    padding-top: 28px;
    text-align: center;
  }
  .site-footer__copy {
    margin-top: 14px;
  }
}

/* ---------- Atelier Video Showcase Section ---------- */
.atelier-video-section {
  padding: 0px 0px 40px 0;
  width: 100%;
  overflow: hidden;
}

.atelier-video-wrap {
  position: relative;
  width: 100%;
  height: 620px;
  overflow: hidden;
  background: var(--ink-soft);
}

.atelier-video-wrap video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}

.atelier-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(14, 15, 17, 0.15) 0%,
    transparent 45%,
    rgba(14, 15, 17, 0.85) 82%,
    rgba(14, 15, 17, 0.98) 100%
  );
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 28px 4%;
  pointer-events: none;
  z-index: 2;
}

.atelier-video-badge {
  font-family: var(--font-display);
  font-size: clamp(0.72rem, 1.2vw, 0.88rem);
  font-weight: 500;
  letter-spacing: 0.24em;
  color: var(--accent-soft);
  text-transform: uppercase;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
  background: rgba(14, 15, 17, 0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 10px 24px;
  border-radius: 40px;
  border: 1px solid rgba(197, 160, 89, 0.3);
}

@media (max-width: 768px) {
  .atelier-video-wrap {
    height: 420px;
  }
}

/* ---------- Collection Showcase Section (Matching Reference Image) ---------- */
.collection-showcase-section {
  padding: 0px 0px 50px 0;
}

.collection-showcase-section .section-head {
  margin-bottom: 56px;
}

.section-head--left {
  text-align: left;
  margin-left: 0;
  margin-right: auto;
  margin-bottom: 32px;
  max-width: 640px;
}

.section-head--left .section-title {
  text-align: left;
}

.section-head--left .section-title em {
  display: block;
  margin-left: 0;
}

.section-head--left .section-desc {
  margin-left: 0;
  text-align: left;
}

.collection-showcase {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 24px;
  align-items: stretch;
}

.collection-showcase__banner {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px 20px;
  height: 100%;
  min-height: 375px;
  background: #111;
}

.collection-showcase__banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(14, 15, 17, 0.1) 0%,
    rgba(14, 15, 17, 0.45) 45%,
    rgba(14, 15, 17, 0.92) 80%,
    rgba(14, 15, 17, 0.98) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.collection-showcase__banner-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 88% center;
  z-index: 0;
  transition: transform 0.6s ease;
}

.collection-showcase__banner:hover .collection-showcase__banner-img {
  transform: scale(1.05);
}

.collection-showcase__banner-overlay {
  position: relative;
  z-index: 2;
  color: #ffffff;
}

.collection-showcase__tag {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-soft);
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

.collection-showcase__title {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 400;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 12px;
}

.collection-showcase__desc {
  font-size: 0.82rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 24px;
}

.collection-showcase__btn {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.3s ease;
}

.collection-showcase__btn:hover {
  color: var(--accent-soft);
}

.collection-showcase__slider {
  position: relative;
  overflow: hidden;
}

/* E-Commerce Cards (Transparent Background & No Border) */
.ecom-card {
  background: transparent !important;
  border-radius: 0 !important;
  overflow: hidden;
  border: none !important;
  box-shadow: none !important;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s ease;
}

.ecom-card:hover {
  transform: translateY(-4px);
  box-shadow: none !important;
  border: none !important;
}

.ecom-card__media {
  position: relative;
  background: transparent !important;
  aspect-ratio: 1 / 1.15;
  max-height: 310px;
  border-radius: 6px;
  overflow: hidden;
}

.ecom-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.ecom-card:hover .ecom-card__media img {
  transform: scale(1.05);
}

.ecom-card__body {
  padding: 14px 0 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
}

.ecom-card__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  border: 1px solid var(--accent-soft);
  color: var(--accent-soft);
  background: rgba(14, 15, 17, 0.85);
  backdrop-filter: blur(6px);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 2px;
  letter-spacing: 0.05em;
  z-index: 2;
}

.ecom-card__wishlist {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(14, 15, 17, 0.6);
  backdrop-filter: blur(6px);
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  cursor: pointer;
  z-index: 2;
  transition: all 0.2s ease;
}

.ecom-card__wishlist:hover {
  color: var(--accent-soft);
  border-color: var(--accent-soft);
  transform: scale(1.1);
}

.ecom-card__body {
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  background: var(--ink-soft);
}

.ecom-card__cat {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-soft);
  font-weight: 600;
}

.ecom-card__title {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.3;
  margin: 0;
}

.ecom-card__desc {
  font-size: 0.78rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ecom-card__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 4px;
}

.ecom-card__price-sale {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--silver-bright);
}

.ecom-card__price-old {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: line-through;
}

.ecom-card__rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.ecom-card__star {
  color: var(--accent-soft);
}

.ecom-card__stock {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent-soft);
  text-transform: uppercase;
  margin-top: 4px;
}

@media (max-width: 992px) {
  .collection-showcase {
    grid-template-columns: 1fr;
  }
  .collection-showcase__banner {
    min-height: 280px;
  }
}

#faq {
	background: #151515;
}

@media (min-width: 993px) {
  #faq .grid--2 {
    align-items: start;
  }

  #faq .faq__left {
    position: sticky;
    top: 120px;
  }
}

/* ---------- 3-Column Story Showcase (Matching Reference Image) ---------- */
.story-showcase-section {
  padding: 80px 0;
}

.story-showcase {
  display: grid;
  grid-template-columns: 1fr 400px 1fr;
  gap: 48px;
  align-items: center;
}

.story-showcase__eyebrow {
  color: var(--accent-soft);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}

.story-showcase__title {
  margin-bottom: 20px;
}

.story-showcase__title em {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.8rem, 2.4vw, 2.3rem);
  color: var(--accent-soft);
  display: block;
  line-height: 1.1;
  font-weight: 300;
}

.story-showcase__title strong {
  font-family: var(--font-display);
  font-size: clamp(2rem, 2.7vw, 2.6rem);
  color: var(--paper);
  font-weight: 600;
  display: block;
  margin-top: 4px;
  line-height: 1.1;
}

.story-showcase__text {
  color: var(--silver);
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 14px;
}

.story-showcase__image-wrap {
  width: 100%;
  height: 420px;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

.story-showcase__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.story-showcase__image-wrap:hover .story-showcase__img {
  transform: scale(1.05);
}

.story-showcase__right {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.story-feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.story-feature-item__icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(197, 160, 89, 0.08);
  border: 1px solid rgba(197, 160, 89, 0.22);
  color: var(--accent-soft);
}

.story-feature-item__title {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--paper);
  margin: 0 0 4px 0;
}

.story-feature-item__desc {
  font-size: 0.84rem;
  color: var(--silver);
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 1100px) {
  .story-showcase {
    grid-template-columns: 1fr 1fr;
  }
  .story-showcase__right {
    grid-column: span 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .story-showcase {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .story-showcase__right {
    grid-column: span 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .story-showcase__image-wrap {
    height: 320px;
  }
}

#enquiry .section-head {
  margin-bottom: 64px;
}

#enquiry .section-title {
  font-size: clamp(1.8rem, 3.2vw, 2.3rem);
}

/* ---------- Contact Form & Details Cards ---------- */
.contact-card {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 12px;
  padding: 36px 32px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
  height: 100%;
}

@media (max-width: 768px) {
  .contact-card {
    padding: 24px 20px;
  }
}

/* ---------- Full Width Map Section ---------- */
.map-section {
  width: 100%;
  position: relative;
  overflow: hidden;
  margin-top: 50px;
}

.map-full {
  width: 100%;
  height: 480px;
  border: 0;
  display: block;
  filter: grayscale(0.8) invert(0.92) contrast(1.1);
  transition: filter 0.5s ease;
}

.map-full:hover {
  filter: grayscale(0) invert(0) contrast(1);
}

@media (max-width: 768px) {
  .map-full {
    height: 350px;
  }
}

/* ---------- Legal Policy Pages (Terms & Privacy) ---------- */
.legal-container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
}

.legal-card {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

.legal-card__heading {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 500;
  color: var(--paper);
  margin-top: 10px;
  margin-bottom: 6px;
}

.legal-updated {
  font-size: 0.8rem;
  color: var(--accent-soft);
  margin-bottom: 36px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.legal-block {
  margin-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-bottom: 28px;
}

.legal-block:last-child {
  margin-bottom: 0;
  border-bottom: 0;
  padding-bottom: 0;
}

.legal-block h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--paper);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.legal-block p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--silver);
}

.legal-list {
  margin-top: 12px;
  padding-left: 20px;
  color: var(--silver);
}

.legal-list li {
  font-size: 0.93rem;
  line-height: 1.7;
  margin-bottom: 8px;
}

@media (max-width: 768px) {
  .legal-card {
    padding: 28px 22px;
  }
}

/* ==========================================================================
   Fixed Floating WhatsApp Contact Button
   ========================================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.whatsapp-float__icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 2px 8px rgba(0, 0, 0, 0.3);
  position: relative;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.whatsapp-float__icon::after {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.5);
  animation: whatsapp-pulse 2s infinite ease-in-out;
  pointer-events: none;
}

.whatsapp-float__tooltip {
  background: rgba(18, 18, 18, 0.92);
  color: #ffffff;
  font-family: var(--font-body, inherit);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 7px 14px;
  border-radius: 20px;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.12);
  opacity: 0;
  transform: translateX(10px) scale(0.95);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.whatsapp-float:hover {
  transform: translateY(-4px);
}

.whatsapp-float:hover .whatsapp-float__icon {
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6), 0 4px 12px rgba(0, 0, 0, 0.4);
  transform: scale(1.08);
}

.whatsapp-float:hover .whatsapp-float__tooltip {
  opacity: 1;
  transform: translateX(0) scale(1);
}

@keyframes whatsapp-pulse {
  0% {
    transform: scale(0.95);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.25);
    opacity: 0;
  }
  100% {
    transform: scale(0.95);
    opacity: 0;
  }
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
  }
  .whatsapp-float__icon {
    width: 50px;
    height: 50px;
  }
  .whatsapp-float__icon svg {
    width: 26px;
    height: 26px;
  }
  .whatsapp-float__tooltip {
    display: none;
  }
}
.section.section--tight.about-process-section {
	background: #000;
}

.about-process-section .eyebrow {
	margin-bottom: 10px;
}

.about-process-section  .center-narrow.text-center.reveal {
	margin-bottom: 20px;
}

.about-process-section h2 {
	font-size: 3rem;
}
.section.about-traditions-section h2 {
	font-size: 2.5rem;
	margin-bottom: 12px;
}
.section.about-traditions-section .lead {
	font-size: 14px;
	max-width: 56ch;
	margin-bottom: 10px;
}

.section.about-traditions-section .btn {
margin-top: 20px;
}

.lightbox.is-open {
	opacity: 1;
	visibility: visible;
	z-index: 10000;
}

#enquiry .container {
	width: 89%;
	margin: 0 auto;
}

@media (max-width: 768px) {
	#enquiry .container {
	width: 95%;
	margin: 0 auto;
}
}

.contact-card.contact-card--form.reveal .eyebrow {
	margin-bottom: 5px;
}

.contact-card.contact-card--form.reveal .form {
	margin-top: 30px;
}
	