/* ============================================
   ESMERMER — Lüks & Minimal Galeri Stili
   Saf siyah & beyaz palet
   ============================================ */

:root {
  --ink: #0a0a0a;
  --ink-soft: #1a1a1a;
  --ink-muted: #6b6b6b;
  --ink-faint: #a8a8a8;
  --line: #e8e6e3;
  --line-soft: #f1efec;
  --paper: #fbfaf8;
  --paper-warm: #f6f4ef;
  --white: #ffffff;

  --serif: "Raleway", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --sans: "Raleway", "Helvetica Neue", Helvetica, Arial, sans-serif;

  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-pill: 999px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
  --t-fast: 280ms;
  --t-med: 520ms;
  --t-slow: 880ms;

  --container: 1440px;
  --gutter: clamp(20px, 4vw, 56px);
  --section-padding-y: clamp(64px, 7vw, 96px);
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.01em;
  margin: 0;
  line-height: 1.05;
  text-wrap: balance;
}

p {
  margin: 0;
  text-wrap: pretty;
}

/* ====== TOPBAR (üst ince çubuk) ====== */
.topbar {
  background: var(--ink);
  color: var(--ink-faint);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.topbar-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 10px var(--gutter);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.topbar-links {
  display: flex;
  gap: 28px;
}

.topbar-links a:hover {
  color: var(--white);
}

.lang-switch {
  display: flex;
  gap: 14px;
}

.lang-switch a {
  position: relative;
  padding-bottom: 2px;
}

.lang-switch a.active {
  color: var(--white);
}

/* ====== HEADER ====== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 250, 248, 0.92);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line);
  transition: background var(--t-fast) var(--ease);
}

.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: 84px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 48px;
}

.brand {
  font-family: var(--serif);
  font-size: 28px;
  letter-spacing: 0.02em;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.brand .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ink);
  display: inline-block;
  margin-bottom: 4px;
}

.brand-mark {
  justify-self: center;
}

/* ====== NAV / MEGA MENU ====== */
.nav {
  display: flex;
  gap: 36px;
  justify-self: start;
}

.nav-actions {
  display: flex;
  gap: 18px;
  justify-self: end;
  align-items: center;
}

.nav-item {
  position: static;
}

.nav {
  position: relative;
}

.nav-link {
  position: relative;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 0;
  cursor: pointer;
  transition: color var(--t-fast) var(--ease);
}

.nav-link:hover {
  color: var(--ink);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--t-fast) var(--ease);
}

.nav-link:hover::after,
.nav-item:hover > .nav-link::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-link::before {
  content: "";
  position: absolute;
  top: 100%;
  left: -10px;
  right: -10px;
  height: 32px; /* Covers the gap to the mega menu */
  background: transparent;
  z-index: 1;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-med) var(--ease);
}

.nav-item:hover .nav-link::after {
  transform: scaleX(1);
}

.nav-link .chev {
  width: 8px;
  height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform var(--t-fast) var(--ease);
}

.nav-item:hover .nav-link .chev {
  transform: rotate(225deg) translate(-1px, -1px);
}

/* dropdown panel (Hakkimizda vb.) */
.dropdown {
  position: absolute;
  top: calc(100% + 24px);
  left: 0;
  width: 200px;
  background: var(--white);
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  box-shadow: 0 15px 40px -10px rgba(10, 10, 10, 0.1);
  padding: 16px 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity var(--t-med) var(--ease), transform var(--t-med) var(--ease), visibility 0s linear var(--t-med);
  z-index: 99;
}

.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition: opacity var(--t-med) var(--ease), transform var(--t-med) var(--ease), visibility 0s;
}

.dropdown ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.dropdown a {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: var(--ink-soft);
  padding: 10px 0;
  transition: color var(--t-fast) var(--ease);
  position: relative;
}

.dropdown a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 6px;
  width: 100%; height: 1px;
  background: var(--line-soft);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--t-fast) var(--ease);
}

.dropdown a:hover {
  color: var(--ink);
}

.dropdown a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* mega panel */
.mega {
  position: absolute;
  top: calc(100% + 24px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: min(1200px, 92vw);
  max-height: calc(100vh - 160px);
  overflow-y: auto;
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  box-shadow: 0 30px 80px -20px rgba(10, 10, 10, 0.18), 0 8px 30px -10px rgba(10, 10, 10, 0.08);
  padding: 36px 40px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--t-med) var(--ease), transform var(--t-med) var(--ease), visibility 0s linear var(--t-med);
}

.nav-item:hover .mega,
.nav-item:focus-within .mega {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  transition: opacity var(--t-med) var(--ease), transform var(--t-med) var(--ease), visibility 0s;
}

.mega-grid {
  display: grid;
  gap: 32px;
}

.mega-grid.mega-grid-cols-1 { grid-template-columns: 1fr; }
.mega-grid.mega-grid-cols-2 { grid-template-columns: repeat(2, minmax(180px, 1fr)); }
.mega-grid.mega-grid-cols-3 { grid-template-columns: repeat(3, minmax(170px, 1fr)); }
.mega-grid.mega-grid-cols-4 { grid-template-columns: repeat(4, minmax(160px, 1fr)); }
.mega-grid.has-feature.mega-grid-cols-1 { grid-template-columns: 1fr 1.2fr; }
.mega-grid.has-feature.mega-grid-cols-2 { grid-template-columns: repeat(2, minmax(180px, 1fr)) 1.15fr; }
.mega-grid.has-feature.mega-grid-cols-3 { grid-template-columns: repeat(3, minmax(170px, 1fr)) 1.2fr; }
.mega-grid.has-feature.mega-grid-cols-4 { grid-template-columns: repeat(4, minmax(160px, 1fr)) 1.25fr; }

.mega-cta-row {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.mega-cta-text {
  font-size: 13px;
  color: var(--ink-soft);
}

.mega-cta-link {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 9px 16px;
  transition: all var(--t-fast) var(--ease);
}

.mega-cta-link:hover,
.mega-cta-link:focus,
.mega-cta-link:active {
  background: grey;
  border-color: var(--accent);
  color: var(--white) !important;
  transform: translateY(-1px);
}



.mega-col h4 {
  font-family: var(--serif);
  font-size: 26px;
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  text-transform: none;
  letter-spacing: normal;
}

.mega-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 6px;
}

.mega-col.wide ul {
  grid-template-columns: 1fr 1fr;
  gap: 6px 24px;
}

.mega-col a {
  display: block;
  font-size: 14px;
  color: var(--ink-soft);
  padding: 6px 10px;
  border-radius: var(--r-sm);
  transition: all var(--t-fast) var(--ease);
  position: relative;
}

.mega-col a:hover {
  background: var(--paper-warm);
  color: var(--ink);
  padding-left: 14px;
}

.mega-feature {
  border-radius: var(--r-md);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/5;
  background: #ddd;
}

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

.mega-feature:hover img {
  transform: scale(1.05);
}

.mega-feature-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10, 10, 10, 0.7) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: var(--white);
}

.mega-feature-overlay .label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.8;
  margin-bottom: 8px;
}

.mega-feature-overlay .title {
  font-family: var(--serif);
  font-size: 26px;
  line-height: 1.1;
}

/* nav action icons */
.icon-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--r-pill);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background var(--t-fast) var(--ease);
}

.icon-btn:hover {
  background: var(--line-soft);
}

.icon-btn svg {
  width: 18px;
  height: 18px;
  stroke: var(--ink);
  stroke-width: 1.6;
  fill: none;
}

/* ====== BUTTONS ====== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--r-pill);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all var(--t-med) var(--ease);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--ink);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--ink-soft);
  transform: translateY(-1px);
  box-shadow: 0 14px 30px -12px rgba(10, 10, 10, 0.4);
}

.header-gold-btn {
  background: linear-gradient(163deg, rgb(171 159 125) 0%, #D4AF37 50%, #000000 100%);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 12px 26px -14px rgba(119, 94, 30, .62);
}

.header-gold-btn:hover,
.header-gold-btn:focus {
  background: linear-gradient(163deg, #000000 0%, #D4AF37 52%, rgb(196 185 148) 100%);
  color: var(--white);
  border-color: transparent;
  transform: translateY(-1px);
  box-shadow: 0 16px 34px -14px rgba(212, 175, 55, .55);
}

/* Artstone inspired overlay header for hero pages */
html.hero-header-pending .topbar,
body.has-hero-header .topbar {
  display: none;
}

