/* =====================================================
   LOCA BODRUM — Luxury Furniture & Interior Design
   Design System
   ===================================================== */

:root {
  /* Palette */
  --ink-900: #0B0D11;
  --ink-800: #0E1014;
  --ink-700: #141A24;
  --ink-600: #1C232F;
  --ink-500: #2A3340;
  --ink-400: #4A5360;
  --line-dark: #20262F;

  --champagne-100: #F0E2C0;
  --champagne-200: #E6CFA0;
  --champagne-300: #D4B576;
  --champagne-400: #C9A66B;   /* primary gold */
  --champagne-500: #B08A4F;
  --bronze: #8B6F47;

  --ivory-50: #FBF8F2;
  --ivory-100: #F4EFE6;
  --ivory-200: #ECE5D6;
  --warm-grey: #8A8273;
  --slate-700: #3C4150;

  --shadow-soft: 0 30px 80px -40px rgba(0,0,0,.45);
  --shadow-card: 0 10px 40px -18px rgba(11,13,17,.35);

  /* Typography */
  --font-display: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-accent: 'Italiana', 'Cormorant Garamond', serif;
  --font-body: 'Manrope', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout */
  --container: 1400px;
  --gutter: clamp(28px, 4.5vw, 56px);
  --section: clamp(80px, 10vw, 160px);
  --radius-xs: 2px;
  --radius-sm: 6px;
  --radius-md: 14px;

  /* Motion */
  --ease-out: cubic-bezier(.16,1,.3,1);
  --ease-soft: cubic-bezier(.7,0,.3,1);
}

/* =========== Reset & Base =========== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-700);
  background: var(--ivory-50);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color .35s var(--ease-out); }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }
p { margin: 0 0 1em; }

::selection { background: var(--champagne-400); color: var(--ink-900); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* =========== Typography =========== */
.display, h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: .005em;
  line-height: 1.05;
  margin: 0 0 .35em;
}
h1 { font-size: clamp(2.5rem, 6.4vw, 5.6rem); }
h2 { font-size: clamp(2rem, 4.2vw, 3.6rem); }
h3 { font-size: clamp(1.4rem, 2.1vw, 1.95rem); }

.h-italic { font-style: italic; color: var(--champagne-400); }
.h-thin { font-weight: 300; }

.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: .42em;
  font-size: 11px;
  font-weight: 500;
  color: var(--champagne-400);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: .8;
}
.eyebrow.centered { justify-content: center; }
.eyebrow.centered::after {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: .8;
}

.lede {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1.5vw, 1.4rem);
  line-height: 1.55;
  font-style: italic;
  color: var(--ink-500);
  font-weight: 400;
}
.text-muted { color: var(--warm-grey); }
.text-gold { color: var(--champagne-400); }

/* =========== Layout =========== */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section { padding: var(--section) 0; }
.section--tight { padding: clamp(60px, 7vw, 110px) 0; }
.grid { display: grid; gap: clamp(20px, 2.4vw, 40px); }

/* =========== Theme: dark / light =========== */
.theme-dark {
  background: var(--ink-800);
  color: var(--ivory-100);
}
.theme-dark .lede,
.theme-dark .text-muted { color: rgba(244,239,230,.66); }
.theme-dark h1, .theme-dark h2, .theme-dark h3 { color: var(--ivory-100); }

.theme-ivory { background: var(--ivory-100); }
.theme-cream { background: var(--ivory-50); }

/* =========== Buttons =========== */
.btn {
  --bg: var(--champagne-400);
  --fg: var(--ink-900);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 30px;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: .28em;
  text-transform: uppercase;
  font-weight: 600;
  background: var(--bg);
  color: var(--fg);
  border: 1px solid transparent;
  transition: all .5s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.25), transparent);
  transform: translateX(-110%);
  transition: transform .8s var(--ease-out);
}
.btn:hover::after { transform: translateX(110%); }
.btn:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -22px rgba(201,166,107,.65); }

.btn--ghost {
  background: transparent;
  color: var(--ivory-100);
  border-color: rgba(244,239,230,.35);
}
.btn--ghost:hover { color: var(--ink-900); background: var(--champagne-400); border-color: var(--champagne-400); }

.btn--dark { background: var(--ink-800); color: var(--ivory-100); }
.btn--dark:hover { background: var(--ink-900); }

.btn--line {
  background: transparent;
  color: var(--ink-800);
  border-color: var(--ink-800);
}
.btn--line:hover { background: var(--ink-800); color: var(--ivory-100); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  letter-spacing: .28em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--champagne-400);
  position: relative;
}
.link-arrow::after {
  content: "→";
  transition: transform .4s var(--ease-out);
}
.link-arrow:hover::after { transform: translateX(8px); }

