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

:root{
  --blue:#244764;
  --dark:#17344c;
  --gold:#b58a48;
  --cream:#f7f4f0;
  --white:#ffffff;
  --text:#344552;
  --muted:#77838c;
  --border:#e3ded8;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:"DM Sans",sans-serif;
  color:var(--text);
  background:#fff;
  line-height:1.7;
}

a{
  text-decoration:none;
  color:inherit;
}

.container{
  width:min(1120px,92%);
  margin:auto;
}


/* NAVBAR */

.navbar{
  position:sticky;
  top:0;
  z-index:100;
  background:#fff;
  border-bottom:1px solid var(--border);
}

.nav-inner{
  min-height:78px;
  display:flex;
  align-items:center;
  gap:28px;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  margin-right:auto;
}

.brand img{
  width:48px;
  height:48px;
  object-fit:cover;
  border-radius:50%;
}

.brand div{
  display:flex;
  flex-direction:column;
}

.brand small{
  color:var(--blue);
  font-family:Cinzel,serif;
  font-size:8px;
  letter-spacing:3px;
}

.brand strong{
  color:var(--blue);
  font-family:"Great Vibes",cursive;
  font-size:25px;
  line-height:1;
}

nav{
  display:flex;
  gap:24px;
  font-size:12px;
  font-weight:600;
}

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

.nav-actions{
  display:flex;
  gap:8px;
}

.pay-btn,
.chat-btn{
  padding:10px 15px;
  font-size:11px;
  font-weight:700;
}

.pay-btn{
  border:1px solid var(--gold);
  color:var(--blue);
}

.pay-btn:hover{
  background:var(--gold);
  color:#fff;
}

.chat-btn{
  background:var(--blue);
  color:#fff;
}

.chat-btn:hover{
  background:var(--gold);
}

.menu-btn{
  display:none;
  background:none;
  border:0;
  color:var(--blue);
  font-size:24px;
}


/* HERO */

.hero{
  background:var(--cream);
  padding:90px 0;
}

.hero-grid{
  display:grid;
  grid-template-columns:1fr .8fr;
  align-items:center;
  gap:70px;
}

.small-title{
  color:var(--gold);
  font-family:Cinzel,serif;
  font-size:10px;
  font-weight:700;
  letter-spacing:2px;
}

.hero h1{
  font-family:Cinzel,serif;
  color:var(--blue);
  font-size:clamp(42px,5vw,67px);
  line-height:1.15;
  margin:15px 0 20px;
}

.hero h1 span{
  display:block;
  color:var(--gold);
  font-family:"Great Vibes",cursive;
  font-size:1.12em;
  font-weight:400;
}

.hero-text{
  color:var(--muted);
  font-size:15px;
  max-width:590px;
}

.buttons{
  display:flex;
  gap:12px;
  margin-top:28px;
  flex-wrap:wrap;
}

.primary-btn,
.secondary-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:13px 21px;
  font-size:12px;
  font-weight:700;
}

.primary-btn{
  background:var(--blue);
  color:#fff;
}

.primary-btn:hover{
  background:var(--gold);
}

.secondary-btn{
  border:1px solid var(--blue);
  color:var(--blue);
}

.secondary-btn:hover{
  background:var(--blue);
  color:#fff;
}

.quick-info{
  display:flex;
  gap:22px;
  margin-top:32px;
  padding-top:18px;
  border-top:1px solid var(--border);
  flex-wrap:wrap;
}

.quick-info span{
  font-size:11px;
  font-weight:600;
  color:var(--blue);
}


/* AUTOMATIC IMAGE SLIDER */

.slider{
  width:100%;
  max-width:390px;
  height:470px;
  overflow:hidden;
  position:relative;
  background:#e9e4df;
  margin:auto;
  border-radius: 10px;
}

.slides{
  display:flex;
  width:300%;
  height:100%;
  animation:autoSlide 12s infinite;
  
}

.slide{
  width:33.3333%;
  height:100%;
  position:relative;
  flex-shrink:0;
  
}

.slide img{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  
}

.photo-fallback{
  position:absolute;
  inset:0;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  border:1px solid var(--border);
  background:#eeeae6;
  color:var(--blue);
}

.photo-fallback span{
  font-family:Cinzel,serif;
  font-size:14px;
  letter-spacing:2px;
}

.photo-fallback small{
  color:var(--muted);
  margin-top:5px;
}

.slider-dots{
  position:absolute;
  bottom:18px;
  left:0;
  right:0;
  display:flex;
  justify-content:center;
  gap:7px;
}

.slider-dots i{
  width:7px;
  height:7px;
  border-radius:50%;
  background:#fff;
  opacity:.8;
}

@keyframes autoSlide{
  0%,28%{
    transform:translateX(0);
  }
  33%,61%{
    transform:translateX(-33.3333%);
  }
  66%,94%{
    transform:translateX(-66.6666%);
  }
  100%{
    transform:translateX(0);
  }
}


/* INTRO */

.intro{
  padding:90px 0;
  background:#fff;
}

.intro-inner{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:90px;
  align-items:end;
}

h2{
  font-family:Cinzel,serif;
  color:var(--blue);
  font-size:clamp(31px,4vw,46px);
  line-height:1.2;
  margin-top:12px;
}

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

