:root{
  --bg:#ffffff;
  --fg:#0b1220;
  --muted:#6b7280;
  --accent:#0ea5a4;
  --gap:24px;
  font-family:Poppins,system-ui,-apple-system,'Segoe UI',Roboto,Arial;
}

html,body{
  height:100%;
  margin:0;
  background:var(--bg);
  color:var(--fg);
  -webkit-font-smoothing:antialiased;
}


/* ── Header ─────────────────────────────────────────── */

#site-header-placeholder{
  display:block;
  width:100%;
}

.header-adam{
  position:relative;
  width:100%;
  box-sizing:border-box;
  margin:0;
  padding:36px clamp(16px,4vw,80px);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  border-bottom:2px solid #f0f2f4;
  min-height:100px;
  background:#fff;
  z-index:100;
}

.header-adam .logo{
  display:flex;
  align-items:center;
  gap:12px;
  flex-shrink:0;
}

.logo-text{
  font-weight:800;
  font-size:36px;
  letter-spacing:0.6px;
  text-transform:lowercase;
  color:var(--fg);
}


/* ── Desktop Navigation ─────────────────────────────── */

.header-adam .desktop-nav{
  display:flex;
  gap:8px;
  align-items:center;
}

.header-adam .desktop-nav a{
  color:var(--fg);
  text-decoration:none;
  padding:12px 20px;
  border-radius:8px;
  font-weight:600;
  font-size:18px;
}

.header-adam .desktop-nav a.active{
  color:var(--accent);
  background:rgba(14,165,164,0.08);
}


/* ── Desktop Header Actions ─────────────────────────── */

.header-adam .desktop-actions{
  display:flex;
  gap:14px;
  align-items:center;
  flex-shrink:0;
}

.header-adam .btn{
  padding:14px 24px;
  border-radius:10px;
  border:1.5px solid rgba(11,18,32,0.12);
  background:transparent;
  color:var(--fg);
  font-weight:700;
  font-size:16px;
  text-decoration:none;
}

.header-adam .btn.primary{
  background:var(--accent);
  color:white;
  border:none;
}


/* ── Mobile Burger ──────────────────────────────────── */

.mobile-menu-button{
  display:none;
  width:46px;
  height:46px;
  padding:11px;
  border:1px solid #e8edef;
  border-radius:10px;
  background:#fff;
  cursor:pointer;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:5px;
  flex-shrink:0;
}

.burger-line{
  display:block;
  width:22px;
  height:2px;
  border-radius:2px;
  background:var(--fg);
  transition:
    transform .25s ease,
    opacity .2s ease;
}

.mobile-menu-button.open .burger-line:nth-child(1){
  transform:translateY(7px) rotate(45deg);
}

.mobile-menu-button.open .burger-line:nth-child(2){
  opacity:0;
}

.mobile-menu-button.open .burger-line:nth-child(3){
  transform:translateY(-7px) rotate(-45deg);
}


/* ── Mobile Menu - ALWAYS hidden on desktop ────────── */

.header-adam .mobile-menu{
  display:none;
}


/* ── Mobile Header ──────────────────────────────────── */

@media (max-width:720px){

  .header-adam{
    padding:14px 16px;
    min-height:72px;
    gap:12px;
  }

  .logo-text{
    font-size:clamp(22px,7vw,28px);
    letter-spacing:0.2px;
  }


  /* Hide desktop navigation */

  .header-adam .desktop-nav{
    display:none !important;
  }

  .header-adam .desktop-actions{
    display:none !important;
  }


  /* Show burger */

  .mobile-menu-button{
    display:flex;
  }


  /* Mobile dropdown */

  .header-adam .mobile-menu{
    position:absolute;
    top:100%;
    left:0;
    right:0;

    display:block;

    padding:12px 16px 20px;

    background:#fff;

    border-bottom:1px solid #eef2f3;

    box-shadow:0 14px 30px rgba(11,18,32,0.08);

    opacity:0;
    visibility:hidden;
    pointer-events:none;

    transform:translateY(-8px);

    transition:
      opacity .2s ease,
      transform .2s ease,
      visibility .2s ease;
  }

  .header-adam .mobile-menu.open{
    opacity:1;
    visibility:visible;
    pointer-events:auto;
    transform:translateY(0);
  }


  /* Mobile navigation */

  .header-adam .mobile-nav{
    display:flex;
    flex-direction:column;
    gap:4px;
  }

  .header-adam .mobile-nav-link{
    display:block;
    padding:14px;
    border-radius:8px;

    color:var(--fg);
    text-decoration:none;

    font-size:16px;
    font-weight:600;

    transition:
      background .2s ease,
      color .2s ease;
  }

  .header-adam .mobile-nav-link:hover{
    color:var(--accent);
    background:rgba(14,165,164,0.05);
  }

  .header-adam .mobile-nav-link.active{
    color:var(--accent);
    background:rgba(14,165,164,0.08);
  }


  /* Mobile Email / Book Now */

  .header-adam .mobile-menu-actions{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:10px;

    margin-top:12px;
    padding-top:16px;

    border-top:1px solid #eef2f3;
  }

  .header-adam .mobile-menu-actions .btn{
    box-sizing:border-box;
    width:100%;
    text-align:center;
    padding:13px 12px;
  }

  .header-adam .mobile-book-button{
    display:flex;
    align-items:center;
    justify-content:center;
  }

}


