:root{
  --dark:#061018;
  --navy:#0b1724;
  --navy-soft:#102234;
  --gold:#c89b45;
  --gold-light:#e0b760;
  --cream:#f7f3ec;
  --white:#ffffff;
  --text:#1d1d1d;
  --muted:#6d6d6d;
  --shadow:0 14px 34px rgba(6,16,24,.10);
}

*{
  box-sizing:border-box;
  margin:0;
  padding:0;
}

html{
  scroll-behavior:smooth;
}

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

a{
  color:inherit;
}

.site-header{
  background:linear-gradient(135deg,var(--dark),var(--navy));
  color:var(--white);
  padding:22px 8%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:22px;
  position:sticky;
  top:0;
  z-index:100;
  box-shadow:0 10px 24px rgba(0,0,0,.18);
}

.brand{
  display:flex;
  align-items:center;
  gap:16px;
  color:var(--white);
  text-decoration:none;
  min-width:max-content;
}

.logo{
  width:58px;
  height:58px;
  border:2px solid var(--gold);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--gold);
  font-size:25px;
  font-weight:bold;
  font-family:Georgia, serif;
  letter-spacing:1px;
}

.brand h1,
.brand strong{
  display:block;
  color:var(--white);
  font-family:Georgia, serif;
  letter-spacing:3px;
  font-size:25px;
  line-height:1.1;
  font-weight:bold;
}

.brand span{
  display:block;
  color:var(--gold-light);
  font-size:14px;
  letter-spacing:1.7px;
  margin-top:3px;
}

.header-right{
  display:flex;
  align-items:center;
  gap:22px;
}

.main-nav{
  display:flex;
  align-items:center;
  gap:6px;
  flex-wrap:wrap;
}

.main-nav a{
  color:rgba(255,255,255,.9);
  text-decoration:none;
  font-size:14px;
  padding:9px 12px;
  border-radius:999px;
  transition:.25s ease;
}

.main-nav a:hover,
.main-nav a.active{
  color:#111;
  background:var(--gold);
}

.social-top,
.footer-social{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
}

.social-top a,
.footer-social a{
  width:38px;
  height:38px;
  border:1px solid rgba(224,183,96,.55);
  color:var(--gold-light);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  transition:.25s ease;
}

.social-top a:hover,
.footer-social a:hover{
  background:var(--gold);
  color:#111;
  transform:translateY(-2px);
}

.hero{
  background:
    radial-gradient(circle at 85% 20%, rgba(200,155,69,.22), transparent 34%),
    linear-gradient(rgba(6,16,24,.90),rgba(6,16,24,.90));
  color:var(--white);
  padding:110px 8% 105px;
}

.hero-content{
  max-width:850px;
}

.hero h2{
  color:var(--white);
  font-family:Georgia, serif;
  font-size:52px;
  max-width:820px;
  line-height:1.15;
  margin-bottom:22px;
}

.hero h2 span{
  color:var(--gold-light);
}

.hero p{
  color:rgba(255,255,255,.9);
  max-width:690px;
  margin:0 0 24px;
  font-size:19px;
}

.btn{
  display:inline-block;
  background:var(--gold);
  color:#111;
  text-decoration:none;
  padding:14px 26px;
  border-radius:999px;
  font-weight:bold;
  margin:8px 10px 0 0;
  border:2px solid var(--gold);
  transition:.25s ease;
}

.btn:hover{
  transform:translateY(-2px);
  box-shadow:0 12px 22px rgba(0,0,0,.14);
}

.btn-outline{
  background:transparent;
  color:var(--white);
  border-color:var(--gold);
}

.btn-outline:hover{
  background:var(--gold);
  color:#111;
}

.section-inner{
  max-width:1160px;
  margin:0 auto;
}

.intro,
.services,
.why,
.contact,
.page-section{
  padding:75px 8%;
}

.intro{
  background:var(--white);
}

.intro-grid,
.contact-grid,
.page-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:35px;
}

.page-grid{
  grid-template-columns:repeat(3, minmax(0,1fr));
}

h1,
h3{
  font-family:Georgia, serif;
  color:var(--navy);
}

h1{
  font-size:44px;
  margin-bottom:30px;
}

h3{
  font-size:32px;
  margin-bottom:18px;
}

h3:after,
.page-section h1:after{
  content:"";
  display:block;
  width:75px;
  height:2px;
  background:var(--gold);
  margin-top:12px;
}

.services{
  background:var(--cream);
}

.grid,
.service-list{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:24px;
  margin-top:35px;
}

.service-list{
  margin-top:0;
}

.card{
  background:var(--white);
  padding:30px;
  border-top:4px solid var(--gold);
  box-shadow:var(--shadow);
  border-radius:16px;
}

.card h3,
.card h4{
  color:var(--navy);
  margin:10px 0;
}

.card h4{
  font-size:18px;
}

.icon{
  width:48px;
  height:48px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(200,155,69,.14);
  color:var(--gold);
  font-size:21px;
  margin-bottom:14px;
}

.why{
  background:var(--navy);
  color:var(--white);
}

.why h3{
  color:var(--white);
}

.why-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:20px;
  margin-top:30px;
}

.why-box{
  border:1px solid rgba(200,155,69,.45);
  padding:26px 22px;
  text-align:center;
  border-radius:16px;
  background:rgba(255,255,255,.03);
}

.why-box i{
  color:var(--gold-light);
  font-size:22px;
  margin-bottom:12px;
}

.why-box strong{
  color:var(--gold-light);
  display:block;
  margin-bottom:8px;
}

.contact{
  background:var(--white);
}

.contact-box{
  background:linear-gradient(135deg,var(--navy),var(--navy-soft));
  color:var(--white);
  padding:34px;
  border-radius:18px;
  box-shadow:var(--shadow);
}

.contact-box p{
  margin:14px 0;
}

.contact-box a{
  color:var(--gold-light);
  text-decoration:none;
}

.contact-box a:hover{
  text-decoration:underline;
}

.page-section{
  min-height:calc(100vh - 210px);
}

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

.footer-social{
  margin-bottom:15px;
}

@media(max-width:980px){
  .site-header{
    flex-direction:column;
    align-items:flex-start;
  }

  .header-right{
    width:100%;
    justify-content:space-between;
    align-items:flex-start;
  }

  .main-nav{
    justify-content:flex-start;
  }

  .hero h2{
    font-size:42px;
  }

  .grid,
  .service-list,
  .page-grid,
  .why-grid{
    grid-template-columns:repeat(2, minmax(0,1fr));
  }
}

@media(max-width:680px){
  .site-header{
    padding:20px 6%;
  }

  .header-right,
  .intro-grid,
  .contact-grid,
  .page-grid{
    display:block;
  }

  .social-top{
    margin-top:14px;
  }

  .hero,
  .intro,
  .services,
  .why,
  .contact,
  .page-section{
    padding:58px 6%;
  }

  .hero h2{
    font-size:35px;
  }

  .hero p{
    font-size:17px;
  }

  .grid,
  .service-list,
  .why-grid{
    grid-template-columns:1fr;
  }

  .card,
  .contact-box{
    margin-bottom:22px;
  }

  .btn{
    width:100%;
    text-align:center;
    margin-right:0;
  }
}
