:root {
  --green: #606b48;
  --dark: #2f3a28;
  --cream: #f7f4ed;
  --sage: #d8ddcf;
  --white: #ffffff;
  --text: #30352c;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  overflow-x: hidden;
  font-family: Georgia, "Times New Roman", serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
}

img { max-width: 100%; height: auto; }

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 16px 7%;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid rgba(96,107,72,.18);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--dark);
  text-decoration: none;
}

.brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  flex-shrink: 0;
}

.brand strong,
.brand small { display: block; }

.brand strong { font-size: 1.1rem; line-height: 1.15; }

.brand small {
  margin-top: 4px;
  font-family: Arial, sans-serif;
  font-size: .72rem;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 1px;
}

nav {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  font-family: Arial, sans-serif;
}

nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  text-decoration: none;
  padding: 9px 14px;
  border-radius: 999px;
}

nav a:hover { background: var(--green); color: white; }

.eyebrow {
  margin: 0 0 14px;
  font-family: Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--green);
  font-size: .8rem;
}

h1 {
  margin: 0 0 22px;
  color: var(--dark);
  font-size: clamp(2.1rem, 4.6vw, 4.2rem);
  line-height: 1.08;
  font-weight: normal;
}

h2 {
  margin: 0 0 12px;
  color: var(--dark);
  font-size: 1.55rem;
  line-height: 1.15;
  font-weight: normal;
}

p { font-size: 1.06rem; color: #3f453a; }

.home-hero { 
  min-height: 82vh; 
  display: grid; 
  grid-template-columns: 1.05fr .95fr; 
  align-items: center; 
  gap: 54px; 
  padding: 70px 7%; 
  
  /* Combined shorthand declaration */
  /* Layer 1 (Gradient): positioned top left, covers the section */
  /* Layer 2 (Tree): shifted right (-60px) and shifted up (-110px) / with sizing / no-repeat */
  background: 
    linear-gradient(rgba(247,244,237,.93), rgba(247,244,237,.93)) left top / cover no-repeat, 
    url("Tree.png") right -60px top -110px / min(42vw, 520px) auto no-repeat;
}



.hero-text { max-width: 760px; }
.hero-text p:not(.eyebrow) { max-width: 660px; font-size: 1.18rem; }

.button-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  background: var(--dark);
  color: white;
  border: 1px solid var(--dark);
  border-radius: 999px;
  text-decoration: none;
  font-family: Arial, sans-serif;
  font-weight: bold;
}

.button:hover { background: var(--green); border-color: var(--green); }
.button.secondary { background: transparent; color: var(--dark); }
.button.secondary:hover { background: var(--sage); border-color: var(--sage); }

.hero-photo-card {
  max-width: 500px;
  justify-self: end;
}

.hero-photo-card img,
.about-photo {
  width: 100%;
  display: block;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 22px 45px rgba(47,58,40,.16);
}

.hero-photo-card img {
  aspect-ratio: 4 / 5;
  object-position: center top;
  border: 12px solid rgba(255,255,255,.75);
}

.photo-caption {
  position: relative;
  width: calc(100% - 34px);
  margin: -42px auto 0;
  padding: 20px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 14px 30px rgba(47,58,40,.12);
}

.photo-caption strong,
.photo-caption span { display: block; }

.photo-caption span {
  margin-top: 4px;
  font-family: Arial, sans-serif;
  color: var(--green);
  font-size: .92rem;
}

.home-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  padding: 70px 7%;
  background: white;
}

.home-info article {
  padding: 28px;
  background: var(--cream);
  border-radius: 14px;
  border: 1px solid rgba(96,107,72,.16);
}

.about-hero {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 58px;
  align-items: center;
  padding: 70px 7%;
  background:
    linear-gradient(rgba(247,244,237,.9), rgba(247,244,237,.9)),
    url("Tree.png") right 7% center / min(38vw, 470px) auto no-repeat;
}

.about-photo-wrap { max-width: 430px; }

.about-photo {
  aspect-ratio: 4 / 5;
  object-position: center top;
  border: 12px solid rgba(255,255,255,.75);
}

.about-intro { max-width: 760px; }

