@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --background: hsl(38 38% 96%);
  --foreground: hsl(25 30% 15%);
  --card: hsl(36 33% 98%);
  --muted: hsl(35 25% 92%);
  --muted-foreground: hsl(25 15% 40%);
  --border: hsl(30 20% 85%);
  --cream: hsl(38 45% 94%);
  --cream-deep: hsl(35 35% 88%);
  --clay: hsl(22 40% 35%);
  --espresso: hsl(24 35% 18%);
  --sage: hsl(95 18% 55%);
  --sage-deep: hsl(100 15% 38%);
  --sunset: hsl(25 75% 60%);
  --whatsapp: hsl(142 70% 49%);
  --gradient-overlay: linear-gradient(180deg, hsla(24, 35%, 12%, 0.2) 0%, hsla(24, 35%, 12%, 0.65) 100%);
  --shadow-soft: 0 8px 30px -8px hsla(24, 35%, 18%, 0.15);
  --shadow-elegant: 0 20px 60px -20px hsla(24, 35%, 18%, 0.25);
  --shadow-card: 0 2px 12px -4px hsla(24, 35%, 18%, 0.1);
  --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans, 'Inter', Arial, sans-serif);
  font-feature-settings: "ss01", "cv11";
}

body.menu-open {
  overflow: hidden;
}

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

img,
iframe,
svg {
  display: block;
}

img {
  max-width: 100%;
}

button,
input,
textarea,
select {
  font: inherit;
}

.container-cafe {
  width: min(100% - 3rem, 1280px);
  margin-inline: auto;
}

.site-main {
  min-height: 100vh;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  padding: 1.25rem 0;
  color: var(--cream);
  background: transparent;
  transition: padding .45s var(--transition-smooth), background .45s var(--transition-smooth), border-color .45s var(--transition-smooth), color .45s var(--transition-smooth);
}

