:root {
  --bg: #F4F8F7;
  --ink: #12242B;
  --teal: #1F8A82;
  --teal-dark: #146860;
  --teal-tint: #E1F0EE;
  --amber: #E8A33D;
  --amber-tint: #FBEDD8;
  --wa: #1FAF6E;
  --wa-dark: #178A57;
  --panel: #FFFFFF;
  --line: #D7E3E1;
  --muted: #5B6E70;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.mono {
  font-family: 'JetBrains Mono', monospace;
}

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

img {
  max-width: 100%;
  display: block;
}

.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== NAV ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244, 248, 247, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}

.nav__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

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

.nav__logo-wrapper {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nav__logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav__name {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.1;
}

.nav__tagline {
  font-size: 11px;
  color: var(--muted);
  font-family: 'JetBrains Mono';
}

.nav__cta {
  display: none;
}

@media(min-width:640px) {
  .nav__cta {
    display: inline-flex;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease;
}

.btn:active {
  transform: scale(0.97);
}

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

.btn--wa:hover {
  background: var(--wa-dark);
}

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

.btn--outline:hover {
  background: var(--ink);
  color: #fff;
}

.btn--sm {
  padding: 8px 14px;
  font-size: 13px;
}

.btn__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  animation: pulse 1.8s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: .35;
  }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 56px;
  border-bottom: 1px solid var(--line);
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 36px 36px;
  background-position: center top;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, var(--bg) 30%, rgba(244, 248, 247, 0.55) 100%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.hero__plate {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 6px 14px;
  font-family: 'JetBrains Mono';
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 22px;
}

.hero__plate b {
  color: var(--teal-dark);
}

.hero h1 {
  font-size: clamp(28px, 5vw, 44px);
  line-height: 1.15;
  margin-bottom: 16px;
}

.hero h1 span {
  color: var(--teal-dark);
}

.hero p.lead {
  font-size: 17px;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 28px;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 20px;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  font-size: 13px;
  color: var(--muted);
}

.hero__meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero__icon-row {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-top: 44px;
  opacity: 0.85;
}

.hero__icon-row svg {
  width: 46px;
  height: 46px;
}

/* ===== SECTION HEADERS ===== */
.section {
  padding: 64px 0;
}

.section__head {
  max-width: 600px;
  margin: 0 auto 40px;
  text-align: center;
}

.section__eyebrow {
  font-family: 'JetBrains Mono';
  font-size: 12px;
  color: var(--teal-dark);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 10px;
}

.section__head h2 {
  font-size: clamp(22px, 3.4vw, 30px);
  margin-bottom: 10px;
}

.section__head p {
  color: var(--muted);
  font-size: 15px;
}

/* ===== SERVICE TAGS ===== */
.services {
  background: var(--panel);
  border-bottom: 1px solid var(--line);
}

.tag-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 28px;
}

.tag {
  position: relative;
  background: var(--bg);
  border: 1.5px dashed var(--line);
  border-radius: 14px;
  padding: 28px 24px 22px;
  transition: border-color .2s ease, transform .2s ease;
}

.tag:nth-child(2) {
  transform: rotate(0.4deg);
}

.tag:nth-child(3) {
  transform: rotate(-0.4deg);
}

.tag:hover {
  border-color: var(--teal);
  transform: translateY(-3px);
}

.tag__hole {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--bg);
  border: 1.5px dashed var(--line);
}

.tag__icon {
  width: 44px;
  height: 44px;
  color: var(--teal-dark);
  margin-bottom: 14px;
}

.tag h3 {
  font-size: 18px;
  margin-bottom: 6px;
}

.tag__code {
  font-family: 'JetBrains Mono';
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 14px;
  display: block;
}

.tag p.desc {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 16px;
}

.tag__list {
  list-style: none;
  margin-bottom: 20px;
}

.tag__list li {
  font-size: 13.5px;
  padding: 5px 0 5px 20px;
  position: relative;
  color: var(--ink);
}

.tag__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 7px;
  height: 7px;
  background: var(--amber);
  border-radius: 1px;
  transform: rotate(45deg);
}

/* ===== WHY US ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}

.why-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.why-item__icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  background: var(--teal-tint);
  color: var(--teal-dark);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-item__icon svg {
  width: 20px;
  height: 20px;
}

.why-item h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 3px;
  font-family: 'Inter';
}

.why-item p {
  font-size: 13.5px;
  color: var(--muted);
}

/* ===== GALLERY / PLACEHOLDER ===== */
.gallery{background:var(--panel);border-top:1px solid var(--line);border-bottom:1px solid var(--line);}
.gal-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:20px;}
.gal-frame{
  aspect-ratio:4/3;border:2px dashed var(--line);border-radius:12px;
  display:flex;flex-direction:column;align-items:center;justify-content:center;gap:8px;
  color:var(--muted);background:var(--bg);text-align:center;padding:16px;
  overflow:hidden;
}
.gal-frame:has(img) {
  padding: 0;
  border-style: solid;
}

.gal-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gal-frame svg {
  width: 32px;
  height: 32px;
  opacity: .5;
}

.gal-frame span {
  font-size: 12px;
  font-family: 'JetBrains Mono';
}

/* ===== CONTACT ===== */
.contact {
  padding: 64px 0 72px;
}

.contact__card {
  max-width: 640px;
  margin: 0 auto;
  background: var(--ink);
  color: #F2F5F4;
  border-radius: 18px;
  padding: 44px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact__stamp {
  position: absolute;
  top: 22px;
  right: 26px;
  border: 2px solid var(--amber);
  color: var(--amber);
  border-radius: 50%;
  width: 74px;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'JetBrains Mono';
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .03em;
  line-height: 1.2;
  transform: rotate(12deg);
  text-align: center;
}

.contact h2 {
  font-size: 26px;
  margin-bottom: 10px;
  color: #fff;
}

.contact p.sub {
  color: #A9BAB9;
  font-size: 14.5px;
  margin-bottom: 26px;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

.contact__num {
  font-family: 'JetBrains Mono';
  font-size: 20px;
  color: var(--amber);
  margin-bottom: 22px;
  letter-spacing: .02em;
}

.contact__hours {
  display: flex;
  justify-content: center;
  gap: 26px;
  flex-wrap: wrap;
  font-size: 12.5px;
  color: #A9BAB9;
  margin-top: 22px;
  font-family: 'JetBrains Mono';
}

/* ===== FOOTER ===== */
footer {
  padding: 26px 0;
  border-top: 1px solid var(--line);
}

footer .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  font-size: 12.5px;
  color: var(--muted);
}

/* ===== FLOATING WA BUTTON ===== */
.float-wa {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 60;
  background: var(--wa);
  color: #fff;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
}

.float-wa svg {
  width: 28px;
  height: 28px;
}

@media(max-width:640px) {
  .contact__stamp {
    width: 60px;
    height: 60px;
    font-size: 8px;
    top: 16px;
    right: 16px;
  }
}