.intro-inner>p{
  color:var(--muted);
  font-size:14px;
}


/* SERVICES */

.services{
  background:var(--cream);
  padding:90px 0;
}

.heading{
  text-align:center;
  margin-bottom:42px;
}

.heading>p:last-child{
  color:var(--muted);
  margin-top:7px;
  font-size:14px;
}

.service-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.service{
  background:#fff;
  border:1px solid var(--border);
  padding:32px;
  min-height:290px;
  transition:.2s;
}

.service:hover{
  transform:translateY(-4px);
}

.number{
  display:block;
  color:var(--gold);
  font-family:Cinzel,serif;
  font-size:11px;
  margin-bottom:32px;
}

.service h3{
  font-family:Cinzel,serif;
  color:var(--blue);
  font-size:20px;
  margin-bottom:12px;
}

.service p{
  color:var(--muted);
  font-size:13px;
  margin-bottom:24px;
}

.service a{
  color:var(--blue);
  font-size:12px;
  font-weight:700;
}

.service a:hover{
  color:var(--gold);
}


/* ABOUT */

.about{
  padding:100px 0;
  background:#fff;
}

.about-grid{
  display:grid;
  grid-template-columns:.8fr 1.2fr;
  gap:80px;
  align-items:center;
}
.about-image {
  height: 460px;
  background: #f7f4f0;
  padding: 22px;
}

.about-placeholder {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #eeeae6;
}

.about-placeholder img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.about-placeholder strong{
  font-family:Cinzel,serif;
  font-size:13px;
  letter-spacing:1px;
}

.about-placeholder span{
  color:var(--muted);
  font-size:11px;
  margin-top:5px;
}

.about-text>p:not(.small-title){
  color:var(--muted);
  font-size:14px;
  margin-top:16px;
}

.signature{
  color:var(--blue);
  font-family:"Great Vibes",cursive;
  font-size:38px;
  margin-top:20px;
}

.instagram{
  display:inline-block;
  color:var(--gold);
  font-size:12px;
  font-weight:700;
  margin-top:5px;
}


/* CHATBOT */

.chatbot{
  background:var(--blue);
  padding:70px 0;
}

.chatbot-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:40px;
}

.chatbot h2{
  color:#fff;
}

.chatbot p:not(.small-title){
  color:#c5d0d8;
  max-width:680px;
  font-size:14px;
  margin-top:8px;
}


/* CONTACT */

.contact{
  background:var(--cream);
  padding:80px 0;
}

.contact-box{
  background:#fff;
  border:1px solid var(--border);
  padding:40px 45px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:40px;
}

.contact-box>div:first-child>p:last-child{
  color:var(--muted);
  font-size:14px;
  margin-top:10px;
  max-width:650px;
}

.contact-action{
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  gap:12px;
  min-width:245px;
}

.contact-action span{
  color:var(--muted);
  font-size:15px;
}


/* FOOTER */

footer{
  background:var(--dark);
  color:#bdc8cf;
  padding:38px 0 20px;
}

.footer-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  flex-wrap:wrap;
}

.footer-brand{
  display:flex;
  align-items:center;
  gap:10px;
}

.footer-brand img{
  width:44px;
  height:44px;
  border-radius:50%;
}

.footer-brand div{
  display:flex;
  flex-direction:column;
}

.footer-brand strong{
  color:#fff;
  font-family:Cinzel,serif;
}

.footer-brand span{
  font-size:9px;
}

.footer-inner>a{
  font-size:11px;
}

.footer-inner>a:hover{
  color:var(--gold);
}

.footer-inner>p{
  width:100%;
  text-align:center;
  border-top:1px solid rgba(255,255,255,.1);
  padding-top:17px;
  font-size:9px;
}


/* RESPONSIVE */

@media(max-width:900px){

  nav{
    display:none;
  }

  .nav-actions .chat-btn{
    display:none;
  }

  .nav-actions{
    margin-left:auto;
  }

  .menu-btn{
    display:block;
  }

  .hero-grid,
  .intro-inner,
  .about-grid{
    grid-template-columns:1fr;
    gap:45px;
  }

  .hero{
    padding:65px 0;
  }

  .slider{
    max-width:430px;
    height:470px;
  }

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

  .chatbot-inner,
  .contact-box{
    flex-direction:column;
    align-items:flex-start;
  }

  .contact-action{
    align-items:flex-start;
  }
}
@media (max-width: 900px) {
  nav {
    display: none;
    position: absolute;
    top: 78px;
    left: 0;
    width: 100%;
    background: #fff;
    border-top: 1px solid var(--border);
    padding: 20px;
    flex-direction: column;
    gap: 18px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  }

  nav.mobile-open {
    display: flex;
  }

  .menu-btn {
    display: block;
    cursor: pointer;
  }
}
@media(max-width:560px){

  .brand img{
    width:42px;
    height:42px;
  }

  .brand strong{
    font-size:22px;
  }

  .nav-inner{
    min-height:70px;
  }

  .pay-btn{
    padding:9px 10px;
    font-size:9px;
  }

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

  .buttons .primary-btn,
  .buttons .secondary-btn{
    width:100%;
  }

  .slider{
    height:400px;
  }

  .section,
  .intro,
  .services,
  .about,
  .contact{
    padding:70px 0;
  }

  .contact-box{
    padding:30px;
  }
}
