:root {
    --saffron: #E8831A;
    --deep-saffron: #C4680F;
    --turmeric: #F0A500;
    --cream: #FDF6EC;
    --dark: #1A1008;
    --charcoal: #2D2010;
    --muted: #7A6252;
    --leaf: #2D6A2D;
    --leaf-light: #4A9C4A;
    --rose: #C0392B;
    --gold: #D4AF37;
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--dark);
    overflow-x: hidden;
  }

  /* ── SCROLLBAR ── */
  ::-webkit-scrollbar { width: 6px; }
  ::-webkit-scrollbar-track { background: var(--cream); }
  ::-webkit-scrollbar-thumb { background: var(--saffron); border-radius: 3px; }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 5vw;
    background: rgba(253,246,236,0.92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(232,131,26,0.15);
    transition: box-shadow .3s;
  }
  nav.scrolled { box-shadow: 0 4px 32px rgba(30,10,0,.10); }

  .nav-logo {
    display: flex; align-items: center; gap: 12px; text-decoration: none;
  }
  .nav-logo-icon {
    width: 44px; height: 44px; border-radius: 50%;
    background: linear-gradient(135deg, var(--saffron), var(--turmeric));
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; box-shadow: 0 4px 16px rgba(232,131,26,.35);
  }
  .nav-logo-text { line-height: 1.1; }
  .nav-logo-text span:first-child {
    display: block; font-family: 'Playfair Display', serif;
    font-size: 18px; font-weight: 700; color: var(--dark);
  }
  .nav-logo-text span:last-child {
    display: block; font-size: 11px; color: var(--muted); letter-spacing: .08em;
    text-transform: uppercase;
  }

  .nav-links {
    display: flex; align-items: center; gap: 32px; list-style: none;
  }
  .nav-links a {
    text-decoration: none; font-size: 14px; font-weight: 500;
    color: var(--charcoal); letter-spacing: .02em;
    transition: color .2s; position: relative;
  }
  .nav-links a::after {
    content: ''; position: absolute; bottom: -3px; left: 0;
    width: 0; height: 2px; background: var(--saffron);
    transition: width .3s;
  }
  .nav-links a:hover { color: var(--saffron); }
  .nav-links a:hover::after { width: 100%; }

  .nav-cta {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 20px; border-radius: 50px;
    background: #25D366; color: #fff;
    text-decoration: none; font-size: 14px; font-weight: 600;
    box-shadow: 0 4px 18px rgba(37,211,102,.3);
    transition: transform .2s, box-shadow .2s;
  }
  .nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,211,102,.4); }
  .nav-cta svg { flex-shrink: 0; }

  .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
  .hamburger span { width: 24px; height: 2px; background: var(--dark); border-radius: 2px; transition: .3s; }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    display: grid; grid-template-columns: 1fr 1fr; align-items: center;
    padding: 120px 5vw 80px;
    position: relative; overflow: hidden;
    background:
      radial-gradient(ellipse 70% 60% at 100% 50%, rgba(240,165,0,.12) 0%, transparent 70%),
      radial-gradient(ellipse 50% 50% at -10% 80%, rgba(45,106,45,.08) 0%, transparent 60%),
      var(--cream);
  }

  .hero-decorative {
    position: absolute; inset: 0; pointer-events: none; overflow: hidden;
  }
  .hero-decorative::before {
    content: ''; position: absolute; right: -100px; top: -100px;
    width: 600px; height: 600px; border-radius: 50%;
    border: 1.5px solid rgba(232,131,26,.12);
  }
  .hero-decorative::after {
    content: ''; position: absolute; right: -50px; top: -50px;
    width: 480px; height: 480px; border-radius: 50%;
    border: 1px solid rgba(232,131,26,.08);
  }

  .hero-floating {
    position: absolute; font-size: 120px; opacity: .04; pointer-events: none;
    font-family: 'Noto Serif Devanagari', serif;
    top: 10%; left: 3%; animation: float 8s ease-in-out infinite;
  }
  @keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }

  .hero-content { position: relative; z-index: 2; }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 16px; border-radius: 50px;
    background: rgba(232,131,26,.1); border: 1px solid rgba(232,131,26,.25);
    font-size: 12px; font-weight: 600; color: var(--deep-saffron);
    letter-spacing: .08em; text-transform: uppercase; margin-bottom: 24px;
    animation: fadeSlideIn .8s ease both;
  }
  .hero-badge .dot {
    width: 6px; height: 6px; border-radius: 50%; background: var(--leaf-light);
    animation: pulse 2s infinite;
  }
  @keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .6; transform: scale(.8); } }

  .hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(42px, 5vw, 72px);
    font-weight: 900; line-height: 1.08;
    color: var(--dark); margin-bottom: 20px;
    animation: fadeSlideIn .9s .1s ease both;
  }
  .hero-title .accent { color: var(--saffron); display: block; }
  .hero-title em { font-style: italic; color: var(--leaf); }

  .hero-sub {
    font-size: 17px; line-height: 1.7; color: var(--muted);
    max-width: 440px; margin-bottom: 36px;
    animation: fadeSlideIn 1s .2s ease both;
  }

  .hero-actions {
    display: flex; flex-wrap: wrap; gap: 14px; align-items: center;
    animation: fadeSlideIn 1s .3s ease both;
  }

  .btn-wa {
    display: flex; align-items: center; gap: 10px;
    padding: 14px 28px; border-radius: 50px;
    background: linear-gradient(135deg, #25D366, #128C5E);
    color: #fff; text-decoration: none; font-size: 15px; font-weight: 600;
    box-shadow: 0 6px 24px rgba(37,211,102,.35);
    transition: transform .25s, box-shadow .25s;
  }
  .btn-wa:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(37,211,102,.45); }

  .btn-menu {
    display: flex; align-items: center; gap: 8px;
    padding: 14px 28px; border-radius: 50px;
    border: 2px solid rgba(232,131,26,.4);
    color: var(--saffron); text-decoration: none; font-size: 15px; font-weight: 600;
    transition: background .25s, color .25s, border-color .25s;
  }
  .btn-menu:hover { background: var(--saffron); color: #fff; border-color: var(--saffron); }

  .hero-stats {
    display: flex; gap: 32px; margin-top: 48px;
    animation: fadeSlideIn 1s .4s ease both;
  }
  .stat { text-align: center; }
  .stat-num {
    font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 700;
    color: var(--saffron); display: block;
  }
  .stat-label { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }

  .hero-visual {
    position: relative; display: flex; justify-content: center; align-items: center;
    animation: fadeSlideIn 1s .2s ease both;
  }
  .hero-img-ring {
    position: relative; width: min(480px, 90%); aspect-ratio: 1;
  }
  .hero-img-main {
    width: 90%; height: 90%; border-radius: 50%;
    object-fit: cover; display: block; margin: 5%;
    box-shadow: 0 20px 80px rgba(30,10,0,.2);
    border: 6px solid #fff;
  }
  .hero-img-ring::before {
    content: ''; position: absolute; inset: 0; border-radius: 50%;
    border: 2px dashed rgba(232,131,26,.3);
    animation: spin 20s linear infinite;
  }
  .hero-img-ring::after {
    content: ''; position: absolute; inset: -16px; border-radius: 50%;
    border: 1px solid rgba(232,131,26,.12);
  }
  @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

  .hero-float-card {
    position: absolute; background: #fff; border-radius: 16px;
    padding: 12px 18px; box-shadow: 0 8px 32px rgba(30,10,0,.12);
    display: flex; align-items: center; gap: 10px;
    font-size: 13px; font-weight: 500; color: var(--dark);
    animation: float 6s ease-in-out infinite;
  }
  .hero-float-card.card1 { top: 12%; right: -4%; animation-delay: 0s; }
  .hero-float-card.card2 { bottom: 16%; left: -4%; animation-delay: 2s; }
  .float-icon { font-size: 22px; }

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

  /* ── MARQUEE ── */
  .marquee-strip {
    background: linear-gradient(135deg, var(--saffron), var(--deep-saffron));
    padding: 12px 0; overflow: hidden;
    display: flex; align-items: center;
  }
  .marquee-inner {
    display: flex; gap: 0; white-space: nowrap;
    animation: marquee 30s linear infinite;
  }
  .marquee-item {
    display: inline-flex; align-items: center; gap: 12px;
    padding: 0 36px; font-size: 13px; font-weight: 600;
    color: rgba(255,255,255,.9); letter-spacing: .05em; text-transform: uppercase;
  }
  .marquee-dot { width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,.5); }
  @keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

  /* ── SECTION SHARED ── */
  section { padding: 90px 5vw; }
  .section-tag {
    display: inline-block; font-size: 11px; font-weight: 700;
    letter-spacing: .14em; text-transform: uppercase;
    color: var(--saffron); margin-bottom: 12px;
  }
  .section-title {
    font-family: 'Playfair Display', serif; font-size: clamp(30px, 4vw, 50px);
    font-weight: 800; line-height: 1.12; color: var(--dark);
  }
  .section-title em { font-style: italic; color: var(--saffron); }
  .section-sub { font-size: 16px; color: var(--muted); line-height: 1.7; max-width: 560px; margin-top: 12px; }

  .divider {
    width: 56px; height: 3px; border-radius: 2px;
    background: linear-gradient(90deg, var(--saffron), var(--turmeric));
    margin: 16px 0;
  }

  /* ── SERVICES ── */
  .services-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px; margin-top: 50px;
  }
  .service-card {
    background: #fff; border-radius: 20px;
    padding: 32px 28px;
    border: 1px solid rgba(232,131,26,.1);
    transition: transform .3s, box-shadow .3s, border-color .3s;
    position: relative; overflow: hidden;
    cursor: pointer;
  }
  .service-card::before {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--saffron), var(--turmeric));
    transform: scaleX(0); transition: transform .3s; transform-origin: left;
  }
  .service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(30,10,0,.1); border-color: rgba(232,131,26,.25); }
  .service-card:hover::before { transform: scaleX(1); }

  .service-num {
    font-family: 'Playfair Display', serif; font-size: 52px; font-weight: 900;
    color: rgba(232,131,26,.1); line-height: 1; margin-bottom: 16px;
    letter-spacing: -.02em;
  }
  .service-icon-wrap {
    width: 52px; height: 52px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 26px; margin-bottom: 18px;
  }
  .service-title { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
  .service-desc { font-size: 14px; color: var(--muted); line-height: 1.65; }
  .service-wa {
    display: inline-flex; align-items: center; gap: 6px;
    margin-top: 20px; font-size: 13px; font-weight: 600; color: #25D366;
    text-decoration: none; transition: gap .2s;
  }
  .service-wa:hover { gap: 10px; }

  /* ── MENU ── */
  .menu-section { background: var(--dark); }
  .menu-section .section-tag { color: var(--turmeric); }
  .menu-section .section-title { color: #fff; }
  .menu-section .section-sub { color: rgba(255,255,255,.6); }

  .menu-tabs {
    display: flex; gap: 12px; flex-wrap: wrap; margin-top: 40px; margin-bottom: 36px;
  }
  .menu-tab {
    padding: 10px 22px; border-radius: 50px;
    border: 1px solid rgba(255,255,255,.15); background: transparent;
    color: rgba(255,255,255,.6); font-size: 14px; font-weight: 500;
    cursor: pointer; transition: all .25s; font-family: 'DM Sans', sans-serif;
  }
  .menu-tab.active, .menu-tab:hover {
    background: var(--saffron); border-color: var(--saffron); color: #fff;
  }

  .menu-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 18px;
  }
  .menu-card {
    background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
    border-radius: 16px; padding: 24px; transition: background .3s, transform .3s;
    position: relative; overflow: hidden;
  }
  .menu-card:hover { background: rgba(255,255,255,.09); transform: translateY(-4px); }

  .menu-card-emoji { font-size: 36px; display: block; margin-bottom: 14px; }
  .menu-card-name { font-family: 'Playfair Display', serif; font-size: 17px; font-weight: 700; color: #fff; margin-bottom: 6px; }
  .menu-card-desc { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.6; margin-bottom: 16px; }
  .menu-price-row { display: flex; align-items: center; justify-content: space-between; }
  .menu-price { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; color: var(--turmeric); }
  .menu-ask {
    display: flex; align-items: center; gap: 6px;
    padding: 6px 14px; border-radius: 50px;
    background: #25D366; color: #fff; font-size: 12px; font-weight: 600;
    text-decoration: none; transition: transform .2s;
  }
  .menu-ask:hover { transform: scale(1.05); }
  .menu-price-label { font-size: 11px; color: rgba(255,255,255,.4); margin-top: 4px; font-weight: 400; }

  /* ── ABOUT ── */
  .about-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
  }
  .about-img-wrap { position: relative; }
  .about-img-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
  }
  .about-img-grid img {
    width: 100%; border-radius: 16px; object-fit: cover;
    height: 200px; display: block;
    box-shadow: 0 8px 32px rgba(30,10,0,.1);
    transition: transform .3s;
  }
  .about-img-grid img:hover { transform: scale(1.02); }
  .about-img-grid img:first-child { height: 280px; grid-row: span 2; border-radius: 20px; }

  .about-badge-float {
    position: absolute; bottom: 20px; left: -24px;
    background: linear-gradient(135deg, var(--saffron), var(--deep-saffron));
    color: #fff; border-radius: 16px; padding: 18px 24px;
    box-shadow: 0 12px 40px rgba(232,131,26,.35);
    font-family: 'Playfair Display', serif;
  }
  .about-badge-float .big { font-size: 36px; font-weight: 900; display: block; line-height: 1; }
  .about-badge-float .sm { font-size: 13px; opacity: .85; }

  .about-features { display: flex; flex-direction: column; gap: 18px; margin-top: 32px; }
  .about-feature {
    display: flex; gap: 16px; align-items: flex-start;
    padding: 16px; border-radius: 14px; background: rgba(232,131,26,.06);
  }
  .about-feature-icon {
    width: 40px; height: 40px; border-radius: 10px;
    background: linear-gradient(135deg, var(--saffron), var(--turmeric));
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; flex-shrink: 0;
  }
  .about-feature-text h4 { font-size: 15px; font-weight: 600; color: var(--dark); margin-bottom: 4px; }
  .about-feature-text p { font-size: 13px; color: var(--muted); line-height: 1.5; }

  /* ── BOOK NOW ── */
  .book-section {
    background: linear-gradient(135deg, var(--dark) 0%, #2D1A00 100%);
    border-radius: 32px; margin: 0 5vw; overflow: hidden;
    position: relative;
  }
  .book-section::before {
    content: ''; position: absolute; top: -100px; right: -100px;
    width: 400px; height: 400px; border-radius: 50%;
    background: radial-gradient(circle, rgba(232,131,26,.2), transparent 70%);
    pointer-events: none;
  }
  .book-inner {
    display: grid; grid-template-columns: 1fr 1fr; align-items: center;
    gap: 60px; padding: 70px 60px;
  }
  .book-content .section-tag { color: var(--turmeric); }
  .book-content .section-title { color: #fff; }
  .book-content .section-sub { color: rgba(255,255,255,.65); }

  .book-options { display: flex; flex-direction: column; gap: 14px; margin-top: 36px; }
  .book-option {
    display: flex; align-items: center; gap: 16px;
    padding: 18px 22px; border-radius: 16px;
    background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
    text-decoration: none; color: #fff;
    transition: background .25s, transform .25s, border-color .25s;
  }
  .book-option:hover { background: rgba(255,255,255,.12); transform: translateX(6px); border-color: rgba(232,131,26,.4); }
  .book-option-icon {
    width: 48px; height: 48px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center; font-size: 22px;
    flex-shrink: 0;
  }
  .book-option-text { flex: 1; }
  .book-option-text h4 { font-size: 15px; font-weight: 600; margin-bottom: 2px; }
  .book-option-text p { font-size: 13px; color: rgba(255,255,255,.5); }
  .book-option-arrow { color: rgba(255,255,255,.3); font-size: 18px; }

  .book-visual {
    display: flex; flex-direction: column; align-items: center; gap: 20px;
  }
  .book-qr-card {
    background: #fff; border-radius: 24px; padding: 28px;
    text-align: center; box-shadow: 0 20px 60px rgba(0,0,0,.3);
  }
  .book-qr-card img { width: 160px; height: 160px; }
  .book-qr-card .qr-label { font-size: 13px; color: var(--muted); margin-top: 12px; font-weight: 500; }
  .book-phone-pill {
    display: flex; align-items: center; gap: 12px;
    background: rgba(37,211,102,.15); border: 1px solid rgba(37,211,102,.3);
    border-radius: 50px; padding: 12px 24px; color: #25D366; font-weight: 600;
  }

  /* ── TESTIMONIALS ── */
  .testimonials-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px; margin-top: 50px;
  }
  .testi-card {
    background: #fff; border-radius: 20px; padding: 28px;
    border: 1px solid rgba(232,131,26,.1);
    box-shadow: 0 4px 24px rgba(30,10,0,.05);
    transition: transform .3s, box-shadow .3s;
  }
  .testi-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(30,10,0,.1); }
  .stars { color: var(--turmeric); font-size: 16px; letter-spacing: 2px; margin-bottom: 14px; }
  .testi-text { font-size: 15px; color: var(--charcoal); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
  .testi-author { display: flex; align-items: center; gap: 12px; }
  .testi-avatar {
    width: 42px; height: 42px; border-radius: 50%;
    background: linear-gradient(135deg, var(--saffron), var(--turmeric));
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; font-weight: 700; color: #fff; font-family: 'Playfair Display', serif;
  }
  .testi-name { font-weight: 600; font-size: 14px; color: var(--dark); }
  .testi-place { font-size: 12px; color: var(--muted); }

  /* ── CONTACT ── */
  .contact-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start;
  }
  .contact-item {
    display: flex; gap: 16px; align-items: flex-start; margin-bottom: 28px;
  }
  .contact-icon {
    width: 48px; height: 48px; border-radius: 14px;
    background: linear-gradient(135deg, rgba(232,131,26,.15), rgba(240,165,0,.1));
    display: flex; align-items: center; justify-content: center; font-size: 22px;
    flex-shrink: 0; border: 1px solid rgba(232,131,26,.2);
  }
  .contact-label { font-size: 12px; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); font-weight: 600; margin-bottom: 4px; }
  .contact-value { font-size: 16px; font-weight: 600; color: var(--dark); }
  .contact-value a { color: var(--saffron); text-decoration: none; }
  .contact-value a:hover { text-decoration: underline; }

  .map-embed {
    border-radius: 20px; overflow: hidden;
    box-shadow: 0 8px 40px rgba(30,10,0,.1);
    border: 1px solid rgba(232,131,26,.15);
  }
  .map-embed iframe { width: 100%; height: 300px; border: none; display: block; }

  /* ── FOOTER ── */
  footer {
    background: var(--dark); color: rgba(255,255,255,.6);
    padding: 50px 5vw 28px;
  }
  .footer-inner {
    display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 50px; margin-bottom: 40px;
  }
  .footer-brand .nav-logo-text span:first-child { color: #fff; font-size: 22px; }
  .footer-brand .nav-logo-text span:last-child { color: rgba(255,255,255,.4); }
  .footer-desc { font-size: 14px; line-height: 1.7; margin-top: 16px; color: rgba(255,255,255,.5); }
  .footer-col h4 { font-size: 13px; text-transform: uppercase; letter-spacing: .1em; font-weight: 700; color: rgba(255,255,255,.9); margin-bottom: 16px; }
  .footer-col ul { list-style: none; }
  .footer-col li { margin-bottom: 10px; }
  .footer-col a { color: rgba(255,255,255,.5); text-decoration: none; font-size: 14px; transition: color .2s; }
  .footer-col a:hover { color: var(--saffron); }
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding-top: 24px; display: flex; justify-content: space-between; align-items: center;
    font-size: 13px;
  }
  .footer-wa {
    display: flex; align-items: center; gap: 8px;
    padding: 10px 22px; border-radius: 50px;
    background: #25D366; color: #fff; text-decoration: none; font-weight: 600; font-size: 14px;
    transition: transform .2s;
  }
  .footer-wa:hover { transform: scale(1.04); }

  /* ── FLOATING WA BTN ── */
  .wa-float {
    position: fixed; bottom: 28px; right: 28px; z-index: 999;
    width: 60px; height: 60px; border-radius: 50%;
    background: #25D366; display: flex; align-items: center; justify-content: center;
    box-shadow: 0 6px 32px rgba(37,211,102,.45);
    text-decoration: none; transition: transform .25s, box-shadow .25s;
    animation: waFloat 3s ease-in-out infinite;
  }
  .wa-float:hover { transform: scale(1.12); box-shadow: 0 10px 40px rgba(37,211,102,.6); }
  @keyframes waFloat {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
  }
  .wa-float svg { width: 32px; height: 32px; }

  /* ── MOBILE ── */
  @media (max-width: 900px) {
    .nav-links, .nav-cta { display: none; }
    .hamburger { display: flex; }
    .hero { grid-template-columns: 1fr; padding-top: 100px; text-align: center; }
    .hero-content { order: 2; }
    .hero-visual { order: 1; margin-bottom: 40px; }
    .hero-sub, .hero-actions { margin-left: auto; margin-right: auto; justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-float-card.card1 { top: 5%; right: 0; }
    .hero-float-card.card2 { bottom: 5%; left: 0; }
    .about-grid, .contact-grid { grid-template-columns: 1fr; }
    .book-inner { grid-template-columns: 1fr; padding: 40px 28px; }
    .footer-inner { grid-template-columns: 1fr; gap: 30px; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
    .about-badge-float { position: static; margin-top: 20px; display: inline-block; }
    .hero-img-ring { width: min(340px, 85vw); }
  }