/* Home - hero overrides */
.home-hero { padding-top: 0; padding-bottom: clamp(64px, 9vh, 120px); }
.home-hero .hero__content {
  margin-left: 0;
  margin-right: auto;
  max-width: 640px;
  text-align: left;
}
.home-hero .hero__actions { justify-content: flex-start; }
.home-hero h1 { font-size: clamp(36px, 6vw, 66px); }

/* Three pillars - extra space */
.home-pillars { padding-block: var(--space-9); }

/* Services preview */
.home-services .service-card__title { font-size: clamp(22px, 2vw, 28px); }

/* Closing CTA */
.closing-cta { text-align: center; }
.closing-cta h2 { max-width: 800px; margin: 0 auto var(--space-5); }
.closing-cta .btn { margin-top: var(--space-6); }

/* Services page menu groups */
.menu-section + .menu-section { margin-top: var(--space-8); }
.menu-aftercare {
  max-width: 640px;
  margin: var(--space-9) auto 0;
  text-align: center;
}

/* About page */
.about-hero {
  min-height: 60vh;
  display: grid;
  align-items: end;
  padding-block: var(--space-9);
  position: relative;
  isolation: isolate;
}
.about-hero__media {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}
.about-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-hero__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26, 26, 26, 0.0) 40%, rgba(26, 26, 26, 0.5) 100%);
}
.about-hero h1 { color: var(--bone-cream); }

.founder-letter { padding-block: var(--space-9); }
.founder-letter p { margin-bottom: var(--space-4); font-size: 18px; line-height: 1.7; }

.philosophy-row {
  display: grid;
  gap: var(--space-7);
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
@media (max-width: 768px) {
  .philosophy-row { grid-template-columns: 1fr; }
  .philosophy-row > picture:first-child { order: 2; }
}
.philosophy-row img { width: 100%; height: auto; }

/* Merged About: Philosophy + Specialisations stacked in one text column */
#about .philosophy-row picture {
  display: block;
  overflow: hidden;
  border-radius: 42% 58% 48% 52% / 55% 45% 55% 45%;
  box-shadow: 0 24px 48px rgba(20, 30, 25, 0.35);
}
#about .philosophy-row img {
  display: block;
  border-radius: inherit;
}

/* Artist section portrait gets its own organic shape (distinct from About) */
#artist .philosophy-row picture {
  display: block;
  overflow: hidden;
  border-radius: 58% 42% 38% 62% / 48% 60% 40% 52%;
  box-shadow: 0 24px 48px rgba(20, 30, 25, 0.35);
}
#artist .philosophy-row img {
  display: block;
  border-radius: inherit;
}
.about__eyebrow-second { margin-top: var(--space-6); }
.about__subhead {
  font-size: clamp(24px, 2.5vw, 32px);
  margin: 0 0 var(--space-4);
}
.about__cta-btn { margin-top: var(--space-6); display: inline-flex; }

/* Contact page */
.contact-grid {
  display: grid;
  gap: var(--space-7);
  grid-template-columns: 1fr 1fr;
  align-items: start;
}
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
}
.contact-info dl {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}
.map-column {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}
.contact-info dt {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: var(--space-2);
}
.contact-info dd {
  font-size: 18px;
  line-height: 1.55;
}
.contact-info dd a:hover { color: var(--deju-forest); text-decoration: underline; text-underline-offset: 4px; }

.directions {
  background: var(--pure-bone);
  padding: var(--space-7);
  border: 1px solid var(--whisper);
  margin-top: var(--space-7);
}
.directions h3 { font-size: clamp(22px, 2vw, 28px); margin-bottom: var(--space-4); }