/* =========== Navbar =========== */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 80;
  padding: 12px 0;
  transition: padding .4s var(--ease-out), background .4s var(--ease-out), backdrop-filter .4s var(--ease-out);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.nav__brand img { height: clamp(54px, 6.3vw, 120px); transition: height .4s var(--ease-out); }
.nav__menu {
  display: flex;
  gap: clamp(18px, 2.4vw, 38px);
  margin-left: auto;
}
.nav__menu a {
  position: relative;
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ivory-100);
  padding: 8px 0;
}
.nav__menu a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 2px;
  height: 1px;
  background: var(--champagne-400);
  transform-origin: left;
  transform: scaleX(0);
  transition: transform .45s var(--ease-out);
}
.nav__menu a:hover { color: var(--champagne-300); }
.nav__menu a:hover::after,
.nav__menu a.active::after { transform: scaleX(1); }

.nav__cta {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 18px;
}
.nav__lang {
  font-size: 11px;
  letter-spacing: .3em;
  color: rgba(244,239,230,.7);
}
.nav__lang strong { color: var(--champagne-400); font-weight: 600; }

.nav--scrolled {
  background: rgba(11,13,17,.85);
  backdrop-filter: blur(16px) saturate(140%);
  padding: 8px 0;
  border-bottom: 1px solid rgba(201,166,107,.15);
}
.nav--scrolled .nav__brand img { height: clamp(42px, 5vw, 92px); }

/* light page variant */
.nav--light .nav__menu a,
.nav--light .nav__lang { color: var(--ink-800); }
.nav--light .nav__lang strong { color: var(--champagne-500); }
.nav--light.nav--scrolled { background: rgba(251,248,242,.92); }

/* Mobile burger */
.nav__burger {
  display: none;
  width: 32px; height: 32px;
  position: relative;
  justify-self: end;
}
.nav__burger span {
  position: absolute;
  left: 4px; right: 4px;
  height: 1.5px;
  background: var(--ivory-100);
  transition: all .35s var(--ease-out);
}
.nav__burger span:nth-child(1) { top: 11px; }
.nav__burger span:nth-child(2) { top: 20px; }
.nav--light .nav__burger span { background: var(--ink-800); }
body.menu-open .nav__burger span:nth-child(1) { transform: translateY(4.5px) rotate(45deg); }
body.menu-open .nav__burger span:nth-child(2) { transform: translateY(-4.5px) rotate(-45deg); }

/* Mobile menu drawer */
.nav__drawer {
  position: fixed;
  inset: 0;
  background: var(--ink-900);
  z-index: 75;
  opacity: 0;
  pointer-events: none;
  transition: opacity .5s var(--ease-out);
  padding: 120px var(--gutter) 60px;
  overflow-y: auto;
}
body.menu-open .nav__drawer { opacity: 1; pointer-events: auto; }
.nav__drawer ul { display: flex; flex-direction: column; gap: 14px; }
.nav__drawer a {
  font-family: var(--font-display);
  font-size: clamp(2rem, 7vw, 3rem);
  color: var(--ivory-100);
  letter-spacing: .02em;
  transition: color .4s var(--ease-out), transform .4s var(--ease-out);
  display: inline-block;
}
.nav__drawer a:hover { color: var(--champagne-400); transform: translateX(10px); }
.nav__drawer .small {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(244,239,230,.65);
  letter-spacing: .04em;
  text-transform: none;
}

@media (max-width: 1024px) {
  .nav__menu, .nav__cta { display: none; }
  .nav__burger { display: block; }
}
@media (max-width: 560px) {
  .nav__brand img { height: 48px; }
  .nav--scrolled .nav__brand img { height: 38px; }
}

