:root {
  --sunol-green: #2a9d3d;
  --sunol-green-dark: #1f7f31;
  --sunol-ink: #18251f;
  --sunol-muted: #627069;
  --sunol-soft: #f4faf5;
  --sunol-paper: #ffffff;
  --sunol-line: #dfe9e2;
  --sunol-shadow: 0 14px 38px rgba(22, 54, 36, .09);
}

html { scroll-behavior: smooth; }
body.sunol-site {
  color: var(--sunol-ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  background: #fff;
}
a { color: var(--sunol-green-dark); text-underline-offset: .16em; }
img { max-width: 100%; }
.pb7 { padding-bottom: 0; }
.bg-dark-green { background: var(--sunol-green); }

.sunol-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid var(--sunol-line);
  box-shadow: 0 2px 14px rgba(23, 55, 42, .05);
  backdrop-filter: blur(10px);
}
.sunol-nav {
  max-width: 1160px;
  min-height: 78px;
  margin: 0 auto;
  padding: .65rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.sunol-brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.sunol-brand img { width: 176px; height: auto; display: block; }
.sunol-menu-wrap { display: flex; align-items: center; justify-content: flex-end; gap: .75rem; flex-wrap: wrap; }
.sunol-menu { display: flex; align-items: center; justify-content: flex-end; gap: .35rem; flex-wrap: wrap; }
.sunol-menu a {
  color: #24362e;
  text-decoration: none;
  font-size: .93rem;
  font-weight: 650;
  line-height: 1;
  padding: .7rem .78rem;
  border-radius: 4px;
}
.sunol-menu a:hover { color: var(--sunol-green-dark); background: var(--sunol-soft); }
.sunol-menu a.is-cta { color: #fff; background: var(--sunol-green); }
.sunol-menu a.is-cta:hover { color: #fff; background: var(--sunol-green-dark); }
.language-switcher {
  display: flex;
  align-items: center;
  gap: .25rem;
  padding-left: .65rem;
  border-left: 1px solid var(--sunol-line);
}
.language-switcher a {
  color: var(--sunol-muted);
  text-decoration: none;
  font-size: .78rem;
  font-weight: 750;
  line-height: 1;
  padding: .35rem .4rem;
  border-radius: 4px;
}
.language-switcher a:hover,
.language-switcher a[aria-current="true"] {
  color: var(--sunol-green-dark);
  background: var(--sunol-soft);
}

.page-wrap, .home-wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 3.25rem 1.25rem 4.5rem;
}
.page-heading {
  max-width: 720px;
  margin: 0 auto 2.5rem;
  text-align: center;
}
.page-heading h1, .hero-panel h1, .content-body h2, .section-band h2 {
  color: var(--sunol-ink);
  letter-spacing: 0;
  line-height: 1.12;
}
.page-heading h1 {
  margin: 0 0 .75rem;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 760;
}
.page-heading p { margin: 0; color: var(--sunol-muted); font-size: 1.08rem; }

.hero-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 500px);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding: 1.25rem 0 4rem;
}
.hero-panel h1 {
  max-width: 760px;
  margin: 0 0 1rem;
  font-size: clamp(2.4rem, 5.4vw, 4.8rem);
  font-weight: 780;
}
.hero-panel p {
  max-width: 650px;
  margin: 0;
  font-size: 1.12rem;
  color: #4d5d55;
}
.hero-panel img {
  width: 100%;
  display: block;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--sunol-shadow);
}
.cta-row { display: flex; gap: .75rem; flex-wrap: wrap; margin-top: 1.7rem; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: .72rem 1rem;
  border-radius: 4px;
  background: var(--sunol-green);
  color: white;
  text-decoration: none;
  font-weight: 720;
  line-height: 1;
}
.button:hover { color: white; background: var(--sunol-green-dark); }
.button.secondary { background: white; color: var(--sunol-green-dark); border: 1px solid var(--sunol-line); }
.button.secondary:hover { color: var(--sunol-green-dark); background: var(--sunol-soft); }

.section-band {
  background: var(--sunol-soft);
  margin: 1rem calc(50% - 50vw) 3rem;
  padding: 3rem calc(50vw - 50% + 1.25rem);
  border-top: 1px solid var(--sunol-line);
  border-bottom: 1px solid var(--sunol-line);
}
.section-band h2 { margin-top: 0; font-size: clamp(1.6rem, 3vw, 2.3rem); }
.section-band p { max-width: 780px; color: var(--sunol-muted); }