.intro-card {
  padding: 24px;
  background: white;
  border-left: 5px solid var(--green);
  border-radius: 12px;
  box-shadow: 0 14px 32px rgba(47,58,40,.1);
  font-size: 1.18rem;
}

.about-story {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 50px;
  padding: 70px 7%;
  background: white;
  overflow: hidden;
}

.tree-mark {
  align-self: start;
  padding: 26px;
  background: var(--sage);
  border-radius: 50%;
}

.tree-mark img { width: 100%; display: block; }
.story-copy { max-width: 850px; }
.story-copy p { margin: 0 0 20px; font-size: 1.08rem; }

.page { padding: 70px 7%; }
.page-intro { max-width: 900px; margin-bottom: 40px; }

.flip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.flip-card {
  height: 480px;
  perspective: 1000px;
}

.flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform .7s ease;
  transform-style: preserve-3d;
}

.flip-card.flipped .flip-inner { transform: rotateY(180deg); }

.flip-front,
.flip-back {
  position: absolute;
  inset: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 26px;
  border-radius: 12px;
  backface-visibility: hidden;
  box-shadow: 0 18px 40px rgba(47,58,40,.14);
  overflow: hidden;
}

.flip-front {
  background: white;
  border: 1px solid rgba(96,107,72,.18);
}

.flip-back {
  background: var(--dark);
  color: white;
  transform: rotateY(180deg);
}

.flip-content {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  padding-right: 8px;
}

.flip-front p,
.flip-back p {
  margin: 0 0 14px;
  font-size: .98rem;
  line-height: 1.55;
}

.flip-back h2,
.flip-back p { color: white; }

.learn-button {
  min-height: 44px;
  flex: 0 0 auto;
  margin-top: 18px;
  padding: 12px 18px;
  border: none;
  border-radius: 999px;
  background: var(--dark);
  color: white;
  font-family: Arial, sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
}

.learn-button:hover { background: var(--green); }
.learn-button.light { background: white; color: var(--dark); }
.learn-button.light:hover { background: var(--sage); }

.specialties-section {
  padding: 80px 7%;
  background:
    linear-gradient(rgba(247,244,237,.94), rgba(247,244,237,.94)),
    url("Tree.png") center bottom / min(48vw, 520px) auto no-repeat;
}

.specialties-intro {
  max-width: 850px;
  margin: 0 auto 42px;
  text-align: center;
}

.specialties-intro h2 {
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  color: #7a5a4a;
}

.specialties-intro p {
  max-width: 720px;
  margin: 0 auto;
  color: #6f6258;
}

.specialties-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(122,90,74,.18);
  border-left: 1px solid rgba(122,90,74,.18);
  background: rgba(255,255,255,.56);
}

.specialty-card {
  min-height: 250px;
  padding: 34px 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: center;
  border-right: 1px solid rgba(122,90,74,.18);
  border-bottom: 1px solid rgba(122,90,74,.18);
}

.specialty-card h3 {
  margin: 0 0 12px;
  color: #6b4d40;
  font-size: 1.55rem;
  line-height: 1.15;
}

.specialty-card p {
  margin: 0;
  color: #806f64;
  font-size: 1.02rem;
  line-height: 1.65;
}

.reflection {
  min-height: 70vh;
  padding: 90px 7%;
  background:
    linear-gradient(rgba(47,58,40,.86), rgba(47,58,40,.86)),
    url("Tree.png") center / min(60vw, 620px) auto no-repeat;
  color: white;
}

.reflection h1,
.reflection p,
.reflection blockquote { color: white; }

blockquote {
  max-width: 900px;
  margin: 30px 0;
  font-size: clamp(1.35rem, 3vw, 2.25rem);
  line-height: 1.45;
}

.reflection cite {
  display: block;
  max-width: 900px;
  margin-top: 24px;
  margin-left: auto;
  margin-right: auto;
  padding-right: 20px;
  color: white;
  font-family: Arial, sans-serif;
  font-size: .95rem;
  font-style: normal;
  letter-spacing: 1px;
  text-align: right;
  text-transform: uppercase;
}

.blog-section {
  padding: 95px 7% 80px;
  background:
    linear-gradient(rgba(247,244,237,.96), rgba(247,244,237,.96)),
    url("Tree.png") right 8% top 18% / min(34vw, 420px) auto no-repeat;
}

