:root{
  --dark:#0b2418;
  --green:#1c5e3c;
  --light:#f5f9f6;
  --accent:#c6a24a;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Inter', sans-serif;
  color:#222;
  background:#fff;
  line-height:1.6;
}

h1, h2, h3{
  font-family:'Playfair Display', serif;
}

a{
  text-decoration:none;
  color:inherit;
}

header{
  position:sticky;
  top:0;
  z-index:10;
  background:#fff;
  border-bottom:1px solid #eee;
}

.nav{
  max-width:1200px;
  margin:auto;
  padding:16px 24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.logo{
  font-weight:700;
  font-size:22px;
  letter-spacing:1px;
  color:var(--dark);
}

.nav ul{
  display:flex;
  gap:28px;
  list-style:none;
}

.nav li a{
  font-size:14px;
  font-weight:500;
}

.hero{
  background:
    linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
    url('../images/hero.jpg') center/cover no-repeat;
  color:#fff;
}

.hero-inner{
  max-width:1200px;
  margin:auto;
  padding:120px 24px;
  text-align:center;
}

.hero h1{
  letter-spacing:2px;
  font-weight:700;
}

.hero p{
  margin-top:10px;
  font-size:20px;
  letter-spacing:1px;
  opacity:0.95;
}

/* CTA BUTTON */
.hero .cta{
  display:inline-block;
  margin-top:36px;
  padding:14px 34px;
  border-radius:40px;
  background:var(--accent);
  color:#000;
  font-weight:600;
  text-decoration:none;
}

section{
  padding:80px 24px;
}

.container{
  max-width:1200px;
  margin:auto;
}

/* ABOUT SECTION */

.about{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:60px;
  align-items:center;
}

.about h2{
  font-size:36px;
  margin-bottom:18px;
  color:var(--dark);
}

.about p{
  line-height:1.8;
  color:#444;
}

.about-card{
  background:var(--light);
  padding:40px;
  border-radius:16px;
}

.highlights{
  background:var(--light);
}

.grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}

