:root{
  --brownPrimary:#5C3317;       
  --orangeAccent:#E87722;     /* button */
  --WarmNeutral:#8B5E3C;
  --bg:#FAF7F2;
  --TextDark:#2C1A0E;
}
*, *::before, *::after {
  box-sizing: border-box;
  max-width: 100%;
}

html, body {
  overflow-x: hidden;
  scroll-behavior: smooth;
}
.hero,
.gallery,
.about,
.testimonials,
.contact {
  scroll-margin-top: 80px;    
}

body{
  font-family: "DM Sans", sans-serif;
  line-height:1.5;
  background:var(--bg);
  -webkit-font-smoothing:antialiased;
}
.logo{ 
  display:flex; 
  align-items:center; 
  gap:.6rem; 
  background: rgba(216, 205, 198, 0.964);  
  padding: .3rem .8rem;
  border-radius: 8px;
}
.logo-img {
  height: 50px;      
  width: auto;       
  object-fit: contain;
  color:#fff; 
  font-weight:700;
  filter: brightness(1.2) invert(0);
}

.navbar{ 
  display: flex;
  justify-content: space-between;
  padding: 20px 20px;
  position: fixed;  
  top: 0; 
  left: 0;
  width: 100%;
  z-index: 100;       
  background: rgba(44, 26, 14, 0.35);  
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.nav-list{
  display:flex;
  gap:2.4rem;
  list-style:none;
  align-items:center;
  margin-left: auto;
}
.nav-list a{ 
    text-decoration:none; 
    color:var(--bg); 
    font-weight:500;
    font-size:.95rem; 
    padding:.4rem .2rem; 
    transition: color 0.3s ease, font-weight 0.3s ease;
}
.nav-list a:hover,
.nav-list a.active { 
    color:var(--orangeAccent);
    font-weight: bold;
    transition: 0.3s ease;
}
nav .nav-btn {
  background: var(--orangeAccent);
  color: #fff !important;         
  border-radius: 6px;
  font-weight: 600;
  transition: background 0.3s ease;
  padding: .5rem 1.2rem;
  cursor: pointer;
  font-family: "DM Sans", sans-serif;
  text-align: center;
}

.nav-btn:hover {
  background: var(--brownPrimary);  
  font-weight: 600;
  border: 2px solid white;
}
    
    
/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 100px 20px 60px;
  gap: 2rem;
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-overlay {
  position: absolute;   
  inset: 0;
  z-index: 1;
  background: rgba(44, 26, 14, 0.45);  
}

.hero-content {
  position: relative;   
  z-index: 2;
  margin-left: 0 !important;
  padding-left: 0;
}
.hero-eyebrow {
  color: var(--orangeAccent);  
  font-size: .85rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 500;
}

.hero-title {
  color: #fff;
  font-family: "Oswald", sans-serif;  
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.1;
  margin: 1rem 0;
}

.hero-sub {
  color: rgba(255, 255, 255, 0.85);  
  font-size: 1.1rem;
  max-width: 500px;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.slide.active {
  opacity: 1;        
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;   
}

.btn-primary {
  background: var(--orangeAccent);
  color: #fff;
  padding: .85rem 2rem;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
  display: inline-block;   
}

.btn-primary:hover {
  background: var(--brownPrimary);
  transform: translateY(-2px);   
  border: 2px solid white;
}

.btn-secondary {
  background: transparent;
  color: #fff;
  padding: .85rem 2rem;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid #fff;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-secondary:hover {
  background: #fff;
  color: var(--brownPrimary); 
  border: 2px solid var(--orangeAccent);
}

/* Gallery Section */
.gallery {
  padding: 6rem 5%;
  background: #F0E9DF;   
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-eyebrow {
  color: var(--orangeAccent);
  font-size: .85rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 500;
  display: block;        
  margin-bottom: .5rem;
}

.section-title {
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--brownPrimary);
  margin-bottom: 1rem;
}

.section-sub {
  color: var(--WarmNeutral);
  font-size: 1rem;
  max-width: 550px;
  margin: 0 auto;        
  line-height: 1.7;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);  
  gap: 1.2rem;
}

.gallery-item {
  border-radius: 10px;
  overflow: hidden;        
  aspect-ratio: 4 / 3;    
  background: var(--brownPrimary);  
  position: relative;
}

.gallery-item a {
  display: block;        
  width: 100%;
  height: 100%;
}

.gallery-item img,
.gallery-item video {
  cursor: pointer;       
}

.gallery-item img,
.gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;       
  display: block;
  transition: transform 0.4s ease;
  cursor: pointer;
}

