@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:wght@400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700;800&display=swap');

:root {
  --idx-paper: #ffffff;
  --idx-paper-soft: #f6f6f6;
  --idx-ink: #111111;
  --idx-ink-soft: #222222;
  --idx-muted: #555555;
  --idx-accent: #c4570a;
  --idx-bezel-outer: 24px;
  --idx-bezel-inner: 16px;
  --idx-shadow: 0 16px 32px rgba(0, 0, 0, 0.06);
  --idx-soft-border: 1px solid rgba(15, 15, 15, 0.08);
  --idx-ease: cubic-bezier(0.8, 0, 0.1, 1);
}

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

html,
body {
  overflow-x: hidden;
}

body {
  background: var(--idx-paper);
  color: var(--idx-ink);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  -webkit-font-smoothing: antialiased;
}

.idx-page-shell {
  min-height: 100vh;
}

.idx-nav-island {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  padding: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(15, 15, 15, 0.08);
  z-index: 200;
  flex-wrap: wrap;
  justify-content: center;
  max-width: min(980px, 94vw);
  transition: all 0.4s cubic-bezier(0.32, 0.72, 0, 1);
}

.idx-nav-top,
.idx-nav-cta,
.idx-nav-links-wrap,
.idx-mobile-header,
.idx-nav-overlay {
  display: none;
}

.idx-nav-link {
  text-decoration: none;
  color: var(--idx-ink-soft);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 10px 16px;
  border-radius: 999px;
  transition: all 0.25s ease;
  opacity: 0.74;
}

.idx-nav-link:hover,
.idx-nav-link[data-active='true'] {
  background: var(--idx-accent);
  color: #fff;
  opacity: 1;
}

.idx-main {
  max-width: 1360px;
  margin: 0 auto;
  padding: 128px 24px 18px;
  display: grid;
  gap: 20px;
}

.idx-section {
  position: relative;
  margin: 0;
  padding: 46px;
  border-radius: 30px;
  border: var(--idx-soft-border);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.045);
}

.idx-section + .idx-section {
  margin-top: 0;
}

.idx-main > .idx-section:nth-child(even) {
  background: rgba(255, 255, 255, 0.92);
}

.idx-kicker {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--idx-muted);
  margin-bottom: 14px;
}

.idx-nav-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px 0 4px;
  margin-right: 2px;
  border-right: 1px solid rgba(15, 15, 15, 0.12);
}

