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

:root {
  --ink: #1c2b33;
  --paper: #eef1ef;
  --line: #c7cfcb;
  --brass: #9c7a3f;
  --sage: #5f7466;
  --sage-light: #e8eeea;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: 'Inter', system-ui, sans-serif;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }

/* ── Header ── */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 26px 6vw;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  background: var(--paper);
  z-index: 10;
}
.mark {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: 0.01em;
}
nav { display: flex; gap: 32px; font-size: 0.92rem; }
nav a { opacity: 0.7; transition: opacity .2s; }
nav a:hover, nav a.active { opacity: 1; }

/* ── Hero ── */
.hero {
  padding: 13vh 6vw 11vh;
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.hero .eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 24px;
}
.hero h1 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(2.4rem, 5.2vw, 4.4rem);
  line-height: 1.05;
  max-width: 15ch;
}
.hero h1 em { font-style: italic; color: var(--sage); }
.hero .lead {
  margin-top: 28px;
  max-width: 44ch;
  font-size: 1.06rem;
  opacity: 0.82;
}
.hero .accent-num {
  position: absolute;
  right: 6vw;
  top: 13vh;
  font-family: 'Fraunces', serif;
  font-size: clamp(4rem, 10vw, 8rem);
  color: var(--line);
  line-height: 1;
  user-select: none;
}

/* ── Services strip ── */
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
}
.services .svc {
  padding: 52px 6vw;
  border-right: 1px solid var(--line);
}
.services .svc:last-child { border-right: none; }
.svc-num {
  font-family: 'Fraunces', serif;
  font-size: 0.9rem;
  color: var(--brass);
  margin-bottom: 16px;
}
.svc h3 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.15rem;
  margin-bottom: 10px;
}
.svc p { font-size: 0.94rem; opacity: 0.78; }

/* ── Photo placeholder / real image ── */
.photo-block {
  width: 100%;
  background: var(--sage-light);
  border-bottom: 1px solid var(--line);
}
.photo-block img { width: 100%; display: block; }
/* height set inline per block */

/* ── About split ── */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 8vw;
  padding: 12vh 6vw;
  border-bottom: 1px solid var(--line);
}
.about-split .label {
  font-size: 0.8rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--sage);
}
.about-split h2 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  line-height: 1.15;
  margin-top: 16px;
  max-width: 16ch;
}
.about-split .copy p {
  margin-bottom: 18px;
  opacity: 0.85;
  font-size: 1.02rem;
}
.about-split .copy p:last-child { margin-bottom: 0; }

/* ── Team list ── */
.team {
  padding: 10vh 6vw;
  border-bottom: 1px solid var(--line);
}
.team .section-label {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 40px;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.member {
  padding: 36px 0;
  border-top: 1px solid var(--line);
}
.member-name {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.member-title { font-size: 0.88rem; opacity: 0.65; }

/* ── Values list (about page) ── */
.values {
  padding: 10vh 6vw;
  border-bottom: 1px solid var(--line);
}
.values .section-label {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 48px;
}
.values-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; }
.value-item {
  padding: 40px 40px 40px 0;
  border-top: 1px solid var(--line);
}
.value-item:nth-child(even) { padding-left: 40px; border-left: 1px solid var(--line); }
.value-item h3 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.value-item p { font-size: 0.94rem; opacity: 0.78; max-width: 36ch; }

/* ── Contact section ── */
.contact-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--line);
}
.contact-info {
  padding: 10vh 6vw;
  border-right: 1px solid var(--line);
}
.contact-info .label {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 32px;
}
.contact-info h2 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.15;
  margin-bottom: 32px;
  max-width: 18ch;
}
.contact-detail {
  margin-bottom: 28px;
}
.contact-detail .cd-label {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 6px;
}
.contact-detail p, .contact-detail a {
  font-size: 1rem;
  opacity: 0.85;
  line-height: 1.55;
}
.contact-hours {
  padding: 10vh 6vw;
}
.contact-hours .label {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 32px;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  font-size: 0.95rem;
}
.hours-row:last-child { border-bottom: 1px solid var(--line); }
.hours-row .day { opacity: 0.65; }

/* ── Map placeholder ── */
.map-placeholder {
  height: 320px;
  background: var(--sage-light);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage);
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ── Footer ── */
footer {
  padding: 5vh 6vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.87rem;
  opacity: 0.6;
}
footer a { opacity: 1; }

/* ── Responsive ── */
@media (max-width: 860px) {
  .services { grid-template-columns: 1fr; }
  .services .svc { border-right: none; border-bottom: 1px solid var(--line); }
  .about-split { grid-template-columns: 1fr; gap: 32px; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .values-list { grid-template-columns: 1fr; }
  .value-item:nth-child(even) { padding-left: 0; border-left: none; }
  .contact-block { grid-template-columns: 1fr; }
  .contact-info { border-right: none; border-bottom: 1px solid var(--line); }
  nav { display: none; }
  .hero .accent-num { display: none; }
}
@media (max-width: 560px) {
  .team-grid { grid-template-columns: 1fr; }
}
