/* ===========================
       CSS VARIABLES & ROOT
    =========================== */
    :root {
      --black:       #0d0d0d;
      --off-white:   #f5f2ec;
      --cream:       #ede8df;
      --olive:       #3a5a40;
      --olive-light: #4e7a57;
      --olive-dark:  #2c4430;
      --gold:        #c9a84c;
      --text-muted:  #7a7a6e;
      --font-serif:  'Playfair Display', serif;
      --font-sans:   'Poppins', sans-serif;
      --hero-font: 'Meddon', cursive;
      --transition:  0.35s cubic-bezier(0.4,0,0.2,1);
      --radius:      12px;
    }

    /* ===========================
       GLOBAL RESET & BASE
    =========================== */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: var(--font-sans);
      background: var(--off-white);
      color: var(--black);
      overflow-x: hidden;
    }
    img { display: block; width: 100%; height: 100%; object-fit: cover; }
    section { overflow: hidden; }
    a { text-decoration: none; }

    /* ===========================
       TYPOGRAPHY HELPERS
    =========================== */
    .section-label {
      font-family: var(--font-sans);
      font-size: 0.7rem;
      font-weight: 500;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--olive);
      margin-bottom: 0.75rem;
    }
    .section-title {
      font-family: var(--font-serif);
      font-size: clamp(2rem, 4vw, 3.2rem);
      font-weight: 700;
      line-height: 1.2;
      color: var(--black);
    }
    .section-title.light { color: var(--off-white); }
    .body-text {
      font-size: 0.92rem;
      font-weight: 300;
      line-height: 1.8;
      color: var(--text-muted);
    }

    /* ===========================
       BUTTONS
    =========================== */
    .btn-olive {
      background: var(--olive);
      color: #fff;
      border: none;
      border-radius: 50px;
      padding: 0.7rem 1.8rem;
      font-family: var(--font-sans);
      font-size: 0.82rem;
      font-weight: 500;
      letter-spacing: 0.05em;
      transition: var(--transition);
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      cursor: pointer;
    }
    .btn-olive:hover { background: var(--olive-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(58,90,64,.35); }

    .btn-outline-olive {
      background: rgba(230, 230, 230, 0.215);
      color: var(--off-white);
      border: 1.5px solid var(--off-white);
      border-radius: 50px;
      padding: 0.68rem 1.8rem;
      font-family: var(--font-sans);
      font-size: 0.82rem;
      font-weight: 500;
      letter-spacing: 0.05em;
      transition: var(--transition);
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      cursor: pointer;
    }
    .btn-outline-olive:hover {color: #fff; transform: translateY(-2px); }

    .btn-ghost-white {
      background: rgba(255,255,255,0.12);
      color: #fff;
      border: 1.5px solid rgba(255,255,255,0.45);
      border-radius: 50px;
      padding: 0.7rem 1.8rem;
      font-family: var(--font-sans);
      font-size: 0.82rem;
      font-weight: 500;
      letter-spacing: 0.05em;
      backdrop-filter: blur(6px);
      transition: var(--transition);
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      cursor: pointer;
    }
    .btn-ghost-white:hover { background: rgba(255,255,255,0.25); color: #fff; }

    /* ===========================
       NAVBAR
    =========================== */
    #mainNav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      padding: 1.4rem 0;
      transition: var(--transition);
      background:var(--off-white)
    }
    #mainNav.scrolled {
      background: var(--off-white);
      backdrop-filter: blur(12px);
      padding: 0.8rem 0;
      box-shadow: 0 2px 30px rgba(0, 0, 0, 0.2);
    }
    .navbar-brand {
      font-family: var(--font-serif);
      font-size: 1.35rem;
      font-weight: bolder;
      color: var(--olive-dark) !important;
      letter-spacing: 0.08em;
    }
    .nav-link {
      color: var(--olive-dark) !important;
      font-size: 0.8rem;
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 0.4rem 0.9rem !important;
      transition: color var(--transition);
    }
    .nav-link:hover, .nav-link.active { color: var(--off-white) !important; background: var(--olive-dark)  !important; border-radius: 50px; }
    .nav-cta {
      background: var(--olive-dark) !important;
      color: var(--off-white) !important;
      border-radius: 50px;
      padding: 0.45rem 1.3rem !important;
      font-size: 0.78rem !important;
      transition: var(--transition) !important;
    }
    .nav-cta:hover { background: var(--olive-dark) !important; }
    .navbar-toggler { border-color: rgba(255,255,255,0.4); }
    .navbar-toggler-icon {
      filter: invert(5);
    }

    /* Mobile Navbar Collapse Styles */
    @media (max-width: 991.98px) {
      .navbar-collapse {
        position: fixed;
        top: 88px;
        right: 0;
        bottom: 0;
        width: 100%;
        max-width: 300px;
        background: var(--olive-dark);
        transform: translateX(100%);
        transition: transform var(--transition);
        z-index: 999;
        padding: 2rem 1.5rem;
        overflow-y: auto;
      }
      
      .navbar-collapse.show {
        transform: translateX(0);
      }
      
      /* Backdrop overlay ketika menu terbuka */
      .navbar-collapse.show::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.4);
        z-index: -1;
      }
      
      .navbar-nav {
        flex-direction: column;
        gap: 0.5rem !important;
      }
      
      .nav-link {
        color: var(--off-white) !important;
        padding: 0.8rem 1.2rem !important;
        border-radius: 6px;
      }
      
      .nav-link:hover, .nav-link.active {
        background: rgba(255, 255, 255, 0.15) !important;
        color: var(--off-white) !important;
      }
      
      .nav-cta {
        width: 100%;
        text-align: center;
        background: var(--olive-light) !important;
        margin-top: 1rem;
      }
    }

    /* ===========================
       HERO SECTION
    =========================== */
    #hero {
      height: 100vh;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--black);
    }
    .hero-inner {
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      padding-top: 5rem;
      padding-bottom: 2rem;
      position: relative;
      z-index: 2;
    }
    .hero-wrap {
      width: 100%;
      display: flex;
      justify-content: center;
    }
    .hero-bg {
      position: absolute;
      inset: 0;
      background-image: url('https://images.unsplash.com/photo-1614837898761-fc859fb76180?q=80&w=1170&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
      background-size: cover;
      background-position: center;
      opacity: 0.5;
    }
    .hero-overlay {
      position: absolute;
      inset: 0;
      /* background: linear-gradient(105deg, rgba(0,0,0,0.78) 45%, rgba(0,0,0,0.3) 100%); */
    }
    .hero-content {
      position: relative;
      z-index: 2;
      text-align: center;
      max-width: 1000px;
      margin: 0 auto;
    }
    /* .hero-tag {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: rgba(255,255,255,0.1);
      border: 1px solid rgba(255,255,255,0.2);
      backdrop-filter: blur(6px);
      color: rgba(255,255,255,0.85);
      font-size: 0.72rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      padding: 0.45rem 1.1rem;
      border-radius: 50px;
      margin-bottom: 1.5rem;
    }
    .hero-tag span { width: 6px; height: 6px; background: var(--olive-light); border-radius: 50%; display: inline-block; } */
    .hero-title {
      font-family: var(--font-serif);
      font-size: clamp(3.5rem, 6vw, 5rem);
      font-weight: 700;
      color: var(--off-white);
      line-height: 1.2;
      letter-spacing: 0.08em;
      margin-bottom: 2rem;
    }
    
    .hero-sub {
      font-family: var(--hero-font);
      font-size: 1.2rem;
      font-weight: 300;
      color: rgba(255,255,255,0.7);
      line-height: 1.7;
      max-width: 640px;
      margin-bottom: 0.5rem;
      margin-left: auto;
      margin-right: auto;
    }
    .hero-btns {
      display: flex;
      flex-wrap: wrap;
      gap: 0.85rem;
      align-items: center;
      justify-content: center;
    }
    .hero-phone {
      color: rgba(255,255,255,0.6);
      font-size: 0.78rem;
      letter-spacing: 0.06em;
      margin-top: 2.5rem;
      display: flex; align-items: center; gap: 0.5rem;
    }
    .hero-phone i { color: var(--olive-light); }

    
    /* ===========================
       FEATURES SECTION
    =========================== */
    
    /* ===========================
       ABOUT SECTION
    =========================== */
    #about {
      padding: 6rem 0;
      background: var(--cream);
    }
    .about-img-wrap {
      position: relative;
      height: 520px;
    }
    .about-img-main {
      width: 78%; height: 84%;
      border-radius: 16px;
      overflow: hidden;
      position: absolute;
      top: 0; left: 0;
      box-shadow: 0 20px 60px rgba(0,0,0,.15);
    }
    .about-img-second {
      width: 55%; height: 52%;
      border-radius: 12px;
      overflow: hidden;
      position: absolute;
      bottom: 0; right: 0;
      box-shadow: 0 16px 40px rgba(0,0,0,.18);
      border: 5px solid var(--cream);
    }
    .about-badge {
      position: absolute;
      top: 50%; right: -16px;
      transform: translateY(-50%);
      background: var(--olive);
      color: #fff;
      border-radius: 12px;
      padding: 1.2rem 1rem;
      text-align: center;
      box-shadow: 0 8px 24px rgba(58,90,64,.4);
      z-index: 3;
    }
    .about-badge .num { font-family: var(--font-serif); font-size: 1.8rem; font-weight: 700; line-height: 1; }
    .about-badge .lbl { font-size: 0.6rem; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.8; }
    .quote-block {
      background: #fff;
      border-left: 3px solid var(--olive);
      border-radius: 8px;
      padding: 1.2rem 1.4rem;
      margin: 1.8rem 0;
      display: flex; align-items: flex-start; gap: 1rem;
    }
    .quote-avatar {
      width: 46px; height: 46px;
      border-radius: 50%;
      overflow: hidden;
      flex-shrink: 0;
    }
    .quote-text {
      font-size: 0.82rem;
      color: var(--text-muted);
      line-height: 1.6;
      font-style: italic;
    }
    .quote-sig {
      font-family: var(--font-serif);
      font-size: 0.85rem;
      color: var(--olive);
      margin-top: 0.3rem;
    }

    /* ===========================
       MENU SECTION
    =========================== */
    #menu {
      padding: 6rem 0;
      background: var(--off-white);
    }
    .menu-filters {
      display: flex; flex-wrap: wrap; gap: 0.6rem;
      justify-content: center;
      margin-bottom: 3rem;
    }
    .filter-btn {
      background: transparent;
      border: 1.5px solid rgba(58,90,64,0.25);
      color: var(--text-muted);
      border-radius: 50px;
      padding: 0.5rem 1.4rem;
      font-family: var(--font-sans);
      font-size: 0.8rem;
      font-weight: 500;
      cursor: pointer;
      transition: var(--transition);
    }
    .filter-btn:hover, .filter-btn.active {
      background: var(--olive);
      border-color: var(--olive);
      color: #fff;
    }
    .menu-grid { display: flex; flex-wrap: wrap; gap: 1.5rem; }
    .menu-item {
      flex: 1 1 calc(33.333% - 1rem);
      min-width: 240px;
      transition: var(--transition);
    }
    .menu-item.hidden { display: none; }
    .menu-card {
      background: #fff;
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(0,0,0,0.05);
      transition: var(--transition);
    }
    .menu-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.1); }
    .menu-card-img {
      width: 100%; aspect-ratio: 4/3;
      overflow: hidden;
      position: relative;
    }
    .menu-card-img img { transition: transform 0.5s ease; }
    .menu-card:hover .menu-card-img img { transform: scale(1.07); }
    .menu-card-badge {
      position: absolute;
      top: 0.75rem; right: 0.75rem;
      background: var(--olive);
      color: #fff;
      font-size: 0.62rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 0.25rem 0.7rem;
      border-radius: 50px;
    }
    .menu-card-body { padding: 1.2rem 1.4rem; }
    .menu-card-body h5 {
      font-family: var(--font-serif);
      font-size: 1.05rem;
      font-weight: 600;
      margin-bottom: 0.3rem;
    }
    .menu-card-body p { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 0.9rem; }
    .menu-price-row { display: flex; align-items: center; justify-content: space-between; }
    .menu-price {
      font-family: var(--font-serif);
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--olive);
    }
    .order-btn {
      background: var(--off-white);
      border: none;
      color: var(--olive);
      border-radius: 50px;
      width: 34px; height: 34px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1rem;
      cursor: pointer;
      transition: var(--transition);
    }
    .order-btn:hover { background: var(--olive); color: #fff; }

    /* ===========================
       MENU CTA CARD (NO IMAGE)
    =========================== */
    .menu-card-cta {
      background: linear-gradient(135deg, var(--olive-dark) 0%, var(--olive) 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 240px;
      position: relative;
      overflow: hidden;
    }
    .menu-card-cta::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -50%;
      width: 400px;
      height: 400px;
      background: rgba(255,255,255,0.05);
      border-radius: 50%;
      animation: float 6s ease-in-out infinite;
    }
    @keyframes float {
      0%, 100% { transform: translateY(0px); }
      50% { transform: translateY(-20px); }
    }
    .menu-card-cta .menu-card-body {
      text-align: center;
      position: relative;
      z-index: 1;
      padding: 2rem 1.5rem;
    }
    .menu-card-body .menu-cta-title {
      font-family: var(--font-serif);
      font-size: 2rem;
      font-weight: 700;
      color: var(--off-white);
      margin-bottom: 0.5rem;
    }
    .menu-card-body .menu-cta-desc {
      font-size: 1rem;
      color: var(--off-white);
      margin-bottom: 1.5rem;
    }
    .menu-action-row {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1rem;
    }
    .btn-view-menu {
      background: #fff;
      color: var(--olive);
      border: none;
      border-radius: 50px;
      padding: 0.7rem 1.8rem;
      font-family: var(--font-sans);
      font-size: 0.85rem;
      font-weight: 600;
      letter-spacing: 0.05em;
      transition: var(--transition);
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      cursor: pointer;
      text-decoration: none;
    }
    .btn-view-menu:hover {
      
      color: var(--olive);
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(16, 16, 16, 0.3);
    }
    .btn-view-menu i {
      font-size: 1rem;
      transition: var(--transition);
    }
    .btn-view-menu:hover i {
      transform: translateX(3px);
    }

    /* ===========================
       GALLERY SECTION
    =========================== */
    #gallery {
      padding: 6rem 0;
      background: var(--cream);
    }
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-template-rows: auto;
      gap: 1rem;
    }
    .gallery-grid .g-item:nth-child(1) { grid-row: span 2; }
    .gallery-grid .g-item:nth-child(4) { grid-column: span 2; }
    .g-item {
      border-radius: var(--radius);
      overflow: hidden;
      position: relative;
      cursor: pointer;
    }
    .g-item-inner { width: 100%; height: 100%; min-height: 200px; position: relative; overflow: hidden; }
    .g-item-inner img { transition: transform 0.5s ease; width: 100%; height: 100%; }
    .g-item:hover .g-item-inner img { transform: scale(1.08); }
    .g-overlay {
      position: absolute;
      inset: 0;
      background: rgba(58,90,64,0.6);
      opacity: 0;
      transition: var(--transition);
      display: flex; align-items: center; justify-content: center;
    }
    .g-item:hover .g-overlay { opacity: 1; }
    .g-overlay i { color: #fff; font-size: 1.6rem; }

    /* ===========================
       STATS SECTION
    =========================== */
    #stats {
      padding: 5rem 0;
      background: var(--olive-dark);
    }
    .stat-item { text-align: center; padding: 1.5rem; }
    .stat-num {
      font-family: var(--font-serif);
      font-size: clamp(2.4rem, 4vw, 3.5rem);
      font-weight: 700;
      color: #fff;
      line-height: 1;
    }
    .stat-num sup { font-size: 0.6em; color: var(--olive-light); }
    .stat-label {
      font-size: 0.75rem;
      font-weight: 400;
      color: rgba(255,255,255,0.45);
      letter-spacing: 0.12em;
      text-transform: uppercase;
      margin-top: 0.5rem;
    }
    .stat-divider {
      width: 1px;
      background: rgba(255,255,255,0.08);
      margin: auto;
    }

    /* ===========================
       CONTACT SECTION
    =========================== */
    #contact {
      padding: 6rem 0;
      background: var(--off-white);
    }
    .contact-card {
      background: var(--olive-dark);
      border-radius: 20px;
      overflow: hidden;
      display: grid;
      grid-template-columns: 1fr 1fr;
    }
    .contact-info { padding: 3.5rem; }
    .contact-info h3 {
      font-family: var(--font-serif);
      font-size: 2rem;
      color: #fff;
      margin-bottom: 1rem;
    }
    .contact-info p { font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: 2rem; }
    .contact-detail {
      display: flex; align-items: flex-start; gap: 1rem;
      margin-bottom: 1.4rem;
    }
    .contact-detail-icon {
      width: 40px; height: 40px;
      background: rgba(255,255,255,0.07);
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .contact-detail-icon i { color: var(--olive-light); font-size: 1rem; }
    .contact-detail-text strong {
      display: block;
      color: rgba(255,255,255,0.9);
      font-size: 0.82rem;
      font-weight: 500;
      margin-bottom: 0.2rem;
    }
    .contact-detail-text span { font-size: 0.78rem; color: rgba(255,255,255,0.45); }
    .social-btns { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 2rem; }
    .social-btn {
      display: inline-flex; align-items: center; gap: 0.5rem;
      background: rgba(255,255,255,0.07);
      color: rgba(255,255,255,0.8);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 50px;
      padding: 0.55rem 1.3rem;
      font-size: 0.78rem;
      font-weight: 500;
      transition: var(--transition);
    }
    .social-btn:hover { background: rgba(255,255,255,0.14); color: #fff; }
    .social-btn.wa { background: rgba(37,211,102,0.15); border-color: rgba(37,211,102,0.3); color: #25d366; }
    .social-btn.wa:hover { background: #25d366; color: #fff; }
    .social-btn.ig { background: rgba(228,64,95,0.12); border-color: rgba(228,64,95,0.25); color: #e4405f; }
    .social-btn.ig:hover { background: #e4405f; color: #fff; }
    .social-btn.tt { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.15); color: rgba(255,255,255,0.8); }
    .social-btn.tt:hover { background: rgba(255,255,255,0.18); color: #fff; }
    .contact-map {
      position: relative;
      min-height: 400px;
    }
    .contact-map iframe {
      width: 100%; height: 100%;
      border: none;
      filter: grayscale(0.3) contrast(1.1);
    }

    /* ===========================
       FOOTER
    =========================== */
    #footer {
      background: #080808;
      padding: 3.5rem 0 2rem;
    }
    .footer-brand {
      font-family: var(--font-serif);
      font-size: 1.6rem;
      font-weight: 700;
      color: #fff;
      letter-spacing: 0.06em;
    }
    .footer-tagline { font-size: 0.78rem; color: rgba(255,255,255,0.35); margin-top: 0.4rem; }
    .footer-heading {
      font-size: 0.68rem;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--olive-light);
      margin-bottom: 1.2rem;
    }
    .footer-links { list-style: none; }
    .footer-links li { margin-bottom: 0.65rem; }
    .footer-links a { font-size: 0.82rem; color: rgba(255,255,255,0.45); transition: color var(--transition); }
    .footer-links a:hover { color: rgba(255,255,255,0.85); }
    .footer-hours { font-size: 0.82rem; color: rgba(255,255,255,0.45); line-height: 1.9; }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.06);
      padding-top: 1.5rem;
      margin-top: 3rem;
      display: flex; align-items: center; justify-content: space-between;
      flex-wrap: wrap; gap: 0.5rem;
    }
    .footer-bottom p { font-size: 0.72rem; color: rgba(255,255,255,0.2); }
    .footer-social { display: flex; gap: 0.8rem; }
    .footer-social a {
      width: 34px; height: 34px;
      border-radius: 8px;
      background: rgba(255,255,255,0.06);
      display: flex; align-items: center; justify-content: center;
      color: rgba(255,255,255,0.45);
      font-size: 0.85rem;
      transition: var(--transition);
    }
    .footer-social a:hover { background: var(--olive); color: #fff; }

    /* ===========================
       FLOATING WA BUTTON
    =========================== */
    /* .wa-float {
      position: fixed;
      bottom: 2rem; right: 1.8rem;
      z-index: 999;
      width: 56px; height: 56px;
      background: #25d366;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      color: #fff;
      font-size: 1.5rem;
      box-shadow: 0 6px 24px rgba(37,211,102,0.5);
      transition: var(--transition);
      cursor: pointer;
    }
    .wa-float:hover { transform: scale(1.1) translateY(-3px); box-shadow: 0 10px 30px rgba(37,211,102,0.55); color: #fff; }
    .wa-pulse {
      position: absolute;
      inset: -6px;
      border-radius: 50%;
      border: 2px solid rgba(37,211,102,0.4);
      animation: pulse 2.2s ease-out infinite;
    }
    @keyframes pulse { 0%{opacity:1;transform:scale(1)} 100%{opacity:0;transform:scale(1.5)} } */

    /* ===========================
       RESPONSIVE
    =========================== */
    @media (max-width: 991px) {
      .contact-card { grid-template-columns: 1fr; }
      .contact-map { min-height: 300px; }
      .about-badge { right: 0; }
    }
    @media (max-width: 768px) {
      .gallery-grid { grid-template-columns: repeat(2, 1fr); }
      .gallery-grid .g-item:nth-child(1) { grid-row: span 1; }
      .gallery-grid .g-item:nth-child(4) { grid-column: span 1; }
      .menu-item { flex: 1 1 calc(50% - 1rem); }
      .about-img-wrap { height: 360px; }
    }
    @media (max-width: 576px) {
      .gallery-grid { grid-template-columns: 1fr; }
      .menu-item { flex: 1 1 100%; }
      #hero{height: 85vh;}
      .menu-cta-desc { font-size: 0.5rem; }
      .hero-title { font-size: 2.5rem; }
      .hero-sub { font-size: 1rem; }
      .hero-inner { padding-top: 5.5rem; }
      .hero-btns { flex-direction: row; }
      .contact-info { padding: 2rem; }
      .footer-bottom { flex-direction: column; align-items: flex-start; }
    }
