:root {
  --red: #c00000;
  --red-dark: #8f0000;
  --ink: #1a1a1a;
  --muted: #666;
  --line: #b8b8b8;
  --line-soft: #dedede;
  --paper: #ffffff;
  --wash: #f7f7f5;
  --head: linear-gradient(#f7f7f7, #ececec);
  --btn: linear-gradient(#ffffff, #ececec);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.55;
}

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

button,
input,
textarea {
  font: inherit;
}

.wrap {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

/* ---------- Header ---------- */

header {
  border-bottom: 2px solid #222;
  padding: 16px 0;
  background: #fff;
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.monogram {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  background: #111;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -1px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wordmark {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  letter-spacing: .14em;
  border-left: 2px solid #222;
  border-right: 2px solid #222;
  padding: 0 14px;
  line-height: 1;
  white-space: nowrap;
}

.tagline {
  margin-top: 5px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
}

nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link,
.nav-button {
  appearance: none;
  border: 1px solid transparent;
  background: transparent;
  color: #333;
  padding: 8px 10px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.nav-link:hover,
.nav-button:hover {
  border-color: #aaa;
  background: #f5f5f5;
}

.contact-button {
  border-color: #999;
  background: var(--btn);
  border-radius: 3px;
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(68px, 10vw, 125px) 0 clamp(58px, 8vw, 96px);
  text-align: center;
  border-bottom: 1px solid var(--line-soft);
}

.hero-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-wash {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(255,255,255,.92),
    rgba(255,255,255,.80)
  );
}

.hero-content {
  position: relative;
  z-index: 1;
}

.eyebrow {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

h1 {
  max-width: 900px;
  margin: 0 auto;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 7vw, 6.4rem);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.045em;
}

.hero-copy {
  max-width: 720px;
  margin: 28px auto 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.7vw, 1.2rem);
  line-height: 1.7;
}

.hero-copy strong {
  color: #222;
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.btn {
  appearance: none;
  display: inline-block;
  border: 1px solid #999;
  border-radius: 3px;
  background: var(--btn);
  color: #222;
  padding: 10px 19px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
}

.btn:hover {
  background: linear-gradient(#fff, #dedede);
}

.btn-primary {
  border-color: var(--red-dark);
  background: linear-gradient(#d21f1f, #b00000);
  color: #fff;
  text-shadow: 0 1px 0 rgba(0,0,0,.25);
}

.btn-primary:hover {
  background: linear-gradient(#c01515, #980000);
}

/* ---------- Intro ---------- */

.intro {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(36px, 7vw, 84px);
  padding: clamp(58px, 8vw, 92px) 0;
  border-bottom: 1px solid var(--line-soft);
}

.section-label {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding-top: 8px;
}

.intro-copy h2,
.services-head h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -.025em;
}

.intro-copy p {
  margin-top: 20px;
  max-width: 690px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

/* Consulting box in the What We Do section.
   Inherits box styling from .service-card. */

.intro-card {
  appearance: none;
  border: 1px solid var(--line);
  color: inherit;
  text-align: left;
  cursor: pointer;
}

/* ---------- Services ---------- */

.services {
  padding: clamp(58px, 8vw, 92px) 0;
}

.services-head {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(36px, 7vw, 84px);
  align-items: end;
  margin-bottom: 30px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  background: var(--line);
  gap: 1px;
}

.service-card {
  min-height: 275px;
  background: #fff;
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: background .16s ease;
}

.service-card:hover {
  background: var(--wash);
}

.service-no {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--red);
  font-size: 15px;
  margin-bottom: 44px;
}

.service-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 14px;
}

.service-card p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
  margin-bottom: 30px;
}

.service-link {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line-soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.service-link::after {
  content: " →";
  color: var(--red);
}

.services-note {
  margin-top: 20px;
  max-width: 720px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.services-note span {
  color: var(--red);
  font-weight: 700;
  margin-right: 4px;
}

/* ---------- Crop strip ---------- */

.crop-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.crop-image {
  min-height: clamp(180px, 22vw, 300px);
  background-color: var(--wash);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* ---------- Statement ---------- */

.statement {
  border-top: 1px solid var(--line-soft);
  padding: clamp(60px, 9vw, 110px) 0;
  text-align: center;
}

.statement p {
  max-width: 900px;
  margin: 0 auto;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4.7vw, 4.4rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -.03em;
}

.statement span {
  color: var(--muted);
}

/* ---------- Footer ---------- */

footer {
  border-top: 2px solid #222;
  padding: 18px 0 22px;
  color: var(--muted);
  font-size: 12px;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-row strong {
  color: #222;
  font-weight: 700;
}

.footer-link {
  font-weight: 700;
  color: #222;
  border-bottom: 1px solid var(--line);
  padding-bottom: 1px;
}

.footer-link:hover {
  color: var(--red);
  border-bottom-color: var(--red);
}

/* ---------- Contact modal ---------- */

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
}

.modal[aria-hidden="false"] {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.42);
}

.modal-panel {
  position: relative;
  width: min(1040px, 100%);
  max-height: calc(100vh - 44px);
  overflow: hidden;
  background: #fff;
  border: 1px solid #777;
  box-shadow: 0 20px 70px rgba(0,0,0,.28);
}

.modal-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 22px;
  border-bottom: 1px solid var(--line);
  background: var(--head);
}

.modal-kicker {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.modal-head h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.1;
}

.close {
  appearance: none;
  width: 34px;
  height: 34px;
  border: 1px solid #aaa;
  background: #fff;
  color: #555;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.close:hover {
  color: #111;
  border-color: #555;
}

.modal-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  min-height: 540px;
}

.contact-form {
  padding: 24px;
  border-right: 1px solid var(--line);
  display: grid;
  gap: 14px;
  align-content: start;
}

.contact-form label {
  display: grid;
  gap: 5px;
  color: #333;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #999;
  border-radius: 2px;
  background: #fff;
  color: #222;
  padding: 10px 11px;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #555;
}

.contact-form textarea {
  min-height: 132px;
  resize: vertical;
}

.submit {
  border: 1px solid var(--red-dark);
  border-radius: 3px;
  background: linear-gradient(#d21f1f, #b00000);
  color: #fff;
  padding: 11px 15px;
  font-weight: 700;
  cursor: pointer;
}

.submit:hover {
  background: linear-gradient(#c01515, #980000);
}

.calendly-wrap {
  min-height: 540px;
  background: #fff;
}

.calendly-wrap iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 540px;
  border: 0;
}

body.modal-open {
  overflow: hidden;
}

/* ---------- Responsive ---------- */

/* Two-column placement for the What We Do section.
   Copy on the right, consulting box under the label on the left. */

@media (min-width: 861px) {
  .intro {
    grid-template-rows: auto 1fr;
    column-gap: clamp(36px, 7vw, 84px);
    row-gap: 18px;
  }

  .intro .section-label {
    grid-column: 1;
    grid-row: 1;
  }

  .intro .intro-copy {
    grid-column: 2;
    grid-row: 1 / span 2;
  }

  .intro .intro-card {
    grid-column: 1;
    grid-row: 2;
    align-self: start;
  }
}

@media (max-width: 860px) {
  .header-row {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    width: 100%;
    flex-wrap: wrap;
  }

  .intro,
  .services-head {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 230px;
  }

  .crop-strip {
    grid-template-columns: 1fr 1fr;
  }

  .modal {
    align-items: flex-start;
    overflow-y: auto;
    padding: 14px;
  }

  .modal-panel {
    max-height: none;
    overflow: visible;
  }

  .modal-grid {
    grid-template-columns: 1fr;
  }

  .contact-form {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .calendly-wrap,
  .calendly-wrap iframe {
    min-height: 680px;
  }
}

@media (max-width: 620px) {
  .wrap {
    width: min(100% - 28px, 1120px);
  }

  .wordmark {
    font-size: 20px;
    letter-spacing: .11em;
    padding: 0 10px;
  }

  .monogram {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .nav-link,
  .nav-button {
    text-align: center;
    border-color: #ccc;
  }

  .contact-button {
    grid-column: 1 / -1;
  }

  .hero {
    padding-top: 62px;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .btn {
    width: 100%;
  }
}

/* ---------- People / ethos ---------- */

.ethos {
  margin-top: 40px;
}

.ethos h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 16px;
}

.ethos p {
  max-width: 690px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.ethos p + p {
  margin-top: 18px;
}

/* ---------- Testimonials ---------- */

.quote-grid {
  display: grid;
  grid-template-columns: 1fr;
  border: 1px solid var(--line);
  background: var(--line);
  gap: 1px;
}

.quote {
  background: #fff;
  padding: 28px;
  display: flex;
  flex-direction: column;
}

.quote blockquote {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -.015em;
  margin-bottom: 26px;
}

.quote blockquote::before {
  content: "“";
  color: var(--red);
}

.quote blockquote::after {
  content: "”";
  color: var(--red);
}

.quote figcaption {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line-soft);
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.quote figcaption strong {
  display: block;
  margin-bottom: 3px;
  color: #222;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* ---------- Clients ---------- */

.clients {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 40px;
  padding-top: 34px;
  border-top: 1px solid var(--line-soft);
}

.clients-intro {
  max-width: 690px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.client-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 4px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  line-height: 1.4;
}

.client-list li:not(:last-child)::after {
  content: "·";
  color: var(--red);
  margin: 0 12px;
}

@media (min-width: 861px) {
  .quote-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .clients {
    grid-template-columns: .85fr 1.15fr;
    gap: clamp(36px, 7vw, 84px);
  }
}
