:root {
  --green: #21a608;
  --green-dark: #2c6f32;
  --sage: #6f907b;
  --peach: #fccf88;
  --gold: #eed183;
  --orange: #de6906;
  --coral: #e87b44;
  --ink: #292929;
  --muted: #5c5c5c;
  --paper: #fffdf8;
  --footer: #161616;
  --footer-mid: #1f1f1f;
  --max: 1140px;
  --header-h: 92px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Merriweather, Georgia, serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.7;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--green-dark); text-decoration: none; }
a:hover { color: var(--green); }

.container {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: #fff;
}

.header-top {
  border-bottom: 1px solid #e6e6e6;
  padding: 18px 0 16px;
}

.header-top .container {
  width: min(1480px, calc(100% - 48px));
}

.header-top-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.header-contact {
  justify-self: start;
}

.header-socials {
  display: flex;
  gap: 14px;
  margin-bottom: 8px;
}

.header-socials a,
.header-contact-row a {
  color: #8a8a8a;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.header-socials a:hover,
.header-contact-row a:hover { color: var(--sage); }

.header-socials svg {
  width: 24px;
  height: 24px;
}

.header-socials a:first-child svg {
  fill: currentColor;
  stroke: none;
}

.header-socials a:last-child svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.header-contact-row svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}

.header-contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.82rem;
  color: #8a8a8a;
}

.header-contact-row a[href^="tel:"] {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  color: #555;
}

.logo {
  justify-self: center;
}

.logo img { height: 58px; width: auto; }

.header-search {
  justify-self: end;
  width: min(220px, 100%);
}

.header-search input {
  width: 100%;
  border: 1px solid #d9d9d9;
  border-radius: 6px;
  padding: 8px 12px;
  font-family: Lora, serif;
  font-size: 0.95rem;
  color: var(--ink);
  background: #fff;
}