.feature-grid, .gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}
.person-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: stretch;
}
.feature-card, .person-card {
  background: var(--sunol-paper);
  border: 1px solid var(--sunol-line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 26px rgba(22, 54, 36, .05);
}
.feature-card img, .person-card img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.feature-card h3, .person-card h3 {
  margin: 1rem 1rem .35rem;
  font-size: 1.12rem;
  line-height: 1.25;
}
.feature-card p, .person-card p {
  margin: 0 1rem 1.1rem;
  color: var(--sunol-muted);
  font-size: .96rem;
}
.person-card img { aspect-ratio: 4 / 5; }
.person-card h3 a { color: var(--sunol-ink); text-decoration: none; }
.muted { color: var(--sunol-green-dark) !important; font-weight: 700; margin-bottom: .45rem !important; }
.content-body > p:first-child {
  max-width: 780px;
  margin: 0 auto 2rem;
  text-align: center;
  font-size: 1.15rem;
  color: #405047;
}
.content-body > img, .content-body > p > img {
  display: block;
  width: min(100%, 880px);
  margin: 1.5rem auto;
  border-radius: 8px;
  box-shadow: var(--sunol-shadow);
}
.gallery-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.gallery-grid img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; border-radius: 6px; }

.bio-wrap { padding-top: 4rem; }
.bio-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.bio-copy { max-width: 620px; }
.eyebrow {
  margin: 0 0 .7rem;
  color: var(--sunol-green-dark);
  font-size: .9rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.bio-panel h1 {
  margin: 0 0 1rem;
  color: var(--sunol-ink);
  font-size: clamp(2.2rem, 4vw, 3.7rem);
  line-height: 1.08;
  letter-spacing: 0;
}
.bio-panel p:not(.eyebrow) {
  margin: 0;
  color: #4d5d55;
  font-size: 1.12rem;
}
.bio-panel img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--sunol-shadow);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, .85fr) minmax(360px, 1.15fr);
  gap: 2rem;
  align-items: start;
}
.contact-layout section {
  background: #fff;
  border: 1px solid var(--sunol-line);
  border-radius: 8px;
  padding: 1.4rem;
}
.contact-layout h2 { margin-top: 0; font-size: 1.35rem; }
.map-frame { aspect-ratio: 16 / 11; overflow: hidden; border-radius: 6px; background: var(--sunol-soft); }
.hours-list { margin-bottom: 0; }
.hours-list div { display: flex; justify-content: space-between; gap: 1rem; border-bottom: 1px solid var(--sunol-line); padding: .7rem 0; }
.hours-list div:last-child { border-bottom: 0; }
.hours-list dt { font-weight: 750; }
.hours-list dd { margin: 0; text-align: right; color: var(--sunol-green-dark); }

.appointment-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  max-width: 820px;
  margin: 0 auto;
  padding: 1.25rem;
  border: 1px solid var(--sunol-line);
  border-radius: 8px;
  box-shadow: var(--sunol-shadow);
}
.appointment-form label { display: grid; gap: .35rem; font-weight: 720; }
.appointment-form input, .appointment-form select, .appointment-form textarea {
  width: 100%;
  border: 1px solid #cfdcd3;
  border-radius: 4px;
  padding: .72rem .8rem;
  font: inherit;
  background: #fff;
}
.appointment-form input:focus, .appointment-form select:focus, .appointment-form textarea:focus {
  outline: 2px solid rgba(42, 157, 61, .22);
  border-color: var(--sunol-green);
}
.appointment-form .full, .appointment-form .form-note, .appointment-form button { grid-column: 1 / -1; }
.appointment-form button {
  justify-self: start;
  border: 0;
  border-radius: 4px;
  padding: .82rem 1.35rem;
  color: #fff;
  background: var(--sunol-green);
  font-weight: 750;
  cursor: pointer;
}
.appointment-form button:hover { background: var(--sunol-green-dark); }
.checkbox { display: flex !important; grid-template-columns: auto 1fr !important; align-items: center; font-weight: 400 !important; }
.checkbox input { width: auto; }
.hidden-field { display: none; }

.site-footer { background: #163626; color: white; padding: 1.7rem 1.25rem; }
.footer-inner { max-width: 1120px; margin: 0 auto; display: flex; justify-content: space-between; gap: 1rem; align-items: center; }
.site-footer a { color: white; }
.whatsapp-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 50;
  background: #25d366;
  color: white;
  border-radius: 999px;
  padding: .72rem 1rem;
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
  font-weight: 750;
  text-decoration: none;
}
.whatsapp-float:hover { color: white; }

@media (max-width: 860px) {
  body.sunol-site { font-size: 16px; }
  .sunol-nav { align-items: flex-start; flex-direction: column; gap: .75rem; min-height: 0; }
  .sunol-brand img { width: 154px; }
  .sunol-menu-wrap { justify-content: flex-start; gap: .5rem; }
  .sunol-menu { justify-content: flex-start; gap: .15rem .25rem; }
  .sunol-menu a { padding: .55rem .55rem; font-size: .9rem; }
  .language-switcher { padding-left: 0; border-left: 0; }
  .hero-panel, .contact-layout, .appointment-form { grid-template-columns: 1fr; }
  .hero-panel { padding-top: .5rem; padding-bottom: 2.5rem; }
  .feature-grid, .person-grid { grid-template-columns: 1fr; }
  .bio-wrap { padding-top: 3rem; }
  .bio-panel { grid-template-columns: 1fr; }
  .bio-panel img { max-height: 480px; }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-inner { display: grid; }
  .hours-list div { display: grid; }
  .hours-list dd { text-align: left; }
}
