:root {
  --thai-red: #C8102E;
  --thai-gold-light: #FFE08A;
  --thai-gold-dark: #D98D09;
  --thai-gold: #F5A623;
  --thai-navy: #1A1F4B;
  --thai-white: #FDFAF5;
  --thai-dark: #0D0F1A;
  --thai-green: #2D7A4F;
  --accent-orange: #FF6B35;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Kanit', sans-serif;
  background: var(--thai-dark);
  color: var(--thai-white);
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  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='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}

header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 40px;
  background: rgba(13,15,26,0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(245,166,35,0.2);
  transition: background 0.3s;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo img {
  height: 52px;
  filter: drop-shadow(0 0 8px rgba(245,166,35,0.5));
}

.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--thai-gold);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav-logo-text-lighter {
  color: var(--thai-gold-light);
}

.nav-logo-text-darker {
  color: var(--thai-gold-dark);
}

nav ul {
  display: flex;
  gap: 32px;
  list-style: none;
}

nav ul a {
  color: var(--thai-white);
  text-decoration: none;
  font-weight: 400;
  font-size: 0.9rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0.8;
  transition: opacity 0.2s, color 0.2s;
}

nav ul a:hover { opacity: 1; color: var(--thai-gold); }

.nav-cta {
  background: var(--thai-red);
  color: white !important;
  padding: 8px 20px;
  border-radius: 40px;
  opacity: 1 !important;
  font-weight: 600 !important;
  transition: background 0.2s !important;
}

.nav-cta:hover { background: #a00d24 !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--thai-white);
  border-radius: 2px;
  transition: 0.3s;
}

/* ========== HERO ========== */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 100px 60px 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 80% 50%, rgba(200,16,46,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 20% 80%, rgba(245,166,35,0.12) 0%, transparent 55%),
    linear-gradient(135deg, var(--thai-dark) 0%, #12152a 100%);
  z-index: 0;
}

.hero-content { position: relative; z-index: 1; }

.hero-badge {
  display: inline-block;
  background: rgba(245,166,35,0.15);
  border: 1px solid rgba(245,166,35,0.4);
  color: var(--thai-gold);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 40px;
  margin-bottom: 28px;
  animation: fadeUp 0.7s ease forwards;
}

h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 24px;
  animation: fadeUp 0.8s 0.1s ease both;
}

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

.hero-desc {
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.8;
  opacity: 0.75;
  max-width: 480px;
  margin-bottom: 40px;
  animation: fadeUp 0.8s 0.2s ease both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 0.3s ease both;
}

.hero-image {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeIn 1s 0.3s ease both;
}

.hero-image img {
  width: min(380px, 90%);
  filter: drop-shadow(0 20px 60px rgba(200,16,46,0.4));
  animation: float 6s ease-in-out infinite;
}

.flag-stripe {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 6px;
  background: linear-gradient(90deg, #C8102E 0%, #C8102E 33%, white 33%, white 66%, #1A1F4B 66%);
}

/* ========== BUTTONS ========== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--thai-red);
  color: white;
  padding: 16px 36px;
  border-radius: 50px;
  font-family: 'Kanit', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 30px rgba(200,16,46,0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(200,16,46,0.55);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--thai-gold);
  padding: 16px 36px;
  border-radius: 50px;
  font-family: 'Kanit', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid rgba(245,166,35,0.5);
  transition: background 0.2s, border-color 0.2s;
}

.btn-secondary:hover {
  background: rgba(245,166,35,0.1);
  border-color: var(--thai-gold);
}

/* ========== BANNER ========== */
.banner-section { padding: 20px 40px 40px; position: relative; }

.banner-section img {
  width: 100%;
  max-width: 900px;
  display: block;
  margin: 0 auto;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  border: 1px solid rgba(245,166,35,0.15);
}

/* ========== PHONE BAR ========== */
.phone-bar {
  background: var(--thai-red);
  padding: 20px 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  text-align: center;
}

.phone-bar .label {
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.85;
}

.phone-bar a {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: white;
  text-decoration: none;
  letter-spacing: 2px;
  transition: opacity 0.2s;
}

.phone-bar a:hover { opacity: 0.85; }
.phone-icon { font-size: 2rem; }

/* ========== INFO STRIP ========== */
.info-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(245,166,35,0.1);
  border-bottom: 1px solid rgba(245,166,35,0.1);
}

