/* =====================================================
   ORYN — Shared Stylesheet v2.0
   Palette: #0C367B (Blue) · #FFFFFF (White)
   ===================================================== */

/* ─── TOKENS ─────────────────────────────────────── */
:root {
  --blue: #0c367b;
  --white: #ffffff;
  --text-size: clamp(1rem, 0.22vw + 0.96rem, 1.08rem);
  --text-line: 1.82;
  --f-display: "TAN Vivre Libre", Georgia, serif;
  --f-body: "EB Garamond", Georgia, serif;
  --f-hindi: "Amita", serif;
  --f-accent: "Comforter Brush", cursive;
  --nav-h: 72px;
  --px: 64px;
  --py: 120px;
  --max: 1400px;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
}

/* ─── RESET ──────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body {
  font-family: var(--f-body);
  background: var(--white);
  color: var(--blue);
  overflow-x: hidden;
  cursor: none;
  animation: pageFadeIn 0.5s ease;
}
img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
button {
  cursor: pointer;
  font: inherit;
  border: none;
  background: none;
}
input,
select,
textarea {
  font: inherit;
}
@media (hover: none) {
  body {
    cursor: auto;
  }
  .cursor-dot,
  .cursor-ring {
    display: none !important;
  }
}

@keyframes pageFadeIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* ─── CURSOR ─────────────────────────────────────── */
.cursor-dot {
  width: 28px;
  height: 35px;
  background: transparent;
  border-radius: 0;
  position: fixed;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  background-image: url("../cursor-muffin.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.18s var(--ease);
}
.cursor-dot::before {
  content: none;
}
.cursor-ring {
  display: none;
}
body.cur-hover .cursor-dot {
  transform: translate(-50%, -50%) scale(1.15);
}

/* ─── LOADER ─────────────────────────────────────── */
#loader {
  position: fixed;
  inset: 0;
  background: var(--blue);
  z-index: 9990;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  transition:
    opacity 1s ease 0.1s,
    visibility 1s ease 0.1s;
}
#loader.out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.ldr-logo {
  width: 100px;
  height: 100px;
  object-fit: contain;
  opacity: 0;
  transform: scale(0.85);
  animation: lIn 0.7s var(--ease) 0.35s forwards;
}
.ldr-txt {
  font-family: var(--f-body);
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  opacity: 0;
  animation: lIn 0.7s var(--ease) 0.65s forwards;
}
.ldr-bar {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
  overflow: hidden;
  position: relative;
  opacity: 0;
  animation: lIn 0.5s ease 0.9s forwards;
}
.ldr-bar::after {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.65);
  animation: lScan 1.2s ease 1.1s infinite;
}
@keyframes lIn {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes lScan {
  0% {
    top: -100%;
  }
  100% {
    top: 100%;
  }
}

/* ─── PAGE TRANSITION OVERLAY ────────────────────── */
.page-leave {
  position: fixed;
  inset: 0;
  background: var(--blue);
  z-index: 9980;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.page-leave.active {
  opacity: 1;
}

/* ─── NAVIGATION ─────────────────────────────────── */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--px);
  transition:
    background 0.5s var(--ease),
    box-shadow 0.5s var(--ease);
}
#nav.on-dark {
  background: transparent;
}
#nav.on-light {
  background: var(--white);
  box-shadow: 0 1px 0 rgba(12, 54, 123, 0.1);
}

.nav-logo-wrap {
  display: flex;
  align-items: center;
}
.nav-logo {
  height: 45px;
  width: auto;
  object-fit: contain;
  transition: filter 0.4s var(--ease);
}
/* White transparent logo → brand blue when nav is over a light background */
#nav.on-light .nav-logo {
  filter: brightness(0.5) sepia(1) hue-rotate(182deg) saturate(3.5)
    brightness(0.46);
}

.nav-center {
  display: flex;
  align-items: center;
  gap: 32px;
}

/* Nav link base */
.nav-link {
  font-family: var(--f-body);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
  position: relative;
  padding: 4px 0;
  transition: opacity 0.3s;
  background: none;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.3s ease;
}
.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}
#nav.on-light .nav-link {
  color: var(--blue);
}
#nav.on-light .nav-link.nav-cta-btn {
  color: var(--blue);
  border-color: var(--blue);
}
#nav.on-light .nav-cta-btn:hover {
  background: var(--blue);
  color: var(--white);
}

/* Nav CTA */
.nav-cta-btn {
  font-family: var(--f-body);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 10px 26px;
  border: 1px solid var(--white);
  color: var(--white);
  background: transparent;
  transition:
    background 0.3s,
    color 0.3s,
    border-color 0.3s;
}
.nav-cta-btn:hover {
  background: var(--white);
  color: var(--blue);
}
.nav-cta-btn::after {
  display: none;
}
#nav.on-light .nav-cta-btn {
  border-color: var(--blue);
  color: var(--blue);
}
#nav.on-light .nav-cta-btn:hover {
  background: var(--blue);
  color: var(--white);
}