.site-header.is-scrolled,
body.menu-open .site-header {
  padding: .75rem 0;
  color: var(--espresso);
  background: hsla(38, 45%, 94%, .88);
  border-bottom: 1px solid hsla(30, 20%, 85%, .65);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand,
.footer-brand,
h1,
h2,
h3,
h4,
.font-display {
  font-family: var(--font-display, 'Fraunces', Georgia, serif);
  font-weight: 500;
  letter-spacing: -0.02em;
}

.brand {
  font-size: clamp(1.1rem, 1rem + .4vw, 1.35rem);
  line-height: 1;
}

.brand span,
.footer-brand span,
h1 span,
h2 span,
.cta-content h2 span {
  color: var(--sage);
  font-style: italic;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links a {
  color: rgba(255, 255, 255, .9);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .015em;
  transition: color .25s ease;
}

.site-header.is-scrolled .nav-links a,
body.menu-open .nav-links a {
  color: hsla(24, 35%, 18%, .82);
}

.nav-links a:hover,
.site-header.is-scrolled .nav-links a:hover,
body.menu-open .nav-links a:hover {
  color: var(--sage);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: .9rem 1.85rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: transform .25s ease, background .25s ease, border-color .25s ease, color .25s ease, box-shadow .25s ease;
}

.btn:hover {
  transform: translateY(-1px) scale(1.02);
}

.btn-nav,
.btn-dark {
  color: var(--cream);
  background: var(--espresso);
}

.btn-nav {
  min-height: auto;
  padding: .72rem 1.25rem;
  font-size: .85rem;
}

.btn-nav:hover,
.btn-dark:hover {
  background: var(--clay);
}

.btn-cream {
  color: var(--espresso);
  background: var(--cream);
  box-shadow: var(--shadow-elegant);
}

.btn-cream:hover {
  background: var(--cream-deep);
}

.btn-outline-light {
  color: var(--cream);
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.6);
  backdrop-filter: blur(8px);
}

.btn-outline-light:hover {
  background: rgba(255,255,255,.1);
}

.menu-toggle {
  display: none;
  position: relative;
  width: 2.5rem;
  height: 2.5rem;
  padding: .55rem;
  border: 0;
  border-radius: 999px;
  color: inherit;
  background: transparent;
}

.menu-toggle svg {
  width: 1.35rem;
  height: 1.35rem;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.menu-toggle .icon-close {
  display: none;
}

.menu-toggle[aria-expanded="true"] .icon-menu {
  display: none;
}

.menu-toggle[aria-expanded="true"] .icon-close {
  display: block;
}

.mobile-menu {
  display: none;
}

.hero-section {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.hero-image,
.hero-gradient,
.hero-tint,
.cta-section > img,
.cta-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image,
.cta-section > img {
  object-fit: cover;
}

.hero-gradient {
  background: var(--gradient-overlay);
}

.hero-tint {
  background: hsla(24, 35%, 18%, .3);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-block: 9rem 8rem;
  text-align: center;
  color: var(--cream);
}

.eyebrow {
  margin: 0 0 1.25rem;
  color: rgba(255,255,255,.72);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .35em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--sage-deep);
}

.hero-title {
  max-width: 980px;
  margin: 0 auto;
  font-size: clamp(2.6rem, 10vw, 7rem);
  line-height: 1.05;
  text-wrap: balance;
}

.hero-copy {
  max-width: 580px;
  margin: 2rem auto 0;
  color: rgba(255,255,255,.84);
  font-size: clamp(1rem, .95rem + .25vw, 1.15rem);
  line-height: 1.7;
  text-wrap: balance;
}

.hero-actions,
.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.5rem;
}

.hero-animate {
  animation: fadeInUp .9s var(--transition-smooth) both;
}

.hero-actions.hero-animate {
  animation-delay: .08s;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 2rem;
  z-index: 3;
  width: 2rem;
  height: 2rem;
  color: rgba(255,255,255,.85);
  transform: translateX(-50%);
  animation: scrollCue 1.8s ease-in-out infinite;
}

.scroll-cue svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.section {
  padding-block: clamp(6rem, 9vw, 9rem);
}

.about-section,
.gallery-section,
.reviews-section {
  background: var(--cream);
}

.menu-section,
.visit-section {
  background: hsla(35, 35%, 88%, .4);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(3rem, 8vw, 5rem);
}

.about-image-wrap {
  position: relative;
}

.about-image-bg {
  position: absolute;
  inset: -1rem;
  border-radius: 2rem;
  background: hsla(95, 18%, 55%, .2);
  transform: rotate(-2deg);
}

.about-image-wrap img {
  position: relative;
  width: 100%;
  height: clamp(420px, 44vw, 560px);
  border-radius: 2rem;
  object-fit: cover;
  box-shadow: var(--shadow-elegant);
}

.about-copy h2,
.section-heading h2,
.gallery-heading h2,
.cta-content h2 {
  margin: 0;
  color: var(--espresso);
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  line-height: 1.08;
  text-wrap: balance;
}

.section-line {
  width: 4rem;
  height: 1px;
  margin: 2rem 0;
  background: hsla(22, 40%, 35%, .4);
}

.about-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin: 0;
  color: hsla(25, 30%, 15%, .75);
  font-size: clamp(1rem, .95rem + .3vw, 1.15rem);
  line-height: 1.75;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.stats-grid strong {
  display: block;
  color: var(--espresso);
  font-family: var(--font-display, 'Fraunces', Georgia, serif);
  font-size: clamp(1.65rem, 3vw, 2.1rem);
  font-weight: 500;
}

.stats-grid span {
  display: block;
  margin-top: .35rem;
  color: var(--muted-foreground);
  font-size: .78rem;
  letter-spacing: .04em;
}

.section-heading {
  max-width: 760px;
  margin-inline: auto;
  margin-bottom: clamp(3.5rem, 6vw, 5rem);
}

.centered {
  text-align: center;
}

.section-heading > p:not(.eyebrow) {
  max-width: 560px;
  margin: 1.25rem auto 0;
  color: hsla(25, 30%, 15%, .7);
  line-height: 1.7;
}

.menu-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .75rem;
  margin: -2rem auto 2.5rem;
}

.menu-filters button {
  border: 1px solid var(--border);
  border-radius: 999px;
  background: hsla(36, 33%, 98%, .82);
  color: var(--espresso);
  cursor: pointer;
  font: 800 .82rem var(--font-sans);
  letter-spacing: .02em;
  padding: .75rem 1rem;
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}