html.hero-header-pending .header,
body.has-hero-header .header {
  position: fixed;
  inset: 0 0 auto;
  background: linear-gradient(180deg, rgba(0,0,0,.42), rgba(0,0,0,0));
  border-bottom: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

body.has-hero-header .header.is-scrolled {
  background: rgba(10,10,10,.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

html.hero-header-pending .header-inner,
body.has-hero-header .header-inner {
  max-width: none;
  height: 84px;
  grid-template-columns: auto 1fr auto;
  gap: clamp(14px, 2vw, 28px);
  padding: 0 clamp(16px, 2.2vw, 34px) 0 clamp(24px, 6vw, 100px);
  transition: height 300ms cubic-bezier(0.16, 1, 0.3, 1), padding 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

body.has-hero-header .header.is-scrolled .header-inner {
  height: 58px;
  padding: 0 clamp(16px, 2.2vw, 34px) 0 clamp(24px, 6vw, 100px);
}

html.hero-header-pending .brand,
body.has-hero-header .brand {
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
  color: var(--white);
  min-width: auto;
  justify-content: start;
}

html.hero-header-pending .brand img,
body.has-hero-header .brand img {
  max-height: 52px;
  width: auto;
  filter: brightness(0) invert(1) drop-shadow(0 8px 20px rgba(0,0,0,.24));
  transition: max-height 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

body.has-hero-header .header.is-scrolled .brand img {
  max-height: 34px;
}

html.hero-header-pending .nav,
body.has-hero-header .nav {
  display: none !important;
}

html.hero-header-pending .nav-link,
body.has-hero-header .nav-link {
  min-height: 0;
  padding: 4px 0;
  border-radius: 0;
  color: rgba(255,255,255,.88);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  text-shadow: 0 1px 18px rgba(0,0,0,.42);
}

html.hero-header-pending .nav-link:hover,
body.has-hero-header .nav-link:hover {
  color: var(--white);
  background: transparent;
}

html.hero-header-pending .nav-link::after,
body.has-hero-header .nav-link::after {
  display: block;
  bottom: -3px;
  height: 1px;
  background: rgba(255,255,255,.72);
}

html.hero-header-pending .nav-actions,
body.has-hero-header .nav-actions {
  grid-column: 3;
  grid-row: 1;
  gap: 18px;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

html.hero-header-pending .header-gold-btn,
body.has-hero-header .header-gold-btn {
  display: none;
}

html.hero-header-pending .esm-search-btn,
html.hero-header-pending .menu-toggle,
body.has-hero-header .esm-search-btn,
body.has-hero-header .menu-toggle {
  color: var(--white);
}

html.hero-header-pending .esm-search-btn,
body.has-hero-header .esm-search-btn,
html.hero-header-pending .menu-toggle,
body.has-hero-header .menu-toggle {
  width: 34px;
  height: 34px;
  border: none !important;
  border-radius: 0 !important;
  background: transparent !important;
  transition: color var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
}

html.hero-header-pending .esm-search-btn:hover,
body.has-hero-header .esm-search-btn:hover,
html.hero-header-pending .menu-toggle:hover,
body.has-hero-header .menu-toggle:hover {
  background: transparent !important;
  border-color: transparent !important;
  color: #c5a880 !important;
  transform: translateY(-1px);
}

html.hero-header-pending .menu-toggle,
body.has-hero-header .menu-toggle {
  display: inline-flex;
}

html.hero-header-pending .menu-toggle span,
body.has-hero-header .menu-toggle span {
  background: var(--white);
}

.esm-search-btn svg,
.menu-toggle .burger-svg {
  display: block;
  transition: transform 420ms var(--ease), opacity 280ms var(--ease);
}

.esm-search-btn .search-circle {
  transform-origin: 10.5px 10.5px;
  transition: transform 420ms var(--ease), stroke-dashoffset 520ms var(--ease);
}

.esm-search-btn .search-line {
  transform-origin: 16.5px 16.5px;
  transition: transform 420ms var(--ease), opacity 280ms var(--ease);
}

.esm-search-btn:hover svg {
  transform: scale(1.06);
}

.esm-search-btn:hover .search-circle {
  transform: rotate(-18deg) scale(.92);
}

.esm-search-btn:hover .search-line {
  transform: translate(1px, 1px);
}

.menu-toggle .burger-top,
.menu-toggle .burger-mid,
.menu-toggle .burger-bottom {
  transform-origin: 12px 12px;
  transition: transform 420ms var(--ease), opacity 240ms var(--ease);
}

.menu-toggle:hover .burger-top {
  transform: translateY(-1px);
}

.menu-toggle:hover .burger-bottom {
  transform: translateY(1px);
}

.menu-toggle.active .burger-top {
  transform: translateY(5px) rotate(45deg);
}

.menu-toggle.active .burger-mid {
  opacity: 0;
  transform: scaleX(.2);
}

.menu-toggle.active .burger-bottom {
  transform: translateY(-5px) rotate(-45deg);
}

.header-lang-switch {
  display: none;
  align-items: center;
  gap: 10px;
}

.header-lang-switch a {
  font-size: 10px;
  font-weight: 600;
  color: rgba(255,255,255,.78);
  letter-spacing: 0;
  text-transform: uppercase;
  padding: 0 3px;
}

.header-lang-switch a.active {
  color: var(--white);
}

html.hero-header-pending .header-lang-switch,
body.has-hero-header .header-lang-switch {
  display: inline-flex;
}

body.has-hero-header .mega {
  top: calc(100% + 10px);
  background: rgba(14,14,14,.82);
  color: var(--white);
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 30px 90px -26px rgba(0,0,0,.62);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

body.has-hero-header .mega-col h4 {
  color: var(--white);
  border-bottom-color: rgba(255,255,255,.16);
}

body.has-hero-header .mega-col a,
body.has-hero-header .mega-cta-text {
  color: rgba(255,255,255,.72);
}

body.has-hero-header .mega-col a:hover {
  background: rgba(255,255,255,.08);
  color: var(--white);
}

body.has-hero-header .mega-cta-row {
  border-top-color: rgba(255,255,255,.16);
}

body.has-hero-header .mega-cta-link {
  background: var(--white);
  border-color: var(--white);
  color: var(--ink);
}

body.has-hero-header .mega-cta-link:hover {
  background: #D4AF37;
  border-color: #D4AF37;
  color: var(--ink) !important;
}

@media (max-width: 1240px) {
  html.hero-header-pending .header-inner,
  body.has-hero-header .header-inner {
    padding-inline: 16px;
    gap: 12px;
  }

  html.hero-header-pending .nav,
  body.has-hero-header .nav {
    gap: 16px;
    padding: 0;
  }

  html.hero-header-pending .nav-link,
  body.has-hero-header .nav-link {
    font-size: 11px;
  }
}

@media (max-width: 1040px) {
  html.hero-header-pending .nav,
  body.has-hero-header .nav {
    display: none;
  }

  html.hero-header-pending .header-inner,
  body.has-hero-header .header-inner {
    grid-template-columns: 1fr auto 1fr;
  }
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}

.btn-ghost:hover {
  background: var(--ink);
  color: var(--white);
}

.btn-light {
  background: var(--white);
  color: var(--ink);
}

.btn-light:hover {
  background: var(--paper-warm);
}

.btn .arrow {
  transition: transform var(--t-med) var(--ease);
}

.btn:hover .arrow {
  transform: translateX(4px);
}

/* ====== FOOTER ====== */
.footer {
  background: var(--ink);
  color: var(--ink-faint);
  padding: 120px 0 40px;
  position: relative;
  overflow: hidden;
}

.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
  z-index: 2;
}

.footer-watermark-logo {
  position: absolute;
  top: 0;
  right: max(var(--gutter), calc((100vw - var(--container)) / 2));
  bottom: 0;
  z-index: 1;
  width: auto;
  height: 100%;
  opacity: 0.045;
  filter: brightness(0) invert(1);
  pointer-events: none;
  user-select: none;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 60px;
  padding-bottom: 80px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-col-main {
  padding-right: 40px;
}

.footer-brand {
  font-family: var(--serif);
  color: var(--white);
  font-size: 36px;
  margin-bottom: 20px;
}

.footer-tag {
  margin-top: 24px;
  max-width: 420px;
  line-height: 1.5;
  font-family: var(--serif);
  font-size: 24px;
  color: var(--white);
  font-weight: 300;
}
.footer-tag em {
  font-style: italic;
  color: rgba(255,255,255,0.7);
}

.footer-socials {
  display: flex;
  gap: 24px;
  margin-top: 36px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.footer-heading {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.4);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 28px 0;
  font-weight: 500;
}

.footer-heading::before {
  content: "";
  width: 22px;
  height: 1px;
  background: linear-gradient(90deg, #c5a880, rgba(197,168,128,0));
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 16px;
  font-size: 15px;
  font-weight: 400;
  color: rgba(255,255,255,0.8);
}

.footer a {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: inherit;
  text-decoration: none;
  transition: color var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
}

.footer-top ul a::before,
.footer-bottom .fb-right a::before,
.footer-socials a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, #c5a880 0%, #8b7354 100%);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 420ms var(--ease);
}

.footer-top ul a::after {
  content: "";
  width: 0;
  height: 1px;
  margin-left: 0;
  background: #c5a880;
  opacity: 0;
  transition: width 420ms var(--ease), margin-left 420ms var(--ease), opacity 260ms var(--ease);
}

.footer a:hover {
  color: #f3ddae;
}

.footer-top ul a:hover,
.footer-bottom .fb-right a:hover,
.footer-socials a:hover {
  transform: translateX(4px);
}

.footer-top ul a:hover::before,
.footer-bottom .fb-right a:hover::before,
.footer-socials a:hover::before {
  transform: scaleX(1);
}

.footer-top ul a:hover::after {
  width: 18px;
  margin-left: 10px;
  opacity: 1;
}

.footer-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255,255,255,0.4);
  color: var(--white) !important;
  font-size: 13px !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.footer-cta-link:hover {
  border-bottom-color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding: 32px 0 40px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.footer-bottom .fb-right {
  display: flex;
  gap: 32px;
}

.footer-giant {
  position: absolute;
  left: 50%;
  bottom: -0.14em;
  z-index: 1;
  width: 100%;
  font-family: var(--serif);
  font-size: clamp(72px, 15vw, 250px);
  line-height: 0.8;
  color: rgba(255, 255, 255, 0.045);
  text-align: center;
  letter-spacing: -0.07em;
  transform: translateX(-50%);
  user-select: none;
  pointer-events: none;
  white-space: nowrap;
}

/* ====== UTILS ====== */
.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.eyebrow::before {
  content: "";
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  background: url("favicon.svg") center / contain no-repeat;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.divider {
  height: 1px;
  background: var(--line);
  margin: 0;
}

/* fade-in on load */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-up {
  animation: fadeUp 1.2s var(--ease) both;
}

.fade-up.d1 { animation-delay: 0.15s; }
.fade-up.d2 { animation-delay: 0.3s; }
.fade-up.d3 { animation-delay: 0.45s; }
.fade-up.d4 { animation-delay: 0.6s; }

/* ============ MOBILE MENU & RESPONSIVE (Global) ============ */
.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: var(--r-pill);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  transition: background var(--t-fast) var(--ease);
}
.menu-toggle:hover {
  background: var(--line-soft);
}
.menu-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--ink);
  transition: transform var(--t-fast) var(--ease);
}
.menu-toggle.active span:nth-child(1) {
  transform: translateY(3px) rotate(45deg);
}
.menu-toggle.active span:nth-child(2) {
  transform: translateY(-3px) rotate(-45deg);
}

@media (max-width: 1024px) {
  :root { --gutter: 20px; }
  .header-inner { height: 68px; gap: 16px; }
  .nav { display: none; }
  .nav-actions .btn { display: none; }
  .nav-actions .icon-btn { display: none; }
  .menu-toggle { display: inline-flex; }
  .brand { font-size: 22px; }
  .topbar { display: none; }
  .footer { padding: 60px var(--gutter) 72px; margin-top: 60px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; padding-bottom: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; align-items: flex-start; padding-top: 20px; }
}

@media (max-width: 600px) {
  .footer-top { grid-template-columns: 1fr; }
}

/* ====== SHARED SECTION SPACING ====== */
section:not(.hero) {
  padding-top: var(--section-padding-y);
  padding-bottom: var(--section-padding-y);
}

@media (max-width: 1024px) {
  :root {
    --section-padding-y: 80px;
  }
}

@media (max-width: 600px) {
  :root {
    --section-padding-y: 60px;
  }
}

/* ====== NAV INLINE STYLE REPLACEMENTS ====== */
#megaDisplayImg {
  transition: opacity 0.4s ease, transform 1.4s var(--ease);
}

.mega-feature-overlay {
  background: linear-gradient(180deg, transparent 40%, rgba(10, 10, 10, 0.9) 100%);
  padding: 32px 24px;
  justify-content: flex-end;
}

#megaDisplayTitle {
  font-size: 24px;
  margin-bottom: 8px;
}

#megaDisplayDesc {
  font-size: 13px;
  color: var(--line-soft);
  line-height: 1.6;
  font-family: var(--sans);
}

.nav-actions .btn {
  padding: 10px 20px;
  font-size: 11px;
}

.nav-actions .btn-primary {
  gap: 6px;
  margin-right: 4px;
}

.topbar-right,
.social-links {
  display: flex;
  align-items: center;
}

.topbar-right {
  gap: 32px;
}

.social-links {
  gap: 16px;
  opacity: 0.8;
}

.brand img {
  height: 52px;
}

.nav {
  justify-self: center;
}

.section-head h2 {
  margin-top: 20px;
}

.editorial h2 {
  margin-top: 24px;
}

.stat-suffix {
  margin-left: 4px;
  color: var(--ink-soft);
  font-size: 0.6em;
}

.section-action {
  margin-top: 60px;
  text-align: center;
}

.cta-band h2 {
  margin-top: 32px;
}

.footer-brand img {
  height: 60px;
  filter: brightness(0) invert(1);
}


/* ============================================
   HOMEPAGE-SPECIFIC
   Moved from index.html
   ============================================ */

/* ============ HOMEPAGE-SPECIFIC ============ */

    /* HERO */
    .hero {
      position: relative;
      min-height: calc(100vh - 84px - 36px);
      overflow: hidden;
      isolation: isolate;
          background: linear-gradient(163deg, rgb(255 255 255) 0%, #cdcdcd 50%, rgb(255 255 255) 100%);
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -2;
      background:
        linear-gradient(105deg, rgba(247, 243, 237, 0.98) 0%, rgba(247, 243, 237, 0.96) 50%, rgba(238, 232, 222, 0.9) 100%),
        url("img/calacatta-dolomite_2.jpg") center/cover;
      filter: saturate(0.82);
      opacity: 0.7;
    }

    .hero::after {
      content: "";
      position: absolute;
      right: 8vw;
      top: 12%;
      width: min(42vw, 620px);
      height: 76%;
      z-index: -1;
      background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0)),
        url("img/calacatta-dolomite_2.jpg") center/cover;
      opacity: 0.2;
      pointer-events: none;
    }

    .hero-shell {
      position: relative;
      z-index: 2;
      max-width: var(--container);
      min-height: calc(100vh - 84px - 36px);
      margin: 0 auto;
      padding: clamp(42px, 5vw, 66px) clamp(26px, 2vw, 56px) clamp(34px, 4vw, 54px);
      display: grid;
      grid-template-columns: minmax(390px, 0.72fr) minmax(540px, 1.28fr);
      gap: clamp(34px, 4vw, 64px);
      align-items: center;
    }

    .hero-copy {
      position: relative;
      max-width: 680px;
      padding: clamp(10px, 2vw, 22px) 0;
    }

    .hero-copy::before {
      content: "ESMERMER";
      position: absolute;
      left: -8px;
      top: -28px;
      z-index: -1;
      font-family: var(--serif);
      font-size: clamp(72px, 8vw, 112px);
      line-height: 1;
      color: rgba(10, 10, 10, 0.045);
      white-space: nowrap;
    }

    .hero-eyebrow {
      font-size: 11px;
      letter-spacing: 0;
      text-transform: uppercase;
      color: #7b6a56;
      margin-bottom: 24px;
      display: inline-flex;
      align-items: center;
      gap: 14px;
    }

    .hero-eyebrow::before {
      content: "";
      width: 16px;
      height: 16px;
      flex: 0 0 16px;
      background: url("favicon.svg") center / contain no-repeat;
    }

    .hero h1,
    .hero .hero-title {
      display: block;
      font-family: var(--serif);
      font-size: clamp(44px, 5.2vw, 70px);
      font-weight: 300;
      line-height: 0.92;
      max-width: 780px;
      min-height: 2.76em;
      margin-bottom: 34px;
      color: #15120f;
    }

    .hero-title-line {
      display: block;
      white-space: nowrap;
    }

    .hero h1 em,
    .hero .hero-title em {
      font-style: italic;
      font-weight: 400;
      color: #84684a;
    }

    .hero-lead {
      max-width: 500px;
      font-size: 15px;
      line-height: 1.68;
      color: #554c43;
      margin-bottom: 26px;
      padding-left: 24px;
      border-left: 1px solid rgba(132, 104, 74, 0.34);
    }

    .hero-cta {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
    }

    .hero-meta {
      margin-top: clamp(28px, 4vw, 46px);
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 0;
      max-width: 590px;
      border-top: 1px solid rgba(132, 104, 74, 0.24);
      border-bottom: 1px solid rgba(132, 104, 74, 0.24);
    }

    .hero-meta div {
      padding: 14px 20px 16px 0;
    }

    .hero-meta div+div {
      padding-left: 20px;
      border-left: 1px solid rgba(132, 104, 74, 0.18);
    }

    .hero-meta span {
      display: block;
      font-size: 10px;
      letter-spacing: 0;
      text-transform: uppercase;
      color: #8a7f73;
      margin-bottom: 6px;
    }

    .hero-meta strong {
      font-family: var(--serif);
      font-size: clamp(22px, 2.5vw, 32px);
      font-weight: 400;
      line-height: 1;
    }

    .hero-visual {
      position: relative;
      min-height: clamp(430px, 63vh, 560px);
      display: grid;
      align-items: center;
      padding: 0 0 64px 0;
      top: -58px;
    }

    .hero-visual::before {
      display: none;
    }

    .hero-visual::after {
      display: none;
    }

    .hero-media-frame {
      position: relative;
      z-index: 2;
      width: 100%;
      height: clamp(410px, 60vh, 540px);
      overflow: hidden;
      background: #111;
      box-shadow: 0 36px 92px rgba(46, 37, 27, 0.26);
    }

    .hero-media-frame::before {
      content: "";
      position: absolute;
      inset: 18px;
      z-index: 3;
      border: 1px solid rgba(255, 255, 255, 0.22);
      pointer-events: none;
    }

    .hero-media {
      position: absolute;
      inset: 0;
      opacity: 0;
      transform: scale(1.04);
      transition: opacity 700ms var(--ease), transform 1200ms var(--ease);
    }

    .hero-media.active {
      opacity: 1;
      transform: scale(1);
    }

    .hero-media video,
    .hero-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: saturate(1.02) contrast(1.08);
    }

    .hero-media::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.28));
    }

    .hero-media-caption {
      position: absolute;
      left: clamp(34px, 4vw, 48px);
      right: clamp(30px, 4vw, 48px);
      bottom: clamp(32px, 4vw, 46px);
      z-index: 4;
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      gap: 24px;
      color: var(--white);
    }

    .hero-media-caption span {
      display: block;
      font-size: 10px;
      letter-spacing: 0;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.72);
      margin-bottom: 10px;
    }

    .hero-media-caption strong {
      font-family: var(--serif);
      font-size: clamp(32px, 4vw, 54px);
      font-weight: 300;
      line-height: 0.88;
    }

    .hero-slide-index {
      font-size: 12px;
      letter-spacing: 0;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.78);
      white-space: nowrap;
    }

    .hero-controls {
      position: absolute;
      left: clamp(34px, 4vw, 48px);
      top: clamp(30px, 4vw, 34px);
      z-index: 5;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .hero-dot {
      width: 36px;
      height: 3px;
      background: rgba(255, 255, 255, 0.42);
      border: 0;
      cursor: pointer;
      box-shadow: none;
      transition: width var(--t-fast) var(--ease), background var(--t-fast) var(--ease), opacity var(--t-fast) var(--ease);
      opacity: 0.75;
    }

    .hero-dot.active {
      width: 64px;
      background: var(--white);
      opacity: 1;
    }

    /* ====== FULL SCREEN SLIDER COMPONENT ====== */
    .full-hero {
      position: relative;
      min-height: 100vh;
      min-height: 100svh;
      overflow: hidden;
      background: var(--ink);
      color: var(--white);
      display: flex;
      align-items: center;
    }

    .full-hero-media-stack,
    .full-hero-media,
    .full-hero-media picture,
    .full-hero-media img,
    .full-hero-media video {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
    }

    .full-hero-media {
      opacity: 0;
      transform: scale(1.035);
      transition: opacity 1000ms var(--ease), transform 7000ms linear;
    }

    .full-hero-media.active {
      opacity: 1;
      transform: scale(1);
    }

    .full-hero-media img,
    .full-hero-media video {
      object-fit: cover;
    }

    .full-hero-shade {
      position: absolute;
      inset: 0;
      z-index: 1;
      background:
        linear-gradient(90deg, rgba(0,0,0,.78) 0%, rgba(0,0,0,.42) 44%, rgba(0,0,0,.18) 100%),
        linear-gradient(0deg, rgba(0,0,0,.62) 0%, rgba(0,0,0,0) 48%);
      pointer-events: none;
    }

    .full-hero-inner {
      position: relative;
      z-index: 2;
      width: 100%;
      max-width: var(--container);
      margin: 0 auto;
      padding: clamp(110px, 14vh, 180px) var(--gutter) clamp(90px, 12vh, 150px);
      display: grid;
      grid-template-columns: minmax(0, 760px) minmax(220px, 1fr);
      gap: clamp(28px, 5vw, 96px);
      align-items: end;
    }

    .full-hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 22px;
      color: rgba(255,255,255,.76);
      font-size: 11px;
      letter-spacing: 0;
      text-transform: uppercase;
    }

    .full-hero-eyebrow::before {
      content: "";
      width: 18px;
      height: 18px;
      background: url("favicon.svg") center / contain no-repeat;
      filter: brightness(0) invert(1);
      opacity: .86;
    }

    .full-hero-title {
      display: block;
      max-width: 780px;
      color: var(--white);
      font-family: var(--serif);
      font-size: clamp(52px, 7.4vw, 118px);
      font-weight: 300;
      line-height: .88;
      letter-spacing: 0;
      text-shadow: 0 18px 70px rgba(0,0,0,.42);
    }

    .full-hero-title-line {
      display: block;
    }

    .full-hero-title em {
      font-style: italic;
      color: #D4AF37;
      font-weight: 400;
    }

    .full-hero-lead {
      max-width: 600px;
      margin-top: 28px;
      color: rgba(255,255,255,.82);
      font-size: clamp(16px, 1.25vw, 19px);
      line-height: 1.78;
      border-left: 1px solid rgba(212,175,55,.58);
      padding-left: 24px;
    }

    .full-hero-actions {
      margin-top: 34px;
    }

    .full-hero-btn {
      background: linear-gradient(163deg, rgb(171 159 125) 0%, #D4AF37 50%, #000000 100%);
      color: var(--white);
      box-shadow: 0 18px 38px -18px rgba(0,0,0,.7);
    }

    .full-hero-btn:hover {
      background: linear-gradient(163deg, #000000 0%, #D4AF37 52%, rgb(196 185 148) 100%);
      color: var(--white);
      transform: translateY(-1px);
    }

    .full-hero-meta {
      justify-self: end;
      max-width: 300px;
      color: rgba(255,255,255,.82);
      text-align: right;
      align-self: end;
    }

    .full-hero-meta span {
      display: block;
      margin-bottom: 12px;
      font-size: 11px;
      letter-spacing: 0;
      text-transform: uppercase;
      color: rgba(255,255,255,.52);
    }

    .full-hero-meta strong {
      display: block;
      font-family: var(--serif);
      font-size: clamp(22px, 2.4vw, 36px);
      font-weight: 300;
      line-height: 1.05;
    }

    .full-hero-controls {
      position: absolute;
      left: 50%;
      bottom: clamp(24px, 4vh, 54px);
      z-index: 3;
      transform: translateX(-50%);
      display: flex;
      gap: 12px;
      align-items: center;
    }

    .full-hero-dot {
      width: 34px;
      height: 2px;
      border-radius: 999px;
      background: rgba(255,255,255,.38);
      transition: width var(--t-med) var(--ease), background var(--t-fast) var(--ease);
    }

    .full-hero-dot.active {
      width: 58px;
      background: #D4AF37;
    }

    .hero-side-note {
      display: none;
    }

    .hero-art-line {
      display: none;
    }

    .hero-stone-tag {
      display: none;
    }

    .hero-stone-tag span {
      display: block;
      font-size: 10px;
      text-transform: uppercase;
      color: #8a7f73;
      margin-bottom: 8px;
    }

    .hero-stone-tag strong {
      display: block;
      font-family: var(--serif);
      font-size: 30px;
      font-weight: 400;
      line-height: 0.96;
      color: #15120f;
    }

    /* ============ MOBILE MENU & RESPONSIVE ============ */
    .menu-toggle {
      display: none;
      width: 40px;
      height: 40px;
      border-radius: var(--r-pill);
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 5px;
      transition: background var(--t-fast) var(--ease);
    }

    .menu-toggle:hover {
      background: var(--line-soft);
    }

    .menu-toggle span {
      display: block;
      width: 18px;
      height: 1.5px;
      background: var(--ink);
      transition: transform var(--t-fast) var(--ease);
    }

    .menu-toggle.active span:nth-child(1) {
      transform: translateY(3px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
      transform: translateY(-3px) rotate(-45deg);
    }

    @media (max-width: 1024px) {
      :root {
        --gutter: 20px;
      }

      .header-inner {
        height: 68px;
        gap: 16px;
      }

      .nav {
        display: none;
      }

      .nav-actions .btn {
        display: none;
      }

      .nav-actions .icon-btn {
        display: none;
      }

      .menu-toggle {
        display: inline-flex;
      }

      .brand {
        font-size: 22px;
      }

      .topbar {
        display: none;
      }

      .footer {
        padding: 60px var(--gutter) 72px;
        margin-top: 60px;
      }



      .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
        padding-bottom: 32px;
      }

      .footer-bottom {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
        padding-top: 20px;
      }
    }

    @media (max-width: 600px) {
      .footer-top {
        grid-template-columns: 1fr;
      }
    }

    .marquee {
      background: var(--paper-warm);
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
      overflow: hidden;
      padding: 22px 0;
    }

    .marquee-track {
      display: flex;
      gap: 80px;
      animation: scroll 50s linear infinite;
      white-space: nowrap;
    }

    .marquee-track span {
      font-family: var(--serif);
      font-size: 28px;
      color: var(--ink-muted);
      letter-spacing: 0.02em;
      font-style: italic;
    }

    .marquee-track span::before {
      margin-right: 80px;
      font-style: normal;
      font-size: 14px;
      content: "";
      display: inline-block;
      width: 18px;
      height: 18px;
      background: url("favicon.svg") center / contain no-repeat;
      vertical-align: middle;
    }

      /* ============ MOBILE MENU & RESPONSIVE ============ */
      .menu-toggle {
        display: none;
        width: 40px;
        height: 40px;
        border-radius: var(--r-pill);
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 5px;
        transition: background var(--t-fast) var(--ease);
      }

      .menu-toggle:hover {
        background: var(--line-soft);
      }

      .menu-toggle span {
        display: block;
        width: 18px;
        height: 1.5px;
        background: var(--ink);
        transition: transform var(--t-fast) var(--ease);
      }

      .menu-toggle.active span:nth-child(1) {
        transform: translateY(3px) rotate(45deg);
      }

      .menu-toggle.active span:nth-child(2) {
        transform: translateY(-3px) rotate(-45deg);
      }

      @media (max-width: 1024px) {
        :root {
          --gutter: 20px;
        }

        .header-inner {
          height: 68px;
          gap: 16px;
        }

        .nav {
          display: none;
        }

        .nav-actions .btn {
          display: none;
        }

        .nav-actions .icon-btn {
          display: none;
        }

        .menu-toggle {
          display: inline-flex;
        }

        .brand {
          font-size: 22px;
        }

        .topbar {
          display: none;
        }

        .footer {
          padding: 60px var(--gutter) 30px;
          margin-top: 60px;
        }

        .footer-top {
          grid-template-columns: 1fr 1fr;
          gap: 32px;
          padding-bottom: 32px;
        }

        .footer-bottom {
          flex-direction: column;
          gap: 12px;
          align-items: flex-start;
          padding-top: 20px;
        }
      }

      @media (max-width: 600px) {
        .footer-top {
          grid-template-columns: 1fr;
        }
      }

      .marquee {
            background: linear-gradient(163deg, rgb(255 254 250) 0%, #D4AF37 50%, #ffffff 100%);
        border-top: 1px solid var(--line);
        border-bottom: 1px solid var(--line);
        overflow: hidden;
        padding: 22px 0;
      }

      .marquee-track {
        display: flex;
        gap: 80px;
        animation: scroll 50s linear infinite;
        white-space: nowrap;
      }

      .marquee-track span {
        font-family: var(--serif);
        font-size: 28px;
        color: var(--ink-muted);
        letter-spacing: 0.02em;
        font-style: italic;
      }

      .marquee-track span::before {
        margin-right: 80px;
        font-style: normal;
        font-size: 14px;
        color: var(--ink-faint);
        vertical-align: middle;
      }

      .marquee-track span::before {
        content: "";
        display: inline-block;
        width: 18px;
        height: 18px;
        margin-right: 80px;
        background: url("favicon.svg") center / contain no-repeat;
        vertical-align: middle;
      }

      @keyframes scroll {
        to {
          transform: translateX(-50%);
        }
      }

      /* ============ INTRO (IMMERSIVE MONOLITHIC SPLIT) ============ */
      .intro {
        position: relative;
        padding: var(--section-padding-y) 0;
        background: #faf8f5;
        /* Clean warm alabaster */
        overflow: hidden;
      }

      .intro-layout {
        position: relative;
        display: grid;
        grid-template-columns: minmax(0, 1.2fr) minmax(460px, 0.8fr);
        gap: clamp(60px, 8vw, 120px);
        align-items: center;
        z-index: 2;
      }

      /* LEFT COLUMN: ARCHITECTURAL JOURNEY MAP */
      .intro-narrative-col {
        display: flex;
        flex-direction: column;
      }

      .intro-eyebrow {
        font-size: 11px;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: #84684a;
        margin-bottom: 24px;
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        gap: 16px;
      }

      .intro-eyebrow::before {
        content: "";
        width: 16px;
        height: 16px;
        flex: 0 0 16px;
        background: url("favicon.svg") center / contain no-repeat;
      }

      .intro h2.ultra-title {
        font-family: var(--serif);
        font-size: clamp(52px, 5.8vw, 88px);
        font-weight: 300;
        line-height: 0.98;
        color: var(--ink);
        letter-spacing: -0.01em;
      }

      .intro h2.ultra-title em {
        font-style: italic;
        font-weight: 300;
        color: #84684a;
      }

      /* Poetic pull-quote block */
      .intro-pull-quote {
        margin-top: 36px;
        font-family: var(--serif);
        font-size: 24px;
        font-style: italic;
        line-height: 1.5;
        color: #84684a;
        position: relative;
        padding-left: 28px;
        border-left: 1px solid rgba(132, 104, 74, 0.4);
      }

      /* Architectural Journey Timeline */
      .story-timeline {
        margin-top: 56px;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
        border-top: 1px solid rgba(132, 104, 74, 0.12);
        padding-top: 40px;
      }

      .timeline-node {
        display: flex;
        flex-direction: column;
        position: relative;
        cursor: pointer;
      }

      .timeline-node .node-num {
        font-family: var(--serif);
        font-size: 14px;
        color: #8a7f73;
        margin-bottom: 12px;
        display: flex;
        align-items: center;
        gap: 8px;
        transition: color 0.4s var(--ease);
      }

      .timeline-node .node-num::before {
        content: "";
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: rgba(132, 104, 74, 0.3);
        display: inline-block;
        transition: transform 0.4s var(--ease), background 0.4s var(--ease);
      }

      .timeline-node:hover .node-num {
        color: #84684a;
      }

      .timeline-node:hover .node-num::before {
        background: #84684a;
        transform: scale(1.6);
      }

      .timeline-node h3 {
        font-family: var(--serif);
        font-size: 20px;
        font-weight: 400;
        color: var(--ink);
        margin-bottom: 8px;
      }

      .timeline-node p {
        color: #6c635b;
        font-size: 13.5px;
        line-height: 1.6;
      }


      /* RIGHT COLUMN: MONUMENTAL ARCHITECTURAL SHADOWBOX WITH GPS COORDINATES */
      .intro-visual-col {
        display: flex;
        flex-direction: column;
      }

      .architectural-shadowbox {
        position: relative;
        width: 100%;
        aspect-ratio: 4/5;
        background: #f1efec;
        cursor: pointer;
        box-shadow: 0 45px 110px rgba(42, 34, 26, 0.08);
      }

      /* Offset Golden Wireframe Layer */
      .architectural-shadowbox::before {
        content: "";
        position: absolute;
        inset: -16px;
        border: 1px solid rgba(132, 104, 74, 0.32);
        pointer-events: none;
        z-index: 3;
        transition: inset 0.8s var(--ease), border-color 0.8s var(--ease);
      }

      .architectural-shadowbox:hover::before {
        inset: 0;
        border-color: rgba(132, 104, 74, 0.6);
      }

      .shadowbox-inner {
        width: 100%;
        height: 100%;
        overflow: hidden;
        position: relative;
      }

      .shadowbox-inner img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: saturate(0.96) contrast(1.04);
        transition: transform 1.2s var(--ease), filter 0.8s var(--ease);
        transform: scale(1);
      }

      .architectural-shadowbox:hover .shadowbox-inner img {
        transform: scale(1.04);
      }

      /* Drafting crosshair and coordinate overlays */
      .shadowbox-drafting-overlay {
        position: absolute;
        inset: 0;
        z-index: 2;
        pointer-events: none;
      }

      /* Horizontal & Vertical Drafting Lines */
      .drafting-line-v,
      .drafting-line-h {
        position: absolute;
        background: rgba(132, 104, 74, 0.22);
        transition: background 0.8s var(--ease), transform 0.8s var(--ease);
      }

      .drafting-line-v {
        left: 20%;
        top: 0;
        bottom: 0;
        width: 1px;
      }

      .drafting-line-h {
        left: 0;
        right: 0;
        top: 35%;
        height: 1px;
      }

      .architectural-shadowbox:hover .drafting-line-v {
        transform: translateX(30px);
        background: rgba(132, 104, 74, 0.45);
      }

      .architectural-shadowbox:hover .drafting-line-h {
        transform: translateY(20px);
        background: rgba(132, 104, 74, 0.45);
      }

      /* Floating Geological Coordinate Label */
      .geological-gps-tag {
        position: absolute;
        right: 24px;
        bottom: 24px;
        background: rgba(251, 250, 248, 0.94);
        backdrop-filter: blur(8px);
        border: 1px solid rgba(132, 104, 74, 0.2);
        padding: 10px 14px;
        font-family: var(--sans);
        font-size: 9.5px;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        color: #84684a;
        z-index: 4;
        font-weight: 600;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
        opacity: 0.85;
        transition: opacity 0.5s var(--ease);
      }

      .architectural-shadowbox:hover .geological-gps-tag {
        opacity: 1;
      }

      /* Museum Catalog Plaque Caption */
      .shadowbox-caption {
        margin-top: 24px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 11px;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: #8e847a;
        padding: 0 4px;
      }

      .section-head {
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        gap: 40px;
        margin-bottom: 60px;
      }

      .section-head h2 {
        font-size: clamp(36px, 4.5vw, 64px);
        font-weight: 300;
      }

      .section-head h2 em {
        font-style: italic;
      }

      .section-head .desc {
        max-width: 380px;
        color: var(--ink-muted);
        line-height: 1.7;
      }

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

      .collection-card {
        position: relative;
        border-radius: var(--r-lg);
        overflow: hidden;
        aspect-ratio: 3/4;
        cursor: pointer;
        background: #ddd;
      }

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

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

      .collection-card .veil {
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.7) 100%);
        transition: opacity var(--t-med) var(--ease);
      }

      .collection-card .meta {
        position: absolute;
        left: 28px;
        right: 28px;
        bottom: 28px;
        color: var(--white);
        z-index: 2;
      }

      .collection-card .meta .kicker {
        font-size: 11px;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        opacity: 0.85;
        margin-bottom: 10px;
      }

      .collection-card .meta h3 {
        font-size: 30px;
        font-weight: 400;
        line-height: 1;
        margin-bottom: 14px;
      }

      .collection-card .meta .arrow-link {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        font-size: 12px;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        opacity: 0;
        transform: translateY(8px);
        transition: all var(--t-med) var(--ease);
      }

      .collection-card:hover .meta .arrow-link {
        opacity: 1;
        transform: translateY(0);
      }

      .collections-banner-row {
        margin-top: 18px;
        display: grid;
        grid-template-columns: 1fr;
        gap: 14px;
      }

      .collections-banner-item {
        width: 100%;
        height: 145px;
        border: 1px solid var(--line);
        background: var(--paper-warm);
        color: var(--ink);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        font-size: 13px;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        transition: all var(--t-fast) var(--ease);
        overflow: hidden;
        position: relative;
      }

      .collections-banner-item:hover {
        background: var(--ink);
        color: var(--white);
        border-color: var(--ink);
      }

      .collections-banner-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 1.4s var(--ease);
      }

      .collections-banner-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.55) 100%);
        z-index: 1;
        transition: opacity var(--t-med) var(--ease);
      }

      .collections-banner-title {
        position: absolute;
        left: 20px;
        bottom: 16px;
        z-index: 2;
        color: var(--white);
        font-size: 12px;
        letter-spacing: 0.14em;
        text-transform: uppercase;
      }

      .collections-banner-item:hover img {
        transform: scale(1.06);
      }

      /* ============ FEATURED PRODUCTS — editorial ============ */
      .featured {
        padding: var(--section-padding-y) 0;
        background: var(--paper-warm);
        border-top: 1px solid var(--line);
      }

      .featured-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 32px;
      }

      .product-card {
        cursor: pointer;
        display: block;
      }

      .product-thumb {
        position: relative;
        aspect-ratio: 4/5;
        border-radius: var(--r-md);
        overflow: hidden;
        background: var(--white);
        margin-bottom: 18px;
      }

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

      .product-card:hover .product-thumb img {
        transform: scale(1.05);
      }

      .product-thumb .quick {
        position: absolute;
        inset: auto 16px 16px 16px;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(8px);
        border-radius: var(--r-pill);
        padding: 12px 18px;
        font-size: 11px;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        display: flex;
        justify-content: space-between;
        align-items: center;
        opacity: 0;
        transform: translateY(12px);
        transition: all var(--t-med) var(--ease);
      }

      .product-card:hover .product-thumb .quick {
        opacity: 1;
        transform: translateY(0);
      }

      .product-meta {
        display: flex;
        justify-content: space-between;
        align-items: baseline;
        gap: 12px;
      }

      .product-meta .name {
        font-family: var(--serif);
        font-size: 22px;
      }

      .product-meta .cat {
        font-size: 11px;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: var(--ink-muted);
      }

      /* ============ EDITORIAL SPLIT ============ */
      .editorial {
        padding: var(--section-padding-y) 0;
      }

      .editorial-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: center;
      }

      .editorial-image {
        border-radius: var(--r-lg);
        overflow: hidden;
        aspect-ratio: 4/5;
        position: relative;
      }

      .editorial-image img,
      .editorial-image video {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }

      .editorial h2 {
        font-size: clamp(36px, 4.6vw, 68px);
        font-weight: 300;
        line-height: 1.05;
        margin-bottom: 32px;
      }

      .editorial h2 em {
        font-style: italic;
      }

      .editorial p {
        font-size: 16px;
        line-height: 1.8;
        color: var(--ink-soft);
        max-width: 480px;
      }

      .editorial p+p {
        margin-top: 20px;
      }

      .editorial .stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px;
        margin: 48px 0;
        max-width: 480px;
      }

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

      .stat .num {
        font-family: var(--serif);
        font-size: 56px;
        line-height: 1;
        font-weight: 300;
        color: var(--ink);
        margin-bottom: 12px;
        display: flex;
        align-items: baseline;
      }

      .stat .lbl {
        font-size: 11px;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: var(--ink-soft);
        font-weight: 500;
      }

      /* ============ JOURNAL ============ */
      .journal {
        padding: var(--section-padding-y) 0;
        background: var(--ink);
        color: var(--paper);
      }

      .journal .section-head h2 {
        color: var(--white);
      }

      .journal .section-head .desc {
        color: var(--ink-faint);
      }

      .journal .eyebrow {
        color: var(--ink-faint);
      }

      .journal .eyebrow::before {
        background: url("favicon.svg") center / contain no-repeat;
      }

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

      .journal-card {
        border-radius: var(--r-md);
        overflow: hidden;
        background: var(--ink-soft);
        cursor: pointer;
        transition: transform var(--t-med) var(--ease);
      }

      .journal-card:hover {
        transform: translateY(-6px);
      }

      .journal-card .thumb {
        aspect-ratio: 16/10;
        overflow: hidden;
      }

      .journal-card .thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 1.4s var(--ease);
      }

      .journal-card:hover .thumb img {
        transform: scale(1.06);
      }

      .journal-card .body {
        padding: 28px 28px 32px;
      }

      .journal-card .kicker {
        font-size: 11px;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: var(--ink-faint);
        margin-bottom: 12px;
      }

      .journal-card h3 {
        font-size: 24px;
        font-weight: 400;
        margin-bottom: 14px;
        color: var(--white);
      }

      .journal-card p {
        font-size: 14px;
        color: var(--ink-faint);
        line-height: 1.7;
      }

      /* ============ CTA ============ */
      .cta-band {
        padding: var(--section-padding-y) 0;
        background:
          linear-gradient(135deg, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0) 54%),
          #dfe7df;
        border-top: 1px solid rgba(83, 105, 94, 0.16);
        color: #26332d;
      }

      .cta-layout {
        display: grid;
        grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.62fr);
        gap: clamp(36px, 6vw, 96px);
        align-items: center;
      }

      .cta-copy {
        max-width: 760px;
      }

      .cta-band .eyebrow {
        color: #53695e;
      }

      .cta-band .eyebrow::before {
        background: url("favicon.svg") center / contain no-repeat;
      }

      .cta-band h2 {
        max-width: 780px;
        font-size: clamp(52px, 7vw, 104px);
        font-weight: 300;
        line-height: 1;
        margin: 30px 0 30px;
        letter-spacing: -0.02em;
      }

      .cta-band h2 em {
        font-style: italic;
        color: #8c6b5a;
      }

      .cta-band p {
        max-width: 540px;
        margin: 0;
        color: #4f5f57;
        font-size: 17px;
        line-height: 1.7;
      }

      .cta-actions {
        margin-top: 38px;
        display: flex;
        align-items: center;
        gap: 24px;
        flex-wrap: wrap;
      }

      .cta-band .btn-primary {
        background: #8c6b5a;
        color: #fffaf5;
      }

      .cta-band .btn-primary:hover {
        background: #765848;
        box-shadow: 0 16px 34px -18px rgba(73, 47, 34, 0.58);
      }

      .cta-phone {
        font-size: 12px;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        color: #53695e;
        border-bottom: 1px solid rgba(83, 105, 94, 0.35);
        padding-bottom: 5px;
      }

      .cta-visual {
        position: relative;
        min-height: 420px;
        border-radius: var(--r-lg);
        overflow: hidden;
        box-shadow: 0 32px 80px -56px rgba(38, 51, 45, 0.62);
      }

      .cta-visual img {
        width: 100%;
        height: 100%;
        min-height: 420px;
        object-fit: cover;
      }

      .cta-visual::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(38, 51, 45, 0) 35%, rgba(38, 51, 45, 0.58) 100%);
      }

      .cta-note {
        position: absolute;
        left: 28px;
        right: 28px;
        bottom: 26px;
        z-index: 1;
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        gap: 20px;
        color: #fffaf5;
      }

      .cta-note span {
        font-size: 11px;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        opacity: 0.82;
      }

      .cta-note strong {
        font-family: var(--serif);
        font-size: clamp(30px, 3.4vw, 48px);
        font-weight: 400;
        line-height: 0.95;
      }

      @media (max-width: 1024px) {
        .hero::after {
          width: 100%;
          opacity: 0.22;
          clip-path: none;
        }

        .hero-shell {
          grid-template-columns: 1fr;
          min-height: auto;
        }

        .hero h1 {
          font-size: 64px;
        }

        .full-hero-inner {
          grid-template-columns: 1fr;
          padding-top: 110px;
          padding-bottom: 96px;
          gap: 32px;
        }

        .full-hero-meta {
          justify-self: start;
          text-align: left;
          max-width: 520px;
        }

        .intro-layout,
        .editorial-grid,
        .cta-layout {
          grid-template-columns: 1fr;
          gap: 48px;
        }

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

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

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

        .hero {
          min-height: 520px;
          height: auto;
        }

        .hero-visual {
          min-height: 520px;
          padding-left: 0;
        }

        .hero-visual::before {
          left: 8px;
        }

        .hero-visual::after {
          right: 0;
          width: 32%;
          height: 42%;
        }

        .hero-media-frame {
          height: 520px;
          width: 100%;
        }

        .hero-side-note {
          display: none;
        }

        .editorial .stats {
          grid-template-columns: 1fr 1fr;
        }

        .cta-visual,
        .cta-visual img {
          min-height: 360px;
        }

        .intro,
        .collections,
        .featured,
        .editorial,
        .journal,
        .cta-band {
          padding: var(--section-padding-y) 0;
        }

        .intro-layout {
          grid-template-columns: 1fr;
          gap: 48px;
        }

        .intro-narrative-col {
          text-align: left;
        }

        .intro h2.ultra-title {
          font-size: 56px;
        }

        .intro-pull-quote {
          font-size: 20px;
        }

        .story-timeline {
          grid-template-columns: repeat(3, 1fr);
          gap: 24px;
        }

        .intro-visual-col {
          max-width: 550px;
          width: 100%;
          margin: 0 auto;
        }

        .section-head {
          flex-direction: column;
          align-items: flex-start;
          gap: 20px;
          margin-bottom: 40px;
        }

        .cta-band h2 {
          font-size: clamp(48px, 10vw, 78px);
        }
      }

      @media (max-width: 600px) {
        .full-hero {
          min-height: 100svh;
        }

        .full-hero-inner {
          min-height: 100svh;
          padding-top: 96px;
          padding-bottom: 96px;
          gap: 24px;
        }

        .full-hero-eyebrow {
          font-size: 11px;
        }

        .full-hero-title {
          font-size: clamp(42px, 14vw, 72px);
          line-height: 0.9;
        }

        .full-hero-lead {
          margin-top: 20px;
          padding-left: 18px;
          font-size: 15px;
        }

        .full-hero-meta {
          max-width: 100%;
        }

        .full-hero-controls {
          left: var(--gutter);
          right: var(--gutter);
          bottom: 28px;
          transform: none;
          justify-content: flex-start;
        }

        .full-hero-dot {
          width: 28px;
        }

        .full-hero-dot.active {
          width: 48px;
        }

        .hero-shell {
          padding-top: 28px;
          gap: 28px;
        }

        .hero-copy {
          order: 2;
        }

        .hero-visual {
          order: 1;
        }

        .hero-copy::before {
          font-size: 74px;
          top: -22px;
        }

        .hero h1,
        .hero .hero-title {
          font-size: 46px;
        }

        .hero-title-line {
          white-space: normal;
        }

        .hero-lead {
          font-size: 15px;
        }

        .hero-meta {
          grid-template-columns: 1fr;
          margin-top: 38px;
        }

        .hero-meta div,
        .hero-meta div+div {
          padding: 14px 0;
          border-left: 0;
        }

        .hero-visual {
          min-height: 360px;
          padding: 0;
          top: 0;
        }

        .hero-visual::before,
        .hero-visual::after,
        .hero-art-line,
        .hero-stone-tag {
          display: none;
        }

        .hero-media-frame {
          height: 360px;
        }

        .hero-media-frame::before {
          inset: 10px;
        }

        .hero-media-caption {
          align-items: flex-start;
          flex-direction: column;
          bottom: 34px;
          left: 34px;
          right: 28px;
        }

        .hero-media-caption strong {
          font-size: 34px;
        }

        .hero-controls {
          left: 34px;
          top: 24px;
          gap: 8px;
        }

        .hero-dot {
          width: 28px;
          height: 3px;
        }

        .hero-dot.active {
          width: 48px;
        }

        .intro {
          padding: var(--section-padding-y) 0;
        }

        .intro h2.ultra-title {
          font-size: 38px;
        }

        .intro-pull-quote {
          font-size: 17px;
          padding-left: 18px;
        }

        .cta-actions {
          align-items: flex-start;
          flex-direction: column;
        }

        .cta-visual,
        .cta-visual img {
          min-height: 300px;
        }

        .cta-note {
          left: 22px;
          right: 22px;
          bottom: 22px;
        }

        .story-timeline {
          grid-template-columns: 1fr;
          gap: 24px;
          margin-top: 36px;
          padding-top: 28px;
        }

        .architectural-shadowbox::before {
          inset: -8px;
        }

        .shadowbox-caption {
          font-size: 10px;
          margin-top: 14px;
        }

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

        .featured-grid {
          grid-template-columns: 1fr 1fr;
          gap: 16px;
        }

        .product-meta .name {
          font-size: 18px;
        }

        .marquee-track span {
          font-size: 22px;
        }
      }
