:root{
  --primary:#1f2a44;
  --secondary:#c59d5f;
  --background:#f7f7f7;
  --text:#222222;
  --white:#ffffff;
  --footer:#111111;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }

body{
  margin:0;
  font-family:Inter, Arial, sans-serif;
  color:var(--text);
  background:var(--background);
  line-height:1.6;
}

img{ max-width:100%; display:block; }

h1,h2,h3{
  font-family:'Playfair Display', serif;
  margin:0 0 15px;
  line-height:1.2;
}

h2,h3{ color:var(--primary); }
p, ul{ margin:0 0 18px; }

.header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:24px;
  padding:18px 40px;
  background:var(--primary);
  color:var(--white);
  box-shadow:0 4px 18px rgba(0,0,0,0.12);
}

.logo img{
  height:56px;
  width:auto;
  display:block;
  border-radius:50%;
}

.nav{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
}

.nav a{
  margin:0 12px;
  color:var(--white);
  text-decoration:none;
  font-weight:500;
}

.nav a:hover{ color:var(--secondary); }

.cta{
  background:var(--secondary);
  color:var(--white);
  padding:11px 18px;
  border-radius:8px;
  text-decoration:none;
  font-weight:700;
  white-space:nowrap;
}






.section-card{
  max-width:980px;
  margin:40px auto 0;
  padding:80px 40px;
  background:var(--white);
  border-radius:12px;
  box-shadow:0 10px 30px rgba(31,42,68,0.08);
}

ul{ padding-left:22px; }

.gallery{
  padding:80px 24px;
}

.gallery-wrap{
  max-width:1180px;
  margin:0 auto;
  text-align:center;
}

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:20px;
  margin-top:40px;
}

.gallery-grid-five{
  max-width:1000px;
  margin-left:auto;
  margin-right:auto;
}

.gallery img{
  width:100%;
  height:260px;
  object-fit:cover;
  border-radius:12px;
  box-shadow:0 10px 24px rgba(0,0,0,0.12);
}

.contact{
  background:var(--primary);
  color:var(--white);
  padding:80px 24px;
}

.contact-wrap{
  max-width:1100px;
  margin:0 auto;
  text-align:center;
}

.contact h2{ color:var(--white); }

.contact-cta-row{
  display:flex;
  justify-content:center;
  gap:18px;
  flex-wrap:wrap;
  margin:40px 0 12px;
}

.phone-button,
.email-button{
  display:inline-block;
  font-weight:700;
  color:var(--white);
  text-decoration:none;
  border-radius:10px;
}

.phone-button{
  font-size:32px;
  background:var(--secondary);
  padding:20px 50px;
}

.email-button{
  font-size:20px;
  background:transparent;
  border:2px solid var(--secondary);
  padding:22px 32px;
}

.call-note{
  margin-top:15px;
  font-size:14px;
}

.contact-details{
  display:flex;
  justify-content:center;
  gap:40px;
  flex-wrap:wrap;
  margin-top:20px;
}

.contact-details p{
  margin:0;
  min-width:220px;
}

.map{
  margin-top:40px;
  border-radius:12px;
  overflow:hidden;
  box-shadow:0 12px 30px rgba(0,0,0,0.22);
}

footer{
  text-align:center;
  padding:30px;
  background:var(--footer);
  color:var(--white);
}

@media (max-width: 900px){
  .header{
    flex-direction:column;
    padding:16px 20px;
  }

  }

@media (max-width: 640px){
  .nav{ gap:8px 0; }

  .nav a{ margin:0 8px; }

  .section-card, .gallery, .contact{
    padding-top:56px;
    padding-bottom:56px;
  }

  .section-card{
    padding-left:22px;
    padding-right:22px;
    margin-left:14px;
    margin-right:14px;
  }

  
  
  
  .phone-button{
    font-size:26px;
    padding:16px 28px;
  }

  .email-button{
    font-size:18px;
    padding:16px 24px;
  }

  .gallery img{ height:220px; }
}

.cta-large{
display:inline-block;
font-size:28px;
font-weight:700;
background:var(--secondary);
color:white;
padding:20px 45px;
border-radius:10px;
text-decoration:none;
}

.contact-cta-row{
display:flex;
justify-content:center;
gap:20px;
flex-wrap:wrap;
margin:40px 0 20px;
}


.logo{
display:flex;
align-items:center;
gap:12px;
}

.logo-text{
font-size:22px;
font-weight:700;
color:white;
letter-spacing:0.5px;
}



.hero{
  position:relative;
  min-height:88vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:80px 24px;
  background:url(images/hero.jpg) center/cover no-repeat;
  overflow:hidden;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(10,16,30,0.82) 0%, rgba(10,16,30,0.68) 45%, rgba(10,16,30,0.45) 100%);
}

.hero-inner{
  position:relative;
  z-index:1;
  width:100%;
  max-width:1180px;
  color:#fff;
  text-align:left;
}

.hero-kicker{
  display:inline-block;
  margin-bottom:18px;
  padding:8px 14px;
  background:rgba(197,157,95,0.16);
  border:1px solid rgba(197,157,95,0.45);
  border-radius:999px;
  color:#f2dfbf;
  font-size:14px;
  font-weight:700;
  letter-spacing:0.08em;
  text-transform:uppercase;
}

.hero h1{
  max-width:760px;
  margin:0 0 20px;
  color:#fff;
  font-size:64px;
  line-height:1.02;
}

.hero-lead{
  max-width:700px;
  margin:0 0 30px;
  font-size:20px;
  line-height:1.7;
  color:rgba(255,255,255,0.92);
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:16px;
  margin-bottom:40px;
}

.hero-button{
  display:inline-block;
  padding:18px 30px;
  border-radius:10px;
  text-decoration:none;
  font-weight:700;
  font-size:17px;
  transition:transform 0.2s ease, opacity 0.2s ease;
}

.hero-button:hover{
  transform:translateY(-1px);
  opacity:0.96;
}

.hero-button-primary{
  background:var(--secondary);
  color:#fff;
}

.hero-highlights{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:18px;
  max-width:760px;
}

.hero-highlight{
  padding:18px 20px;
  border:1px solid rgba(255,255,255,0.14);
  background:rgba(255,255,255,0.08);
  border-radius:14px;
  backdrop-filter:blur(6px);
}

.hero-highlight strong{
  display:block;
  margin-bottom:6px;
  color:#fff;
  font-size:22px;
}

.hero-highlight span{
  color:rgba(255,255,255,0.82);
  font-size:14px;
}

@media (max-width: 900px){
  .hero{
    min-height:78vh;
    padding:64px 20px;
  }

  .hero h1{
    font-size:44px;
    max-width:620px;
  }

  .hero-lead{
    font-size:18px;
  }

  .hero-highlights{
    grid-template-columns:1fr;
    max-width:100%;
  }
}

@media (max-width: 640px){
  .hero h1{
    font-size:34px;
  }

  .hero-lead{
    font-size:16px;
  }

  .hero-actions{
    flex-direction:column;
    align-items:stretch;
  }

  .hero-button{
    text-align:center;
    width:100%;
  }
}
