/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  --bg:       #0E0B09;
  --bg-2:     #15110E;
  --bg-3:     #1E1813;
  --bg-4:     #241E18;
  --cream:    #F2EBDA;
  --cream-2:  #DDD2BC;
  --cream-3:  #9C8E78;
  --cream-4:  #5C5244;
  --gold:     #C49A5B;
  --gold-2:   #A07840;
  --line:     rgba(242,235,218,.1);
  --line-2:   rgba(242,235,218,.06);

  --serif:    'Cormorant Garamond', Georgia, serif;
  --sans:     'Inter', system-ui, sans-serif;
  --mono:     'JetBrains Mono', monospace;

  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft:   cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  --container: min(1200px, 100% - 3rem);
  --nav-h: 72px;
  --radius: 4px;
  --radius-lg: 8px;
}

/* =============================================================
   2. Reset & base
   ============================================================= */
@media (pointer: fine) {
  * { cursor: none !important; }
}
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  overflow-x: clip;
}
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  background: var(--bg);
  color: var(--cream-2);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
h1, h2, h3, h4 { text-wrap: balance; line-height: 1.05; }
address { font-style: normal; }
::selection { background: var(--gold); color: var(--bg); }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 2px; }

.skip-link {
  position: fixed; top: -100px; left: 1rem;
  padding: .6rem 1rem; background: var(--cream); color: var(--bg);
  z-index: 9999; border-radius: 8px; font-weight: 500; font-size: .875rem;
}
.skip-link:focus { top: 1rem; }

/* =============================================================
   3. Utilities
   ============================================================= */
.container { width: var(--container); margin-inline: auto; }

.section-kicker {
  font-family: var(--mono);
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: .6rem;
}
.section-kicker::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 400;
  color: var(--cream);
  letter-spacing: -.01em;
  line-height: 1.08;
}
.section-title em {
  font-style: italic;
  color: var(--gold);
}

/* =============================================================
   4. Buttons
   ============================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .9rem 2rem;
  font-size: .875rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-weight: 500;
  font-family: var(--mono);
  border-radius: var(--radius);
  transition: all .35s var(--ease-out);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background .3s;
}
.btn:hover::after { background: rgba(255,255,255,.04); }

.btn-primary {
  background: var(--gold);
  color: var(--bg);
  border: 1px solid var(--gold);
}
.btn-primary:hover {
  background: var(--gold-2);
  border-color: var(--gold-2);
  transform: translateY(-1px);
  box-shadow: 0 8px 32px rgba(196,154,91,.25);
}

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid var(--line);
}
.btn-ghost:hover {
  border-color: var(--cream-3);
  color: var(--cream);
  transform: translateY(-1px);
}

.btn-sm { padding: .6rem 1.4rem; font-size: .75rem; }
.btn-lg { padding: 1.1rem 2.6rem; font-size: .9rem; }

/* =============================================================
   5. Nav
   ============================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background .4s var(--ease-soft), backdrop-filter .4s, box-shadow .4s;
}
.nav.is-scrolled {
  background: rgba(14,11,9,.92);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  box-shadow: 0 1px 0 var(--line);
}
.nav-inner {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.nav-logo {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: .08em;
}
.nav-controls {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-left: auto;
}
.nav-section-label {
  font-family: var(--mono);
  font-size: .65rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--cream-4);
  display: none;
}
@media (min-width: 480px) {
  .nav-section-label { display: block; }
}
.nav-burger {
  display: flex;
  align-items: center;
  gap: .7rem;
  padding: .5rem .9rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  transition: background .25s, border-color .25s;
}
.nav-burger:hover {
  background: rgba(242,235,218,.05);
  border-color: var(--cream-4);
}
.burger-text {
  font-family: var(--mono);
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--cream-2);
  transition: color .25s;
}
.nav-burger:hover .burger-text,
.nav-burger.is-open .burger-text { color: var(--cream); }
.burger-icon {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.burger-icon span {
  display: block;
  width: 20px;
  height: 1px;
  background: var(--cream-2);
  transition: all .3s var(--ease-out);
}
.nav-burger.is-open .burger-icon span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-burger.is-open .burger-icon span:nth-child(2) { opacity: 0; }
.nav-burger.is-open .burger-icon span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* =============================================================
   5b. Nav Overlay
   ============================================================= */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(14,11,9,.97);
  backdrop-filter: blur(24px) saturate(120%);
  -webkit-backdrop-filter: blur(24px) saturate(120%);
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s var(--ease-out);
  overflow-y: auto;
}
.nav-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}
.nav-overlay-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  padding: calc(var(--nav-h) + 2.5rem) clamp(1.5rem, 8vw, 6rem) 3rem;
  max-width: 860px;
  margin-inline: auto;
}
.overlay-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.overlay-item {
  border-bottom: 1px solid var(--line-2);
}
.overlay-item:first-child {
  border-top: 1px solid var(--line-2);
}
.overlay-link {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  padding: 1rem 0;
  color: var(--cream-3);
  text-decoration: none;
  transition: color .25s;
  cursor: pointer;
}
.overlay-link:hover,
.overlay-link.is-current { color: var(--cream); }
.overlay-link.is-current .overlay-num { color: var(--gold); }
.overlay-link:hover .overlay-num { color: var(--gold); }
.overlay-num {
  font-family: var(--mono);
  font-size: .62rem;
  letter-spacing: .14em;
  color: var(--cream-4);
  flex-shrink: 0;
  width: 1.8rem;
  transition: color .25s;
}
.overlay-text {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 5.5vw, 3.2rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -.01em;
  transition: transform .3s var(--ease-out);
}
.overlay-link:hover .overlay-text { transform: translateX(10px); }
.overlay-link--cta .overlay-text { color: var(--gold); }
.overlay-arrow {
  font-size: 1.4rem;
  color: var(--gold);
  margin-left: auto;
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity .3s, transform .3s var(--ease-out);
}
.overlay-link--cta:hover .overlay-arrow {
  opacity: 1;
  transform: translateX(0);
}