.info-item {
  padding: 36px 40px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  border-right: 1px solid rgba(245,166,35,0.1);
}

.info-item:last-child { border-right: none; }
.info-icon { font-size: 2rem; flex-shrink: 0; margin-top: 4px; }

.info-label {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--thai-gold);
  margin-bottom: 6px;
}

.info-value { font-size: 1rem; font-weight: 600; line-height: 1.5; }
.info-sub { font-size: 0.85rem; opacity: 0.6; font-weight: 300; }

/* ========== SECTION SHARED ========== */
section { position: relative; }

.section-header { text-align: center; padding: 80px 40px 50px; }

.section-tag {
  display: inline-block;
  color: var(--thai-gold);
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.1;
}

.section-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--thai-red), var(--thai-gold));
  margin: 20px auto 0;
  border-radius: 3px;
}

/* ========== ABOUT ========== */
.about {
  padding: 20px 60px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.about-text p {
  font-size: 1.05rem;
  line-height: 1.9;
  opacity: 0.8;
  margin-bottom: 20px;
  font-weight: 300;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 36px;
}

.feature-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(245,166,35,0.12);
  border-radius: 14px;
  padding: 22px;
  transition: border-color 0.3s, background 0.3s;
}

.feature-card:hover {
  border-color: rgba(245,166,35,0.4);
  background: rgba(245,166,35,0.06);
}

.feature-card .icon { font-size: 2rem; margin-bottom: 10px; }
.feature-card h3 { font-size: 0.95rem; font-weight: 600; margin-bottom: 6px; }
.feature-card p { font-size: 0.82rem; opacity: 0.6; font-weight: 300; line-height: 1.5; }

/* ========== MENU ========== */
#menu { background: rgba(255,255,255,0.02); }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  padding: 0 60px 50px;
  max-width: 1280px;
  margin: 0 auto;
}

.menu-card {
  background: linear-gradient(145deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid rgba(245,166,35,0.1);
  border-radius: 20px;
  padding: 28px 24px;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.menu-card::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(245,166,35,0.08), transparent 70%);
  border-radius: 50%;
}

.menu-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245,166,35,0.35);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.menu-emoji { font-size: 2.8rem; margin-bottom: 14px; display: block; }

.menu-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.menu-card p {
  font-size: 0.88rem;
  opacity: 0.65;
  line-height: 1.6;
  font-weight: 300;
  margin-bottom: 16px;
}

.menu-tag {
  display: inline-block;
  background: rgba(200,16,46,0.2);
  border: 1px solid rgba(200,16,46,0.3);
  color: #ff6b8a;
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
}

.menu-tag.spicy { background: rgba(255,107,53,0.2); border-color: rgba(255,107,53,0.3); color: var(--accent-orange); }
.menu-tag.vegan { background: rgba(45,122,79,0.2); border-color: rgba(45,122,79,0.3); color: #5dd896; }



/* ========== MENU CTA ========== */
#menu { background: rgba(255,255,255,0.02); }

.menu-cta-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 60px 80px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
}

.menu-cta-badge {
  display: inline-block;
  background: rgba(245,166,35,0.12);
  border: 1px solid rgba(245,166,35,0.3);
  color: var(--thai-gold);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 40px;
  margin-bottom: 24px;
}

.menu-cta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  animation: none;
}

.menu-cta-desc {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.8;
  opacity: 0.7;
  max-width: 520px;
  margin-bottom: 36px;
}

