/* ================================================================
   TEQUILAS DE MI TIERRA — v5
   Tipografía: Fraunces (display) + Barlow (cuerpo)
   ================================================================ */

:root {
  /* Colores */
  --bg: #090909;
  --bg2: #0e0e10;
  --bg3: #161618;
  --bg4: #202022;
  --cream: #f4eddc;
  --cream2: #ddd3b7;
  --gold: #c9a64e;
  --gold-l: #e2c26a;
  --gold-d: #8d6c28;
  --gold-grad: linear-gradient(135deg, #c9a64e 0%, #e2c26a 45%, #d4b458 65%, #a07c32 100%);
  --gold-glow: rgba(201, 166, 78, .1);
  --txt: #ede6d5;
  --txt2: #96907f;
  --txt3: #565048;
  --txt4: #302c26;
  --border: rgba(255, 255, 255, .07);
  --border-h: rgba(201, 166, 78, .28);
  --wa: #25d366;

  /* Tipografía */
  --serif: 'Fraunces', Georgia, serif;
  --sans: 'Barlow', system-ui, -apple-system, sans-serif;

  /* Layout */
  --max: 1200px;
  --pad: clamp(18px, 5vw, 48px);
  --gap: clamp(64px, 9vw, 120px);
  --r: 14px;

  /* Easing */
  --ease: cubic-bezier(.4, 0, .2, 1);
  --out: cubic-bezier(.16, 1, .3, 1);
  --spring: cubic-bezier(.34, 1.56, .64, 1);
}

/* ─── RESET ─────────────────────────────── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--bg4) var(--bg);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 1rem;
  background: var(--bg);
  color: var(--txt);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background: var(--gold);
  color: var(--bg);
}

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

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

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

input,
textarea {
  font-family: inherit;
}

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

.sec {
  padding: var(--gap) 0;
}

.sec--alt {
  background: var(--bg2);
}

.oh {
  overflow: hidden;
}

/* ─── SCROLL PROGRESS ───────────────────── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-grad);
  z-index: 1001;
  transition: none;
  pointer-events: none;
}

/* ─── LOADER ────────────────────────────── */
.ld {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  transition: opacity .6s var(--ease), visibility .6s;
}

.ld.done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.ld__img {
  height: 80px;
  width: auto;
  animation: ldPulse 1.6s ease-in-out infinite;
}

@keyframes ldPulse {

  0%,
  100% {
    opacity: .6;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}

.ld__track {
  width: 120px;
  height: 2px;
  background: var(--bg3);
  border-radius: 2px;
  overflow: hidden;
}

.ld__bar {
  width: 0;
  height: 100%;
  background: var(--gold-grad);
  transition: width 1.2s var(--out);
}

.ld.go .ld__bar {
  width: 100%;
}

/* ─── HEADER ────────────────────────────── */
.hdr {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 18px 0;
  transition: padding .45s var(--ease), background .45s var(--ease), border-color .45s;
}

.hdr.scrolled {
  padding: 10px 0;
  background: rgba(9, 9, 9, .93);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  border-bottom: 1px solid var(--border);
}

.hdr__wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.hdr__brand {
  display: block;
  flex-shrink: 0;
  z-index: 101;
}

.hdr__logo {
  height: 52px;
  width: auto;
  transition: height .4s var(--ease);
  filter: drop-shadow(0 2px 12px rgba(0, 0, 0, .5));
}

.hdr.scrolled .hdr__logo {
  height: 40px;
}

.hdr__nav {
  display: flex;
  gap: 2px;
}

.hdr__lnk {
  padding: 8px 13px;
  font-size: .73rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--txt2);
  border-radius: 8px;
  transition: color .25s, background .25s;
  white-space: nowrap;
}

.hdr__lnk:hover {
  color: var(--txt);
}

.hdr__lnk.active {
  color: var(--gold);
  position: relative;
}

.hdr__lnk.active::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 3px;
  background: var(--gold);
  border-radius: 50%;
}

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

.hdr__cart {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--txt2);
  transition: all .25s;
  flex-shrink: 0;
}

.hdr__cart:hover {
  color: var(--gold);
  border-color: var(--gold);
  background: var(--gold-glow);
}