.nav-overlay.is-open .overlay-item {
  animation: overlayIn .5s var(--ease-out) both;
}
.nav-overlay.is-open .overlay-item:nth-child(1) { animation-delay: .04s; }
.nav-overlay.is-open .overlay-item:nth-child(2) { animation-delay: .09s; }
.nav-overlay.is-open .overlay-item:nth-child(3) { animation-delay: .14s; }
.nav-overlay.is-open .overlay-item:nth-child(4) { animation-delay: .19s; }
.nav-overlay.is-open .overlay-item:nth-child(5) { animation-delay: .24s; }
.nav-overlay.is-open .overlay-item:nth-child(6) { animation-delay: .29s; }
.nav-overlay.is-open .overlay-item:nth-child(7) { animation-delay: .34s; }
.nav-overlay.is-open .overlay-item:nth-child(8) { animation-delay: .39s; }

@keyframes overlayIn {
  from { opacity: 0; transform: translateX(-28px); }
  to { opacity: 1; transform: translateX(0); }
}

.overlay-footer-info {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-2);
  display: flex;
  flex-wrap: wrap;
  gap: .6rem 2rem;
}
.overlay-footer-info address,
.overlay-footer-info a {
  font-family: var(--mono);
  font-size: .66rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cream-4);
  font-style: normal;
}
.overlay-footer-info a { transition: color .25s; }
.overlay-footer-info a:hover { color: var(--gold); }

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

/* Background slideshow */
.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.8s ease, transform 9s ease;
}
.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(14,11,9,.45) 0%, rgba(14,11,9,.22) 45%, rgba(14,11,9,.65) 100%);
}

.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-size: 200px;
}

/* Centered content */
.hero-center {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.4rem;
  padding-inline: 1.5rem;
  padding-top: var(--nav-h);
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--cream-2);
  margin-bottom: .4rem;
  opacity: 0;
  animation: fadeUp .8s var(--ease-out) .2s forwards;
}
.hero-rule {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) .3s forwards;
}
.hero-rule--top { margin-bottom: .6rem; }
.hero-rule--bottom { margin-top: .6rem; }
.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(.8); }
}

.hero-name {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(3.6rem, 16vw, 11rem);
  letter-spacing: .22em;
  line-height: 1;
  color: var(--cream);
  opacity: 0;
  animation: fadeUp 1.1s var(--ease-out) .4s forwards;
}
.hero-name--gold {
  color: var(--gold);
  text-shadow: 0 0 80px rgba(196,154,91,.4), 0 0 200px rgba(196,154,91,.15);
}

.hero-tagline {
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--cream-3);
  opacity: 0;
  animation: fadeUp .9s var(--ease-out) .6s forwards;
}

/* Slide arrows */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(242,235,218,.18);
  background: rgba(14,11,9,.25);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: var(--cream-2);
  opacity: 0;
  transition: background .25s, border-color .25s, color .25s, transform .25s;
  animation: fadeUp .8s var(--ease-out) 1s forwards;
}
.hero-arrow:hover {
  background: rgba(196,154,91,.18);
  border-color: var(--gold);
  color: var(--gold);
}
.hero-arrow--prev { left: clamp(.8rem, 3vw, 2.5rem); }
.hero-arrow--next { right: clamp(.8rem, 3vw, 2.5rem); }
@media (max-width: 640px) { .hero-arrow { display: none; } }

