/* Reset & Design System Tokens */
:root {
  /* Colors - Editorial dark with warm accent */
  --bg-dark: #0b0d11;
  --bg-card: rgba(255, 255, 255, 0.05);
  --text-main: rgba(255, 255, 255, 0.92);
  --text-muted: rgba(255, 255, 255, 0.66);
  --gold-primary: #c8a25a;
  --gold-light: #f1dfb2;
  --gold-dark: #9a7736;
  --border-color: rgba(200, 162, 90, 0.22);
  --overlay: rgba(11, 13, 17, 0.84);

  /* Typography */
  --font-heading: "Playfair Display", ui-serif, Georgia, "Times New Roman", serif;
  --font-text: "Inter", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji",
    "Segoe UI Emoji";

  /* Spacing */
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 2rem;
  --space-xl: 4rem;
  --space-xxl: 6rem;

  /* Transitions & Shadows */
  --transition: all 0.28s cubic-bezier(0.2, 0.75, 0.25, 1);
  --shadow-glow: 0 10px 40px rgba(200, 162, 90, 0.12);
  --shadow-card: 0 18px 50px rgba(0, 0, 0, 0.46);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  color: var(--text-main);
  background-color: var(--bg-dark);
  line-height: 1.6;
  overflow-x: hidden;
  font-family: var(--font-text);
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Subtle background texture */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(900px 520px at 18% -10%, rgba(200, 162, 90, 0.16), transparent 60%),
    radial-gradient(880px 520px at 86% 8%, rgba(120, 164, 255, 0.10), transparent 62%),
    radial-gradient(900px 520px at 50% 110%, rgba(200, 162, 90, 0.10), transparent 60%),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.02), transparent 35%);
  opacity: 0.9;
  z-index: -1;
}

/* Typography styles */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading) !important;
  letter-spacing: -0.02em;
  text-transform: none;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: 1.5rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

/* Utilities */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.section {
  padding: var(--space-xxl) 0;
}

.center-text {
  text-align: center;
}

.grid {
  display: grid;
  gap: var(--space-lg);
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: var(--space-md) 0;
  z-index: 100;
  transition: var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(15, 17, 21, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  padding: var(--space-sm) 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav-link {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--gold-primary);
  transition: var(--transition);
}

.nav-link:hover::after {
  width: 100%;
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.8rem;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
  transition: var(--transition);
  gap: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
}

.btn-sm {
  padding: 0.5rem 1.2rem;
  font-size: 0.85rem;
}

.btn-large {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  color: var(--bg-dark);
  border: none;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.btn-outline {
  border-color: var(--gold-primary);
  color: var(--gold-primary);
  background: transparent;
}

.btn-outline:hover {
  background: var(--gold-primary);
  color: var(--bg-dark);
}

.btn-zalo {
  background: #0068FF;
  /* Zalo Official Color */
  color: white;
}

.btn-zalo:hover {
  background: #0056d6;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 104, 255, 0.3);
}


/* Hero Section */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(900px 520px at 50% 20%, rgba(200, 162, 90, 0.14), transparent 60%),
    linear-gradient(to bottom, rgba(11, 13, 17, 0.40), var(--bg-dark));
}

.hero-content {
  text-align: center;
  max-width: 900px;
  z-index: 1;
}

.badge {
  display: inline-block;
  padding: 0.4rem 1.2rem;
  /* Tăng nhẹ padding cho cân đối */
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--border-color);
  color: var(--gold-primary);
  border-radius: 50px;
  font-size: 0.75rem;
  /* Nhỏ hơn một chút để trông tinh tế hơn */
  font-weight: 500;
  letter-spacing: 4px;
  /* Tăng khoảng cách chữ cực rộng cho Badge */
  text-transform: uppercase;
  margin-bottom: var(--space-md);
}

.hero-title {
  font-size: 3.5rem;
  /* Có thể điều chỉnh tùy thiết kế */
  font-weight: 600;
  margin-bottom: var(--space-md);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  /* Khoảng cách chữ đặc trưng của phong cách Luxury */
  line-height: 1.1;
  color: #ffffff;
}

.hero-title span {
  display: block;
  /* Xuống dòng cho đẹp */
  margin-top: 0.5rem;
  color: var(--gold-primary);
  font-weight: 300;
  /* Dùng nét mỏng cho phần "ĐỐI TÁC CHIẾN LƯỢC" để tạo tương phản */
  font-style: normal;
  /* Thường Futura Luxury không dùng Italic cho tiêu đề chính */
  letter-spacing: 0.2em;
  /* Giãn chữ rộng hơn nữa cho dòng phụ */
}

.hero-subtitle {
  font-size: 1rem;
  font-weight: 300;
  /* Nét mảnh cho thanh thoát */
  color: var(--text-muted);
  margin-bottom: var(--space-xl);
  max-width: 700px;
  margin-inline: auto;
  line-height: 1.8;
  letter-spacing: 0.05em;
}

.hero-actions {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
}

.hero-actions .btn {
  font-family: inherit;
  /* Kế thừa Futura từ .hero */
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
  font-size: 0.85rem;
}

@media (max-width: 576px) {
  .hero-actions {
    flex-direction: column;
    padding: 0 20px;
  }

  .hero-title {
    font-size: 2.2rem;
  }
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0.7;
  animation: pulse 2s infinite;
}

.scroll-indicator span {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.mouse {
  width: 24px;
  height: 36px;
  border: 2px solid var(--text-muted);
  border-radius: 12px;
  position: relative;
}

.mouse::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background: var(--gold-primary);
  border-radius: 50%;
  animation: scrollDown 1.5s infinite;
}

/* Common Section Styles */
.section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.section-title {
  margin-bottom: var(--space-sm);
  color: var(--gold-primary);
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.1rem;
}

.card {
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: var(--space-lg);
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-primary);
  box-shadow: var(--shadow-glow);
}

/* USPs Section */
.usps-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.usp-card {
  position: relative;
  overflow: hidden;
}

.card-icon {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: rgba(212, 175, 55, 0.2);
  position: absolute;
  top: -10px;
  right: 10px;
  font-weight: 700;
  transition: var(--transition);
}

.usp-card:hover .card-icon {
  color: rgba(212, 175, 55, 0.4);
}

.usp-card h3 {
  margin-bottom: var(--space-sm);
  color: var(--text-main);
  position: relative;
  z-index: 1;
}

.usp-card p {
  color: var(--text-muted);
  position: relative;
  z-index: 1;
}

.usp-card strong {
  color: var(--gold-light);
}

/* Policy Section */
.policy-section {
  background: linear-gradient(180deg, var(--bg-dark), #14171d);
}

.policy-grid {
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--space-xl);
}

@media (max-width: 992px) {
  .policy-grid {
    grid-template-columns: 1fr;
  }

  .policy-image {
    order: 2;
    margin-top: var(--space-lg);
  }
}

.policy-image {
  position: relative;
}

.image-wrapper {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-card);
}

.image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper:hover img {
  transform: scale(1.05);
}

.floating-box {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
  padding: var(--space-md);
  border-radius: 14px;
  box-shadow: var(--shadow-card);
}

.floating-box h4 {
  color: var(--gold-primary);
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}

.floating-box p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

@media (max-width: 768px) {
  .floating-box {
    right: 10px;
    bottom: 10px;
  }
}

.benefit-list {
  list-style: none;
  margin-top: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.benefit-list li {
  display: flex;
  gap: var(--space-md);
}

.benefit-icon {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  background: rgba(200, 162, 90, 0.10);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.9);
}

