:root {
  --cream: #f3eadc;
  --ink: #181512;
  --espresso: #231711;
  --amber: #bb7043;
  --sage: #7d8a70;
  --night: #100f11;
  --line: rgba(255, 255, 255, .36);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Outfit", sans-serif;
  background: var(--ink);
  color: #fff;
}
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

/* Landing */
.landing-page { overflow: hidden; }
.split {
  position: relative;
  min-height: 100svh;
  display: flex;
  background: #111;
}
.panel {
  position: relative;
  width: 50%;
  min-height: 100svh;
  overflow: hidden;
  transition: width .7s cubic-bezier(.2,.8,.2,1);
  isolation: isolate;
}
.split:hover .panel { width: 44%; }
.split .panel:hover { width: 56%; }
.panel-bg {
  position: absolute;
  inset: -3%;
  z-index: -2;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  transition: transform 1.1s cubic-bezier(.2,.8,.2,1), filter .7s ease;
}
.panel:hover .panel-bg { transform: scale(1.08); }
.panel-day .panel-bg {
  background-image:
    linear-gradient(120deg, rgba(36,22,13,.06), rgba(36,22,13,.15)),
    url('https://images.pexels.com/photos/20164172/pexels-photo-20164172.jpeg?auto=compress&cs=tinysrgb&w=1800');
}
.panel-night .panel-bg {
  background-image:
    linear-gradient(120deg, rgba(11,8,7,.08), rgba(11,8,7,.18)),
    url('https://images.pexels.com/photos/30658142/pexels-photo-30658142.jpeg?auto=compress&cs=tinysrgb&w=1800');
}
.panel-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to bottom, rgba(0,0,0,.12) 0%, rgba(0,0,0,.08) 38%, rgba(0,0,0,.78) 100%);
  transition: background .45s ease;
}
.panel:hover .panel-shade {
  background: linear-gradient(to bottom, rgba(0,0,0,.05) 0%, rgba(0,0,0,.06) 40%, rgba(0,0,0,.7) 100%);
}
.panel-top {
  position: absolute;
  top: 38px;
  left: 44px;
  right: 44px;
  display: flex;
  justify-content: space-between;
}
.panel-night .panel-top { justify-content: flex-end; }
.eyebrow {
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 600;
  opacity: .88;
}
.panel-content {
  position: absolute;
  left: 44px;
  bottom: 92px;
  width: min(480px, calc(100% - 88px));
}
.panel-content-right { left: auto; right: 44px; text-align: right; }
.panel-number {
  display: block;
  margin-bottom: 14px;
  font-size: 12px;
  letter-spacing: .18em;
  opacity: .72;
}
.panel h2 {
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: clamp(48px, 5.7vw, 92px);
  line-height: .88;
  letter-spacing: -.045em;
  font-weight: 600;
}
.panel h2 em { font-weight: 600; }
.panel p {
  max-width: 360px;
  margin: 24px 0 24px;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255,255,255,.86);
}
.panel-content-right p { margin-left: auto; }
.panel-cta {
  display: inline-flex;
  gap: 16px;
  align-items: center;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .16em;
}
.panel-cta span { transition: transform .3s ease; }
.panel:hover .panel-cta span { transform: translate(4px,-4px); }

.brand-lockup {
  position: absolute;
  z-index: 5;
  top: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: grid;
  place-items: center;
  text-align: center;
  pointer-events: none;
  text-shadow: 0 2px 18px rgba(0,0,0,.28);
}
.brand-mark {
  width: 38px;
  height: 38px;
  margin-bottom: 8px;
  border: 1px solid rgba(255,255,255,.85);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: "Fraunces", serif;
  font-size: 21px;
  font-style: italic;
}
.brand-lockup h1 {
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: clamp(21px, 2.1vw, 34px);
  letter-spacing: .08em;
  white-space: nowrap;
}
.brand-lockup > span {
  margin-top: 4px;
  font-size: 9px;
  letter-spacing: .38em;
  opacity: .88;
}
.landing-footer {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: rgba(255,255,255,.7);
}
.footer-dot { opacity: .48; }