.hdr__badge {
  position: absolute;
  top: -3px;
  right: -3px;
  min-width: 18px;
  height: 18px;
  border-radius: 9px;
  background: var(--gold-grad);
  color: var(--bg);
  font-size: .6rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  transition: transform .2s var(--spring);
}

.hdr__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 12px;
  z-index: 101;
}

.hdr__burger span {
  display: block;
  height: 1.5px;
  background: var(--txt);
  border-radius: 2px;
  transition: all .32s var(--ease);
  transform-origin: center;
}

.hdr__burger span:first-child {
  width: 100%;
}

.hdr__burger span:last-child {
  width: 60%;
  margin-left: auto;
}

.hdr__burger.open span:first-child {
  transform: translateY(3.75px) rotate(45deg);
  width: 100%;
}

.hdr__burger.open span:last-child {
  transform: translateY(-3.75px) rotate(-45deg);
  width: 100%;
  margin: 0;
}

/* ─── MOBILE MENU ───────────────────────── */
.mmenu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(9, 9, 9, .97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .45s var(--ease), visibility .45s;
}

.mmenu.open {
  opacity: 1;
  visibility: visible;
}

.mmenu__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 40px 24px;
  width: 100%;
}

.mmenu__lnk {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 6vw, 2.4rem);
  font-weight: 300;
  color: var(--txt2);
  padding: 8px 20px;
  border-radius: 8px;
  transition: color .25s, transform .25s;
  opacity: 0;
  transform: translateY(18px);
  letter-spacing: -.01em;
}

.mmenu.open .mmenu__lnk {
  opacity: 1;
  transform: none;
}

.mmenu.open .mmenu__lnk:nth-child(1) {
  transition: all .5s .08s var(--out);
}

.mmenu.open .mmenu__lnk:nth-child(2) {
  transition: all .5s .13s var(--out);
}

.mmenu.open .mmenu__lnk:nth-child(3) {
  transition: all .5s .18s var(--out);
}

.mmenu.open .mmenu__lnk:nth-child(4) {
  transition: all .5s .23s var(--out);
}

.mmenu.open .mmenu__lnk:nth-child(5) {
  transition: all .5s .28s var(--out);
}

.mmenu.open .mmenu__lnk:nth-child(6) {
  transition: all .5s .33s var(--out);
}

.mmenu__lnk:hover {
  color: var(--gold);
}

.mmenu__sep {
  width: 36px;
  height: 1px;
  background: var(--border);
  margin: 14px 0;
}

.mmenu__cta {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .5px;
  background: var(--gold-grad);
  color: var(--bg);
  border-radius: 60px;
  opacity: 0;
  transform: translateY(16px);
  transition: all .5s .4s var(--out);
}

.mmenu.open .mmenu__cta {
  opacity: 1;
  transform: none;
}

.mmenu__badge {
  background: rgba(0, 0, 0, .2);
  border-radius: 12px;
  padding: 1px 8px;
  font-size: .72rem;
  font-weight: 700;
}

/* ─── HERO ──────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
}

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  transform: scale(1.06);
  filter: brightness(.65);
}

.hero__ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, .75) 0%,
      rgba(0, 0, 0, .35) 45%,
      rgba(0, 0, 0, .7) 80%,
      rgba(9, 9, 9, 1) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 80px var(--pad) 40px;
  width: 100%;
}

.hero__emblem {
  margin-bottom: 28px;
}

.hero__logo {
  height: 150px;
  width: auto;
  margin: 0 auto;
  filter: drop-shadow(0 8px 40px rgba(0, 0, 0, .7));
}

.hero__divider {
  width: 36px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 28px;
  opacity: .55;
}

.hero__divider>div {
  height: 1px;
}

.hero__h1 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 7vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -.02em;
  margin-bottom: 2px;
}

.hero__h1--accent em {
  font-style: italic;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__sub {
  margin-top: 20px;
  font-size: clamp(.7rem, 1.2vw, .82rem);
  font-weight: 500;
  color: var(--txt2);
  letter-spacing: 4px;
  text-transform: uppercase;
}

.hero__acts {
  margin-top: 36px;
}

.hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 44px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid var(--gold-d);
  color: var(--gold-l);
  border-radius: 60px;
  transition: all .5s var(--ease);
  position: relative;
  overflow: hidden;
}

.hero__btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold-grad);
  opacity: 0;
  transition: opacity .45s;
  border-radius: inherit;
}

.hero__btn:hover {
  color: var(--bg);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201, 166, 78, .22);
}

.hero__btn:hover::before {
  opacity: 1;
}

.hero__btn>* {
  position: relative;
  z-index: 1;
}

.hero__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.hero__scroll span {
  display: block;
  width: 1px;
  height: 32px;
  background: var(--gold);
  opacity: .4;
  animation: heroScroll 2.2s ease-in-out infinite;
}

@keyframes heroScroll {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }

  50% {
    transform: scaleY(1);
    transform-origin: top;
  }

  50.1% {
    transform: scaleY(1);
    transform-origin: bottom;
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

/* ─── MARQUEE ───────────────────────────── */
.marquee {
  overflow: hidden;
  padding: 14px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg2);
}