/* ====== BURGER DRAWER / MEGA MENU (single source) ====== */
.menu-toggle {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: inherit; /* Inherits white/dark naturally from header state */
  border: none;
  cursor: pointer;
  transition: all 400ms cubic-bezier(0.25, 1, 0.5, 1);
  position: relative;
  z-index: 10;
}

.menu-toggle .burger-svg {
  display: block;
  transition: transform 420ms cubic-bezier(0.25, 1, 0.5, 1);
}

.menu-toggle .burger-top,
.menu-toggle .burger-mid,
.menu-toggle .burger-bottom {
  transform-origin: 12px 12px;
  transition: transform 420ms cubic-bezier(0.25, 1, 0.5, 1), opacity 240ms ease;
}

.menu-toggle:hover .burger-top { transform: translateY(-1px); }
.menu-toggle:hover .burger-bottom { transform: translateY(1px); }
.menu-toggle.active .burger-top { transform: translateY(5px) rotate(45deg); }
.menu-toggle.active .burger-mid { opacity: 0; transform: scaleX(.2); }
.menu-toggle.active .burger-bottom { transform: translateY(-5px) rotate(-45deg); }


/* The Mobile Drawer Overlay */
.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  background: #FAF8F5; /* Premium Warm Ivory Paper Background */
  background-image:
    linear-gradient(135deg, rgba(255,255,255,.94), rgba(255,255,255,0) 42%),
    linear-gradient(180deg, rgba(132,104,74,.025), rgba(132,104,74,0) 220px);
  padding: clamp(92px, 12vh, 140px) clamp(24px, 6vw, 80px) 60px;
  transform: translateY(-24px) scale(.99);
  clip-path: inset(0 0 100% 0);
  transition:
    opacity 600ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 800ms cubic-bezier(0.16, 1, 0.3, 1),
    clip-path 800ms cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0s linear 800ms;
  border-bottom: 2px solid #84684a;
}