/* Progress bars (auto-fill per slide) */
.hero-progress {
  position: absolute;
  bottom: 1.6rem;
  left: 0;
  right: 0;
  margin-inline: auto;
  z-index: 4;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0;
  width: min(90vw, 640px);
  height: 4.4rem;
  opacity: 0;
  animation: fadeUp .8s var(--ease-out) 1.1s forwards;
}
.hero-progress-track {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 6px;
  background: rgba(242,235,218,.18);
}
.hero-progress-fill {
  position: absolute;
  inset: 0;
  width: 0%;
  background: var(--gold);
  transform-origin: left;
}
.hero-progress-bar {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  height: 100%;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: var(--font-serif, serif);
  font-size: 1.6rem;
  letter-spacing: .08em;
  color: rgba(242,235,218,.45);
  transition: color .3s;
}
.hero-progress-bar.is-active,
.hero-progress-bar.is-done { color: var(--gold); }
.hero-progress-tick {
  display: block;
  width: 1px;
  flex: 1;
  margin-bottom: -1px;
  background: rgba(242,235,218,.35);
  transition: background .3s;
}
.hero-progress-bar.is-active .hero-progress-tick,
.hero-progress-bar.is-done .hero-progress-tick { background: var(--gold); }
.hero-progress-fill {
  animation-play-state: paused;
}
.hero-progress-track .hero-progress-fill.is-running {
  animation: heroProgressFill 5.5s linear forwards;
  animation-play-state: running;
}
@keyframes heroProgressFill {
  from { width: var(--fill-from, 0%); }
  to   { width: var(--fill-to, 100%); }
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
  font-family: var(--mono);
  font-size: .65rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--cream-4);
  opacity: 0;
  animation: fadeUp .7s var(--ease-out) 1.2s forwards;
}
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: .6; transform: scaleY(1); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(.8); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide { transition: opacity 1.8s ease; transform: none !important; }
}

/* =============================================================
   7. About — redesign
   ============================================================= */
.about {
  position: relative;
  padding-block: clamp(5rem, 10vw, 9rem);
  background: var(--bg-2);
  border-top: 1px solid var(--line-2);
  overflow: hidden;
}

/* warm ambient gradient blob */
.about-color-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 55% at 15% 35%, rgba(196,120,50,.13) 0%, transparent 70%),
    radial-gradient(ellipse 50% 45% at 82% 70%, rgba(80,160,180,.08) 0%, transparent 65%);
}

.about-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: start;
}

/* ── LEFT column ── */
.about-left {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.about-title {
  margin-top: .6rem;
}
.about-lead {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--cream-2);
  max-width: 52ch;
}

