/* ── Hero ── */
.hero {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  min-height: 480px;
  background: var(--sand);
}

.hero-text {
  padding: 56px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.hero-text h1 {
  font-family: 'Lora', serif;
  font-size: 52px;
  font-weight: 600;
  color: var(--warm-dark);
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-text h1 em {
  font-style: italic;
  font-weight: 400;
}

.hero-subhead {
  font-size: 18px;
  color: var(--umber);
  line-height: 1.7;
  max-width: 400px;
  margin-bottom: 32px;
  letter-spacing: 0.01em;
}

.secondary-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 15px;
  color: var(--rose);
  text-decoration: none;
  margin-top: 12px;
}

.secondary-link:hover { color: var(--rose-deep); }

.hero-image {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 44px 40px 20px;
}

.portrait-frame {
  position: relative;
  flex-shrink: 0;
}

.portrait-frame img {
  width: 260px;
  height: 360px;
  object-fit: cover;
  object-position: top center;
  border-radius: 16px;
  display: block;
  box-shadow: 0 8px 28px rgba(26,20,16,0.12);
}

.tenure-badge {
  position: absolute;
  bottom: -14px;
  right: -14px;
  background: #faf7f3;
  border: 0.5px solid #ddd5cb;
  border-radius: 12px;
  padding: 10px 14px;
  z-index: 2;
}

.tenure-badge .num {
  font-family: 'Lora', serif;
  font-size: 32px;
  font-weight: 600;
  color: var(--rose);
  line-height: 1;
}

.tenure-badge .label {
  font-size: 13px;
  color: var(--umber);
  font-family: 'Inter', sans-serif;
}

/* ── Story ── */
.story {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 48px;
  padding: 72px 40px;
  background: var(--cream);
  border-top: 0.5px solid #e5ded5;
}

.story h2 {
  font-family: 'Lora', serif;
  font-size: 36px;
  font-weight: 600;
  color: var(--warm-dark);
  line-height: 1.25;
  margin-bottom: 24px;
}

.story h2 em {
  font-style: italic;
  font-weight: 400;
}

.story p {
  font-size: 16px;
  color: var(--umber);
  line-height: 1.85;
  letter-spacing: 0.01em;
}

.credential-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cred-card {
  background: var(--blush);
  border-left: 3px solid var(--rose);
  padding: 16px 20px;
  border-radius: 0 16px 16px 0;
}

.cred-card h3 {
  font-family: 'Lora', serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--warm-dark);
  margin-bottom: 6px;
}

.cred-card p {
  font-size: 14px;
  color: var(--clay);
  line-height: 1.65;
  letter-spacing: 0.01em;
}

/* ── Scene strip ── */
.scene-strip {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4px;
  height: 500px;
  background: var(--stone);
  overflow: hidden;
}

.scene-strip img,
.scene-strip .img-placeholder {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

/* ── Services ── */
.services {
  padding: 64px 40px;
  background: var(--sand);
  text-align: center;
}

.services h2 {
  font-family: 'Lora', serif;
  font-size: 34px;
  font-weight: 600;
  color: var(--warm-dark);
  margin-bottom: 40px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  text-align: left;
}

.service-card {
  background: var(--cream);
  border-radius: 16px;
  padding: 24px 22px;
}

.service-icon {
  width: 44px;
  height: 44px;
  background: var(--sand);
  border: 0.5px solid #ddd5cb;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.service-icon .ti {
  font-size: 22px;
  color: var(--rose);
}

.service-card h3 {
  font-family: 'Lora', serif;
  font-size: 19px;
  font-weight: 600;
  color: var(--warm-dark);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 14px;
  color: var(--clay);
  line-height: 1.7;
  letter-spacing: 0.01em;
}

/* ── CTA bar ── */
.cta-bar {
  background: var(--espresso);
  padding: 48px 40px;
  text-align: center;
}

.cta-bar h2 {
  font-family: 'Lora', serif;
  font-size: 38px;
  font-weight: 600;
  color: #faf7f3;
  margin-bottom: 16px;
}

.cta-bar h2 em {
  font-style: italic;
  font-weight: 400;
}

.cta-bar .address {
  font-size: 16px;
  color: var(--driftwood);
  margin-bottom: 24px;
  letter-spacing: 0.01em;
}

.cta-bar .address a {
  color: var(--driftwood);
  text-decoration: none;
}

/* ── Footer ── */
footer {
  background: var(--espresso);
  border-top: 0.5px solid rgba(255,255,255,0.06);
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

footer span {
  font-size: 13px;
  color: var(--smoke);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; }
  .hero-image img, .hero-image .img-placeholder { min-height: 400px; }
  .story { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hero-text { padding: 32px 20px; }
  .story { padding: 40px 20px; gap: 32px; }
  .services { padding: 40px 20px; }
  .cta-bar { padding: 40px 20px; }
  footer { padding: 16px 20px; flex-direction: column; gap: 8px; text-align: center; }
  .services-grid { grid-template-columns: 1fr; }
  .scene-strip { grid-template-columns: 1fr; }
  .scene-strip > *:not(:first-child) { display: none; }
}