.mobile-drawer.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  clip-path: inset(0 0 0 0);
  transition:
    opacity 600ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 800ms cubic-bezier(0.16, 1, 0.3, 1),
    clip-path 800ms cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0s;
}

/* Luxury Close Button styling */
.mobile-drawer-close {
  position: absolute;
  top: clamp(24px, 4vw, 40px);
  right: clamp(24px, 6vw, 80px);
  height: 44px;
  padding: 0 20px;
  border: 1px solid rgba(132, 104, 74, 0.24);
  border-radius: 0;
  background: transparent;
  color: #111111;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--sans, sans-serif);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: all 400ms cubic-bezier(0.25, 1, 0.5, 1);
  cursor: pointer;
}

.mobile-drawer-close span {
  display: inline-block;
  opacity: 0.8;
  font-weight: 500;
}

.mobile-drawer-close:hover {
  background: #111111;
  color: #FAF8F5;
  border-color: #111111;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
}

.mobile-drawer-close:hover span {
  opacity: 1;
}

/* Nav Menu Structure */
.mobile-nav {
  list-style: none;
  padding: 0;
  max-width: min(1380px, calc(100vw - 120px));
  margin: 0 auto;
  display: grid;
  gap: 0;
}

.mobile-nav > li {
  border-bottom: 1px solid rgba(132, 104, 74, 0.12); /* Warm subtle gold divider lines */
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 850ms cubic-bezier(0.16, 1, 0.3, 1), transform 850ms cubic-bezier(0.16, 1, 0.3, 1);
}