/* stat pills */
.about-stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}
.stat-pill {
  display: flex;
  flex-direction: column;
  gap: .2rem;
  padding: .8rem 1.3rem;
  background: rgba(196,154,91,.12);
  border: 1px solid rgba(196,154,91,.28);
  border-radius: 100px;
  backdrop-filter: blur(6px);
  opacity: 0;
  transform: translateY(18px) scale(.92);
  transition: opacity .6s var(--ease-out), transform .6s var(--ease-bounce), box-shadow .3s, border-color .3s;
}
.stat-pill.is-visible { opacity: 1; transform: translateY(0) scale(1); }
.about-stats-row .stat-pill:nth-child(1) { transition-delay: 0s; }
.about-stats-row .stat-pill:nth-child(2) { transition-delay: .12s; }
.about-stats-row .stat-pill:nth-child(3) { transition-delay: .24s; }
.stat-pill.is-visible:hover {
  transform: translateY(-3px) scale(1.04);
  border-color: rgba(196,154,91,.5);
  box-shadow: 0 10px 28px rgba(196,154,91,.18);
}
.stat-pill--copper.is-visible:hover { border-color: rgba(220,120,60,.5); box-shadow: 0 10px 28px rgba(220,120,60,.18); }
.stat-pill--teal.is-visible:hover   { border-color: rgba(60,170,180,.5);  box-shadow: 0 10px 28px rgba(60,170,180,.18); }
.stat-pill--copper {
  background: rgba(196,100,50,.14);
  border-color: rgba(220,120,60,.3);
}
.stat-pill--teal {
  background: rgba(60,170,180,.1);
  border-color: rgba(60,170,180,.25);
}
.stat-pill-num {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
}
.stat-pill--copper .stat-pill-num { color: #dc7840; }
.stat-pill--teal   .stat-pill-num { color: #3cb4be; }
.stat-pill-label {
  font-family: var(--mono);
  font-size: .6rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--cream-3);
}

/* value-prop list */
.about-props {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.about-prop {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}
.prop-num {
  flex-shrink: 0;
  font-family: var(--mono);
  font-size: .7rem;
  letter-spacing: .1em;
  color: var(--gold);
  opacity: .6;
  padding-top: .3rem;
  width: 2ch;
}
.prop-body h3 {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: .3rem;
}
.prop-body p {
  font-size: .88rem;
  color: var(--cream-3);
  line-height: 1.65;
}

/* ── RIGHT column: story cards ── */
.about-right { display: flex; flex-direction: column; }

.story-deck {
  display: flex;
  flex-direction: column;
  gap: .9rem;
}

.story-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--bg-3);
  overflow: hidden;
  transition: border-color .35s, box-shadow .35s, transform .35s var(--ease-out);
  /* 3D tilt vars set by JS */
  transform-style: preserve-3d;
  transform: perspective(900px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
  will-change: transform;
}
.story-card:hover {
  border-color: rgba(196,154,91,.3);
  box-shadow: 0 16px 48px rgba(0,0,0,.35), 0 0 0 1px rgba(196,154,91,.1);
}

.story-card-inner { }

/* trigger button resets */
.story-trigger {
  width: 100%;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  text-align: left;
  color: inherit;
}
@media (pointer: fine) {
  .story-trigger { cursor: none; }
}

/* image strip */
.story-img-wrap {
  position: relative;
  overflow: hidden;
  height: 160px;
}
.story-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .65s var(--ease-soft);
  display: block;
}
.story-card:hover .story-img-wrap img { transform: scale(1.06); }
.story-card.is-open .story-img-wrap { height: 200px; }
.story-img-wrap { transition: height .45s var(--ease-out); }

/* category tags */
.story-tag {
  position: absolute;
  top: .8rem;
  left: .8rem;
  font-family: var(--mono);
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .35rem .85rem;
  border-radius: 100px;
  backdrop-filter: blur(8px);
  pointer-events: none;
  box-shadow: 0 4px 14px rgba(0,0,0,.35);
}
.story-tag--sala        { background: rgba(214,170,100,.95); color: #2a1a08; border: 1px solid rgba(255,220,160,.6); }
.story-tag--cocina      { background: rgba(228,96,64,.95);   color: #fff;    border: 1px solid rgba(255,170,140,.55); }
.story-tag--ingredientes{ background: rgba(72,196,116,.95);  color: #0b2414; border: 1px solid rgba(160,255,190,.55); }
.story-tag--experiencia { background: rgba(82,140,236,.95);  color: #fff;    border: 1px solid rgba(170,200,255,.55); }

/* header row */
.story-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.2rem;
}
.story-header h3 {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 500;
  color: var(--cream);
  line-height: 1.35;
}

/* chevron */
.story-chevron {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--bg-2);
  color: var(--gold);
  transition: transform .4s var(--ease-bounce), background .3s, border-color .3s;
}
.story-card.is-open .story-chevron {
  transform: rotate(180deg);
  background: rgba(196,154,91,.12);
  border-color: rgba(196,154,91,.35);
}

/* expandable body */
.story-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s var(--ease-out), padding .35s;
  padding: 0 1.2rem;
}
.story-body[aria-hidden="false"] {
  max-height: 300px;
  padding: 0 1.2rem 1.2rem;
}
.story-body p {
  font-size: .9rem;
  color: var(--cream-2);
  line-height: 1.75;
  border-top: 1px solid var(--line-2);
  padding-top: 1rem;
}

@media (min-width: 960px) {
  .about-inner {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
  }
}
@media (min-width: 1200px) {
  .about-inner { grid-template-columns: 5fr 4fr; }
}

/* =============================================================
   8. Menú
   ============================================================= */
.menu-section {
  padding-block: clamp(5rem, 10vw, 9rem);
  background: var(--bg);
  border-top: 1px solid var(--line-2);
}
.menu-section .container { width: min(1440px, 100% - 4rem); }

.menu-header { margin-bottom: 3.5rem; }
.menu-lead {
  color: var(--cream-3);
  font-size: 1.1rem;
  margin-top: 1.2rem;
  max-width: 60ch;
}

.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-bottom: 3.5rem;
  border-bottom: 1px solid var(--line);
  padding-bottom: 0;
}
.menu-tab {
  font-family: var(--mono);
  font-size: .85rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--cream-4);
  padding: .9rem 1.8rem;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color .25s, border-color .25s;
}
.menu-tab:hover { color: var(--cream-2); }
.menu-tab.is-active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.menu-panels { min-height: 200px; }
.menu-panel { display: none; }
.menu-panel.is-active {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.menu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  padding: 2.2rem 0;
  border-bottom: 1px solid var(--line-2);
  transition: background .2s;
  position: relative;
}
.menu-item::before {
  content: '';
  position: absolute;
  left: -1.5rem;
  right: -1.5rem;
  top: 0;
  bottom: 0;
  background: transparent;
  border-radius: var(--radius);
  transition: background .3s;
  z-index: -1;
}
.menu-item:hover::before { background: rgba(196,154,91,.04); }
.menu-item:last-child { border-bottom: none; }

