/* ==========================================================================
   Gwenchana Home Based Care and Occupational Services
   Olive green + charcoal/silver, Roboto throughout — hierarchy carried by
   weight, scale and space, not competing typefaces.
   ========================================================================== */

:root {
  --olive:        #5A7A1F;
  --olive-deep:   #14170F;
  --olive-mid:    #48630F;
  --olive-light:  #7CA83F;
  --olive-soft:   #EEF3E4;
  --ink:          #262B22;
  --silver:       #B8BAB8;
  --silver-deep:  #6B6D6C;
  --paper:        #FAF9F5;
  --white:        #FFFFFF;

  --font: 'Young Serif', Georgia, 'Times New Roman', serif;

  --container: 1240px;
  --gutter: clamp(1.5rem, 5vw, 4.5rem);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

html, body { overflow-x: hidden; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 1rem;
}
.eyebrow.on-dark { color: var(--silver); }

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

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem var(--gutter);
  background: #FFFFFF;
  box-shadow: 0 1px 0 rgba(38, 43, 34, 0.08);
  transition: padding 0.25s ease;
}

.site-header.is-scrolled { padding-top: 0.35rem; padding-bottom: 0.35rem; }

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
}

.brand img { height: 104px; width: 104px; object-fit: contain; transition: height 0.25s ease, width 0.25s ease; }
.site-header.is-scrolled .brand img { height: 64px; width: 64px; }

.main-nav { display: flex; align-items: center; gap: 2.4rem; }

.main-nav a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink);
  opacity: 0.9;
  position: relative;
  transition: opacity 0.2s ease;
  padding-bottom: 4px;
}

.main-nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 1px;
  background: currentColor;
  transition: right 0.3s ease;
}
.main-nav a:hover { opacity: 1; }
.main-nav a:hover::after,
.main-nav a.is-active::after { right: 0; }

.nav-cta {
  border: 1px solid currentColor;
  padding: 0.55rem 1.3rem;
  border-radius: 2px;
  font-size: 0.78rem !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); }

/* ---------------------------------------------------------------------- */
/* Nav dropdown — Services submenu                                        */
/* ---------------------------------------------------------------------- */

.nav-item {
  position: relative;
  display: flex;
  align-items: center;
}

.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  padding: 0.3rem;
  margin-left: 0.15rem;
  cursor: pointer;
  color: inherit;
  opacity: 0.9;
}
.dropdown-toggle:hover { opacity: 1; }

.dropdown-toggle .caret {
  display: block;
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  transition: transform 0.2s ease;
}
.dropdown-toggle[aria-expanded="true"] .caret { transform: rotate(180deg); }

.dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 320px;
  margin: 0.7rem 0 0;
  padding: 0.6rem 0;
  list-style: none;
  background: var(--white);
  border: 1px solid rgba(38,43,34,0.12);
  border-radius: 2px;
  box-shadow: 0 16px 32px rgba(38,43,34,0.14);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 50;
}

.nav-item.has-dropdown:hover .dropdown-menu,
.nav-item.has-dropdown.is-open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 0.65rem 1.3rem;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  opacity: 1;
}
.dropdown-menu a::after { content: none; }
.dropdown-menu a:hover { background: var(--olive-soft); color: var(--olive-deep); }

/* ---------------------------------------------------------------------- */
/* Hero — full-bleed image, content layered over it                       */
/* ---------------------------------------------------------------------- */

.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 5rem;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 60%;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(38,43,34,0.35) 0%, rgba(38,43,34,0.05) 20%, rgba(250,249,245,0.6) 45%, rgba(250,249,245,0.92) 65%, rgba(250,249,245,0.96) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--ink);
  padding: 2rem var(--gutter);
  max-width: 820px;
}

.hero h1 {
  font-size: clamp(2.4rem, 5.6vw, 4.6rem);
  font-weight: 700;
  line-height: 1.08;
  margin: 3rem 0 1.5rem;
  letter-spacing: -0.01em;
}