/* Staggered load-in sequence for list items on drawer open */
.mobile-drawer.open .mobile-nav > li {
  opacity: 1;
  transform: translateY(0);
}

.mobile-drawer.open .mobile-nav > li:nth-child(1) { transition-delay: 80ms; }
.mobile-drawer.open .mobile-nav > li:nth-child(2) { transition-delay: 130ms; }
.mobile-drawer.open .mobile-nav > li:nth-child(3) { transition-delay: 180ms; }
.mobile-drawer.open .mobile-nav > li:nth-child(4) { transition-delay: 230ms; }
.mobile-drawer.open .mobile-nav > li:nth-child(5) { transition-delay: 280ms; }
.mobile-drawer.open .mobile-nav > li:nth-child(6) { transition-delay: 330ms; }
.mobile-drawer.open .mobile-nav > li:nth-child(7) { transition-delay: 380ms; }
.mobile-drawer.open .mobile-nav > li:nth-child(8) { transition-delay: 430ms; }

.mobile-nav > li > a,
.mobile-nav > li > .mobile-acc-toggle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: clamp(20px, 3.2vw, 36px) 0;
  border: 0;
  background: transparent;
  font-family: var(--serif, "Helvetica Neue", Helvetica, Arial, sans-serif);
  font-size: clamp(26px, 3.8vw, 48px);
  font-weight: 300;
  line-height: 1.1;
  color: #111111;
  letter-spacing: 0.01em;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  transition: all 400ms cubic-bezier(0.25, 1, 0.5, 1);
}