/* Antipasti thumbnails */
.menu-item--with-photo { align-items: center; }
.menu-item-thumb {
  flex-shrink: 0;
  width: 110px;
  height: 110px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--line-2);
  transition: transform .3s ease, border-color .3s;
}
.menu-item--with-photo:hover .menu-item-thumb {
  transform: scale(1.04);
  border-color: var(--gold);
}
.menu-item-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .4s ease;
}
.menu-item--with-photo:hover .menu-item-thumb img { transform: scale(1.08); }

@media (max-width: 480px) {
  .menu-item-thumb { width: 72px; height: 72px; }
}

.menu-item-info { flex: 1; }
.menu-item-info h3 {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: .5rem;
  transition: color .25s;
}
.menu-item:hover h3 { color: var(--gold); }
.menu-item-info p { font-size: 1rem; color: var(--cream-3); line-height: 1.65; max-width: 60ch; }

.menu-price {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 400;
  color: var(--cream-2);
  white-space: nowrap;
  flex-shrink: 0;
}
.menu-price sup {
  font-size: .7em;
  color: var(--gold);
  vertical-align: super;
  margin-left: 1px;
}

/* =============================================================
   10. Reviews
   ============================================================= */
.reviews {
  padding-block: clamp(5rem, 10vw, 9rem);
  background: var(--bg);
  border-top: 1px solid var(--line-2);
}
.reviews-header { margin-bottom: 3rem; }
.reviews-global {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.2rem;
}
.global-stars { font-size: 1.4rem; color: var(--gold); letter-spacing: .06em; }
.global-score {
  display: flex;
  align-items: baseline;
  gap: .2rem;
}
.score-big {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 400;
  color: var(--cream);
  line-height: 1;
}
.score-denom { color: var(--cream-3); font-size: 1.1rem; }
.score-count { font-size: .85rem; color: var(--cream-3); width: 100%; }

.reviews-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.reviews-icon {
  width: clamp(90px, 12vw, 160px);
  height: auto;
  flex-shrink: 0;
  opacity: .92;
}

/* 3D scroll-snap review carousel */
.reviews-3d-wrap {
  position: relative;
  margin-top: 1rem;
}
.reviews-3d-fade {
  position: absolute;
  top: 0; bottom: 0;
  width: clamp(2rem, 8vw, 8rem);
  pointer-events: none;
  z-index: 2;
}
.reviews-3d-fade--left {
  left: 0;
  background: linear-gradient(to right, var(--bg), transparent);
}
.reviews-3d-fade--right {
  right: 0;
  background: linear-gradient(to left, var(--bg), transparent);
}

.reviews-grid {
  display: flex;
  gap: clamp(1.2rem, 3vw, 2.5rem);
  overflow-x: auto;
  overflow-y: visible;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 2.5rem clamp(1.5rem, 40vw, 38vw) 3rem;
  scrollbar-width: none;
}
.reviews-grid::-webkit-scrollbar { display: none; }