.hero h1 .accent { color: var(--olive-light); font-style: italic; }

.hero p {
  font-size: 1.15rem;
  font-weight: 400;
  max-width: 560px;
  color: var(--olive-deep);
  padding-left: 1.3rem;
  border-left: 2px solid var(--olive);
  margin: 3rem 0 2.4rem;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.95rem 2rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}
.btn-primary { background: var(--olive); color: var(--white); border: 1px solid var(--olive); }
.btn-primary:hover { background: var(--olive-mid); transform: translateY(-1px); }
.btn-ghost { border: 1px solid rgba(255,255,255,0.55); color: var(--white); }
.btn-ghost:hover { background: rgba(255,255,255,0.12); }

/* ---------------------------------------------------------------------- */
/* Needs — tinted centered band, distinct from the statement columns      */
/* ---------------------------------------------------------------------- */

.needs { background: var(--olive-soft); padding: 5rem 0; }

.needs-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.needs-inner .eyebrow { margin: 0 0 1.2rem; }

.needs-inner h2 {
  font-size: clamp(2rem, 3.6vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--ink);
  margin: 0 0 2rem;
}

.needs-lead {
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--olive-deep);
  margin: 0 0 1.8rem;
}

.needs-inner p {
  color: var(--silver-deep);
  font-size: 1rem;
  line-height: 1.75;
  margin: 0 0 1.4rem;
}

.needs-inner .text-link { margin-top: 0.6rem; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.95rem 2rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  background: var(--olive);
  color: var(--white);
  border: 1px solid var(--olive);
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}
.text-link:hover { background: var(--olive-mid); border-color: var(--olive-mid); color: var(--white); transform: translateY(-1px); }

/* ---------------------------------------------------------------------- */
/* Story split — contained photo + solid dark panel, side by side          */
/* ---------------------------------------------------------------------- */

.story-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 640px;
}

.story-media { overflow: hidden; }
.story-media img { width: 100%; height: 100%; object-fit: cover; min-height: 420px; }

.story-content {
  background: var(--ink);
  color: var(--paper);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.5rem, 5vw, 5.5rem);
}

.story-content h2 {
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 1.5rem;
  max-width: 460px;
}

.story-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(250,249,245,0.78);
  max-width: 480px;
  margin: 0 0 2rem;
}

.text-link-on-dark {
  background: transparent;
  color: var(--paper);
  border-color: rgba(250,249,245,0.55);
}
.text-link-on-dark:hover { background: rgba(255,255,255,0.12); color: var(--paper); border-color: var(--olive-soft); }

/* ---------------------------------------------------------------------- */
/* Statement — bold full-bleed dark block, newspaper-style columns         */
/* ---------------------------------------------------------------------- */

.statement { background: var(--paper); padding: 6rem 0; }
.statement-inner { max-width: none; }

.statement-label-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-bottom: 2.4rem;
  margin-bottom: 4.5rem;
  border-bottom: 1px solid rgba(38,43,34,0.15);
}
.statement-label-row .eyebrow { margin: 0; font-size: 0.85rem; }

.statement-rule {
  border-top: 1px solid rgba(38,43,34,0.15);
  margin-bottom: 2.5rem;
}

.statement-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(38,43,34,0.15);
}

.statement-col {
  padding-left: 5rem;
  border-left: 1px solid rgba(38,43,34,0.15);
}
.statement-col:first-child { padding-left: 0; border-left: none; }

.statement-col h2 {
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 1.3rem;
  line-height: 1.25;
}

.statement-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 2px;
  margin-top: 0.5rem;
}

.statement p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--silver-deep);
  margin: 0 0 1.5rem;
}
.statement-col p:last-of-type { margin-bottom: 1.8rem; }

/* ---------------------------------------------------------------------- */
/* Services — numbered editorial list, not a card grid                    */
/* ---------------------------------------------------------------------- */

.services { padding-top: 7rem; padding-bottom: 7rem; }

.service-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(38,43,34,0.12);
}

