/* Brand typography: Montserrat Family */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;700;800;900&display=swap');

:root{
  /* Brand colors from guidelines */
  --black: #231F20;
  --pink:  #D1316A;
  --purple:#912480;

  /* Complementary colors */
  --ice:   #D1DEEC;
  --gray:  #CFD1D2;

  --container: 1200px;
}

*{ box-sizing: border-box; }
html, body{
  margin:0;
  padding:0;
  font-family: "Montserrat", sans-serif;
  color: var(--black);
  background: #fff;
}
html {
  scroll-behavior: smooth;
}
a{ color:inherit; text-decoration:none; }
.container{ width: min(var(--container), calc(100% - 48px)); margin: 0 auto; }

/* Header */
.topbar{
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid rgba(35,31,32,0.10);
}
.topbar-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 14px 0;
  gap: 16px;
}
.brand{ display:flex; align-items:center; }
.brand-logo-img{
  height: 46px;
  width: auto;
  display:block;
  transition: transform .25s ease;
}
.brand-logo-img:hover{
  transform: translateY(-2px);
}

/* Nav (desktop) */
.nav{
  display:flex;
  gap: 18px;
  font-size: 14px;
  font-weight: 500;
}
.nav a{
  padding: 8px 10px;
  border-radius: 10px;
  position: relative;
  transition: color .25s ease, background .25s ease;
}
.nav a:hover{
  background: rgba(209,49,106,0.08);
}

/* Nav hover underline (desktop) */
.nav a::after{
  content:"";
  position:absolute;
  left:10px; right:10px; bottom:6px;
  height:2px;
  background: linear-gradient(90deg, var(--purple), var(--pink));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
  border-radius: 999px;
  opacity: .9;
}
.nav a:hover::after{
  transform: scaleX(1);
}

/* Hero */
.hero{
  position: relative;
  min-height: 420px;
  display:flex;
  align-items:center;
  overflow:hidden;
  border-bottom: 1px solid rgba(35,31,32,0.10);
}
.hero-bg{
  position:absolute; inset:0;
  background-image: url("assets/BACKGROUND-01.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.02);
}
.hero-bg::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(90deg, rgba(255,255,255,0.82), rgba(255,255,255,0.38));
}
.hero-inner{ position:relative; padding: 90px 0; }
.hero-title{ margin:0; }
.hero-small{
  display:block;
  font-size: 54px;
  font-weight: 400;
  letter-spacing: 0.2px;
}
.hero-big{
  display:block;
  font-size: 88px;
  font-weight: 800;
  letter-spacing: 0.2px;
  margin-top: 10px;
}

/* Sections */
.section{ padding: 70px 0; }
.section-title{
  font-size: 52px;
  margin: 0 0 32px 0;
  font-weight: 700;
}

/* Services */
.services-grid{
  display:grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
  align-items: start;
}
.service-card{
  padding-top: 10px;
  transition: transform .25s ease;
}
.service-icon-img{
  width: 96px;
  height: 96px;
  object-fit: contain;
  display:block;
  margin-bottom: 18px;
  transition: transform .25s ease, filter .25s ease;
}
.service-title{
  margin: 0 0 10px 0;
  font-size: 18px;
  font-weight: 700;
}
.service-text{
  margin:0;
  color: rgba(35,31,32,0.88);
  line-height: 1.7;
  font-size: 14px;
}
.service-card:hover{
  transform: translateY(-6px);
}
.service-card:hover .service-icon-img{
  transform: translateY(-4px) scale(1.02);
  filter: drop-shadow(0 10px 18px rgba(35,31,32,0.12));
}

/* About */
.about-wrap{
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 30px;
  align-items:start;
}
.about-text{
  max-width: 760px;
  color: rgba(35,31,32,0.90);
  line-height: 1.85;
  font-size: 16px;
  font-weight: 400;
}
.about-img{
  width: 100%;
  height: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(35,31,32,0.10);
}

/* Footer strip */
.footer-strip{
  border-top: 1px solid rgba(35,31,32,0.10);
  border-bottom: 1px solid rgba(35,31,32,0.10);
  background: #fff;
  padding: 34px 0;
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 36px;
  align-items:start;
}
.footer-brand{
  font-size: 46px;
  font-weight: 900;
  letter-spacing: 0.5px;
}
.footer-tag{
  color: rgba(35,31,32,0.65);
  margin-top: 6px;
}
.social{ display:flex; gap: 10px; margin-top: 16px; }
.social a{
  display:inline-flex;
  width: 44px;
  height: 44px;
  align-items:center;
  justify-content:center;
  border-radius: 10px;
  background: var(--black);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}
