/* ---------- Tokens: cream & coffee ---------- */
:root {
  --cream:        #faf3e7;
  --cream-deep:   #f2e8d8;
  --cream-line:   #e4d6bf;
  --cream-muted:  #d9c7a8;
  --coffee:       #4a3427;
  --coffee-soft:  #6f523f;
  --coffee-faint: #8a725f;
  --accent:       #a9754e;
  --accent-light: #c99a6e;

  --font-head: 'Fraunces', Georgia, serif;
  --font-body: 'Work Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --max-width: 1120px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--coffee);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

/* ---------- Nav ---------- */
.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid var(--cream-line);
}

.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.brand {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.tabs {
  display: flex;
  gap: 28px;
}

.tab {
  position: relative;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  color: var(--coffee-soft);
  padding: 6px 2px;
  transition: color 0.25s ease;
}

.tab::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -2px;
  height: 1px;
  background: var(--accent);
  transition: right 0.3s ease;
}

.tab:hover {
  color: var(--coffee);
}

.tab.active {
  color: var(--coffee);
}

.tab.active::after {
  right: 0;
}

/* ---------- Sections ---------- */
.section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 32px;
}

.section--about {
  align-items: flex-start;
  padding-top: 56px;
}

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

.section--about      { background: var(--cream); }
.section--working    { background: var(--cream-deep); }
.section--offerings  { background: var(--cream); }
.section--contact    { background: var(--cream-deep); }

.eyebrow {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin: 0 0 12px;
  font-weight: 500;
}

h1, h2 {
  font-family: var(--font-head);
  font-weight: 500;
  color: var(--coffee);
  margin: 0 0 20px;
  line-height: 1.15;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.9rem, 4vw, 2.5rem); }

.lede {
  font-size: 1.15rem;
  color: var(--coffee-soft);
  margin: 0 0 18px;
}

.body-text {
  font-size: 1rem;
  color: var(--coffee-soft);
  margin: 0 0 18px;
}

.body-text strong {
  font-weight: 600;
  color: var(--coffee);
}

/* ---------- About ---------- */
.hero-quote {
  font-family: var(--font-head);
  font-weight: 500;
  color: var(--coffee);
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  line-height: 1.4;
  margin: 0 0 40px;
}

.intro-band {
  background: var(--coffee);
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 96px 32px;
  margin-bottom: 72px;
}

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

.about-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: start;
}

.about-image {
  display: flex;
  justify-content: center;
  position: sticky;
  top: 140px;
}

.profile-photo {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center bottom;
  border-radius: 16px;
  display: block;
}

.credentials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.credentials-headline p {
  font-family: var(--font-head);
  font-weight: 500;
  color: var(--cream);
  font-size: clamp(1.4rem, 2.8vw, 1.85rem);
  line-height: 1.35;
  margin: 0 0 28px;
}

.credentials-headline p:last-child {
  margin-bottom: 0;
}

.credentials-body .body-text {
  max-width: 52ch;
  color: var(--cream-muted);
}

.inline-say-hello {
  color: var(--coffee);
  font-weight: 500;
  border-bottom: 1.5px solid var(--accent);
  padding-bottom: 1px;
  white-space: nowrap;
  transition: color 0.25s ease;
}

.inline-say-hello:hover {
  color: var(--accent);
}

.intro-band .inline-say-hello {
  display: inline-block;
  margin-top: 14px;
  color: var(--cream);
  border-bottom-color: var(--accent-light);
}

.intro-band .inline-say-hello:hover {
  color: var(--accent-light);
}

/* ---------- Working Together ---------- */
.working-content {
  max-width: 960px;
}

.services {
  margin-top: 56px;
}

.working-outro {
  margin-top: 0;
}

.services-heading {
  font-family: var(--font-head);
  font-weight: 500;
  color: var(--coffee);
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.3;
  max-width: 640px;
  margin: 0 0 32px;
}

.services-list {
  border-top: 1px solid var(--cream-line);
}

.services-row {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid var(--cream-line);
}

.services-row h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--coffee);
  margin: 0;
}

.services-row p {
  font-family: var(--font-body);
  font-size: 0.98rem;
  color: var(--coffee-soft);
  margin: 0;
}

.say-hello {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  font-family: var(--font-head);
  font-size: 1.3rem;
  color: var(--coffee);
  border-bottom: 1.5px solid var(--accent);
  padding-bottom: 4px;
  transition: gap 0.25s ease, color 0.25s ease;
}

.say-hello .arrow {
  transition: transform 0.25s ease;
}

.say-hello:hover {
  gap: 14px;
  color: var(--accent);
}

/* ---------- Contact ---------- */
.contact-content {
  max-width: 760px;
}

.contact-form {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field label {
  font-size: 0.85rem;
  color: var(--coffee-soft);
  letter-spacing: 0.02em;
}

.field input,
.field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--coffee);
  background: var(--cream-deep);
  border: 1px solid var(--cream-line);
  border-radius: 10px;
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--accent);
  background: var(--cream);
}

.field textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  align-self: flex-start;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--cream);
  background: var(--coffee);
  border: none;
  border-radius: 999px;
  padding: 13px 32px;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.15s ease;
}

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

.submit-btn:active {
  transform: scale(0.97);
}

.form-status {
  margin: 0;
  font-size: 0.9rem;
  color: var(--accent);
  min-height: 1.2em;
}

/* ---------- Footer ---------- */
.site-footer {
  text-align: center;
  padding: 32px;
  font-size: 0.85rem;
  color: var(--coffee-faint);
  background: var(--cream);
  border-top: 1px solid var(--cream-line);
}

/* ---------- Responsive ---------- */
@media (max-width: 720px) {
  .nav-inner {
    padding: 16px 20px;
  }
  .tabs {
    gap: 18px;
  }
  .section {
    padding: 80px 20px;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-image {
    order: -1;
    position: static;
  }
  .profile-photo {
    max-width: 220px;
  }
  .services-row {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 24px 0;
  }
  .intro-band {
    padding: 64px 20px;
    margin-bottom: 48px;
  }
  .credentials {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
