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

@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Protest+Riot&display=swap');

:root {
  --black: #0f0f0f;
  --white: #f5f3ee;
  --rust: #8B3A0F;
  --mid: #6b6560;
  --border: #d9d4cc;
}

html { font-size: 16px; }

body {
  background: var(--white);
  color: var(--black);
  font-family: 'Nunito', sans-serif;
  font-weight: 300;
  line-height: 1.6;
}

/* NAV */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 3rem;
  border-bottom: 1px solid var(--border);
}

.nav-logo img {
  height: 36px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-family: 'Nunito', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mid);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--black); }

.nav-links a.cta {
  color: var(--rust);
}

.nav-links a.cta:hover { color: var(--black); }

/* HERO */
.hero {
  padding: 7rem 3rem 6rem;
  max-width: 860px;
}

.hero h1 {
  font-family: 'Protest Riot', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}

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

.hero-sub {
  font-size: 1.05rem;
  color: var(--mid);
  margin-bottom: 2.5rem;
  font-weight: 400;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: var(--black);
  color: var(--white);
  font-family: 'Nunito', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.btn:hover {
  background: var(--rust);
  color: var(--white);
}

/* DIVIDER */
hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0 3rem;
}

/* SECTIONS */
.section {
  padding: 5rem 3rem;
}

.section p {
  font-size: 1.05rem;
  color: #333;
  line-height: 1.8;
  margin-bottom: 1.25rem;
  max-width: 680px;
}

/* PAGE HEADER */
.page-header {
  padding: 5rem 3rem 3rem;
}

.page-header h1 {
  font-family: 'Protest Riot', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.page-header p {
  font-size: 1.05rem;
  color: var(--mid);
  max-width: 600px;
  line-height: 1.75;
}

/* SERVICES GRID */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 960px;
}

.service-item {
  padding: 2.5rem 2.5rem 2.5rem 0;
  border-top: 1px solid var(--border);
}

.service-item:nth-child(even) {
  padding-left: 2.5rem;
  border-left: 1px solid var(--border);
}

.service-item h2 {
  font-family: 'Protest Riot', sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
  color: var(--black);
}

.service-item p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.75;
  max-width: 100%;
  margin-bottom: 0;
}

.service-item.featured {
  grid-column: 1 / -1;
  border-left: none;
  padding-left: 0;
  padding-right: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.service-item.featured h2 {
  font-size: 1.4rem;
}

.badge {
  display: inline-block;
  font-family: 'Nunito', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rust);
  border: 1px solid var(--rust);
  padding: 0.2rem 0.6rem;
  margin-bottom: 0.75rem;
}

/* CTA STRIP */
.cta-strip {
  border-top: 1px solid var(--border);
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cta-strip p {
  font-family: 'Protest Riot', sans-serif;
  font-size: 1.5rem;
  color: var(--black);
  max-width: none;
  margin-bottom: 0;
}

/* TWO-COL LAYOUT */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--border);
}

.two-col-left {
  padding: 5rem 3rem;
  border-right: 1px solid var(--border);
}

.two-col-right {
  padding: 5rem 3rem;
}

.two-col-left h1,
.two-col-right h1 {
  font-family: 'Protest Riot', sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.two-col-left p,
.two-col-right p {
  font-size: 1rem;
  color: #333;
  line-height: 1.8;
  margin-bottom: 1.25rem;
  max-width: 100%;
}

.label {
  font-family: 'Nunito', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 0.4rem;
}

.credential {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.credential p {
  font-size: 0.9rem;
  color: var(--mid);
  margin-bottom: 0;
}

/* ABOUT PHOTO */
.about-photo {
  width: 100%;
  margin-top: 2rem;
  border-radius: 2px;
  overflow: hidden;
}

.about-photo img {
  width: 100%;
  height: auto;
  display: block;
}

/* FOOTER */
footer {
  border-top: 1px solid var(--border);
  padding: 2rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--mid);
  font-family: 'Nunito', sans-serif;
}

/* MOBILE */
@media (max-width: 680px) {
  nav { padding: 1.25rem 1.5rem; flex-direction: column; gap: 1rem; }
  .hero { padding: 4rem 1.5rem 3rem; }
  .section { padding: 3rem 1.5rem; }
  hr { margin: 0 1.5rem; }
  .page-header { padding: 3rem 1.5rem 2rem; }
  .services-grid { grid-template-columns: 1fr; }
  .service-item:nth-child(even) { padding-left: 0; border-left: none; }
  .service-item.featured { grid-template-columns: 1fr; padding-right: 0; }
  .two-col { grid-template-columns: 1fr; }
  .two-col-left { border-right: none; border-bottom: 1px solid var(--border); padding: 3rem 1.5rem; }
  .two-col-right { padding: 3rem 1.5rem; }
  .cta-strip { padding: 2rem 1.5rem; flex-direction: column; align-items: flex-start; }
  footer { padding: 1.5rem; flex-direction: column; gap: 0.5rem; text-align: center; }
}