.menu-filters button:hover,
.menu-filters button.active {
  transform: translateY(-2px);
  background: var(--espresso);
  border-color: var(--espresso);
  color: var(--cream);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1.2rem, 2.5vw, 2rem);
}

.menu-empty {
  display: none;
  margin: 2rem auto 0;
  max-width: 540px;
  text-align: center;
  color: var(--muted-foreground);
}

.menu-empty.is-visible {
  display: block;
}

.menu-card {
  overflow: hidden;
  border-radius: 1.5rem;
  background: var(--card);
  box-shadow: var(--shadow-card);
  transition: transform .45s ease, box-shadow .45s ease;
}

.menu-card:hover {
  transform: translateY(-.5rem);
  box-shadow: var(--shadow-soft);
}

.menu-card-image {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.menu-badge {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: hsla(38, 45%, 94%, .92);
  color: var(--espresso);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .04em;
  padding: .45rem .7rem;
  text-transform: uppercase;
  box-shadow: 0 10px 24px -18px hsla(24, 35%, 18%, .5);
}

.menu-card-image img,
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}

.menu-card:hover img,
.gallery-item:hover img {
  transform: scale(1.08);
}

.menu-card-body {
  padding: 1.5rem;
}

.menu-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  margin-bottom: .75rem;
}

.menu-card-meta span {
  color: var(--sage-deep);
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.menu-card-meta strong {
  color: var(--clay);
  font-size: .95rem;
  white-space: nowrap;
}

.menu-card h3 {
  margin: 0;
  color: var(--espresso);
  font-size: 1.35rem;
}

.menu-card p {
  margin: .6rem 0 0;
  color: var(--muted-foreground);
  font-size: .92rem;
  line-height: 1.6;
}

.menu-button-wrap {
  margin-top: 3.5rem;
}

.gallery-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.gallery-heading > p {
  max-width: 360px;
  margin: 0;
  color: hsla(25, 30%, 15%, .7);
  line-height: 1.7;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: minmax(200px, auto);
  gap: clamp(.8rem, 1.8vw, 1.25rem);
}

.gallery-item {
  min-height: 310px;
  overflow: hidden;
  border-radius: 1.5rem;
}

.gallery-tall {
  grid-row: span 2;
  min-height: 640px;
}

.gallery-wide {
  grid-column: span 2;
}

.gallery-panorama {
  grid-column: span 3;
}

.visit-grid {
  display: grid;
  grid-template-columns: minmax(320px, 2fr) minmax(0, 3fr);
  gap: clamp(1.2rem, 3vw, 2rem);
}

.visit-card,
.map-card,
.review-card {
  border-radius: 1.5rem;
  background: var(--card);
  box-shadow: var(--shadow-card);
}

.visit-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(2rem, 4vw, 2.5rem);
}

.visit-list {
  display: grid;
  gap: 2rem;
}

.visit-info {
  display: flex;
  gap: 1rem;
}

.visit-icon {
  flex: 0 0 auto;
  width: 2.75rem;
  height: 2.75rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--sage-deep);
  background: hsla(95, 18%, 55%, .15);
}

.visit-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.visit-info h3 {
  margin: 0;
  color: var(--espresso);
  font-size: 1.15rem;
}

.visit-info p {
  margin: .45rem 0 0;
  color: var(--muted-foreground);
  font-size: .92rem;
  line-height: 1.6;
}

.visit-card .btn {
  margin-top: 2.5rem;
}

.map-card {
  min-height: 430px;
  overflow: hidden;
  background: var(--muted);
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 430px;
  border: 0;
}

.reviews-heading {
  margin-bottom: 4rem;
}

.rating-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  margin-top: 1.5rem;
  color: var(--sunset);
}

.rating-row span {
  margin-left: .45rem;
  color: var(--muted-foreground);
  font-size: .9rem;
}

.star-icon {
  width: 1.1rem;
  height: 1.1rem;
  fill: currentColor;
}

.star-icon.small {
  width: .9rem;
  height: .9rem;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.25rem, 2.5vw, 2rem);
}

.review-card {
  display: flex;
  flex-direction: column;
  padding: 2rem;
}

