:root{
  --bg: #0b1220;
  --bg-2:#0f1a2e;
  --ink:#0b1220;
  --paper:#f6f7fb;
  --muted:#6b7280;
  --line: rgba(15, 23, 42, .12);

  --brand:#ffd84d;
  --brand-2:#ffcc1a;
  --accent:#1a2b4a;

  --radius: 18px;
  --shadow: 0 18px 50px rgba(11, 18, 32, .14);
  --shadow2: 0 12px 28px rgba(11, 18, 32, .12);
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--paper);
  color: var(--ink);
}
img{ max-width:100%; display:block; }

.container{
  width:min(1120px, calc(100% - 40px));
  margin-inline:auto;
}

/* Topbar */
.topbar{
  background: linear-gradient(90deg, var(--bg), var(--bg-2));
  color: rgba(255,255,255,.9);
  font-size: 14px;
}
.topbar__inner{
  display:flex;
  gap:14px;
  align-items:center;
  padding:10px 0;
  justify-content: space-between;
}
.topbar__badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.10);
  white-space:nowrap;
}
.topbar__text{ opacity:.9; }
.topbar__link{
  color: var(--brand);
  text-decoration:none;
  font-weight:600;
  white-space:nowrap;
}
.topbar__link:hover{ text-decoration:underline; }

/* Header */
.header{
  position: sticky;
  top:0;
  z-index: 30;
  background: rgba(246,247,251,.78);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header__inner{
  display:flex;
  align-items:center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 18px;
}

.brand{
  display:flex;
  align-items:center;
  gap: 12px;
  text-decoration:none;
  color: var(--ink);
}
.brand__mark{
  width: 48px;
  height: 48px;
  border-radius: 12px;
  object-fit: contain;
  background: #fff;
  box-shadow: var(--shadow2);
}
.brand__text{ display:flex; flex-direction:column; line-height:1.05; }
.brand__name{ font-weight: 800; letter-spacing: .2px; }
.brand__sub{ font-size: 12px; color: var(--muted); font-weight: 600; }

.nav{
  display:flex;
  gap: 20px;
  align-items:center;
}
.nav__link{
  text-decoration:none;
  color: rgba(11,18,32,.78);
  font-weight: 600;
  font-size: 14px;
}
.nav__link:hover{ color: rgba(11,18,32,1); }

.header__cta{
  display:flex;
  gap: 10px;
  align-items:center;
}

.menuBtn{
  display:none;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.6);
  padding: 10px;
  border-radius: 12px;
  cursor:pointer;
}
.menuBtn span{
  display:block;
  width: 18px;
  height: 2px;
  background: rgba(11,18,32,.85);
  margin: 4px 0;
  border-radius: 10px;
}

/* Mobile menu */
.mobileMenu{
  border-top: 1px solid var(--line);
  background: rgba(246,247,251,.92);
}
.mobileMenu__inner{
  padding: 14px 0 18px;
  display:flex;
  flex-direction:column;
  gap: 12px;
}
.mobileMenu a{
  text-decoration:none;
  color: rgba(11,18,32,.88);
  font-weight: 700;
  padding: 10px 0;
}
.mobileMenu__actions{
  display:flex;
  gap:10px;
  padding-top: 6px;
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration:none;
  font-weight: 800;
  letter-spacing: .1px;
  cursor:pointer;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease, border-color .12s ease;
  user-select:none;
}
.btn:active{ transform: translateY(1px); }

.btn--primary{
  background: linear-gradient(180deg, var(--brand), var(--brand-2));
  color: #0b1220;
  box-shadow: 0 12px 26px rgba(255, 216, 77, .25);
}
.btn--primary:hover{
  box-shadow: 0 18px 34px rgba(255, 216, 77, .32);
}

.btn--ghost{
  background: rgba(11,18,32,.06);
  color: rgba(11,18,32,.92);
  border-color: rgba(11,18,32,.12);
}
.btn--ghost:hover{ background: rgba(11,18,32,.08); }

.btn--full{ width: 100%; }