.marquee__track {
  display: flex;
  align-items: center;
  gap: 28px;
  white-space: nowrap;
  animation: marqueeScroll 38s linear infinite;
  width: max-content;
}

.marquee__track span {
  font-family: var(--serif);
  font-size: .9rem;
  font-weight: 400;
  color: var(--txt3);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.marquee__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  opacity: .45;
  flex-shrink: 0;
}

@keyframes marqueeScroll {
  from {
    transform: translateX(0);
  }

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

/* ─── SEC HEAD ──────────────────────────── */
.sec-head {
  text-align: center;
  margin-bottom: 52px;
}

.sec-head__tag {
  display: inline-block;
  font-size: .65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 5px;
  color: var(--gold);
  margin-bottom: 12px;
}

.sec-head__title {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  font-weight: 300;
  line-height: 1.18;
  color: var(--txt);
  letter-spacing: -.01em;
}

.sec-head__line {
  width: 36px;
  height: 1px;
  background: var(--gold-grad);
  margin: 18px auto 0;
  opacity: .6;
}

/* ─── PRODUCT GRID ──────────────────────── */
.pgrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.pcard {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  transition: transform .55s var(--out), border-color .55s, box-shadow .55s;
}

.pcard:hover {
  transform: translateY(-5px);
  border-color: var(--border-h);
  box-shadow: 0 20px 56px rgba(0, 0, 0, .5), 0 0 0 1px var(--border-h);
}

.pcard__visual {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
}

.pcard__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transition: transform .75s var(--out);
}

.pcard:hover .pcard__img {
  transform: scale(1.04);
}

.pcard__tag {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 4px 12px;
  font-size: .6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 60px;
  background: rgba(9, 9, 9, .7);
  backdrop-filter: blur(10px);
  color: var(--txt2);
  border: 1px solid var(--border);
}

.pcard__tag--gold {
  background: var(--gold-grad);
  color: var(--bg);
  border: none;
  backdrop-filter: none;
}

.pcard__tag--dark {
  background: var(--bg);
  color: var(--gold);
  border-color: var(--gold-d);
}

.pcard__info {
  padding: 20px;
}

.pcard__cat {
  font-size: .62rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--gold);
}

.pcard__name {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--txt);
  margin: 5px 0 7px;
  line-height: 1.25;
}

.pcard__desc {
  font-size: .82rem;
  color: var(--txt3);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pcard__bar {
  height: 1px;
  background: var(--border);
  margin: 16px 0;
}

.pcard__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.pcard__price {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--txt);
  flex-shrink: 0;
}

.pcard__price small {
  font-family: var(--sans);
  font-size: .58rem;
  color: var(--txt3);
  margin-left: 2px;
}

.pcard__btn {
  padding: 9px 18px;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--gold-grad);
  border-radius: 60px;
  white-space: nowrap;
  transition: transform .25s, box-shadow .25s;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.pcard__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 166, 78, .3);
}

.pcard__btn:active {
  transform: translateY(0);
}

/* ─── QUOTE DIVIDER ─────────────────────── */
.divider-quote {
  position: relative;
  padding: 90px 0;
  overflow: hidden;
}

.divider-quote__bg {
  position: absolute;
  inset: 0;
}

.divider-quote__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 50%;
}

.divider-quote__ov {
  position: absolute;
  inset: 0;
  background: rgba(9, 9, 9, .83);
}

.divider-quote__text {
  position: relative;
  z-index: 1;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 3vw, 2rem);
  font-weight: 300;
  font-style: italic;
  text-align: center;
  color: var(--cream2);
  line-height: 1.65;
  max-width: 600px;
  margin: 0 auto;
  padding: 0 var(--pad);
}