/* Dropdown chevron */
.dd-chev {
  width: 10px;
  height: 6px;
  transition: transform 0.3s;
}
.dd-chev path {
  stroke: currentColor;
}

/* Dropdown panel */
.nav-dd {
  position: relative;
}
.nav-dd-panel {
  position: absolute;
  top: 100%;
  left: 50%;
  background: var(--white);
  border: 1px solid rgba(12, 54, 123, 0.1);
  min-width: 360px;
  padding: 14px 0 10px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(-6px);
  transition:
    opacity 0.25s var(--ease),
    transform 0.25s var(--ease),
    visibility 0.25s;
  box-shadow: 0 24px 60px rgba(12, 54, 123, 0.14);
  z-index: 200;
}
.nav-dd:hover .nav-dd-panel,
.nav-dd-panel:hover,
.nav-dd.open .nav-dd-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.nav-dd:hover .dd-chev,
.nav-dd.open .dd-chev {
  transform: rotate(180deg);
}

.dd-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 12px 24px;
  transition: background 0.2s;
  color: var(--blue);
}
.dd-item:hover {
  background: rgba(12, 54, 123, 0.04);
}
.dd-item strong {
  font-family: var(--f-display);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.2;
}
.dd-item span {
  font-family: var(--f-body);
  font-size: 0.75rem;
  opacity: 0.5;
  letter-spacing: 0.06em;
}
.dd-sep {
  height: 1px;
  background: rgba(12, 54, 123, 0.07);
  margin: 6px 0;
}

/* Nested flyout — e.g. "Best Sellers" reveals its own products to the side.
   Same look/spacing/animation as .dd-item + .nav-dd-panel, one level deeper. */
.dd-item-flyout {
  position: relative;
}
.dd-flyout-trigger {
  display: flex;
  flex-direction: column;
  gap: 2px;
  width: 100%;
  padding: 12px 24px;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font: inherit;
  color: var(--blue);
  transition: background 0.2s;
}
.dd-flyout-trigger:hover {
  background: rgba(12, 54, 123, 0.04);
}
.dd-flyout-trigger strong {
  font-family: var(--f-display);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.2;
}
.dd-flyout-trigger span {
  font-family: var(--f-body);
  font-size: 0.75rem;
  opacity: 0.5;
  letter-spacing: 0.06em;
}
.dd-flyout-panel {
  position: absolute;
  top: -14px;
  left: 100%;
  margin-left: 1px;
  background: var(--white);
  border: 1px solid rgba(12, 54, 123, 0.1);
  min-width: 220px;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-6px);
  transition:
    opacity 0.25s var(--ease),
    transform 0.25s var(--ease),
    visibility 0.25s;
  box-shadow: 0 24px 60px rgba(12, 54, 123, 0.14);
  z-index: 210;
}
.dd-item-flyout:hover .dd-flyout-panel,
.dd-flyout-panel:hover,
.dd-item-flyout.open .dd-flyout-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateX(0);
}
.dd-flyout-item {
  display: block;
  padding: 10px 24px;
  font-family: var(--f-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--blue);
  transition: background 0.2s;
}
.dd-flyout-item:hover {
  background: rgba(12, 54, 123, 0.04);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition:
    transform 0.3s,
    opacity 0.3s,
    background 0.3s;
}
#nav.on-light .hamburger span {
  background: var(--blue);
}
.hamburger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ─── MOBILE NAV ─────────────────────────────────── */
#mob-nav {
  position: fixed;
  inset: 0;
  background: var(--blue);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.5s ease,
    visibility 0.5s ease;
  overflow-y: auto;
  padding: calc(var(--nav-h) + 32px) 20px 40px;
}
#mob-nav.open {
  opacity: 1;
  visibility: visible;
}
#mob-nav a {
  font-family: var(--f-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--white);
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
}
#mob-nav .mob-sep {
  width: 40px;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
}
#mob-nav.open a {
  opacity: 1;
  transform: none;
}
#mob-nav.open a:nth-child(1) {
  transition-delay: 0.07s;
}
#mob-nav.open a:nth-child(2) {
  transition-delay: 0.12s;
}
#mob-nav.open a:nth-child(3) {
  transition-delay: 0.17s;
}
#mob-nav.open a:nth-child(4) {
  transition-delay: 0.22s;
}
#mob-nav.open a:nth-child(5) {
  transition-delay: 0.27s;
}
#mob-nav.open a:nth-child(6) {
  transition-delay: 0.32s;
}
#mob-nav.open a:nth-child(7) {
  transition-delay: 0.37s;
}
#mob-nav.open a:nth-child(8) {
  transition-delay: 0.42s;
}
#mob-nav.open a:nth-child(9) {
  transition-delay: 0.47s;
}
@media (max-height: 700px) {
  #mob-nav {
    gap: 14px;
    padding: calc(var(--nav-h) + 20px) 20px 28px;
  }
  #mob-nav a {
    font-size: 1.4rem;
  }
}