.idx-nav-brand img {
  height: 28px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* Desktop Nav Defaults */
.idx-nav-toggle {
  display: none;
}

/* Hide logo on desktop */
@media (min-width: 901px) {
  .idx-nav-brand {
    display: none !important;
  }
}

@media (min-width: 901px) {
  .idx-nav-island {
    top: 20px;
    gap: 6px;
    align-items: center;
    padding: 10px 12px 10px 14px;
    max-width: min(1080px, 94vw);
    background: rgba(255, 248, 240, 0.88);
    border: 1px solid rgba(196, 87, 10, 0.16);
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    box-shadow: 0 18px 40px -24px rgba(83, 54, 33, 0.46), inset 0 1px 0 rgba(255, 255, 255, 0.62);
  }

  .idx-nav-brand {
    padding: 0 12px 0 6px;
    margin-right: 6px;
    border-right: 1px solid rgba(196, 87, 10, 0.2);
  }

  .idx-nav-brand img {
    height: 30px;
  }

  .idx-nav-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: #5e4a3b;
    opacity: 1;
    padding: 10px 15px;
  }

  .idx-nav-link:hover {
    background: rgba(196, 87, 10, 0.12);
    color: #9d4f1a;
  }

  .idx-nav-link[data-active='true'] {
    background: linear-gradient(135deg, #be560f 0%, #d8862e 100%);
    color: #fff;
    box-shadow: 0 8px 18px -12px rgba(138, 69, 24, 0.6);
  }
}

.idx-title {
  font-family: 'Inter', sans-serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.08;
}

.idx-title-xl {
  font-size: clamp(3rem, 9vw, 7.4rem);
  padding-top: 4px;
  padding-bottom: 8px;
  overflow: visible;
}

.idx-title-lg {
  font-size: clamp(2rem, 5vw, 4rem);
}

.idx-hero-line-regular {
  display: block;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
  font-size: clamp(1.2rem, 3vw, 2rem);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #5f3d25;
  overflow: visible;
}

.idx-hero-line-bold {
  display: block;
  margin-top: 4px;
  font-style: normal;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.28;
  padding-top: 6px;
  padding-bottom: 12px;
  font-size: clamp(2rem, 5vw, 4rem);
  overflow: visible;
  background: linear-gradient(120deg, #8e4315 12%, #d98a33 88%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: #a5511b;
}

.idx-text {
  color: var(--idx-muted);
  line-height: 1.72;
  font-size: 1.02rem;
}

.idx-grid {
  display: grid;
  gap: 20px;
}

.idx-grid-hero {
  grid-template-columns: 1.6fr 1fr;
  align-items: stretch;
}

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

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

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

.idx-bezel {
  border-radius: var(--idx-bezel-outer);
  background: var(--idx-paper-soft);
  padding: 8px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7), var(--idx-shadow);
  border: var(--idx-soft-border);
}

.idx-panel {
  border-radius: var(--idx-bezel-inner);
  background: #fff;
  height: 100%;
  overflow: hidden;
}

.idx-panel-dark {
  background: linear-gradient(160deg, #8a5228 0%, #6f3f1f 100%);
  color: #ffffff;
}

.idx-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.idx-media-cover {
  min-height: 360px;
}

.idx-pad {
  padding: 34px;
}

.idx-card-title {
  font-size: 1.25rem;
  line-height: 1.2;
  margin-bottom: 12px;
}

.idx-price {
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem;
  font-style: italic;
  color: var(--idx-accent);
}

.idx-section-head {
  max-width: 780px;
  margin-bottom: 34px;
  padding-bottom: 4px;
}

.idx-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: stretch;
}

.idx-highlight-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.idx-highlight-item {
  padding: 20px;
  border-radius: 16px;
  border: var(--idx-soft-border);
  background: #ffffff;
}

.hero-info-cards {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: nowrap;
}

.hero-info-card {
  flex: 1;
  min-width: 0;
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 14px 16px;
}

.hero-info-card-title {
  font-size: 13px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero-info-card-value {
  font-size: 13px;
  color: #4a4a4a;
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.idx-launch-media-wrap {
  aspect-ratio: 4 / 3;
  background: var(--launch-bg, #f1f1f1);
  border-bottom: 1px solid rgba(15, 15, 15, 0.08);
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.idx-launch-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  display: block;
}

.idx-btn {
  display: inline-block;
  text-decoration: none;
  border-radius: 999px;
  padding: 13px 24px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.76rem;
  font-weight: 600;
  transition: all 0.25s ease;
}

.idx-btn-dark {
  background: var(--idx-ink);
  color: #fff;
}

.idx-btn-dark:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}

.idx-btn-outline {
  border: 1px solid rgba(15, 15, 15, 0.2);
  color: var(--idx-ink);
}

.idx-btn-outline:hover {
  border-color: var(--idx-accent);
  color: var(--idx-accent);
  transform: translateY(-2px);
}

.idx-menu-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: stretch;
}

.idx-testimonial-card {
  border-radius: var(--idx-bezel-inner);
  border: var(--idx-soft-border);
  padding: 28px;
  background: #fff;
}

.idx-author {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  align-items: center;
}

.idx-author img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}

.idx-instagram-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.idx-instagram-grid a {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  border: var(--idx-soft-border);
  flex: 0 0 calc((100% - 42px) / 4);
}

.idx-instagram-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  transition: transform 0.4s var(--idx-ease);
}

.idx-instagram-grid a:hover img {
  transform: scale(1.04);
}