/* ── Tiny Phones ────────────────────────────────────── */

@media (max-width:380px){

  .header-adam{
    padding:12px 14px;
  }

  .logo-text{
    font-size:21px;
  }

  .mobile-menu-button{
    width:42px;
    height:42px;
  }

  .header-adam .mobile-menu{
    padding-left:14px;
    padding-right:14px;
  }

  .header-adam .mobile-menu-actions{
    grid-template-columns:1fr;
  }

}


/* ── Base ───────────────────────────────────────────── */

.site-main{
  width:100%;
  box-sizing:border-box;
  padding:0 clamp(16px,4vw,80px) 60px;
}

@media (max-width:900px){
  .site-main{
    padding-left:clamp(12px,3vw,32px);
    padding-right:clamp(12px,3vw,32px);
  }
}

@media (max-width:480px){
  .site-main{
    padding-left:14px;
    padding-right:14px;
  }
}

.page-hero{
  padding:48px 0 32px;
  margin-bottom:0;
  text-align:center;
}

.hero-content{
  width:100%;
  max-width:none;
  text-align:center;
  margin-inline:auto;
}

.hero-title{
  font-size:clamp(36px,5vw,64px);
  line-height:1.1;
  margin:0 0 16px;
  font-weight:800;
  letter-spacing:-1px;
  text-align:center;
}

.hero-sub{
  color:var(--muted);
  margin:0 0 28px;
  font-size:clamp(15px,1.5vw,18px);
  line-height:1.6;
  text-align:center;
}

.cta-row{
  display:flex;
  gap:14px;
  justify-content:center;
}

.btn{
  padding:14px 24px;
  border-radius:8px;
  border:1.5px solid rgba(11,18,32,0.12);
  background:transparent;
  color:var(--fg);
  font-weight:700;
  text-decoration:none;
  font-size:15px;
}

.btn.primary{
  background:var(--accent);
  color:white;
  border:none;
}

.card-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:var(--gap);
}

