:root {
  --pink: #ed3f8f;
  --pink-2: #ff8bbb;
  --pink-bg: #fff0f7;
  --brown: #321207;
  --choco: #6d2b14;
  --cream: #fff8f0;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(93, 25, 54, .18);
  --radius: 30px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--pink-bg);
  color: var(--brown);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  overflow-x: hidden;
}

body.nav-open { overflow: hidden; }

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  height: 84px;
  z-index: 50;
  padding: 0 clamp(18px, 6vw, 92px);
  display: flex;
  align-items: center;
  gap: 34px;
  background: rgba(255, 242, 248, .78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.7);
}

.brand img {
  width: 154px;
  height: 62px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.nav {
  display: flex;
  gap: 30px;
  align-items: center;
  margin-left: auto;
}

.nav a {
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 0;
  height: 3px;
  border-radius: 999px;
  background: var(--pink);
  transition: .25s;
}

.nav a:hover::after { width: 100%; }

.header-btn {
  padding: 13px 20px;
  border-radius: 999px;
  background: var(--pink);
  color: white;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 15px 34px rgba(237,63,143,.28);
}

.nav-toggle {
  display: none;
  margin-left: auto;
  border: 0;
  background: transparent;
  width: 44px;
  height: 44px;
  padding: 0;
  position: relative;
  z-index: 60;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--brown);
  border-radius: 999px;
  margin: 5px auto;
}