.idx-cta-band {
  margin-top: 0;
  border-radius: 26px;
  background: linear-gradient(145deg, #a45e28 0%, #7a431f 100%);
  color: #ffffff;
  padding: 44px;
}

.idx-cta-band .idx-text {
  color: rgba(255, 255, 255, 0.82);
}

.idx-footer {
  margin-top: 64px;
  padding: 36px 24px 52px;
  border-top: 1px solid rgba(15, 15, 15, 0.1);
}

.idx-footer-inner {
  max-width: 1360px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 20px;
}

.idx-footer-title {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--idx-muted);
  margin-bottom: 8px;
}

.idx-footer-links {
  display: grid;
  gap: 8px;
}

.idx-footer-links a,
.idx-footer-copy a {
  color: var(--idx-ink-soft);
  text-decoration: none;
}

.idx-footer-copy {
  margin-top: 18px;
  color: var(--idx-muted);
  font-size: 0.92rem;
}

.idx-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--idx-ease), transform 0.8s var(--idx-ease);
}

.idx-reveal.idx-visible {
  opacity: 1;
  transform: none;
}

.site-footer {
  margin-top: 28px;
  background: linear-gradient(180deg, #fff9f3 0%, #fff2e8 100%);
  border-top: 3px solid #c4570a;
  padding: 56px 48px 32px;
  color: #6b5846;
  font-family: 'Be Vietnam Pro', sans-serif;
}

.site-footer-inner {
  max-width: 1240px;
  margin: 0 auto;
}

.kt-partner-promo {
  position: relative;
  overflow: hidden;
  margin-bottom: 26px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(118deg, #1a1a1a 0%, #171516 48%, #2d0a0a 100%);
  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.34),
    0 10px 28px rgba(229, 9, 20, 0.2);
}

.kt-partner-promo::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.14;
  background-image: radial-gradient(rgba(255, 255, 255, 0.34) 0.4px, transparent 0.4px);
  background-size: 3px 3px;
}

.kt-partner-promo::after {
  content: '';
  position: absolute;
  right: -120px;
  top: -180px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(229, 9, 20, 0.42) 0%, rgba(229, 9, 20, 0) 70%);
}

.kt-partner-promo-inner {
  position: relative;
  z-index: 1;
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 24px;
  border-radius: 17px;
}

.kt-partner-copy {
  flex: 1 1 auto;
  max-width: 860px;
  padding-left: 16px;
  border-left: 3px solid #e50914;
  font-family: 'Sora', 'Be Vietnam Pro', sans-serif;
}

.kt-partner-kicker {
  margin: 0;
  font-size: 10px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.68);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.kt-partner-copy h3 {
  margin: 6px 0 0;
  color: #ffffff;
  font-size: clamp(1.25rem, 1.55vw, 1.38rem);
  line-height: 1.25;
  font-weight: 700;
  text-wrap: balance;
}

.kt-partner-copy p {
  margin: 6px 0 0;
  max-width: 58ch;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.45;
}

.kt-partner-actions {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  font-family: 'Sora', 'Be Vietnam Pro', sans-serif;
}

.kt-partner-btn {
  height: 42px;
  border-radius: 999px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 13px;
  white-space: nowrap;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease, border-color 180ms ease;
}

.kt-partner-btn-primary {
  background: #e50914;
  color: #ffffff;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.44);
  box-shadow: 0 8px 20px rgba(229, 9, 20, 0.38);
}

.kt-partner-btn-ghost {
  background: rgba(0, 0, 0, 0.45);
  color: #ffffff;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.42);
}

.kt-partner-btn:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.34);
}

.kt-partner-btn-primary:hover {
  box-shadow: 0 12px 26px rgba(229, 9, 20, 0.5);
  filter: brightness(1.04);
}

.kt-partner-btn:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-logo img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.footer-logo-name {
  font-size: 18px;
  font-weight: 800;
  color: #1a1208;
  letter-spacing: -0.01em;
}

.footer-tagline {
  font-size: 14px;
  color: #6d5b4a;
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 280px;
}

.footer-contact-item {
  font-size: 13px;
  color: #6a5a49;
  margin-bottom: 6px;
}

.footer-contact-item strong {
  color: #2a1f14;
  font-weight: 600;
}

.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  color: #a06439;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

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

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 14px;
  color: #5c4a39;
  text-decoration: none;
  transition: color 0.15s ease;
  font-weight: 500;
}