.benefit-text strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
  color: var(--text-main);
}

.benefit-text p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Menu Section */
.menu-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.menu-item {
  text-align: left;
}

.menu-item h3 {
  color: var(--gold-primary);
  margin-bottom: var(--space-sm);
  font-family: var(--font-heading);
  font-style: italic;
}

/* CTA Section */
.cta-section {
  background: url('image3d.jpg') center/cover no-fixed;
  position: relative;
  padding: 6rem 0;
}

@supports (background-attachment: fixed) {
  .cta-section {
    background-attachment: fixed;
  }
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 17, 21, 0.9);
}

.cta-section .container {
  position: relative;
  z-index: 1;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

/* Footer */
.footer {
  background: #000;
  padding: var(--space-xl) 0 var(--space-md) 0;
  border-top: 1px solid #222;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.footer-info h3 {
  color: var(--gold-primary);
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.footer-info p {
  color: var(--text-muted);
}

.footer-contact p {
  color: var(--text-muted);
  margin-bottom: 0.25rem;
  font-size: 0.9rem;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #222;
  padding-top: var(--space-md);
  color: #555;
  font-size: 0.85rem;
}

/* Showcase Section */
.showcase-grid {
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

@media (max-width: 768px) {
  .showcase-grid {
    grid-template-columns: 1fr;
  }
}

.showcase-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  height: 350px;
}

.showcase-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.showcase-item:hover img {
  transform: scale(1.05);
}

.showcase-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  padding: 3rem 1.5rem 1rem 1.5rem;
  color: var(--gold-primary);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  pointer-events: none;
}

.location-badge {
  display: inline-block;
  margin-bottom: 0.5rem;
  color: var(--gold-primary);
  font-weight: 500;
  background: rgba(212, 175, 55, 0.1);
  padding: 0.3rem 0.8rem;
  border-radius: 4px;
  border: 1px solid var(--border-color);
  font-size: 0.9rem;
}

/* Signature Dishes */
.signature-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.signature-card {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border-radius: 14px;
  background: rgba(22, 25, 31, 0.88);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.signature-img-placeholder {
  position: relative;
  height: 260px;
  background: #12151c;
  overflow: hidden;
  border-bottom: 1px solid var(--border-color);
}

.signature-img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease, filter 0.6s ease;
  filter: saturate(1.05) contrast(1.05);
}

.signature-img-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(8, 10, 14, 0.85) 0%, rgba(8, 10, 14, 0.2) 40%, rgba(8, 10, 14, 0) 100%),
    linear-gradient(to right, rgba(212, 175, 55, 0.08), rgba(212, 175, 55, 0));
  pointer-events: none;
}

.signature-card:hover .signature-img-placeholder img {
  transform: scale(1.08);
  filter: saturate(1.15) contrast(1.08);
}

.signature-info {
  padding: 1.4rem 1.4rem 1.6rem;
  flex-grow: 1;
  text-align: left;
}

.signature-info h3 {
  color: var(--gold-primary);
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  font-family: var(--font-heading);
}

.signature-info p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .signature-img-placeholder {
    height: 220px;
  }
}

/* Footer Certificates */
.footer-certs {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 992px) {
  .footer-certs {
    width: 100%;
    order: 3;
    margin-top: 1rem;
    justify-content: flex-start;
  }

  .footer-contact {
    order: 2;
  }
}

.footer-cert-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  padding: 0.5rem 1rem;
  border-radius: 4px;
  border: 1px solid #333;
  transition: var(--transition);
}

.footer-cert-item:hover {
  border-color: var(--gold-primary);
  background: rgba(212, 175, 55, 0.1);
  transform: translateY(-2px);
}

.cert-icon {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, var(--gold-light), var(--gold-primary));
  box-shadow: 0 0 0 3px rgba(200, 162, 90, 0.12);
}

.footer-cert-item span:not(.cert-icon) {
  font-weight: 500;
  color: var(--text-muted);
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

.footer-cert-item:hover span:not(.cert-icon) {
  color: var(--gold-primary);
}

/* Unique Button Styles */
.btn-glowing {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
  color: #0b0d11;
  box-shadow: var(--shadow-glow);
  border: none;
}

.btn-glowing:hover {
  transform: scale(1.05);
  box-shadow: 0 18px 60px rgba(200, 162, 90, 0.22);
}

.btn-huge {
  font-size: 1.2rem;
  padding: 1.2rem 3rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  border-radius: 999px;
}

@media (max-width: 576px) {
  .btn-huge {
    font-size: 1rem;
    padding: 1rem 2rem;
  }
}

/* Modal Overlay */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(10, 12, 16, 0.95);
  backdrop-filter: blur(15px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  overflow-y: auto;
  padding: 2rem 1rem;
}

.modal.active {
  opacity: 1;
  pointer-events: all;
}

.modal-content {
  position: relative;
  width: 90%;
  max-width: 1000px;
  margin: auto;
  background: rgba(26, 29, 36, 0.8);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 3rem 2rem;
  text-align: center;
  transform: translateY(30px) scale(0.95);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal.active .modal-content {
  transform: translateY(0) scale(1);
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 2.5rem;
  cursor: pointer;
  transition: var(--transition);
  line-height: 1;
}

.close-modal:hover {
  color: var(--gold-primary);
  transform: rotate(90deg);
}

.modal-title {
  color: var(--gold-primary);
  font-size: 2rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.modal-subtitle {
  color: var(--text-main);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.modal-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin-bottom: 2.5rem;
}

.gallery-item {
  position: relative;
  height: 250px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  cursor: pointer;
}

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

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 1rem;
}

.gallery-overlay h3 {
  color: var(--gold-light);
  font-family: var(--font-heading);
  font-size: 1.2rem;
  transform: translateY(10px);
  opacity: 0.8;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay h3 {
  transform: translateY(0);
  opacity: 1;
}

.modal-cta p {
  margin-bottom: 1rem;
  color: var(--text-muted);
}


/* ============================================================
   CORE VALUES SECTION — Luxury B2B Editorial Dark
   ============================================================ */
.core-values-section {
  background: #1A1410;
  padding: 8rem 0 0 0;
  position: relative;
}

/* Label & Header */
.cv-header-block {
  margin-bottom: 5rem;
}

.cv-label {
  font-family: var(--font-text) !important;
  letter-spacing: 0.15em;
  /* Futura cần giãn chữ mới đẹp */
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #B8912A;
  margin-bottom: 2rem;
}

.cv-title {
  font-family: var(--font-heading) !important;
  text-transform: uppercase;
  /* Phong cách Eleven Madison Park */
  font-weight: 500;
  color: #F5EDD6;
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.cv-title-italic {
  font-style: italic;
  color: #D4A94A;
  font-weight: 300;
}

/* 3 Card Grid */
.cv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: rgba(184, 145, 42, 0.15);
  /* Gap color */
  border: 0.5px solid rgba(184, 145, 42, 0.2);
}

@media (max-width: 992px) {
  .cv-grid {
    grid-template-columns: 1fr;
    gap: 1.5px;
  }
}

/* Card Style */
.cv-card {
  position: relative;
  background: #201C17;
  padding: 40px 36px;
  border-radius: 0;
  overflow: hidden;
  transition: background 0.3s ease, border-color 0.3s ease;
  min-height: 320px;
  display: flex;
  flex-direction: column;
}

.cv-card:hover {
  background: #2A2520;
}

/* Tag */
.cv-tag {
  display: inline-block;
  font-family: var(--font-text) !important;
  letter-spacing: 0.15em;
  /* Futura cần giãn chữ mới đẹp */
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #B8912A;
  border: 0.5px solid rgba(184, 145, 42, 0.4);
  padding: 4px 12px;
  margin-bottom: 24px;
  align-self: flex-start;
  transition: border-color 0.3s ease;
}

.cv-card:hover .cv-tag {
  border-color: #B8912A;
}

/* Title Card */
.cv-card-title {
  font-family: var(--font-heading) !important;
  text-transform: uppercase;
  /* Phong cách Eleven Madison Park */
  font-weight: 500;
  color: #F5EDD6;
  line-height: 1.2;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}

/* Desc */
.cv-desc {
  font-family: var(--font-text) !important;
  letter-spacing: 0.15em;
  /* Futura cần giãn chữ mới đẹp */
  font-size: 14px;
  font-weight: 300;
  color: rgba(245, 237, 214, 0.55);
  line-height: 1.75;
  margin: 0;
  max-width: 90%;
  position: relative;
  z-index: 2;
}

/* Background Number Decor */
.cv-bg-num {
  position: absolute;
  bottom: 20px;
  right: 24px;
  font-family: var(--font-heading) !important;
  text-transform: uppercase;
  /* Phong cách Eleven Madison Park */
  font-weight: 500;
  font-size: 80px;
  color: rgba(184, 145, 42, 0.07);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 1;
}

/* Hover State */
.cv-card:hover {
  border-color: rgba(184, 145, 42, 0.5);
}

/* == Stats Bar == */
.cv-stats-bar {
  border-top: 0.5px solid rgba(184, 145, 42, 0.12);
  padding: 36px 40px;
  background: #1A1410;
}

.cv-stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 64px;
  flex-wrap: wrap;
}

.cv-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}

.cv-stat-num {
  font-family: var(--font-heading) !important;
  text-transform: uppercase;
  /* Phong cách Eleven Madison Park */
  font-weight: 500;
  font-size: 38px;
  color: #D4A94A;
  line-height: 1;
}

.cv-stat-label {
  font-family: var(--font-text) !important;
  letter-spacing: 0.15em;
  /* Futura cần giãn chữ mới đẹp */
  font-size: 10px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(245, 237, 214, 0.35);
}

.cv-stat-divider {
  width: 1px;
  height: 44px;
  background: rgba(184, 145, 42, 0.15);
}

@media (max-width: 768px) {
  .cv-stats-inner {
    gap: 32px;
  }

  .cv-stat-divider {
    display: none;
  }

  .cv-stat {
    width: 45%;
  }
}

/* Animations (Reuse previous logic) */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.2s;
}