.menu-cta-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.menu-cta-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.menu-cta-tags span {
  font-size: 0.8rem;
  font-weight: 400;
  opacity: 0.5;
  padding: 4px 12px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 40px;
  transition: opacity 0.2s, border-color 0.2s;
}

.menu-cta-tags span:hover {
  opacity: 0.9;
  border-color: rgba(245,166,35,0.3);
}

/* Animated emoji orbit */
.menu-cta-visual {
  position: relative;
  width: 260px;
  height: 260px;
  flex-shrink: 0;
}

.menu-cta-circle {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 5rem;
  filter: drop-shadow(0 0 30px rgba(200,16,46,0.4));
  animation: float 5s ease-in-out infinite;
}

.menu-cta-orbit {
  position: absolute;
  font-size: 1.8rem;
  animation: orbit linear infinite;
}

.menu-cta-orbit--1 { animation-duration: 8s;  top: 0;   left: 50%; transform-origin: 0 130px; }
.menu-cta-orbit--2 { animation-duration: 11s; top: 50%; left: 100%; transform-origin: -130px 0; animation-delay: -3s; }
.menu-cta-orbit--3 { animation-duration: 9s;  bottom: 0; left: 50%; transform-origin: 0 -130px; animation-delay: -6s; }
.menu-cta-orbit--4 { animation-duration: 13s; top: 50%; left: 0;   transform-origin: 130px 0; animation-delay: -1s; }

@keyframes orbit {
  from { transform: rotate(0deg) translateX(0); }
  to   { transform: rotate(360deg) translateX(0); }
}

/* ========== HOW TO ORDER ========== */
.order-section {
  padding: 20px 60px 80px;
  max-width: 1000px;
  margin: 0 auto;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 10px;
}

.step {
  text-align: center;
  position: relative;
}

.step::after {
  content: '→';
  position: absolute;
  right: -24px;
  top: 28px;
  font-size: 1.5rem;
  color: rgba(245,166,35,0.3);
}

.step:last-child::after { display: none; }

.step-num {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--thai-red), #8b0000);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 900;
  margin: 0 auto 18px;
  box-shadow: 0 8px 25px rgba(200,16,46,0.4);
}

.step h3 { font-size: 1.05rem; font-weight: 600; margin-bottom: 10px; }
.step p { font-size: 0.88rem; opacity: 0.65; line-height: 1.6; font-weight: 300; }

/* ========== ADDRESS / MAP ========== */
.address-section {
  background: rgba(255,255,255,0.025);
  padding: 80px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  max-width: 1280px;
  margin: 0 auto;
}

.address-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 900;
  margin-bottom: 30px;
}

.address-info h2 span { color: var(--thai-gold); }

.address-block { display: flex; flex-direction: column; gap: 22px; }

.addr-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(245,166,35,0.1);
  border-radius: 14px;
}

.addr-row .icon { font-size: 1.5rem; flex-shrink: 0; }
.addr-row .text { font-size: 0.95rem; line-height: 1.6; font-weight: 400; }
.addr-row .text strong { display: block; font-weight: 600; }
.addr-row .text span { opacity: 0.65; font-weight: 300; font-size: 0.88rem; }

.map-wrapper {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(245,166,35,0.2);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  height: 400px;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(30%) invert(90%) hue-rotate(175deg) brightness(0.75) contrast(1.1) saturate(0.7);
}

.hours-table { width: 100%; border-collapse: collapse; margin-top: 30px; }
.hours-table tr { border-bottom: 1px solid rgba(255,255,255,0.07); }
.hours-table td { padding: 12px 4px; font-size: 0.9rem; }
.hours-table td:last-child { text-align: center; color: var(--thai-gold); font-weight: 600; }

/* ========== FOOTER ========== */
footer {
  background: #080a12;
  padding: 50px 60px 30px;
  border-top: 1px solid rgba(245,166,35,0.1);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 40px;
}

.footer-brand img { height: 60px; margin-bottom: 16px; filter: drop-shadow(0 0 6px rgba(245,166,35,0.3)); }
.footer-brand p { font-size: 0.88rem; opacity: 0.55; line-height: 1.7; font-weight: 300; max-width: 260px; }