.gallery-item:hover img,
.gallery-item:hover video {
  transform: scale(1.05); 
}

.gallery-item.hidden {
  display: none;       
}

.load-more-wrapper {
  text-align: center;
  margin-top: 3rem;
}

.btn-load-more {
  background: var(--orangeAccent);
  color: #fff;
  padding: .85rem 2.5rem;
  border: none;
  border-radius: 6px;
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.btn-load-more:hover {
  background: var(--brownPrimary);
  transform: translateY(-2px);
  border: 2px solid var(--orangeAccent);
}

/* About Section */
.about {
  padding: 6rem 5%;
  background: var(--bg);         
  display: grid;
  grid-template-columns: 1fr 1fr;  /* image left, text right */
  gap: 4rem;
  align-items: center;
}

.about-image {
  border-radius: 12px;
  overflow: hidden;
  height: 550px;                 
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.about-image:hover img {
  transform: scale(1.03);        
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.about-text {
  color: var(--WarmNeutral);
  font-size: 1rem;
  line-height: 1.9;              
}

.about-stats {
  display: flex;
  gap: 2rem;
  margin-top: 1rem;
  padding-top: 2rem;
  border-top: 1px solid #E8DDD0;  
  flex-wrap: nowrap;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

.stat-value {
  font-family: "Oswald", sans-serif; 
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--orangeAccent);          
  line-height: 1;
}
.stat-value i {
  font-size: 2.5rem;
  color: var(--orangeAccent);
}

.stat-label {
  font-size: .8rem;
  font-weight: 500;
  color: var(--brownPrimary);
  text-transform: uppercase;
  letter-spacing: .1em;
  max-width: 120px;                    /* prevents long labels from stretching too wide */
}

.cac-badge {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
  padding: 1.2rem 1.5rem;
  background: rgba(232, 119, 34, 0.06);  
  border: 1.5px solid rgba(232, 119, 34, 0.2);
  border-radius: 10px;
}

.cac-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cac-info i {
  font-size: 2rem;
  color: var(--orangeAccent);
  flex-shrink: 0;
}

.cac-text {
  display: flex;
  flex-direction: column;
  gap: .2rem;
}

.cac-title {
  font-weight: 700;
  font-size: .95rem;
  color: var(--brownPrimary);
}

.cac-number {
  font-size: .8rem;
  color: var(--WarmNeutral);
}

.cac-view {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .85rem;
  font-weight: 600;
  color: var(--orangeAccent);
  text-decoration: none;
  border: 1.5px solid var(--orangeAccent);
  padding: .5rem 1rem;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.cac-view:hover {
  background: var(--orangeAccent);
  color: #fff;
}

/* Testimonials Section */
.testimonials {
  padding: 6rem 5%;
  background: #F0E9DF;           
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  box-shadow: 0 4px 20px rgba(92, 51, 23, 0.08); 
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);         /* lifts card on hover */
  box-shadow: 0 12px 32px rgba(92, 51, 23, 0.14);
}

.stars {
  color: var(--orangeAccent);
  font-size: 1.1rem;
  letter-spacing: .1em;
}

.testimonial-text {
  color: var(--WarmNeutral);
  font-size: .95rem;
  line-height: 1.8;
  font-style: italic;            
  flex: 1;                         
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #F0E9DF;
}

.author-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--brownPrimary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .85rem;
  flex-shrink: 0;                  /* stops avatar from shrinking */
}

.author-info {
  display: flex;
  flex-direction: column;
  gap: .2rem;
}

.author-name {
  font-weight: 600;
  font-size: .9rem;
  color: var(--brownPrimary);
}

.author-location {
  font-size: .8rem;
  color: var(--WarmNeutral);
}

.google-verify {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .78rem;
  color: var(--WarmNeutral);
  text-decoration: none;
  margin-top: .5rem;
  transition: color 0.3s ease;
}

.google-verify:hover {
  color: var(--orangeAccent);
}

.google-logo {
  height: 48px;
  width: auto;
}
.google-verify .verify{
  font-size: 1rem;
  font-weight: 600;
  text-decoration: underline;
}

/* Contact Section */
.contact {
  padding: 6rem 5%;
  background: var(--bg);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.4fr;  
  gap: 4rem;
  margin-top: 3rem;
  align-items: start;
}

/* ---- Contact Info ---- */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  font-size: 1.5rem;
  margin-top: .2rem;
  flex-shrink: 0;
}

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: .3rem;
}