.delay-2 {
  transition-delay: 0.4s;
}

.delay-3 {
  transition-delay: 0.6s;
}

/* ============================================
   PRICING SECTION — Commission-Focused Luxury
   ============================================ */
.pricing-section {
  background: #1A1410;
  position: relative;
  overflow: hidden;
}

.pricing-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(0deg, transparent, transparent 79px,
      rgba(184, 145, 42, 0.04) 80px);
  pointer-events: none;
}

/* Header */
.pricing-header {
  text-align: center;
  margin-bottom: 4rem;
}

.pricing-eyebrow {
  display: inline-block;
  font-family: var(--font-text) !important;
  letter-spacing: 0.15em;
  /* Futura cần giãn chữ mới đẹp */
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #B8912A;
  margin-bottom: 1.2rem;
  position: relative;
}

.pricing-eyebrow::before,
.pricing-eyebrow::after {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: #B8912A;
  vertical-align: middle;
  margin: 0 10px;
  opacity: 0.6;
}

.pricing-title {
  font-family: var(--font-heading) !important;
  text-transform: uppercase;
  /* Phong cách Eleven Madison Park */
  font-weight: 500;
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: #F0E8D8;
  line-height: 1.15;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.pricing-title em {
  font-style: italic;
  color: #B8912A;
  font-weight: 300;
}

.pricing-subtitle {
  font-family: var(--font-text) !important;
  letter-spacing: 0.15em;
  /* Futura cần giãn chữ mới đẹp */
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(240, 232, 216, 0.5);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.75;
}

/* Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid rgba(184, 145, 42, 0.18);
  border-radius: 2px;
  overflow: hidden;
}

@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    border: none;
    gap: 1px;
    background: rgba(184, 145, 42, 0.12);
  }
}

/* Card */
.pricing-card {
  position: relative;
  background: #1A1410;
  padding: 2.8rem 2rem 2.4rem;
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(184, 145, 42, 0.14);
  transition: background 0.3s ease;
}

.pricing-card:last-child {
  border-right: none;
}

.pricing-card:hover {
  background: #201c15;
}

@media (max-width: 900px) {
  .pricing-card {
    border-right: none;
    border-bottom: 1px solid rgba(184, 145, 42, 0.14);
  }

  .pricing-card:last-child {
    border-bottom: none;
  }
}

.pricing-card--featured {
  background: #1e1910;
  border-right: 2px solid #B8912A;
  border-left: 2px solid #B8912A;
  z-index: 1;
}

.pricing-card--featured:hover {
  background: #231e13;
}

.pt-popular {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: #B8912A;
  color: #1A1410;
  font-family: var(--font-text);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 0 0 4px 4px;
  white-space: nowrap;
}

/* Tag */
.pt-tag {
  font-family: var(--font-text) !important;
  letter-spacing: 0.15em;
  /* Futura cần giãn chữ mới đẹp */
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(184, 145, 42, 0.65);
  margin-bottom: 0.6rem;
  margin-top: 0.6rem;
}

.pt-tag--highlight {
  color: #B8912A;
}

.pricing-card--featured .pt-tag {
  margin-top: 1.6rem;
}

/* Name */
.pt-name {
  font-family: var(--font-heading) !important;
  text-transform: uppercase;
  /* Phong cách Eleven Madison Park */
  font-weight: 500;
  font-size: 2rem;
  color: #F0E8D8;
  line-height: 1;
  margin-bottom: 1.6rem;
}

/* Price Block (retail + commission) */
.pt-price-block {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.4rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(184, 145, 42, 0.1);
}

.pt-retail {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.pt-retail-label {
  font-family: var(--font-text) !important;
  letter-spacing: 0.15em;
  /* Futura cần giãn chữ mới đẹp */
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(240, 232, 216, 0.35);
  font-weight: 400;
}

.pt-retail-amount {
  font-family: var(--font-heading) !important;
  text-transform: uppercase;
  /* Phong cách Eleven Madison Park */
  font-weight: 500;
  font-size: 2.2rem;
  color: #F0E8D8;
  line-height: 1;
  letter-spacing: -0.5px;
}

.pt-retail-amount--contact {
  font-size: 1.3rem;
  font-style: italic;
  font-weight: 300;
  color: rgba(240, 232, 216, 0.7);
}

.pt-retail-unit {
  font-family: var(--font-text);
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(240, 232, 216, 0.4);
}

.pt-commission {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.pt-commission-label {
  font-family: var(--font-text) !important;
  letter-spacing: 0.15em;
  /* Futura cần giãn chữ mới đẹp */
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(184, 145, 42, 0.6);
  font-weight: 400;
}

.pt-commission-amount {
  font-family: var(--font-text);
  font-size: 0.95rem;
  font-weight: 500;
  color: #B8912A;
}

/* === REVENUE EXAMPLE — Key Visual === */
.pt-example {
  margin-bottom: 1.4rem;
  border-top: 1px solid rgba(184, 145, 42, 0.2);
  border-bottom: 1px solid rgba(184, 145, 42, 0.2);
  padding: 1rem 0;
}

.pt-example--featured {
  border-color: rgba(212, 169, 74, 0.4);
}

.pt-example--vip {
  border-color: rgba(184, 145, 42, 0.15);
}

.pt-example-inner {
  text-align: center;
}

.pt-example-label {
  display: block;
  font-family: var(--font-text);
  font-size: 0.6rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(184, 145, 42, 0.5);
  margin-bottom: 0.5rem;
}

.pt-example-text {
  font-family: var(--font-text) !important;
  text-transform: uppercase;
  /* Phong cách Eleven Madison Park */
  font-weight: 500;
  font-size: 1.5rem;
  color: rgba(240, 232, 216, 0.7);
  line-height: 1.4;
  margin: 0;
}

.pt-example-text strong {
  color: #D4A94A;
  font-weight: 600;
  font-size: 1.75rem;
  display: block;
}

.pt-example--featured .pt-example-text {
  color: rgba(240, 232, 216, 0.85);
}

.pt-example--featured .pt-example-text strong {
  color: #D4A94A;
  font-size: 2rem;
}

.pt-example-quote {
  font-size: 1.35rem;
  font-style: italic;
  font-weight: 300;
  color: rgba(184, 145, 42, 0.75);
  line-height: 1.5;
  margin: 0;
}

/* Divider */
.pt-divider {
  width: 36px;
  height: 1px;
  background: rgba(184, 145, 42, 0.3);
  margin-bottom: 1.4rem;
}

/* Includes */
.pt-includes {
  list-style: none;
  padding: 0;
  margin: 0;
  flex-grow: 1;
  margin-bottom: 1.8rem;
}

.pt-includes li {
  font-family: var(--font-text);
  font-size: 0.875rem;
  font-weight: 300;
  color: rgba(240, 232, 216, 0.7);
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(184, 145, 42, 0.06);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}

.pt-includes li:last-child {
  border-bottom: none;
}

.pt-check {
  color: #B8912A;
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 3px;
}

/* CTA Button */
.pt-btn {
  font-family: var(--font-text) !important;
  letter-spacing: 0.15em;
  /* Futura cần giãn chữ mới đẹp */
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 0.85rem 1rem;
  border-radius: 2px;
  border: 1px solid rgba(184, 145, 42, 0.45);
  color: #B8912A;
  background: transparent;
  text-align: center;
  display: block;
  width: 100%;
  transition: all 0.25s ease;
  margin-top: auto;
}

.pt-btn:hover {
  background: rgba(184, 145, 42, 0.1);
  border-color: #B8912A;
  color: #F0E8D8;
}

.pt-btn--featured {
  background: #B8912A;
  border-color: #B8912A;
  color: #1A1410;
}

.pt-btn--featured:hover {
  background: #D4A94A;
  border-color: #D4A94A;
}

/* Footnotes */
.pricing-footnotes {
  margin-top: 2.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.pricing-footnotes p {
  font-family: var(--font-text);
  font-size: 0.7rem;
  font-weight: 300;
  color: rgba(184, 145, 42, 0.4);
  letter-spacing: 0.2px;
  line-height: 1.6;
  margin: 0;
}

/* =========================================================================
   BACK-TO-MAIN BAR (doi-tac.html only)
   Fixed strip above the navbar — pushes .navbar and .hero down via sibling
   combinator so the rest of the partner page layout stays untouched.
   ========================================================================= */
.back-to-main {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 110;
  background: #0F0B08;
  border-bottom: 1px solid rgba(184, 145, 42, 0.15);
  padding: 0.55rem 0;
  padding-top: calc(0.55rem + env(safe-area-inset-top));
  font-family: var(--font-text);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
}
.back-to-main a {
  color: rgba(184, 145, 42, 0.85);
  text-decoration: none;
  transition: color 0.2s;
}
.back-to-main a:hover,
.back-to-main a:focus-visible {
  color: #D4A94A;
}
/* Push the partner page's fixed navbar and hero padding down by the bar height (~38px).
   IMPORTANT: include safe-area-inset-top because the bar itself grows by that amount on
   notched iPhones — otherwise the navbar would overlap the bottom of the bar by ~40px. */
.back-to-main + .navbar { top: calc(38px + env(safe-area-inset-top)); }
.back-to-main ~ .hero    { padding-top: calc(118px + env(safe-area-inset-top)); }
@media (max-width: 600px) {
  .back-to-main { font-size: 0.74rem; }
  .back-to-main + .navbar { top: calc(34px + env(safe-area-inset-top)); }
  .back-to-main ~ .hero    { padding-top: calc(110px + env(safe-area-inset-top)); }
}

/* =========================================================================
   MAIN SITE — index.html (Casa Mika restaurant, EN, luxury)
   Mobile-first. Breakpoints: 640 / 768 / 1024 / 1280.
   ========================================================================= */

.site-main {
  /* Scoped font override — does not affect doi-tac.html */
  --font-heading: "Cormorant Garamond", "Playfair Display", ui-serif, Georgia, "Times New Roman", serif;
  background: #1A1410;
  color: #FAF7F2;
  font-family: var(--font-text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.site-main .container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.25rem;
  box-sizing: border-box;
}
@media (min-width: 768px)  { .site-main .container { padding: 0 2rem; } }
@media (min-width: 1024px) { .site-main .container { padding: 0 2.5rem; } }

.site-main .center-text { text-align: center; }

/* ---------- Animations (reused with site-main scope) ---------- */
.site-main .fade-up   { opacity: 0; transform: translateY(22px); transition: opacity 1.4s cubic-bezier(.2,.7,.2,1), transform 1.4s cubic-bezier(.2,.7,.2,1); }
.site-main .fade-in   { opacity: 0; transition: opacity 1.6s ease; }
.site-main .fade-up.visible,
.site-main .fade-in.visible { opacity: 1; transform: translateY(0); }
.site-main .delay-1 { transition-delay: 0.25s; }
.site-main .delay-2 { transition-delay: 0.5s; }
.site-main .delay-3 { transition-delay: 0.85s; }

/* ---------- Nav ---------- */
.ms-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1rem 0;
  padding-top: calc(1rem + env(safe-area-inset-top));
  background: linear-gradient(180deg, rgba(15, 11, 8, 0.55), transparent);
  transition: background 0.35s ease, padding 0.35s ease, backdrop-filter 0.35s ease;
}
.ms-nav.scrolled {
  background: rgba(15, 11, 8, 0.92);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  padding: 0.65rem 0;
  padding-top: calc(0.65rem + env(safe-area-inset-top));
  border-bottom: 1px solid rgba(184, 145, 42, 0.12);
}
.ms-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.ms-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}
.ms-logo img { height: 34px; width: auto; display: block; }
.ms-logo-text {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  letter-spacing: 0.18em;
  color: #FAF7F2;
}
.ms-nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.ms-nav-link {
  color: #FAF7F2;
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 400;
  transition: color 0.3s;
  position: relative;
}
.ms-nav-link::after {
  content: '';
  position: absolute;
  left: 0; right: 100%;
  bottom: -6px;
  height: 1px;
  background: #B8912A;
  transition: right 0.35s ease;
}
.ms-nav-link:hover { color: #B8912A; }
.ms-nav-link:hover::after { right: 0; }

.ms-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}
.ms-nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: #FAF7F2;
  margin: 0 auto;
  transition: transform 0.35s, opacity 0.25s;
  transform-origin: center;
}
.ms-nav.open .ms-nav-toggle span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.ms-nav.open .ms-nav-toggle span:nth-child(2) { opacity: 0; }
.ms-nav.open .ms-nav-toggle span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 767px) {
  .ms-nav-links {
    position: fixed;
    inset: 0;
    background: rgba(15, 11, 8, 0.98);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 2rem;
    padding-top: calc(2rem + env(safe-area-inset-top));
    padding-bottom: calc(2rem + env(safe-area-inset-bottom));
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.4s ease, transform 0.4s ease;
  }
  .ms-nav.open .ms-nav-links {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .ms-nav-link {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    letter-spacing: 0.05em;
    text-transform: none;
    font-style: italic;
    color: #FAF7F2;
  }
  .ms-nav-link::after { display: none; }
  .ms-nav-toggle { display: flex; }
}

/* ---------- Buttons ---------- */
.ms-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.75rem;
  font-family: var(--font-text);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.3s, color 0.3s, border-color 0.3s, transform 0.3s;
  min-height: 48px;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}
.ms-btn-primary {
  background: #B8912A;
  color: #1A1410;
}
.ms-btn-primary:hover,
.ms-btn-primary:focus-visible {
  background: #D4A94A;
  transform: translateY(-2px);
}
.ms-btn-ghost {
  background: transparent;
  color: #FAF7F2;
  border-color: rgba(245, 237, 214, 0.4);
}
.ms-btn-ghost:hover,
.ms-btn-ghost:focus-visible {
  border-color: #B8912A;
  color: #B8912A;
}
.ms-btn-outline {
  background: transparent;
  color: #B8912A;
  border-color: #B8912A;
}
.ms-btn-outline:hover,
.ms-btn-outline:focus-visible {
  background: #B8912A;
  color: #1A1410;
}
.ms-btn-lg { padding: 1.15rem 2.4rem; }
.ms-btn-sm { padding: 0.6rem 1.4rem; font-size: 0.7rem; min-height: 40px; }
.ms-btn[disabled],
.ms-btn[aria-disabled="true"] {
  opacity: 0.45;
  cursor: not-allowed;
  background: transparent;
  color: #B8912A;
  border-color: rgba(184, 145, 42, 0.4);
  pointer-events: none;
}

/* ---------- Hero ---------- */
.ms-hero {
  position: relative;
  /* iOS-safe full viewport */
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}
.ms-hero-bg {
  position: absolute; inset: 0;
  z-index: -1;
  overflow: hidden;
}
.ms-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: msKenBurns 22s ease-in-out infinite alternate;
  will-change: transform;
}
.ms-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(26,20,16,0.28) 0%, rgba(26,20,16,0.18) 40%, rgba(26,20,16,0.78) 100%);
}
@keyframes msKenBurns {
  0%   { transform: scale(1)    translate(0, 0); }
  100% { transform: scale(1.09) translate(-1.5%, -2%); }
}
.ms-hero-content {
  position: relative;
  z-index: 2;
  padding-top: calc(6rem + env(safe-area-inset-top));
  padding-bottom: 6rem;
  max-width: 880px;
}
.ms-hero-eyebrow {
  display: inline-block;
  font-family: var(--font-text);
  font-size: 0.64rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: rgba(184, 145, 42, 0.85);
  margin-bottom: 2.4rem;
  font-weight: 400;
}
.ms-hero-title {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: clamp(2.8rem, 10.5vw, 7rem);
  line-height: 1.02;
  letter-spacing: -0.015em;
  margin: 0 0 3rem;
  color: #FAF7F2;
}
.ms-hero-title em {
  font-style: italic;
  color: #B8912A;
  font-weight: 400;
}
.ms-hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  align-items: flex-start;
}
@media (min-width: 480px) {
  .ms-hero-actions { flex-direction: row; flex-wrap: wrap; gap: 1.1rem; }
}