.review-stars {
  display: flex;
  gap: .25rem;
  margin-bottom: 1rem;
  color: var(--sunset);
}

.review-card p {
  flex: 1;
  margin: 0;
  color: hsla(25, 30%, 15%, .8);
  line-height: 1.75;
}

.review-author {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.review-author strong {
  display: block;
  color: var(--espresso);
  font-family: var(--font-display, 'Fraunces', Georgia, serif);
  font-size: 1.08rem;
  font-weight: 500;
}

.review-author span {
  display: block;
  margin-top: .25rem;
  color: var(--muted-foreground);
  font-size: .78rem;
  letter-spacing: .035em;
}

.cta-section {
  position: relative;
  overflow: hidden;
  padding-block: clamp(7rem, 12vw, 10rem);
  color: var(--cream);
  text-align: center;
}

.cta-overlay {
  background: hsla(24, 35%, 18%, .75);
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-content h2 {
  max-width: 760px;
  margin-inline: auto;
  color: var(--cream);
}

.cta-content > p:not(.eyebrow) {
  max-width: 560px;
  margin: 1.5rem auto 0;
  color: rgba(255,255,255,.8);
  line-height: 1.7;
}

.footer {
  padding-block: 4rem 2rem;
  color: rgba(255,255,255,.85);
  background: var(--espresso);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2.5rem;
}

.footer-brand {
  color: var(--cream);
  font-size: 1.55rem;
}

.footer-brand-block p {
  max-width: 390px;
  margin: 1rem 0 0;
  color: rgba(255,255,255,.7);
  line-height: 1.7;
}

.social-links {
  display: flex;
  gap: .75rem;
  margin-top: 1.5rem;
}

.social-links a {
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  transition: background .25s ease;
}

.social-links a:hover {
  background: rgba(255,255,255,.1);
}

.social-links svg {
  width: 1rem;
  height: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-links a:nth-child(2) svg,
.social-links a:nth-child(3) svg {
  fill: currentColor;
  stroke: none;
}

.footer h4 {
  margin: 0 0 1rem;
  color: var(--cream);
  font-size: 1.15rem;
}

.footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer li {
  margin-bottom: .6rem;
  color: rgba(255,255,255,.7);
  font-size: .92rem;
}

.footer a:hover {
  color: var(--sage);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.5);
  font-size: .8rem;
}

.footer-bottom p {
  margin: 0;
}

.whatsapp-fab {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 40;
  width: 4rem;
  height: 4rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: var(--whatsapp);
  box-shadow: 0 10px 30px -8px hsla(142, 70%, 35%, .5);
  transition: transform .25s ease;
}

.whatsapp-fab:hover {
  transform: scale(1.1);
}

.whatsapp-fab svg {
  position: relative;
  z-index: 2;
  width: 1.75rem;
  height: 1.75rem;
  fill: currentColor;
}

.whatsapp-fab span {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--whatsapp);
  opacity: .2;
  animation: ping 1.5s cubic-bezier(0, 0, .2, 1) infinite;
}

.not-found-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem;
  background: var(--muted);
}

.not-found-card {
  max-width: 460px;
  padding: 3rem;
  border-radius: 1.5rem;
  text-align: center;
  background: var(--card);
  box-shadow: var(--shadow-card);
}

.not-found-card h1 {
  margin: 0;
  color: var(--espresso);
  font-size: 4rem;
}

.not-found-card p {
  margin: .75rem 0 2rem;
  color: var(--muted-foreground);
  font-size: 1.15rem;
}

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

@keyframes scrollCue {
  0%, 100% {
    transform: translate(-50%, 0);
    opacity: .5;
  }
  50% {
    transform: translate(-50%, 8px);
    opacity: 1;
  }
}

@keyframes ping {
  75%, 100% {
    transform: scale(1.7);
    opacity: 0;
  }
}