.header-search input::placeholder { color: #b0b0b0; }
.header-search input:focus {
  outline: 1px solid var(--sage);
  border-color: var(--sage);
}

.header-nav {
  border-bottom: 1px solid #e6e6e6;
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  min-height: 58px;
}

.nav {
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav a {
  font-family: Lora, Georgia, serif;
  font-weight: 500;
  font-size: 1.05rem;
  color: #3a3a3a;
  padding: 0.45rem 0;
}

.nav a:hover {
  color: #c4a265;
}

.nav a.is-active {
  color: var(--sage);
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: none;
  border: 0;
  cursor: pointer;
  width: 24px;
  height: 16px;
  padding: 0;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 0;
  background: #8a8a8a;
  border-radius: 1px;
}

.offcanvas-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 20, 20, 0.38);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 90;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.offcanvas-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.offcanvas {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: min(340px, 88vw);
  background: #fff;
  z-index: 100;
  transform: translateX(-105%);
  transition: transform 0.35s ease;
  display: flex;
  flex-direction: column;
  padding: 18px 22px 28px;
  box-shadow: 8px 0 28px rgba(0,0,0,.18);
}

.offcanvas.is-open {
  transform: translateX(0);
}

.offcanvas-close {
  align-self: flex-end;
  background: none;
  border: 0;
  font-size: 1.8rem;
  line-height: 1;
  color: #888;
  cursor: pointer;
  padding: 0 2px 12px;
}

.offcanvas-close:hover { color: #333; }

.offcanvas-search {
  margin: 0 0 22px;
}

.offcanvas-search input {
  width: 100%;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  padding: 8px 12px;
  font-family: Lora, serif;
  font-size: 0.95rem;
}

.offcanvas-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.offcanvas-nav a {
  font-family: Lora, Georgia, serif;
  font-size: 1.15rem;
  color: #3a3a3a;
  padding: 10px 0;
}

.offcanvas-nav a:hover { color: #c4a265; }

.offcanvas-footer {
  margin-top: auto;
  padding-top: 20px;
  font-size: 0.85rem;
  color: #8a8a8a;
}

.offcanvas-footer a {
  color: #8a8a8a;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.offcanvas-footer a:hover { color: var(--sage); }

.offcanvas-footer svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  flex-shrink: 0;
}

.offcanvas-socials {
  display: flex;
  gap: 14px;
  margin-top: 14px;
}

.offcanvas-socials svg {
  width: 22px;
  height: 22px;
}

.offcanvas-socials a:first-child svg {
  fill: currentColor;
  stroke: none;
}

body.menu-open { overflow: hidden; }

/* Buttons */
.btn {
  display: inline-block;
  font-family: Lora, serif;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 12px;
  padding: 15px 40px;
  border-radius: 40px;
  border: 0;
  cursor: pointer;
  transition: .25s ease;
}

.btn-hero {
  background: rgba(247, 200, 229, 0.72);
  color: #292929;
  box-shadow: 0 4px 0 rgba(59, 166, 81, 0.45);
}

.btn-hero:hover { background: rgba(59, 166, 81, 0.7); color: #fff; }

.btn-light {
  background: rgba(255,255,255,.55);
  color: #292929;
  box-shadow: 0 4px 0 rgba(101, 144, 49, 0.55);
}

.btn-light:hover { background: rgba(101, 144, 49, 0.75); color: #fff; }

.btn-blue {
  background: #2c8fe6;
  color: #fff;
  font-weight: 400;
}

.btn-blue:hover { background: var(--gold); color: #fff; }

.btn-gold {
  background: #fbba00;
  color: #292929;
  letter-spacing: 2px;
  font-size: 13px;
  padding: 15px 56px;
  border-radius: 6px;
}

.btn-gold:hover { background: rgba(251, 186, 0, 0.85); color: #292929; }

.btn-green {
  background: var(--green-dark);
  color: #fff;
}

.btn-green:hover { background: var(--green); color: #fff; }

/* Hero */
.hero {
  min-height: 720px;
  background: url("../images/home/banner1500new.jpg") center top / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.05), rgba(0,0,0,.28));
}

.hero-card {
  position: relative;
  z-index: 1;
  width: min(520px, 92%);
  margin: 4rem 6% 4rem 0;
  text-align: center;
  animation: heroSlideInLeft 1s ease-out 0.5s both;
}

@keyframes heroSlideInLeft {
  from {
    opacity: 0;
    transform: translate3d(-80vw, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-card {
    animation: none;
  }

  .community {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .testimonial-track {
    transition: none;
  }
}

.hero-logo {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
}

.hero h1 {
  font-family: Lora, serif;
  font-size: 40px;
  line-height: 1.1;
  font-weight: 500;
  margin: 0 0 8px;
}

.hero-rotate {
  font-family: Merriweather, serif;
  font-size: 34px;
  font-weight: 500;
  min-height: 48px;
  margin: 0 0 22px;
}

.hero-rotate span { display: none; }
.hero-rotate span.is-visible { display: inline; }

/* Feature split */
.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 50px 0;
}

.feature-photo {
  border-radius: 8px;
  width: 100%;
  object-fit: cover;
}

.feature-split h2 {
  font-family: Merriweather, serif;
  font-size: 34px;
  margin: 0 0 8px;
  text-align: center;
}

.feature-kicker {
  text-align: center;
  font-size: 21px;
  margin: 0 0 1.5rem;
}

.feature-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 8px 0 18px;
  border-bottom: 1px solid #ccc;
  margin-bottom: 10px;
}

.feature-item img { width: 75px; height: 75px; flex-shrink: 0; }

.feature-item h3 {
  color: var(--green-dark);
  font-size: 18px;
  margin: 0 0 6px;
}

.feature-item p { margin: 0; font-size: 1.05rem; }

/* Blog preview */
.blog-preview {
  padding: 70px 0 80px;
  background: url("../images/home/banner1.jpg") center / cover fixed;
  color: #fff;
}

.blog-preview h2 {
  font-family: Lora, serif;
  text-align: center;
  margin: 0 0 30px;
}

.blog-preview .container {
  width: min(1320px, calc(100% - 40px));
}

.section-icon { color: var(--coral); margin-right: 8px; }

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.blog-preview .card-grid {
  grid-template-columns: repeat(3, 1fr);
}

.card {
  background: rgba(255,255,255,.94);
  color: var(--ink);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,.12);
}

.card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.blog-preview .card img {
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: top center;
}

.blog-preview .card h3 {
  font-size: 1.2rem;
}

.blog-preview .card p {
  font-size: 0.95rem;
}

.card-body { padding: 14px 16px 18px; }
.card-date { font-size: 0.78rem; font-weight: 700; color: var(--muted); }
.card h3 { margin: 6px 0; font-size: 1.05rem; font-family: Lora, serif; }
.card h3 a { color: var(--ink); }
.card p { font-size: 0.9rem; margin: 0 0 8px; color: #444; }
.card-cat { font-size: 0.78rem; color: var(--green-dark); font-weight: 700; }

.center { text-align: center; }
.mt { margin-top: 28px; }

/* Testimonials */
.testimonials {
  padding: 50px 0 60px;
  text-align: center;
}

.testimonials .container {
  width: min(1280px, calc(100% - 40px));
}

.quote-mark {
  font-size: 48px;
  color: var(--sage);
  line-height: 1;
}

.testimonial-viewport {
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.6s ease;
}

.testimonial {
  flex: 0 0 100%;
  max-width: 100%;
  padding: 0 8px;
}

.testimonial img {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 12px;
}

.testimonial p {
  font-size: 16px;
  margin: 0 auto 12px;
}
.testimonial cite {
  font-family: "Aguafina Script", cursive;
  font-size: 1.6rem;
  color: var(--sage);
  font-style: normal;
  font-weight: 700;
}

.dots { margin-top: 16px; }
.dots button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 0;
  background: #ccc;
  margin: 0 4px;
  cursor: pointer;
}
.dots button.is-active { background: var(--sage); }

/* Community CTA */
.community {
  background: var(--peach);
  color: #fff;
  text-align: center;
  padding: 100px 16px;
  opacity: 0;
  transform: translate3d(0, -90px, 0);
}

.community.is-inview {
  animation: communitySlideDown 1.5s ease-out forwards;
}

@keyframes communitySlideDown {
  from {
    opacity: 0;
    transform: translate3d(0, -90px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.community h2 {
  font-family: Merriweather, serif;
  font-size: 44px;
  font-weight: 400;
  margin: 0 0 10px;
}

.community h2::before {
  content: "";
  display: block;
  width: 36px;
  height: 36px;
  margin: 0 auto 14px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23fff'%3E%3Cpath d='M12 2l-5 7h3l-4 6h4l-3 5h10l-3-5h4l-4-6h3z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.community p {
  font-family: Lora, serif;
  font-size: 18px;
  margin: 0 0 28px;
}

/* Page banner */
.page-banner {
  background: url("../images/home/banner1.jpg") center / cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 48px 16px;
}

.page-banner h1 {
  font-family: Merriweather, Georgia, serif;
  font-size: 52px;
  font-weight: 800;
  line-height: 65px;
  margin: 0;
  text-shadow: 0 2px 10px rgba(0,0,0,.35);
}

/* Content */
.page-section .card { background: #fff; }

.blog-page {
  padding: 50px 0 60px;
  background: #fff;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px 30px;
}

.blog-item { text-align: left; }

.blog-item-img {
  display: block;
  margin: 0 0 16px;
}

.blog-item-img img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: top center;
}

.blog-item h3 {
  font-family: Lora, serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 8px;
}

.blog-item h3 a { color: #292929; }
.blog-item h3 a:hover { color: var(--sage); }

.blog-item-meta {
  margin: 0 0 8px;
  font-size: 13px;
  color: #888;
}

.blog-item-meta span {
  display: inline-block;
  margin: 0 10px 0 0;
}

.blog-item-meta a { color: #888; }
.blog-item-meta a:hover { color: var(--sage); }

.blog-item-excerpt {
  margin: 0 0 10px;
  color: #555;
  font-size: 15px;
  line-height: 1.5;
}

.blog-item-more {
  color: var(--sage);
  font-weight: 700;
  font-size: 14px;
}

.blog-item-more:hover { color: #c4a265; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.about-wrap {
  position: relative;
  padding: 48px 0 80px;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.42fr 0.58fr;
  gap: 3rem;
  align-items: stretch;
}

.about-side {
  position: relative;
  text-align: center;
}

.about-wordmark {
  display: block;
  width: 100%;
  background: linear-gradient(158deg, #d0efdb 22%, #96c3a6 80%);
  border-radius: 200px;
  box-shadow: 0 0 55px -5px rgba(72, 53, 0, 0.25);
  padding: 8px 40px;
  margin: 0 0 22px;
}

.about-wordmark img {
  height: 38px;
  width: auto;
  max-width: 100%;
  margin: 0 auto;
}

.about-pink-dot {
  position: absolute;
  left: -10px;
  bottom: 8px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 77, 118, 0.25);
  backdrop-filter: blur(4px);
  pointer-events: none;
}

.about-page-socials {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 28px;
}

.about-page-socials a {
  width: 39px;
  height: 39px;
  border: 1px solid rgba(41, 41, 41, 0.7);
  border-radius: 50%;
  color: var(--sage);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.about-page-socials a:hover {
  color: #292929;
  background: #ffbd00;
  border-color: #ffbd00;
}

.about-page-socials svg {
  width: 18px;
  height: 18px;
}

.about-page-socials a:first-child svg {
  fill: currentColor;
  stroke: none;
}

.about-page-socials a:last-child svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.about-side-art {
  position: relative;
  padding-left: 52px;
}

.about-icon {
  position: absolute;
  left: 0;
  top: 10%;
  width: 52px;
  height: auto;
}

.about-emblem {
  width: 100%;
  max-width: 370px;
  margin: 0 auto;
  display: block;
}

.about-heading {
  position: relative;
  padding-left: 66px;
  margin: 0 0 18px;
  color: var(--sage);
  font-family: Merriweather, Georgia, serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.35;
}

.about-heading::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 48px;
  height: 2px;
  margin-top: -1px;
  background: #292929;
}

.about-main p {
  font-size: 1.05rem;
  line-height: 1.75;
  margin: 0 0 1.2rem;
}

.about-photo {
  width: 100%;
  border-radius: 4px;
  margin: 8px 0 28px;
}

.about-signoff {
  text-align: center;
  margin-top: 36px;
}

.about-suncloud {
  width: 96px;
  height: 96px;
  padding: 30px;
  color: var(--sage);
  margin: 0 auto;
  display: block;
}

.about-suncloud:hover { color: #fbb951; }

.about-signoff p {
  font-family: Lora, serif;
  font-size: 18px;
  font-style: italic;
  font-weight: 400;
  color: #333;
  margin: 0;
}

.prose h2, .prose h3 {
  font-family: Lora, serif;
  color: var(--green-dark);
}

.prose h2 { font-size: 1.8rem; }
.rounded { border-radius: 10px; }
.rounded-full { border-radius: 50%; width: 260px; height: 260px; object-fit: cover; margin: 0 auto; }

.care-list { list-style: none; padding: 0; margin: 0 0 1rem; }
.care-list li {
  position: relative;
  margin: 0 0 12px;
  padding-left: 28px;
  color: #5c5c5c;
  font-family: Lora, serif;
  font-size: 18px;
  line-height: 1.65;
}
.care-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4em;
  width: 14px;
  height: 14px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='2.2' fill='%23de6906'/%3E%3Cellipse cx='12' cy='5.2' rx='2.1' ry='4.2' fill='%23de6906'/%3E%3Cellipse cx='12' cy='18.8' rx='2.1' ry='4.2' fill='%23de6906'/%3E%3Cellipse cx='5.2' cy='12' rx='4.2' ry='2.1' fill='%23de6906'/%3E%3Cellipse cx='18.8' cy='12' rx='4.2' ry='2.1' fill='%23de6906'/%3E%3Cellipse cx='7.1' cy='7.1' rx='2.1' ry='4' transform='rotate(-45 7.1 7.1)' fill='%23de6906'/%3E%3Cellipse cx='16.9' cy='16.9' rx='2.1' ry='4' transform='rotate(-45 16.9 16.9)' fill='%23de6906'/%3E%3C/svg%3E") center / contain no-repeat;
}

.care-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.care-links a { color: var(--ink); text-align: center; font-weight: 700; }
.care-links img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 8px;
}

/* Forms */
.form label { display: block; font-weight: 700; margin: 12px 0 6px; }
.form input,
.form textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font: inherit;
}

.form textarea { min-height: 140px; resize: vertical; }
.required { color: #c0392b; }

/* Contact page */
.contact-form-section {
  background-image: linear-gradient(180deg, #fbebd4 42%, #f5cf9e 98%);
  color: #292929;
  padding: 40px 0 50px;
}

.contact-talk {
  font-family: Merriweather, Georgia, serif;
  color: var(--sage);
  font-size: 42px;
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 25px;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr) 110px;
  gap: 8px 12px;
  align-items: start;
}

.contact-deco {
  text-align: center;
  padding-top: 28px;
}

.contact-deco img {
  width: 75px;
  height: 75px;
  margin: 0 auto;
}

.contact-deco-right { padding-top: 275px; }

.contact-form label {
  display: block;
  color: var(--sage);
  font-weight: 700;
  margin: 0 0 8px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.25);
  color: #0a0a0a;
  font-size: 16px;
  border: 1px solid rgba(41, 41, 41, 0.4);
  border-radius: 9px;
  padding: 15px 25px;
  height: 60px;
  margin: 0 0 28px;
  font-family: inherit;
  transition: border-color .35s;
}

.contact-form textarea {
  height: 210px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(41, 41, 41, 0.5);
}

.contact-form input:hover,
.contact-form input:focus,
.contact-form textarea:hover,
.contact-form textarea:focus {
  border-color: #d26c6c;
  outline: none;
}

.contact-form-submit { margin: 7px 0 0; }

.contact-map-section {
  padding: 20px 0 50px;
}

.contact-map-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: Lora, serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.25;
  color: #292929;
  margin: 0 0 48px;
}

.contact-map-title svg {
  width: 32px;
  height: 32px;
  fill: #fbb951;
  flex: 0 0 auto;
}

.contact-map {
  width: 100%;
  height: 500px;
  margin: 0 0 50px;
  z-index: 1;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.contact-info-grid > div {
  box-shadow: 1px 1px 0 0 #c7c6c6;
  padding: 0 8px 12px 0;
}

.contact-info-grid h3 {
  font-family: Lora, serif;
  color: #a0a0a0;
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 8px;
}

.contact-info-grid p {
  font-family: Lora, serif;
  font-size: 16px;
  margin: 0;
}

.contact-info-grid a { color: var(--sage); font-weight: 700; }
.contact-info-grid a:hover { color: var(--green); }

/* Gallery */
.gallery-page {
  padding: 48px 0 80px;
}

.gallery-heading {
  text-align: center;
  font-family: Merriweather, Georgia, serif;
  color: var(--sage);
  font-size: 2.2rem;
  font-weight: 400;
  margin: 0 0 36px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.gallery-grid a {
  display: block;
  overflow: hidden;
  background: #eee;
}

.gallery-grid img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform .3s ease;
}

.gallery-grid a:hover img { transform: scale(1.05); }

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.88);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 80;
  padding: 12px;
}

.lightbox.is-open { display: flex; }
.lightbox img {
  max-height: 96vh;
  max-width: 98vw;
  width: auto;
  height: auto;
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: 16px;
  right: 20px;
  color: #fff;
  font-size: 2rem;
  background: none;
  border: 0;
  cursor: pointer;
}

/* Article */
.article {
  max-width: 780px;
  margin: 0 auto;
  padding: 40px 16px 20px;
}

.article-page {
  background-image: linear-gradient(180deg, #ffffff 0%, #f7f6f0 100%);
  padding: 36px 0 70px;
}

.article-page .container {
  width: min(1120px, calc(100% - 32px));
}

.article-title {
  font-family: Merriweather, Georgia, serif;
  font-size: clamp(42px, 7vw, 88px);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.04em;
  color: var(--sage);
  margin: 0 0 34px;
}

.article-title-welcome {
  font-size: clamp(34px, 5.4vw, 64px);
}

.article-title-line {
  white-space: nowrap;
}

.article-split {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 32px 40px;
  align-items: start;
}

.article-split-img img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center top;
}

.article-kicker {
  font-family: "IBM Plex Serif", Lora, serif;
  color: #fbb951;
  font-size: 40px;
  font-weight: 500;
  line-height: 1.35;
  margin: 0 0 16px;
}

.article-split-body h3 {
  font-family: Merriweather, Georgia, serif;
  color: var(--green-dark);
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
  margin: 0 0 18px;
}

.article-split-body p {
  font-family: Lora, serif;
  font-size: 18px;
  line-height: 1.7;
  color: #5c5c5c;
  margin: 0 0 1rem;
}

.article-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 36px 0 28px;
}

.article-thumbs a,
.article-thumbs img {
  display: block;
  width: 100%;
}

.article-thumbs img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.article-dates {
  margin: 0;
  font-size: 0.85rem;
  color: #888;
}

.article-more { margin-top: 12px; }
.article-more h2 {
  font-family: Merriweather, Georgia, serif;
  color: var(--green-dark);
  font-size: 1.6rem;
  margin: 1.4rem 0 0.6rem;
}
.article-more p {
  font-family: Lora, serif;
  font-size: 18px;
  line-height: 1.7;
  color: #5c5c5c;
}

.article h1,
.article h2 { font-family: Lora, serif; color: var(--green-dark); }
.article-meta { color: var(--muted); font-size: 0.9rem; margin-bottom: 1.2rem; }
.article-hero {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 8px;
  margin: 0 0 1.4rem;
}

.poem {
  font-style: italic;
  text-align: center;
  line-height: 1.9;
}

/* Footer */
.site-footer { color: #ddd; }
.footer-main {
  background: var(--footer-mid);
  padding: 40px 0 24px;
}

.footer-main .container {
  width: min(1480px, calc(100% - 48px));
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr 0.95fr 1.7fr;
  gap: 24px 28px;
  font-size: 0.85rem;
  line-height: 1.6;
}

.footer-grid > div:first-child {
  padding-right: 28px;
}

.footer-grid h3 {
  color: #fff;
  font-size: 1rem;
  margin: 0 0 12px;
  font-family: Lora, serif;
}

.footer-grid p {
  margin: 0 0 0.65em;
}

.footer-owner {
  margin-bottom: 0.2em;
}

.footer-vine {
  display: block;
  width: 118px;
  height: 18px;
  margin: 8px 0 12px;
  background: url("../images/icons/ivy-vine.svg") no-repeat left center / contain;
}

.footer-brand { color: var(--green); }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin: 0 0 8px; }
.footer-grid a { color: #ddd; }
.footer-grid a:hover { color: #fff; }

.footer-menu a {
  color: var(--green);
}

.footer-menu a:hover {
  color: #c4a265;
}

.footer-flowers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.footer-flowers img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 3px;
}

.footer-copy {
  background: var(--footer);
  text-align: center;
  padding: 14px;
  font-size: 0.85rem;
}

.socials { display: flex; gap: 10px; margin-top: 8px; }
.socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #444;
  color: #fff;
  font-weight: 700;
}

@media (max-width: 991px) {
  .header-top-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
  .header-contact,
  .header-search { justify-self: center; }
  .header-socials,
  .header-contact-row { justify-content: center; }
  .header-search { width: min(280px, 100%); }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-preview .card-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .article-split { grid-template-columns: 1fr 1.4fr; gap: 24px; }
  .article-kicker { font-size: 30px; }
  .article-thumbs { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .page-banner { padding: 36px 16px; }
  .page-banner h1 { font-size: 48px; line-height: 58px; }
  .contact-form-row { grid-template-columns: 80px minmax(0, 1fr) 80px; }
  .contact-deco-right { padding-top: 200px; }
  .contact-talk { font-size: 32px; }
  .contact-map { height: 400px; }
  .contact-map-title { font-size: 32px; margin-bottom: 40px; }
  .contact-info-grid { grid-template-columns: 1fr 1fr; }
  .hero { min-height: 560px; }
  .hero h1 { font-size: 32px; }
  .hero-rotate { font-size: 26px; }
}

@media (max-width: 767px) {
  .header-nav { position: relative; }
  .nav { display: none; }
  .nav-row { justify-content: flex-start; padding: 8px 0; }
  .feature-split,
  .two-col,
  .about-grid,
  .care-links { grid-template-columns: 1fr; }
  .card-grid,
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .blog-preview .card-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .article-split { grid-template-columns: 1fr; }
  .article-kicker { font-size: 24px; }
  .article-thumbs { grid-template-columns: repeat(2, 1fr); }
  .care-list li { font-size: 15px; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { min-height: 480px; justify-content: center; }
  .hero-card { margin: 3rem auto; }
  .hero-logo { width: 140px; height: 140px; }
  .hero h1 { font-size: 26px; }
  .hero-rotate { font-size: 16px; min-height: 28px; }
  .page-banner { padding: 30px 16px; }
  .page-banner h1 { font-size: 28px; line-height: 38px; }
  .contact-form-row { grid-template-columns: 1fr; }
  .contact-deco { padding-top: 0; }
  .contact-deco-right { padding-top: 0; order: 3; }
  .contact-deco img { width: 64px; height: 64px; }
  .contact-talk { font-size: 24px; }
  .contact-form input,
  .contact-form textarea { font-size: 14px; padding: 8px 10px; height: 40px; margin-bottom: 10px; }
  .contact-form textarea { height: 130px; }
  .contact-map { height: 300px; margin-bottom: 30px; }
  .contact-map-title { font-size: 24px; margin-bottom: 25px; }
  .contact-info-grid { grid-template-columns: 1fr; }
  .btn-gold { padding: 10px 20px; }
  .community { padding: 50px 16px; }
  .community h2 { font-size: 30px; }
  .logo img { height: 48px; }
}

.search-results { list-style: none; padding: 0; }
.search-results li {
  border-bottom: 1px solid #eee;
  padding: 16px 0;
}
.search-results h2 { margin: 0 0 6px; font-size: 1.2rem; }