.footer-links a:hover {
  color: #c4570a;
}

.footer-bottom {
  border-top: 1px solid rgba(196, 87, 10, 0.22);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-copy {
  font-size: 13px;
  color: #8a7462;
}

.footer-dev-link {
  display: inline-flex;
  align-items: center;
  margin-left: 6px;
  padding: 2px 10px;
  border-radius: 999px;
  border: 1px solid #c4570a;
  background: #c4570a;
  color: #ffffff !important;
  text-decoration: none;
  font-weight: 500;
}

.footer-dev-link:hover {
  background: #a74708;
  border-color: #a74708;
  color: #ffffff !important;
}

.footer-bottom-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-bottom-links a {
  font-size: 13px;
  color: #8a7462;
  text-decoration: none;
  transition: color 0.15s;
}

.footer-bottom-links a:hover {
  color: #c4570a;
}

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

  .idx-instagram-grid a {
    flex: 0 0 calc((100% - 28px) / 3);
  }

  .site-footer {
    margin-top: 24px;
    padding: 44px 24px 24px;
  }

  .kt-partner-promo {
    margin-bottom: 20px;
  }

  .kt-partner-promo-inner {
    min-height: 0;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    padding: 16px 16px;
  }

  .kt-partner-copy {
    max-width: 700px;
    text-align: center;
    border-left: none;
    padding-left: 0;
  }

  .kt-partner-copy h3 {
    font-size: 18px;
  }

  .kt-partner-copy p {
    margin-left: auto;
    margin-right: auto;
  }

  .kt-partner-actions {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
  }

  .kt-partner-btn {
    height: 40px;
    padding: 0 14px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 26px;
    margin-bottom: 32px;
  }
}