.service-row {
  display: grid;
  grid-template-columns: 4.5rem 1fr;
  gap: 1.2rem;
  align-items: start;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(38,43,34,0.12);
}

.service-row:nth-child(odd) { padding-right: 2.2rem; border-right: 1px solid rgba(38,43,34,0.12); }
.service-row:nth-child(even) { padding-left: 2.2rem; }

.service-list.service-list--stack { grid-template-columns: 1fr; }
.service-list--stack .service-row:nth-child(odd) { padding-right: 0; border-right: none; }
.service-list--stack .service-row:nth-child(even) { padding-left: 0; }

.service-row.services-head {
  display: block;
  align-self: start;
}
.service-row.services-head:hover { background: none; }
.services-head h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); margin: 0 0 1rem; color: var(--ink); }
.services-head p { color: var(--silver-deep); margin: 0; font-size: 0.92rem; }

.service-icon {
  width: 4.5rem;
  height: 4.5rem;
  object-fit: contain;
}

.service-row h3 { margin: 0 0 0.4rem; font-size: 1.05rem; color: var(--ink); line-height: 1.3; }
.service-row p { margin: 0 0 0.8rem; font-size: 0.88rem; color: var(--silver-deep); }

.service-row .text-link { font-size: 0.7rem; padding: 0.6rem 1.3rem; }

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

.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.75);
  padding: 4.5rem 0 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.footer-brand { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.2rem; }
.footer-brand img { height: 96px; width: 96px; object-fit: contain; }
.footer-brand strong { color: var(--white); font-size: 1.05rem; letter-spacing: 0.02em; }

.footer-top > div > p { font-size: 0.88rem; max-width: 320px; margin: 0; }

.footer-col h5 {
  color: var(--white);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 1.2rem;
}

.footer-col a, .footer-col p {
  display: block;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  margin: 0 0 0.7rem;
  transition: color 0.2s ease;
}
.footer-col a:hover { color: var(--olive-soft); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.8rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  flex-wrap: wrap;
  gap: 0.8rem;
}
.footer-bottom .legal-links a { color: rgba(255,255,255,0.45); margin-left: 1.4rem; }
.footer-bottom .legal-links a:first-child { margin-left: 0; }
.footer-bottom .legal-links a:hover { color: var(--olive-soft); }

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