/* ---------- Photo-frame placeholder (for sections awaiting commissioned photos) ----------
   Use: <div class="ms-photo-frame" style="--ratio: 4/5;">
          <span class="ms-photo-frame-tag">Photo brief</span>
          <span class="ms-photo-frame-desc">Wide shot of dining room at golden hour…</span>
        </div>
   Replace with <img> when final photography is delivered. */
.ms-photo-frame {
  position: relative;
  width: 100%;
  aspect-ratio: var(--ratio, 4 / 3);
  background:
    radial-gradient(circle at 50% 50%, #1F1814 0%, #15100C 70%),
    #15100C;
  border: 1px dashed rgba(184, 145, 42, 0.32);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1.75rem;
  gap: 1.1rem;
  overflow: hidden;
}
.ms-photo-frame::before,
.ms-photo-frame::after {
  content: '';
  position: absolute;
  width: 22px;
  height: 22px;
  border: 1px solid rgba(184, 145, 42, 0.55);
}
.ms-photo-frame::before {
  top: 12px; left: 12px;
  border-right: 0;
  border-bottom: 0;
}
.ms-photo-frame::after {
  bottom: 12px; right: 12px;
  border-left: 0;
  border-top: 0;
}
.ms-photo-frame-tag {
  font-family: var(--font-text);
  font-size: 0.58rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: rgba(184, 145, 42, 0.7);
  font-weight: 500;
}
.ms-photo-frame-desc {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(0.92rem, 1.4vw, 1.08rem);
  color: rgba(245, 237, 214, 0.72);
  line-height: 1.55;
  max-width: 320px;
}
.ms-photo-frame-ratio {
  font-family: var(--font-text);
  font-size: 0.55rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(184, 145, 42, 0.42);
  font-weight: 400;
  margin-top: 0.2rem;
}

/* ---------- Section base ---------- */
.ms-section {
  padding: 6rem 0;
  background: #1A1410;
  color: #FAF7F2;
  position: relative;
}
@media (min-width: 768px)  { .ms-section { padding: 10rem 0; } }
@media (min-width: 1024px) { .ms-section { padding: 13rem 0; } }

.ms-eyebrow {
  display: inline-block;
  font-family: var(--font-text);
  font-size: 0.64rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: rgba(184, 145, 42, 0.85);
  margin-bottom: 1.6rem;
  font-weight: 400;
}
.ms-title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(2.1rem, 5.8vw, 4rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0 0 1.75rem;
  color: #FAF7F2;
}
.ms-title em {
  font-style: italic;
  color: #B8912A;
  font-weight: 400;
}
.ms-section-sub {
  font-size: clamp(0.92rem, 1.4vw, 1.02rem);
  line-height: 1.7;
  color: rgba(245, 237, 214, 0.6);
  max-width: 540px;
  margin: 0 auto;
  font-weight: 300;
}
.ms-lede, .ms-body {
  font-size: clamp(0.95rem, 1.25vw, 1.05rem);
  line-height: 1.8;
  color: rgba(245, 237, 214, 0.78);
  margin: 0 0 1.25rem;
  font-weight: 300;
}
.ms-lede {
  font-size: clamp(1.02rem, 1.55vw, 1.18rem);
  line-height: 1.65;
  color: rgba(245, 237, 214, 0.92);
}

/* ---------- The House (editorial 2-col) ---------- */
.ms-house { background: #1A1410; }
.ms-editorial {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .ms-editorial {
    grid-template-columns: 1.05fr 1fr;
    gap: 5rem;
  }
}
.ms-editorial-img {
  position: relative;
  overflow: hidden;
}
.ms-editorial-img img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  filter: saturate(0.92) brightness(0.95);
  transition: transform 1.6s ease, filter 0.6s ease;
}
.ms-editorial-img::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 50% 45%, transparent 55%, rgba(15, 11, 8, 0.3) 100%),
    linear-gradient(180deg, transparent 65%, rgba(26,20,16,0.35));
  pointer-events: none;
}
.ms-editorial-img:hover img { transform: scale(1.025); filter: saturate(1) brightness(1); }
.ms-house-meta {
  list-style: none;
  padding: 0;
  margin: 2.25rem 0 0;
  display: grid;
  gap: 0;
}
.ms-house-meta li {
  display: flex;
  flex-direction: column;
  padding: 1.1rem 0;
  border-top: 1px solid rgba(184, 145, 42, 0.18);
}
.ms-house-meta li:last-child { border-bottom: 1px solid rgba(184, 145, 42, 0.18); }
.ms-house-meta li strong {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.4vw, 1.75rem);
  font-weight: 500;
  color: #B8912A;
  margin-bottom: 0.2rem;
  letter-spacing: -0.005em;
}
.ms-house-meta li span {
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  color: rgba(245, 237, 214, 0.6);
  font-weight: 300;
}

