/* =========================================================
   FONTS
   ========================================================= */
   @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Inter:wght@400;500;600&display=swap');

   /* =========================================================
      THEME
      ========================================================= */
   :root{
     --bg: #fbf7f2;
     --card: #ffffff;
     --text: #1f2937;
     --muted: #6b7280;
     --brand: #8b0000;
     --line: #e5e7eb;
   }
   
   *{ box-sizing: border-box; }
   
   body{
     margin: 0;
     background: var(--bg);
     color: var(--text);
     font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
     line-height: 1.6;
   }
   
   .container{
     max-width: 1100px;
     margin: 0 auto;
     padding: 0 20px;
   }
   
   /* =========================================================
      TOP NAV (SITE-WIDE)
      Matches your HTML: .site-top > .nav-row > .brand + .nav
      ========================================================= */
   .site-top{
     padding: 14px 0;
   }
   
   .nav-row{
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 16px;
   }
   
   .brand{
     text-decoration: none;
     font-weight: 700;
     color: var(--text);
   }
   
   /* default nav pills (works on all pages unless overridden) */
   .nav{
     display: flex;
     gap: 10px;
     flex-wrap: wrap;
   }
   
   .nav a{
     color: rgba(255,255,255,.92);
     text-decoration: none;
     padding: 10px 14px;
     border-radius: 999px;
     border: 1px solid rgba(255,255,255,.22);
     font-weight: 700;
     font-size: 14px;
     background: rgba(0,0,0,.10);
     transition: background 200ms ease, transform 200ms ease;
   }
   
   .nav a:hover{
     background: rgba(255,255,255,.12);
     transform: translateY(-1px);
   }
   
   /* =========================================================
      HERO (BASE)
      ========================================================= */
   .hero{
     position: relative;
     overflow: hidden;
     color: white;
     padding: 56px 0 70px;
     min-height: 58vh;
     display: grid;
     align-items: center;
   }
   
   /* base overlay for readability */
   .hero::after{
     content:"";
     position:absolute;
     inset:0;
     background: rgba(0,0,0,0.38);
     z-index: 1;
   }
   
   .hero-inner{
     position: relative;
     z-index: 2;
   }
   
   .hero h1{
     margin: 0 0 8px;
     font-family: "Playfair Display", serif;
     font-size: clamp(34px, 4.2vw, 54px);
     letter-spacing: 0.2px;
   }
   
   .hero p{
     margin: 0;
     opacity: 0.92;
     font-size: 16px;
   }
   
   @media (max-width: 700px){
     .hero{
       min-height: 68vh;
       padding: 44px 0 56px;
     }
   }
   
   /* =========================================================
      BUTTONS (SITE-WIDE)
      ========================================================= */
   .btn{
     display: inline-block;
     padding: 10px 14px;
     border-radius: 10px;
     text-decoration: none;
     font-weight: 700;
     font-size: 14px;
   }
   
   .btn-primary{
     background: #23008b;
     color: white;
   }
   
   .btn-outline{
     border: 2px solid #23008b;
     color: #23008b;
     background: transparent;
   }
   
   /* Alias so existing HTML doesn't break */
   .btn-secondary{
     border: 2px solid #23008b;
     color: #23008b;
     background: transparent;
   }
   
   .btn-primary:hover,
   .btn-outline:hover,
   .btn-secondary:hover{
     opacity: .92;
   }
   
   /* =========================================================
      MAIN CONTENT CARDS
      ========================================================= */
   main{
     padding: 28px 0 50px;
   }
   
   .grid{
     display: grid;
     grid-template-columns: repeat(12, 1fr);
     gap: 18px;
   }
   
   .card{
     grid-column: span 12;
     background: var(--card);
     border: 1px solid var(--line);
     border-radius: 16px;
     padding: 18px;
     box-shadow: 0 10px 26px rgba(17,24,39,.06);
   }
   
   .card h2{
     margin: 0 0 8px;
     font-family: "Playfair Display", serif;
     font-size: 22px;
   }
   
   .card p{
     margin: 0;
     color: var(--muted);
   }
   
   @media (min-width: 800px){
     .half{ grid-column: span 6; }
     .third{ grid-column: span 4; }
   }
   
   /* =========================================================
      FOOTER
      ========================================================= */
   footer{
     border-top: 1px solid var(--line);
     padding: 22px 0;
     color: var(--muted);
     text-align: center;
   }
   
   /* =========================================================
      HERO BACKGROUNDS (NO INLINE background-image)
      ========================================================= */
   
   /* HOME */
   .hero--home::before{
     content:"";
     position:absolute;
     inset:0;
     background-image: url("../images/martini-olives-hero.png");
     background-size: cover;
     background-repeat: no-repeat;
     background-position: center 35%;
     transform: scale(1.03);
     z-index: 0;
   }
   
   /* SERVICES */
   .hero--services::before{
     content:"";
     position:absolute;
     inset:0;
     background-image: url("../images/services-hero-slushy-cocktails.png");
     background-size: cover;
     background-repeat: no-repeat;
     background-position: center 40%;
     transform: scale(1.03);
     z-index: 0;
   }
   
   /* ABOUT default backdrop */
   .hero--about::before{
     content:"";
     position:absolute;
     inset:0;
     background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.10), rgba(0,0,0,0.65));
     z-index: 0;
   }
   
   /* CONTACT */
   .hero--contact::before{
     content:"";
     position:absolute;
     inset:0;
     background-image: url("../images/contact-hero-catering.PNG");
     background-size: cover;
     background-repeat: no-repeat;
     background-position: center 40%;
     transform: scale(1.03);
     z-index: 0;
   }
   
   /* =========================================================
      ABOUT HERO LAYOUT
      ========================================================= */
   .about-hero-grid{
     display: grid;
     grid-template-columns: 1.05fr 0.95fr;
     gap: 22px;
     align-items: center;
   }
   
   .about-media{
     position: relative;
     border-radius: 18px;
     overflow: hidden;
     min-height: 420px;
     background: rgba(255,255,255,0.06);
     border: 1px solid rgba(255,255,255,0.10);
   }
   
   /* blurred backdrop to fill edges */
   .about-media::before{
     content:"";
     position: absolute;
     inset: -20px;
     background-image: url("../images/about-hero.jpeg");
     background-size: cover;
     background-position: center;
     filter: blur(16px);
     transform: scale(1.08);
     opacity: 0.55;
     z-index: 0;
   }
   
   /* subtle warm glow layer */
   .hero--about .about-media::after{
     content:"";
     position:absolute;
     inset:-18px;
     background: radial-gradient(circle at 40% 30%,
       rgba(255,210,170,0.35),
       rgba(139,0,0,0.16),
       rgba(0,0,0,0)
     );
     pointer-events:none;
     z-index: 0;
   }
   
   .about-media img{
     position: relative;
     z-index: 1;
     width: 100%;
     height: 100%;
     object-fit: contain;
     object-position: center;
     display: block;
   }
   
   .about-copy{
     background: rgba(0,0,0,0.30);
     border: 1px solid rgba(255,255,255,0.10);
     border-radius: 16px;
     padding: 20px 18px;
     backdrop-filter: blur(8px);
   }
   
   .kicker{
     margin: 0 0 6px;
     opacity: 0.85;
     font-weight: 700;
   }
   
   .subhead{
     margin-top: 6px;
     opacity: 0.92;
   }
   
   @media (max-width: 820px){
     .about-hero-grid{ grid-template-columns: 1fr; }
     .about-media{ min-height: 320px; }
   }
   
   /* =========================================================
      ABOUT – VIBRANT OVERLAY + DETAILS (SCOPED)
      ========================================================= */
   .hero--about::after{
     background: radial-gradient(circle at 25% 25%,
       rgba(139,0,0,0.22),
       rgba(0,0,0,0.48) 55%,
       rgba(0,0,0,0.62)
     );
   }
   
   .hero--about .about-media{
     box-shadow: 0 22px 70px rgba(0,0,0,0.35);
     border: 1px solid rgba(255,255,255,0.14);
   }
   
   .hero--about .about-media img{
     filter: saturate(1.12) contrast(1.06) brightness(1.03);
   }
   
   .hero--about .about-copy{
     background: rgba(0,0,0,0.34);
     border: 1px solid rgba(255,255,255,0.14);
     box-shadow: 0 18px 55px rgba(0,0,0,0.30);
   }
   
   .hero--about .kicker{
     color: rgba(255,230,220,0.92);
   }
   
   .hero--about h1{
     position: relative;
   }
   
   .hero--about h1::after{
     content:"";
     display:block;
     width: 56px;
     height: 3px;
     margin-top: 10px;
     border-radius: 999px;
     background: rgba(139,0,0,0.85);
   }
   
   /* =========================================================
      ABOUT FRAME (if used)
      ========================================================= */
   .about-frame{
     position: relative;
     border-radius: 26px;
     padding: 34px;
     background: rgba(0,0,0,0.38);
     border: 1px solid rgba(255,255,255,0.10);
     box-shadow: 0 24px 70px rgba(0,0,0,0.45);
     overflow: hidden;
     margin: 40px auto;
   }
   
   .about-frame::before{
     content:"";
     position:absolute;
     inset: 14px;
     border-radius: 18px;
     border: 1px solid rgba(255,255,255,0.10);
     pointer-events:none;
     z-index: 1;
   }
   
   .about-frame > *{
     position: relative;
     z-index: 3;
   }
   
   /* =========================================================
      CONTACT PAGE – PREMIUM CARD + GRID
      (merged: removed duplicates)
      ========================================================= */
   .contact-card{
     max-width: 760px;
     margin: -6px auto 96px;
     padding: 34px 34px;
     border-radius: 18px;
     background: rgba(255,255,255,0.1);
     border: 1px solid rgba(255,255,255,0.1);
     box-shadow: 0 22px 70px rgba(17,24,39,.18);
     backdrop-filter: blur(0px);
   }
   
   .contact-card h2{ margin-bottom: 12px; }
   
   .contact-card p{
     line-height: 1.7;
     margin: 0 0 14px;
   }
   
   .contact-card a{
     color: #23008b;
     font-weight: 700;
     text-decoration: none;
     border-bottom: 1px solid rgba(35,0,139,0.25);
   }
   
   .contact-card a:hover{
     border-bottom-color: rgba(35,0,139,0.65);
   }
   
   .contact-info{
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 18px;
     margin-top: 18px;
     margin-bottom: 18px;
   }
   
   .contact-item{
     padding: 14px 14px;
     border-radius: 14px;
     background: rgba(255,255,255,0.65);
     border: 1px solid rgba(0,0,0,0.06);
   }
   
   .contact-label{
     font-size: 12px;
     font-weight: 800;
     text-transform: uppercase;
     letter-spacing: .08em;
     color: rgba(31,41,55,0.65);
     margin-bottom: 6px;
   }
   
   .contact-note{
     margin-top: 14px;
     padding-top: 14px;
     border-top: 1px solid rgba(0,0,0,0.08);
   }
   
   .contact-note .btn{
     margin-top: 10px;
   }
   
   @media (max-width: 700px){
     .contact-card{
       margin: -44px auto 70px;
       padding: 26px 22px;
     }
     .contact-info{ grid-template-columns: 1fr; }
   }
   
   /* =========================================================
      SERVICES: PACKAGES
      ========================================================= */
   .packages-section{
     padding: 40px 0 60px;
   }
   
   .packages-note{
     margin-top: 8px;
     margin-bottom: 24px;
     opacity: 0.9;
   }
   
   .packages-grid{
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 18px;
   }
   
   .package-card{
     position: relative;
     background: rgba(255,255,255,0.92);
     border: 1px solid rgba(0,0,0,0.08);
     border-radius: 14px;
     padding: 18px;
     box-shadow: 0 10px 30px rgba(0,0,0,0.08);
   }
   
   .package-top h3{ margin: 0 0 6px; }
   .package-quote{ font-weight: 400; opacity: 0.8; }
   .package-bestfor{ margin: 0 0 14px; opacity: 0.9; }
   
   .package-list{
     margin: 0 0 14px;
     padding-left: 18px;
   }
   
   .package-list li{ margin: 8px 0; }
   
   .package-meta{
     display: grid;
     gap: 6px;
     margin: 14px 0 16px;
     padding-top: 12px;
     border-top: 1px solid rgba(0,0,0,0.08);
     font-size: 0.95rem;
   }
   
   .package-featured{
     border: 2px solid rgba(35,0,139,0.35);
     padding-top: 58px;
   }
   
   .badge{
     position: absolute;
     top: 14px;
     left: 50%;
     transform: translateX(-50%);
     background: rgba(35, 0, 139, 0.95);
     color: white;
     padding: 6px 14px;
     border-radius: 999px;
     font-size: 0.82rem;
     font-weight: 700;
     z-index: 2;
     white-space: nowrap;
   }
   
   @media (max-width: 980px){
     .packages-grid{ grid-template-columns: 1fr; }
   }
   
   /* =========================================================
      MENU PAGES (SCOPED)
      ========================================================= */
   .hero--menu::after{
     background: radial-gradient(circle at 35% 30%,
       rgba(0,0,0,0.25),
       rgba(0,0,0,0.58)
     );
   }
   
   .hero--menu-food::before{
     content:"";
     position:absolute;
     inset:0;
     background: linear-gradient(135deg, rgba(139,0,0,0.35), rgba(0,0,0,0.65));
     z-index:0;
   }
   
   .hero--menu-bev::before{
     content:"";
     position:absolute;
     inset:0;
     background: linear-gradient(135deg, rgba(35,0,139,0.30), rgba(0,0,0,0.65));
     z-index:0;
   }
   
   .menu-wrap{
     margin-top: -54px;
     margin-bottom: 90px;
     padding: 26px;
     border-radius: 18px;
     background: rgba(255,255,255,0.86);
     border: 1px solid rgba(255,255,255,0.55);
     box-shadow: 0 22px 70px rgba(17,24,39,.14);
     backdrop-filter: blur(10px);
   }
   
   .menu-head h2{ margin: 0 0 6px; }
   
   .menu-note{
     margin: 0 0 18px;
     color: rgba(31,41,55,0.70);
   }
   
   .menu-grid{
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 18px;
   }
   
   .menu-card{
     background: rgba(255,255,255,0.70);
     border: 1px solid rgba(0,0,0,0.06);
     border-radius: 16px;
     padding: 16px;
   }
   
   .menu-card h3{
     margin: 0 0 10px;
     font-family: "Playfair Display", serif;
   }
   
   .menu-list{
     list-style: none;
     padding: 0;
     margin: 0;
     display: grid;
     gap: 10px;
   }
   
   .menu-list li{
     display: grid;
     grid-template-columns: auto 1fr auto;
     gap: 10px;
     align-items: baseline;
   }
   
   .menu-list .dots{
     border-bottom: 1px dashed rgba(31,41,55,0.22);
     transform: translateY(-2px);
   }
   
   .menu-list .muted{
     color: rgba(31,41,55,0.60);
     font-weight: 700;
     white-space: nowrap;
   }
   
   .menu-footer{
     margin-top: 18px;
     padding-top: 16px;
     border-top: 1px solid rgba(0,0,0,0.08);
     display: flex;
     gap: 14px;
     align-items: center;
     justify-content: space-between;
     flex-wrap: wrap;
   }
   
   @media (max-width: 820px){
     .menu-wrap{ margin-top: -44px; padding: 20px; }
     .menu-grid{ grid-template-columns: 1fr; }
   }
   
   /* =========================================================
      SERVICES PAGE – NAV + HERO POLISH (SCOPED)
      ========================================================= */
   .page-services .site-top{
     background: rgba(251, 247, 242, 0.92);
     backdrop-filter: blur(14px);
     border-bottom: 1px solid rgba(0,0,0,0.08);
   }
   
   .page-services .site-top .brand{
     font-family: "Playfair Display", serif;
     font-weight: 700;
     letter-spacing: 0.05em;
     color: rgba(0,0,0,0.86);
   }
   
   .page-services .site-top .brand:hover{ color: rgba(0,0,0,1); }
   
   .page-services .site-top .nav a{
     background: rgba(255,255,255,0.92);
     color: rgba(0,0,0,0.82);
     border: 1px solid rgba(0,0,0,0.18);
     box-shadow: 0 10px 22px rgba(0,0,0,0.10);
     opacity: 1;
   }
   
   .page-services .site-top .nav a:hover{
     background: rgba(255,255,255,1);
     color: rgba(0,0,0,0.95);
     border-color: rgba(0,0,0,0.26);
     box-shadow: 0 14px 28px rgba(0,0,0,0.14);
   }
   
   .page-services .site-top .nav a[aria-current="page"]{
     background: rgba(255,255,255,1);
     color: rgba(0,0,0,1);
     border-color: rgba(0,0,0,0.34);
     box-shadow: 0 16px 36px rgba(0,0,0,0.16);
   }
   
   /* optional: if services page uses different hero image */
   .page-services .hero--services::before{
     background-image: url("../images/services-pic.jpg");
     background-position: center 40%;
   }
   
   /* services hero CTA button readability */
   .page-services .hero--services .btn-primary{
     background: rgba(255,255,255,0.92);
     color: rgba(0,0,0,0.92);
     border: 1px solid rgba(255,255,255,0.25);
     box-shadow: 0 18px 40px rgba(0,0,0,0.35);
   }
   
   .page-services .hero--services .btn-outline,
   .page-services .hero--services .btn-secondary{
     background: rgba(255,255,255,0.12);
     color: rgba(255,255,255,0.95);
     border: 1px solid rgba(255,255,255,0.30);
     box-shadow: 0 12px 26px rgba(0,0,0,0.28);
   }
   
   /* =========================================================
      ABOUT PAGE – TOP NAV + BUTTON POLISH (FIXED + SCOPED)
      This is what makes your About page match the others.
      ========================================================= */
   .page-about .site-top{
     background: rgba(251, 247, 242, 0.92);
     backdrop-filter: blur(14px);
     border-bottom: 1px solid rgba(0,0,0,0.08);
   }
   
   .page-about .site-top .brand.site-title{
     font-family: "Playfair Display", serif;
     font-weight: 700;
     letter-spacing: 0.04em;
     color: rgba(0,0,0,0.86);
   }
   
   .page-about .site-top .nav a{
     background: rgba(255,255,255,0.92);
     color: rgba(0,0,0,0.82);
     border: 1px solid rgba(0,0,0,0.18);
     box-shadow: 0 10px 22px rgba(0,0,0,0.10);
     opacity: 1;
     font-weight: 700;
   }
   
   .page-about .site-top .nav a:hover{
     background: rgba(255,255,255,1);
     color: rgba(0,0,0,0.95);
     border-color: rgba(0,0,0,0.26);
     box-shadow: 0 14px 28px rgba(0,0,0,0.14);
   }
   
   .page-about .site-top .nav a[aria-current="page"]{
     background: rgba(255,255,255,1);
     color: rgba(0,0,0,1);
     border-color: rgba(0,0,0,0.34);
     box-shadow: 0 16px 36px rgba(0,0,0,0.16);
   }
   
   /* About hero outline buttons (stay readable over dark hero) */
   .page-about .hero--about .btn-outline,
   .page-about .hero--about .btn-secondary{
     background: rgba(255,255,255,0.10);
     color: rgba(255,255,255,0.96);
     border: 1px solid rgba(255,255,255,0.30);
   }
   
   .page-about .hero--about .btn-outline:hover,
   .page-about .hero--about .btn-secondary:hover{
     background: rgba(255,255,255,0.16);
     border-color: rgba(255,255,255,0.46);
   }
   
   /* =========================================================
      BEVERAGE PAGE – YOUR EXISTING STYLES (PAGE SCOPED)
      (kept intact, just grouped)
      ========================================================= */
   .page-beverage{
     -webkit-font-smoothing: antialiased;
     -moz-osx-font-smoothing: grayscale;
   }
   
   .page-beverage .beverage-main{
     padding: 34px 0 56px;
   }
   
   /* HERO */
   .page-beverage .beverage-hero{
     position: relative;
     overflow: hidden;
     border-bottom: 1px solid rgba(0,0,0,0.06);
     background:
       radial-gradient(900px 260px at 50% 115%, rgba(139,0,0,0.35), transparent 60%),
       repeating-linear-gradient(
         90deg,
         rgba(0,0,0,0.92) 0px,
         rgba(0,0,0,0.92) 56px,
         rgba(10,16,14,0.92) 56px,
         rgba(10,16,14,0.92) 112px
       );
     color: #fff;
   }
   
   .page-beverage .beverage-hero__inner{
     padding: 68px 0 54px;
     max-width: 980px;
     position: relative;
   }
   
   .page-beverage .beverage-hero__kicker{
     margin: 0 0 10px;
     letter-spacing: .12em;
     text-transform: uppercase;
     font-size: 12px;
     opacity: .85;
   }
   
   .page-beverage .beverage-hero__title{
     margin: 0;
     font-size: clamp(42px, 6vw, 76px);
     line-height: 1.02;
     font-weight: 700;
   }
   
   .page-beverage .beverage-hero__script{
     display: inline-block;
     margin-left: 10px;
     font-family: "Playfair Display", Georgia, serif;
     font-style: italic;
     font-weight: 600;
     letter-spacing: .02em;
     opacity: .95;
   }
   
   .page-beverage .beverage-hero__sub{
     margin: 16px 0 22px;
     max-width: 66ch;
     color: rgba(255,255,255,0.88);
   }
   
   /* highlight pills */
   .page-beverage .beverage-hero__highlights{
     display: grid;
     grid-template-columns: repeat(2, minmax(0, 1fr));
     gap: 14px;
     max-width: 720px;
   }
   
   .page-beverage .beverage-pill{
     border-radius: 999px;
     padding: 14px 16px;
     background: rgba(255,255,255,0.08);
     border: 1px solid rgba(255,255,255,0.12);
     backdrop-filter: blur(8px);
     display: flex;
     align-items: center;
     gap: 12px;
   }
   
   .page-beverage .beverage-pill__title{
     display: block;
     font-weight: 700;
     letter-spacing: .02em;
   }
   
   .page-beverage .beverage-pill__desc{
     display: block;
     margin-top: 2px;
     font-size: 13px;
     color: rgba(255,255,255,0.85);
   }
   
   .page-beverage .beverage-pill__img{
     width: 42px;
     height: 42px;
     object-fit: cover;
     border-radius: 999px;
     flex-shrink: 0;
     border: 1px solid rgba(255,255,255,0.18);
     box-shadow: 0 8px 18px rgba(0,0,0,0.35);
   }
   
   .page-beverage .beverage-pill__text{
     display: grid;
     gap: 2px;
   }
   
   @media (max-width: 720px){
     .page-beverage .beverage-hero__inner{ padding: 56px 0 40px; }
     .page-beverage .beverage-hero__highlights{ grid-template-columns: 1fr; }
   }
   
   /* MENU BOARD */
   .page-beverage .beverage-board{
     position: relative;
     margin-top: 26px;
     border-radius: 22px;
     padding: 26px;
     background:
       radial-gradient(800px 260px at 30% 0%, rgba(70,140,90,0.20), transparent 55%),
       radial-gradient(800px 260px at 70% 0%, rgba(255,140,0,0.14), transparent 55%),
       linear-gradient(180deg, rgba(8,10,10,0.94), rgba(8,10,10,0.94));
     border: 1px solid rgba(255,255,255,0.10);
     box-shadow: 0 24px 70px rgba(0,0,0,0.25);
     overflow: hidden;
   }
   
   .page-beverage .beverage-board::before,
   .page-beverage .beverage-board::after{
     content: "";
     position: absolute;
     width: 240px;
     height: 240px;
     opacity: 0.55;
     pointer-events: none;
     filter: blur(0.2px);
     background:
       radial-gradient(closest-side, rgba(255,0,80,0.25), transparent 70%),
       radial-gradient(closest-side, rgba(70,200,120,0.35), transparent 72%),
       radial-gradient(closest-side, rgba(255,255,255,0.08), transparent 70%);
   }
   
   .page-beverage .beverage-board::before{
     top: -110px;
     left: -110px;
     transform: rotate(-16deg);
   }
   
   .page-beverage .beverage-board::after{
     bottom: -120px;
     right: -120px;
     transform: rotate(12deg);
   }
   
   .page-beverage .beverage-board__head{
     display: flex;
     align-items: baseline;
     justify-content: space-between;
     gap: 16px;
     margin-bottom: 16px;
   }
   
   .page-beverage .beverage-board__title{
     margin: 0;
     color: #fff;
     letter-spacing: .08em;
     text-transform: uppercase;
     font-size: 22px;
   }
   
   .page-beverage .beverage-board__note{
     margin: 0;
     color: rgba(255,255,255,0.72);
     font-size: 14px;
   }
   
   .page-beverage .beverage-grid{
     display: grid;
     grid-template-columns: repeat(2, minmax(0, 1fr));
     gap: 14px 18px;
     margin-top: 16px;
   }
   
   .page-beverage .beverage-card{
     display: flex;
     align-items: center;
     gap: 14px;
     padding: 14px 14px;
     border-radius: 16px;
     background: rgba(255,255,255,0.06);
     border: 1px solid rgba(255,255,255,0.10);
   }
   
   .page-beverage .beverage-card__img{
     width: 58px;
     height: 58px;
     object-fit: cover;
     border-radius: 14px;
     flex-shrink: 0;
     background: rgba(255,255,255,0.06);
     border: 1px solid rgba(255,255,255,0.15);
     box-shadow: 0 10px 24px rgba(0,0,0,0.35);
   }
   
   .page-beverage .beverage-card__icon{
     width: 44px;
     height: 44px;
     border-radius: 14px;
     display: grid;
     place-items: center;
     font-size: 20px;
     background: rgba(255,255,255,0.10);
     border: 1px solid rgba(255,255,255,0.12);
   }
   
   .page-beverage .beverage-card__name{
     margin: 0;
     font-size: 14px;
     letter-spacing: .06em;
     text-transform: uppercase;
     color: #9be36a;
   }
   
   .page-beverage .beverage-card__desc{
     margin: 6px 0 0;
     font-size: 13px;
     color: rgba(255,255,255,0.78);
     line-height: 1.4;
   }
   
   .page-beverage .beverage-card--accent{
     background: rgba(139,0,0,0.18);
     border-color: rgba(139,0,0,0.26);
   }
   
   @media (max-width: 820px){
     .page-beverage .beverage-board__head{ flex-direction: column; align-items: flex-start; }
     .page-beverage .beverage-grid{ grid-template-columns: 1fr; }
   }
   
   /* FEATURE */
   .page-beverage .beverage-feature{
     margin-top: 22px;
     border-radius: 22px;
     overflow: hidden;
     border: 1px solid rgba(0,0,0,0.06);
     background:
       radial-gradient(900px 320px at 70% 110%, rgba(235,96,44,0.34), transparent 60%),
       linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,255,255,0.88));
     display: grid;
     grid-template-columns: 1.25fr 1fr;
   }
   
   .page-beverage .beverage-feature__left{ padding: 26px; }
   .page-beverage .beverage-feature__title{ margin: 0; font-size: 22px; }
   
   .page-beverage .beverage-feature__text{
     margin: 10px 0 14px;
     color: rgba(0,0,0,0.70);
     max-width: 62ch;
   }
   
   .page-beverage .beverage-feature__chips{
     display: flex;
     flex-wrap: wrap;
     gap: 10px;
   }
   
   .page-beverage .chip{
     display: inline-block;
     padding: 8px 12px;
     border-radius: 999px;
     background: rgba(0,0,0,0.06);
     border: 1px solid rgba(0,0,0,0.08);
     font-size: 13px;
   }
   
   .page-beverage .beverage-feature__right{
     padding: 26px;
     background: radial-gradient(700px 220px at 60% 60%, rgba(0,0,0,0.60), rgba(0,0,0,0.86));
     display: grid;
     gap: 14px;
     align-content: center;
   }
   
   .page-beverage .feature-oval{
     border-radius: 999px;
     padding: 14px 16px;
     border: 1px solid rgba(255,255,255,0.14);
     background: rgba(255,255,255,0.08);
     color: #fff;
     backdrop-filter: blur(8px);
     display: flex;
     align-items: center;
     gap: 14px;
   }
   
   .page-beverage .feature-oval__img{
     width: 54px;
     height: 54px;
     object-fit: cover;
     border-radius: 18px;
     flex-shrink: 0;
     border: 1px solid rgba(255,255,255,0.18);
     box-shadow: 0 10px 22px rgba(0,0,0,0.38);
   }
   
   .page-beverage .feature-oval__name{
     font-weight: 800;
     letter-spacing: .04em;
     text-transform: uppercase;
     font-size: 13px;
   }
   
   .page-beverage .feature-oval__desc{
     margin-top: 2px;
     color: rgba(255,255,255,0.82);
     font-size: 13px;
   }
   
   @media (max-width: 860px){
     .page-beverage .beverage-feature{ grid-template-columns: 1fr; }
   }
   
   /* top nav adjustments (beverage only) */
   .page-beverage .site-top{
     position: sticky;
     top: 0;
     z-index: 50;
     background: rgba(251, 247, 242, 0.92);
     backdrop-filter: blur(12px);
     border-bottom: 1px solid rgba(0,0,0,0.08);
   }
   
   
   .page-beverage .site-top .nav a{
     color: rgba(0,0,0,0.78) !important;
     background: rgba(255,255,255,0.85) !important;
     border: 1px solid rgba(0,0,0,0.14) !important;
     box-shadow: 0 10px 22px rgba(0,0,0,0.10);
     opacity: 1 !important;
   }

   /* =========================================================
   HOME PAGE – HERO NAV BUTTONS
   Matches About page pill style (scoped)
   ========================================================= */