/* ─── FOOTER ─────────────────────────────────────── */
footer {
  background: var(--blue);
  color: var(--white);
  padding: 72px var(--px) 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.ft-inner {
  max-width: var(--max);
  margin: 0 auto;
}
.ft-top {
  display: grid;
  grid-template-columns: 1.1fr 0.75fr 0.75fr 0.85fr 0.75fr 0.9fr;
  gap: 46px;
  margin-bottom: 56px;
  align-items: start;
}
.ft-logo {
  height: 54px;
  width: auto;
  object-fit: contain;
  margin-bottom: 20px;
}
.ft-about {
  font-family: var(--f-body);
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 18px;
  max-width: 340px;
}
.ft-acc {
  font-family: var(--f-display);
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.62);
}
.ft-col-h {
  font-family: var(--f-body);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 24px;
}
.ft-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.ft-links a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--f-body);
  font-size: 0.96rem;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.3s;
}
.ft-links a:hover {
  color: rgba(255, 255, 255, 0.5);
}
.ft-link-icon {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}
.ft-signup-form {
  display: flex;
  border: 1px solid rgba(255, 255, 255, 0.3);
  max-width: 300px;
}
.ft-signup-form input {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: none;
  padding: 13px 14px;
  font-family: var(--f-body);
  font-size: 0.85rem;
  color: var(--white);
  outline: none;
}
.ft-signup-form input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.ft-signup-form button {
  padding: 0 20px;
  flex-shrink: 0;
  font-family: var(--f-body);
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: none;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  color: var(--white);
  transition:
    background 0.3s,
    color 0.3s;
}
.ft-signup-form button:hover {
  background: var(--white);
  color: var(--blue);
}
.ft-bot {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ft-copy {
  font-family: var(--f-body);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}
.ft-legal {
  font-family: var(--f-body);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}
.ft-legal a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s;
}
.ft-legal a:hover {
  color: rgba(255, 255, 255, 0.9);
}
.ft-tagline {
  font-family: var(--f-body);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

/* ─── TYPOGRAPHY SYSTEM ──────────────────────────── */
.eye {
  font-family: var(--f-body);
  font-size: 0.7rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  display: block;
}
.eye-b {
  color: rgba(12, 54, 123, 0.55);
}
.eye-w {
  color: rgba(255, 255, 255, 0.6);
}

.display {
  font-family: var(--f-display);
  font-weight: 300;
  line-height: 0.92;
  letter-spacing: -0.02em;
  font-size: clamp(5rem, 13vw, 12rem);
}
.h1 {
  font-family: var(--f-display);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.01em;
  font-size: clamp(2.6rem, 5vw, 4.8rem);
}
.h2 {
  font-family: var(--f-display);
  font-weight: 400;
  line-height: 1.15;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
}
.h3 {
  font-family: var(--f-display);
  font-weight: 400;
  line-height: 1.2;
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
}
.h4 {
  font-family: var(--f-display);
  font-weight: 400;
  line-height: 1.25;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
}

.body-xl {
  font-family: var(--f-body);
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  line-height: 1.85;
}
.body-lg {
  font-family: var(--f-body);
  font-size: var(--text-size);
  line-height: var(--text-line);
}
.body-md {
  font-family: var(--f-body);
  font-size: var(--text-size);
  line-height: var(--text-line);
}
.body-sm {
  font-family: var(--f-body);
  font-size: calc(var(--text-size) - 0.06rem);
  line-height: calc(var(--text-line) - 0.06);
}
.italic {
  font-style: italic;
}
.opacity-b {
  opacity: 0.86;
}
.opacity-w {
  color: rgba(255, 255, 255, 0.84);
}

/* Narrative paragraph consistency and readability across templates */
p:not([class]),
p[class~="body-lg"],
p[class~="body-md"],
p[class~="body-sm"],
p[class$="-body"],
p[class*="-body "],
p[class$="-desc"],
p[class*="-desc "],
p[class$="-story"],
p[class*="-story "],
p[class$="-text"],
p[class*="-text "],
p[class$="-txt"],
p[class*="-txt "] {
  font-family: var(--f-body) !important;
  font-size: var(--text-size) !important;
  line-height: var(--text-line) !important;
  letter-spacing: 0.002em;
  text-wrap: pretty;
}

.hindi {
  font-family: var(--f-hindi);
}
.accent {
  font-family: var(--f-accent);
}

.pull-quote {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  line-height: 1.35;
  font-size: clamp(1.6rem, 2.8vw, 2.5rem);
}

/* ─── BUTTONS ─────────────────────────────────────── */
.btn {
  font-family: var(--f-body);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 15px 38px;
  display: inline-block;
  transition:
    background 0.3s,
    color 0.3s,
    border-color 0.3s;
}
.btn-b {
  background: var(--blue);
  color: var(--white);
  border: 1px solid var(--blue);
}
.btn-b:hover {
  background: transparent;
  color: var(--blue);
}
.btn-w {
  background: var(--white);
  color: var(--blue);
  border: 1px solid var(--white);
}
.btn-w:hover {
  background: transparent;
  color: var(--white);
}
.btn-ob {
  background: transparent;
  color: var(--blue);
  border: 1px solid rgba(12, 54, 123, 0.35);
}
.btn-ob:hover {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn-ow {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.4);
}
.btn-ow:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}
.btn-sm {
  padding: 10px 22px;
  font-size: 0.72rem;
}
.btn-cart {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-cart-ico {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.ap-cta-row {
  display: flex;
  align-items: stretch;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.ap-cta-row > .btn {
  flex: 1 1 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* ─── SCROLL REVEAL ──────────────────────────────── */
.r {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 0.85s var(--ease),
    transform 0.85s var(--ease);
}
.r-l {
  opacity: 0;
  transform: translateX(-34px);
  transition:
    opacity 0.85s var(--ease),
    transform 0.85s var(--ease);
}
.r-r {
  opacity: 0;
  transform: translateX(34px);
  transition:
    opacity 0.85s var(--ease),
    transform 0.85s var(--ease);
}
.r-s {
  opacity: 0;
  transform: scale(0.96);
  transition:
    opacity 0.9s var(--ease),
    transform 0.9s var(--ease);
}
.r.vis,
.r-l.vis,
.r-r.vis,
.r-s.vis {
  opacity: 1;
  transform: none;
}
.d1 {
  transition-delay: 0.08s;
}
.d2 {
  transition-delay: 0.16s;
}
.d3 {
  transition-delay: 0.24s;
}
.d4 {
  transition-delay: 0.32s;
}
.d5 {
  transition-delay: 0.4s;
}
.d6 {
  transition-delay: 0.48s;
}

/* ─── MARQUEE ─────────────────────────────────────── */
.marquee {
  overflow: hidden;
  border-top: 1px solid rgba(12, 54, 123, 0.07);
  border-bottom: 1px solid rgba(12, 54, 123, 0.07);
  padding: 14px 0;
  mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
}
.marquee-b {
  border-color: rgba(255, 255, 255, 0.1);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: mq 34s linear infinite;
  will-change: transform;
}
.marquee-item {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 0.92rem;
  opacity: 1;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 72px;
  margin-right: 72px;
}
.marquee-item::after {
  content: "·";
  opacity: 0.5;
}
.marquee-b .marquee-item {
  color: var(--white);
}
@keyframes mq {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

/* ─── SECTION WRAPPERS ────────────────────────────── */
.section {
  padding: var(--py) var(--px);
}
.section-b {
  background: var(--blue);
  color: var(--white);
}
.inner {
  max-width: var(--max);
  margin: 0 auto;
}

/* ─── SPLIT LAYOUT ────────────────────────────────── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}
.split-r {
  direction: rtl;
}
.split-r > * {
  direction: ltr;
}

/* ─── IMAGE FRAMES ────────────────────────────────── */
.img-cover {
  overflow: hidden;
  position: relative;
}
.img-cover img {
  transition: transform 0.9s var(--ease);
}
.img-cover:hover img {
  transform: scale(1.05);
}
.img-4-5 {
  aspect-ratio: 4/5;
}
.img-3-4 {
  aspect-ratio: 3/4;
}
.img-1-1 {
  aspect-ratio: 1/1;
}
.img-16-9 {
  aspect-ratio: 16/9;
}
.img-3-2 {
  aspect-ratio: 3/2;
}

/* Floating secondary image */
.img-float-br {
  position: absolute;
  bottom: -28px;
  right: -28px;
  width: 48%;
  border: 7px solid var(--white);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(12, 54, 123, 0.18);
}
.img-float-bl {
  position: absolute;
  bottom: -28px;
  left: -28px;
  width: 48%;
  border: 7px solid var(--white);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(12, 54, 123, 0.18);
}

/* ─── PRODUCT CARD ────────────────────────────────── */
.prod-card {
  display: flex;
  flex-direction: column;
}
.prod-card .img-cover {
  margin-bottom: 22px;
}
.prod-region {
  font-family: var(--f-body);
  font-size: 0.66rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.4;
  margin-bottom: 8px;
}
.prod-name {
  font-family: var(--f-display);
  font-size: clamp(1.7rem, 2.5vw, 2.2rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 10px;
}
.prod-notes {
  font-family: var(--f-body);
  font-style: italic;
  font-size: 0.84rem;
  opacity: 0.48;
  margin-bottom: 12px;
}
.prod-desc {
  font-family: var(--f-body);
  font-size: 0.92rem;
  line-height: 1.8;
  opacity: 0.58;
  flex: 1;
}
.prod-price {
  font-family: var(--f-display);
  font-size: 1.8rem;
  margin-top: 16px;
}
.prod-unit {
  font-family: var(--f-body);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.5;
}

/* ─── OVERLAY CARD (for collection grids) ────────── */
.ov-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.ov-card img {
  transition: transform 0.9s var(--ease);
  transform: translateY(var(--py, 0px)) scale(1.03);
  will-change: transform;
}
.ov-card:hover img {
  transform: translateY(var(--py, 0px)) scale(1.07);
}
.ov-card-layer {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
}
.ov-eye {
  font-family: var(--f-body);
  font-size: 0.66rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 6px;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.55);
}
.ov-name {
  font-family: var(--f-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 14px;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.6);
}
.ov-cta {
  font-family: var(--f-body);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  gap: 10px;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.55);
  transition:
    gap 0.3s,
    color 0.3s;
}
.ov-cta::after {
  content: "→";
}
.ov-card:hover .ov-cta {
  gap: 16px;
  color: var(--white);
}

/* ─── HORIZONTAL RULE ─────────────────────────────── */
.rule {
  width: 100%;
  height: 1px;
  background: rgba(12, 54, 123, 0.08);
}
.rule-w {
  background: rgba(255, 255, 255, 0.1);
}
.rule-short {
  width: 56px;
  height: 1px;
  background: var(--blue);
  opacity: 0.2;
}
.rule-short-w {
  background: var(--white);
  opacity: 0.25;
}

/* ─── DETAIL GRID ─────────────────────────────────── */
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.detail-item {
  border-top: 1px solid rgba(12, 54, 123, 0.1);
  padding-top: 14px;
}
.detail-item-w {
  border-top-color: rgba(255, 255, 255, 0.12);
}
.detail-lbl {
  font-family: var(--f-body);
  font-size: 0.66rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  opacity: 0.42;
  margin-bottom: 5px;
}
.detail-val {
  font-family: var(--f-display);
  font-size: 1.3rem;
}

/* ─── TAGS ────────────────────────────────────────── */
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.tag {
  font-family: var(--f-body);
  font-size: 0.67rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 12px;
  border: 1px solid rgba(12, 54, 123, 0.2);
}
.tag-w {
  border-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.6);
}

/* ─── PILL BADGE ──────────────────────────────────── */
.badge {
  font-family: var(--f-body);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 10px;
  border: 1px solid rgba(12, 54, 123, 0.25);
  display: inline-block;
}
.badge-b {
  border-color: rgba(12, 54, 123, 0.25);
  color: rgba(12, 54, 123, 0.6);
}
.badge-w {
  border-color: rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.55);
}

/* ─── PRICE ───────────────────────────────────────── */
.price {
  font-family: var(--f-display);
  font-size: 2rem;
  font-weight: 400;
}
.price-lg {
  font-size: 2.8rem;
}
.price-sm {
  font-size: 1.5rem;
}

/* ─── SIZE TABLE ──────────────────────────────────── */
.sz-tbl {
  border-collapse: collapse;
  width: 100%;
  margin: 24px 0;
}
.sz-tbl td {
  font-family: var(--f-body);
  font-size: 0.9rem;
  padding: 11px 0;
  border-bottom: 1px solid rgba(12, 54, 123, 0.07);
}
.sz-tbl td:first-child {
  font-style: italic;
  opacity: 0.55;
}
.sz-tbl td:last-child {
  font-family: var(--f-display);
  font-size: 1.35rem;
  text-align: right;
}

/* ─── FORMS ───────────────────────────────────────── */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.fg {
  margin-bottom: 18px;
}
.fg label {
  display: block;
  font-family: var(--f-body);
  font-size: 0.67rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 7px;
}
.fg-b label {
  color: rgba(255, 255, 255, 0.45);
}
.fg input,
.fg select,
.fg textarea {
  width: 100%;
  background: transparent;
  padding: 12px 15px;
  font-family: var(--f-body);
  font-size: 0.94rem;
  outline: none;
  transition: border-color 0.3s;
  appearance: none;
}
.fg-b input,
.fg-b select,
.fg-b textarea {
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--white);
}
.fg-b input::placeholder,
.fg-b textarea::placeholder {
  color: rgba(255, 255, 255, 0.28);
}
.fg-b select option {
  background: var(--blue);
  color: var(--white);
}
.fg-b input:focus,
.fg-b select:focus,
.fg-b textarea:focus {
  border-color: rgba(255, 255, 255, 0.45);
}
.fg-w input,
.fg-w select,
.fg-w textarea {
  border: 1px solid rgba(12, 54, 123, 0.18);
  color: var(--blue);
}
.fg-w input::placeholder,
.fg-w textarea::placeholder {
  color: rgba(12, 54, 123, 0.3);
}
.fg-w input:focus,
.fg-w select:focus,
.fg-w textarea:focus {
  border-color: rgba(12, 54, 123, 0.5);
}
.fg textarea {
  resize: none;
  height: 80px;
}

/* ─── CHAPTER CARD ────────────────────────────────── */
.ch-card {
  background: var(--blue);
  padding: 36px 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 11px;
  transition: background 0.35s;
}
.ch-card:hover {
  background: rgba(255, 255, 255, 0.06);
}
.ch-num {
  font-family: var(--f-display);
  font-size: 3rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.11);
  line-height: 1;
}
.ch-eye {
  font-family: var(--f-body);
  font-size: 0.63rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
}
.ch-name {
  font-family: var(--f-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
}
.ch-fl {
  font-family: var(--f-body);
  font-style: italic;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.5);
}
.ch-quote {
  font-family: var(--f-body);
  font-style: italic;
  font-size: 0.82rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.4);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 12px;
}
.ch-price {
  font-family: var(--f-display);
  font-size: 1.45rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: auto;
}
.ch-badge {
  align-self: flex-start;
  font-family: var(--f-body);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.45);
}