.mobile-nav > li > a:hover,
.mobile-nav > li > .mobile-acc-toggle:hover {
  color: #84684a;
  transform: translateX(12px);
}

.mobile-acc-toggle.open {
  color: #84684a;
}

/* Elegant minimalist plus-cross icon toggle */
.mobile-acc-toggle .plus {
  width: 24px;
  height: 24px;
  position: relative;
  border: none;
  background: transparent;
  transition: transform 450ms cubic-bezier(0.25, 1, 0.5, 1);
}

.mobile-acc-toggle .plus::before,
.mobile-acc-toggle .plus::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: #84684a;
  transform: translate(-50%, -50%);
  transition: transform 350ms ease, background 350ms ease;
}

.mobile-acc-toggle .plus::before {
  width: 14px;
  height: 1px;
}

.mobile-acc-toggle .plus::after {
  width: 1px;
  height: 14px;
}

.mobile-acc-toggle.open .plus {
  transform: rotate(45deg);
}

.mobile-acc-toggle.open .plus::before,
.mobile-acc-toggle.open .plus::after {
  background: #84684a;
}

/* Accordion Expansion Panel */
.mobile-acc-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-acc-content.open {
  max-height: 3000px;
}

/* Simple Dropdown list fallback styling */
.mobile-acc-content > ul {
  list-style: none;
  margin: 0 0 32px 12px;
  padding: 16px 0 16px 28px;
  border-left: 1px solid rgba(132, 104, 74, 0.2);
  display: grid;
  gap: 16px;
}