.hero {
  min-height: 100vh;
  padding: 140px clamp(22px, 7vw, 110px) 80px;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  align-items: center;
  gap: 54px;
  background:
    radial-gradient(circle at 72% 18%, rgba(237,63,143,.35), transparent 31%),
    radial-gradient(circle at 8% 15%, rgba(255,255,255,.9), transparent 28%),
    linear-gradient(135deg, #fff8fb 0%, #ffd8e9 48%, #f49bc3 100%);
  position: relative;
  overflow: hidden;
}

.choco-drip {
  position: absolute;
  right: -40px;
  top: 0;
  width: 290px;
  height: 150px;
  background: linear-gradient(#2a0e06, #7c3219);
  border-radius: 0 0 50% 50%;
  box-shadow: 0 20px 35px rgba(40, 10, 4, .24);
}

.choco-drip::before,
.choco-drip::after {
  content: "";
  position: absolute;
  top: 78px;
  width: 36px;
  background: #5a210f;
  border-radius: 999px;
}

.choco-drip::before { right: 68px; height: 155px; }
.choco-drip::after { right: 150px; height: 95px; }

.eyebrow {
  margin: 0 0 18px;
  color: var(--pink);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .09em;
  font-size: 14px;
}

h1, h2 {
  font-family: "Playfair Display", Georgia, serif;
  margin: 0;
  line-height: .94;
  letter-spacing: -.045em;
}

h1 { font-size: clamp(58px, 8vw, 126px); }

h1 span { color: var(--pink); display: block; }

h2 { font-size: clamp(38px, 5vw, 74px); }

.hero-copy p:not(.eyebrow) {
  max-width: 560px;
  margin: 28px 0;
  font-size: 19px;
  line-height: 1.75;
}

.actions { display: flex; gap: 16px; flex-wrap: wrap; }

.btn {
  min-height: 54px;
  padding: 0 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 17px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
  transition: .25s ease;
}

.btn:hover { transform: translateY(-3px); }

.btn-primary {
  background: var(--pink);
  color: white;
  box-shadow: 0 18px 35px rgba(237,63,143,.32);
}

.btn-ghost {
  background: rgba(255,255,255,.65);
  border: 1px solid rgba(237,63,143,.42);
  color: var(--pink);
}

.small { min-height: 46px; padding: 0 22px; }

.hero-media { position: relative; }

.hero-photo {
  border-radius: 46px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transform: rotate(-2deg);
  border: 10px solid rgba(255,255,255,.55);
}

.hero-photo img {
  width: 100%;
  height: min(68vh, 660px);
  object-fit: cover;
}

.floating {
  position: absolute;
  z-index: 2;
  background: rgba(255,255,255,.76);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.9);
  border-radius: 999px;
  padding: 14px 20px;
  font-weight: 900;
  box-shadow: var(--shadow);
}

.floating-top { top: 34px; right: -12px; }
.floating-bottom { bottom: 38px; left: -22px; }

.section {
  padding: 92px clamp(22px, 7vw, 110px);
}

.section-title {
  text-align: center;
  margin-bottom: 46px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.menu-card {
  background: rgba(255,255,255,.76);
  border: 1px solid rgba(255,255,255,.82);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: .3s ease;
}

.menu-card:hover {
  transform: translateY(-9px);
}

.menu-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: .35s ease;
}

.menu-card:hover img { transform: scale(1.06); }

.menu-card div { padding: 22px 20px 24px; }

.menu-card h3 {
  margin: 0 0 10px;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: .03em;
}

.menu-card p {
  margin: 0;
  color: rgba(50,18,7,.76);
  line-height: 1.7;
  font-size: 14px;
}

.about {
  display: grid;
  grid-template-columns: 1fr .95fr;
  gap: 58px;
  align-items: center;
  background: linear-gradient(90deg, #ffd2e5, #fff5fa);
}

.about-photo {
  border-radius: 38px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 8px solid rgba(255,255,255,.55);
}

.about-photo img {
  height: 520px;
  width: 100%;
  object-fit: cover;
}

.about-copy p:not(.eyebrow) {
  font-size: 18px;
  line-height: 1.85;
  max-width: 640px;
  margin: 26px 0;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 235px;
  gap: 18px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 26px;
  box-shadow: var(--shadow);
  background: white;
}

.gallery-item.big {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .35s ease;
}

.gallery-item:hover img { transform: scale(1.07); }

.center {
  text-align: center;
  margin-top: 34px;
}

.contact {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 48px;
  align-items: center;
  background:
    radial-gradient(circle at 0 100%, rgba(237,63,143,.22), transparent 28%),
    linear-gradient(135deg, #fff8fb, #ffd6e8);
}

.contact-cards {
  display: grid;
  gap: 16px;
  margin-top: 32px;
}

.contact-card {
  padding: 20px;
  border-radius: 24px;
  background: rgba(255,255,255,.7);
  box-shadow: 0 14px 38px rgba(93, 25, 54, .1);
  display: grid;
  grid-template-columns: 145px 1fr;
  gap: 18px;
}

.contact-card strong { color: var(--pink); }

.contact-card span { line-height: 1.7; }

.map {
  min-height: 440px;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 8px solid rgba(255,255,255,.55);
}

.map iframe {
  width: 100%;
  height: 440px;
  border: 0;
  filter: saturate(.8) contrast(.95);
}

footer {
  padding: 28px clamp(22px, 7vw, 110px);
  background: linear-gradient(90deg, #2c0e05, #602511);
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 13px;
}

footer img {
  width: 115px;
  height: 58px;
  object-fit: contain;
  mix-blend-mode: screen;
}

footer div {
  display: flex;
  gap: 22px;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 12px;
}

.float-btn {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 45;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--pink);
  color: white;
  font-size: 28px;
  box-shadow: 0 16px 38px rgba(237,63,143,.35);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: .75s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .hero, .about, .contact { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .gallery-item.big { grid-column: span 2; }
  .header-btn { display: none; }
}

@media (max-width: 760px) {
  .site-header {
    height: 74px;
    padding: 0 18px;
  }

  .brand img { width: 122px; height: 52px; }

  .nav-toggle { display: block; }

  .nav {
    position: fixed;
    inset: 0;
    margin: 0;
    display: none;
    flex-direction: column;
    justify-content: center;
    background: rgba(255,242,248,.97);
    backdrop-filter: blur(20px);
    gap: 28px;
  }

  body.nav-open .nav { display: flex; }

  .nav a { font-size: 22px; }

  .hero {
    min-height: auto;
    padding: 112px 22px 72px;
    gap: 36px;
  }

  .section { padding: 72px 22px; }

  h1 { font-size: clamp(52px, 16vw, 76px); }
  h2 { font-size: clamp(35px, 11vw, 54px); }

  .hero-copy p:not(.eyebrow) {
    font-size: 16px;
  }

  .hero-photo {
    border-radius: 30px;
    border-width: 6px;
  }

  .hero-photo img {
    height: 420px;
  }

  .floating { font-size: 13px; padding: 11px 14px; }
  .floating-top { right: 0; top: 18px; }
  .floating-bottom { left: 2px; bottom: 22px; }

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

  .gallery {
    grid-auto-rows: 280px;
  }

  .gallery-item.big {
    grid-column: auto;
    grid-row: auto;
  }

  .menu-card img { height: 250px; }

  .about-photo img { height: 340px; }

  .contact-card {
    grid-template-columns: 1fr;
  }

  footer {
    flex-direction: column;
    text-align: center;
  }

  footer div { justify-content: center; }
}

@media (max-width: 430px) {
  .hero-photo img { height: 360px; }
  .actions .btn { width: 100%; }
}


/* ===== MOBILE POLISH FIX ===== */
@media (max-width: 760px) {
  body {
    background: #fff2f8;
  }

  .site-header {
    height: 68px;
    padding: 0 16px;
    background: rgba(255, 242, 248, .94);
  }

  .brand img {
    width: 108px;
    height: 48px;
    object-fit: contain;
  }

  .hero {
    min-height: auto;
    padding: 96px 16px 54px;
    display: block;
    background:
      radial-gradient(circle at 78% 20%, rgba(237,63,143,.26), transparent 32%),
      linear-gradient(180deg, #fff7fb 0%, #ffd8e9 100%);
  }

  .hero-copy {
    text-align: left;
    position: relative;
    z-index: 3;
  }

  .eyebrow {
    font-size: 12px;
    margin-bottom: 12px;
  }

  h1 {
    font-size: 52px;
    line-height: .92;
    letter-spacing: -.05em;
  }

  h2 {
    font-size: 38px;
    line-height: .98;
  }

  .hero-copy p:not(.eyebrow) {
    font-size: 15px;
    line-height: 1.65;
    margin: 20px 0 22px;
  }

  .actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .btn {
    min-height: 48px;
    border-radius: 14px;
    font-size: 12px;
    width: 100%;
  }

  .hero-media {
    margin-top: 28px;
  }

  .hero-photo {
    border-radius: 28px;
    border: 5px solid rgba(255,255,255,.75);
    transform: none;
    box-shadow: 0 18px 45px rgba(93,25,54,.20);
  }

  .hero-photo img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    object-position: center top;
  }

  .floating {
    display: none;
  }

  .choco-drip {
    width: 145px;
    height: 70px;
    right: -35px;
    opacity: .85;
  }

  .choco-drip::before {
    right: 38px;
    top: 43px;
    width: 20px;
    height: 76px;
  }

  .choco-drip::after {
    right: 86px;
    top: 40px;
    width: 18px;
    height: 52px;
  }

  .section {
    padding: 58px 16px;
  }

  .section-title {
    text-align: left;
    margin-bottom: 26px;
  }

  .menu-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .menu-card {
    display: grid;
    grid-template-columns: 128px 1fr;
    align-items: stretch;
    border-radius: 22px;
  }

  .menu-card img {
    height: 100%;
    min-height: 150px;
    border-radius: 0;
  }

  .menu-card div {
    padding: 16px;
  }

  .menu-card h3 {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .menu-card p {
    font-size: 13px;
    line-height: 1.55;
  }

  .about {
    display: block;
  }

  .about-photo {
    border-radius: 26px;
    border-width: 5px;
    margin-bottom: 26px;
  }

  .about-photo img {
    height: 300px;
    object-position: center;
  }

  .about-copy p:not(.eyebrow) {
    font-size: 15px;
    line-height: 1.7;
    margin: 20px 0;
  }

  .gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
    gap: 12px;
  }

  .gallery-item,
  .gallery-item.big {
    grid-column: auto;
    grid-row: auto;
    border-radius: 20px;
  }

  .gallery-item:first-child {
    grid-column: span 2;
    grid-row: span 1;
  }

  .contact {
    display: block;
  }

  .contact-cards {
    gap: 12px;
  }

  .contact-card {
    grid-template-columns: 1fr;
    gap: 8px;
    border-radius: 20px;
    padding: 16px;
    font-size: 14px;
  }

  .map {
    margin-top: 24px;
    min-height: 300px;
    border-radius: 24px;
    border-width: 5px;
  }

  .map iframe {
    height: 300px;
  }

  footer {
    padding: 26px 16px 86px;
    gap: 14px;
  }

  footer img {
    width: 110px;
  }

  .float-btn {
    width: 52px;
    height: 52px;
    right: 16px;
    bottom: 16px;
  }
}

@media (max-width: 390px) {
  h1 {
    font-size: 46px;
  }

  .hero-photo img {
    height: 320px;
  }

  .menu-card {
    grid-template-columns: 112px 1fr;
  }

  .menu-card img {
    min-height: 142px;
  }

  .gallery {
    grid-auto-rows: 158px;
  }
}


/* ===== LEGAL BUTTONS + MODAL FINAL FIX ===== */
.footer-legal-btn {
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 12px;
  cursor: pointer;
  padding: 0;
}

.footer-legal-btn:hover {
  color: #ff8bbb;
}

.legal-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.legal-modal.is-open {
  display: flex;
}

.legal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(50, 18, 7, .58);
  backdrop-filter: blur(8px);
}

.legal-box {
  position: relative;
  width: min(92vw, 560px);
  max-height: 82vh;
  overflow-y: auto;
  background: #fff7fb;
  color: #321207;
  border-radius: 26px;
  padding: 32px;
  box-shadow: 0 28px 90px rgba(0,0,0,.28);
}

.legal-box h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 36px;
  line-height: 1;
  margin: 0 0 20px;
  color: #321207;
}

.legal-box p {
  line-height: 1.7;
  margin: 0 0 14px;
}

.legal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: #ed3f8f;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
}

@media (max-width: 760px) {
  footer div {
    display: flex;
    gap: 18px;
    justify-content: center;
    align-items: center;
  }

  .legal-box {
    padding: 28px 22px;
    border-radius: 22px;
  }

  .legal-box h2 {
    font-size: 32px;
  }
}


/* ===== CLOSE BUTTON FINAL FIX ===== */
.legal-close {
  z-index: 100001 !important;
  display: grid !important;
  place-items: center !important;
  line-height: 1 !important;
}

.legal-backdrop {
  z-index: 0;
}

.legal-box {
  z-index: 1;
}


/* ===== HEADER REDESIGN ===== */
.site-header{
  justify-content:space-between;
  background:rgba(255,242,248,.35)!important;
  backdrop-filter:blur(12px);
}

.brand{
  position:absolute;
  left:50%;
  transform:translateX(-50%);
}

.nav{
  margin-left:0!important;
  justify-content:flex-start;
  gap:20px;
}

.nav a{
  font-size:12px;
  padding:10px 0;
  background:transparent!important;
}

.nav a::after{
  display:none;
}

.header-btn{
  background:transparent!important;
  color:#321207!important;
  box-shadow:none!important;
  border:1px solid rgba(50,18,7,.15);
}

@media (max-width:760px){
  .site-header{
    justify-content:space-between;
  }

  .brand{
    left:50%;
    transform:translateX(-50%);
  }

  .nav{
    align-items:flex-start!important;
    padding-left:28px;
  }

  .nav a{
    font-size:30px!important;
    text-align:left!important;
    max-width:none!important;
    width:auto!important;
    padding:4px 0!important;
    line-height:1!important;
  }

  .nav-toggle{
    order:-1;
  }
}


/* ===== FINAL MOBILE MENU ELEGANT FIX ===== */
@media (max-width: 760px) {
  .site-header {
    height: 72px !important;
    padding: 0 18px !important;
    background: rgba(255, 244, 249, .96) !important;
    backdrop-filter: blur(18px) !important;
    box-shadow: 0 10px 28px rgba(50,18,7,.08) !important;
  }

  .brand {
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
    z-index: 70 !important;
  }

  .brand img {
    width: 116px !important;
    height: 50px !important;
    object-fit: contain !important;
  }

  .nav-toggle {
    display: block !important;
    margin-left: auto !important;
    z-index: 90 !important;
  }

  .nav-toggle span {
    background: #321207 !important;
    height: 3px !important;
    width: 26px !important;
  }

  .nav {
    position: fixed !important;
    top: 72px !important;
    left: 16px !important;
    right: 16px !important;
    bottom: auto !important;

    display: none !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    gap: 2px !important;

    padding: 20px 22px !important;
    margin: 0 !important;

    background: rgba(255, 250, 252, .98) !important;
    backdrop-filter: blur(22px) !important;
    border: 1px solid rgba(255,255,255,.85) !important;
    border-radius: 24px !important;
    box-shadow: 0 28px 70px rgba(65, 18, 37, .18) !important;
    z-index: 80 !important;
  }

  body.nav-open .nav {
    display: flex !important;
  }

  .nav a {
    width: 100% !important;
    max-width: none !important;
    display: flex !important;
    align-items: center !important;

    padding: 14px 4px !important;
    text-align: left !important;

    font-size: 18px !important;
    line-height: 1.1 !important;
    font-weight: 800 !important;
    letter-spacing: .02em !important;
    color: #321207 !important;
    text-shadow: none !important;
    border-bottom: 1px solid rgba(50,18,7,.07) !important;
  }

  .nav a:last-child {
    border-bottom: 0 !important;
  }

  .nav a:hover {
    color: #ed3f8f !important;
  }

  .nav a::after {
    display: none !important;
  }

  body.nav-open::before {
    content: "" !important;
    position: fixed !important;
    inset: 0 !important;
    z-index: 45 !important;
    background: rgba(255, 233, 244, .58) !important;
    backdrop-filter: blur(3px) !important;
  }

  .hero {
    padding-top: 104px !important;
  }
}

/* smaller phones */
@media (max-width: 390px) {
  .nav {
    left: 12px !important;
    right: 12px !important;
    padding: 18px 20px !important;
  }

  .nav a {
    font-size: 17px !important;
    padding: 13px 4px !important;
  }
}


/* ===== FINAL MOBILE HEADER + WHATSAPP ===== */
.float-btn{
  background:#25D366 !important;
  box-shadow:0 18px 45px rgba(37,211,102,.35)!important;
}

.float-btn::before{
  content:"WhatsApp";
  position:absolute;
  right:64px;
  white-space:nowrap;
  background:rgba(50,18,7,.92);
  color:#fff;
  padding:10px 14px;
  border-radius:14px;
  font-size:12px;
  font-weight:700;
  opacity:0;
  transform:translateY(4px);
  transition:.25s ease;
}

.float-btn:hover::before{
  opacity:1;
  transform:translateY(0);
}

@media (max-width:760px){

  .site-header{
    background:rgba(255,244,249,.18)!important;
    backdrop-filter:blur(18px)!important;
    border-bottom:1px solid rgba(255,255,255,.22)!important;
    box-shadow:none!important;
  }

  .nav{
    top:74px!important;
    left:0!important;
    right:0!important;
    border-radius:0 0 28px 28px!important;
    padding:20px 26px 24px!important;
    background:rgba(255,244,249,.14)!important;
    backdrop-filter:blur(30px)!important;
    border:none!important;
    box-shadow:0 22px 55px rgba(65,18,37,.16)!important;
  }

  .nav a{
    font-size:16px!important;
    font-weight:700!important;
    color:#321207!important;
    padding:12px 0!important;
    border-bottom:1px solid rgba(50,18,7,.08)!important;
  }

  .nav a:last-child{
    border-bottom:none!important;
  }

  body.nav-open::before{
    background:rgba(20,7,12,.16)!important;
    backdrop-filter:blur(2px)!important;
  }

  .brand img{
    width:104px!important;
    height:46px!important;
  }

  .nav-toggle span{
    width:24px!important;
    height:2px!important;
  }

  .float-btn{
    width:58px!important;
    height:58px!important;
    right:16px!important;
    bottom:16px!important;
  }
}


/* ===== DARKER TRANSPARENT MOBILE MENU + WHATSAPP LINK FIX ===== */
.whatsapp-float {
  background: #25D366 !important;
  color: #fff !important;
  font-size: 25px !important;
  font-weight: 900 !important;
  box-shadow: 0 18px 45px rgba(37,211,102,.38) !important;
}

.whatsapp-float::before {
  content: "WhatsApp" !important;
}

@media (max-width:760px) {
  .nav {
    background: rgba(50, 18, 7, .72) !important;
    backdrop-filter: blur(22px) !important;
    -webkit-backdrop-filter: blur(22px) !important;
    border: 1px solid rgba(255,255,255,.16) !important;
    box-shadow: 0 28px 70px rgba(50,18,7,.34) !important;
  }

  .nav a {
    color: #fff7fb !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    letter-spacing: .03em !important;
    text-shadow: none !important;
    border-bottom: 1px solid rgba(255,255,255,.16) !important;
  }

  .nav a:hover {
    color: #ff8bbb !important;
  }

  body.nav-open::before {
    background: rgba(50, 18, 7, .26) !important;
    backdrop-filter: blur(4px) !important;
    -webkit-backdrop-filter: blur(4px) !important;
  }

  .site-header {
    background: rgba(255, 244, 249, .24) !important;
    backdrop-filter: blur(18px) !important;
    -webkit-backdrop-filter: blur(18px) !important;
  }

  .whatsapp-float {
    width: 58px !important;
    height: 58px !important;
    right: 16px !important;
    bottom: 16px !important;
  }
}


/* ===== FINAL: BIGGER LOGO + ORIGINAL WHATSAPP + GOOGLE ROUTE ===== */
.brand img {
  width: 180px !important;
  height: 74px !important;
}

.whatsapp-float {
  background: #25D366 !important;
  color: #fff !important;
  font-size: 27px !important;
  font-weight: 900 !important;
  box-shadow: 0 18px 45px rgba(37,211,102,.38) !important;
}

.whatsapp-float::before {
  content: "WhatsApp" !important;
}

.inline-route {
  display: inline-block;
  margin-top: 8px;
  color: #ed3f8f;
  font-weight: 900;
}

.route-link {
  color: inherit;
}

@media (max-width:760px) {
  .brand img {
    width: 142px !important;
    height: 60px !important;
  }

  .nav {
    background: rgba(50, 18, 7, .78) !important;
    backdrop-filter: blur(24px) !important;
    -webkit-backdrop-filter: blur(24px) !important;
  }

  .nav a {
    color: #fff7fb !important;
    font-size: 15px !important;
    font-weight: 700 !important;
  }

  .nav .route-link {
    margin-top: 10px !important;
    padding: 14px 0 !important;
    color: #ff8bbb !important;
    font-weight: 900 !important;
    border-bottom: none !important;
  }

  .whatsapp-float {
    width: 58px !important;
    height: 58px !important;
    right: 16px !important;
    bottom: 16px !important;
  }
}