/* ---------- Quiet pull-quote (between House and Day) ---------- */
.ms-quote {
  background: #1A1410;
  padding: 9rem 0;
}
@media (min-width: 768px)  { .ms-quote { padding: 13rem 0; } }
@media (min-width: 1024px) { .ms-quote { padding: 16rem 0; } }
.ms-quote-body {
  margin: 0 auto;
  max-width: 880px;
  text-align: center;
}
.ms-quote-body p {
  font-family: var(--font-heading);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.8rem, 4.6vw, 3.4rem);
  line-height: 1.3;
  letter-spacing: -0.005em;
  color: rgba(245, 237, 214, 0.92);
  margin: 0;
}
.ms-quote-body em {
  font-style: italic;
  color: #B8912A;
  font-weight: 400;
}

/* ---------- A Day at Casa Mika ---------- */
.ms-day { background: #15100C; }
.ms-day-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-top: 3.5rem;
}
@media (min-width: 640px)  { .ms-day-grid { grid-template-columns: repeat(2, 1fr); gap: 2.25rem; margin-top: 4.5rem; } }
@media (min-width: 1024px) { .ms-day-grid { grid-template-columns: repeat(4, 1fr); gap: 1.75rem; margin-top: 6.5rem; } }
.ms-day-card { text-align: left; }
.ms-day-img {
  position: relative;
  overflow: hidden;
  margin-bottom: 1.4rem;
  aspect-ratio: 3 / 4;
  background: #0F0B08;
}
.ms-day-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.9) brightness(0.93);
  transition: transform 1.4s cubic-bezier(.2,.7,.2,1), filter 0.6s ease;
}
.ms-day-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 45%, transparent 55%, rgba(15, 11, 8, 0.32) 100%),
    linear-gradient(180deg, transparent 60%, rgba(15, 11, 8, 0.4));
  pointer-events: none;
}
.ms-day-card:hover .ms-day-img img { transform: scale(1.045); filter: saturate(1) brightness(1); }
.ms-day-time {
  font-size: 0.66rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: #B8912A;
  display: block;
  margin-bottom: 0.45rem;
  font-weight: 500;
}
.ms-day-name {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: clamp(1.4rem, 2.4vw, 1.7rem);
  margin: 0 0 0.5rem;
  color: #FAF7F2;
}
.ms-day-mood {
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(245, 237, 214, 0.7);
  font-weight: 300;
  margin: 0;
}

