/* ── Tokens ── */
:root {
  --charcoal:    #1c1c1c;
  --charcoal-md: #2e2e2e;
  --steel:       #4a5568;
  --steel-lt:    #718096;
  --copper:      #b5622a;
  --copper-lt:   #d4845a;
  --copper-pale: #f5ece5;
  --off-white:   #f7f5f1;
  --white:       #ffffff;
  --border:      #e2ddd8;
  --text:        #1c1c1c;
  --text-md:     #4a5568;
  --text-lt:     #718096;
  --radius:      6px;
  --max:         900px;
  --font-head:   'Georgia', 'Times New Roman', serif;
  --font-body:   'Segoe UI', system-ui, -apple-system, sans-serif;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  color: var(--text);
  background: var(--off-white);
}

a { color: var(--copper); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }

/* ── Nav ── */
nav {
  background: var(--charcoal);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 2px solid var(--copper);
}

.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 2rem;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  font-family: var(--font-head);
  font-size: 1.05rem;
  color: var(--white);
  letter-spacing: 0.02em;
}

.nav-brand span {
  color: var(--copper-lt);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  text-decoration: none;
}

/* ── Hero ── */
.hero {
  background: var(--charcoal);
  color: var(--white);
  padding: 5rem 2rem 4.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    rgba(255,255,255,0.015) 0px,
    rgba(255,255,255,0.015) 1px,
    transparent 1px,
    transparent 48px
  );
  pointer-events: none;
}

.hero-eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--copper-lt);
  margin-bottom: 1.25rem;
}

.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: normal;
  line-height: 1.2;
  max-width: 620px;
  margin: 0 auto 1.5rem;
  letter-spacing: -0.01em;
}

.hero h1 em {
  font-style: normal;
  color: var(--copper-lt);
}

.hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  max-width: 480px;
  margin: 0 auto 2.5rem;
}

.btn {
  display: inline-block;
  background: var(--copper);
  color: var(--white);
  padding: 0.75rem 2rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: background 0.2s;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
}

.btn:hover {
  background: var(--copper-lt);
  text-decoration: none;
  color: var(--white);
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.35);
  color: var(--white);
  margin-left: 1rem;
}

.btn-outline:hover {
  background: rgba(255,255,255,0.08);
  color: var(--white);
}

/* ── Section wrapper ── */
section {
  padding: 4rem 2rem;
}

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.section-eyebrow {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--copper);
  margin-bottom: 0.5rem;
}

.section-heading {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: normal;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.section-lead {
  color: var(--text-md);
  font-size: 1rem;
  max-width: 580px;
  margin-bottom: 2.5rem;
}

/* ── Services grid ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--copper);
  border-radius: var(--radius);
  padding: 1.5rem 1.5rem 1.75rem;
}

.service-card h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: normal;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-md);
  line-height: 1.65;
}

/* ── Why us band ── */
.why-band {
  background: var(--charcoal-md);
  color: var(--white);
}

.why-band .section-heading { color: var(--white); }
.why-band .section-lead { color: rgba(255,255,255,0.65); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.why-item {
  border-left: 2px solid var(--copper);
  padding-left: 1.1rem;
}

.why-item h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.35rem;
  letter-spacing: 0.01em;
}

.why-item p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

/* ── Area band ── */
.area-band {
  background: var(--copper-pale);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 2rem;
  text-align: center;
}

.area-band p {
  color: var(--text-md);
  font-size: 0.95rem;
  margin-bottom: 0;
}

.area-band strong {
  color: var(--charcoal);
}

/* ── CTA strip ── */
.cta-strip {
  background: var(--off-white);
  text-align: center;
  padding: 4rem 2rem;
  border-top: 1px solid var(--border);
}

.cta-strip .section-heading { margin-bottom: 0.5rem; }
.cta-strip p { color: var(--text-md); margin-bottom: 2rem; }

.cta-phone {
  display: block;
  font-family: var(--font-head);
  font-size: 1.7rem;
  color: var(--charcoal);
  margin-bottom: 0.25rem;
  letter-spacing: 0.02em;
}

.cta-phone:hover {
  color: var(--copper);
  text-decoration: none;
}

.cta-note {
  font-size: 0.8rem;
  color: var(--text-lt);
  margin-bottom: 1.5rem !important;
}

/* ── Page band (inner pages) ── */
.page-band {
  background: var(--charcoal);
  border-bottom: 2px solid var(--copper);
  padding: 3rem 2rem 2.5rem;
}

.page-band-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.page-band h1 {
  font-family: var(--font-head);
  font-size: 1.9rem;
  font-weight: normal;
  color: var(--white);
  margin-bottom: 0.35rem;
}

.page-band p {
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
}

/* ── Contact page layout ── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  align-items: start;
}

@media (max-width: 680px) {
  .contact-layout { grid-template-columns: 1fr; }
  .nav-links { gap: 1.2rem; }
}

/* ── Quote form ── */
.quote-form h2 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: normal;
  color: var(--charcoal);
  margin-bottom: 0.35rem;
}

.quote-form > p {
  font-size: 0.9rem;
  color: var(--text-md);
  margin-bottom: 1.75rem;
}

.form-group {
  margin-bottom: 1.2rem;
}

label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 0.4rem;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  width: 100%;
  padding: 0.65rem 0.9rem;
  font-size: 0.95rem;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--copper);
  box-shadow: 0 0 0 3px rgba(181,98,42,0.12);
}

textarea { min-height: 130px; resize: vertical; }

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234a5568' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  padding-right: 2.5rem;
}

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

/* ── Sidebar info ── */
.contact-sidebar {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--copper);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
}

.contact-sidebar h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: normal;
  color: var(--charcoal);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.sidebar-item {
  margin-bottom: 1.25rem;
}

.sidebar-item:last-child { margin-bottom: 0; }

.sidebar-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-lt);
  margin-bottom: 0.2rem;
  display: block;
}

.sidebar-item a,
.sidebar-item p {
  font-size: 0.95rem;
  color: var(--text-md);
}

.sidebar-item a {
  color: var(--copper);
  font-weight: 500;
}

.sidebar-phone {
  font-family: var(--font-head);
  font-size: 1.3rem !important;
  color: var(--charcoal) !important;
}

.note-box {
  background: var(--copper-pale);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  font-size: 0.85rem;
  color: var(--text-md);
  line-height: 1.6;
  margin-top: 1.25rem;
}

/* ── Footer ── */
footer {
  background: var(--charcoal);
  border-top: 2px solid var(--copper);
  color: rgba(255,255,255,0.4);
  text-align: center;
  padding: 1.5rem 2rem;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
}