/* Review card styled like a "document" sheet, echoing the review SVG */
.review-card {
  position: relative;
  flex: 0 0 min(86vw, 420px);
  scroll-snap-align: center;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2.4rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 240px;
  justify-content: center;
  will-change: transform, opacity;
  opacity: .45;
  transform: scale(.88);
  transition: border-color .3s, box-shadow .3s, transform .4s var(--ease-out), opacity .4s var(--ease-out);
  /* folded-corner "page" shape */
  clip-path: polygon(0 0, calc(100% - 28px) 0, 100% 28px, 100% 100%, 0 100%);
}
.review-card::before {
  /* folded corner triangle */
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 28px; height: 28px;
  background: linear-gradient(135deg, var(--line-2) 50%, var(--bg-2) 50%);
  border-bottom-left-radius: 3px;
}
.review-card::after {
  /* faux text lines, decorative */
  content: '';
  position: absolute;
  inset: auto 2rem 1.4rem 2rem;
  height: 1px;
  background: var(--line-2);
  box-shadow:
    0 -10px 0 var(--line-2),
    0 -20px 0 var(--line-2);
  opacity: .5;
  pointer-events: none;
}
.review-card.is-center {
  opacity: 1;
  transform: scale(1);
  border-color: rgba(196,154,91,.3);
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
}

/* Star rating: animated draw + glow */
.review-stars {
  display: flex;
  gap: .35rem;
  position: relative;
  z-index: 1;
}
.review-stars .star {
  width: 22px;
  height: 22px;
  stroke: var(--gold);
  stroke-width: 1.5px;
  stroke-linejoin: round;
  fill: var(--gold);
  fill-opacity: 0;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
}
.review-card.stars-animate .star {
  animation:
    starDraw .7s var(--ease-out) forwards,
    starGlow 2.2s ease-in-out 1.1s infinite;
}
.review-card.stars-animate .star:nth-child(1) { animation-delay: 0s, 1.1s; }
.review-card.stars-animate .star:nth-child(2) { animation-delay: .12s, 1.22s; }
.review-card.stars-animate .star:nth-child(3) { animation-delay: .24s, 1.34s; }
.review-card.stars-animate .star:nth-child(4) { animation-delay: .36s, 1.46s; }
.review-card.stars-animate .star:nth-child(5) { animation-delay: .48s, 1.58s; }

@keyframes starDraw {
  0%   { stroke-dashoffset: 1; fill-opacity: 0; }
  65%  { stroke-dashoffset: 0; fill-opacity: 0; }
  100% { stroke-dashoffset: 0; fill-opacity: 1; }
}
@keyframes starGlow {
  0%, 100% { filter: drop-shadow(0 0 0 rgba(196,154,91,0)); }
  50%      { filter: drop-shadow(0 0 6px rgba(196,154,91,.85)); }
}
@media (prefers-reduced-motion: reduce) {
  .review-stars .star { stroke-dasharray: none; stroke-dashoffset: 0; fill-opacity: 1; animation: none !important; }
}

.review-text {
  position: relative;
  z-index: 1;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--cream-2);
  flex: 1;
}
.review-author {
  position: relative;
  z-index: 1;
  font-family: var(--mono);
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
}

/* =============================================================
   12. Location
   ============================================================= */
.location {
  padding-block: clamp(5rem, 10vw, 9rem);
  background: var(--bg);
  border-top: 1px solid var(--line-2);
  position: relative;
}

/* Location intro: planet-like zoom-rotate transition */
.location-intro {
  position: fixed;
  inset: 0;
  z-index: 1500;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.location-intro img {
  width: 90px;
  height: 90px;
  opacity: 0;
  transform: scale(.2) rotate(0deg);
}
.location-intro.is-playing {
  visibility: visible;
  animation: locationIntroBg 1.7s var(--ease-soft) forwards;
}
.location-intro.is-playing img {
  animation: locationIntroSpin 1.7s var(--ease-soft) forwards;
}
@keyframes locationIntroBg {
  0%   { opacity: 1; }
  65%  { opacity: 1; }
  100% { opacity: 0; }
}
@keyframes locationIntroSpin {
  0%   { opacity: 0; transform: scale(.2) rotate(0deg); }
  18%  { opacity: 1; }
  70%  { opacity: 1; transform: scale(14) rotate(620deg); }
  100% { opacity: 0; transform: scale(26) rotate(900deg); }
}
@media (prefers-reduced-motion: reduce) {
  .location-intro.is-playing,
  .location-intro.is-playing img { animation: none; opacity: 0; }
}
.location-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: start;
}
.location-info {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}
.location-address p {
  font-size: 1rem;
  color: var(--cream-2);
  line-height: 1.7;
}
.location-contact {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.contact-link {
  font-family: var(--mono);
  font-size: .85rem;
  color: var(--cream-3);
  transition: color .25s;
}
.contact-link:hover { color: var(--gold); }

.hours-table {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.hours-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.4rem;
  border-bottom: 1px solid var(--line-2);
  background: var(--bg-3);
  transition: background .25s;
}
.hours-row:hover { background: var(--bg-4); }
.hours-row:last-child { border-bottom: none; }
.hours-days {
  font-family: var(--mono);
  font-size: .75rem;
  letter-spacing: .08em;
  color: var(--cream-3);
  text-transform: uppercase;
  flex-shrink: 0;
}
.hours-times {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: .1rem;
  text-align: right;
}
.hours-times span {
  font-size: .85rem;
  color: var(--cream-2);
}
.hours-closed { color: var(--cream-4) !important; }

.location-map {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  height: 400px;
  isolation: isolate;
}
.location-map iframe {
  width: 100%;
  height: 100%;
  display: block;
  filter: saturate(1.35) brightness(.92) contrast(1.08) hue-rotate(-6deg);
}

/* gold frame */
.location-map::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 3;
  border: 2px solid rgba(196,154,91,.45);
  box-shadow: 0 0 18px 1px rgba(196,154,91,.18), inset 0 0 30px rgba(196,154,91,.06);
}