.contact-label {
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--WarmNeutral);
}

.contact-value {
  font-size: 1rem;
  font-weight: 500;
  color: var(--brownPrimary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-value:hover {
  color: var(--orangeAccent);
}

.social-links {
  display: flex;
  gap: .8rem;
}

.social-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;           
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link.twitter {
  background: #000;
  color: #ffff;
}
.social-link.tiktok {
  background: #000;
  color:#ffff;
}

.social-link.youtube {
  background: #ff0000;   
  color: #ffff;
}

.social-link.twitter:hover,
.social-link.tiktok:hover,
.social-link.youtube:hover {
  /* background: var(--orangeAccent);
  color: #fff; */
  transform: translateY(-3px);
}


.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: #25D366;         
  color: #fff;
  padding: .9rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
  margin-top: .5rem;
  width: fit-content;
}

.btn-whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
}



/* ---- Email Form ---- */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  background: #fff;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(92, 51, 23, 0.08);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.form-group label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--brownPrimary);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.form-group input,
.form-group textarea {
  padding: .85rem 1rem;
  border: 1.5px solid #E8DDD0;
  border-radius: 8px;
  font-family: "DM Sans", sans-serif;
  font-size: .95rem;
  color: var(--TextDark);
  background: var(--bg);
  outline: none;
  transition: border-color 0.3s ease;
  resize: none;                  /* stops textarea being manually resized */
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--orangeAccent);   
}