/* Hero */
.hero{
  position: relative;
  padding: 52px 0 40px;
  overflow:hidden;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,216,77,.18), transparent 45%),
    radial-gradient(circle at 80% 35%, rgba(255,216,77,.18), transparent 45%),
    linear-gradient(to bottom, #ffffff, #f7f8fb);
}

.hero__grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: start;
}

.hero__content{
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 46px 46px;
  position: relative;
  overflow:hidden;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.hero__content::before{
  content:"";
  position:absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,216,77,.10), rgba(255,216,77,0) 55%);
  pointer-events:none;
}

.kicker{
  margin:0 0 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(11,18,32,.62);
}

.hero__title{
  margin:0 0 14px;
  font-family: Fraunces, ui-serif, Georgia, serif;
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1.02;
  letter-spacing: -0.02em;
}
.hero__titleAccent{
  color: var(--accent);
  position: relative;
}
.hero__titleAccent::after{
  content:"";
  position:absolute;
  left: 0;
  bottom: 6px;
  width: 100%;
  height: 10px;
  background: rgba(255,216,77,.50);
  z-index: -1;
  border-radius: 8px;
}

.hero__lead{
  margin: 0 auto 18px;
  color: rgba(11,18,32,.72);
  font-size: 17px;
  line-height: 1.85;
  max-width: 62ch;
}

.hero__actions{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 18px 0 10px;
  justify-content: center;
}

.hero__meta{
  margin: 0;
  color: rgba(11,18,32,.62);
  font-weight: 600;
  font-size: 14px;
}

.hero__quickLinks{
  margin-top: 16px;
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.chip{
  text-decoration:none;
  font-weight: 800;
  font-size: 13px;
  color: rgba(11,18,32,.88);
  background: rgba(11,18,32,.06);
  border: 1px solid rgba(11,18,32,.10);
  padding: 10px 12px;
  border-radius: 999px;
}
.chip:hover{ background: rgba(11,18,32,.08); }

.hero__media{
  position: relative;
}
.hero__mediaHead{
  max-width: 1120px;
  margin: 0 auto 12px;
  text-align: center;
}
.hero__mediaTitle{
  margin: 0 0 6px;
  font-size: 22px;
  letter-spacing: -0.02em;
}
.hero__mediaSub{
  margin: 0;
  color: rgba(11,18,32,.68);
  line-height: 1.6;
  font-size: 14px;
}

.galleryCarousel{
  max-width: 900px;
  margin: 0 auto;
  outline: none;
}

.galleryCarousel:focus-visible .galleryCarousel__viewport{
  box-shadow: 0 0 0 4px rgba(255,216,77,.35), var(--shadow);
}

.galleryCarousel__viewport{
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: #fff;
}

.galleryCarousel__track{
  display: flex;
  height: 100%;
  transition: transform .38s ease;
}

.gallerySlide{
  flex: 0 0 100%;
  height: 100%;
  margin: 0;
  background: #fff;
}

.gallerySlide img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #0b1220;
}

.galleryCarousel__button{
  position: absolute;
  top: 50%;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(11,18,32,.72);
  color: #fff;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background .14s ease, transform .14s ease;
}

.galleryCarousel__button:hover{
  background: rgba(11,18,32,.9);
  transform: translateY(-50%) scale(1.04);
}

.galleryCarousel__button--prev{ left: 16px; }
.galleryCarousel__button--next{ right: 16px; }

.galleryCarousel__dots{
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 14px;
}

.galleryCarousel__dot{
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: rgba(11,18,32,.24);
  cursor: pointer;
  padding: 0;
}

.galleryCarousel__dot.is-active{
  width: 28px;
  background: var(--brand-2);
}

.mediaCard{
  border-radius: var(--radius);
  overflow:hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  width: 100%;
  max-width: 1120px;
  min-height: 420px;
  position: relative;
  background: #fff;
}
.mediaCard img{
  width:100%;
  height:100%;
  object-fit: cover;
  transform: scale(1.02);
}
.mediaCard__overlay{
  position:absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,18,32,0) 62%, rgba(11,18,32,.58));
  display:flex;
  align-items:flex-end;
  padding: 18px;
}
.badge{
  display:inline-flex;
  gap: 10px;
  align-items:center;
  color: rgba(255,255,255,.92);
  font-weight: 700;
  font-size: 13px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(8px);
}
.badge__dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--brand);
  box-shadow: 0 0 0 4px rgba(255,216,77,.22);
}