.mobile-acc-content > ul a {
  font-family: var(--sans, sans-serif);
  font-size: 14px;
  font-weight: 500;
  color: #554c43;
  letter-spacing: 0.05em;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 300ms cubic-bezier(0.25, 1, 0.5, 1);
}

.mobile-acc-content > ul a::before {
  content: "";
  width: 0;
  height: 1px;
  background: #84684a;
  display: inline-block;
  transition: width 300ms ease;
}

.mobile-acc-content > ul a:hover {
  color: #84684a;
  transform: translateX(6px);
}

.mobile-acc-content > ul a:hover::before {
  width: 10px;
}

/* Luxurious Accordion Mega Panel */
.burger-mega-panel {
  display: grid;
  gap: clamp(32px, 4vw, 64px);
  padding: 16px 0 48px 28px;
  border-left: 1px solid rgba(132, 104, 74, 0.2);
  margin-left: 12px;
  margin-bottom: 16px;
}

.burger-mega-panel.has-feature {
  grid-template-columns: minmax(0, 1fr) 300px;
  align-items: stretch;
}

.burger-mega-grid {
  display: grid;
  gap: 24px;
  padding: 0;
}

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

.mobile-mega-col h5 {
  margin: 0 0 20px;
  font-family: var(--sans, sans-serif);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #84684a;
  border-bottom: 1px solid rgba(132, 104, 74, 0.12);
  padding-bottom: 10px;
}