.divider-quote__mark {
  display: block;
  font-size: 3.5rem;
  line-height: 1;
  color: var(--gold);
  opacity: .45;
  margin-bottom: -12px;
  font-style: normal;
}

/* ─── ARTESANÍAS ────────────────────────── */
.art-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}

.artcard {
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, rgba(22, 22, 24, 0.4) 0%, rgba(14, 14, 16, 0.8) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: calc(var(--r) * 1.2);
  overflow: hidden;
  position: relative;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.6s var(--out), border-color 0.6s;
}

.artcard::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 60%;
  background: radial-gradient(circle at 50% 0%, var(--gold-glow) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.6s;
  pointer-events: none;
  z-index: 1;
}

.artcard:hover {
  border-color: var(--gold-d);
  transform: translateY(-8px);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.5), 0 0 0 1px var(--border-h);
}

.artcard:hover::before {
  opacity: 1;
}

.artcard__media {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
}

.artcard__media::after {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: inset 0 -40px 40px -20px var(--bg2);
  pointer-events: none;
}

.artcard__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1), filter 1.2s;
  filter: brightness(0.9);
}

.artcard:hover .artcard__img {
  transform: scale(1.08);
  filter: brightness(1.05);
}

.artcard__body {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  position: relative;
  z-index: 2;
}

.artcard__eyebrow {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 12px;
}

.artcard__name {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--txt);
  margin-bottom: 14px;
  font-weight: 400;
  line-height: 1.25;
}

.artcard__text {
  font-size: 0.88rem;
  color: var(--txt3);
  line-height: 1.65;
  margin-bottom: 30px;
  flex-grow: 1;
}

.artcard__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  flex-wrap: wrap;
}

.artcard__price {
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--txt);
}

.artcard__price small {
  font-family: var(--sans);
  font-size: 0.65rem;
  color: var(--txt3);
}

.artcard--placeholder {
  grid-template-columns: 1fr;
  border-style: dashed;
}

.artcard__empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  gap: 12px;
  color: var(--txt4);
}

.artcard__plus {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px dashed var(--txt4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 200;
}

.artcard__empty span {
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: 3px;
}

/* ─── FACTORY SECTION ───────────────────── */
.fsec {
  padding: var(--gap) 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%);
}

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

.fsec__content {
  max-width: 540px;
}

.fsec__p {
  font-size: 1rem;
  color: var(--txt2);
  line-height: 1.85;
  margin: 26px 0 36px;
}

.fsec__feats {
  display: grid;
  gap: 24px;
}

.fsec__feat {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.fsec__icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gold-glow);
  border: 1px solid var(--border-h);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1rem;
  flex-shrink: 0;
}

.fsec__feat strong {
  display: block;
  font-size: .92rem;
  color: var(--txt);
  margin-bottom: 3px;
  font-weight: 600;
}

.fsec__feat p {
  font-size: .82rem;
  color: var(--txt3);
  line-height: 1.6;
}

.fsec__visual {
  position: relative;
}

.fsec__img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--r);
  filter: brightness(.8);
  border: 1px solid var(--border);
}

.fsec__badge {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  background: var(--gold-grad);
  color: var(--bg);
  padding: 10px 18px;
  border-radius: 60px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .66rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 10px 28px rgba(201, 166, 78, .4);
}

/* ─── ABOUT ─────────────────────────────── */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-layout__media {
  position: relative;
}

.about-layout__frame {
  border-radius: var(--r);
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

.about-layout__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.about-layout__accent {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 90px;
  height: 90px;
  border: 1px solid var(--gold-d);
  border-radius: var(--r);
  opacity: .25;
  z-index: -1;
}

.about-layout__content .sec-head__tag,
.about-layout__content .sec-head__title {
  text-align: left;
}

.about-layout__p {
  font-size: .95rem;
  color: var(--txt2);
  line-height: 1.9;
  margin: 24px 0 30px;
}

.about-feats {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.afeat {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: border-color .25s, background .25s;
}

.afeat:hover {
  border-color: var(--border-h);
  background: var(--gold-glow);
}

.afeat__num {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--gold);
  opacity: .5;
  flex-shrink: 0;
  margin-top: 1px;
}

.afeat strong {
  display: block;
  font-size: .88rem;
  color: var(--txt);
  font-weight: 600;
  margin-bottom: 2px;
}

.afeat small {
  font-size: .75rem;
  color: var(--txt3);
}

/* ─── LOCATION ──────────────────────────── */
.loc-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.loc-map {
  border-radius: var(--r);
  overflow: hidden;
  min-height: 360px;
  border: 1px solid var(--border);
  position: relative;
  background: var(--bg3);
}

.loc-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.loc-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.loc-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 13px;
  transition: border-color .25s, background .25s;
  color: var(--txt2);
}