/* unlock wipe overlay */
.location-map::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  transform: scaleY(0);
  transform-origin: top;
  background: linear-gradient(
    to bottom,
    var(--bg) 0%,
    var(--bg) 90%,
    rgba(196,154,91,.9) 95%,
    rgba(196,154,91,0) 100%
  );
}

/* play the unlock animation when this view enters */
.view-section[data-view="ubicacion"].is-entering .location-map::after {
  animation: mapUnveil 1s var(--ease-out) .2s both;
}
.view-section[data-view="ubicacion"].is-entering .location-map::before {
  animation: mapBorderGlow 1.3s var(--ease-out) .1s both;
}

@keyframes mapUnveil {
  0%   { transform: scaleY(1); }
  100% { transform: scaleY(0); }
}
@keyframes mapBorderGlow {
  0%   { border-color: rgba(196,154,91,0);   box-shadow: 0 0 0 0 rgba(196,154,91,0); }
  55%  { border-color: rgba(196,154,91,1);   box-shadow: 0 0 30px 4px rgba(196,154,91,.55), inset 0 0 40px rgba(196,154,91,.12); }
  100% { border-color: rgba(196,154,91,.45); box-shadow: 0 0 18px 1px rgba(196,154,91,.18), inset 0 0 30px rgba(196,154,91,.06); }
}

@media (min-width: 960px) {
  .location-inner { grid-template-columns: 1fr 1fr; align-items: center; }
}

/* =============================================================
   13. Reservas
   ============================================================= */
.reservas {
  padding-block: clamp(5rem, 10vw, 9rem);
  background: var(--bg-2);
  border-top: 1px solid var(--line-2);
  position: relative;
  overflow: hidden;
}
.reservas::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 60%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(196,154,91,.06), transparent 70%);
  pointer-events: none;
}

.reservas-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: start;
}
.reservas-text {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
.reservas-text p {
  font-size: .95rem;
  color: var(--cream-3);
  line-height: 1.7;
  max-width: 44ch;
}
.reservas-text a { color: var(--gold); }
.reservas-text a:hover { text-decoration: underline; }

.reservas-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.form-field label {
  font-family: var(--mono);
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--cream-3);
}
.form-optional { color: var(--cream-4); }
.form-field input,
.form-field select,
.form-field textarea {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--cream);
  font-family: var(--sans);
  font-size: .9rem;
  padding: .85rem 1.1rem;
  transition: border-color .25s, box-shadow .25s;
  outline: none;
  -webkit-appearance: none;
  width: 100%;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--cream-4); }
.form-field select { cursor: pointer; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(196,154,91,.12);
}
.form-field textarea { resize: vertical; min-height: 90px; }
.form-field--full { grid-column: 1 / -1; }

.form-submit {
  position: relative;
  align-self: flex-start;
  min-width: 180px;
  justify-content: center;
}
.form-submit .btn-loading,
.form-submit .btn-success { display: none; }
.form-submit.is-loading .btn-text { display: none; }
.form-submit.is-loading .btn-loading { display: block; }
.form-submit.is-done .btn-text { display: none; }
.form-submit.is-done .btn-success { display: block; }
.form-submit.is-done { background: #2d5a27; border-color: #2d5a27; pointer-events: none; }

.form-legal {
  font-size: .75rem;
  color: var(--cream-4);
}
.form-legal a { color: var(--cream-3); text-decoration: underline; }

@media (min-width: 540px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 960px) {
  .reservas-inner { grid-template-columns: 1fr 1.5fr; align-items: start; }
}

/* =============================================================
   14. Footer
   ============================================================= */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding-top: 5rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--line-2);
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer-logo {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: .08em;
}
.footer-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: .95rem;
  color: var(--cream-3);
  line-height: 1.6;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 2.5rem;
}
.footer-col { display: flex; flex-direction: column; gap: 1rem; }
.footer-col-title {
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
}
.footer-col address { display: flex; flex-direction: column; gap: .3rem; }
.footer-col p,
.footer-col address p { font-size: .875rem; color: var(--cream-3); }
.footer-col a,
.footer-col address a {
  font-size: .875rem;
  color: var(--cream-3);
  transition: color .25s;
  display: block;
}
.footer-col a:hover,
.footer-col address a:hover { color: var(--cream); }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .4rem; }