@media (max-width: 900px) {
  /* Mobile Overlay & Modal System */
  .idx-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 150;
    background: rgba(26, 18, 8, 0.4);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  body.nav-is-open .idx-nav-overlay {
    display: block;
    opacity: 1;
  }

  body.nav-is-open {
    overflow: hidden;
  }

  .idx-nav-island {
    top: 0;
    left: 0;
    right: 0;
    transform: translateY(-100%);
    width: 100vw;
    max-width: none;
    padding: 16px 20px 24px;
    border-radius: 0 0 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: #faf8f5;
    border: none;
    border-bottom: 1px solid rgba(15, 15, 15, 0.08);
    box-shadow: 0 8px 32px rgba(26, 18, 8, 0.15);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transition: transform 0.5s cubic-bezier(0.32, 0.72, 0, 1);
  }

  .idx-nav-island.is-open {
    transform: translateY(0);
  }

  .idx-nav-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    width: 100%;
  }

  .idx-nav-brand {
    display: inline-flex !important;
    align-items: center;
    border: none;
    background: none;
    padding: 0;
    box-shadow: none;
    margin: 0 0 12px 0;
  }

  .idx-nav-brand img {
    height: 32px;
    width: auto;
  }

  .idx-nav-toggle {
    display: flex;
    width: 36px;
    height: 36px;
    border: 1.5px solid #e8e0d4;
    border-radius: 8px;
    background: #ffffff;
    color: #7a6a55;
    font-size: 24px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    line-height: 1;
    padding-bottom: 2px;
  }

  .idx-nav-toggle:hover {
    background: #f5f0e8;
    color: #c4570a;
  }

  .idx-nav-links-wrap {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 100%;
  }

  .idx-nav-island .idx-nav-link {
    display: flex;
    padding: 14px 16px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    color: #1a1208;
    text-decoration: none;
    transition: all 0.15s ease;
    background: transparent;
    border: none;
    box-shadow: none;
    justify-content: flex-start;
    text-transform: none;
    letter-spacing: 0;
    opacity: 1;
  }

  .idx-nav-island .idx-nav-link:hover {
    background: #f5f0e8;
    color: #c4570a;
    transform: none;
  }

  .idx-nav-island .idx-nav-link[data-active='true'] {
    background: #fdf3ec;
    color: #c4570a;
    border-color: transparent;
    box-shadow: none;
  }

  .idx-nav-cta {
    display: block;
    border-top: 1px solid #e8e0d4;
    padding-top: 20px;
    margin-top: 8px;
    width: 100%;
  }

  .idx-nav-cta-info {
    font-size: 12px;
    color: #b0a090;
    margin-bottom: 12px;
    text-align: center;
  }

  .idx-nav-cta-btn {
    width: 100%;
    padding: 14px;
    background: #c4570a;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    display: block;
    transition: background 0.2s ease;
  }

  .idx-nav-cta-btn:hover {
    background: #a74708;
  }

  .idx-nav-brand.idx-hide-on-mobile {
    display: none !important;
  }

  .idx-nav-link.idx-hide-on-mobile {
    display: none !important;
  }

  /* Ẩn links gốc trên mobile, chỉ hiển trong dropdown */
  .idx-nav-island > .idx-nav-link:not(.idx-nav-link-mobile) {
    display: none !important;
  }

  /* Compact trigger button for when menu is closed */
  .idx-mobile-header {
    position: fixed;
    top: 8px;
    left: 12px;
    right: 12px;
    z-index: 149;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: opacity 0.2s ease, background 0.3s ease, box-shadow 0.3s ease;
    padding: 6px 12px;
    border-radius: 12px;
  }

  .idx-mobile-header.is-scrolled {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(15, 15, 15, 0.1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  }

  body.nav-is-open .idx-mobile-header {
    opacity: 0;
    pointer-events: none;
  }

  .idx-mobile-header .idx-nav-brand {
    border: none;
    background: none;
    padding: 0;
    box-shadow: none;
    margin: 0;
    pointer-events: auto;
  }

  .idx-mobile-header .idx-nav-brand img {
    height: 28px;
  }

  .idx-mobile-trigger {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(15, 15, 15, 0.1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    cursor: pointer;
    color: #1a1208;
    transition: all 0.2s ease;
    pointer-events: auto;
  }

  .idx-mobile-header.is-scrolled .idx-mobile-trigger {
    background: transparent;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    width: auto;
    height: auto;
    padding: 10px;
  }

  .idx-mobile-trigger span {
    width: 18px;
    height: 2px;
    background: currentColor;
    border-radius: 99px;
  }

  .idx-grid-hero,
  .idx-story-grid,
  .idx-menu-preview,
  .idx-grid-3,
  .idx-grid-2 {
    grid-template-columns: 1fr;
  }

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

  .idx-main {
    padding-top: 112px;
    gap: 16px;
  }

  .idx-section {
    padding: 28px;
    border-radius: 20px;
  }

  .idx-pad {
    padding: 24px;
  }

  .hero-info-cards {
    flex-wrap: wrap;
  }

  .hero-info-card {
    min-width: calc(50% - 6px);
  }

  .idx-instagram-grid a {
    flex: 0 0 calc((100% - 14px) / 2);
  }

  .idx-cta-band {
    padding: 30px;
  }

  .idx-launch-media-wrap {
    aspect-ratio: 4 / 3;
  }

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

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

@media (max-width: 560px) {
  .idx-nav-island {
    padding: 16px 20px 24px;
  }

  .idx-main {
    padding-top: 104px;
    padding-left: 12px;
    padding-right: 12px;
    gap: 12px;
  }

  .idx-section {
    padding: 18px;
  }

  .idx-pad {
    padding: 16px;
  }

  .idx-title-xl {
    line-height: 1.12;
  }

  .hero-info-card {
    min-width: 100%;
  }

  .idx-instagram-grid a {
    flex: 0 0 100%;
  }

  .idx-grid-4 {
    grid-template-columns: 1fr;
  }

  .idx-launch-media-wrap {
    aspect-ratio: 4 / 3;
    padding: 0;
  }

  .site-footer {
    margin-top: 18px;
    padding: 36px 14px 18px;
  }

  .footer-bottom-links {
    gap: 12px;
  }
}

/* Disable italic text globally (requested) */
em,
i,
cite,
dfn,
address,
var,
.line-italic,
[class*='italic'],
[style*='font-style: italic'],
[style*='font-style:italic'] {
  font-style: normal !important;
}