.loc-card:hover {
  border-color: var(--border-h);
  background: var(--gold-glow);
}

.loc-card svg {
  flex-shrink: 0;
  color: var(--gold);
}

.loc-card strong {
  display: block;
  font-size: .88rem;
  color: var(--txt);
  margin-bottom: 2px;
  font-weight: 600;
}

.loc-card span {
  font-size: .78rem;
  color: var(--txt3);
}

.loc-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--bg);
  background: var(--gold-grad);
  border-radius: 60px;
  align-self: flex-start;
  transition: transform .25s, box-shadow .25s;
}

.loc-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(201, 166, 78, .3);
}

/* ─── CONTACT ───────────────────────────── */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 32px;
  align-items: start;
}

.contact-left {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ccard {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 20px;
  border: 1px solid var(--border);
  border-radius: var(--r);
  transition: border-color .25s, background .25s;
  color: var(--txt2);
}

.ccard:hover {
  border-color: var(--border-h);
  background: var(--gold-glow);
}

.ccard--wa svg {
  color: var(--wa);
}

.ccard--wa:hover {
  border-color: var(--wa);
  background: rgba(37, 211, 102, .06);
}

.ccard strong {
  display: block;
  font-size: .95rem;
  color: var(--txt);
  margin-bottom: 3px;
  font-weight: 600;
}

.ccard span {
  font-size: .8rem;
  color: var(--txt3);
}

.cform {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 32px;
}

.cfield {
  position: relative;
  margin-bottom: 24px;
}

.cfield:last-of-type {
  margin-bottom: 28px;
}

.cfield input,
.cfield textarea {
  width: 100%;
  padding: 14px 0 10px;
  background: none;
  border: none;
  border-bottom: 1px solid var(--border);
  color: var(--txt);
  font-size: .9rem;
  outline: none;
  transition: border-color .25s;
  -webkit-appearance: none;
  border-radius: 0;
}

.cfield textarea {
  resize: vertical;
  min-height: 60px;
}

.cfield input:focus,
.cfield textarea:focus {
  border-color: var(--gold);
}

.cfield label {
  position: absolute;
  top: 14px;
  left: 0;
  font-size: .82rem;
  color: var(--txt4);
  font-weight: 400;
  transition: all .25s var(--ease);
  pointer-events: none;
}

.cfield input:focus~label,
.cfield input:not(:placeholder-shown)~label,
.cfield textarea:focus~label,
.cfield textarea:not(:placeholder-shown)~label {
  top: -6px;
  font-size: .6rem;
  color: var(--gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.cfield::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold-grad);
  transition: width .5s var(--out);
}

.cfield:focus-within::after {
  width: 100%;
}

.cform__submit {
  width: 100%;
  padding: 15px;
  font-size: .82rem;
  font-weight: 600;
  background: var(--gold-grad);
  color: var(--bg);
  border-radius: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform .25s, box-shadow .25s;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.cform__submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201, 166, 78, .25);
}

.cform__submit:active {
  transform: translateY(0);
}

/* ─── FOOTER ────────────────────────────── */
.ft {
  background: var(--bg2);
  border-top: 1px solid var(--border);
}

.ft__top {
  padding: 52px 0 36px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
}

.ft__brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ft__logo {
  height: 80px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 14px rgba(0, 0, 0, .4));
}

.ft__tagline {
  font-size: .85rem;
  color: var(--txt2);
  font-style: italic;
  max-width: 260px;
  line-height: 1.55;
  opacity: .8;
}

.ft__col h4 {
  font-family: var(--serif);
  font-size: .88rem;
  color: var(--gold);
  margin-bottom: 14px;
  font-weight: 400;
}

.ft__col a {
  display: block;
  font-size: .8rem;
  color: var(--txt3);
  padding: 4px 0;
  transition: color .25s;
}

