:root{
  --navy: #0A1F5C;
  --gold: #C9A84C;
  --gold-light: #E8C96A;
  --red: #C62828;
  --ivory: #F7F6F2;
  --paper: #F7F6F2;
  --ink: #1C2333;
  --line: #E3E1D8;
  --white: #FFFFFF;
  --pearl: #F2F4F8;
  --gray: #E5E7EB;
  --gray-text: #6B7280;
  --silver: #A0A8B8;
}
*{margin:0;padding:0;box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  font-family: 'Noto Sans Thai', sans-serif;
  color:var(--ink);
  background:var(--paper);
  overflow-x:hidden;
}

/* ลิงก์ในบทความ */
a.content-link {
  color: var(--gold);
  text-decoration: underline;
  word-break: break-all;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.2s;
}
a.content-link:hover {
  color: var(--navy);
}

/* ══ WEBSITE HEADER ══ */
#site-header{
  background:linear-gradient(135deg, #050f2e 0%, var(--navy) 60%, #0d2470 100%);
  padding:2.5rem 2rem 2rem;
  text-align:center;
  position:relative;
  overflow:hidden;
}
#site-header::after{
  content:'';
  position:absolute;
  bottom:0;left:0;right:0;
  height:60px;
  background:radial-gradient(ellipse at 50% 100%, rgba(198,164,92,0.25) 0%, transparent 70%);
  pointer-events:none;
}
.site-title{
  font-family:'Playfair Display', serif;
  font-size:clamp(2.2rem,6vw,4.5rem);
  font-weight:700;
  color:#FFFFFF;
  letter-spacing:4px;
  text-transform:uppercase;
  line-height:1.1;
  position:relative;z-index:1;
  text-shadow:0 2px 32px rgba(198,164,92,0.18);
}
.site-tagline{
  color:rgba(198,164,92,0.85);
  font-size:clamp(0.75rem,2vw,1.05rem);
  letter-spacing:1px;
  text-transform:none;
  margin-top:0.6rem;
  font-weight:500;
  position:relative;z-index:1;
  line-height:1.6;
}