.mobile-mega-col ul {
  display: grid;
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-mega-col a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 0;
  padding: 0;
  color: #111111;
  font-family: var(--serif, "Helvetica Neue", Helvetica, Arial, sans-serif);
  font-size: clamp(16px, 1.1vw, 19px);
  font-weight: 400;
  line-height: 1.3;
  text-decoration: none;
  background: transparent;
  border: 0;
  transition: all 300ms cubic-bezier(0.25, 1, 0.5, 1);
}

.mobile-mega-col a::before {
  content: "";
  width: 0;
  height: 1px;
  background: #84684a;
  display: inline-block;
  transition: width 350ms cubic-bezier(0.25, 1, 0.5, 1);
}

.mobile-mega-col a:hover {
  color: #84684a;
  transform: translateX(8px);
}

.mobile-mega-col a:hover::before {
  width: 14px;
}

/* Beautiful dynamic feature showcase panel */
.burger-mega-feature {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  background: #f0ede6;
  border: 1px solid rgba(132, 104, 74, 0.2);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.05);
}

.burger-mega-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.04) brightness(0.88);
  transition: opacity 320ms cubic-bezier(0.25, 1, 0.5, 1), transform 1400ms cubic-bezier(0.25, 1, 0.5, 1);
}

.burger-mega-feature:hover img {
  transform: scale(1.05);
}

.burger-mega-feature-overlay {
  position: absolute;
  inset: auto 0 0;
  padding: 24px;
  color: #ffffff;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(17,17,17,0.85) 100%);
  z-index: 2;
  transition: all 400ms cubic-bezier(0.25, 1, 0.5, 1);
}

.burger-mega-feature-overlay strong {
  display: block;
  font-family: var(--serif, "Helvetica Neue", Helvetica, Arial, sans-serif);
  font-size: 24px;
  font-weight: 300;
  line-height: 1.15;
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.burger-mega-feature-overlay span {
  display: block;
  margin-top: 6px;
  color: rgba(255,255,255,.8);
  font-family: var(--sans, sans-serif);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Call to Actions at bottom of Drawer */
.mobile-actions {
  max-width: 680px;
  margin: 48px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding-top: 36px;
  border-top: 1px solid rgba(132, 104, 74, 0.15);
}

.mobile-actions .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 28px;
  font-family: var(--sans, sans-serif);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 0;
  text-decoration: none;
  transition: all 400ms cubic-bezier(0.25, 1, 0.5, 1);
  cursor: pointer;
}

.mobile-actions .btn-primary {
  background: #111111;
  color: #ffffff;
  border: 1px solid #111111;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.mobile-actions .btn-primary:hover {
  background: #84684a;
  border-color: #84684a;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(132, 104, 74, 0.22);
}

.mobile-actions .btn-ghost {
  background: transparent;
  color: #111111;
  border: 1px solid rgba(17, 17, 17, 0.15);
}

.mobile-actions .btn-ghost:hover {
  background: rgba(17, 17, 17, 0.03);
  border-color: #111111;
  transform: translateY(-2px);
}

body.mobile-menu-open .header { pointer-events: none; }

/* Responsive reflow declarations */
@media (min-width: 1025px) {
  #mobileDrawer .burger-mega-grid {
    grid-template-columns: repeat(var(--burger-mega-cols), minmax(0, 1fr));
    column-gap: clamp(32px, 3.5vw, 64px);
    row-gap: 36px;
    width: 100%;
    overflow: visible;
  }
}

@media (min-width: 721px) and (max-width: 1024px) {
  .burger-mega-panel.has-feature {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  #mobileDrawer .burger-mega-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .mobile-nav {
    max-width: none;
  }
  .mobile-drawer {
    padding: clamp(80px, 10vh, 100px) 24px 40px;
  }
  .mobile-drawer-close {
    top: 20px;
    right: 24px;
  }
  .burger-mega-panel {
    padding-left: 16px;
  }
  .burger-mega-panel.has-feature {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  #mobileDrawer .burger-mega-grid {
    grid-template-columns: 1fr;
  }
  .burger-mega-feature {
    min-height: 240px;
  }
  .mobile-actions {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 36px;
    padding-top: 24px;
  }
}

/* Notebook & Small Desktop Screen Spacing Optimizations (Prevents content cutoffs) */
@media (max-height: 850px) {
  .mobile-drawer {
    padding-top: clamp(70px, 8vh, 90px);
    padding-bottom: 36px;
  }
  
  .mobile-nav > li > a,
  .mobile-nav > li > .mobile-acc-toggle {
    padding: clamp(12px, 1.8vw, 18px) 0;
    font-size: clamp(20px, 2.5vw, 32px);
  }
  
  .burger-mega-panel {
    padding-top: 8px;
    padding-bottom: 24px;
    gap: clamp(24px, 3vw, 40px);
  }
  
  .burger-mega-feature {
    min-height: 200px;
  }
  
  .mobile-actions {
    margin-top: 28px;
    padding-top: 24px;
  }
}

@media (max-width: 1366px) {
  .burger-mega-panel.has-feature {
    grid-template-columns: minmax(0, 1fr) 240px; /* Scales down showcase image panel slightly for columns */
  }
  
  .mobile-nav {
    max-width: min(1180px, calc(100vw - 80px));
  }
  
  .burger-mega-grid {
    column-gap: clamp(16px, 2vw, 32px);
  }
}

@media (max-width: 1024px) {
  #mobileDrawer .burger-mega-panel.has-feature {
    grid-template-columns: 1fr;
    align-items: start;
  }

  #mobileDrawer .burger-mega-grid {
    position: relative;
    z-index: 2;
    width: 100%;
  }

  #mobileDrawer .burger-mega-feature {
    position: relative;
    z-index: 1;
    order: 2;
    width: 100%;
    max-width: 100%;
    min-height: clamp(190px, 34vw, 280px);
    margin-top: 4px;
  }

  #mobileDrawer .burger-mega-feature img {
    position: relative;
    z-index: 1;
  }
}

/* Custom premium scrollbar for dynamic drawer navigation */
.mobile-drawer::-webkit-scrollbar {
  width: 6px;
}
.mobile-drawer::-webkit-scrollbar-track {
  background: transparent;
}
.mobile-drawer::-webkit-scrollbar-thumb {
  background: rgba(132, 104, 74, 0.25);
  border-radius: 3px;
}
.mobile-drawer::-webkit-scrollbar-thumb:hover {
  background: rgba(132, 104, 74, 0.45);
}