/* Inner pages */
.inner-page { background: var(--cream); color: var(--ink); }
.site-nav {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  height: 84px;
  padding: 0 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  mix-blend-mode: normal;
  transition: background .3s ease, color .3s ease, height .3s ease;
}
.site-nav.scrolled {
  height: 68px;
  background: rgba(20,17,14,.94);
  backdrop-filter: blur(12px);
}
.nav-brand {
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: 23px;
  letter-spacing: .05em;
}
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .14em;
}
.nav-links .nav-switch {
  border: 1px solid rgba(255,255,255,.55);
  padding: 10px 14px;
  border-radius: 999px;
}
.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: end;
  padding: 0 6vw 8vh;
  color: #fff;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to bottom, rgba(0,0,0,.18), rgba(0,0,0,.18) 45%, rgba(0,0,0,.78));
}
.hero-day::before {
  background-image: url('https://images.pexels.com/photos/9818871/pexels-photo-9818871.jpeg?auto=compress&cs=tinysrgb&w=2000');
}
.hero-night::before {
  background-image: url('https://images.pexels.com/photos/31553347/pexels-photo-31553347.jpeg?auto=compress&cs=tinysrgb&w=2000');
}
.hero-copy { max-width: 860px; }
.kicker {
  display: block;
  margin-bottom: 20px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .2em;
}
.hero h1 {
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: clamp(60px, 9vw, 142px);
  line-height: .82;
  letter-spacing: -.05em;
}
.hero p {
  max-width: 590px;
  margin: 28px 0 0;
  font-size: clamp(15px, 1.4vw, 19px);
  line-height: 1.6;
}
.section {
  padding: 110px 8vw;
}
.intro-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 10vw;
  align-items: start;
}
.section-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: #76685c;
}
.display-text {
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: clamp(40px, 5.2vw, 74px);
  line-height: 1;
  letter-spacing: -.035em;
}
.body-copy {
  max-width: 680px;
  margin: 30px 0 0;
  font-size: 16px;
  line-height: 1.8;
  color: #554a42;
}
.menu-strip {
  background: var(--ink);
  color: #fff;
}
.menu-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 54px;
}
.menu-heading .section-label { color: rgba(255,255,255,.55); }
.menu-heading .display-text { max-width: 760px; }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255,255,255,.18);
}
.menu-item {
  min-height: 220px;
  padding: 34px 28px 34px 0;
  border-bottom: 1px solid rgba(255,255,255,.18);
}
.menu-item + .menu-item { padding-left: 28px; border-left: 1px solid rgba(255,255,255,.18); }
.menu-item h3 {
  margin: 0 0 12px;
  font-family: "Fraunces", serif;
  font-size: 28px;
}
.menu-item p { margin: 0; color: rgba(255,255,255,.63); line-height: 1.6; font-size: 13px; }
.menu-item .price { display: block; margin-top: 24px; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; }
.info-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #d9c9b5;
}
.info-cell { padding: 64px 6vw; min-height: 260px; }
.info-cell + .info-cell { border-left: 1px solid rgba(24,21,18,.22); }
.info-cell h3 { margin: 0 0 18px; font-family: "Fraunces", serif; font-size: 30px; }
.info-cell p { margin: 0; line-height: 1.75; color: #5b4c40; }
.cta-band {
  padding: 90px 8vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  background: var(--amber);
  color: #fff;
}
.cta-band h2 { margin: 0; font-family: "Fraunces", serif; font-size: clamp(38px, 5vw, 68px); }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  padding: 16px 24px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .16em;
}
.site-footer {
  padding: 54px 8vw;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  background: #151210;
  color: rgba(255,255,255,.62);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .13em;
}