/* ─── EVENT CARD ──────────────────────────────────── */
.event-box {
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 36px;
}
.event-box-h {
  font-family: var(--f-display);
  font-size: 1.7rem;
  color: var(--white);
  margin-bottom: 10px;
}
.event-box-t {
  font-family: var(--f-body);
  font-size: 0.88rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.52);
  margin-bottom: 26px;
}
.event-seats {
  font-family: var(--f-body);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  text-align: center;
  margin-top: 14px;
}

/* ─── PAST EDITION BLOCK ──────────────────────────── */
.edition {
  border-top: 1px solid rgba(12, 54, 123, 0.1);
  padding-top: 26px;
}
.edition-b {
  border-top-color: rgba(255, 255, 255, 0.1);
}
.edition-lbl {
  font-family: var(--f-body);
  font-size: 0.66rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  opacity: 0.38;
  margin-bottom: 8px;
}
.edition-name {
  font-family: var(--f-display);
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 12px;
}
.edition-desc {
  font-family: var(--f-body);
  font-size: 0.9rem;
  line-height: 1.78;
  opacity: 0.58;
}

/* ─── SHIPPING BADGE ──────────────────────────────── */
.ship {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-body);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 8px 16px;
}
.ship-w {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.5);
}
.ship-b {
  border: 1px solid rgba(12, 54, 123, 0.2);
  color: rgba(12, 54, 123, 0.55);
}

