@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,600;9..144,700&family=Karla:wght@400;500;600&display=swap');

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

:root {
  --green: #2D5238;
  --cream: #F5F0E6;
  --terra: #C56B3E;
  --text: #1B1B1B;
  --muted: #5a6a5d;
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: 'Karla', sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
}

/* NAV */
nav {
  background: var(--cream);
  border-bottom: 1px solid #d8d0c2;
  padding: 1.25rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--green);
  text-decoration: none;
  letter-spacing: -0.01em;
}

.nav-cta {
  font-family: 'Karla', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--cream);
  background: var(--green);
  text-decoration: none;
  padding: 0.65rem 1.5rem;
  letter-spacing: 0.02em;
  transition: background 0.2s;
}

.nav-cta:hover { background: var(--terra); }

/* HERO */
.hero {
  background: var(--green);
  padding: 6rem 2rem 5rem;
  text-align: center;
}

.hero-inner { max-width: 720px; margin: 0 auto; }

.hero-kicker {
  font-family: 'Karla', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #8ab090;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.hero-sub {
  font-size: 1.05rem;
  color: #b8ccba;
  max-width: 50ch;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
}

.btn-primary {
  display: inline-block;
  background: var(--terra);
  color: var(--cream);
  font-family: 'Karla', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  padding: 0.9rem 2.25rem;
  text-decoration: none;
  transition: background 0.2s;
}

.btn-primary:hover { background: #a85530; }

/* SHARED */
.page-section { padding: 5rem 2rem; }
.section-inner { max-width: 720px; margin: 0 auto; }

.drop-cap::first-letter {
  font-family: 'Fraunces', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--green);
  float: left;
  line-height: 0.85;
  margin-right: 0.1em;
  margin-top: 0.05em;
}

.section-label {
  font-family: 'Karla', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--terra);
  margin-bottom: 0.75rem;
  display: block;
}

.section-heading {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--green);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 2rem;
}

/* SERVICES */
.services-section { background: white; border-top: 1px solid #d8d0c2; border-bottom: 1px solid #d8d0c2; }

.services-list { list-style: none; }

.service-item {
  padding: 2rem 0;
  border-bottom: 1px solid #d8d0c2;
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 1.5rem;
}

.service-item:last-child { border-bottom: none; }

.service-ordinal {
  font-family: 'Fraunces', serif;
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--terra);
  opacity: 0.7;
  padding-top: 0.2rem;
}

.service-item h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.service-item p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.7;
}

/* CLIENTS */
.clients-section { background: var(--cream); }

.pull-quote {
  border-left: 3px solid var(--terra);
  padding: 0.5rem 0 0.5rem 1.5rem;
  margin: 2rem 0 2rem 2rem;
}

.pull-quote p {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--green);
  line-height: 1.5;
  font-style: italic;
}

.body-text {
  font-size: 0.975rem;
  color: #333;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

/* ABOUT */
.about-section { background: var(--cream); border-top: 1px solid #d8d0c2; }

.about-divider { border: none; border-top: 1px solid #d8d0c2; margin: 3rem 0; }

.team-block-inner { padding-top: 0; }

.team-name {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 0.15rem;
}

.team-role {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--terra);
  margin-bottom: 0.75rem;
}

/* CONTACT */
.contact-section { background: white; border-top: 1px solid #d8d0c2; }

.contact-body { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }

.contact-body p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.75;
}

.contact-detail-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-top: 1rem;
  margin-bottom: 0.2rem;
  display: block;
}

.contact-detail-label a { color: var(--green); text-decoration: none; font-style: normal; }
.contact-detail-label a:hover { text-decoration: underline; }

.contact-form { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }

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

.contact-form input,
.contact-form textarea {
  font-family: 'Karla', sans-serif;
  font-size: 0.9rem;
  padding: 0.85rem 1rem;
  border: 1px solid #d8d0c2;
  background: var(--cream);
  color: var(--text);
  width: 100%;
  outline: none;
  transition: border-color 0.2s;
}

.contact-form input:focus, .contact-form textarea:focus { border-color: var(--green); }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: #aaa; }
.contact-form textarea { resize: vertical; min-height: 130px; }

.btn-submit {
  font-family: 'Karla', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  background: var(--green);
  color: var(--cream);
  border: none;
  padding: 0.9rem 2.25rem;
  cursor: pointer;
  align-self: flex-start;
  transition: background 0.2s;
}

.btn-submit:hover { background: var(--terra); }

/* FOOTER */
footer {
  background: var(--green);
  padding: 2.5rem 2rem;
}

.footer-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.footer-logo {
  font-family: 'Fraunces', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--cream);
  display: block;
  margin-bottom: 0.5rem;
}

.footer-address {
  font-size: 0.8rem;
  color: #8ab090;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.footer-links { display: flex; justify-content: center; gap: 2rem; margin-bottom: 1.25rem; }

.footer-links a {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #8ab090;
  text-decoration: none;
}

.footer-links a:hover { color: var(--cream); }

.footer-copy { font-size: 0.75rem; color: #6a8a6d; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .form-pair { grid-template-columns: 1fr; }
  .service-item { grid-template-columns: 1fr; gap: 0.5rem; }
  .pull-quote { margin-left: 0; }
}

@media (max-width: 375px) {
  .page-section { padding: 3rem 1rem; }
  .hero { padding: 4rem 1rem 3rem; }
  nav { padding: 1rem; }
}
