@charset "UTF-8";
:root {
  /* Colors (example) */
  --bg: #ffffff;
  --text: #0d0d0d;
  --muted: #6b6b6b;
  --border: #eaeaea;
  /* Typography */
  --font-sans: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial,
               "Apple Color Emoji", "Segoe UI Emoji";
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 700;
  --font-weight-black: 900;
  /* Layout */
  --container: 1200px;
  --gutter: 24px;
}

/* _root.scss: add a token for sticky header height */
:root {
  /* ...existing tokens... */
  --sticky-offset: 72px;
}

/* _globals.scss: smooth scrolling with a11y fallback */
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}
/* Give all sections a natural offset so the sticky header doesn’t cover titles */
[id] {
  scroll-margin-top: var(--sticky-offset);
}

/* Optional: avoid the blue focus ring on :target jump; keep accessibility */
:target {
  scroll-margin-top: var(--sticky-offset);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

html {
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: var(--font-weight-regular);
  line-height: 1.45;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-sans);
  font-weight: var(--font-weight-black); /* strong Roboto look */
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
}

p {
  margin: 0 0 1em;
  color: var(--text);
}

.container {
  width: min(100% - 2 * var(--gutter), var(--container));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ============================
   Header — logo | menu | icon
   ============================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--bg);
}

.site-header .header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr; /* left | center | right */
  align-items: center;
  gap: 12px;
  padding-block: 18px;
}

/* LEFT */
.site-header .logo {
  justify-self: start;
  font-weight: 800;
  font-size: clamp(20px, 2.4vw, 28px);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  white-space: nowrap;
}

/* CENTER */
.site-header .nav {
  justify-self: center;
  min-width: 0;
}

.site-header .nav__list {
  display: flex;
  gap: clamp(18px, 2.2vw, 28px);
  list-style: none;
  margin: 0;
  padding: 0;
  white-space: nowrap;
}

.site-header .nav__list a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
}

/* RIGHT */
.site-header .nav__toggle {
  justify-self: end;
  background: transparent;
  border: 0;
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
}

/* --------------- Responsive --------------- */
@media (max-width: 1024px) {
  .site-header .nav__list {
    gap: clamp(14px, 2vw, 22px);
  }
}
@media (max-width: 860px) {
  /* Hide the top menu; you already show menu inside the off-canvas panel */
  .site-header .nav__list {
    display: none;
  }
  .site-header .logo {
    font-size: clamp(18px, 5vw, 22px);
  }
  .site-header .nav__toggle {
    width: 32px;
    height: 32px;
  }
}
/* Hero */
.hero {
  padding-block: clamp(48px, 8vw, 96px) clamp(40px, 6vw, 80px);
}
.hero .hero__title {
  font-weight: 800;
  line-height: 1.2;
  font-size: clamp(40px, 8.5vw, 95px);
  margin: 0 0 clamp(28px, 4vw, 52px);
}
.hero .hero__meta {
  display: grid;
  grid-template-columns: minmax(120px, 18%) 1fr;
  align-items: start;
  gap: clamp(16px, 3vw, 36px);
}
.hero .hero__rule {
  height: 1px;
  background: #d9d9d9;
  align-self: center;
  margin-top: 12px;
}
.hero .hero__copy {
  max-width: 560px;
}
.hero .hero__copy p {
  margin: 0 0 10px;
  font-size: clamp(16px, 1.6vw, 20px);
  color: var(--muted);
}
.hero .link-underline {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
}
.hero .link-underline::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1px;
  background: var(--text);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 200ms ease;
}
.hero .link-underline:hover::after {
  transform: scaleX(1);
}

/* Off‑canvas Panel */
.backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 70;
}

.offcanvas {
  position: fixed;
  inset: 0 0 0 auto; /* right side */
  width: min(640px, 92vw);
  background: #fff;
  translate: 100% 0;
  transition: translate 260ms ease;
  z-index: 80;
  border-left: 1px solid var(--border);
  padding: clamp(20px, 3vw, 28px);
  overflow: auto;
}
.offcanvas.is-open {
  translate: 0 0;
}

.offcanvas__close {
  position: absolute;
  top: 10px;
  right: 16px;
  font-size: 28px;
  line-height: 1;
  background: transparent;
  border: 0;
  cursor: pointer;
  color: var(--text);
}

.offcanvas__inner {
  max-width: 560px;
  padding-top: 22px;
}
.offcanvas__inner h2 {
  font-size: clamp(26px, 3vw, 38px);
  margin: 18px 0;
}
.offcanvas__inner p {
  color: var(--muted);
}
.offcanvas__inner .contact {
  list-style: none;
  padding: 0;
  margin: 22px 0;
  display: grid;
  gap: 10px;
}
.offcanvas__inner .contact a {
  color: var(--text);
  text-decoration: none;
}
.offcanvas__inner .contact li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.panel-nav {
  display: none;
  margin: 24px 0 8px;
}
.panel-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.panel-nav a {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
}

.panel-subtitle {
  margin: 28px 0 8px;
  font-size: 18px;
}

.socials {
  display: flex;
  gap: 10px;
}

.socials a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background: #f3f3f3;
  color: #111;
  border-radius: 50%;
  text-decoration: none;
  font-weight: 700;
}