@media (max-width: 1024px) {
  .menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .visit-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-image-wrap {
    max-width: 720px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-wide,
  .gallery-panorama {
    grid-column: span 1;
  }

  .gallery-tall {
    min-height: 520px;
  }

  .reviews-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .container-cafe {
    width: min(100% - 2rem, 1280px);
  }

  .nav-links,
  .btn-nav {
    display: none;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .mobile-menu {
    display: block;
    max-height: 0;
    overflow: hidden;
    background: var(--cream);
    border-top: 1px solid var(--border);
    transition: max-height .35s ease;
  }

  .mobile-menu.is-open {
    max-height: 520px;
  }

  .mobile-menu ul {
    margin: 0 auto;
    padding-block: 1.5rem;
    list-style: none;
  }

  .mobile-menu li + li {
    margin-top: 1rem;
  }

  .mobile-menu a {
    display: block;
    color: var(--espresso);
    font-size: 1rem;
    font-weight: 600;
  }

  .mobile-menu .mobile-reserve {
    display: inline-flex;
    margin-top: .5rem;
    padding: .8rem 1.25rem;
    border-radius: 999px;
    color: var(--cream);
    background: var(--espresso);
    font-size: .9rem;
  }

  .hero-content {
    padding-block: 8rem 7rem;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn,
  .cta-actions .btn,
  .full-width-mobile {
    width: 100%;
  }

  .section {
    padding-block: 5rem;
  }

  .stats-grid {
    gap: 1rem;
  }

  .gallery-heading {
    display: block;
  }

  .gallery-heading > p {
    margin-top: 1rem;
  }

  .reviews-grid,
  .menu-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item,
  .gallery-tall,
  .gallery-wide,
  .gallery-panorama {
    min-height: 280px;
    grid-column: auto;
    grid-row: auto;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .whatsapp-fab {
    width: 3.5rem;
    height: 3.5rem;
  }
}

@media (max-width: 520px) {
  .hero-title {
    font-size: 2.55rem;
  }

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

  .about-image-wrap img {
    height: 380px;
  }

  .visit-info {
    align-items: flex-start;
  }

  .not-found-card {
    padding: 2rem;
  }
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
}

.brand-logo {
  width: auto;
  max-width: 132px;
  height: 38px;
  object-fit: contain;
}

.relative { position: relative; }
.z-10 { z-index: 10; }

@media (max-width: 520px) {
  .brand-logo { max-width: 110px; height: 34px; }
}


.brand-logo { object-fit: contain; background: transparent; }

/* Brand media displayed from admin-controlled logo setting */
.footer-brand-row {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
}
.footer-logo {
  width: auto;
  max-width: 120px;
  height: 42px;
  object-fit: contain;
  border-radius: .7rem;
  background: rgba(255,255,255,.08);
}

/* Demo version additions */
.nav-actions {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
}

.admin-login-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.55rem;
  padding: .65rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.5);
  color: rgba(255,255,255,.92);
  font-size: .85rem;
  font-weight: 700;
  backdrop-filter: blur(8px);
  transition: .25s ease;
}

.site-header.is-scrolled .admin-login-link,
body.menu-open .admin-login-link {
  color: var(--espresso);
  border-color: rgba(62,42,32,.2);
  background: rgba(255,255,255,.45);
}

.admin-login-link:hover {
  transform: translateY(-1px);
  border-color: var(--sage);
}

.demo-version-badge {
  position: fixed;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .58rem 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff8a00, #ffb347);
  color: #fff;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
  box-shadow: 0 12px 34px rgba(255, 138, 0, .35);
  animation: demoBadgeFloat 2.8s ease-in-out infinite;
  pointer-events: none;
}

.demo-toast {
  position: fixed;
  left: 50%;
  bottom: 72px;
  transform: translateX(-50%) translateY(12px);
  z-index: 10000;
  padding: .75rem 1rem;
  border-radius: 999px;
  background: rgba(36,24,18,.95);
  color: #fff;
  font-size: .85rem;
  font-weight: 700;
  opacity: 0;
  transition: .25s ease;
  box-shadow: 0 16px 44px rgba(0,0,0,.2);
}

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

@keyframes demoBadgeFloat {
  0%, 100% { transform: translateX(-50%) translateY(0) scale(1); }
  50% { transform: translateX(-50%) translateY(-3px) scale(1.03); }
}

@media (max-width: 900px) {
  .nav-actions { display: none; }
}

@media (max-width: 560px) {
  .demo-version-badge {
    width: calc(100% - 2rem);
    font-size: .62rem;
  }
}