/* ─── GALLERY GRID ────────────────────────────────── */
.gallery-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.gallery-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.gallery-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
}
.gal-item {
  overflow: hidden;
}
.gal-item img {
  transition: transform 0.8s var(--ease);
}
.gal-item:hover img {
  transform: scale(1.05);
}

/* ─── PHILOSOPHY SECTION ──────────────────────────── */
.phi-center {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}
.phi-rule {
  width: 54px;
  height: 1px;
  background: var(--blue);
  opacity: 0.2;
  margin: 0 auto 44px;
}
.phi-rule-w {
  background: var(--white);
  opacity: 0.25;
}

/* ─── FORM DARK (alias for fg-b forms) ───────────── */
.form-dark .fg label {
  color: rgba(255, 255, 255, 0.45);
}
.form-dark .fg input,
.form-dark .fg select,
.form-dark .fg textarea {
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--white);
}
.form-dark .fg input::placeholder,
.form-dark .fg textarea::placeholder {
  color: rgba(255, 255, 255, 0.28);
}
.form-dark .fg select option {
  background: var(--blue);
  color: var(--white);
}
.form-dark .fg input:focus,
.form-dark .fg select:focus,
.form-dark .fg textarea:focus {
  border-color: rgba(255, 255, 255, 0.45);
}

