  :root {
    --green-deep: #1a3a2a;
    --green-mid: #2d5a3d;
    --green-bright: #4caf6e;
    --lime: #a8e063;
    --cream: #f5f0e8;
    --orange: #e8793a;
    --gold: #d4a843;
    --text-dark: #1a1a1a;
    --text-light: #f5f0e8;
    --card-bg: #ffffff;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--text-dark);
    overflow-x: hidden;
  }
.sawc-founder-avatar img{
  width:60px;
  height:60px;
  border-radius:50%;
  object-fit:cover;
}

  /* HERO */
  .hero {
    background: var(--green-deep);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 24px;
    position: relative;
    overflow: hidden;
  }

  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 60%, rgba(76,175,110,0.18) 0%, transparent 60%),
                radial-gradient(ellipse at 80% 20%, rgba(168,224,99,0.12) 0%, transparent 50%);
  }

  .hero-badge {
    display: inline-block;
    background: var(--lime);
    color: var(--green-deep);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 8px 20px;
    border-radius: 100px;
    margin-bottom: 28px;
    position: relative;
  }

  .hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 7vw, 6rem);
    font-weight: 900;
    color: var(--cream);
    line-height: 1.1;
    max-width: 800px;
    position: relative;
  }

  .hero h1 span { color: var(--lime); }

  .hero-sub {
    color: rgba(245,240,232,0.65);
    font-size: 1.1rem;
    margin-top: 20px;
    max-width: 480px;
    font-weight: 300;
    position: relative;
  }

  .hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 52px;
    position: relative;
    flex-wrap: wrap;
    justify-content: center;
  }

  .stat {
    text-align: center;
  }

  .stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--lime);
    line-height: 1;
  }

  .stat-label {
    font-size: 0.75rem;
    color: rgba(245,240,232,0.55);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 4px;
  }

  .scroll-hint {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(245,240,232,0.4);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: bounce 2s ease-in-out infinite;
  }

  @keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
  }

  /* SECTION HEADERS */
  .section {
    padding: 80px 24px;
    max-width: 1200px;
    margin: 0 auto;
  }

  .section-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 48px;
  }

  .section-icon {
    font-size: 2.2rem;
  }

  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--green-deep);
  }

  .section-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(to right, var(--green-bright), transparent);
  }

  /* RECIPE CARDS */
  .recipes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 28px;
  }

  .recipe-card {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(26,58,42,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
  }

  .recipe-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(26,58,42,0.15);
  }

  .card-accent {
    height: 5px;
    background: linear-gradient(to right, var(--green-bright), var(--lime));
  }

  .card-accent.orange { background: linear-gradient(to right, var(--orange), var(--gold)); }
  .card-accent.gold { background: linear-gradient(to right, var(--gold), var(--lime)); }

  .card-body { padding: 28px; }

  .card-num {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 900;
    color: rgba(26,58,42,0.08);
    line-height: 1;
    position: absolute;
    top: 18px;
    right: 24px;
  }

  .card-emoji { font-size: 2rem; margin-bottom: 12px; display: block; }

  .card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--green-deep);
    margin-bottom: 10px;
  }

  .protein-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, var(--green-bright), var(--lime));
    color: var(--green-deep);
    font-size: 0.78rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 100px;
    margin-bottom: 16px;
  }

  .ingredients-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--green-bright);
    margin-bottom: 10px;
  }

  .ingredients-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 16px;
  }

  .ingredients-list li {
    background: rgba(76,175,110,0.1);
    color: var(--green-mid);
    font-size: 0.8rem;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: 100px;
    border: 1px solid rgba(76,175,110,0.2);
  }

  .card-tip {
    font-size: 0.82rem;
    color: #666;
    font-style: italic;
    border-left: 3px solid var(--lime);
    padding-left: 12px;
    margin-top: 4px;
  }

  /* COST TABLE */
  .cost-section { background: var(--green-deep); padding: 80px 24px; }

  .cost-section .section-title { color: var(--cream); }

  .cost-table-wrap {
    max-width: 1200px;
    margin: 0 auto;
    overflow-x: auto;
  }

  .cost-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 40px;
  }

  .cost-table th {
    background: rgba(168,224,99,0.15);
    color: var(--lime);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 16px 24px;
    text-align: left;
  }

  .cost-table td {
    padding: 16px 24px;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    color: var(--cream);
  }

  .cost-table tr:hover td { background: rgba(76,175,110,0.07); }

  .cost-badge {
    display: inline-block;
    background: rgba(168,224,99,0.2);
    color: var(--lime);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 4px 12px;
    border-radius: 100px;
  }

  /* DIET PLAN */
  .diet-section { padding: 80px 24px; background: #f0ece3; }

  .diet-days {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 48px;
  }

  .day-card {
    background: white;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    position: relative;
    overflow: hidden;
  }

  .day-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(to right, var(--orange), var(--gold));
  }

  .day-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 8px;
  }

  .day-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--green-deep);
    margin-bottom: 20px;
  }

  .meal-time {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
  }

  .meal-dot {
    width: 8px;
    height: 8px;
    background: var(--green-bright);
    border-radius: 50%;
    margin-top: 6px;
    flex-shrink: 0;
  }

  .meal-info {}

  .meal-time-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--green-bright);
  }

  .meal-desc {
    font-size: 0.88rem;
    color: #444;
    margin-top: 2px;
    font-weight: 400;
  }

  .day-cal {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
  }

  .day-cal .cal-num {
    font-weight: 700;
    color: var(--orange);
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
  }

  .day-cal .cal-label { color: #888; font-size: 0.72rem; margin-top: 2px; }

  /* PROTEIN SOURCES */
  .protein-section { padding: 80px 24px; max-width: 1200px; margin: 0 auto; }

  .protein-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
    margin-top: 48px;
  }

  .protein-item {
    background: var(--green-deep);
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    color: var(--cream);
    transition: transform 0.3s;
    cursor: default;
  }

  .protein-item:hover { transform: scale(1.04); }

  .protein-item .p-emoji { font-size: 2.4rem; margin-bottom: 12px; }

  .protein-item .p-name {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
  }

  .protein-item .p-protein {
    font-size: 0.75rem;
    color: var(--lime);
    font-weight: 600;
    letter-spacing: 1px;
  }

  /* TIPS */
  .tips-band {
    background: linear-gradient(135deg, var(--green-bright), var(--lime));
    padding: 60px 24px;
  }

  .tips-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
  }

  .tips-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--green-deep);
    margin-bottom: 36px;
  }

  .tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
    text-align: left;
  }

  .tip-card {
    background: rgba(255,255,255,0.4);
    border-radius: 14px;
    padding: 22px;
    backdrop-filter: blur(4px);
  }

  .tip-card .tip-icon { font-size: 1.6rem; margin-bottom: 10px; }
  .tip-card .tip-title { font-weight: 700; font-size: 0.9rem; color: var(--green-deep); margin-bottom: 6px; }
  .tip-card .tip-text { font-size: 0.82rem; color: rgba(26,58,42,0.75); line-height: 1.5; }

  /* FOOTER */

  /* VIEW RECIPE BUTTON */
  .view-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    padding: 10px 20px;
    background: var(--green-deep);
    color: var(--lime);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    width: 100%;
    justify-content: center;
  }
  .view-btn:hover {
    background: var(--green-mid);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26,58,42,0.18);
  }
  .view-btn svg { width: 14px; height: 14px; flex-shrink: 0; }

  /* MODAL OVERLAY */
  .modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10,25,18,0.72);
    backdrop-filter: blur(6px);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-y: auto;
  }
  .modal-overlay.active { display: flex; }

  /* MODAL BOX */
  .modal {
    background: #fff;
    border-radius: 24px;
    max-width: 640px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalIn 0.32s cubic-bezier(0.34,1.56,0.64,1);
    scrollbar-width: thin;
    scrollbar-color: var(--lime) #f0f0f0;
  }
  @keyframes modalIn {
    from { opacity: 0; transform: scale(0.88) translateY(24px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
  }

  /* MODAL HEADER */
  .modal-header {
    background: var(--green-deep);
    padding: 32px 32px 28px;
    border-radius: 24px 24px 0 0;
    position: relative;
  }
  .modal-close {
    position: absolute;
    top: 16px; right: 16px;
    background: rgba(255,255,255,0.12);
    border: none;
    color: var(--cream);
    width: 36px; height: 36px;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s;
  }
  .modal-close:hover { background: rgba(255,255,255,0.22); }
  .modal-emoji { font-size: 2.8rem; margin-bottom: 10px; display: block; }
  .modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--cream);
    line-height: 1.2;
  }
  .modal-subtitle { font-size: 0.85rem; color: rgba(245,240,232,0.6); margin-top: 6px; }

  /* MODAL META PILLS */
  .modal-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
  }
  .meta-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(168,224,99,0.18);
    color: var(--lime);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 100px;
    border: 1px solid rgba(168,224,99,0.25);
  }

  /* MODAL BODY */
  .modal-body { padding: 28px 32px 32px; }

  .modal-section-title {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--green-bright);
    margin-bottom: 12px;
    margin-top: 24px;
  }
  .modal-section-title:first-child { margin-top: 0; }

  /* NUTRITION ROW */
  .nutrition-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 4px;
  }
  .nutr-box {
    background: #f7f9f7;
    border-radius: 12px;
    padding: 14px 10px;
    text-align: center;
  }
  .nutr-val {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--green-deep);
  }
  .nutr-label { font-size: 0.68rem; color: #888; margin-top: 3px; text-transform: uppercase; letter-spacing: 1px; }

  /* INGREDIENTS */
  .modal-ingredients {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
  }
  .modal-ingredients span {
    background: rgba(76,175,110,0.1);
    color: var(--green-mid);
    font-size: 0.82rem;
    font-weight: 500;
    padding: 5px 12px;
    border-radius: 100px;
    border: 1px solid rgba(76,175,110,0.2);
  }

  /* STEPS */
  .steps-list { list-style: none; }
  .steps-list li {
    display: flex;
    gap: 14px;
    margin-bottom: 14px;
    align-items: flex-start;
  }
  .step-num {
    min-width: 28px; height: 28px;
    background: var(--green-deep);
    color: var(--lime);
    font-size: 0.75rem;
    font-weight: 800;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
  }
  .step-text { font-size: 0.88rem; color: #444; line-height: 1.6; }

  /* PRO TIP */
  .pro-tip {
    background: linear-gradient(135deg, rgba(76,175,110,0.08), rgba(168,224,99,0.12));
    border-left: 4px solid var(--lime);
    border-radius: 0 12px 12px 0;
    padding: 14px 18px;
    font-size: 0.84rem;
    color: var(--green-mid);
    line-height: 1.6;
  }
  .pro-tip strong { color: var(--green-deep); }

  /* BEST FOR TAGS */
  .best-for { display: flex; flex-wrap: wrap; gap: 7px; }
  .best-for span {
    background: var(--green-deep);
    color: var(--lime);
    font-size: 0.76rem;
    font-weight: 600;
    padding: 5px 13px;
    border-radius: 100px;
  }

  @media (max-width: 600px) {
    .hero-stats { gap: 28px; }
    .recipes-grid { grid-template-columns: 1fr; }
    .diet-days { grid-template-columns: 1fr; }
    .modal-body { padding: 20px; }
    .modal-header { padding: 24px 20px 20px; }
    .nutrition-row { grid-template-columns: repeat(2, 1fr); }
    .modal { border-radius: 20px; }
  }

  

  


  /* GOOGLE TRANSLATE BAR */
  #google_translate_element {
    position: fixed;
    top: 14px; right: 16px;
    z-index: 9999;
  }
  #google_translate_element .goog-te-gadget-simple {
    background: rgba(26,58,42,0.92) !important;
    border: 1px solid rgba(168,224,99,0.4) !important;
    border-radius: 100px !important;
    padding: 7px 16px !important;
    backdrop-filter: blur(10px);
    font-family: 'DM Sans', sans-serif !important;
    font-size: 0.82rem !important;
    cursor: pointer;
  }
  #google_translate_element .goog-te-gadget-simple span,
  #google_translate_element .goog-te-gadget-simple a,
  #google_translate_element .goog-te-gadget-simple a span {
    color: #a8e063 !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    border: none !important;
  }
  #google_translate_element .goog-te-gadget-simple .goog-te-menu-value span:first-child::before {
    content: '🌐 ';
  }
  .goog-te-banner-frame { display: none !important; }
  body { top: 0 !important; }
  .skiptranslate { display: none !important; }


  /* SAWC SECTION */
  .sawc-section {
    background: linear-gradient(160deg, #0d2218 0%, #1a3a2a 50%, #0d2218 100%);
    padding: 80px 24px;
    position: relative;
    overflow: hidden;
  }
  .sawc-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(76,175,110,0.12) 0%, transparent 55%),
                radial-gradient(ellipse at 85% 20%, rgba(168,224,99,0.08) 0%, transparent 45%);
  }
  .sawc-inner { max-width: 1200px; margin: 0 auto; position: relative; }

  .sawc-top { text-align: center; margin-bottom: 56px; }
  .sawc-badge {
    display: inline-block;
    background: rgba(168,224,99,0.15);
    border: 1px solid rgba(168,224,99,0.3);
    color: var(--lime);
    font-size: 0.72rem; font-weight: 700;
    letter-spacing: 3px; text-transform: uppercase;
    padding: 7px 18px; border-radius: 100px;
    margin-bottom: 20px;
  }
  .sawc-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 900; color: var(--cream);
    line-height: 1.15;
  }
  .sawc-sub {
    font-size: 1rem; color: rgba(245,240,232,0.5);
    margin-top: 8px; font-weight: 300; letter-spacing: 1px;
  }

  .sawc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
  }
  @media (max-width: 768px) { .sawc-grid { grid-template-columns: 1fr; gap: 40px; } }

  /* LEFT */
  .sawc-logo-block {
    display: flex; align-items: center; gap: 16px; margin-bottom: 24px;
  }
  .sawc-paw { font-size: 2.8rem; }
  .sawc-org {
    font-family: 'Playfair Display', serif;
    font-size: 2rem; font-weight: 900; color: var(--lime); line-height: 1;
  }
  .sawc-org-full { font-size: 0.78rem; color: rgba(245,240,232,0.45); margin-top: 4px; letter-spacing: 1px; }
  .sawc-desc { font-size: 0.9rem; color: rgba(245,240,232,0.7); line-height: 1.75; }
  .sawc-founder {
    display: flex; align-items: center; gap: 14px;
    margin-top: 28px;
    padding: 16px 20px;
    background: rgba(168,224,99,0.07);
    border: 1px solid rgba(168,224,99,0.15);
    border-radius: 14px;
  }
  .sawc-founder-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: linear-gradient(135deg, var(--green-bright), var(--lime));
    color: var(--green-deep);
    font-size: 0.75rem; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; letter-spacing: 1px;
  }
  .sawc-founder-name { font-weight: 700; color: var(--cream); font-size: 0.95rem; }
  .sawc-founder-role { font-size: 0.72rem; color: rgba(245,240,232,0.45); margin-top: 3px; letter-spacing: 0.5px; }

  /* RIGHT */
  .sawc-connection-title {
    font-size: 0.7rem; font-weight: 700; letter-spacing: 2.5px;
    text-transform: uppercase; color: var(--lime); margin-bottom: 20px;
  }
  .sawc-pillars { display: flex; flex-direction: column; gap: 18px; }
  .sawc-pillar {
    display: flex; gap: 14px; align-items: flex-start;
    padding: 16px 18px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 14px;
    transition: background 0.2s, border-color 0.2s;
  }
  .sawc-pillar:hover {
    background: rgba(76,175,110,0.09);
    border-color: rgba(168,224,99,0.2);
  }
  .sawc-pillar-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 1px; }
  .sawc-pillar-title { font-size: 0.9rem; font-weight: 700; color: var(--cream); margin-bottom: 4px; }
  .sawc-pillar-text { font-size: 0.8rem; color: rgba(245,240,232,0.55); line-height: 1.6; }

  .sawc-cta {
    display: block; text-align: center;
    margin-top: 24px;
    padding: 15px 24px;
    background: linear-gradient(135deg, var(--green-bright), var(--lime));
    color: var(--green-deep);
    font-weight: 800; font-size: 0.9rem;
    border-radius: 14px; text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    letter-spacing: 0.3px;
  }
  .sawc-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(76,175,110,0.35);
  }

  /* FOOTER */
  footer {
    background: #080f0b;
    padding: 32px 24px;
    text-align: center;
  }
  .footer-inner { max-width: 600px; margin: 0 auto; }
  .footer-sawc { font-size: 1rem; font-weight: 600; color: rgba(245,240,232,0.6); margin-bottom: 6px; }
  .footer-sawc span { color: var(--lime); font-weight: 800; }
  .footer-tagline { font-size: 0.82rem; color: rgba(245,240,232,0.35); margin-bottom: 6px; }
  .footer-sub { font-size: 0.72rem; color: rgba(245,240,232,0.2); letter-spacing: 0.5px; }


  /* ── NAVBAR ── */
  .navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(15,30,20,0.96);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(168,224,99,0.12);
    display: flex; align-items: center;
    padding: 0 24px;
    height: 64px;
    transition: box-shadow 0.3s;
  }
  .navbar.scrolled { box-shadow: 0 4px 32px rgba(0,0,0,0.35); }
  .nav-logo {
    display: flex; align-items: center; gap: 10px;
    text-decoration: none; flex-shrink: 0;
  }
  .nav-logo img {
    height: 38px; width: 38px;
    object-fit: contain;
    border-radius: 8px;
    background: white;
    padding: 3px;
  }
  .nav-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
  .nav-logo-name {
    font-family: 'Playfair Display', serif;
    font-size: 1rem; font-weight: 800;
    color: var(--lime);
    letter-spacing: 1px;
  }
  .nav-logo-sub {
    font-size: 0.6rem; color: rgba(245,240,232,0.4);
    letter-spacing: 1.5px; text-transform: uppercase;
  }
  .nav-divider {
    width: 1px; height: 28px;
    background: rgba(168,224,99,0.2);
    margin: 0 20px;
    flex-shrink: 0;
  }
  .nav-links {
    display: flex; align-items: center; gap: 4px;
    flex: 1;
  }
  .nav-link {
    color: rgba(245,240,232,0.6);
    font-size: 0.82rem; font-weight: 500;
    padding: 7px 13px; border-radius: 8px;
    text-decoration: none;
    transition: color 0.2s, background 0.2s;
    white-space: nowrap;
  }
  .nav-link:hover { color: var(--lime); background: rgba(168,224,99,0.08); }
  .nav-link.active { color: var(--lime); background: rgba(168,224,99,0.12); font-weight: 600; }
  .nav-right { display: flex; align-items: center; gap: 10px; margin-left: auto; }
  .nav-sawc-btn {
    display: inline-flex; align-items: center; gap: 6px;
    background: linear-gradient(135deg, #7c5cbf, #9b7edb);
    color: white; font-size: 0.78rem; font-weight: 700;
    padding: 8px 16px; border-radius: 100px;
    text-decoration: none; white-space: nowrap;
    transition: transform 0.2s, box-shadow 0.2s;
    border: none; cursor: pointer;
  }
  .nav-sawc-btn:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(124,92,191,0.4); }
  /* hamburger */
  .nav-hamburger {
    display: none; flex-direction: column; gap: 5px;
    cursor: pointer; padding: 6px; margin-left: 12px;
    background: none; border: none;
  }
  .nav-hamburger span {
    display: block; width: 22px; height: 2px;
    background: var(--lime); border-radius: 2px;
    transition: all 0.3s;
  }
  .nav-mobile {
    display: none;
    position: fixed; top: 64px; left: 0; right: 0;
    background: rgba(12,25,17,0.98);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(168,224,99,0.12);
    padding: 16px 20px 20px;
    flex-direction: column; gap: 4px;
    z-index: 999;
  }
  .nav-mobile.open { display: flex; }
  .nav-mobile .nav-link { padding: 12px 14px; font-size: 0.92rem; }
  .nav-mobile .nav-sawc-btn { margin-top: 8px; justify-content: center; padding: 12px; }

  body { padding-top: 64px; }
  .hero { min-height: calc(100vh - 64px); }

  @media (max-width: 820px) {
    .nav-links, .nav-divider { display: none; }
    .nav-hamburger { display: flex; }
  }
  @media (max-width: 480px) { .nav-logo-text { display: none; } }

  /* Google Translate reposition */
  #google_translate_element { top: 14px; right: 70px; }
  @media (max-width: 820px) { #google_translate_element { top: 76px; right: 12px; } }


  /* SAWC LOGO IMG */
  .sawc-logo-img {
    display: block; margin: 0 auto 24px;
    height: 90px; width: auto;
    background: white;
    border-radius: 16px;
    padding: 10px 18px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  }
  .sawc-founder-avatar{
  width:60px;
  height:60px;
  border-radius:50%;
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#eee;
}

.sawc-founder-avatar img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.avatar-text{
  display:none;
  font-weight:bold;
}

  /* FOOTER UPDATE */
  footer {
    background: #060d09;
    padding: 36px 24px;
    text-align: center;
  }
  .footer-inner { max-width: 500px; margin: 0 auto; }
  .footer-logo {
    height: 48px; width: auto;
    background: white; border-radius: 10px;
    padding: 6px 12px; margin-bottom: 14px;
    display: inline-block;
  }
  .footer-sawc { font-size: 0.95rem; font-weight: 600; color: rgba(245,240,232,0.55); margin-bottom: 6px; }
  .footer-sawc span { color: var(--lime); font-weight: 800; }
  .footer-tagline { font-size: 0.82rem; color: rgba(245,240,232,0.3); margin-bottom: 5px; }
  .footer-sub { font-size: 0.7rem; color: rgba(245,240,232,0.18); letter-spacing: 0.5px; }