/* =========== Hero =========== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--ivory-100);
  background: var(--ink-900);
}
.hero__media,
.hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero__media::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(11,13,17,.55) 0%, rgba(11,13,17,.15) 30%, rgba(11,13,17,.85) 100%),
    linear-gradient(90deg, rgba(11,13,17,.35), transparent 60%);
  z-index: 1;
}
.hero__inner {
  position: relative;
  z-index: 2;
  padding: 160px 0 70px;
  width: 100%;
}
.hero__title {
  font-size: clamp(2.2rem, 6vw, 5.6rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -.005em;
  margin: 18px 0 22px;
  max-width: none;
}
.hero__title .line {
  display: block;
  white-space: nowrap;
}
.hero__title em {
  font-family: var(--font-accent);
  font-style: normal;
  color: var(--champagne-300);
  display: block;
}
.hero__sub {
  max-width: 48ch;
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  color: rgba(244,239,230,.78);
  margin: 0 0 40px;
  line-height: 1.65;
}
.hero__actions { display: flex; gap: 18px; flex-wrap: wrap; }

.hero__meta {
  position: absolute;
  z-index: 2;
  bottom: 50px;
  right: var(--gutter);
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(244,239,230,.6);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.hero__scroll {
  position: absolute;
  z-index: 2;
  bottom: 40px;
  left: var(--gutter);
  font-size: 10px;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: rgba(244,239,230,.55);
  display: flex; align-items: center; gap: 14px;
}
.hero__scroll::before {
  content: "";
  width: 60px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--champagne-400));
  animation: scrollLine 2.2s var(--ease-out) infinite;
}
@keyframes scrollLine {
  0% { transform: scaleX(.2); transform-origin: left; }
  50% { transform: scaleX(1); transform-origin: left; }
  51% { transform: scaleX(1); transform-origin: right; }
  100% { transform: scaleX(0); transform-origin: right; }
}

/* small page hero */
.page-hero {
  position: relative;
  min-height: 64vh;
  display: grid;
  align-items: end;
  padding: 200px 0 90px;
  color: var(--ivory-100);
  background: var(--ink-900);
  overflow: hidden;
}
.page-hero__media,
.page-hero__media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.page-hero__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,13,17,.55), rgba(11,13,17,.8));
  z-index: 1;
}
.page-hero__inner { position: relative; z-index: 2; }
.page-hero__title { font-size: clamp(2.5rem, 7vw, 5.6rem); margin: 14px 0 14px; }
.page-hero__crumbs {
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(244,239,230,.6);
}
.page-hero__crumbs a:hover { color: var(--champagne-300); }
.page-hero__sub { max-width: 60ch; color: rgba(244,239,230,.7); font-size: 1.05rem; }

/* =========== Reveal animation =========== */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 1s var(--ease-out), transform 1s var(--ease-out); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-stagger > * { opacity: 0; transform: translateY(30px); transition: opacity .9s var(--ease-out), transform .9s var(--ease-out); }
.reveal-stagger.is-visible > * { opacity: 1; transform: none; }
.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: .05s; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: .15s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: .25s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: .35s; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: .45s; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: .55s; }
.reveal-stagger.is-visible > *:nth-child(7) { transition-delay: .65s; }
.reveal-stagger.is-visible > *:nth-child(8) { transition-delay: .75s; }

/* =========== Cards =========== */
.card {
  position: relative;
  overflow: hidden;
  background: var(--ivory-50);
  transition: transform .6s var(--ease-out);
}
.card:hover { transform: translateY(-6px); }
.card__media {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--ink-700);
}
.card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease-out), filter 1s var(--ease-out);
}
.card:hover .card__media img { transform: scale(1.06); filter: brightness(.95); }
.card__badge {
  position: absolute;
  top: 18px; left: 18px;
  background: rgba(11,13,17,.78);
  color: var(--champagne-300);
  padding: 7px 14px;
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
}
.card__body {
  padding: 22px 4px 6px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(11,13,17,.08);
  margin-top: 0;
}
.theme-dark .card__body { border-top-color: rgba(244,239,230,.12); }
.card__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  margin: 0;
  line-height: 1.2;
}
.card__meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--warm-grey);
}
.theme-dark .card__meta { color: rgba(244,239,230,.55); }
.card__icon {
  width: 38px; height: 38px;
  border: 1px solid var(--champagne-400);
  color: var(--champagne-400);
  display: grid; place-items: center;
  border-radius: 50%;
  transition: all .4s var(--ease-out);
}
.card:hover .card__icon {
  background: var(--champagne-400);
  color: var(--ink-900);
  transform: rotate(-45deg);
}