.footer-block h4{
  margin: 10px 0 12px 0;
  font-size: 18px;
  font-weight: 700;
}
.footer-block p{
  margin:0;
  color: rgba(35,31,32,0.90);
  line-height: 1.7;
}

/* Contact */
.contact-grid{
  display:grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 44px;
  align-items:start;
}
.contact-lead{
  margin-top: 10px;
  max-width: 520px;
  color: rgba(35,31,32,0.65);
  font-size: 16px;
  line-height: 1.7;
}
.field{ display:flex; flex-direction:column; gap: 10px; margin-bottom: 18px; }
label{ font-size: 13px; color: rgba(35,31,32,0.90); font-weight: 500; }
label span{ color: rgba(35,31,32,0.55); font-weight: 400; margin-left: 6px; }

input, textarea{
  width:100%;
  padding: 14px 14px;
  border: 1px solid rgba(35,31,32,0.10);
  background: #f7f7f7;
  outline: none;
  border-radius: 6px;
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
}
input:focus, textarea:focus{
  border-color: rgba(209,49,106,0.55);
  box-shadow: 0 0 0 3px rgba(209,49,106,0.18);
  background: #fff;
}

.row.two{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 14px 34px;
  background: var(--black);
  color: #fff;
  border: 0;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  cursor:pointer;
  transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
}
.btn:hover{
  opacity: 0.92;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(35,31,32,0.18);
}
.btn:active{
  transform: translateY(0);
  box-shadow: none;
}

/* Responsive */
@media (max-width: 1100px){
  .services-grid{ grid-template-columns: repeat(3, 1fr); }
  .hero-small{ font-size: 44px; }
  .hero-big{ font-size: 70px; }
  .about-wrap{ grid-template-columns: 1fr; }
}
@media (max-width: 760px){
  .services-grid{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr; }
  .contact-grid{ grid-template-columns: 1fr; }
  .section-title{ font-size: 40px; }
  .hero-small{ font-size: 34px; }
  .hero-big{ font-size: 54px; }
}

/* =========================
   Animations (Vertex 365)
   ========================= */
@media (prefers-reduced-motion: reduce){
  *{ animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}

/* Keyframes */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes floatSoft {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-4px); }
}

/* Hero entrance */
.hero-title .hero-small{
  opacity: 0;
  animation: fadeUp .8s ease forwards;
  animation-delay: .15s;
}
.hero-title .hero-big{
  opacity: 0;
  animation: fadeUp .9s ease forwards;
  animation-delay: .30s;
}

/* Services cards: load in with stagger */
.service-card{
  opacity: 0;
  transform: translateY(14px);
  animation: fadeUp .7s ease forwards;
}
.service-card:nth-child(1){ animation-delay: .10s; }
.service-card:nth-child(2){ animation-delay: .20s; }
.service-card:nth-child(3){ animation-delay: .30s; }
.service-card:nth-child(4){ animation-delay: .40s; }
.service-card:nth-child(5){ animation-delay: .50s; }

/* Scroll-reveal helpers */
.reveal{
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.in-view{
  opacity: 1;
  transform: translateY(0);
}

/* About image subtle float */
.about-img{
  animation: floatSoft 6s ease-in-out infinite;
}

/* =========================
   Burger Menu (Mobile)
   ========================= */
.burger{
  display:none;
  width:32px;
  height:24px;
  position:relative;
  background:none;
  border:none;
  cursor:pointer;
}

.burger span{
  position:absolute;
  left:0;
  width:100%;
  height:3px;
  background: var(--black);
  border-radius:3px;
  transition: all .3s ease;
}

.burger span:nth-child(1){ top:0; }
.burger span:nth-child(2){ top:10px; }
.burger span:nth-child(3){ bottom:0; }

/* Active (X) */
.burger.active span:nth-child(1){
  transform: rotate(45deg);
  top:10px;
}
.burger.active span:nth-child(2){
  opacity:0;
}
.burger.active span:nth-child(3){
  transform: rotate(-45deg);
  bottom:11px;
}

@media (max-width: 760px){
  .burger{ display:block; }

  /* Full screen mobile menu */
  .nav{
    position:fixed;
    top:74px;
    right:0;
    width:100%;
    height: calc(100vh - 74px);
    background:#fff;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:28px;
    transform: translateX(100%);
    transition: transform .35s ease;
    z-index: 90;
  }

  .nav.open{
    transform: translateX(0);
  }

  .nav a{
    font-size:22px;
    font-weight:700;
  }

  .nav a::after{ display:none; }
}

/* Prevent background scroll when menu open */
body.menu-open{
  overflow: hidden;
}