@media (max-width: 980px) {
  .site-header { padding: 0.6rem var(--gutter); }
  .brand img,
  .site-header.is-scrolled .brand img { height: 56px; width: 56px; }

  .hero-content {
    width: 100%;
    background: linear-gradient(180deg, rgba(250,249,245,0) 0%, rgba(250,249,245,0.85) 12%, rgba(250,249,245,0.85) 100%);
  }

  .main-nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    background: var(--paper);
    flex-direction: column; align-items: stretch;
    justify-content: flex-start;
    padding: 0 var(--gutter);
    gap: 0;
    box-shadow: 0 0 0 rgba(0,0,0,0);
    transition: max-height 0.35s ease, box-shadow 0.35s ease;
  }
  .main-nav.is-open {
    max-height: calc(100vh - 4.5rem);
    overflow-y: auto;
    box-shadow: 0 12px 24px rgba(0,0,0,0.12);
    padding: 0.5rem var(--gutter) 1.5rem;
  }
  .main-nav a {
    color: var(--ink) !important;
    font-size: 1rem;
    width: 100%;
    padding: 0.9rem 0;
    border-bottom: 1px solid rgba(38,43,34,0.1);
  }
  .main-nav a::after { content: none; }
  .main-nav .nav-cta {
    border: 1px solid var(--olive);
    text-align: center;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
  }
  .nav-toggle { display: flex; z-index: 110; position: relative; }
  .nav-toggle span { transition: transform 0.25s ease, opacity 0.25s ease; }
  .nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.is-open span:nth-child(2) { opacity: 0; }
  .nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .main-nav .nav-item {
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    border-bottom: 1px solid rgba(38,43,34,0.1);
  }
  .main-nav .nav-item > a { border-bottom: none; flex: 1; }
  .dropdown-toggle { color: var(--ink); }
  .dropdown-menu {
    position: static;
    flex-basis: 100%;
    min-width: 0;
    width: 100%;
    margin: 0;
    padding: 0;
    background: none;
    border: none;
    box-shadow: none;
    opacity: 1;
    visibility: hidden;
    transform: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }
  .nav-item.has-dropdown.is-open .dropdown-menu {
    visibility: visible;
    max-height: 32rem;
  }
  .dropdown-menu a { padding: 0.7rem 0 0.7rem 1rem; font-size: 0.92rem; border-bottom: none; }

  .needs { padding: 4.5rem 0; }
  .needs-lead { font-size: 1.15rem; }

  .story-split { grid-template-columns: 1fr; min-height: 0; }
  .story-media img { min-height: 320px; }

  .statement-label-row { flex-wrap: wrap; }
  .statement-columns { grid-template-columns: 1fr; gap: 2rem; }
  .statement-col { padding-left: 0; border-left: none; padding-top: 2rem; border-top: 1px solid rgba(38,43,34,0.15); }
  .statement-col:first-child { padding-top: 0; border-top: none; }

  .service-list { grid-template-columns: 1fr; }
  .service-row:nth-child(odd) { padding-right: 0; border-right: none; }
  .service-row:nth-child(even) { padding-left: 0; }
  .service-row.services-head { padding-bottom: 2.5rem; }

  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .hero-content { padding-bottom: 3.5rem; margin-top: 0.5rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .footer-top { grid-template-columns: 1fr; }
  .scroll-cue { display: none; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-bottom .legal-links a { margin-left: 0; margin-right: 1.2rem; }
}

/* ==========================================================================
   Inner pages — About, Services, Contact, Service detail, Legal
   ========================================================================== */

/* ---------------------------------------------------------------------- */
/* Inner hero — tinted band, no photo, used on every inner page           */
/* ---------------------------------------------------------------------- */

.inner-hero {
  background: var(--olive-soft);
  padding: 10.5rem var(--gutter) 3.5rem;
}

.inner-hero-inner { max-width: var(--container); margin: 0 auto; }

.service-hero-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 3rem;
  align-items: center;
}

.service-hero-media img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 2px;
  display: block;
}

.inner-hero .breadcrumb {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 1.1rem;
}

.inner-hero .breadcrumb a { color: var(--olive-deep); opacity: 0.7; }
.inner-hero .breadcrumb a:hover { opacity: 1; text-decoration: underline; }
.inner-hero .breadcrumb .sep { margin: 0 0.5rem; color: rgba(38,43,34,0.3); }

.inner-hero h1 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--ink);
  margin: 0;
  max-width: 820px;
  letter-spacing: -0.01em;
}

/* ---------------------------------------------------------------------- */
/* Generic content section — About body copy, legal pages                */
/* ---------------------------------------------------------------------- */

.content-section { padding: 5rem 0; }
.content-section + .content-section { padding-top: 0; }

.content-narrow {
  max-width: 760px;
  margin: 0 auto;
}

.content-section h2 {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 1.4rem;
  line-height: 1.25;
}

.content-section h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  margin: 2.2rem 0 0.9rem;
}

.content-section p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--silver-deep);
  margin: 0 0 1.4rem;
}

.content-section p.lead {
  font-size: 1.2rem;
  color: var(--olive-deep);
  line-height: 1.6;
}

.content-section ul {
  margin: 0 0 1.5rem;
  padding-left: 1.3rem;
  color: var(--silver-deep);
}
.content-section ul li { font-size: 1rem; line-height: 1.8; margin-bottom: 0.5rem; }

.content-section .text-link { margin-top: 1rem; }

/* ---------------------------------------------------------------------- */
/* About — intro, ethos and founder card (About-page-only components)     */
/* ---------------------------------------------------------------------- */