/* =========== Marquee =========== */
.marquee {
  overflow: hidden;
  border-top: 1px solid rgba(244,239,230,.1);
  border-bottom: 1px solid rgba(244,239,230,.1);
  padding: 28px 0;
  background: var(--ink-800);
}
.marquee__track {
  display: flex;
  gap: 80px;
  white-space: nowrap;
  animation: marquee 70s linear infinite;
  will-change: transform;
  transform: translateZ(0);
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  color: rgba(244,239,230,.4);
}
.marquee__track span { display: inline-flex; align-items: center; gap: 80px; }
.marquee__track span::after {
  content: "✦";
  color: var(--champagne-400);
  font-style: normal;
  font-size: .55em;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* =========== Section header =========== */
.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: clamp(40px, 5vw, 80px);
}
.section-head__title h2 { margin-top: 16px; max-width: 14ch; }
.section-head__copy { max-width: 46ch; }
.section-head--center {
  grid-template-columns: 1fr;
  text-align: center;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.section-head--center .section-head__title h2 { margin-left: auto; margin-right: auto; }
@media (max-width: 820px) {
  .section-head { grid-template-columns: 1fr; gap: 24px; }
}

/* =========== Feature grid =========== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(11,13,17,.08);
}
.theme-dark .feature-grid { border-top-color: rgba(244,239,230,.1); }
.feature-grid__item {
  padding: clamp(28px, 4vw, 56px) clamp(20px, 3vw, 40px);
  border-right: 1px solid rgba(11,13,17,.08);
  border-bottom: 1px solid rgba(11,13,17,.08);
  position: relative;
}
.theme-dark .feature-grid__item {
  border-right-color: rgba(244,239,230,.1);
  border-bottom-color: rgba(244,239,230,.1);
}
.feature-grid__item:nth-child(3n) { border-right: none; }
.feature-grid__num {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--champagne-400);
  font-size: 1rem;
  margin-bottom: 18px;
  display: block;
}
.feature-grid__item h3 { font-size: 1.5rem; margin-bottom: 14px; }
.feature-grid__item p { color: var(--warm-grey); font-size: .96rem; }
.theme-dark .feature-grid__item p { color: rgba(244,239,230,.62); }
@media (max-width: 820px) {
  .feature-grid { grid-template-columns: 1fr; }
  .feature-grid__item, .feature-grid__item:nth-child(3n) {
    border-right: none;
  }
}

/* =========== Footer =========== */
.footer {
  background: var(--ink-900);
  color: var(--ivory-100);
  padding: 100px 0 36px;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 70px;
  border-bottom: 1px solid rgba(244,239,230,.1);
}
.footer h4 {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: .3em;
  font-size: 11px;
  color: var(--champagne-400);
  margin: 0 0 24px;
}
.footer ul li { margin-bottom: 12px; }
.footer ul a { color: rgba(244,239,230,.72); font-size: .95rem; }
.footer ul a:hover { color: var(--champagne-300); }
.footer__brand img { height: clamp(72px, 7.7vw, 126px); margin-bottom: 24px; margin-left: -12px; }
.footer__brand p { color: rgba(244,239,230,.6); max-width: 36ch; line-height: 1.7; }

.footer__socials { display: flex; gap: 14px; margin-top: 26px; }
.footer__socials a {
  width: 42px; height: 42px;
  border: 1px solid rgba(244,239,230,.18);
  display: grid; place-items: center;
  border-radius: 50%;
  transition: all .4s var(--ease-out);
  color: var(--ivory-100);
}
.footer__socials a:hover {
  background: var(--champagne-400);
  border-color: var(--champagne-400);
  color: var(--ink-900);
  transform: translateY(-3px);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  font-size: 12px;
  color: rgba(244,239,230,.5);
  letter-spacing: .04em;
  flex-wrap: wrap;
  gap: 14px;
}
.footer__bottom a:hover { color: var(--champagne-300); }
@media (max-width: 820px) {
  .footer__top { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 520px) {
  .footer__top { grid-template-columns: 1fr; }
}

/* =========== Whatsapp floating =========== */
.wa-fab {
  position: fixed;
  z-index: 90;
  bottom: 26px;
  right: 26px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: grid; place-items: center;
  box-shadow: 0 18px 40px -10px rgba(37,211,102,.55), 0 0 0 0 rgba(37,211,102,.4);
  animation: waPulse 2.4s var(--ease-out) infinite;
  transition: transform .35s var(--ease-out);
}
.wa-fab:hover { transform: scale(1.07); }
.wa-fab svg { width: 28px; height: 28px; }
@keyframes waPulse {
  0% { box-shadow: 0 18px 40px -10px rgba(37,211,102,.55), 0 0 0 0 rgba(37,211,102,.45); }
  70% { box-shadow: 0 18px 40px -10px rgba(37,211,102,.55), 0 0 0 22px rgba(37,211,102,0); }
  100% { box-shadow: 0 18px 40px -10px rgba(37,211,102,.55), 0 0 0 0 rgba(37,211,102,0); }
}

/* =========== Utility =========== */
.gold-line {
  width: 60px;
  height: 1px;
  background: var(--champagne-400);
  display: inline-block;
}
.divider-ornament {
  display: flex; align-items: center; gap: 18px;
  justify-content: center;
  color: var(--champagne-400);
  margin: 50px auto;
}
.divider-ornament::before, .divider-ornament::after {
  content: "";
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--champagne-400));
}
.divider-ornament::after {
  background: linear-gradient(-90deg, transparent, var(--champagne-400));
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.split--reverse > :first-child { order: 2; }
@media (max-width: 820px) {
  .split { grid-template-columns: 1fr; }
  .split--reverse > :first-child { order: 0; }
}

.frame-img {
  position: relative;
  display: block;
}
.frame-img::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(201,166,107,.55);
  pointer-events: none;
  transition: inset .6s var(--ease-out);
}
.frame-img:hover::after { inset: 28px; }
.frame-img img { display: block; width: 100%; }

.stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  color: var(--champagne-400);
  line-height: 1;
}
.stat__label {
  font-size: 11px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--warm-grey);
}
.theme-dark .stat__label { color: rgba(244,239,230,.62); }