/* ══ NAVBAR ══ */
#navbar{
  position:sticky;top:0;z-index:10000;
  background:var(--navy);
  box-shadow:0 3px 16px rgba(10,31,92,0.18);
  margin-top:4px;
  border-bottom:1px solid rgba(198,164,92,0.3);
}
.nav-inner{
  max-width:1200px;margin:0 auto;
  display:flex;align-items:center;justify-content:space-between;
  padding:0 2rem;height:48px;
}
.nav-brand{
  font-family:'Playfair Display', serif;
  color:var(--gold);font-size:1rem;font-weight:700;
  letter-spacing:1px;text-decoration:none;flex-shrink:0;
}
.nav-brand span{color:#fff;}
.nav-menu{display:flex;gap:0;list-style:none;}
.nav-menu a{
  color:rgba(255,255,255,0.85);text-decoration:none;
  font-size:0.78rem;font-weight:500;
  padding:0 0.85rem;height:48px;
  display:flex;align-items:center;
  border-bottom:2px solid transparent;
  transition:all 0.2s;white-space:nowrap;
}
.nav-menu a:hover,.nav-menu a.active{
  color:#fff;border-bottom-color:var(--gold);
  background:rgba(255,255,255,0.07);
}
.nav-btns{display:flex;gap:0.5rem;align-items:center;}
.btn-nav{
  background:var(--gold);color:var(--navy);border:none;
  padding:0.35rem 1.1rem;border-radius:999px;
  font-size:0.78rem;font-weight:700;
  cursor:pointer;transition:all 0.2s;font-family:inherit;
}
.btn-nav:hover{background:#fff;color:var(--navy);}
.hamburger{display:none;background:none;border:none;cursor:pointer;flex-direction:column;gap:4px;padding:4px;}
.hamburger span{display:block;width:20px;height:2px;background:#fff;border-radius:2px;}

/* ══ MOBILE MENU ══ */
.mobile-menu {
  display: none;
  position: fixed;
  top: 48px; left: 0; right: 0;
  background: rgba(10, 31, 92, 0.98);
  border-bottom: 2.5px solid var(--gold);
  flex-direction: column;
  padding: 1rem 2rem;
  z-index: 9999;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: color 0.2s;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--gold); }

/* ══ FULL PAGE VIEW ENGINE (ADAPTIVE FOR SHORTS) ══ */
.full-page-view { background: #fff; min-height: 80vh; }
.breadcrumb{font-size:13px; color:#8B8F9E; margin-bottom:20px;}
.breadcrumb a{color:var(--navy); text-decoration:none; font-weight: 600;}

/* Layout ปกติ (รูปซ้าย 420px) */
.detail-grid{ display:grid; grid-template-columns: 420px 1fr; gap:40px; align-items:start; }
.detail-grid .img-wrap{
  width:100%; aspect-ratio:4/3; border-radius:12px; position:relative; overflow:hidden;
  background:linear-gradient(135deg,#0A1F5C,#173a8c); display:flex; align-items:center; justify-content:center;
}
.detail-grid .img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.detail-grid .content .eyebrow{ color:var(--red); font-weight:600; font-size:13px; letter-spacing:1px; text-transform:uppercase; margin-bottom:10px; display:block; }
.detail-grid .content h1{ font-family:'Playfair Display',serif; color:var(--navy); font-size:28px; margin-bottom:14px; line-height:1.35; }
.full-page-sub-text{font-size:15.5px; line-height:1.9; color:#3A3F4E; margin-bottom:14px;}

/* 🎯 Layout แนวตั้งสำหรับ YouTube Shorts (กว้าง 340px) */
.detail-grid.has-vertical-media {
  grid-template-columns: 340px 1fr;
}
.detail-grid.has-vertical-media .img-wrap {
  aspect-ratio: 9 / 16;
  max-width: 340px;
  background: #000;
}

/* ══ YOUTUBE EMBED CONTAINER ══ */
.yt-embed-wrap {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.yt-embed-wrap.horizontal {
  aspect-ratio: 16 / 9;
}
.yt-embed-wrap.vertical {
  aspect-ratio: 9 / 16;
}
.yt-embed-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Layout ส่วนเนื้อหายาว (Content Body) */
.sub-block{ margin-top:24px; padding-top:20px; border-top:none; width:100%; }
.full-page-content-body { font-size:15.5px; line-height:1.9; color:#3A3F4E; width:100%; word-break:break-word; }

/* ปุ่มกลับสู่หน้าหลักใน Full Page View */
.btn-back-home {
  background: var(--navy) !important;
  color: #FFFFFF !important;
  padding: 0.6rem 2rem;
  font-size: 0.9rem;
  border-radius: 999px;
  border: none;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
}
.btn-back-home:hover {
  background: var(--gold) !important;
  color: var(--navy) !important;
}

@media (max-width:760px){
  .detail-grid, .detail-grid.has-vertical-media { grid-template-columns:1fr; }
  .detail-grid.has-vertical-media .img-wrap { margin: 0 auto; }
}

/* ══ OUR PARTNERS SLIDER ══ */
#partner-banner{
  background:#fff;border-bottom:2px solid var(--gold);
  height:55px;
  overflow:hidden;display:flex;align-items:center;
}
.banner-label{
  background:var(--navy);color:var(--gold);
  font-size:0.72rem;font-weight:700;letter-spacing:2px;text-transform:uppercase;
  padding:0 1.25rem;height:100%;display:flex;align-items:center;
  white-space:nowrap;flex-shrink:0;border-right:1px solid var(--gold);
}
.banner-track-wrap{overflow:hidden;flex:1;}
.banner-track{
  display:flex;align-items:center;
  animation:scrollLeft 35s linear infinite;
  width:max-content;
}
.banner-track:hover{animation-play-state:paused;}
@keyframes scrollLeft{0%{transform:translateX(0);}100%{transform:translateX(-50%);}}
.partner-chip{
  display:flex;align-items:center;gap:0.65rem;
  padding:0 1.5rem;height:55px;
  border-right:1px solid var(--gray);
  text-decoration:none;cursor:pointer;
  transition:background 0.2s;
}
.partner-chip:hover{background:rgba(198,164,92,0.08);}
.partner-chip img{width:30px;height:30px;border-radius:50%;object-fit:cover;border:1.5px solid var(--gold);}
.partner-chip-logo{width:30px;height:30px;border-radius:50%;background:var(--navy);display:flex;align-items:center;justify-content:center;font-size:0.75rem;font-weight:700;color:var(--gold);}
.partner-chip span{color:var(--navy);font-size:0.88rem;font-weight:600;white-space:nowrap;}

#our-partners-section {
  background: var(--ivory);
  padding: 4rem 2rem;
  border-top: 1px solid var(--gray);
  border-bottom: 1px solid var(--gray);
}
.partners-slider-container { overflow: hidden; width: 100%; position: relative; padding: 1.5rem 0; }
.partners-slider-track { display: flex; gap: 20px; width: max-content; align-items: center; will-change: transform; }

.partner-card-new { flex:0 0 310px; cursor:pointer; text-decoration:none; color:inherit; display:block; }
.partner-card-new .img-wrap{
  width:100%; aspect-ratio:4/3; border-radius:10px; background:linear-gradient(135deg,#0A1F5C,#1c3a8a);
  display:flex; align-items:center; justify-content:center; box-shadow:0 12px 30px -18px rgba(10,31,92,.5); transition:transform .25s ease;
  overflow:hidden;
}
.partner-card-new:hover .img-wrap{transform:translateY(-4px);}
.partner-card-new .img-wrap img{width:100%; height:100%; object-fit:cover;}
.partner-card-new h3{ margin-top:14px; font-size:15px; font-weight:600; text-align:center; color:var(--navy); line-height:1.4; }
.partner-card-new .type{ text-align:center; font-size:11.5px; color:#8B8F9E; margin-top:2px; }

@media (max-width:760px){
  .partner-card-new { flex:0 0 260px; }
}

/* ══ NEWS & EVENTS ══ */
.news-card{
  display:grid; grid-template-columns: 1fr 3fr; gap:24px; background:#fff; border-radius:10px; padding:18px; margin-bottom:18px;
  box-shadow:0 8px 24px -18px rgba(10,31,92,.4); text-decoration:none; color:inherit; border:1px solid var(--line);
  transition: transform 0.2s;
}
.news-card:hover{ transform: translateY(-2px); border-color:var(--gold); }
.news-card .img-wrap{
  width:100%; aspect-ratio:4/3; border-radius:8px; background:#0A1F5C; display:flex; align-items:center; justify-content:center;
  overflow:hidden; position:relative;
}
.news-card .img-wrap img{
  width:100%; height:100%; object-fit:cover; object-position:center; display:block;
}
.news-card .body{display:flex; flex-direction:column; justify-content:center;}
.news-card .cat{font-size:11.5px; color:var(--red); font-weight:600; letter-spacing:.5px; margin-bottom:6px; text-transform:uppercase;}
.news-card h3{font-size:17px; color:var(--navy); margin-bottom:8px; line-height:1.4;}
.news-card p{font-size:13.5px; color:#5A5E6B; line-height:1.7;}

@media (max-width:700px){
  .news-card{grid-template-columns:1fr;}
}

/* ══ CONTACT POP-UP MODAL ══ */
.overlay{
  position:fixed; inset:0; background:rgba(10,15,35,.65); display:none; align-items:center; justify-content:center; padding:20px; z-index:99999;
  backdrop-filter: blur(4px);
}
.overlay.show{display:flex;}
.modal-contact{
  background:#fff; width:100%; max-width:480px; border-radius:14px; padding:32px; position:relative; max-height:90vh; overflow-y:auto;
  box-shadow:0 30px 70px -20px rgba(10,31,92,.5);
}
.modal-contact .close-x{position:absolute; top:16px; right:18px; background:none; border:none; font-size:20px; cursor:pointer; color:#8B8F9E;}
.modal-contact h3{font-family:'Playfair Display',serif; color:var(--navy); font-size:22px; margin-bottom:6px;}
.modal-contact .sub{font-size:13px; color:#8B8F9E; margin-bottom:22px;}

.field{margin-bottom:16px;}
.field label{display:block; font-size:13px; font-weight:600; color:var(--navy); margin-bottom:6px;}
.field label .req{color:var(--red);}
.field input, .field select{
  width:100%; padding:11px 14px; border:1px solid var(--line); border-radius:8px; font-family:inherit; font-size:14px; background:#FAFAF7;
}
.field input:focus, .field select:focus{outline:2px solid var(--gold); border-color:var(--gold);}

.consent{display:flex; gap:10px; align-items:flex-start; font-size:12.5px; color:#5A5E6B; margin:18px 0 6px; line-height:1.6;}
.consent input{margin-top:3px; cursor:pointer;}
.consent a{color:var(--navy); text-decoration:underline;}

.submit-btn{
  width:100%; background:var(--navy); color:#fff; border:none; padding:14px; border-radius:8px; font-size:15px; font-weight:700; cursor:pointer; margin-top:10px; font-family:inherit;
  transition: all 0.25s ease;
}
.submit-btn:hover{background:#122a75;}
.submit-btn:disabled {
  background: #9BB0DA !important;
  color: #FFFFFF !important;
  cursor: not-allowed !important;
  opacity: 0.65;
  box-shadow: none !important;
}

.thanks-modal{text-align:center; max-width:400px;}
.thanks-icon{
  width:64px; height:64px; border-radius:50%; background:#EAF3EA; display:flex; align-items:center; justify-content:center; margin:0 auto 18px;
}
.thanks-modal h3{margin-bottom:12px;}
.thanks-modal p{font-size:14px; color:#5A5E6B; line-height:1.8; margin-bottom:24px;}
.thanks-modal .submit-btn{background:var(--gold); color:var(--navy);}

/* ══ TEAM & SUCCESS STORY SLIDER ══ */
.success-slider-container {
  overflow: hidden;
  width: 100%;
  position: relative;
  padding: 1rem 0;
}
.success-slider-track {
  display: flex;
  gap: 24px;
  width: max-content;
  align-items: stretch;
  will-change: transform;
}
.success-slider-track.single-item {
  justify-content: center;
  width: 100%;
  transform: none !important;
}

.story-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 28px -18px rgba(10,31,92,.4);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: row;
  width: 780px;
  max-width: 85vw;
  flex-shrink: 0;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.story-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px -16px rgba(10,31,92,.5);
}
.story-card .img-wrap {
  width: 360px;
  flex-shrink: 0;
  background: linear-gradient(135deg,#0A1F5C,#1c3a8a);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.story-card .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.story-card .body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}
.story-card .role {
  font-size: 12px;
  color: var(--red);
  font-weight: 600;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.story-card h3 {
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.4;
  font-family: 'Playfair Display', serif;
}
.story-card p {
  font-size: 14px;
  color: #5A5E6B;
  line-height: 1.7;
  margin-bottom: 18px;
}
.story-card .links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.link-btn {
  font-size: 12.5px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 999px;
  text-decoration: none;
  display: inline-block;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.link-btn.detail {
  background: #EDE6D0;
  color: var(--navy);
}
.link-btn.external {
  background: var(--gold);
  color: var(--navy);
}

@media (max-width: 760px) {
  .story-card {
    width: 90vw;
    max-width: 90vw;
  }
  .story-card .img-wrap {
    width: 40%;
  }
  .story-card .body {
    padding: 14px;
    width: 60%;
  }
  .story-card h3 {
    font-size: 15px;
    margin-bottom: 6px;
  }
  .story-card p {
    font-size: 12.5px;
    line-height: 1.5;
    margin-bottom: 10px;
  }
  .link-btn {
    font-size: 11px;
    padding: 6px 10px;
  }
}

/* ══ GENERAL SECTIONS ══ */
section{padding:3.5rem 2rem;background:var(--ivory);}
section:nth-child(even){background:#fff;}
.section-inner{max-width:1200px;margin:0 auto;}
.section-label-wrap{display:flex;justify-content:flex-end;margin-bottom:1.75rem;}
.section-label{
  background:var(--navy);color:#fff;
  font-size:0.72rem;font-weight:700;letter-spacing:3px;text-transform:uppercase;
  padding:0.4rem 1.5rem;border-radius:0 0 0 8px;
  border-left:1px solid var(--gold);
  border-bottom:1px solid var(--gold);
}
.s-title{
  font-family:'Noto Serif Thai', serif;
  font-size:clamp(1.5rem,3vw,2.2rem);
  color:var(--navy);font-weight:700;
  line-height:1.25;margin-bottom:0.75rem;
}
.s-body{font-size:0.95rem;line-height:1.85;color:#444;}
.divider{width:40px;height:3px;background:var(--gold);margin:0.75rem 0 1.25rem;}

/* HOME */
#home{background:#fff;padding:0;}
.home-img-wrap{width:100%;overflow:hidden;}
.home-img-wrap img{width:100%;height:420px;object-fit:cover;display:block;}
.home-img-placeholder{width:100%;height:420px;background:linear-gradient(135deg,var(--navy),#0d2470);display:flex;align-items:center;justify-content:center;color:rgba(255,255,255,0.2);font-size:5rem;}
.home-content{max-width:1200px;margin:0 auto;padding:2.5rem 2rem;}
.home-content .s-title{font-family:'Playfair Display', serif; font-size:clamp(1.6rem,3.5vw,2.6rem);}
.home-toggle-btn { color: var(--gold); font-weight: 700; font-size: 0.9rem; cursor: pointer; display: inline-block; margin-top: 0.8rem; }

/* SERVICES */
.service-row{
  display:grid;grid-template-columns:1fr 1fr;
  gap:0;margin-bottom:2px;
  border-radius:12px;overflow:hidden;
  box-shadow:0 2px 12px rgba(10,29,63,0.06);
  cursor:pointer; transition: transform 0.2s, box-shadow 0.2s;
}
.service-row:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(10,29,63,0.1); }
.service-img{overflow:hidden;}
.service-img img{width:100%;height:260px;object-fit:cover;display:block;transition:transform 0.4s;}
.service-img-placeholder{width:100%;height:260px;background:linear-gradient(135deg,var(--navy),#0d2470);display:flex;align-items:center;justify-content:center;color:rgba(255,255,255,0.2);font-size:3rem;}
.service-body{ background:#fff; padding:2rem 2.5rem; display:flex;flex-direction:column;justify-content:center; }
.service-body .s-title{font-size:1.3rem;}
@media(max-width:768px){ .service-row{grid-template-columns:1fr;} .service-row.reverse .service-img{order:-1;} }

/* CAREER */
.career-grid{ display:grid; grid-template-columns: repeat(3, 1fr); gap:1.5rem; }
@media(max-width: 900px){ .career-grid{ grid-template-columns: repeat(2, 1fr); } }
@media(max-width: 600px){ .career-grid{ grid-template-columns: 1fr; } }
.career-card{ background:#fff;border-radius:12px;overflow:hidden; box-shadow:0 3px 16px rgba(10,29,63,0.07); border-top:4px solid var(--gold); cursor:pointer;transition:all 0.2s; }
.career-card:hover{border-color:var(--navy);box-shadow:0 6px 24px rgba(10,29,63,0.12);transform:translateY(-2px);}
.career-card img{width:100%;height:200px;object-fit:cover;display:block;}
.career-card-placeholder{width:100%;height:200px;background:linear-gradient(135deg,var(--navy),#0d2470);display:flex;align-items:center;justify-content:center;color:rgba(255,255,255,0.2);font-size:3rem;}
.career-card-body{padding:1.5rem;}
.career-card-title{font-family:'Noto Serif Thai', serif; font-size:1.05rem;font-weight:700;color:var(--navy);margin-bottom:0.6rem;}
.career-card-desc{font-size:0.85rem;color:var(--gray-text);line-height:1.7;}
.career-pagination { display: flex; justify-content: center; align-items: center; gap: 0.5rem; margin-top: 2rem; }
.news-pagination { display: flex; justify-content: center; align-items: center; gap: 0.5rem; margin-top: 2rem; }
.page-btn { background: #fff; border: 1px solid var(--gray); color: var(--navy); padding: 0.5rem 0.9rem; border-radius: 6px; font-size: 0.85rem; font-weight: 600; cursor: pointer; }
.page-btn.active { background: var(--navy); color: var(--gold); }

/* ABOUT SLIDER */
#about{background:#fff; overflow:hidden;}
.about-slider-container { overflow: hidden; width: 100%; position: relative; padding: 1rem 0; }
.about-slider-track { display: flex; gap: 2.5rem; width: max-content; align-items: stretch; will-change: transform; }
.about-card { background: var(--ivory); border: 1px solid var(--gray); border-radius: 16px; padding: 2.25rem; width: 750px; max-width: 85vw; flex-shrink: 0; display: flex; flex-direction: column; justify-content: space-between; }
.about-card-img-wrap { width: 100%; margin-top: 1.5rem; border-radius: 10px; overflow: hidden; border: 1px solid var(--gold); }
.about-card-img-wrap img { width: 100%; height: 320px; object-fit: cover; display: block; }

/* JOIN PARTNER */
#join-partner{background:#fff;}
.jp-grid{display:grid;grid-template-columns:1fr;gap:2rem;align-items:center;}
.jp-grid.has-img{grid-template-columns:1fr 1fr;}
.jp-img img{width:100%;height:340px;object-fit:cover;border-radius:12px;box-shadow:0 4px 20px rgba(0,0,0,0.08);border:1px solid var(--gold);}
.jp-body{font-size:0.95rem;line-height:1.9;color:#444;white-space:pre-line;}
@media(max-width:768px){ .jp-grid.has-img{grid-template-columns:1fr;} }

/* FOOTER & MODAL */
footer{ background:#050f2e;color:var(--silver);text-align:center;padding:2rem 1.5rem;font-size:0.78rem;line-height:1.9; }
footer a{color:var(--gold);text-decoration:none;}
.footer-links{margin-top:0.4rem;font-size:0.7rem;}
.footer-links a{color:var(--silver);margin:0 0.4rem;}
.footer-disclaimer{font-size:0.68rem;color:rgba(160,168,184,0.55);margin-top:0.6rem;font-style:italic;line-height:1.65;max-width:600px;margin-left:auto;margin-right:auto;}

.modal-bg{display:none;position:fixed;inset:0;z-index:9999;background:rgba(0,0,0,0.55);backdrop-filter:blur(4px);align-items:center;justify-content:center;}
.modal-bg.open{display:flex;}
.modal-box{background:#fff;border-radius:16px;padding:2.25rem;width:90%;max-width:460px;position:relative;max-height:90vh;overflow-y:auto;}
.modal-close{position:absolute;top:1rem;right:1.25rem;font-size:1.2rem;color:var(--gray-text);cursor:pointer;background:none;border:none;}
.toast{position:fixed;bottom:2rem;left:50%;transform:translateX(-50%);background:#1f2937;color:#fff;padding:0.65rem 1.4rem;border-radius:8px;font-size:0.83rem;z-index:99999;opacity:0;transition:opacity 0.3s;pointer-events:none;white-space:nowrap;}
.toast.show{opacity:1;}

@media(max-width:900px){
  .nav-menu{display:none;}
  .hamburger{display:flex;}
}