.hero--home .home-nav{
  margin-top: 18px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center; /* centers pills like your screenshot */
}

/* pill buttons */
.hero--home .home-nav a{
  text-decoration: none;
  padding: 9px 18px;
  border-radius: 999px;

  background: rgba(255,255,255,0.70);
  border: 1px solid rgba(255,255,255,0.45);
  backdrop-filter: blur(10px);

  color: rgba(0,0,0,0.80);
  font-weight: 700;
  font-size: 14px;

  box-shadow: 0 10px 24px rgba(0,0,0,0.18);
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease,
    border-color 160ms ease;
}

.hero--home .home-nav a:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,0.85);
  border-color: rgba(255,255,255,0.70);
  box-shadow: 0 14px 30px rgba(0,0,0,0.22);
}

/* current page (Home) */
.hero--home .home-nav a[aria-current="page"]{
  background: rgba(255,255,255,0.92);
  border-color: rgba(255,255,255,0.85);
  color: rgba(0,0,0,0.92);
}

/* =========================================================
   CONTACT PAGE – HERO NAV BUTTONS
   (scoped so it won't affect other pages)
   ========================================================= */

   .hero--contact .contact-nav{
    margin-top: 18px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  /* pill buttons */
  .hero--contact .contact-nav a{
    text-decoration: none;
    padding: 9px 18px;
    border-radius: 999px;
  
    background: rgba(255,255,255,0.70);
    border: 1px solid rgba(255,255,255,0.45);
    backdrop-filter: blur(10px);
  
    color: rgba(0,0,0,0.80);
    font-weight: 700;
    font-size: 14px;
  
    box-shadow: 0 10px 24px rgba(0,0,0,0.18);
    transition:
      transform 160ms ease,
      box-shadow 160ms ease,
      background 160ms ease,
      border-color 160ms ease;
  }
  
  .hero--contact .contact-nav a:hover{
    transform: translateY(-1px);
    background: rgba(255,255,255,0.85);
    border-color: rgba(255,255,255,0.70);
    box-shadow: 0 14px 30px rgba(0,0,0,0.22);
  }
  
  /* current page (Contact) */
  .hero--contact .contact-nav a[aria-current="page"]{
    background: rgba(255,255,255,0.92);
    border-color: rgba(255,255,255,0.85);
    color: rgba(0,0,0,0.92);
  }

  /* =========================================================
   ABOUT PAGE – BACKGROUND IMAGE (reliable paint)
   ========================================================= */

.page-about{
  position: relative;
  background: transparent; /* so we only use the layer below */
}

/* Background image layer */
.page-about::before{
  content:"";
  position: fixed;
  inset: 0;
  background: url("../images/aboutbk.PNG") center / cover no-repeat;
  z-index: -2;
  transform: translateZ(0); /* triggers reliable GPU paint */
  will-change: transform;
}

/* Optional dark overlay (keep if you want readability) */
.page-about::after{
  content:"";
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.28);
  z-index: -1;
  pointer-events: none;
}