@media (max-width:1000px){
  .card-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media (max-width:680px){

  .page-hero{
    flex-direction:column;
    align-items:flex-start;
    padding:36px 0 32px;
  }

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

}

.portfolio-card{
  border-radius:10px;
  overflow:hidden;
  border:1px solid #eef2f3;
  background:#f8fafb;
}

.portfolio-card img{
  width:100%;
  height:auto;
  display:block;
}

.section-title{
  font-size:clamp(18px,2vw,26px);
  font-weight:700;
  margin:0 0 18px;
}

.p-muted{
  color:var(--muted);
  line-height:1.6;
}

.form-input,
textarea{
  width:100%;
  padding:12px;
  border:1px solid #e6eef0;
  border-radius:8px;
}

.contact-grid{
  display:grid;
  grid-template-columns:1fr 400px;
  gap:32px;
}

@media (max-width:900px){

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

}


/* ── Carousel ───────────────────────────────────────── */

.carousel-intro{
  margin:0 0 24px;
}

.carousel-intro h2{
  font-size:clamp(22px,3vw,38px);
  font-weight:800;
  margin:0 0 10px;
  letter-spacing:-0.5px;
}

.carousel-intro p{
  color:var(--muted);
  font-size:clamp(14px,1.4vw,17px);
  max-width:680px;
  line-height:1.7;
  margin:0;
}

.carousel{
  position:relative;
  overflow:hidden;
  border-radius:12px;
  margin-bottom:48px;
}

.carousel-track{
  display:flex;
  transition:transform 420ms cubic-bezier(.2,.9,.2,1);
}

.carousel-slide{
  flex:0 0 calc(100% / 3);
  box-sizing:border-box;
  padding:0 6px;
}

.carousel-slide img{
  width:100%;
  height:clamp(260px,30vw,480px);
  object-fit:cover;
  display:block;
  border-radius:8px;
}

.carousel-controls{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 16px;
  pointer-events:none;
}

.carousel-controls button{
  pointer-events:auto;
  background:rgba(255,255,255,0.92);
  border:0;
  padding:10px 14px;
  border-radius:8px;
  cursor:pointer;
  font-size:18px;
  font-weight:700;
}

.carousel-dots{
  display:flex;
  gap:8px;
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  bottom:16px;
}

.carousel-dots button{
  width:10px;
  height:10px;
  border-radius:50%;
  background:rgba(0,0,0,0.18);
  border:none;
  cursor:pointer;
}

.carousel-dots button.active{
  background:var(--accent);
}

@media (min-width:1200px){

  .carousel-slide{
    flex:0 0 calc(100% / 4);
  }

}

@media (max-width:680px){

  .carousel-slide{
    flex:0 0 100%;
  }

  .carousel-slide img{
    height:240px;
  }

}


/* ── Vinchizel tiled gallery ────────────────────────── */

.vinchizel-gallery{
  display:grid;
  grid-template-columns:1fr 1.6fr 1fr;
  gap:12px;
  margin-top:18px;
}

.vinchizel-gallery .tile{
  overflow:hidden;
  border-radius:6px;
}

.vinchizel-gallery .tile img{
  width:100%;
  height:280px;
  object-fit:cover;
  display:block;
}

.vinchizel-gallery .tile--center img{
  height:360px;
}

.vinchizel-row-2{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
  margin-top:12px;
}

.vinchizel-row-2 .tile{
  overflow:hidden;
  border-radius:6px;
}

.vinchizel-row-2 .tile img{
  width:100%;
  height:280px;
  object-fit:cover;
  display:block;
}

@media (max-width:900px){

  .vinchizel-gallery{
    grid-template-columns:1fr;
  }

  .vinchizel-row-2{
    grid-template-columns:1fr;
  }

  .vinchizel-gallery .tile img{
    height:220px;
  }

  .vinchizel-gallery .tile--center img{
    height:260px;
  }

  .vinchizel-row-2 .tile img{
    height:220px;
  }

}


/* ── Services Page ──────────────────────────────────── */

.services-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
  margin-top:48px;
}

.service-card{
  border-radius:14px;
  overflow:hidden;
  border:1px solid #eef2f3;
  background:#fff;
  display:flex;
  flex-direction:column;
  transition:
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.service-card:hover{
  box-shadow:0 12px 40px rgba(11,18,32,0.10);
  transform:translateY(-4px);
}

.service-card__img{
  width:100%;
  height:clamp(220px,28vw,420px);
  object-fit:cover;
  display:block;
}

.service-card__body{
  padding:28px 28px 32px;
  flex:1;
  display:flex;
  flex-direction:column;
}

.service-card__title{
  font-size:clamp(18px,1.8vw,24px);
  font-weight:700;
  margin:0 0 12px;
  letter-spacing:-0.3px;
}

.service-card__desc{
  color:var(--muted);
  line-height:1.65;
  margin:0 0 24px;
  flex:1;
}

.service-card__cta{
  display:inline-block;
  padding:10px 20px;
  border-radius:8px;
  border:1.5px solid rgba(11,18,32,0.12);
  color:var(--fg);
  font-weight:700;
  font-size:14px;
  text-decoration:none;
  align-self:flex-start;
  transition:
    background 0.2s,
    color 0.2s;
}

.service-card__cta:hover{
  background:var(--accent);
  color:#fff;
  border-color:var(--accent);
}

@media (max-width:1100px){

  .services-grid{
    grid-template-columns:repeat(2,1fr);
    gap:20px;
  }

}

@media (max-width:600px){

  .services-grid{
    grid-template-columns:1fr;
    gap:16px;
  }

  .service-card__img{
    height:260px;
  }

  .service-card__body{
    padding:20px 20px 24px;
  }

}