.about-intro { padding: 6rem 0 2rem; }

.about-intro-wrap::after { content: ''; display: table; clear: both; }

.about-intro-media {
  position: relative;
  float: left;
  width: min(380px, 42%);
  margin: 0.3rem 2.75rem 1.5rem 0;
}

.about-intro-media::before {
  content: '';
  position: absolute;
  top: -1.25rem; left: -1.25rem;
  right: 1.5rem; bottom: 1.5rem;
  border: 1px solid var(--olive);
  border-radius: 2px;
  z-index: 0;
}

.about-intro-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 2px;
  display: block;
}

.about-intro-text h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.25;
  margin: 0 0 1.4rem;
}

.about-intro-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--silver-deep);
  margin: 0 0 1.3rem;
}

.about-intro-text p:first-of-type {
  font-size: 1.15rem;
  color: var(--olive-deep);
}

.about-guides {
  background: var(--olive-soft);
  padding: 6rem 0;
  border-top: 1px solid rgba(38,43,34,0.12);
  border-bottom: 1px solid rgba(38,43,34,0.12);
}

.about-guides-inner { max-width: 980px; margin: 0 auto; text-align: center; }

.about-guides-inner h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 2.5rem;
}

.about-guides-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  text-align: left;
}

.about-guides-columns p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--silver-deep);
  margin: 0;
  padding-left: 2rem;
  border-left: 1px solid rgba(38,43,34,0.15);
}
.about-guides-columns p:first-child { padding-left: 0; border-left: none; }

.founder-spotlight { padding: 6rem 0 7.5rem; }

.founder-spotlight-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
}

.founder-spotlight-media { position: relative; margin: 0; }

.founder-spotlight-media img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 2px;
  display: block;
}

.founder-spotlight-media figcaption {
  position: absolute;
  left: 1.25rem;
  bottom: -1rem;
  background: var(--ink);
  color: var(--paper);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.7rem 1.2rem;
  border-radius: 2px;
}

.founder-spotlight-body { padding-top: 0.5rem; }

.founder-spotlight-body h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 1.6rem;
}

.founder-spotlight-body p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--silver-deep);
  margin: 0 0 1.3rem;
}
.founder-spotlight-body p:last-of-type { margin-bottom: 0; }

.founder-spotlight-body p:first-of-type::first-letter {
  font-family: var(--font);
  font-size: 3.8rem;
  font-weight: 700;
  color: var(--olive);
  float: left;
  line-height: 0.8;
  padding-right: 0.6rem;
  padding-top: 0.4rem;
}

.about-cta {
  background: var(--ink);
  padding: 4.5rem 0;
  text-align: center;
}

/* ---------------------------------------------------------------------- */
/* Services listing page                                                  */
/* ---------------------------------------------------------------------- */

.services-intro { padding: 5rem 0 0; }
.services-intro .content-narrow { text-align: center; }

/* ---------------------------------------------------------------------- */
/* Service detail — content + sidebar layout                              */
/* ---------------------------------------------------------------------- */

.service-detail {
  padding-top: 5rem;
  padding-bottom: 7rem;
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
}

.service-body p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--silver-deep);
  margin: 0 0 1.4rem;
}

.service-body p.lead {
  font-size: 1.2rem;
  color: var(--olive-deep);
  line-height: 1.6;
}

.service-body h2 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ink);
  margin: 2.4rem 0 1rem;
  line-height: 1.3;
}

.service-body ul {
  margin: 0 0 1.5rem;
  padding-left: 1.3rem;
  color: var(--silver-deep);
}
.service-body ul li { font-size: 1rem; line-height: 1.8; margin-bottom: 0.5rem; }

.service-body a:not(.text-link) { color: var(--olive); border-bottom: 1px solid var(--olive-light); }
.service-body a:not(.text-link):hover { color: var(--olive-mid); }

.service-body .text-link { margin-top: 1rem; }

.service-sidebar { position: sticky; top: 6.5rem; display: flex; flex-direction: column; gap: 1.5rem; }