/* ─── CART UI ────────────────────────────────────── */
.has-cart-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.cart-count-badge {
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-body);
  font-size: 0.62rem;
  line-height: 1;
  background: var(--blue);
  color: var(--white);
  border: 1px solid rgba(12, 54, 123, 0.18);
}
#nav.on-dark .cart-count-badge,
[data-dark] .cart-count-badge {
  background: var(--white);
  color: var(--blue);
  border-color: rgba(255, 255, 255, 0.2);
}
#mob-nav .cart-count-badge {
  margin-left: 8px;
}
.cart-count-badge[hidden] {
  display: none;
}
/* ─── CART DRAWER — slides in from the right on every "Add to Cart" ── */
.cart-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(12, 54, 123, 0.35);
  z-index: 3000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease), visibility 0.3s;
}
.cart-drawer-overlay.open {
  opacity: 1;
  visibility: visible;
}
.cart-drawer {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: min(420px, 92vw);
  background: var(--white);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s var(--ease);
  box-shadow: -24px 0 60px rgba(12, 54, 123, 0.2);
}
.cart-drawer-overlay.open .cart-drawer {
  transform: translateX(0);
}
.cart-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 28px;
  border-bottom: 1px solid rgba(12, 54, 123, 0.08);
}
.cart-drawer-title {
  font-family: var(--f-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--blue);
}
.cart-drawer-close {
  font-family: var(--f-body);
  font-size: 1.6rem;
  line-height: 1;
  color: rgba(12, 54, 123, 0.5);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
}
.cart-drawer-close:hover {
  color: var(--blue);
}
.cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px 28px;
}
.cart-drawer-list {
  display: grid;
  gap: 20px;
}
.cart-drawer-item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 14px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(12, 54, 123, 0.06);
}
.cart-drawer-thumb,
.cart-drawer-suggest-thumb {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  overflow: hidden;
  background: rgba(12, 54, 123, 0.05);
}
.cart-drawer-suggest-thumb {
  width: 48px;
  height: 48px;
}
.cart-drawer-thumb img,
.cart-drawer-suggest-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.cart-drawer-item-name {
  font-family: var(--f-display);
  font-size: 1rem;
  color: var(--blue);
  margin-bottom: 4px;
}
.cart-drawer-item-meta {
  font-family: var(--f-body);
  font-size: 0.78rem;
  color: rgba(12, 54, 123, 0.5);
  margin-bottom: 10px;
}
.cart-drawer-qty {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(12, 54, 123, 0.12);
  padding: 4px 10px;
  width: fit-content;
}
.cart-drawer-qty button {
  font-family: var(--f-display);
  font-size: 1rem;
  color: var(--blue);
  background: none;
  border: none;
  cursor: pointer;
}
.cart-drawer-qty span {
  min-width: 16px;
  text-align: center;
  font-family: var(--f-body);
  font-size: 0.85rem;
  color: var(--blue);
}
.cart-drawer-item-side {
  text-align: right;
}
.cart-drawer-item-price {
  font-family: var(--f-display);
  font-size: 0.98rem;
  color: var(--blue);
  margin-bottom: 6px;
}
.cart-drawer-remove {
  font-family: var(--f-body);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(12, 54, 123, 0.4);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
}
.cart-drawer-remove:hover {
  color: var(--blue);
}
.cart-drawer-empty {
  padding: 30px 0;
  text-align: center;
}
.cart-drawer-empty-title {
  font-family: var(--f-display);
  font-size: 1.3rem;
  color: var(--blue);
  margin-bottom: 8px;
}
.cart-drawer-empty-copy {
  font-family: var(--f-body);
  font-size: 0.9rem;
  color: rgba(12, 54, 123, 0.55);
}
.cart-drawer-suggest {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(12, 54, 123, 0.08);
}
.cart-drawer-suggest-head {
  font-family: var(--f-body);
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(12, 54, 123, 0.4);
  margin-bottom: 16px;
}
.cart-drawer-suggest-list {
  display: grid;
  gap: 14px;
}
.cart-drawer-suggest-item {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 12px;
  align-items: center;
}
.cart-drawer-suggest-name {
  font-family: var(--f-display);
  font-size: 0.9rem;
  color: var(--blue);
}
.cart-drawer-suggest-price {
  font-family: var(--f-body);
  font-size: 0.78rem;
  color: rgba(12, 54, 123, 0.5);
}
.cart-drawer-suggest-add {
  font-family: var(--f-body);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  border: 1px solid rgba(12, 54, 123, 0.25);
  background: none;
  padding: 8px 14px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.cart-drawer-suggest-add:hover {
  background: var(--blue);
  color: var(--white);
}
.cart-drawer-foot {
  padding: 22px 28px 28px;
  border-top: 1px solid rgba(12, 54, 123, 0.08);
}
.cart-drawer-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 18px;
  font-family: var(--f-body);
  color: rgba(12, 54, 123, 0.6);
}
.cart-drawer-total strong {
  font-family: var(--f-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--blue);
}
.cart-drawer-checkout {
  width: 100%;
  justify-content: center;
  text-align: center;
}
body.cart-drawer-locked {
  overflow: hidden;
}
@media (max-width: 480px) {
  .cart-drawer {
    width: 100vw;
  }
}