.footer-col h4 {
  font-size: 0.75rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--thai-gold);
  margin-bottom: 20px;
}

.footer-col ul { 
  flex-direction: column;
  gap: 5px;
  list-style: none;
}
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 0.9rem; font-weight: 300; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--thai-white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  opacity: 0.4;
}

/* ========== FLOATING CTA ========== */
.float-cta {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 200;
}

.float-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 50px;
  font-family: 'Kanit', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  color: white;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 30px rgba(0,0,0,0.5);
}

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

.float-phone {
  background: var(--thai-red);
  box-shadow: 0 8px 30px rgba(200,16,46,0.5);
}

/* ========== ANIMATIONS ========== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-18px); }
}

/* ========== SCROLL REVEAL ========== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
  header {
    padding-top: calc(14px + env(safe-area-inset-top));
    padding-left: calc(40px + env(safe-area-inset-left));
    padding-right: calc(40px + env(safe-area-inset-right));
  }
  nav ul { display: none; }
  .hamburger { display: flex; }

  .hero { grid-template-columns: 1fr; padding: 90px 24px 50px; text-align: center; }
  .hero-desc { margin: 0 auto 32px; }
  .hero-actions { justify-content: center; }
  .hero-image { order: -1; }

  .info-strip { grid-template-columns: 1fr; }
  .info-item { border-right: none; border-bottom: 1px solid rgba(245,166,35,0.1); }

  .about { grid-template-columns: 1fr; padding: 20px 24px 60px; gap: 40px; }

  .menu-grid { padding: 0 24px 60px; }

  .steps { grid-template-columns: 1fr; gap: 30px; }
  .step::after { display: none; }
  .order-section { padding: 20px 24px 60px; }

  .address-section { grid-template-columns: 1fr; padding: 40px 24px; gap: 40px; }

  .footer-top { grid-template-columns: 1fr; gap: 30px; }
  footer {
    padding: 40px 24px 24px;

    .footer-col ul {
      display: flex;
      flex-direction: column;
      gap: 15px;

      li {
        margin-bottom: 0;
      }
    }
  }

  .phone-bar { padding: 18px 24px; flex-direction: column; gap: 8px; }
  .phone-bar a { font-size: 1.8rem; }

  .banner-section { padding: 20px 20px 30px; }

  .menu-cta-section {
    gap: 0;
  }

  .menu-cta-visual {
    display: none;
  } 
}


/* ========== MAP CONSENT BANNER ========== */
.map-consent {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border-radius: 20px;
  padding: 32px 24px;
}

.map-consent__inner {
  text-align: center;
  max-width: 380px;
}

.map-consent__icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 16px;
}

.map-consent__inner h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--thai-white);
}

.map-consent__inner p {
  font-size: 0.83rem;
  line-height: 1.7;
  opacity: 0.6;
  font-weight: 300;
  margin-bottom: 24px;
}

.map-consent__inner p a {
  color: var(--thai-gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.map-consent__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.map-consent__accept {
  background: var(--thai-red);
  color: white;
  border: none;
  padding: 13px 28px;
  border-radius: 50px;
  font-family: 'Kanit', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.3px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 6px 20px rgba(200,16,46,0.4);
}

.map-consent__accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(200,16,46,0.55);
}

.map-consent__external {
  color: rgba(255,255,255,0.45);
  font-size: 0.82rem;
  text-decoration: none;
  transition: color 0.2s;
}

.map-consent__external:hover {
  color: var(--thai-gold);
}

/* Loaded state – hide consent, show iframe */
.map-wrapper.map-loaded .map-consent {
  display: none;
}

.map-wrapper iframe {
  display: none;
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(30%) invert(90%) hue-rotate(175deg) brightness(0.75) contrast(1.1) saturate(0.7);
}

.map-wrapper.map-loaded iframe {
  display: block;
}