/* Responsive */
@media (max-width: 860px) {
  .site-header .nav .nav__list {
    display: none;
  } /* remove top nav on mobile */
  .panel-nav {
    display: block;
  } /* show inside panel */
  .hero .hero__meta {
    grid-template-columns: 1fr;
  }
  .hero .hero__rule {
    display: none;
  }
}
/* ---------- Services ---------- */
.services {
  padding-block: clamp(48px, 8vw, 96px);
  border-top: 1px solid #eee;
  /* Left rail */
  /* Right list */
}
.services__grid {
  display: grid;
  grid-template-columns: minmax(220px, 30%) 1fr;
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
}
.services__intro {
  position: sticky;
  top: 72px;
}
.services__intro .badge {
  display: inline-block;
  padding: 10px 18px;
  font-weight: 700;
  border-radius: 999px;
  color: #fff;
  background: #111;
}
.services__intro .intro__rule {
  height: 64px;
  width: 1px;
  background: #cfcfcf;
  margin: 24px 0 20px 18px;
}
.services__intro .intro__copy {
  color: #111;
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.2;
  margin: 0;
  max-width: 22ch;
}
.services__list {
  display: grid;
  gap: 32px;
}
.services__list .service {
  padding: clamp(20px, 3vw, 28px) 0;
  border-bottom: 1px solid #eee;
}
.services__list .service__title {
  margin: 0 0 10px;
  font-size: clamp(28px, 5.2vw, 64px);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.05;
  color: #111;
}
.services__list .service__meta {
  margin: 0;
  color: #5f5f5f;
  font-size: clamp(14px, 1.4vw, 18px);
}

/* Responsive */
@media (max-width: 960px) {
  .services__grid {
    grid-template-columns: 1fr;
  }
  .services__intro {
    position: static;
  }
  .services__intro .intro__rule {
    margin-left: 0;
  }
}
/* Footer */
.site-footer {
  border-top: 1px solid var(--border, #eaeaea);
  background: var(--bg, #fff);
  color: var(--text, #0d0d0d);
}
.site-footer .container {
  padding-block: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.site-footer small {
  font-family: var(--font-sans, "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial);
  font-size: 0.9375rem; /* 15px */
  line-height: 1.4;
  opacity: 0.8;
  text-align: center;
  white-space: nowrap;
}

/* Mobile: keep centered and tight */
@media (max-width: 600px) {
  .site-footer .container {
    padding-block: 16px;
  }
  .site-footer small {
    font-size: 0.875rem;
  }
}
/* ============ Contact Section ============ */
.contact-section {
  position: relative;
  padding-block: clamp(56px, 9vw, 120px);
  border-top: 1px solid var(--border, #eaeaea);
  /* subtle dotted background */
}
.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(currentColor 1px, transparent 1px) 0 0/18px 18px;
  opacity: 0.05;
  pointer-events: none;
}

.contact__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, 30%) 1fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  z-index: 1; /* above background */
}

/* Left rail */
.contact__intro {
  position: sticky;
  top: 72px;
}
.contact__intro .badge {
  display: inline-block;
  padding: 8px 14px;
  color: #fff;
  border-radius: 999px;
  font-weight: 700;
  background: #000;
}
.contact__intro .contact__title {
  margin: 14px 0 6px;
  font-size: clamp(28px, 5.2vw, 56px);
  font-weight: 900;
  letter-spacing: -0.01em;
}
.contact__intro .contact__rule {
  width: 1px;
  height: 64px;
  background: #cfcfcf;
  margin: 18px 0 18px 8px;
}
.contact__intro .contact__tagline {
  max-width: 28ch;
  font-size: clamp(16px, 1.6vw, 18px);
  color: var(--text);
  opacity: 0.8;
  margin: 0;
}

/* Form layout (no focus effects) */
.contact-form {
  /* Services checklist — custom checkboxes */
}
.contact-form .hp {
  position: absolute !important;
  left: -9999px;
  opacity: 0;
}
.contact-form .f-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 14px;
}
.contact-form .f-row--full {
  grid-template-columns: 1fr;
}
.contact-form .f-col {
  display: grid;
  gap: 6px;
}
.contact-form label, .contact-form legend {
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0 10px;
}
.contact-form input, .contact-form select, .contact-form textarea {
  appearance: none;
  width: 100%;
  border: 1px solid var(--border, #eaeaea);
  border-radius: 12px;
  padding: 12px 14px;
  font: inherit;
  color: var(--text, #0d0d0d);
  background: #fff;
  outline: none; /* no focus effects */
}
.contact-form .services-fieldset {
  border: 1px solid var(--border, #eaeaea);
  border-radius: 12px;
  padding: 14px;
}
.contact-form .services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 16px;
  margin-top: 8px;
}
.contact-form .chk {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  user-select: none;
  cursor: pointer;
  /* checkmark */
}
.contact-form .chk input {
  appearance: none;
  width: 18px;
  height: 18px;
  border: 1px solid #111;
  padding: 0;
  display: grid;
  place-content: center;
  margin: 0;
  background: #fff;
  border-radius: 0;
}
.contact-form .chk input::after {
  content: "";
  width: 10px;
  height: 10px;
  transform: scale(0);
  transition: transform 120ms ease;
  background: #111;
  border-radius: 0;
}
.contact-form .chk input:checked::after {
  transform: scale(1);
}
.contact-form .chk span {
  font-weight: 600;
}
.contact-form .f-actions {
  display: flex;
  gap: 10px;
  flex-direction: column;
  margin-top: 20px;
}
.contact-form .btn-outline {
  border: 1px solid #111;
  color: #111;
  background: transparent;
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 700;
  width: fit-content;
  cursor: pointer;
}
.contact-form .btn-outline:hover {
  background: #111;
  color: #fff;
}
.contact-form .form-note {
  margin: 0;
  opacity: 0.7;
  font-size: 0.9rem;
}
.contact-form .form-status {
  margin-top: 8px;
  min-height: 1em;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 960px) {
  .contact-form .f-row {
    grid-template-columns: 1fr;
  }
  .contact-form .services-grid {
    grid-template-columns: 1fr;
  }
  .contact__grid {
     grid-template-columns: 1fr;
  }
  
  .contact__intro {
     position: static;
  }
}/*# sourceMappingURL=style.css.map */