/* ---------- Signature ---------- */
.ms-signature-section { background: #1A1410; }
.ms-signature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3.5rem;
}
@media (min-width: 768px)  { .ms-signature-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 4.5rem; } }
@media (min-width: 1024px) { .ms-signature-grid { margin-top: 6.5rem; gap: 2.25rem; } }
.ms-sig-card {
  background: rgba(46, 40, 32, 0.4);
  border: 1px solid rgba(184, 145, 42, 0.14);
  overflow: hidden;
  transition: transform 0.5s ease, border-color 0.5s ease, background 0.5s ease;
  display: flex;
  flex-direction: column;
}
.ms-sig-card:hover {
  transform: translateY(-6px);
  border-color: rgba(184, 145, 42, 0.45);
  background: rgba(46, 40, 32, 0.6);
}
.ms-sig-img {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #0F0B08;
}
.ms-sig-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.92) brightness(0.95);
  transition: transform 1.4s cubic-bezier(.2,.7,.2,1), filter 0.6s ease;
}
.ms-sig-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, transparent 60%, rgba(15, 11, 8, 0.3) 100%);
  pointer-events: none;
}
.ms-sig-card:hover .ms-sig-img img { transform: scale(1.045); filter: saturate(1) brightness(1); }
.ms-sig-info { padding: 1.8rem 1.7rem 2rem; }
.ms-sig-tag {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: #B8912A;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
  display: block;
  font-weight: 500;
}
.ms-sig-info h3 {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1.45rem;
  margin: 0 0 0.7rem;
  letter-spacing: -0.005em;
  color: #FAF7F2;
}
.ms-sig-info p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(245, 237, 214, 0.7);
  margin: 0;
  font-weight: 300;
}
.ms-signature-cta { margin-top: 3rem; }
@media (min-width: 768px) { .ms-signature-cta { margin-top: 4.5rem; } }
.ms-menu-note {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(245, 237, 214, 0.6);
  margin: 0;
  font-weight: 400;
  letter-spacing: 0.01em;
}
.ms-menu-note a {
  color: #B8912A;
  text-decoration: none;
  border-bottom: 1px solid rgba(184, 145, 42, 0.45);
  transition: color 0.35s ease, border-color 0.35s ease;
}
.ms-menu-note a:hover,
.ms-menu-note a:focus-visible {
  color: #D4A94A;
  border-color: #D4A94A;
}

/* ---------- Atmosphere & Private Events ---------- */
.ms-atmos { background: #18130E; }
.ms-atmos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-top: 4rem;
}
@media (min-width: 768px) {
  .ms-atmos-grid { grid-template-columns: repeat(2, 1fr); gap: 3rem; margin-top: 5rem; }
}
@media (min-width: 1024px) {
  .ms-atmos-grid { gap: 4rem; margin-top: 6.5rem; }
}
.ms-atmos-img { margin-bottom: 1.5rem; }
.ms-atmos-tag {
  display: block;
  font-family: var(--font-text);
  font-size: 0.64rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: rgba(184, 145, 42, 0.85);
  margin-bottom: 0.55rem;
  font-weight: 400;
}
.ms-atmos-name {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(1.5rem, 2.4vw, 1.85rem);
  margin: 0 0 0.75rem;
  letter-spacing: -0.005em;
  color: #FAF7F2;
}
.ms-atmos-desc {
  font-family: var(--font-text);
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(245, 237, 214, 0.72);
  font-weight: 300;
  margin: 0;
}