@media (max-width: 760px) {
  .landing-page { overflow: auto; }
  .split { min-height: 100svh; flex-direction: column; }
  .panel, .split:hover .panel, .split .panel:hover { width: 100%; min-height: 50svh; }
  .panel-top { top: 20px; left: 22px; right: 22px; }
  .panel-night .panel-top { justify-content: flex-start; }
  .panel-content, .panel-content-right {
    left: 22px;
    right: 22px;
    bottom: 24px;
    width: auto;
    text-align: left;
  }
  .panel-content-right p { margin-left: 0; }
  .panel h2 { font-size: clamp(42px, 14vw, 64px); }
  .panel p { display: none; }
  .brand-lockup {
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 12px 18px;
    border-radius: 999px;
    background: rgba(13,11,10,.72);
    backdrop-filter: blur(8px);
  }
  .brand-mark { display: none; }
  .brand-lockup h1 { font-size: 17px; }
  .brand-lockup > span { display: none; }
  .landing-footer { display: none; }
  .eyebrow { font-size: 9px; }

  .site-nav { height: 70px; padding: 0 22px; }
  .nav-links a:not(.nav-switch) { display: none; }
  .nav-brand { font-size: 20px; }
  .hero { min-height: 82svh; padding: 0 24px 60px; }
  .hero h1 { font-size: clamp(58px, 19vw, 94px); }
  .section { padding: 76px 24px; }
  .intro-grid { grid-template-columns: 1fr; gap: 32px; }
  .menu-heading { align-items: start; flex-direction: column; }
  .menu-grid { grid-template-columns: 1fr; }
  .menu-item, .menu-item + .menu-item { padding: 28px 0; border-left: 0; }
  .info-band { grid-template-columns: 1fr; }
  .info-cell { min-height: auto; padding: 42px 24px; }
  .info-cell + .info-cell { border-left: 0; border-top: 1px solid rgba(24,21,18,.22); }
  .cta-band { padding: 64px 24px; flex-direction: column; align-items: start; }
  .site-footer { padding: 38px 24px; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}

/* Expanded experience sections */
.section-tight { padding: 0 4vw 110px; }
.small-display { font-size: clamp(38px, 4.6vw, 68px); }
.text-link {
  display: inline-flex;
  gap: 14px;
  align-items: center;
  margin-top: 30px;
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(24,21,18,.35);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.text-link span { transition: transform .25s ease; }
.text-link:hover span { transform: translate(4px, 4px); }

.editorial-feature {
  min-height: 720px;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  background: #dfcfbb;
}
.editorial-image,
.story-image,
.photo,
.experience-card {
  background-size: cover;
  background-position: center;
}
.editorial-copy {
  padding: 90px 8vw 90px 6vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.image-day-food {
  background-image: linear-gradient(rgba(20,12,8,.06),rgba(20,12,8,.06)), url('https://images.pexels.com/photos/376464/pexels-photo-376464.jpeg?auto=compress&cs=tinysrgb&w=1600');
}
.image-night-cocktail {
  background-image: linear-gradient(rgba(8,5,5,.08),rgba(8,5,5,.22)), url('https://images.pexels.com/photos/338713/pexels-photo-338713.jpeg?auto=compress&cs=tinysrgb&w=1600');
}
.night-feature { background: #241817; color: #fff; }
.night-feature .body-copy { color: rgba(255,255,255,.66); }
.night-feature .section-label { color: #bb9481; }
.night-feature .text-link { border-color: rgba(255,255,255,.34); }

.experience-cards {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 14px;
  background: var(--cream);
}
.experience-card {
  position: relative;
  min-height: 520px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
}
.experience-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to bottom, rgba(0,0,0,.08), rgba(0,0,0,.08) 45%, rgba(0,0,0,.82));
}
.experience-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: inherit;
  transition: transform .7s ease;
}
.experience-card:hover::after { transform: scale(1.035); }
.card-number { font-family: "Fraunces",serif; font-size: 18px; }
.experience-card h3 { margin: 12px 0 12px; font-family: "Fraunces",serif; font-size: clamp(30px,3vw,46px); line-height: 1; }
.experience-card p { margin: 0; max-width: 360px; color: rgba(255,255,255,.77); font-size: 13px; line-height: 1.6; }
.light-label { color: rgba(255,255,255,.65) !important; }
.card-coffee { background-image: url('https://images.pexels.com/photos/312418/pexels-photo-312418.jpeg?auto=compress&cs=tinysrgb&w=1200'); }
.card-bakery { background-image: url('https://images.pexels.com/photos/2135/food-france-morning-breakfast.jpg?auto=compress&cs=tinysrgb&w=1200'); }
.card-brunch { background-image: url('https://images.pexels.com/photos/1099680/pexels-photo-1099680.jpeg?auto=compress&cs=tinysrgb&w=1200'); }
.card-signature { background-image: url('https://images.pexels.com/photos/602750/pexels-photo-602750.jpeg?auto=compress&cs=tinysrgb&w=1200'); }
.card-classics { background-image: url('https://images.pexels.com/photos/1170599/pexels-photo-1170599.jpeg?auto=compress&cs=tinysrgb&w=1200'); }
.card-bites { background-image: url('https://images.pexels.com/photos/1640772/pexels-photo-1640772.jpeg?auto=compress&cs=tinysrgb&w=1200'); }
.night-cards { background: #160f0f; }

.secondary-menu-grid { border-top: 0; }
.secondary-menu-grid .menu-item { border-top: 0; }
.night-menu-strip { background: #110d0d; }

.story-split {
  min-height: 720px;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  background: #eadfcf;
}
.story-copy {
  padding: 90px 6vw 90px 8vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.story-image { min-height: 620px; }
.image-day-space { background-image: url('https://images.pexels.com/photos/262047/pexels-photo-262047.jpeg?auto=compress&cs=tinysrgb&w=1800'); }
.image-night-space { background-image: linear-gradient(rgba(15,8,8,.15),rgba(15,8,8,.2)), url('https://images.pexels.com/photos/1267696/pexels-photo-1267696.jpeg?auto=compress&cs=tinysrgb&w=1800'); }
.story-points { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 9px; }
.story-points span { padding: 10px 14px; border: 1px solid rgba(24,21,18,.22); border-radius: 999px; font-size: 10px; text-transform: uppercase; letter-spacing: .14em; }
.story-night { background: #1b1313; color: #fff; }
.story-night .body-copy { color: rgba(255,255,255,.62); }
.story-night .section-label { color: #ad8b7d; }
.story-night .story-points span { border-color: rgba(255,255,255,.18); }

.gallery-section { background: #f3eadc; }
.gallery-heading { display: flex; justify-content: space-between; gap: 40px; align-items: end; margin-bottom: 48px; }
.gallery-heading .display-text { text-align: right; }
.photo-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr .85fr 1.15fr;
  grid-template-rows: 460px;
  gap: 12px;
}
.photo { min-height: 280px; transition: transform .35s ease, filter .35s ease; }
.photo:hover { transform: translateY(-5px); filter: brightness(1.05); }
.photo-day-1 { background-image: url('https://images.pexels.com/photos/302899/pexels-photo-302899.jpeg?auto=compress&cs=tinysrgb&w=1000'); }
.photo-day-2 { background-image: url('https://images.pexels.com/photos/70497/pexels-photo-70497.jpeg?auto=compress&cs=tinysrgb&w=1000'); }
.photo-day-3 { background-image: url('https://images.pexels.com/photos/2067628/pexels-photo-2067628.jpeg?auto=compress&cs=tinysrgb&w=1000'); }
.photo-day-4 { background-image: url('https://images.pexels.com/photos/376464/pexels-photo-376464.jpeg?auto=compress&cs=tinysrgb&w=1000'); }
.night-gallery { background: #0d0b0c; color: #fff; }
.night-gallery .section-label { color: #a98779; }
.photo-night-1 { background-image: url('https://images.pexels.com/photos/941864/pexels-photo-941864.jpeg?auto=compress&cs=tinysrgb&w=1000'); }
.photo-night-2 { background-image: url('https://images.pexels.com/photos/274192/pexels-photo-274192.jpeg?auto=compress&cs=tinysrgb&w=1000'); }
.photo-night-3 { background-image: url('https://images.pexels.com/photos/1269025/pexels-photo-1269025.jpeg?auto=compress&cs=tinysrgb&w=1000'); }
.photo-night-4 { background-image: url('https://images.pexels.com/photos/1304540/pexels-photo-1304540.jpeg?auto=compress&cs=tinysrgb&w=1000'); }

.quote-band {
  padding: 120px 10vw;
  text-align: center;
  background: #d0a97f;
}
.quote-band p { max-width: 1000px; margin: 0 auto 28px; font-family: "Fraunces",serif; font-size: clamp(38px,6vw,84px); line-height: .98; }
.quote-band span { font-size: 10px; letter-spacing: .2em; text-transform: uppercase; }
.night-quote { background: #5a2d27; color: #fff; }

.event-band {
  padding: 110px 8vw;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 8vw;
  background: #5a2d27;
  color: #fff;
}
.event-title .section-label { color: rgba(255,255,255,.58); }
.event-list article {
  display: grid;
  grid-template-columns: 65px .65fr 1fr;
  gap: 24px;
  align-items: center;
  padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,.24);
}
.event-list article:last-child { border-bottom: 1px solid rgba(255,255,255,.24); }
.event-list span { font-size: 11px; letter-spacing: .18em; }
.event-list h3 { margin: 0; font-family: "Fraunces",serif; font-size: 28px; }
.event-list p { margin: 0; color: rgba(255,255,255,.66); font-size: 13px; line-height: 1.55; }

.cta-label { color: rgba(255,255,255,.66) !important; display: block; margin-bottom: 12px; }
.night-info { background: #c4aa99; }
.night-cta { background: #331f1b; }

@media (max-width: 1020px) {
  .nav-links { gap: 16px; }
  .nav-links a:not(.nav-switch) { display: none; }
  .editorial-feature, .story-split { grid-template-columns: 1fr 1fr; }
  .experience-card { min-height: 430px; }
  .photo-grid { grid-template-columns: repeat(2,1fr); grid-template-rows: 360px 360px; }
  .event-band { grid-template-columns: 1fr; gap: 55px; }
}

@media (max-width: 760px) {
  .section-tight { padding: 0 12px 70px; }
  .editorial-feature, .story-split { grid-template-columns: 1fr; }
  .editorial-image, .story-image { min-height: 58svh; }
  .editorial-copy, .story-copy { padding: 68px 24px; }
  .experience-cards { grid-template-columns: 1fr; gap: 10px; }
  .experience-card { min-height: 72svh; }
  .gallery-heading { align-items: start; flex-direction: column; }
  .gallery-heading .display-text { text-align: left; }
  .photo-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 270px 270px; gap: 8px; }
  .quote-band { padding: 80px 24px; }
  .event-band { padding: 76px 24px; }
  .event-list article { grid-template-columns: 50px 1fr; gap: 14px; }
  .event-list p { grid-column: 2; }
}

/* =========================================================
   MARTINIK'A — identidad visual propia
   Paleta mediterránea contemporánea, distinta de la referencia
   ========================================================= */
:root {
  --cream: #f6f0e4;
  --ink: #24312d;
  --espresso: #2f443c;
  --amber: #df664b;
  --sage: #93a47c;
  --night: #101d2d;
  --navy: #13263a;
  --teal: #2f5f62;
  --coral: #df664b;
  --mustard: #e2b84f;
  --line: rgba(255,255,255,.42);
}

body { background: var(--night); }
.inner-page { background: var(--cream); color: var(--ink); }

/* Portada: contraste de dos universos y tintes propios */
.split { background: #13263a; }
.panel-day .panel-bg {
  background-image:
    linear-gradient(135deg, rgba(70,96,76,.18), rgba(223,102,75,.18)),
    url('https://images.pexels.com/photos/20164172/pexels-photo-20164172.jpeg?auto=compress&cs=tinysrgb&w=1800');
}
.panel-night .panel-bg {
  background-image:
    linear-gradient(135deg, rgba(16,29,45,.32), rgba(47,95,98,.28)),
    url('https://images.pexels.com/photos/30658142/pexels-photo-30658142.jpeg?auto=compress&cs=tinysrgb&w=1800');
}
.panel-day .panel-shade {
  background: linear-gradient(to bottom, rgba(38,69,55,.08) 0%, rgba(38,69,55,.08) 38%, rgba(36,49,45,.82) 100%);
}
.panel-night .panel-shade {
  background: linear-gradient(to bottom, rgba(10,24,39,.18) 0%, rgba(10,24,39,.16) 38%, rgba(10,24,39,.90) 100%);
}
.panel-day:hover .panel-shade {
  background: linear-gradient(to bottom, rgba(38,69,55,.02) 0%, rgba(38,69,55,.06) 40%, rgba(36,49,45,.74) 100%);
}
.panel-night:hover .panel-shade {
  background: linear-gradient(to bottom, rgba(10,24,39,.08) 0%, rgba(10,24,39,.10) 40%, rgba(10,24,39,.84) 100%);
}

/* Marca más geométrica, menos clásica */
.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 0;
  background: rgba(246,240,228,.92);
  color: #24312d;
  font-style: normal;
  transform: rotate(-4deg);
  box-shadow: 0 8px 28px rgba(0,0,0,.14);
}
.brand-lockup h1 { letter-spacing: .12em; }
.brand-lockup > span { letter-spacing: .28em; }
.panel-number { color: #f1d480; }
.panel-day .panel-cta { border-color: rgba(241,212,128,.75); }
.panel-night .panel-cta { border-color: rgba(118,190,190,.72); }

/* Navegación */
.site-nav.scrolled { background: rgba(16,29,45,.95); }
.nav-links .nav-switch {
  border-radius: 6px;
  border-color: rgba(255,255,255,.48);
}

/* Héroes con tintes propios */
.hero-day::after {
  background: linear-gradient(to bottom, rgba(47,68,60,.10), rgba(47,68,60,.12) 45%, rgba(36,49,45,.80));
}
.hero-night::after {
  background: linear-gradient(to bottom, rgba(16,29,45,.18), rgba(16,29,45,.20) 45%, rgba(16,29,45,.92));
}
.kicker { color: #f1d480; }

/* Día */
.day-page .section-label { color: #718161; }
.day-page .body-copy { color: #53605a; }
.day-page .editorial-feature { background: #dce4d1; }
.day-page .story-split { background: #f0d9cf; }
.day-page .menu-strip { background: #2f443c; }
.day-page .gallery-section { background: #f6f0e4; }
.day-page .quote-band { background: #e2b84f; color: #24312d; }
.day-page .info-band { background: #dce4d1; }
.day-page .cta-band { background: #df664b; }
.day-page .site-footer { background: #24312d; }

/* Noche: azul petróleo y coral en lugar de marrones */
.night-page { background: #101d2d; color: #f7f2ea; }
.night-page .section:not(.menu-strip):not(.gallery-section) { background: #f6f0e4; color: #24312d; }
.night-page #concepto .section-label { color: #2f5f62; }
.night-page #concepto .body-copy { color: #53605a; }
.night-feature { background: #163348; }
.night-feature .section-label { color: #9fd0c8; }
.night-feature .body-copy { color: rgba(255,255,255,.72); }
.night-cards { background: #101d2d; }
.night-menu-strip { background: #13263a; }
.story-night { background: #183d46; }
.story-night .section-label { color: #9fd0c8; }
.night-gallery { background: #0d1724; }
.night-gallery .section-label { color: #82beb7; }
.night-quote { background: #df664b; color: #fff; }
.event-band { background: #2f5f62; }
.night-info { background: #c8d7cf; color: #24312d; }
.night-info .info-cell + .info-cell { border-left-color: rgba(36,49,45,.18); }
.night-cta { background: #163348; }
.night-page .site-footer { background: #0b1520; }

/* Botones y etiquetas: geometría propia */
.button {
  border-radius: 6px;
  min-width: 176px;
  padding: 15px 22px;
  font-weight: 600;
}
.story-points span {
  border-radius: 6px;
}

/* Pequeños acentos visuales Martinik'a */
.display-text em,
.hero h1 em,
.panel h2 em { color: inherit; }
.day-page .display-text em { color: #df664b; }
.night-page .gallery-heading .display-text em { color: #82beb7; }

@media (max-width: 760px) {
  .brand-lockup {
    background: rgba(16,29,45,.78);
    border-radius: 10px;
  }
  .nav-links .nav-switch { border-radius: 6px; }
}


/* Panel administrador: contenido dinámico sin alterar el diseño base */
.brand-mark img { width: 100%; height: 100%; object-fit: contain; border-radius: inherit; padding: 4px; }
.hero.admin-hero-image::before { background-image: var(--admin-hero-image) !important; }
.promo-modal { position: fixed; inset: 0; z-index: 999; display: grid; place-items: center; padding: 22px; opacity: 0; visibility: hidden; transition: opacity .25s ease, visibility .25s ease; }
.promo-modal.open { opacity: 1; visibility: visible; }
.promo-backdrop { position: absolute; inset: 0; background: rgba(7,15,24,.76); backdrop-filter: blur(8px); }
.promo-card { position: relative; z-index: 1; width: min(920px, 96vw); max-height: 90vh; overflow: auto; display: grid; grid-template-columns: 1.05fr .95fr; background: #f6f0e4; color: #24312d; box-shadow: 0 35px 90px rgba(0,0,0,.35); transform: translateY(18px) scale(.985); transition: transform .25s ease; }
.promo-modal.open .promo-card { transform: translateY(0) scale(1); }
.promo-image { min-height: 470px; background-size: cover; background-position: center; }
.promo-copy { padding: clamp(34px,5vw,70px); display: flex; flex-direction: column; justify-content: center; }
.promo-mini { font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: #718161; }
.promo-copy h2 { margin: 14px 0 18px; font-family: "Fraunces",serif; font-size: clamp(38px,5vw,68px); line-height: .95; }
.promo-copy p { margin: 0 0 30px; color: #53605a; line-height: 1.7; }
.promo-button { align-self: flex-start; padding: 14px 20px; background: #df664b; color: #fff; font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }
.promo-close { position: absolute; z-index: 3; top: 14px; right: 14px; width: 42px; height: 42px; border: 0; background: rgba(16,29,45,.92); color: #fff; font-size: 26px; cursor: pointer; }
@media(max-width:760px){.promo-card{grid-template-columns:1fr}.promo-image{min-height:300px}.promo-copy{padding:32px 24px}.promo-close{position:fixed;top:32px;right:32px}}