.ft__col a:hover {
  color: var(--gold);
}

.ft__bot {
  padding: 20px 0;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.ft__bot p {
  font-size: .7rem;
  color: var(--txt4);
}

.ft__warn {
  font-style: italic;
}

/* ─── WA FLOAT ──────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 82px;
  right: 20px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--wa);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 91;
  box-shadow: 0 4px 20px rgba(37, 211, 102, .35);
  transition: transform .3s, box-shadow .3s;
  animation: waPulse 3.5s ease-in-out infinite;
}

.wa-float:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, .5);
}

@keyframes waPulse {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, .35);
  }

  50% {
    box-shadow: 0 4px 34px rgba(37, 211, 102, .55);
  }
}

/* ─── BACK TO TOP ───────────────────────── */
.btt {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--bg3);
  border: 1px solid var(--border);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 90;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all .4s var(--ease);
}

.btt.vis {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.btt:hover {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}

/* ─── TOAST ─────────────────────────────── */
.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(60px);
  padding: 12px 26px;
  background: var(--bg3);
  border: 1px solid var(--border-h);
  border-radius: 60px;
  font-size: .82rem;
  font-weight: 500;
  color: var(--txt);
  z-index: 9000;
  opacity: 0;
  transition: all .45s var(--out);
  pointer-events: none;
  white-space: nowrap;
  box-shadow: 0 10px 36px rgba(0, 0, 0, .5);
}

.toast.vis {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ─── CART SIDEBAR ──────────────────────── */
.cart-ov {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s, visibility .4s;
}

.cart-ov.open {
  opacity: 1;
  visibility: visible;
}

.csb {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 400px;
  background: var(--bg2);
  border-left: 1px solid var(--border);
  z-index: 999;
  transform: translateX(100%);
  transition: transform .5s var(--out);
  display: flex;
  flex-direction: column;
  box-shadow: -12px 0 48px rgba(0, 0, 0, .5);
}

.csb.open {
  transform: translateX(0);
}

.csb__head {
  padding: 20px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  flex-shrink: 0;
}

.csb__head h3 {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 400;
}

.csb__x {
  color: var(--txt3);
  transition: color .2s;
  display: flex;
  padding: 4px;
  border-radius: 8px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.csb__x:hover {
  color: var(--gold);
}

.csb__body {
  flex: 1;
  padding: 18px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overscroll-behavior: contain;
}

.csb__body::-webkit-scrollbar {
  width: 3px;
}

.csb__body::-webkit-scrollbar-thumb {
  background: var(--bg4);
  border-radius: 2px;
}

.cart-empty {
  text-align: center;
  color: var(--txt4);
  margin: auto;
  font-size: .85rem;
  line-height: 1.8;
  padding: 24px;
}

.ci {
  display: flex;
  gap: 12px;
  background: var(--bg3);
  padding: 14px;
  border-radius: 13px;
  border: 1px solid var(--border);
}

.ci__thumb {
  width: 52px;
  height: 70px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

.ci__data {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
  min-width: 0;
}

.ci__name {
  font-size: .85rem;
  color: var(--txt);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ci__price {
  font-size: .75rem;
  color: var(--gold);
}

.ci__row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
}

.ci__qty {
  display: flex;
  align-items: center;
  background: var(--bg4);
  border-radius: 8px;
  overflow: hidden;
}

.ci__qb {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  color: var(--txt2);
  transition: background .2s, color .2s;
  -webkit-tap-highlight-color: transparent;
}

.ci__qb:hover {
  background: var(--gold);
  color: var(--bg);
}

.ci__qv {
  width: 28px;
  text-align: center;
  font-size: .82rem;
  font-weight: 600;
  color: var(--txt);
}

.ci__rm {
  color: var(--txt4);
  transition: color .2s;
  padding: 4px;
  margin-left: auto;
  flex-shrink: 0;
  min-width: 32px;
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-tap-highlight-color: transparent;
}

.ci__rm:hover {
  color: #e05050;
}

.csb__foot {
  padding: 20px 22px;
  border-top: 1px solid var(--border);
  background: var(--bg);
  flex-shrink: 0;
}

.csb__total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.csb__total span {
  font-size: .7rem;
  color: var(--txt3);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
}

.csb__total strong {
  font-family: var(--serif);
  font-size: 1.55rem;
  color: var(--txt);
}

.csb__send {
  width: 100%;
  padding: 14px;
  font-size: .8rem;
  font-weight: 600;
  background: var(--gold-grad);
  color: var(--bg);
  border-radius: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform .25s, box-shadow .25s;
  -webkit-tap-highlight-color: transparent;
}

.csb__send:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(201, 166, 78, .3);
}

.csb__send:disabled {
  opacity: .35;
  cursor: not-allowed;
  pointer-events: none;
}

.csb__clear {
  width: 100%;
  padding: 10px;
  margin-top: 8px;
  font-size: .72rem;
  color: var(--txt3);
  text-align: center;
  transition: color .2s;
  -webkit-tap-highlight-color: transparent;
}

.csb__clear:hover {
  color: #e05050;
}

/* ─── DOWNLOAD BUTTON ──────────────────── */
.csb__download {
  width: 100%;
  padding: 12px;
  margin-top: 6px;
  font-size: .78rem;
  font-weight: 600;
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold-d);
  border-radius: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all .3s var(--ease);
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
}

.csb__download:hover {
  background: var(--gold-glow);
  border-color: var(--gold);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201, 166, 78, .2);
}