.ms-atmos-events {
  margin-top: 5rem;
  padding: 3rem 2rem;
  background: rgba(46, 40, 32, 0.32);
  border: 1px solid rgba(184, 145, 42, 0.2);
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 768px) {
  .ms-atmos-events { padding: 4rem 3.5rem; margin-top: 7rem; }
}
@media (min-width: 1024px) {
  .ms-atmos-events {
    grid-template-columns: 1.4fr auto;
    gap: 4rem;
    padding: 4.5rem 4.5rem;
  }
}
.ms-atmos-events-text .ms-eyebrow { margin-bottom: 1.1rem; }
.ms-atmos-events-title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(1.55rem, 3.2vw, 2.2rem);
  line-height: 1.2;
  letter-spacing: -0.005em;
  margin: 0 0 1.2rem;
  color: #FAF7F2;
}
.ms-atmos-events-title em {
  font-style: italic;
  color: #B8912A;
}
.ms-atmos-events-text p {
  font-family: var(--font-text);
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(245, 237, 214, 0.7);
  font-weight: 300;
  margin: 0;
  max-width: 560px;
}
.ms-atmos-events-cta {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  align-items: flex-start;
}
@media (min-width: 1024px) { .ms-atmos-events-cta { align-items: flex-end; } }
.ms-atmos-events-tel {
  font-family: var(--font-text);
  font-size: 0.78rem;
  color: rgba(245, 237, 214, 0.55);
  text-decoration: none;
  letter-spacing: 0.06em;
  transition: color 0.3s;
}
.ms-atmos-events-tel:hover,
.ms-atmos-events-tel:focus-visible { color: #B8912A; }

/* ---------- Gallery ---------- */
.ms-gallery-section { background: #15100C; }
.ms-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 4rem;
}
@media (min-width: 640px) {
  .ms-gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 260px;
    gap: 1.25rem;
  }
  .ms-gal-tall { grid-row: span 2; }
}
@media (min-width: 1024px) {
  .ms-gallery {
    grid-auto-rows: 320px;
    gap: 1.75rem;
    margin-top: 6.5rem;
  }
}
.ms-gal-item {
  position: relative;
  overflow: hidden;
  display: block;
  cursor: zoom-in;
  aspect-ratio: 4 / 3;
  background: #0F0B08;
  -webkit-tap-highlight-color: transparent;
}
@media (min-width: 640px) {
  .ms-gal-item { aspect-ratio: auto; height: 100%; }
}
.ms-gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.92) brightness(0.96);
  transition: transform 1.4s cubic-bezier(.2,.7,.2,1), filter 0.6s ease;
}
.ms-gal-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 50%, transparent 55%, rgba(15, 11, 8, 0.35) 100%),
    linear-gradient(180deg, transparent 55%, rgba(15, 11, 8, 0.55));
  opacity: 0.55;
  transition: opacity 0.6s ease;
  pointer-events: none;
}
.ms-gal-caption {
  position: absolute;
  left: 1.5rem;
  bottom: 1.4rem;
  right: 1.5rem;
  z-index: 2;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(245, 237, 214, 0.92);
  letter-spacing: 0.005em;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
}
.ms-gal-item:hover img,
.ms-gal-item:focus-visible img { transform: scale(1.04); filter: saturate(1) brightness(1); }
.ms-gal-item:hover::after,
.ms-gal-item:focus-visible::after { opacity: 0.85; }
.ms-gal-item:hover .ms-gal-caption,
.ms-gal-item:focus-visible .ms-gal-caption { opacity: 1; transform: translateY(0); }

/* ---------- Voices (social proof) ---------- */
.ms-voices { background: #1A1410; }
.ms-voices-ratings {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 3rem;
  justify-content: center;
  margin-top: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(184, 145, 42, 0.14);
}
@media (min-width: 768px) {
  .ms-voices-ratings { margin-top: 5.5rem; padding-bottom: 5.5rem; gap: 2rem 5rem; }
}
.ms-rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  text-align: center;
}
.ms-rating-stars {
  color: #B8912A;
  letter-spacing: 0.18em;
  font-size: 0.85rem;
}
.ms-rating-score {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(1.85rem, 3.4vw, 2.45rem);
  color: #FAF7F2;
  letter-spacing: -0.01em;
  line-height: 1;
}
.ms-rating-meta {
  font-family: var(--font-text);
  font-size: 0.66rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(245, 237, 214, 0.5);
  font-weight: 400;
}

.ms-voices-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-top: 5rem;
}
@media (min-width: 768px) {
  .ms-voices-grid { grid-template-columns: repeat(3, 1fr); gap: 3rem; margin-top: 6.5rem; }
}
.ms-voice {
  margin: 0;
  padding: 0;
  text-align: center;
  max-width: 360px;
  justify-self: center;
}
.ms-voice p {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  line-height: 1.55;
  color: rgba(245, 237, 214, 0.85);
  margin: 0 0 1.5rem;
  letter-spacing: -0.002em;
}
.ms-voice footer {
  font-family: var(--font-text);
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(184, 145, 42, 0.75);
  font-weight: 400;
}

/* ---------- Instagram feed ---------- */
.ms-insta { background: #15100C; }
.ms-insta .ms-title em { font-style: italic; }
.ms-insta-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-top: 4rem;
}
@media (min-width: 640px) {
  .ms-insta-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
}
@media (min-width: 1024px) {
  .ms-insta-grid { grid-template-columns: repeat(6, 1fr); gap: 1.1rem; margin-top: 5.5rem; }
}
.ms-insta-tile {
  display: block;
  transition: transform 0.5s ease, opacity 0.4s ease;
  -webkit-tap-highlight-color: transparent;
}
.ms-insta-tile:hover,
.ms-insta-tile:focus-visible { transform: translateY(-3px); }
.ms-insta-cta { margin-top: 3rem; }
@media (min-width: 768px) { .ms-insta-cta { margin-top: 4rem; } }