/* Sections */
.section{ padding: 78px 0; }
.section--alt{
  background: #ffffff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.sectionHead{ margin-bottom: 22px; }
.sectionHead__title{
  margin:0 0 8px;
  font-size: 28px;
  letter-spacing: -0.02em;
}
.sectionHead__sub{
  margin:0;
  color: rgba(11,18,32,.68);
  line-height: 1.7;
}

.sectionCta{
  margin-top: 18px;
  display:flex;
  justify-content:flex-start;
}

/* Services */
.serviceList{
  display: grid;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow2);
  overflow: hidden;
}
.serviceItem{
  padding: 22px 24px;
}
.serviceItem + .serviceItem{
  border-top: 1px solid rgba(11,18,32,.09);
}
.serviceItem__body{
  display: grid;
  grid-template-columns: minmax(220px, .8fr) 1fr;
  gap: 22px;
  align-items: baseline;
}
.serviceItem h3{
  margin:0;
  font-size: 19px;
  letter-spacing: -0.01em;
}
.serviceItem p{
  margin:0;
  color: rgba(11,18,32,.68);
  line-height: 1.65;
}

/* About */
.about{
  display: grid;
  gap: 28px;
  background:
    linear-gradient(135deg, rgba(255,216,77,.20), rgba(255,216,77,0) 34%),
    #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow2);
  padding: 34px;
}
.about__intro h2{ margin:0 0 10px; font-size: 32px; letter-spacing: -0.02em; }
.about__intro p{
  margin:0 0 16px;
  color: rgba(11,18,32,.7);
  line-height: 1.75;
  max-width: 76ch;
}
.bullets{
  margin:0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  color: rgba(11,18,32,.78);
  font-weight: 600;
}
.bullets li{
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(11,18,32,.05);
  border: 1px solid rgba(11,18,32,.09);
}
.about__standards{
  background:
    linear-gradient(135deg, rgba(255,216,77,.12), rgba(255,216,77,0) 42%),
    linear-gradient(180deg, var(--bg), var(--bg-2));
  border-radius: 16px;
  padding: 24px;
  color: rgba(255,255,255,.92);
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 24px;
  align-items: start;
}
.about__eyebrow{
  margin: 0 0 8px;
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.about__standardHead h3{
  margin: 0;
  font-size: 26px;
  line-height: 1.14;
  letter-spacing: -0.02em;
}
.about__standardList{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border-radius: 14px;
  background: rgba(255,255,255,.12);
}
.about__stat{
  padding: 18px;
  background: rgba(255,255,255,.06);
}
.about__stat h4{
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: .01em;
}
.about__stat p{
  margin: 0;
  color: rgba(255,255,255,.68);
  line-height: 1.55;
  font-size: 14px;
}

/* Reviews */
.reviews__summary{
  font-weight:700;
  margin-bottom:18px;
  color:rgba(11,18,32,.75);
}

.reviewActions{
  display:flex;
  gap: 12px;
  margin: 16px 0 18px;
  flex-wrap: wrap;
}
.reviewsGrid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.review{
  background:#fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 10px 20px rgba(11,18,32,.06);
}

.review--link{
  text-decoration: none;
  color: inherit;
  transition: transform .15s ease, box-shadow .15s ease;
}
.review--link:hover{
  transform: translateY(-4px);
  box-shadow: 0 18px 30px rgba(0,0,0,.08);
}

.review__source{
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(11,18,32,.55);
}
.review__source.google{
  color:#4285F4;
}
.review__source.homestars{
  color:#f57c00;
}

.review__stars{
  margin:0 0 10px;
  font-weight: 900;
  letter-spacing: .06em;
}
.review__text{
  margin:0 0 10px;
  color: rgba(11,18,32,.72);
  line-height: 1.75;
}
.review__name{
  margin:0;
  color: rgba(11,18,32,.62);
  font-weight: 800;
}

/* Contact */
.contact{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: start;
}
.contact__left h2{ margin:0 0 10px; font-size: 28px; }
.contact__left p{
  margin:0 0 16px;
  color: rgba(11,18,32,.7);
  line-height: 1.75;
}
.contact__buttons{
  display:flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 14px;
}
.contact__note{
  background: rgba(255,216,77,.18);
  border: 1px solid rgba(255,216,77,.28);
  padding: 14px;
  border-radius: 18px;
  color: rgba(11,18,32,.78);
  line-height: 1.65;
}

.form{
  background:#fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow2);
}
.form label{
  display:block;
  font-weight: 800;
  font-size: 13px;
  color: rgba(11,18,32,.78);
  margin-bottom: 12px;
}
.form input, .form textarea{
  width: 100%;
  margin-top: 8px;
  border-radius: 14px;
  border: 1px solid rgba(11,18,32,.14);
  padding: 12px 12px;
  font: inherit;
  background: rgba(11,18,32,.03);
  outline: none;
}
.form input:focus, .form textarea:focus{
  border-color: rgba(255,216,77,.9);
  box-shadow: 0 0 0 4px rgba(255,216,77,.25);
  background: #fff;
}
.form__row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.form__fineprint{
  margin: 10px 0 0;
  font-size: 12px;
  color: rgba(11,18,32,.58);
  line-height: 1.6;
}

/* Footer */
.footer{
  background: linear-gradient(180deg, var(--bg), var(--bg-2));
  color: rgba(255,255,255,.9);
  padding: 26px 0;
}
.footer__inner{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.footer__name{ font-weight: 900; letter-spacing: .02em; }
.footer__sub{
  color: rgba(255,255,255,.68);
  font-size: 13px;
  margin-top: 6px;
}
.footer__links{
  display:flex;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__links a{
  color: rgba(255,255,255,.78);
  text-decoration:none;
  font-weight: 800;
  font-size: 13px;
}
.footer__links a:hover{ color: rgba(255,255,255,1); }

/* Responsive */
@media (max-width: 940px){
  .nav{ display:none; }
  .menuBtn{ display:block; }
  .serviceItem__body{ grid-template-columns: 1fr; gap: 8px; }
  .about{ grid-template-columns: 1fr; }
  .about__standards{ grid-template-columns: 1fr; }
  .contact{ grid-template-columns: 1fr; }
  .reviewsGrid{ grid-template-columns: 1fr; }
  .galleryCarousel__viewport{ aspect-ratio: 4 / 3; }
}

@media (max-width: 560px){
  .topbar__text{ display:none; }
  .header__cta{ display:none; }
  .hero__content{ padding: 32px 22px; }

  .hero__title{
    font-size: 32px;
    line-height: 1.1;
  }

  .hero__lead{
    font-size: 15px;
  }

  .hero__actions{
    flex-direction: column;
  }

  .hero__actions .btn{
    width: 100%;
  }
  .mobileMenu__actions,
  .contact__buttons{
    flex-direction: column;
  }
  .mobileMenu__actions .btn,
  .contact__buttons .btn{
    width: 100%;
  }

  .galleryCarousel__viewport{ aspect-ratio: 3 / 4; }
  .galleryCarousel__button{
    width: 40px;
    height: 40px;
    font-size: 30px;
  }
  .galleryCarousel__button--prev{ left: 10px; }
  .galleryCarousel__button--next{ right: 10px; }

  .about{ padding: 24px; }
  .about__intro h2{ font-size: 28px; }
  .about__standards{ padding: 20px; }
  .about__standardList{ grid-template-columns: 1fr; }

  .serviceItem{
    padding: 20px;
  }
  .form__row{ grid-template-columns: 1fr; }
}

.form__status{
  margin: 12px 0 0;
  font-size: 14px;
  font-weight: 600;
  color: rgba(11,18,32,.72);
}