/* =========================================================
   ABOUT PAGE – TEXT READABILITY PASS (SAFE)
   ========================================================= */

/* Overall text color boost */
.page-about{
  color: rgba(255,255,255,0.96);
}

/* Paragraphs: improve contrast + spacing */
.page-about p,
.page-about li{
  color: rgba(255,255,255,0.92);
  line-height: 1.7;
}

/* Headings stay crisp */
.page-about h1,
.page-about h2,
.page-about h3{
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.45);
}

/* MAIN content cards / story sections */
.page-about .card,
.page-about .about-copy,
.page-about .about-frame{
  background: rgba(0,0,0,0.42);   /* frosted dark glass */
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 18px 50px rgba(0,0,0,0.35);
}

/* Lists + body copy spacing */
.page-about ul{
  padding-left: 18px;
}

.page-about li{
  margin-bottom: 6px;
}

/* Optional: section headers stand out slightly */
.page-about h2{
  margin-top: 28px;
  margin-bottom: 10px;
}



  /* =========================
   Hide About button on About page
   ========================= */
.page-about .nav a[href*="about"]{
  display: none;
}

/* =========================
   Hide Home button on Home page
   ========================= */
   .page-home .nav a[href*="index"]{
    display: none;
  }


/* =========================
   Hide current-page nav button
   ========================= */
   .nav a[aria-current="page"]{
    display: none;
  }

  /* =========================
   Hide Home button on Home page
   ========================= */
.home-nav a[aria-current="page"]{
  display: none;
}

/* =========================
   Contact page nav cleanup
   ========================= */

/* Hide Contact button on Contact page */
.contact-nav a[aria-current="page"]{
  display: none;
}

/* Hide Services button on Contact page */
.contact-nav a[href*="services"]{
  display: none;
}

/* =========================
   Mobile nav layout — 2 even rows
   About / Services / Beverage pages
   ========================= */
   @media (max-width: 640px){

    .nav{
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      max-width: 420px;
      margin: 0 auto;
    }
  
    .nav a{
      display: flex;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding: 12px 14px;
      border-radius: 999px;
      white-space: nowrap;
    }
  }

  /* =========================
   SITE LOGO (header brand)
   Desktop + Mobile control
   ========================= */

.site-top .brand{
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Desktop logo size */
.site-top .site-logo{
  height: 150px;      /* change this for desktop */
  width: auto;
  display: block;
}

/* Mobile logo size */
@media (max-width: 640px){
  .site-top .site-logo{
    height: 68px;    /* change this for mobile */
  }
}