.btn-submit {
  background: var(--orangeAccent);
  color: #fff;
  padding: 1rem;
  border: none;
  border-radius: 8px;
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.btn-submit:hover {
  background: var(--brownPrimary);
  border: 2px solid var(--orangeAccent);
  transform: translateY(-2px);
}

.map-wrapper {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.map-title {
  font-family: "Oswald", sans-serif;
  font-size: 1.3rem;
  color: var(--brownPrimary);
  display: flex;
  align-items: center;
  gap: .5rem;
}

.map-address {
  font-size: .95rem;
  color: var(--WarmNeutral);
}

.map-container {
  width: 100%;
  height: 350px;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid #E8DDD0;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* footer */
.footer {
  background: var(--brownPrimary);   
  padding: 3rem 5%;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.footer-logo {
  display: inline-block;
  text-decoration: none;
}

.footer-logo-img {
  height: 55px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);   /* turns logo white against dark background */
}

.footer-tagline {
  font-size: .9rem;
  color: rgba(255, 255, 255, 0.6);  
  font-style: italic;
  margin-top: .5rem;
  letter-spacing: .05em;
}

.footer-copy {
  font-size: .8rem;
  color: white;   
  letter-spacing: .05em;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);  
  width: 100%;
  text-align: center;
  font-weight: 600;
}

.footer-dev {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
}

.footer-dev-text {
  font-size: .75rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.footer-dev-name {
  font-size: .9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: .05em;
}

.footer-dev-links {
  display: flex;
  gap: .8rem;
  margin-top: .3rem;
}

.dev-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--orangeAccent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
}

.dev-link:hover {
  color: #fff;
  background: var(--orangeAccent);
  transform: translateY(-3px);
}

/* 1440 and 2560 screens */
.hero-content,
.gallery,
.about,
.testimonials,
.contact,
.footer-content {
  max-width: 1400px;      
  margin-left: auto;     
  margin-right: auto;
}

.gallery,
.about,
.testimonials,
.contact {
  padding-left: max(5%, calc((100% - 1400px) / 2));
  padding-right: max(5%, calc((100% - 1400px) / 2));
}


/* RESPONSIVENESS */

/* ---- TABLET (769px - 1024px) ---- */
@media (min-width: 769px) and (max-width: 1025px) {

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .about {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-content { order: 1; }
  .about-image {
    order: 2;
    height: 350px;
  }
  .about-stats{
    flex-wrap:nowrap;
    gap: .8rem;
  }
  .section-eyebrow{
    font-size: 1.4rem;
  }
  .about-text{
    font-size: 1.6rem;
  }
  .about-stats{
    justify-content: space-between;
  }
  .stat-value{
    font-size: 1.5rem;
  }
  .stat-label{
    font-size: 1rem;
    max-width: 80px;
  }


  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .nav-list a,
  .logo-img,
  .hero-eyebrow,
  .hero-sub,
  .btn-primary,
  .btn-secondary,
  .btn-load-more,
  .section-sub,
  .testimonial-text,
  .author-avatar,
  .author-name,
  .author-location,
  .google-verify .verify,
  .contact-value,
  .footer-tagline,
  .footer-copy,
  .footer-dev-text,
  .footer-dev-name,
  ::placeholder,
  .btn-submit{
    font-size: 1.4rem;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }


}

/* ---- MOBILE (max 768px) ---- */
@media (max-width: 768px) {

  .hero {
    padding-left: 120px 5% 60px;    
    text-align: left;    
 }

 .hero-content{
   width: 100%;
   
  }
   .hero-slides .slide:first-child {
    background-image: url('asset/images/hero-bg.webp') !important;
  }

  /* NAVBAR */
  .navbar {
    padding: 16px 5%;
    width: 100%;
  }
  .nav-list .nav-btn{
    background: var(--orangeAccent) !important;
    color: #fff !important;
    border-radius: 6px;
    margin-top: 1rem;
    padding: .85rem 1rem !important;
    text-align: center;
    border: none;
    width: 100%;
    display: block;
  }

  .logo-img {
    height: 40px;
  }

  /* HAMBURGER BUTTON */
  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: .4rem;
    z-index: 999;
    position: relative;
  }

  .bar {
    display: block;
    width: 25px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
  }

  /* X animation when open */
  .hamburger.active .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
    /* transform: scaleX(0); */
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav-list {
    display: flex !important;    
    flex-direction: column;
    align-items: center;
    gap: 0;
    list-style: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 75%;
    height: 90vh;
    background: var(--brownPrimary);
    border-radius: 16px;
    padding: 100px 2rem 2rem;
    z-index: 998;
    margin-left: 0;
    transform: translateX(100%);  
    transition: transform 0.4s ease;
    pointer-events:none;
  }

  .nav-list.open {
    transform: translateX(0);    
    pointer-events: all;
  }

  .nav-list li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-list a {
    display: block;
    padding: 1.1rem 0;
    color: #fff !important;
    font-size: 1rem;
    text-align: center;
    text-decoration: none;
    pointer-events: all;
  }

  .nav-list a:hover {
    color: var(--orangeAccent) !important;
  }

  .nav-list .nav-btn {
    background: var(--orangeAccent) !important;
    color: #fff !important;
    border-radius: 6px;
    margin-top: 1rem;
    padding: .85rem !important;
    text-align: center;
    border: none;
  }

  /* OVERLAY */
  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 140;
  }

  .nav-overlay.active {
    display: block;
  }

  /* HERO */
  .hero {
    padding: 120px 5% 60px;
    text-align: left;
  }

  .hero-content { width: 100%; }

  .hero-title { font-size: 2.2rem; }

  .hero-sub {
    font-size: .95rem;
    max-width: 100%;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }

  /* GALLERY */
  .gallery-grid {
    grid-template-columns: 1fr;   
    gap: .8rem;
  }

  /* ABOUT */
  .about {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 3rem 5%;
  }

  .about-content { 
    order: 1; /* text first */
    width: 90%;
  }   
  .about-image {
    order: 2;                     /* image second */
    height: 280px;
  }

  .about-stats {
    gap: .4rem;
    flex-wrap: wrap;
  }

  .stat-value {
    font-size: 1.8rem;
  }

  /* TESTIMONIALS */
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .testimonial-card {
    width: 100%;
    padding: 1.5rem;
  }

  .google-verify {
    flex-wrap: wrap;
    font-size: .72rem;
    width: 100%;
  }

  .google-verify .google-logo {
    flex-wrap: wrap;
    font-size: .72rem;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* CONTACT */
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-form {
    padding: 1.5rem;
  }

  .btn-whatsapp {
    width: 100%;
    justify-content: center;
  }

  /* FOOTER */
  .footer {
    padding: 2.5rem 5%;
  }

  .footer-logo-img {
    height: 45px;
  }
}

/* Hide hamburger on desktop */
@media (min-width: 769px) {
  .hamburger { 
    display: none; 
  }
}