

  /* <style> */

  
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --cream: #FAF6F2;
      --terracotta: #C86A3D;
      --terracotta-light: #E8956A;
      --terracotta-dark: #A3522B;
      --dark: #1C1510;
      --mid: #6B5B4E;
      --light: #D9CCC4;
      --white: #FFFFFF;
      --card-bg: rgba(255,255,255,0.85);
      --shadow: 0 4px 24px rgba(28,21,16,0.08);
      --shadow-hover: 0 12px 40px rgba(28,21,16,0.15);
      --radius: 24px;
      --radius-sm: 14px;
      --serif: 'Playfair Display', Georgia, serif;
      --sans: 'Inter', system-ui, sans-serif;
      --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: var(--sans);
      background: var(--cream);
      color: var(--dark);
      line-height: 1.7;
      overflow-x: hidden;
    }

    img { display: block; width: 100%; height: 100%; object-fit: cover; }
    a { text-decoration: none; color: inherit; }
    ul { list-style: none; }

    .container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
    .section { padding: 100px 0; }
    .section-label {
      font-family: var(--sans);
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--terracotta);
      margin-bottom: 14px;
    }
    .section-title {
      font-family: var(--serif);
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 700;
      color: var(--dark);
      line-height: 1.2;
      margin-bottom: 18px;
    }
    .section-subtitle {
      font-size: 1.05rem;
      color: var(--mid);
      max-width: 560px;
      line-height: 1.75;
    }
    .section-head { margin-bottom: 60px; }
    .section-head.centered { text-align: center; }
    .section-head.centered .section-subtitle { margin: 0 auto; }

    .reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.7s var(--transition), transform 0.7s var(--transition); }
    .reveal.visible { opacity: 1; transform: none; }
    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .reveal-delay-4 { transition-delay: 0.4s; }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 14px 30px;
      border-radius: 50px;
      font-family: var(--sans);
      font-size: 0.9rem;
      font-weight: 600;
      cursor: pointer;
      border: none;
      transition: all var(--transition);
      letter-spacing: 0.3px;
    }
    .btn-primary { background: var(--terracotta); color: var(--white); }
    .btn-primary:hover { background: var(--terracotta-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,106,61,0.35); }
    .btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.6); backdrop-filter: blur(6px); }
    .btn-outline:hover { background: rgba(255,255,255,0.15); border-color: var(--white); transform: translateY(-2px); }
    .btn-outline-dark { background: transparent; color: var(--dark); border: 2px solid var(--light); }
    .btn-outline-dark:hover { border-color: var(--terracotta); color: var(--terracotta); transform: translateY(-2px); }

    /* NAVBAR */
    #navbar {
      position: fixed; top: 0; left: 0; right: 0;
      z-index: 100; padding: 20px 0;
      transition: all var(--transition);
    }
    #navbar.scrolled {
      background: rgba(250,246,242,0.9);
      backdrop-filter: blur(16px);
      padding: 14px 0;
      box-shadow: 0 2px 20px rgba(28,21,16,0.08);
    }
    .nav-inner { display: flex; align-items: center; justify-content: space-between; }
    .nav-logo { font-family: var(--serif); font-size: 1.5rem; font-weight: 700; color: var(--white); transition: color var(--transition); letter-spacing: -0.5px; }
    #navbar.scrolled .nav-logo { color: var(--dark); }
    .nav-links { display: flex; align-items: center; gap: 36px; }
    .nav-links a { font-size: 0.9rem; font-weight: 500; color: rgba(255,255,255,0.85); transition: color var(--transition); }
    #navbar.scrolled .nav-links a { color: var(--mid); }
    .nav-links a:hover, #navbar.scrolled .nav-links a:hover { color: var(--terracotta); }
    .nav-cta { background: var(--terracotta); color: var(--white) !important; padding: 10px 22px; border-radius: 50px; }
    .nav-cta:hover { background: var(--terracotta-dark); color: var(--white) !important; }
    #navbar.scrolled .nav-cta { background: var(--terracotta); color: var(--white) !important; }
    .nav-burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
    .nav-burger span { width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all var(--transition); }
    #navbar.scrolled .nav-burger span { background: var(--dark); }
    .nav-mobile { display: none; position: fixed; inset: 0; background: var(--cream); z-index: 99; flex-direction: column; align-items: center; justify-content: center; gap: 32px; }
    .nav-mobile.open { display: flex; }
    .nav-mobile a { font-family: var(--serif); font-size: 1.8rem; color: var(--dark); font-weight: 600; }
    .nav-mobile a:hover { color: var(--terracotta); }
    .nav-mobile-close { position: absolute; top: 24px; right: 24px; font-size: 2rem; cursor: pointer; color: var(--mid); }

    /* HERO */
    #hero { 
      position: relative; 
      /* height: 100vh; */
       min-height: 640px; 
       display: flex; 
       align-items: center; 
       overflow: hidden; 
    }
    .hero-bg {
      position: absolute; inset: 0;
      background: url('../images/banner-all/banner_01.jpg') center/cover no-repeat;
    }
    .hero-bg::after {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(135deg, rgba(28,21,16,0.65) 0%, rgba(28,21,16,0.3) 60%, rgba(200,106,61,0.15) 100%);
    }
    .hero-content { position: relative; z-index: 2; max-width: 680px; }
    .hero-badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(255,255,255,0.15); backdrop-filter: blur(8px);
      border: 1px solid rgba(255,255,255,0.25); padding: 8px 18px;
      border-radius: 50px; font-size: 0.8rem; font-weight: 600;
      color: var(--white); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 28px;
    }
    .hero-badge::before { content: ''; width: 6px; height: 6px; background: var(--terracotta-light); border-radius: 50%; }
    .hero-title { font-family: var(--serif); font-size: clamp(1.8rem, 4vw, 3.2rem); font-weight: 700; color: var(--white); line-height: 1.2; margin-bottom: 24px; letter-spacing: -0.5px; }
    .hero-title em { font-style: italic; color: var(--terracotta-light); }
    .hero-text { font-size: 1.1rem; color: rgba(255,255,255,0.82); margin-bottom: 0; line-height: 1.75; max-width: 480px; }
    .hero-scroll {
      position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
      z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px;
      color: rgba(255,255,255,0.6); font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase;
      animation: bounce 2.5s infinite;
    }
    .hero-scroll::after { content: ''; width: 1px; height: 40px; background: rgba(255,255,255,0.4); }
    @keyframes bounce {
      0%, 100% { transform: translateX(-50%) translateY(0); }
      50% { transform: translateX(-50%) translateY(6px); }
    }
    .hero-stats { position: absolute; bottom: 40px; right: 0; z-index: 2; display: flex; gap: 2px; }
    .hero-stat { background: rgba(255,255,255,0.12); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.18); padding: 20px 28px; text-align: center; }
    .hero-stat:first-child { border-radius: var(--radius-sm) 0 0 var(--radius-sm); }
    .hero-stat:last-child { border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }
    .hero-stat-num { font-family: var(--serif); font-size: 1.8rem; font-weight: 700; color: var(--white); }
    .hero-stat-label { font-size: 0.72rem; color: rgba(255,255,255,0.65); letter-spacing: 1.5px; text-transform: uppercase; }

    /* WORKSHOPS */
    #workshops { background: var(--cream); }
    .workshops-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
    .workshop-card { background: var(--card-bg); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: transform var(--transition), box-shadow var(--transition); display: flex; flex-direction: column; }
    .workshop-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
    .workshop-img { height: 220px; overflow: hidden; position: relative; }
    .workshop-img img { transition: transform 0.6s var(--transition); }
    .workshop-card:hover .workshop-img img { transform: scale(1.07); }
    .workshop-difficulty { position: absolute; top: 14px; right: 14px; background: rgba(255,255,255,0.92); backdrop-filter: blur(4px); padding: 5px 12px; border-radius: 50px; font-size: 0.72rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--mid); }
    .workshop-body { padding: 26px; flex: 1; display: flex; flex-direction: column; }
    .workshop-title { font-family: var(--serif); font-size: 1.25rem; font-weight: 600; margin-bottom: 10px; color: var(--dark); }
    .workshop-desc { font-size: 0.875rem; color: var(--mid); line-height: 1.65; flex: 1; margin-bottom: 20px; }
    .workshop-meta { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
    .workshop-meta-item { display: flex; align-items: center; gap: 6px; font-size: 0.8rem; color: var(--mid); }
    .workshop-meta-item svg { flex-shrink: 0; }
    .workshop-price { font-family: var(--serif); font-size: 1.4rem; font-weight: 700; color: var(--terracotta); }
    .workshop-book { width: 100%; justify-content: center; }

    /* WHY */
    #why { background: white; }
    .why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
    .why-card { background: var(--cream); border-radius: var(--radius); padding: 36px 28px; transition: transform var(--transition), box-shadow var(--transition); }
    .why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
    .why-icon { width: 56px; height: 56px; background: linear-gradient(135deg, var(--terracotta), var(--terracotta-light)); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; margin-bottom: 22px; }
    .why-icon svg { width: 26px; height: 26px; color: white; }
    .why-card h3 { font-family: var(--serif); font-size: 1.15rem; font-weight: 600; margin-bottom: 10px; }
    .why-card p { font-size: 0.875rem; color: var(--mid); line-height: 1.7; }

    /* TEAM BUILDING */
    #team-building { background: linear-gradient(160deg, #2C1A10 0%, #1C1510 100%); }
    #team-building .section-label { color: var(--terracotta-light); }
    #team-building .section-title { color: var(--white); }
    #team-building .section-subtitle { color: rgba(255,255,255,0.6); }
    .team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .team-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius); padding: 40px 32px; transition: all var(--transition); backdrop-filter: blur(8px); }
    .team-card:hover { background: rgba(255,255,255,0.1); border-color: rgba(200,106,61,0.5); transform: translateY(-6px); }
    .team-card-icon { font-size: 2.2rem; margin-bottom: 20px; }
    .team-card h3 { font-family: var(--serif); font-size: 1.3rem; font-weight: 600; color: var(--white); margin-bottom: 16px; }
    .team-card ul { display: flex; flex-direction: column; gap: 8px; }
    .team-card li { font-size: 0.875rem; color: rgba(255,255,255,0.6); display: flex; align-items: center; gap: 10px; }
    .team-card li::before { content: ''; width: 4px; height: 4px; background: var(--terracotta-light); border-radius: 50%; flex-shrink: 0; }

    /* CHEF */
    #chef { background: var(--cream); }
    .chef-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
    .chef-img-wrap { position: relative; border-radius: var(--radius); overflow: hidden; height: 560px; }
    .chef-img-wrap::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(28,21,16,0.3) 0%, transparent 50%); border-radius: var(--radius); }
    .chef-badge { position: absolute; bottom: 28px; left: 28px; z-index: 2; background: rgba(255,255,255,0.92); backdrop-filter: blur(8px); border-radius: var(--radius-sm); padding: 16px 20px; }
    .chef-badge-num { font-family: var(--serif); font-size: 1.8rem; font-weight: 700; color: var(--terracotta); }
    .chef-badge-text { font-size: 0.78rem; color: var(--mid); font-weight: 500; }
    .chef-content .section-label { display: block; margin-bottom: 8px; }
    .chef-name { font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 700; line-height: 1.15; margin-bottom: 6px; }
    .chef-title { font-size: 0.9rem; color: var(--terracotta); font-weight: 500; margin-bottom: 24px; }
    .chef-bio { font-size: 0.95rem; color: var(--mid); line-height: 1.8; margin-bottom: 28px; }
    .chef-quote { border-left: 3px solid var(--terracotta); padding: 16px 24px; background: white; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; margin-bottom: 32px; }
    .chef-quote p { font-family: var(--serif); font-style: italic; font-size: 1.05rem; color: var(--dark); line-height: 1.7; }
    .chef-skills { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
    .chef-skill { background: var(--cream); border: 1px solid var(--light); padding: 6px 16px; border-radius: 50px; font-size: 0.8rem; color: var(--mid); font-weight: 500; }

    /* FAQ */
    #faq { background: var(--cream); }
    .faq-wrap { max-width: 760px; margin: 0 auto; }
    .faq-item { background: white; border-radius: var(--radius-sm); margin-bottom: 12px; overflow: hidden; transition: box-shadow var(--transition); }
    .faq-item:hover { box-shadow: var(--shadow); }
    .faq-question { width: 100%; background: none; border: none; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px 26px; cursor: pointer; font-family: var(--sans); font-size: 0.95rem; font-weight: 600; color: var(--dark); text-align: left; transition: color var(--transition); }
    .faq-question:hover { color: var(--terracotta); }
    .faq-icon { width: 28px; height: 28px; border-radius: 50%; background: var(--cream); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background var(--transition), transform var(--transition); }
    .faq-item.open .faq-icon { background: var(--terracotta); transform: rotate(45deg); }
    .faq-icon svg { width: 14px; height: 14px; color: var(--mid); }
    .faq-item.open .faq-icon svg { color: white; }
    .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--transition), padding 0.3s; padding: 0 26px; }
    .faq-item.open .faq-answer { max-height: 400px; padding-bottom: 22px; }
    .faq-answer p { font-size: 0.9rem; color: var(--mid); line-height: 1.75; }

    /* FINAL CTA */
    #cta { background: linear-gradient(135deg, var(--terracotta) 0%, var(--terracotta-dark) 100%); text-align: center; padding: 120px 0; position: relative; overflow: hidden; }
    #cta::before { content: ''; position: absolute; top: -60px; right: -60px; width: 300px; height: 300px; background: rgba(255,255,255,0.05); border-radius: 50%; }
    #cta::after { content: ''; position: absolute; bottom: -80px; left: -40px; width: 360px; height: 360px; background: rgba(255,255,255,0.04); border-radius: 50%; }
    .cta-content { position: relative; z-index: 2; }
    .cta-label { font-size: 12px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.7); margin-bottom: 14px; }
    .cta-title { font-family: var(--serif); font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 700; color: var(--white); line-height: 1.2; margin-bottom: 18px; }
    .cta-text { font-size: 1rem; color: rgba(255,255,255,0.8); margin: 0 auto 40px; max-width: 480px; }
    .btn-cta-white { background: white; color: var(--terracotta); font-weight: 700; font-size: 1rem; padding: 16px 38px; }
    .btn-cta-white:hover { background: var(--cream); transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,0.2); }

    /* FOOTER */
    footer { background: var(--dark); color: rgba(255,255,255,0.7); padding: 80px 0 32px; }
    .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; margin-bottom: 60px; }
    .footer-logo { font-family: var(--serif); font-size: 1.6rem; font-weight: 700; color: white; margin-bottom: 14px; }
    .footer-tagline { font-size: 0.875rem; line-height: 1.7; margin-bottom: 24px; }
    .footer-socials { display: flex; gap: 12px; }
    .social-link { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; transition: all var(--transition); }
    .social-link:hover { background: var(--terracotta); transform: translateY(-3px); }
    .social-link svg { width: 16px; height: 16px; color: white; }
    .footer-col h4 { font-size: 0.8rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: white; margin-bottom: 20px; }
    .footer-col ul { display: flex; flex-direction: column; gap: 10px; }
    .footer-col li a { font-size: 0.875rem; color: rgba(255,255,255,0.55); transition: color var(--transition); }
    .footer-col li a:hover { color: var(--terracotta-light); }
    .footer-contact-item { display: flex; align-items: flex-start; gap: 10px; font-size: 0.875rem; color: rgba(255,255,255,0.55); margin-bottom: 10px; }
    .footer-contact-item svg { width: 16px; flex-shrink: 0; margin-top: 2px; color: var(--terracotta-light); }
    .newsletter-form { display: flex; gap: 8px; margin-top: 4px; }
    .newsletter-input { flex: 1; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); border-radius: 50px; padding: 10px 18px; color: white; font-size: 0.85rem; font-family: var(--sans); outline: none; transition: border-color var(--transition); }
    .newsletter-input::placeholder { color: rgba(255,255,255,0.35); }
    .newsletter-input:focus { border-color: var(--terracotta); }
    .newsletter-btn { background: var(--terracotta); border: none; border-radius: 50px; padding: 10px 18px; color: white; cursor: pointer; font-size: 0.82rem; font-weight: 600; white-space: nowrap; transition: background var(--transition); }
    .newsletter-btn:hover { background: var(--terracotta-dark); }
    .footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 28px; display: flex; align-items: center; justify-content: space-between; font-size: 0.8rem; color: rgba(255,255,255,0.35); }
    .footer-bottom-links { display: flex; gap: 24px; }
    .footer-bottom-links a { color: rgba(255,255,255,0.35); }
    .footer-bottom-links a:hover { color: var(--terracotta-light); }

    /* RESPONSIVE */
    @media (max-width: 1024px) {
      .workshops-grid { grid-template-columns: repeat(2, 1fr); }
      .why-grid { grid-template-columns: repeat(2, 1fr); }
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 768px) {
      .section { padding: 72px 0; }
      .nav-links { display: none; }
      .nav-burger { display: flex; }
      .workshops-grid { grid-template-columns: 1fr; }
      .team-grid { grid-template-columns: 1fr; }
      .chef-inner { grid-template-columns: 1fr; gap: 40px; }
      .chef-img-wrap { height: 380px; }
      .hero-stats { display: none; }
      .footer-grid { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    }
    @media (max-width: 480px) {
      .hero-title { font-size: 2.6rem; }
      .why-grid { grid-template-columns: 1fr; }
    }



  /* </style> */

  a.nav-logo img {
    max-width:81px!important;
}