.sidebar-card {
  background: var(--white);
  border: 1px solid rgba(38,43,34,0.12);
  border-radius: 2px;
  padding: 2rem;
}

.sidebar-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 1.4rem;
}

.sidebar-card.sidebar-card--dark {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.sidebar-card--dark h3 { color: var(--paper); }
.sidebar-card--dark a { display: block; color: rgba(250,249,245,0.78); font-size: 0.9rem; margin: 0 0 0.7rem; }
.sidebar-card--dark a:hover { color: var(--olive-soft); }
.sidebar-card--dark p { color: rgba(250,249,245,0.78); font-size: 0.9rem; margin: 0 0 0.7rem; }

.sidebar-form .form-row { margin-bottom: 1.1rem; }

.sidebar-form label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--olive-deep);
  margin-bottom: 0.5rem;
}

.sidebar-form input,
.sidebar-form textarea {
  width: 100%;
  font-family: var(--font);
  font-size: 0.92rem;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid rgba(38,43,34,0.18);
  border-radius: 2px;
  padding: 0.75rem 0.9rem;
}

.sidebar-form input:focus,
.sidebar-form textarea:focus {
  outline: none;
  border-color: var(--olive);
}

.sidebar-form textarea { resize: vertical; min-height: 110px; }

.sidebar-form .btn { width: 100%; justify-content: center; border: none; cursor: pointer; margin-top: 0.4rem; }

.related-list { display: flex; flex-direction: column; gap: 0.8rem; }
.related-list a { font-size: 0.92rem; line-height: 1.4; }
.related-list a:hover { color: var(--olive); }

/* ---------------------------------------------------------------------- */
/* Contact page                                                           */
/* ---------------------------------------------------------------------- */

.contact-layout {
  padding-top: 5rem;
  padding-bottom: 7rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
}

.contact-copy p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--silver-deep);
  margin: 0 0 1.4rem;
}

.contact-copy p.lead {
  font-size: 1.2rem;
  color: var(--olive-deep);
  line-height: 1.6;
}

.contact-details {
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(38,43,34,0.15);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.contact-details a,
.contact-details p {
  font-size: 0.98rem;
  color: var(--silver-deep);
  margin: 0;
}
.contact-details a:hover { color: var(--olive); }

.contact-form-card { position: sticky; top: 6.5rem; }

/* ---------------------------------------------------------------------- */
/* Inner-page responsive                                                  */
/* ---------------------------------------------------------------------- */

@media (max-width: 980px) {
  .inner-hero { padding: 8.5rem var(--gutter) 2.75rem; }

  .service-hero-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .service-hero-media { order: -1; }
  .service-hero-media img { height: 260px; }

  .about-intro-media { float: none; width: 100%; margin: 0 0 1.5rem; }
  .about-intro-media::before { display: none; }
  .about-intro-media img { height: 320px; }

  .about-guides-columns { grid-template-columns: 1fr; gap: 1.5rem; }
  .about-guides-columns p { padding-left: 0; border-left: none; padding-top: 1.5rem; border-top: 1px solid rgba(38,43,34,0.15); }
  .about-guides-columns p:first-child { padding-top: 0; border-top: none; }

  .founder-spotlight-grid { grid-template-columns: 1fr; }
  .founder-spotlight-media img { height: 300px; }
  .founder-spotlight-media figcaption { bottom: -0.9rem; }
  .founder-spotlight-body { padding-top: 2rem; }
  .founder-spotlight-body p:first-of-type::first-letter { font-size: 3rem; }

  .service-detail { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }

  .contact-layout { grid-template-columns: 1fr; }
  .contact-form-card { position: static; }
}


/* Avily "designed by" credit (templates/designed-by-avily.html) */
.avily-credit .avily-link { text-decoration: none; }
.avily-credit .avily-link:hover { text-decoration: underline; }
.avily-credit img {
  height: 1em;
  width: auto;
  vertical-align: middle;
  margin: 0 4px;
}