.footer-social { display: flex; flex-direction: column; gap: .5rem; }
.footer-social a {
  display: flex !important;
  align-items: center;
  gap: .6rem;
  font-size: .82rem !important;
  color: var(--cream-3) !important;
  transition: color .25s !important;
}
.footer-social a:hover { color: var(--gold) !important; }
.footer-social svg { flex-shrink: 0; }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1.5rem;
}
.footer-bottom p { font-size: .78rem; color: var(--cream-4); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: .78rem; color: var(--cream-4); transition: color .25s; }
.footer-legal a:hover { color: var(--cream-3); }

@media (min-width: 960px) {
  .footer-inner { grid-template-columns: 1.5fr 2fr; }
}

/* =============================================================
   15b. View sections
   ============================================================= */
.view-section { display: none; }
.view-section.is-active { display: block; }
.view-section.is-entering {
  animation: viewIn .45s var(--ease-out) forwards;
}
@keyframes viewIn {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

/* =============================================================
   15. Scroll reveals
   ============================================================= */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .75s var(--ease-out), transform .75s var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
/* Safety: elements with data-split never get stuck invisible */
.reveal[data-split] {
  opacity: 1;
  transform: none;
}

/* Stagger siblings */
.review-card:nth-child(2).reveal { transition-delay: .1s; }
.review-card:nth-child(3).reveal { transition-delay: .2s; }
.review-card:nth-child(4).reveal { transition-delay: .3s; }
.review-card:nth-child(5).reveal { transition-delay: .4s; }
.review-card:nth-child(6).reveal { transition-delay: .5s; }

.pillar:nth-child(2).reveal { transition-delay: .1s; }
.pillar:nth-child(3).reveal { transition-delay: .2s; }
.pillar:nth-child(4).reveal { transition-delay: .3s; }

/* =============================================================
   16. Responsive final touches
   ============================================================= */
@media (max-width: 539px) {
  .hero-actions { flex-direction: column; }
  .btn { text-align: center; justify-content: center; }
  .about-pillars { grid-template-columns: 1fr; }
  .about-img-float { display: none; }
  .about-stat { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-mesh { animation: none; }
  .scroll-line { animation: none; }
}

/* =============================================================
   17. Liquid Glass Cursor
   ============================================================= */
#cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  pointer-events: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 32% 32%,
    rgba(255, 255, 255, 0.42) 0%,
    rgba(255, 255, 255, 0.1) 44%,
    rgba(196, 154, 91, 0.09) 100%
  );
  backdrop-filter: blur(5px) saturate(170%);
  -webkit-backdrop-filter: blur(5px) saturate(170%);
  border: 1px solid rgba(255, 255, 255, 0.48);
  box-shadow:
    0 0 0 0.5px rgba(196, 154, 91, 0.22),
    0 4px 20px rgba(0, 0, 0, 0.18),
    inset 0 1.5px 2px rgba(255, 255, 255, 0.38),
    inset 0 -1px 1px rgba(0, 0, 0, 0.12);
  will-change: transform;
  transition:
    width .3s var(--ease-bounce),
    height .3s var(--ease-bounce),
    background .3s,
    border-color .3s,
    box-shadow .3s,
    opacity .2s;
}

#cursor.is-hover {
  width: 40px;
  height: 40px;
  background: radial-gradient(
    circle at 32% 32%,
    rgba(196, 154, 91, 0.44) 0%,
    rgba(196, 154, 91, 0.14) 44%,
    rgba(255, 255, 255, 0.04) 100%
  );
  border-color: rgba(196, 154, 91, 0.72);
  box-shadow:
    0 0 0 0.5px rgba(196, 154, 91, 0.5),
    0 6px 26px rgba(196, 154, 91, 0.22),
    inset 0 1.5px 2px rgba(255, 255, 255, 0.22),
    0 0 18px rgba(196, 154, 91, 0.14);
}

@media (pointer: coarse) {
  #cursor { display: none; }
}