.csb__download:disabled {
  opacity: .3;
  cursor: not-allowed;
  pointer-events: none;
}

.csb__download.generating {
  pointer-events: none;
  opacity: .6;
}

/* ─── QUOTE IMAGE TEMPLATE ─────────────── */
.qi {
  position: fixed;
  left: -9999px;
  top: 0;
  width: 480px;
  padding: 0;
  font-family: 'Barlow', system-ui, -apple-system, sans-serif;
  background: #0a0a0a;
  color: #ede6d5;
  z-index: -1;
  pointer-events: none;
}

.qi__header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 32px 32px 0;
}

.qi__logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 8px;
}

.qi__brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.qi__brand-name {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: #f4eddc;
  letter-spacing: -.01em;
}

.qi__brand-sub {
  font-size: .65rem;
  color: #96907f;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
}

.qi__divider {
  height: 1px;
  background: rgba(255, 255, 255, .07);
  margin: 20px 32px;
}

.qi__divider--gold {
  background: linear-gradient(90deg, transparent, #c9a64e, transparent);
  opacity: .5;
  margin: 16px 32px;
}

.qi__title-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0 32px 16px;
}

.qi__title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 300;
  color: #f4eddc;
}

.qi__date {
  font-size: .7rem;
  color: #565048;
  letter-spacing: 1px;
}

.qi__items {
  padding: 0 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.qi__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  background: #161618;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, .05);
}

.qi__item-img {
  width: 44px;
  height: 56px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}

.qi__item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.qi__item-name {
  font-size: .85rem;
  font-weight: 500;
  color: #f4eddc;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.qi__item-detail {
  font-size: .7rem;
  color: #565048;
}

.qi__item-subtotal {
  font-family: 'Fraunces', Georgia, serif;
  font-size: .95rem;
  color: #c9a64e;
  flex-shrink: 0;
  text-align: right;
}

.qi__total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 32px;
  margin-bottom: 20px;
}

.qi__total-row span {
  font-size: .7rem;
  color: #96907f;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
}

.qi__total-row strong {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.6rem;
  color: #f4eddc;
}

.qi__footer {
  padding: 16px 32px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, .05);
  margin-top: 4px;
}

.qi__contact {
  display: flex;
  align-items: center;
  gap: 6px;
}

.qi__contact span {
  font-size: .72rem;
  color: #96907f;
}

.qi__tagline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: .72rem;
  font-style: italic;
  color: #565048;
}

/* ─── ANIMATIONS ────────────────────────── */
.anim-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}

.anim-up[data-d="1"] {
  transition-delay: .12s;
}

.anim-up[data-d="2"] {
  transition-delay: .26s;
}

.anim-up[data-d="3"] {
  transition-delay: .40s;
}

.anim-up[data-d="4"] {
  transition-delay: .54s;
}

.anim-up.vis {
  opacity: 1;
  transform: none;
}

.anim-r {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .65s var(--out), transform .65s var(--out);
}

.anim-r[data-d="1"] {
  transition-delay: .1s;
}

.anim-r[data-d="2"] {
  transition-delay: .2s;
}