.box{
  background:#fff;
  border-radius:16px;
  padding:32px;
  text-align:center;
  box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.box h3{
  margin-top:12px;
  font-size:18px;
  color:var(--dark);
}

.box p{
  font-size:14px;
  color:#555;
  margin-top:8px;
}

.vision{
  background:linear-gradient(135deg, var(--dark), var(--green));
  color:#fff;
}

.vision h2{
  font-size:38px;
  margin-bottom:16px;
}

.vision p{
  max-width:820px;
  line-height:1.9;
  opacity:.95;
}

footer{
  background:#0b1f15;
  color:#ccc;
  padding:50px 24px;
}

footer .container{
  display:grid;
  grid-template-columns:2fr 1fr 1fr;
  gap:40px;
}

footer h4{
  color:#fff;
  margin-bottom:12px;
}

footer p,
footer li{
  font-size:14px;
  line-height:1.7;
}

footer ul{
  list-style:none;
}

.copyright{
  text-align:center;
  margin-top:40px;
  font-size:13px;
  opacity:.7;
}

@media(max-width:900px){
  .about{
    grid-template-columns:1fr;
  }

  .grid{
    grid-template-columns:1fr 1fr;
  }

  .hero h1{
    font-size:40px;
  }
}

@media(max-width:520px){
  .grid{
    grid-template-columns:1fr;
  }

  .hero h1{
    font-size:34px;
  }
}
.logo-wrap{
  display:flex;
  align-items:center;
  gap:10px;
}

.logo-wrap img{
  height:38px;
  width:auto;
}

.logo-wrap span{
  font-weight:700;
  font-size:20px;
  letter-spacing:1px;
  color:#0f2d1f;
}
.hero .cta:hover{
  background:#b08d38;
  transition:0.3s ease;
}
@media only screen and (max-width: 768px){

  .nav-desktop{
    display:none !important;
  }

  header .nav{
    padding:10px 14px !important;
  }

  .logo-wrap{
    gap:6px;
    white-space:nowrap;
  }

  .logo-wrap img{
    height:24px !important;
  }

  .logo-wrap span{
    font-size:14px !important;
    line-height:1 !important;
    white-space:nowrap;
  }
}
@media screen and (max-width: 768px){

  footer{
    width:100%;
    overflow-x:hidden;
  }

  footer .container{
    width:100%;
    max-width:100%;
    padding-left:16px;
    padding-right:16px;
    box-sizing:border-box;
  }

  footer .container > div{
    margin-bottom:24px;
  }
}
footer a{
  word-break: break-word;
  overflow-wrap: break-word;
}

@media screen and (max-width: 768px){
  footer .container p,
  footer .container a{
    font-size:14px;
    line-height:1.6;
  }
}
.contact-form-section{
  padding:80px 0;
  background:#f6faf7;
}

.contact-form-section h2{
  font-family:'Playfair Display', serif;
  font-size:32px;
  color:#0f2d1f;
  margin-bottom:10px;
}

.contact-form-section p{
  max-width:600px;
  margin-bottom:40px;
  color:#444;
}

.contact-form{
  max-width:600px;
  background:#ffffff;
  padding:40px;
  border-radius:16px;
  box-shadow:0 10px 30px rgba(0,0,0,0.06);
}

.form-group{
  margin-bottom:20px;
}

.form-group label{
  display:block;
  font-weight:500;
  margin-bottom:6px;
  color:#222;
}

.form-group input,
.form-group textarea{
  width:100%;
  padding:12px 14px;
  border:1px solid #ddd;
  border-radius:8px;
  font-family:'Inter', sans-serif;
  font-size:14px;
}

.form-group input:focus,
.form-group textarea:focus{
  outline:none;
  border-color:#1f6b45;
}

.btn-submit{
  display:inline-block;
  background:#c8a24d;
  color:#000;
  padding:12px 28px;
  border:none;
  border-radius:30px;
  font-weight:600;
  cursor:pointer;
}

.btn-submit:hover{
  opacity:0.9;
}

@media(max-width:768px){
  .contact-form{
    padding:28px;
  }
}
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(220px,1fr));
  gap:20px;
  margin-top:40px;
}

.gallery-grid img{
  width:100%;
  border-radius:12px;
  box-shadow:0 10px 20px rgba(0,0,0,0.1);
}

.hamburger{
  display:none;
  flex-direction:column;
  gap:4px;
  cursor:pointer;
}

.hamburger span{
  width:22px;
  height:2px;
  background:#0f2d1f;
}

.mobile-menu{
  display:none;
  background:#0f2d1f;
  padding:20px;
}

.mobile-menu a{
  display:block;
  color:#fff;
  padding:12px 0;
  text-decoration:none;
  border-bottom:1px solid rgba(255,255,255,0.1);
}

@media(max-width:768px){
  .nav-desktop{
    display:none !important;
  }
  .hamburger{
    display:flex;
  }
  .mobile-menu.active{
    display:block;
  }
}
/* ===== SAFARI iOS HARD FIX FOR HEADER ===== */

/* Target Safari only */
@supports (-webkit-touch-callout: none) {

  @media screen and (max-width: 768px){

    /* FORCE hide desktop menu */
    .nav-desktop{
      display:none !important;
      visibility:hidden !important;
      height:0 !important;
      overflow:hidden !important;
    }

    /* Show hamburger */
    .hamburger{
      display:flex !important;
    }
  }
}
/* ===== HAMBURGER ANIMATION ===== */

.hamburger{
  transition:0.3s;
}

.hamburger span{
  transition:0.3s;
}

/* When active (X icon) */
.hamburger.active span:nth-child(1){
  transform:rotate(45deg) translate(5px,5px);
}

.hamburger.active span:nth-child(2){
  opacity:0;
}

.hamburger.active span:nth-child(3){
  transform:rotate(-45deg) translate(6px,-6px);
}

/* Slide animation */
.mobile-menu{
  animation:slideDown 0.3s ease;
}

@keyframes slideDown{
  from{opacity:0; transform:translateY(-10px);}
  to{opacity:1; transform:translateY(0);}
}

