/* Tools & Tech — site styles
   Palette: burnt orange, golden yellow, soft teal, black outlines, warm off-white */
:root {
  --orange: #C8551B;
  --orange-dk: #A8420F;
  --gold: #E8A02C;
  --teal: #2E7D7D;
  --teal-dk: #226060;
  --ink: #1B1B1A;
  --ink-soft: #4A4844;
  --cream: #FBF6EE;
  --cream-2: #F3EADB;
  --line: #E4D8C5;
  --white: #FFFFFF;
  --radius: 14px;
  --shadow: 0 6px 24px rgba(27, 27, 26, 0.08);
  --wrap: 1080px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 116px; }
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, .brand-name { font-family: "Poppins", system-ui, sans-serif; line-height: 1.15; }
a { color: var(--teal-dk); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }
.wrap { width: min(var(--wrap), 92vw); margin-inline: auto; }

/* Buttons */
.btn {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-weight: 600;
  padding: 0.8rem 1.4rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.15s ease, transform 0.05s ease;
}
.btn:hover { background: var(--orange-dk); text-decoration: none; }
.btn:active { transform: translateY(1px); }
.btn-ghost { background: transparent; color: var(--ink); border: 2px solid var(--ink); padding: calc(0.8rem - 2px) calc(1.4rem - 2px); }
.btn-ghost:hover { background: var(--ink); color: var(--white); }
.btn-sm { padding: 0.55rem 1rem; font-size: 0.92rem; }
.btn-full { width: 100%; padding: 0.95rem; font-size: 1.05rem; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 246, 238, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; gap: 1.5rem; height: 100px; }
.brand { display: flex; align-items: center; gap: 0.6rem; }
.brand:hover { text-decoration: none; }
.brand-logo { height: 85px; width: auto; }
.brand-name { font-weight: 700; font-size: 1.2rem; color: var(--ink); letter-spacing: -0.01em; }
.nav { margin-left: auto; display: flex; gap: 1.4rem; }
.nav a { color: var(--ink-soft); font-weight: 500; }
.nav a:hover { color: var(--orange); text-decoration: none; }
.nav-cta { flex-shrink: 0; }

/* Hero */
.hero { background: linear-gradient(160deg, var(--cream) 0%, var(--cream-2) 100%); padding: 4.5rem 0 4rem; }
.eyebrow { text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.82rem; font-weight: 600; color: var(--teal); margin: 0 0 0.8rem; }
.hero h1 { font-size: clamp(2.3rem, 5.5vw, 3.6rem); font-weight: 700; margin: 0 0 1.2rem; letter-spacing: -0.02em; }
.lede { font-size: 1.18rem; color: var(--ink-soft); max-width: 40rem; margin: 0 0 2rem; }
.hero-actions { display: flex; gap: 0.9rem; flex-wrap: wrap; }

/* Sections */
.section { padding: 4rem 0; }
.section-alt { background: var(--cream-2); }
.section-title { font-size: clamp(1.7rem, 3.5vw, 2.3rem); margin: 0 0 0.5rem; }
.section-sub { color: var(--ink-soft); font-size: 1.08rem; max-width: 42rem; margin: 0 0 2.2rem; }

/* Service cards */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.2rem; }
.card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem; box-shadow: var(--shadow); }
.card-icon { font-size: 1.9rem; margin-bottom: 0.6rem; }
.card h3 { font-size: 1.2rem; margin: 0 0 0.5rem; color: var(--orange-dk); }
.card p { margin: 0; color: var(--ink-soft); font-size: 0.98rem; }

/* Pricing */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.2rem; }
.price-block { background: var(--white); border: 1px solid var(--line); border-top: 4px solid var(--gold); border-radius: var(--radius); padding: 1.5rem; }
.price-block h3 { margin: 0 0 0.5rem; font-size: 1.15rem; color: var(--teal-dk); }
.price-block p { margin: 0; color: var(--ink-soft); font-size: 0.98rem; }
.note { margin-top: 1.6rem; color: var(--ink-soft); font-style: italic; }

/* Area */
.area-inner { max-width: 46rem; }
.area-inner p { font-size: 1.08rem; color: var(--ink-soft); }

/* Contact */
.contact-inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 3rem; align-items: start; }
.contact-info p { color: var(--ink-soft); font-size: 1.05rem; }
.contact-list { list-style: none; padding: 0; margin: 1.5rem 0 0; }
.contact-list li { display: flex; gap: 1rem; padding: 0.6rem 0; border-bottom: 1px solid var(--line); align-items: baseline; }
.ci-label { text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.72rem; font-weight: 600; color: var(--teal); min-width: 92px; }
.contact-form { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem; box-shadow: var(--shadow); }
.field { margin-bottom: 1rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field label { display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 0.35rem; }
.field input, .field select, .field textarea {
  width: 100%; padding: 0.7rem 0.8rem; border: 1px solid var(--line); border-radius: 10px;
  font-family: inherit; font-size: 1rem; background: var(--cream); color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: 2px solid var(--teal); outline-offset: 1px; border-color: var(--teal); }
.field textarea { resize: vertical; }
.hp { position: absolute; left: -9999px; }

/* Policies */
.policies { background: var(--cream); border-top: 1px solid var(--line); }
.policy { max-width: 52rem; margin-bottom: 1.6rem; }
.policy h3 { font-size: 1.15rem; margin: 0 0 0.35rem; color: var(--ink); }
.policy p { margin: 0; color: var(--ink-soft); }

/* Footer */
.site-footer { background: var(--ink); color: var(--cream); padding: 2.4rem 0 1.6rem; }
.footer-inner { display: flex; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; padding-bottom: 1.4rem; border-bottom: 1px solid rgba(255,255,255,0.12); }
.footer-brand strong { font-family: "Poppins", sans-serif; font-size: 1.15rem; display: block; }
.footer-brand span { color: rgba(251,246,238,0.7); font-size: 0.95rem; }
.footer-contact { display: flex; flex-direction: column; gap: 0.2rem; text-align: right; }
.footer-contact a { color: var(--gold); font-weight: 600; }
.footer-contact span { color: rgba(251,246,238,0.7); font-size: 0.9rem; }
.footer-legal { display: flex; justify-content: space-between; padding-top: 1rem; font-size: 0.85rem; color: rgba(251,246,238,0.6); flex-wrap: wrap; gap: 0.5rem; }
.footer-legal a { color: rgba(251,246,238,0.85); }

/* Thank-you page */
.thanks-wrap { display: flex; justify-content: center; align-items: center; min-height: 60vh; padding: 4rem 0; background: linear-gradient(160deg, var(--cream) 0%, var(--cream-2) 100%); }
.thanks-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 3rem 2.5rem; max-width: 34rem; text-align: center; }
.thanks-check { width: 60px; height: 60px; margin: 0 auto 1.2rem; border-radius: 50%; background: var(--teal); color: var(--white); font-size: 2rem; line-height: 60px; }
.thanks-card h1 { font-size: 2rem; margin: 0 0 0.8rem; }
.thanks-card p { color: var(--ink-soft); font-size: 1.08rem; margin: 0 0 0.8rem; }
.thanks-sub { font-size: 0.98rem; }
.thanks-card .btn { margin-top: 1.2rem; }

/* Responsive */
@media (max-width: 760px) {
  .nav { display: none; }
  .header-inner { height: 72px; }
  .brand-logo { height: 56px; }
  .contact-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-contact { text-align: left; }
  .footer-inner { flex-direction: column; }
}
