:root {
    --gold: #C9A84C;
    --gold-light: #E8C97A;
    --gold-dark: #8B6914;
    --navy: #0D1B2A;
    --navy-mid: #1A2E42;
    --navy-light: #243A52;
    --cream: #FAF7F0;
    --cream-dark: #F0EAD8;
    --white: #FFFFFF;
    --text-dark: #0D1B2A;
    --text-mid: #3A5068;
    --text-light: #7A91A6;
    --radius: 12px;
    --shadow: 0 8px 40px rgba(13,27,42,0.12);
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--text-dark);
    overflow-x: hidden;
  }

  /* ── NAVBAR ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 999;
    background: rgba(13,27,42,0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201,168,76,0.25);
    transition: all 0.3s ease;
  }

  .nav-inner {
    max-width: 1280px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 2rem; height: 72px;
  }

  .logo {
    display: flex; align-items: center; gap: 12px;
    text-decoration: none;
  }

  .logo-icon {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif;
    font-weight: 900; font-size: 20px; color: var(--white);
  }

  .logo-text { line-height: 1.15; }
  .logo-text span:first-child {
    display: block; font-family: 'Playfair Display', serif;
    font-size: 16px; font-weight: 700; color: var(--gold);
    letter-spacing: 0.5px;
  }
  .logo-text span:last-child {
    display: block; font-size: 10px; color: rgba(255,255,255,0.55);
    letter-spacing: 2px; text-transform: uppercase;
  }

  .nav-links {
    display: flex; align-items: center; gap: 4px; list-style: none;
  }

  .nav-links a {
    display: block; padding: 8px 16px;
    color: rgba(255,255,255,0.8);
    text-decoration: none; font-size: 14px; font-weight: 500;
    border-radius: 8px; transition: all 0.2s;
    letter-spacing: 0.3px;
  }

  .nav-links a:hover, .nav-links a.active {
    color: var(--gold); background: rgba(201,168,76,0.1);
  }

  .nav-cta {
    background: var(--gold) !important;
    color: var(--navy) !important; font-weight: 600 !important;
    padding: 9px 20px !important; border-radius: 8px !important;
  }

  .nav-cta:hover { background: var(--gold-light) !important; color: var(--navy) !important; }

  .hamburger {
    display: none; flex-direction: column; gap: 5px;
    cursor: pointer; padding: 8px;
  }
  .hamburger span {
    width: 24px; height: 2px; background: var(--white);
    border-radius: 2px; transition: all 0.3s;
    display: block;
  }
  .hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

  .mobile-menu {
    display: none; position: absolute; top: 72px; left: 0; right: 0;
    background: rgba(13,27,42,0.98); backdrop-filter: blur(12px);
    padding: 1rem; border-bottom: 1px solid rgba(201,168,76,0.15);
  }
  .mobile-menu.open { display: block; }
  .mobile-menu a {
    display: block; padding: 12px 16px; color: rgba(255,255,255,0.85);
    text-decoration: none; font-size: 15px; font-weight: 500;
    border-radius: 8px; transition: all 0.2s;
  }
  .mobile-menu a:hover { color: var(--gold); background: rgba(201,168,76,0.1); }

  /* ── HERO ── */
  #home {
    min-height: 100vh;
    background: var(--navy);
    display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
    padding-top: 72px;
  }

  .hero-bg-pattern {
    position: absolute; inset: 0;
    background-image:
      repeating-linear-gradient(45deg, rgba(201,168,76,0.03) 0, rgba(201,168,76,0.03) 1px, transparent 0, transparent 50%);
    background-size: 40px 40px;
  }

  .hero-glow {
    position: absolute; top: 20%; left: 50%;
    transform: translateX(-50%);
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
    pointer-events: none;
  }

  .hero-content {
    position: relative; z-index: 2;
    text-align: center; max-width: 860px;
    padding: 4rem 2rem;
  }

  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(201,168,76,0.12); border: 1px solid rgba(201,168,76,0.3);
    border-radius: 40px; padding: 6px 18px;
    font-size: 12px; font-weight: 600; color: var(--gold);
    letter-spacing: 2px; text-transform: uppercase;
    margin-bottom: 2rem; animation: fadeUp 0.8s ease both;
  }

  .hero-badge i { font-size: 10px; }

  .hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 6vw, 4.2rem);
    font-weight: 900; line-height: 1.1;
    color: var(--white); margin-bottom: 1.5rem;
    animation: fadeUp 0.8s 0.15s ease both;
  }

  .hero-title .gold { color: var(--gold); }

  .hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255,255,255,0.6); font-weight: 300;
    line-height: 1.8; max-width: 580px; margin: 0 auto 3rem;
    animation: fadeUp 0.8s 0.3s ease both;
  }

  .hero-actions {
    display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
    animation: fadeUp 0.8s 0.45s ease both;
  }

  .btn-primary {
    background: var(--gold); color: var(--navy);
    padding: 14px 32px; border-radius: var(--radius);
    font-size: 15px; font-weight: 600;
    text-decoration: none; transition: all 0.25s;
    border: none; cursor: pointer; display: inline-block;
  }
  .btn-primary:hover {
    background: var(--gold-light); transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201,168,76,0.3);
  }

  .btn-outline {
    background: transparent; color: var(--white);
    padding: 13px 32px; border-radius: var(--radius);
    font-size: 15px; font-weight: 500;
    text-decoration: none; transition: all 0.25s;
    border: 1px solid rgba(255,255,255,0.25); display: inline-block;
  }
  .btn-outline:hover {
    border-color: var(--gold); color: var(--gold);
    transform: translateY(-2px);
  }

  .hero-stats {
    display: flex; gap: 3rem; justify-content: center;
    flex-wrap: wrap; margin-top: 4rem;
    padding-top: 3rem; border-top: 1px solid rgba(255,255,255,0.08);
    animation: fadeUp 0.8s 0.6s ease both;
  }

  .stat { text-align: center; }
  .stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem; font-weight: 700; color: var(--gold);
  }
  .stat-label {
    font-size: 12px; color: rgba(255,255,255,0.45);
    letter-spacing: 1.5px; text-transform: uppercase; margin-top: 4px;
  }

  /* ── SECTION COMMON ── */
  section { padding: 100px 2rem; }
  .container { max-width: 1200px; margin: 0 auto; }

  .section-label {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 11px; font-weight: 600; color: var(--gold);
    letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 1rem;
  }
  .section-label::before {
    content: ''; width: 24px; height: 2px; background: var(--gold);
  }

  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700; color: var(--navy); line-height: 1.2;
    margin-bottom: 1.2rem;
  }

  .section-title.light { color: var(--white); }
  .section-label.light { color: var(--gold-light); }
  .section-label.light::before { background: var(--gold-light); }

  .section-desc {
    font-size: 16px; color: var(--text-mid);
    line-height: 1.8; max-width: 560px;
  }

  /* ── SERVICES / PROPERTIES ── */
  .properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px; margin-top: 3.5rem;
  }

  .prop-card {
    background: var(--white);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.35s ease;
    border: 1px solid rgba(201,168,76,0.1);
  }

  .prop-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(13,27,42,0.18);
    border-color: rgba(201,168,76,0.35);
  }

  .prop-img {
    height: 200px; position: relative; overflow: hidden;
  }

  .prop-img-inner {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    font-size: 4rem; position: relative;
  }

  .girls-bg { background: linear-gradient(135deg, #f8e8f4 0%, #e8c8e8 100%); }
  .boys-bg  { background: linear-gradient(135deg, #e8f0f8 0%, #c8d8e8 100%); }
  .guest-bg { background: linear-gradient(135deg, #f8f4e8 0%, #e8d8c0 100%); }

  .prop-badge {
    position: absolute; top: 16px; right: 16px;
    background: var(--gold); color: var(--navy);
    font-size: 11px; font-weight: 700; letter-spacing: 1px;
    text-transform: uppercase; padding: 4px 12px; border-radius: 40px;
  }

  .prop-body { padding: 1.8rem; }

  .prop-type {
    font-size: 11px; font-weight: 600; color: var(--gold);
    letter-spacing: 2px; text-transform: uppercase; margin-bottom: 8px;
  }

  .prop-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem; font-weight: 700; color: var(--navy);
    margin-bottom: 0.8rem;
  }

  .prop-desc {
    font-size: 14px; color: var(--text-mid); line-height: 1.7;
    margin-bottom: 1.4rem;
  }

  .prop-features {
    display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 1.6rem;
  }

  .prop-feat {
    display: inline-flex; align-items: center; gap: 5px;
    background: var(--cream); border: 1px solid var(--cream-dark);
    border-radius: 6px; padding: 4px 10px;
    font-size: 12px; color: var(--text-mid); font-weight: 500;
  }

  .prop-feat i { color: var(--gold); font-size: 10px; }

  .prop-cta {
    display: flex; align-items: center; justify-content: space-between;
  }

  .prop-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem; font-weight: 700; color: var(--gold);
  }

  .prop-price span {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px; font-weight: 400; color: var(--text-light);
  }

  .prop-btn {
    background: var(--navy); color: var(--white);
    padding: 9px 20px; border-radius: 8px;
    font-size: 13px; font-weight: 600;
    text-decoration: none; transition: all 0.2s;
    border: none; cursor: pointer;
  }

  .prop-btn:hover { background: var(--gold); color: var(--navy); }

  /* ── WHY US ── */
  #why { background: var(--navy); }

  .why-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 4rem; align-items: center; margin-top: 0;
  }

  .why-features { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2rem; }

  .why-feat {
    display: flex; gap: 1rem; align-items: flex-start;
    background: rgba(255,255,255,0.04); border: 1px solid rgba(201,168,76,0.12);
    border-radius: var(--radius); padding: 1.2rem 1.4rem;
    transition: all 0.25s;
  }

  .why-feat:hover {
    background: rgba(201,168,76,0.07);
    border-color: rgba(201,168,76,0.3);
  }

  .why-icon {
    width: 44px; height: 44px; min-width: 44px;
    background: rgba(201,168,76,0.12); border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold); font-size: 18px;
  }

  .why-feat-title {
    font-size: 15px; font-weight: 600; color: var(--white);
    margin-bottom: 4px;
  }

  .why-feat-desc { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.65; }

  .why-visual {
    background: rgba(255,255,255,0.03); border: 1px solid rgba(201,168,76,0.15);
    border-radius: 20px; padding: 2.5rem;
    display: flex; flex-direction: column; gap: 1.2rem;
  }

  .why-stat-card {
    background: rgba(201,168,76,0.08); border: 1px solid rgba(201,168,76,0.18);
    border-radius: var(--radius); padding: 1.4rem 1.8rem;
  }

  .why-stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem; font-weight: 700; color: var(--gold);
  }

  .why-stat-label { font-size: 13px; color: rgba(255,255,255,0.55); margin-top: 2px; }

  .why-testimonial {
    background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius); padding: 1.4rem;
  }

  .why-testimonial p {
    font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.7;
    font-style: italic; margin-bottom: 1rem;
  }

  .testimonial-author {
    display: flex; align-items: center; gap: 10px;
  }

  .author-avatar {
    width: 36px; height: 36px; border-radius: 50%;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 13px; color: var(--white);
  }

  .author-name { font-size: 13px; font-weight: 600; color: var(--white); }
  .author-role { font-size: 11px; color: rgba(255,255,255,0.4); }

  /* ── GIRLS HOSTEL ── */
  #girls-hostel { background: var(--cream); }

  .hostel-layout {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 4rem; align-items: center;
  }

  .hostel-layout.reverse { direction: rtl; }
  .hostel-layout.reverse > * { direction: ltr; }

  .hostel-visual {
    background: linear-gradient(135deg, #f5e8f5 0%, #e0c5e0 100%);
    border-radius: 24px; padding: 3rem;
    display: flex; flex-direction: column; gap: 1rem;
    min-height: 420px; justify-content: center; align-items: center;
    position: relative; overflow: hidden;
  }

  .hostel-visual.boys {
    background: linear-gradient(135deg, #e8f0f8 0%, #b8ccde 100%);
  }

  .hostel-visual.guest {
    background: linear-gradient(135deg, #f8f2e4 0%, #ddc89a 100%);
  }

  .hostel-emoji { font-size: 6rem; margin-bottom: 1rem; }

  .hostel-room-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 10px; width: 100%;
  }

  .room-mini {
    background: rgba(255,255,255,0.7); border-radius: 10px;
    padding: 12px; text-align: center;
  }

  .room-mini-icon { font-size: 1.5rem; margin-bottom: 4px; }
  .room-mini-label { font-size: 11px; color: var(--text-mid); font-weight: 600; }

  .hostel-info { padding: 1rem 0; }

  .amenities-list {
    display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
    margin: 1.8rem 0;
  }

  .amenity {
    display: flex; align-items: center; gap: 8px;
    font-size: 13px; color: var(--text-mid); font-weight: 500;
  }

  .amenity i { color: var(--gold); font-size: 12px; }

  /* ── ABOUT ── */
  #about { background: var(--white); }

  .about-grid {
    display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; align-items: center;
  }

  .about-img-block {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    border-radius: 24px; padding: 3rem;
    text-align: center; min-height: 380px;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
  }

  .about-logo-big {
    width: 90px; height: 90px;
    background: var(--gold);
    border-radius: 20px;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 40px; font-weight: 900; color: var(--white);
    margin: 0 auto 2rem;
  }

  .about-tagline {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem; color: var(--white);
    font-weight: 600; line-height: 1.4; margin-bottom: 1.2rem;
  }

  .about-tagline .gold { color: var(--gold); }

  .about-quote {
    font-size: 13px; color: rgba(255,255,255,0.5);
    font-style: italic; max-width: 260px;
  }

  .about-text { }

  .values-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 16px; margin-top: 2rem;
  }

  .value-card {
    background: var(--cream); border: 1px solid var(--cream-dark);
    border-radius: var(--radius); padding: 1.2rem;
    transition: all 0.25s;
  }

  .value-card:hover {
    background: var(--white); border-color: var(--gold);
    box-shadow: 0 4px 20px rgba(201,168,76,0.12);
  }

  .value-icon {
    font-size: 1.4rem; margin-bottom: 8px;
  }

  .value-title { font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
  .value-desc { font-size: 12px; color: var(--text-mid); line-height: 1.6; }

  /* ── CONTACT ── */
  #contact { background: var(--navy); }

  .contact-grid {
    display: grid; grid-template-columns: 1fr 1.3fr; gap: 4rem;
  }

  .contact-info { }

  .contact-item {
    display: flex; gap: 14px; align-items: flex-start;
    margin-bottom: 1.8rem;
  }

  .contact-icon {
    width: 44px; height: 44px; min-width: 44px;
    background: rgba(201,168,76,0.12); border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold); font-size: 17px;
  }

  .contact-label { font-size: 12px; color: rgba(255,255,255,0.4); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 4px; }
  .contact-value { font-size: 15px; color: var(--white); font-weight: 500; }

  .contact-form {
    background: rgba(255,255,255,0.04); border: 1px solid rgba(201,168,76,0.15);
    border-radius: 20px; padding: 2.5rem;
  }

  .form-group { margin-bottom: 1.4rem; }

  .form-label {
    display: block; font-size: 12px; font-weight: 600;
    color: rgba(255,255,255,0.5); letter-spacing: 1px;
    text-transform: uppercase; margin-bottom: 8px;
  }

  .form-input {
    width: 100%; background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px; padding: 12px 16px;
    font-size: 14px; color: var(--white);
    font-family: 'DM Sans', sans-serif;
    transition: all 0.25s; outline: none;
  }

  .form-input::placeholder { color: rgba(255,255,255,0.25); }

  .form-input:focus {
    border-color: var(--gold); background: rgba(201,168,76,0.06);
  }

  textarea.form-input { resize: vertical; min-height: 100px; }

  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

  .form-select {
    width: 100%; background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px; padding: 12px 16px;
    font-size: 14px; color: rgba(255,255,255,0.7);
    font-family: 'DM Sans', sans-serif;
    outline: none; cursor: pointer;
    transition: all 0.25s; appearance: none;
  }

  .form-select:focus { border-color: var(--gold); }
  .form-select option { background: var(--navy-mid); color: var(--white); }

  .form-submit {
    width: 100%; background: var(--gold); color: var(--navy);
    border: none; border-radius: 10px; padding: 14px;
    font-size: 15px; font-weight: 700; cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    transition: all 0.25s; margin-top: 0.5rem;
    letter-spacing: 0.5px;
  }

  .form-submit:hover { background: var(--gold-light); transform: translateY(-2px); }

  /* ── FOOTER ── */
  footer {
    background: #080F18; color: rgba(255,255,255,0.5);
    padding: 3rem 2rem 1.5rem;
  }

  .footer-inner {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem; padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }

  .footer-brand p {
    font-size: 13px; line-height: 1.8; margin: 1rem 0 1.4rem;
    color: rgba(255,255,255,0.4);
  }

  .social-links { display: flex; gap: 10px; }

  .social-link {
    width: 36px; height: 36px;
    background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px; display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.5); font-size: 15px; text-decoration: none;
    transition: all 0.2s;
  }

  .social-link:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }

  .footer-col h4 {
    font-size: 13px; font-weight: 600; color: var(--white);
    letter-spacing: 1px; text-transform: uppercase; margin-bottom: 1.2rem;
  }

  .footer-col ul { list-style: none; }
  .footer-col ul li { margin-bottom: 8px; }
  .footer-col ul li a {
    font-size: 13px; color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.2s;
  }
  .footer-col ul li a:hover { color: var(--gold); }

  .footer-bottom {
    max-width: 1200px; margin: 0 auto;
    padding-top: 1.5rem;
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 1rem;
    font-size: 12px; color: rgba(255,255,255,0.3);
  }

  .footer-bottom a { color: var(--gold); text-decoration: none; }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .reveal {
    opacity: 0; transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  /* ── RESPONSIVE ── */
  @media (max-width: 1024px) {
    .why-grid { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; }
    .hostel-layout, .hostel-layout.reverse { grid-template-columns: 1fr; direction: ltr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
  }

  @media (max-width: 768px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }
    section { padding: 70px 1.5rem; }
    .properties-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr; }
    .amenities-list { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { text-align: center; justify-content: center; }
    .hero-stats { gap: 1.8rem; }
    .why-visual { display: none; }
    .form-row { grid-template-columns: 1fr; }
  }

  @media (max-width: 480px) {
    .hero-content { padding: 2rem 1rem; }
    .hero-actions { flex-direction: column; align-items: center; }
    .btn-primary, .btn-outline { width: 100%; max-width: 280px; text-align: center; }
  }

  /* Toast */
  .toast {
    position: fixed; bottom: 30px; right: 30px; z-index: 9999;
    background: var(--gold); color: var(--navy);
    padding: 14px 24px; border-radius: 12px;
    font-weight: 600; font-size: 14px;
    transform: translateY(100px); opacity: 0;
    transition: all 0.4s ease;
    box-shadow: 0 8px 32px rgba(201,168,76,0.3);
  }
  .toast.show { transform: translateY(0); opacity: 1; }