/* ---------- Reserve ---------- */
.ms-reserve { background: #1A1410; }
/* Reserve section uses a single sans font (Inter) for clarity —
   phone numbers, address, and contact labels all share one type. */
.ms-reserve .ms-title {
  font-family: var(--font-text);
  font-weight: 300;
  font-size: clamp(1.9rem, 4.6vw, 3.2rem);
  line-height: 1.18;
  letter-spacing: -0.02em;
}
.ms-reserve .ms-title em {
  font-family: var(--font-text);
  font-style: normal;
  font-weight: 400;
  color: #B8912A;
}
.ms-reserve-grid {
  display: grid;
  gap: 3rem;
  align-items: start;
}
@media (min-width: 1024px) {
  .ms-reserve-grid {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
}
.ms-reserve-meta {
  margin: 2.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
}
.ms-reserve-meta div {
  padding-top: 1.1rem;
  border-top: 1px solid rgba(184, 145, 42, 0.25);
}
.ms-reserve-meta dt {
  display: block;
  color: #B8912A;
  font-family: var(--font-text);
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.ms-reserve-meta dd {
  margin: 0;
  font-family: var(--font-text);
  font-size: 0.98rem;
  font-weight: 400;
  color: rgba(245, 237, 214, 0.9);
  line-height: 1.55;
  letter-spacing: 0.005em;
}

.ms-reserve-actions {
  display: grid;
  gap: 1rem;
}
.ms-contact-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 1.25rem;
  padding: 1.4rem 1.6rem;
  background: rgba(46, 40, 32, 0.45);
  border: 1px solid rgba(184, 145, 42, 0.22);
  text-decoration: none;
  color: #FAF7F2;
  transition: border-color 0.35s ease, background 0.35s ease, transform 0.35s ease;
  min-height: 80px;
  align-items: center;
  -webkit-tap-highlight-color: transparent;
}
.ms-contact-card:hover,
.ms-contact-card:focus-visible {
  border-color: #B8912A;
  background: rgba(184, 145, 42, 0.08);
  transform: translateX(4px);
}
.ms-contact-card-primary {
  background: rgba(184, 145, 42, 0.1);
  border-color: rgba(184, 145, 42, 0.5);
}
.ms-contact-card-primary .ms-contact-icon {
  background: #B8912A;
  color: #1A1410;
  border-color: #B8912A;
}
.ms-contact-card-primary .ms-contact-label { color: #D4A94A; }
.ms-contact-card-primary:hover,
.ms-contact-card-primary:focus-visible {
  background: rgba(184, 145, 42, 0.18);
  border-color: #D4A94A;
}
.ms-contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(184, 145, 42, 0.4);
  color: #B8912A;
  border-radius: 50%;
  flex-shrink: 0;
}
.ms-contact-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.ms-contact-label {
  font-size: 0.66rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #B8912A;
  margin-bottom: 0.3rem;
  font-weight: 500;
}
.ms-contact-value {
  font-family: var(--font-text);
  font-size: 1.02rem;
  font-weight: 500;
  color: #FAF7F2;
  letter-spacing: 0.005em;
  word-break: break-word;
}

.ms-map-wrap {
  margin-top: 3.5rem;
  aspect-ratio: 16 / 9;
  max-height: 480px;
  border: 1px solid rgba(184, 145, 42, 0.22);
  overflow: hidden;
}
@media (max-width: 639px) {
  .ms-map-wrap {
    aspect-ratio: 4 / 3;
    margin-top: 2.5rem;
  }
}
.ms-map-wrap iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  filter: grayscale(20%) contrast(1.05);
}

/* ---------- Footer ---------- */
.ms-footer {
  background: #0F0B08;
  color: #FAF7F2;
  padding-top: 5rem;
  border-top: 1px solid rgba(184, 145, 42, 0.12);
}
@media (min-width: 768px) { .ms-footer { padding-top: 6.5rem; } }

.ms-footer-inner {
  display: grid;
  gap: 2.5rem;
  padding-bottom: 3.5rem;
}
@media (min-width: 640px) {
  .ms-footer-inner { grid-template-columns: repeat(2, 1fr); gap: 3rem 2rem; }
}
@media (min-width: 1024px) {
  .ms-footer-inner { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; }
}
.ms-footer-brand img { height: 42px; width: auto; margin-bottom: 1.1rem; display: block; }
.ms-footer-logo-text {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  letter-spacing: 0.18em;
  color: #FAF7F2;
  margin-bottom: 1.1rem;
}
.ms-footer-brand p {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.1rem;
  color: #B8912A;
  opacity: 0.75;
  margin: 0;
  max-width: 280px;
  line-height: 1.5;
}
.ms-footer-col h4 {
  font-size: 0.66rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: #B8912A;
  margin: 0 0 1.25rem;
  font-weight: 500;
}
.ms-footer-col p {
  margin: 0 0 0.55rem;
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(245, 237, 214, 0.7);
  font-weight: 300;
}
.ms-footer-col a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}
.ms-footer-col a:hover,
.ms-footer-col a:focus-visible { color: #B8912A; }

.ms-footer-social {
  display: flex;
  gap: 0.75rem;
}
.ms-footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(184, 145, 42, 0.35);
  color: #B8912A;
  transition: background 0.3s, color 0.3s, border-color 0.3s, transform 0.3s;
  -webkit-tap-highlight-color: transparent;
}
.ms-footer-social a:hover,
.ms-footer-social a:focus-visible {
  background: #B8912A;
  color: #1A1410;
  border-color: #B8912A;
  transform: translateY(-2px);
}

.ms-footer-bottom {
  border-top: 1px solid rgba(184, 145, 42, 0.14);
  padding: 1.6rem 0;
  padding-bottom: calc(1.6rem + env(safe-area-inset-bottom));
}
.ms-footer-bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  align-items: flex-start;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(245, 237, 214, 0.55);
}
.ms-footer-bottom-inner p { margin: 0; }
@media (min-width: 768px) {
  .ms-footer-bottom-inner {
    flex-direction: row;
    align-items: center;
  }
}
.ms-partner-link {
  color: rgba(184, 145, 42, 0.7);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  transition: color 0.3s;
}
.ms-partner-link:hover,
.ms-partner-link:focus-visible { color: #D4A94A; }

/* ---------- Sticky Reserve CTA ---------- */
.ms-sticky-cta {
  position: fixed;
  right: 1.1rem;
  bottom: calc(1.1rem + env(safe-area-inset-bottom));
  z-index: 90;
  background: #B8912A;
  color: #1A1410;
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  font-family: var(--font-text);
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(184, 145, 42, 0.3);
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px) scale(0.95);
  transition: opacity 0.4s ease, transform 0.4s ease, background 0.3s ease;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  -webkit-tap-highlight-color: transparent;
}
.ms-sticky-cta.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}
.ms-sticky-cta:hover,
.ms-sticky-cta:focus-visible {
  background: #D4A94A;
  transform: translateY(-2px) scale(1.02);
}

/* ---------- Lightbox ---------- */
.ms-lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(15, 11, 8, 0.97);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 4.5rem 1.25rem;
  padding-top: calc(4.5rem + env(safe-area-inset-top));
  padding-bottom: calc(4.5rem + env(safe-area-inset-bottom));
  touch-action: none;
}
.ms-lightbox.active {
  display: flex;
  animation: msFadeIn 0.3s ease;
}
@keyframes msFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.ms-lightbox-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}
.ms-lightbox-close,
.ms-lightbox-prev,
.ms-lightbox-next {
  position: absolute;
  background: rgba(46, 40, 32, 0.7);
  color: #FAF7F2;
  border: 1px solid rgba(184, 145, 42, 0.4);
  width: 48px;
  height: 48px;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, border-color 0.3s, color 0.3s;
  -webkit-tap-highlight-color: transparent;
  border-radius: 50%;
}
.ms-lightbox-close:hover,
.ms-lightbox-prev:hover,
.ms-lightbox-next:hover {
  background: #B8912A;
  color: #1A1410;
  border-color: #B8912A;
}
.ms-lightbox-close {
  top: calc(1.25rem + env(safe-area-inset-top));
  right: 1.25rem;
  font-size: 1.8rem;
}
.ms-lightbox-prev { left: 1rem;  top: 50%; transform: translateY(-50%); }
.ms-lightbox-next { right: 1rem; top: 50%; transform: translateY(-50%); }
@media (min-width: 768px) {
  .ms-lightbox-prev { left: 1.5rem; }
  .ms-lightbox-next { right: 1.5rem; }
  .ms-lightbox-close { top: calc(1.5rem + env(safe-area-inset-top)); right: 1.5rem; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .site-main .fade-up,
  .site-main .fade-in { transition-duration: 0.2s; transform: none !important; }
  .ms-hero-image { animation: none; }
  .ms-hero-scroll-line { animation: none; }
  .ms-day-card:hover .ms-day-img img,
  .ms-sig-card:hover .ms-sig-img img,
  .ms-gal-item:hover img { transform: none; }
}

/* ---------- Print (rare but cheap) ---------- */
@media print {
  .ms-nav, .ms-sticky-cta, .ms-lightbox, .ms-hero-scroll, .ms-map-wrap { display: none !important; }
}