.anim-r[data-d="3"] {
  transition-delay: .3s;
}

.anim-r[data-d="4"] {
  transition-delay: .4s;
}

.anim-r.vis {
  opacity: 1;
  transform: none;
}

/* ─── RESPONSIVE — 1060px ───────────────── */
@media (max-width: 1060px) {
  .fsec__grid {
    gap: 44px;
  }

  .about-layout {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .about-layout__frame {
    max-width: 440px;
    margin: 0 auto;
  }

  .about-layout__content .sec-head__tag,
  .about-layout__content .sec-head__title {
    text-align: center;
  }

  .about-layout__content .sec-head__line {
    margin-left: auto;
  }

  .contact-split {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .loc-row {
    grid-template-columns: 1fr;
  }

  .loc-map {
    min-height: 300px;
  }

  .ft__top {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .art-row {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin: 0 auto;
  }

  .artcard {
    max-width: 560px;
  }
}

/* ─── RESPONSIVE — 768px ────────────────── */
@media (max-width: 768px) {
  .hdr__nav {
    display: none;
  }

  .hdr__burger {
    display: flex;
  }

  .hero__logo {
    height: 120px;
  }

  .hero__content {
    padding-top: 100px;
  }

  .pgrid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  .pcard__visual {
    aspect-ratio: 4 / 3;
  }

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

  .artcard__media {
    aspect-ratio: 16 / 10;
  }

  .artcard--placeholder {
    min-height: 160px;
  }

  .fsec__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .fsec__visual {
    display: none;
  }

  .ft__top {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
    padding-top: 44px;
  }

  .ft__brand {
    align-items: center;
  }

  .ft__logo {
    margin: 0 auto;
  }

  .ft__tagline {
    margin: 0 auto;
  }

  .ft__col {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .ft__bot {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  .wa-float {
    bottom: 72px;
    right: 14px;
    width: 50px;
    height: 50px;
  }

  .btt {
    bottom: 14px;
    right: 14px;
  }

  /* Cart sidebar: bottom sheet on mobile */
  .csb {
    top: auto;
    bottom: 0;
    right: 0;
    left: 0;
    max-width: 100%;
    height: 88svh;
    border-left: none;
    border-top: 1px solid var(--border);
    border-radius: 20px 20px 0 0;
    transform: translateY(100%);
  }

  .csb.open {
    transform: translateY(0);
  }
}

/* ─── RESPONSIVE — 540px ────────────────── */
@media (max-width: 540px) {
  :root {
    --gap: clamp(48px, 9vw, 80px);
  }

  .hero__logo {
    height: 100px;
  }

  .hero__sub {
    letter-spacing: 2.5px;
  }

  .sec-head {
    margin-bottom: 40px;
  }

  .pcard__info {
    padding: 16px;
  }

  .pcard__name {
    font-size: 1.1rem;
  }

  .pcard__visual {
    aspect-ratio: 1 / 1;
  }

  .cform {
    padding: 24px 18px;
  }

  .divider-quote {
    padding: 70px 0;
  }

  .mmenu__lnk {
    font-size: 1.65rem;
  }

  .loc-map {
    min-height: 260px;
  }
}

/* ─── RESPONSIVE — 380px ────────────────── */
@media (max-width: 380px) {
  .hero__btn {
    padding: 13px 32px;
    font-size: .72rem;
  }

  .hdr__logo {
    height: 36px;
  }

  .hdr.scrolled .hdr__logo {
    height: 30px;
  }
}

/* ─── REDUCED MOTION ────────────────────── */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }

  .anim-up,
  .anim-r {
    opacity: 1;
    transform: none;
  }
}

/* ─── LIGHTBOX (IMAGE ZOOM) ──────────────── */
.lb-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(4, 4, 4, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s;
}

.lb-modal.open {
  opacity: 1;
  visibility: visible;
}

.lb-modal__close {
  position: absolute;
  top: 24px;
  right: 24px;
  color: var(--txt3);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  z-index: 3;
}

.lb-modal__close:hover {
  color: var(--gold);
  background: var(--gold-glow);
  border-color: var(--gold);
  transform: scale(1.05);
}

.lb-modal__content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.96) translateY(20px);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.lb-modal.open .lb-modal__content {
  transform: none;
}

.lb-modal__content img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--r);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.pcard__img, .artcard__img {
  cursor: zoom-in;
}