.blog-intro {
  max-width: 850px;
  margin: 0 auto 42px;
  text-align: center;
}

.blog-intro h2 { font-size: clamp(2rem, 5vw, 4rem); }
.blog-intro p { max-width: 720px; margin: 0 auto; color: #30352c; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1120px;
  margin: 0 auto;
}

.blog-card {
  padding: 30px;
  background: var(--cream);
  border: 1px solid rgba(96,107,72,.16);
  border-radius: 14px;
  box-shadow: 0 14px 32px rgba(47,58,40,.09);
}

.blog-label {
  margin: 0 0 10px;
  color: var(--green);
  font-family: Arial, sans-serif;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.blog-card h3 {
  margin: 0 0 12px;
  color: var(--dark);
  font-size: 1.35rem;
  line-height: 1.2;
}

.blog-card a {
  display: inline-block;
  margin-top: 12px;
  color: var(--dark);
  font-family: Arial, sans-serif;
  font-weight: bold;
  text-decoration: none;
  border-bottom: 1px solid var(--green);
}

.reflection-divider {
  padding: 44px 7%;
  background: var(--cream);
  text-align: center;
}

.reflection-divider span {
  display: block;
  max-width: 760px;
  height: 1px;
  margin: 0 auto;
  background: rgba(96,107,72,.28);
}

.qa-section {
  padding: 80px 7%;
  background: var(--cream);
}

.qa-section h2 {
  text-align: center;
  font-size: clamp(2rem, 5vw, 4rem);
  color: var(--dark);
}

.qa-intro {
  max-width: 760px;
  margin: 0 auto 36px;
  text-align: center;
  color: #1f281b;
  font-weight: 700;
}

.qa-list {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
}

.qa-list details {
  background: white;
  border: 1px solid rgba(96,107,72,.16);
  border-radius: 14px;
  padding: 22px 24px;
  box-shadow: 0 12px 28px rgba(47,58,40,.08);
}

.qa-list summary {
  cursor: pointer;
  color: var(--dark);
  font-family: Arial, sans-serif;
  font-weight: bold;
  font-size: 1rem;
}

.qa-list details[open] summary { margin-bottom: 12px; }
.qa-list p { margin: 0; color: #3f453a; }

.contact-page {
    background: linear-gradient(rgba(247, 244, 237, .94), rgba(247, 244, 237, .94)), 
                url("Tree.png") right 2% top 0 / min(42vw, 520px) auto no-repeat;
}

.contact-hero { padding: 70px 7% 35px; }
.contact-hero div { max-width: 850px; }

.contact-layout {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 32px;
  padding: 35px 7% 80px;
}

.hostinger-form-space,
.contact-info-card {
  background: white;
  border: 1px solid rgba(96,107,72,.16);
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(47,58,40,.12);
  padding: 34px;
}

.hostinger-form-space { min-height: 520px; }
.hostinger-form-space p { color: #66705d; }
.form-note { font-style: italic; }
.contact-info-card a { color: var(--dark); font-weight: bold; }

footer {
  padding: 28px 7%;
  background: var(--dark);
  color: white;
  text-align: center;
  font-family: Arial, sans-serif;
  font-size: .9rem;
}

@media (max-width: 1100px) {
  .home-hero,
  .about-hero,
  .about-story { grid-template-columns: 1fr; }
  .hero-photo-card { justify-self: start; max-width: 520px; }
  .home-info,
  .specialties-grid,
  .flip-grid { grid-template-columns: repeat(2, 1fr); }
  .tree-mark { max-width: 240px; }
}

@media (max-width: 900px) {
  .blog-grid { grid-template-columns: 1fr; }
}

@media (max-width: 850px) {
  header {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  nav { width: 100%; justify-content: flex-start; }
  .home-hero,
  .about-hero,
  .about-story,
  .page,
  .reflection,
  .specialties-section { padding: 56px 6%; }
  .home-hero { min-height: auto; }
  .flip-card { height: 460px; }
  .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 650px) {
  header { padding: 14px 5%; }
  .brand { align-items: flex-start; }
  .brand img { width: 46px; height: 46px; }
  .brand strong { font-size: 1rem; }
  .brand small { font-size: .66rem; }
  nav { gap: 8px; }
  nav a { padding: 8px 11px; font-size: .88rem; }
  .home-hero,
  .home-info,
  .about-hero,
  .about-story,
  .page,
  .reflection,
  .specialties-section,
  .blog-section,
  .qa-section,
  .reflection-divider,
  footer {
    padding-left: 5%;
    padding-right: 5%;
  }
  h1 { font-size: clamp(2.15rem, 12vw, 3.35rem); }
  h2 { font-size: 1.35rem; }
  p { font-size: 1rem; }
  .button-row { flex-direction: column; align-items: stretch; }
  .button { width: 100%; text-align: center; }
  .photo-caption { width: 100%; margin-top: 16px; }
  .home-info,
  .flip-grid,
  .specialties-grid { grid-template-columns: 1fr; }
  .flip-card { height: 450px; }
  .flip-front,
  .flip-back { padding: 22px; }
  .specialty-card { min-height: auto; padding: 28px 22px; }
  blockquote { font-size: clamp(1.45rem, 8vw, 2.3rem); }
}

@media (max-width: 390px) {
  nav a { font-size: .82rem; padding: 7px 9px; }
  h1 { font-size: 2rem; }
  .flip-card { height: 480px; }
  .learn-button { font-size: .78rem; padding: 11px 14px; }
}
/* 1. Turn the card into a column layout */
.blog-card {
  display: flex;
  flex-direction: column;
  height: 100%; /* Ensures the card stretches to full height */
}

/* 2. Push the link to the bottom */
.blog-card a {
  margin-top: auto; 
  align-self: flex-start; /* Keeps the link aligned left (remove if you want it full-width) */
}
.blog-card h3 {
  /* Forces all titles to take up the space of a 3-line heading */
  min-height: 4.5rem; 
  margin-bottom: 1.5rem; /* Optional: adds consistent breathing room below the title */
}

/* Clean, shared flip-card rules for help.html */
.flip-grid,
.specialties-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  max-width: 1200px;
  margin: 40px auto 0;
  border: 0;
  background: transparent;
}

.flip-card {
  height: 480px;
  min-width: 0;
  perspective: 1000px;
}

.flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform .7s ease;
  transform-style: preserve-3d;
}

.flip-card.flipped .flip-inner { transform: rotateY(180deg); }

.flip-front,
.flip-back {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  padding: 26px;
  overflow: hidden;
  border-radius: 12px;
  backface-visibility: hidden;
  box-shadow: 0 18px 40px rgba(47, 58, 40, .14);
}

.flip-front {
  background: var(--white);
  border: 1px solid rgba(96, 107, 72, .18);
}

.flip-back {
  background: var(--dark);
  color: var(--white);
  transform: rotateY(180deg);
}

.flip-back h2,
.flip-back p { color: var(--white); }

.flip-content {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  padding-right: 8px;
}

.flip-front p,
.flip-back p {
  margin: 0 0 14px;
  font-size: .98rem;
  line-height: 1.55;
}

.card-leaf {
  display: block;
  width: 80px;
  max-height: 80px;
  margin: 28px auto 0;
  object-fit: contain;
}

.learn-button {
  width: 100%;
  min-height: 44px;
  flex: 0 0 auto;
  margin-top: 18px;
  padding: 12px 18px;
  border: 0;
  border-radius: 999px;
  background: var(--dark);
  color: var(--white);
  cursor: pointer;
  font-family: Arial, sans-serif;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.learn-button:hover { background: var(--green); }
.learn-button.light { background: var(--white); color: var(--dark); }
.learn-button.light:hover { background: var(--sage); }

@media (max-width: 1100px) {
  .flip-grid,
  .specialties-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .flip-card { height: 460px; }
}

@media (max-width: 650px) {
  .flip-grid,
  .specialties-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    gap: 20px;
  }

  .flip-card { height: 480px; }

  .flip-front,
  .flip-back { padding: 22px; }

  .flip-content { padding-right: 4px; }

  .flip-front p,
  .flip-back p {
    overflow-wrap: break-word;
    word-break: normal;
  }
}

@media (max-width: 390px) {
  .flip-card { height: 500px; }
}




















  
 