/* ─── STAT ROW ────────────────────────────────────── */
.stat-row {
  display: flex;
  gap: 0;
  border-top: 1px solid rgba(12, 54, 123, 0.1);
}
.stat-row-w {
  border-color: rgba(255, 255, 255, 0.1);
}
.stat {
  flex: 1;
  padding: 28px 32px;
  border-right: 1px solid rgba(12, 54, 123, 0.08);
}
.stat-w {
  border-right-color: rgba(255, 255, 255, 0.1);
}
.stat:last-child {
  border-right: none;
}
.stat-val {
  font-family: var(--f-display);
  font-size: 2.8rem;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 4px;
}
.stat-lbl {
  font-family: var(--f-body);
  font-size: 0.78rem;
  opacity: 0.5;
}

/* ─── FAQ ─────────────────────────────────────────── */
.faq-item {
  border-bottom: 1px solid rgba(12, 54, 123, 0.09);
}
.faq-q {
  width: 100%;
  text-align: left;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--f-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--blue);
  cursor: pointer;
}
.faq-icon {
  font-size: 1.2rem;
  transition: transform 0.3s;
  color: rgba(12, 54, 123, 0.4);
  flex-shrink: 0;
}
.faq-icon::before {
  content: "+";
  display: block;
  line-height: 1;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
}
.faq-a {
  font-family: var(--f-body);
  font-size: 0.95rem;
  line-height: 1.85;
  opacity: 0.6;
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s var(--ease),
    padding 0.4s;
}
.faq-item.open .faq-a {
  max-height: 300px;
  padding-bottom: 20px;
}

