:root{
  --bg: #f5f6f7;
  --panel: #ffffff;
  --text: #0f172a;
  --muted: #475569;
  --line: #d7dde3;

  --accent: #0f172a;
  --soft: #eef1f4;

  --radius: 16px;
  --shadow: 0 14px 30px rgba(0,0,0,.10);
  --shadow2: 0 10px 20px rgba(0,0,0,.07);

  --max: 1120px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
}

.wrap{
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
}

a{ color: inherit; text-decoration: none; }
/* no underline on hover */
a:hover{ text-decoration: none; }

h1,h2,h3{
  margin: 0 0 .9rem;
  line-height: 1.15;
  letter-spacing: -0.2px;
}
p{ margin: 0 0 1.2rem; }

.muted{ color: var(--muted); }
.fine{ font-size: .92rem; }

/* Header */
.site-header{
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(245,246,247,.90);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand{
  display: flex;
  align-items: center;
  gap: .9rem;
}
.logo{ color: var(--accent); }

/* Larger "Double T" in header */
.brand-name{
  font-weight: 750;
  font-size: 1.6rem;
  letter-spacing: -0.2px;
  line-height: 1.1;
}

.nav{
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.nav a{ font-weight: 600; color: var(--accent); }

/* Buttons */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #ffffff !important;
  padding: .85rem 1.1rem;
  border-radius: 999px;
  font-weight: 750;
  box-shadow: var(--shadow2);
  border: 1px solid rgba(255,255,255,0);
}
.btn:hover{ text-decoration: none; filter: brightness(1.04); }
.btn:active{ transform: translateY(1px); }
.btn:disabled{ opacity: .7; cursor: not-allowed; }

.btn-small{ padding: .55rem .85rem; }

/* Send button: same feel as CTA + pointer */
.btn-send{
  font-size: 1rem;
  padding: .85rem 1.1rem;
  cursor: pointer;
}

/* Full hero */
.hero-full{
  position: relative;
  min-height: clamp(520px, 70vh, 760px);
  display: grid;
  align-items: end;
  border-bottom: 1px solid var(--line);
  background: #0f172a;
}

.hero-bg{
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-bg img{
  width: 100%;
  height: 100%;
  object-fit: cover;

  /* Keep the subject (worker) more visible on most screens */
  object-position: 70% 50%;

  display: block;
  transform: scale(1.02);
  filter: contrast(1.02) saturate(1.02);
}

.hero-full::after{
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15,23,42,.10) 0%, rgba(15,23,42,.55) 95%, rgba(15,23,42,.78) 100%),
    radial-gradient(900px 500px at 20% 15%, rgba(255,255,255,.10), transparent 60%);
}

/* Overlay: keep card on the left (safe area) */
.hero-overlay{
  position: relative;
  z-index: 1;
  padding: 3.2rem 0 3rem;

  display: flex;
  justify-content: flex-start;
}

.hero-card{
  /* slightly narrower so it covers less image area */
  width: min(640px, 100%);

  background: rgba(255,255,255,.78);
  border: 1px solid rgba(255,255,255,.55);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.5rem 1.5rem 1.35rem;
  backdrop-filter: blur(6px);
}

.hero-card h1{
  font-size: clamp(2.05rem, 3.1vw, 2.8rem);
  margin-bottom: .9rem;
}

.lead{
  color: var(--muted);
  font-size: 1.06rem;
  margin-bottom: 1.2rem;
}

/* Hero points with tick icons */
.hero-points{
  display: grid;
  gap: .65rem;
  margin: 1rem 0 1.3rem;
}
.point{
  padding: .85rem 1rem;
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.75);
  border-radius: 14px;

  display: grid;
  grid-template-columns: 22px 1fr;
  gap: .65rem;
  align-items: start;
}
.point-ico{
  margin-top: 2px;
  color: var(--accent);
}

.hero-actions{
  display: flex;
  gap: .85rem;
  flex-wrap: wrap;
  margin-top: .25rem;
}

/* Sections */
.section{ padding: 3rem 0; }
.section-alt{
  background: var(--soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section-head{ margin-bottom: 1.7rem; }
.section-head h2{ font-size: 1.9rem; }

/* Services (4 items) */
.service-cards{
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.15rem;
}
.service-card{
  grid-column: span 6;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 1rem;
  align-items: start;

  background: var(--panel);
  border: 1px solid rgba(15,23,42,.10);
  border-radius: var(--radius);
  box-shadow: var(--shadow2);
  padding: 1.25rem 1.25rem;
}
.service-card h3{
  font-size: 1.15rem;
  margin-bottom: .35rem;
}
.service-card p{ color: var(--muted); margin: 0; }

.service-icon{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: var(--accent);
  background: rgba(15,23,42,.06);
  border: 1px solid rgba(15,23,42,.10);
}
.service-icon svg{ display: block; }

/* About */
.about-copy{ max-width: 72ch; }

/* Testimonials */
.quotes{
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.15rem;
}
.quote{
  grid-column: span 6;
  margin: 0;
  background: rgba(255,255,255,.75);
  border: 1px solid rgba(15,23,42,.10);
  border-radius: var(--radius);
  box-shadow: var(--shadow2);
  padding: 1.25rem 1.25rem;
}
.quote blockquote{ margin: 0 0 .85rem; font-weight: 600; }
.quote figcaption{ color: var(--muted); font-size: .95rem; }

/* Contact */
.contact-wrap{
  background: rgba(255,255,255,.75);
  border: 1px solid rgba(15,23,42,.10);
  border-radius: var(--radius);
  box-shadow: var(--shadow2);
  padding: 1.25rem;
}

.form{ display: grid; gap: 1.05rem; }

.row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.05rem;
}

label{ display: grid; gap: .45rem; font-weight: 600; }

.label-inline{
  display: inline-flex;
  align-items: baseline;
  gap: .45rem;
  white-space: nowrap;
}

.meta{
  font-weight: 600;
  font-size: .92rem;
  color: var(--muted);
}

input, select, textarea{
  width: 100%;
  padding: .85rem .9rem;
  border-radius: 14px;
  border: 1px solid rgba(15,23,42,.14);
  background: #fff;
  font: inherit;
}
textarea{ resize: vertical; min-height: 150px; }

input:focus, select:focus, textarea:focus{
  outline: 3px solid rgba(15,23,42,.12);
  border-color: rgba(15,23,42,.28);
}

.actions{
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: .2rem;
}

/* Status messages */
.status{ font-size: .98rem; color: var(--muted); }
.status.ok{
  color: #b91c1c; /* prominent red */
  font-weight: 700;
}
.status.err{
  color: #842029;
  font-weight: 700;
}

/* Honeypot hidden */
.hp{
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

/* Footer */
.site-footer{
  border-top: 1px solid var(--line);
  background: #f1f3f5;
  padding: 1.2rem 0;
}
.footer-inner{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 980px){
  .service-card{ grid-column: span 12; }
  .quote{ grid-column: span 12; }
}

@media (max-width: 680px){
  .row{ grid-template-columns: 1fr; }
  .hero-overlay{ padding: 2.3rem 0 2.1rem; }
  .hero-card{ padding: 1.25rem 1.15rem; }

  /* On small screens, don't overlay the card on the image */
  .hero-full{
    display: block;
    min-height: 0;
  }

  .hero-bg{
    position: relative;
    inset: auto;
  }

  .hero-bg img{
    height: auto;
    transform: none;
    object-position: 50% 50%;
  }

  .hero-full::after{
    display: none;
  }

  .hero-overlay{
    padding: 1.25rem 0 2.1rem;
    display: block;
  }

  .hero-card{
    width: 100%;
  }
}