/* ─── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 1100px) {
  :root {
    --px: 40px;
    --py: 96px;
  }
  .split-3 {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-4 {
    grid-template-columns: 1fr 1fr;
  }
  .ft-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}
@media (max-width: 900px) {
  :root {
    --px: 28px;
    --py: 80px;
  }
  #nav {
    padding: 0 28px;
  }
  .nav-center {
    display: none;
  }
  .nav-cta-btn.desktop-only {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .split {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .split-r {
    direction: ltr;
  }
  .split-3 {
    grid-template-columns: 1fr;
  }
  .detail-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-4 {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-3 {
    grid-template-columns: 1fr;
  }
  .stat-row {
    flex-direction: column;
  }
  .stat {
    border-right: none;
    border-bottom: 1px solid rgba(12, 54, 123, 0.08);
  }
  .img-float-br,
  .img-float-bl {
    display: none;
  }
  .ft-top {
    grid-template-columns: 1fr 1fr;
  }
  .ft-bot {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  :root {
    --px: 20px;
    --py: 64px;
  }
  #nav {
    padding: 0 20px;
  }
  .gallery-4,
  .gallery-3,
  .gallery-2 {
    grid-template-columns: 1fr;
  }
  .detail-grid {
    grid-template-columns: 1fr;
  }
  .ft-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .stat-row-w .stat {
    border-bottom-color: rgba(255, 255, 255, 0.1);
  }
}

/* ─── MISC UTILITIES ──────────────────────────────── */
.tc {
  text-align: center;
}
.m0a {
  margin-left: auto;
  margin-right: auto;
}
.mta {
  margin-top: auto;
}
.mb0 {
  margin-bottom: 0px;
}
.mb4 {
  margin-bottom: 4px;
}
.mb8 {
  margin-bottom: 8px;
}
.mb12 {
  margin-bottom: 12px;
}
.mb16 {
  margin-bottom: 16px;
}
.mb20 {
  margin-bottom: 20px;
}
.mb24 {
  margin-bottom: 24px;
}
.mb28 {
  margin-bottom: 28px;
}
.mb32 {
  margin-bottom: 32px;
}
.mb36 {
  margin-bottom: 36px;
}
.mb40 {
  margin-bottom: 40px;
}
.mb48 {
  margin-bottom: 48px;
}
.mb64 {
  margin-bottom: 64px;
}
.mt8 {
  margin-top: 8px;
}
.mt16 {
  margin-top: 16px;
}
.mt24 {
  margin-top: 24px;
}
.mt32 {
  margin-top: 32px;
}
.mt40 {
  margin-top: 40px;
}
.mt48 {
  margin-top: 48px;
}
.mt56 {
  margin-top: 56px;
}
.mt64 {
  margin-top: 64px;
}
.mt80 {
  margin-top: 80px;
}
.mr8 {
  margin-right: 8px;
}
.mr16 {
  margin-right: 16px;
}
.mr24 {
  margin-right: 24px;
}
.pt80 {
  padding-top: 80px;
}
.w-white {
  color: var(--white);
}
.op6 {
  opacity: 0.6;
}
.op5 {
  opacity: 0.5;
}
.op4 {
  opacity: 0.4;
}
