:root {
  --navy:        #242e3b;   /* brand dark */
  --navy-light:  #2f3d4e;   /* slightly lighter navy */
  --navy-mid:    #3a4d62;   /* mid shade */
  --navy-muted:  #4a5e76;   /* subtle elements */

  --green:       #81ba23;   /* brand green */
  --green-dark:  #5e8a18;   /* darker — labels, active */
  --green-mid:   #6da11f;   /* mid — hovers */
  --green-light: #a3cf5f;   /* lighter — accents */
  --green-pale:  #d4edac;   /* very light — backgrounds */

  --cream:       #f4f8ee;
  --warm-white:  #f8faf4;
  --text:        #242e3b;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Crimson Pro', Georgia, serif;
  background: var(--warm-white);
  color: var(--text);
  overflow-x: hidden;
}

/* NAV */
nav.tb-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.15rem 4rem;
  border-bottom: 2px solid var(--green);
  transition: padding 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

nav.tb-nav.scrolled {
  padding: 0.6rem 4rem;
  background: rgba(36,46,59,0.97);
  box-shadow: 0 6px 24px rgba(0,0,0,0.28);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-logo img {
  height: 52px;
  width: auto;
  filter: brightness(1.05);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 300;
  transition: color 0.3s;
}

.nav-links a:hover { color: var(--green-light); }

/* HERO */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 8rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(129,186,35,0.08) 0%, transparent 70%),
    repeating-linear-gradient(0deg, transparent, transparent 59px, rgba(129,186,35,0.03) 60px),
    repeating-linear-gradient(90deg, transparent, transparent 59px, rgba(129,186,35,0.03) 60px);
}

.hero-logo {
  opacity: 0;
  animation: fadeUp 1s ease 0.2s forwards;
  margin-bottom: 2rem;
}

.hero-logo img {
  height: 400px;
  width: auto;
  filter: drop-shadow(0 4px 24px rgba(129,186,35,0.25));
}

.hero-tagline {
  font-family: 'Crimson Pro', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 1.1rem;
  color: var(--green-light);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 1s ease 0.4s forwards;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(3rem, 8vw, 7rem);
  color: #fff;
  line-height: 1.05;
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeUp 1s ease 0.65s forwards;
}

.hero h1 span { color: var(--green); }

.hero-pillars {
  display: flex;
  gap: 2rem;
  margin: 2rem 0;
  opacity: 0;
  animation: fadeUp 1s ease 0.9s forwards;
}

.hero-pillars span {
  color: var(--green-pale);
  font-size: 1.1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 300;
  position: relative;
}

.hero-pillars span:not(:last-child)::after {
  content: '•';
  position: absolute;
  right: -1.2rem;
  color: var(--green);
}

.hero-sub {
  max-width: 600px;
  font-size: 1.25rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeUp 1s ease 1.1s forwards;
}

.hero-cta {
  display: flex;
  gap: 1.5rem;
  opacity: 0;
  animation: fadeUp 1s ease 1.3s forwards;
}

.btn-primary {
  background: var(--green);
  color: var(--navy);
  padding: 1rem 2.5rem;
  font-family: 'Crimson Pro', serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--green-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(129,186,35,0.35);
}

.btn-outline {
  border: 1.5px solid var(--green);
  color: var(--green);
  padding: 1rem 2.5rem;
  font-family: 'Crimson Pro', serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-block;
  background: transparent;
  cursor: pointer;
}

.btn-outline:hover {
  background: rgba(129,186,35,0.12);
  transform: translateY(-2px);
}

/* SECTION SHARED */
section { padding: 7.5rem 4rem; }

.section-label {
  font-family: 'Crimson Pro', serif;
  font-style: italic;
  font-size: 0.9rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 1rem;
  display: block;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 1.5rem;
}

.divider {
  width: 60px;
  height: 3px;
  background: var(--green);
  margin: 1.5rem 0;
}

/* SERVICES */
.services { background: var(--cream); }

.services-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: var(--navy);
  padding: 3.5rem 2.5rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s;
}

.service-card:nth-child(2) { background: var(--green); }

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--green);
}

.service-card:nth-child(2)::before { background: var(--navy); }

.service-card:hover { transform: translateY(-6px); z-index: 2; }

.service-number {
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  font-weight: 900;
  color: rgba(255,255,255,0.05);
  position: absolute;
  top: 1rem; right: 1.5rem;
  line-height: 1;
}

.service-card:nth-child(2) .service-number { color: rgba(36,46,59,0.1); }

.service-icon { font-size: 2rem; margin-bottom: 1.5rem; }

.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 0.75rem;
}

.service-card:nth-child(2) h3 { color: var(--navy); }

.service-card .tagline {
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}

.service-card:nth-child(2) .tagline { color: rgba(36,46,59,0.6); }

.service-list { list-style: none; }

.service-list li {
  color: rgba(255,255,255,0.88);
  font-size: 1rem;
  padding: 0.4rem 0 0.4rem 1rem;
  position: relative;
  font-weight: 300;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.service-card:nth-child(2) .service-list li {
  color: var(--navy);
  border-bottom-color: rgba(36,46,59,0.15);
}

.service-list li::before {
  content: '—';
  position: absolute;
  left: -0.5rem;
  color: var(--green-light);
  font-size: 0.8rem;
}

.service-card:nth-child(2) .service-list li::before { color: var(--navy-mid); }

/* SERVICE OFFERINGS SHOWCASE */
.offerings {
  background: var(--warm-white);
  padding: 7rem 4rem;
}

.offerings-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 4.5rem;
}

.offerings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2.5rem;
  max-width: 1240px;
  margin: 0 auto;
}

.offering-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(36,46,59,0.08);
  border-radius: 6px;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  /* reset <button> defaults */
  width: 100%;
  padding: 0;
  text-align: left;
  font-family: inherit;
  color: inherit;
  cursor: pointer;
}

.offering-count {
  position: absolute;
  bottom: 0.8rem;
  right: 0.9rem;
  z-index: 1;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  color: #fff;
  background: rgba(20,26,34,0.55);
  padding: 0.28rem 0.6rem;
  border-radius: 100px;
  backdrop-filter: blur(2px);
}

.offering-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(36,46,59,0.14);
}

.offering-media {
  height: 190px;
  background:
    linear-gradient(135deg, var(--accent, var(--navy)) 0%, var(--navy) 120%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* Real Drive photo layered over the accent gradient. If the folder isn't shared
   publicly (image fails to load), the gradient underneath shows through. */
.offering-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.offering-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,26,34,0.5) 0%, rgba(20,26,34,0.05) 55%, rgba(20,26,34,0.12) 100%);
}

.offering-body {
  padding: 1.75rem 1.75rem 2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.offering-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.6rem;
}

.offering-body p {
  font-size: 1rem;
  line-height: 1.65;
  color: #667;
  font-weight: 300;
  flex: 1;
  margin-bottom: 1.25rem;
}

.offering-link {
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--green-dark);
  transition: color 0.25s, letter-spacing 0.25s;
}

.offering-card:hover .offering-link {
  color: var(--green-mid);
  letter-spacing: 0.2em;
}

/* LIGHTBOX GALLERY */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(15,19,25,0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  animation: lbFade 0.25s ease;
}

.lightbox[hidden] { display: none; }

@keyframes lbFade { from { opacity: 0; } to { opacity: 1; } }

.lb-stage {
  margin: 0;
  max-width: min(1100px, 92vw);
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.lb-img {
  max-width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  background: #0f1319;
}

.lb-caption {
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-align: center;
}

.lb-caption .lb-title {
  font-family: 'Playfair Display', serif;
  color: var(--green-light);
  margin-right: 0.5rem;
}

.lb-close, .lb-prev, .lb-next {
  position: fixed;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
  line-height: 1;
}

.lb-close:hover, .lb-prev:hover, .lb-next:hover {
  background: var(--green);
  color: var(--navy);
  border-color: var(--green);
}

.lb-close {
  top: 1.25rem;
  right: 1.5rem;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  font-size: 1.9rem;
}

.lb-prev, .lb-next {
  top: 50%;
  transform: translateY(-50%);
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  font-size: 2rem;
}

.lb-prev:hover, .lb-next:hover { transform: translateY(-50%) scale(1.08); }

.lb-prev { left: 1.5rem; }
.lb-next { right: 1.5rem; }

@media (max-width: 900px) {
  .lightbox { padding: 1rem; }
  .lb-prev, .lb-next { width: 2.75rem; height: 2.75rem; font-size: 1.6rem; }
  .lb-prev { left: 0.5rem; }
  .lb-next { right: 0.5rem; }
  .lb-close { top: 0.6rem; right: 0.6rem; }
}

/* VALUES */
.values {
  background: var(--warm-white);
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 4rem;
}

.values-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.values-left .section-title { font-size: clamp(2rem, 3.5vw, 2.8rem); }

.values-left p {
  font-size: 1.2rem;
  line-height: 1.9;
  color: #556;
  font-weight: 300;
}

.values-list { display: flex; flex-direction: column; gap: 2rem; }

.value-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(129,186,35,0.2);
}

.value-item:last-child { border-bottom: none; padding-bottom: 0; }

.value-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--green-pale);
  line-height: 1;
  min-width: 2rem;
}

.value-content h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.value-content p {
  font-size: 1.05rem;
  color: #667;
  line-height: 1.7;
  font-weight: 300;
}

/* FOUNDER */
.founder {
  background: var(--navy);
  padding: 6rem 4rem;
  position: relative;
  overflow: hidden;
}

.founder::before {
  content: '"';
  position: absolute;
  font-family: 'Playfair Display', serif;
  font-size: 30rem;
  color: rgba(129,186,35,0.04);
  top: -4rem; left: -2rem;
  line-height: 1;
  font-weight: 900;
}

.founder-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 6rem;
  align-items: center;
}

.founder-bio h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: #fff;
  margin-bottom: 1rem;
}

.founder-bio .divider { background: var(--green); }

.founder-bio .title {
  color: var(--green);
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  display: block;
}

.founder-bio p {
  color: rgba(255,255,255,0.68);
  font-size: 1.1rem;
  line-height: 1.9;
  font-weight: 300;
}

.founder-quote blockquote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  color: #fff;
  line-height: 1.65;
  font-weight: 400;
}

.founder-quote blockquote em {
  color: var(--green);
  font-style: normal;
}

.founder-sig {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(129,186,35,0.28);
}

.founder-sig .name {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--green);
  font-style: italic;
}

.founder-sig .role {
  color: rgba(255,255,255,0.42);
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 0.25rem;
}

/* CONTACT */
.contact {
  background: var(--cream);
  text-align: center;
  padding: 6rem 2rem;
}

.contact .section-title { font-size: clamp(2rem, 4vw, 3rem); }

.contact > p {
  max-width: 560px;
  margin: 0 auto 3rem;
  font-size: 1.2rem;
  line-height: 1.8;
  color: #667;
  font-weight: 300;
}

/* CONTACT FORM */
.contact-form {
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.form-section-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--navy);
  letter-spacing: 0.01em;
  margin-bottom: 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(129,186,35,0.3);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-grid .field-full,
.contact-form .field-full { grid-column: 1 / -1; }

.contact-form label {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-dark);
  font-weight: 600;
  margin-bottom: 0.4rem;
}

/* radio / checkbox groups */
.radio-group,
.check-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.5rem;
  margin-top: 0.2rem;
}

.check-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem 1.5rem;
}

.radio-group.wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 0.7rem 1.5rem; }

.radio-item,
.check-item,
.consent-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.98rem;
  font-weight: 400;
  letter-spacing: normal;
  text-transform: none;
  color: var(--text);
  cursor: pointer;
  margin-bottom: 0;
}

.contact-form input[type="checkbox"],
.contact-form input[type="radio"] {
  width: auto;
  margin: 0;
  accent-color: var(--green);
  flex: 0 0 auto;
}

.consent-item {
  align-items: flex-start;
  font-size: 0.95rem;
  color: #556;
  line-height: 1.55;
}

.consent-item input { margin-top: 0.25rem; }

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: 'Crimson Pro', serif;
  font-size: 1rem;
  color: var(--text);
  background: #fff;
  border: 1.5px solid rgba(36,46,59,0.15);
  border-radius: 2px;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(129,186,35,0.15);
}

.contact-form textarea { resize: vertical; min-height: 140px; }

.contact-form .validation-message,
.contact-form .field-error {
  display: block;
  color: #c0392b;
  font-size: 0.85rem;
  margin-top: 0.3rem;
}

.contact-form .form-actions {
  grid-column: 1 / -1;
  text-align: center;
  margin-top: 0.5rem;
}

.form-success {
  max-width: 560px;
  margin: 0 auto;
  background: #fff;
  border: 1.5px solid var(--green);
  border-left: 5px solid var(--green);
  padding: 2rem 2.5rem;
  text-align: left;
}

.form-success h3 {
  font-family: 'Playfair Display', serif;
  color: var(--green-dark);
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.form-success p { color: #556; font-size: 1.1rem; line-height: 1.7; }

/* CONTACT CTA BAND */
.cta-band .btn-primary {
  display: inline-block;
  margin-top: 0.5rem;
}

/* CONTACT MODAL */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 4vh 1rem;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background: rgba(16, 22, 30, 0.72);
  backdrop-filter: blur(3px);
}

.modal-overlay.open { display: flex; }

body.modal-lock { overflow: hidden; }

.modal-dialog {
  position: relative;
  width: 100%;
  max-width: 780px;
  margin: auto;
  /* Bootstrap's base .modal-dialog sets pointer-events:none (it expects an
     inner .modal-content to re-enable them). This modal has no .modal-content,
     so restore clicks here — otherwise every click falls through to the
     overlay and the backdrop handler closes the modal. */
  pointer-events: auto;
  background: var(--cream);
  border-top: 4px solid var(--green);
  border-radius: 4px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  padding: 3rem clamp(1.25rem, 4vw, 3rem);
  animation: modalIn 0.28s ease;
}

@keyframes modalIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

.modal-close {
  position: absolute;
  top: 0.9rem;
  right: 1rem;
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  line-height: 1;
  color: var(--navy);
  background: transparent;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.modal-close:hover { background: rgba(36, 46, 59, 0.08); color: var(--green-dark); }

.modal-head {
  text-align: center;
  margin-bottom: 2.25rem;
}

.modal-head .section-title {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  margin-top: 0.4rem;
}

.modal-head > p {
  max-width: 520px;
  margin: 1.25rem auto 0;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #667;
  font-weight: 300;
}

.modal-dialog .contact-form,
.modal-dialog .form-success { margin: 0 auto; }

/* REVIEWS */
.reviews { background: var(--cream); }

.reviews-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem;
}

.reviews-summary {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.reviews-score {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
}

.reviews-count {
  color: #667;
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.03em;
}

.stars { display: inline-flex; gap: 0.12rem; line-height: 1; }
.stars .star { color: rgba(36,46,59,0.18); font-size: 1.15rem; }
.stars .star.filled { color: #f5a623; }
.stars.stars-lg .star { font-size: 1.6rem; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 1240px;
  margin: 0 auto;
}

.review-card {
  background: #fff;
  border: 1px solid rgba(36,46,59,0.08);
  border-radius: 6px;
  padding: 1.75rem 1.75rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  box-shadow: 0 4px 16px rgba(36,46,59,0.05);
}

.review-head {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.review-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  flex: 0 0 auto;
}

.review-avatar-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green);
  color: var(--navy);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.25rem;
}

.review-meta { display: flex; flex-direction: column; flex: 1; min-width: 0; }

.review-author {
  font-weight: 600;
  color: var(--navy);
  font-size: 1.05rem;
}

.review-time {
  color: #889;
  font-size: 0.85rem;
  font-weight: 300;
}

.review-gmark {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 1.3rem;
  color: #4285F4;
  flex: 0 0 auto;
}

.review-text {
  color: #556;
  font-size: 1.02rem;
  line-height: 1.7;
  font-weight: 300;
  white-space: pre-line;
}

.reviews-cta {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-top: 3.5rem;
}

/* FOOTER */
footer.tb-footer {
  background: #161d26;
  padding: 2.5rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 2px solid var(--green);
}

.footer-logo img {
  height: 48px;
  width: auto;
  opacity: 0.9;
}

.footer-pillars {
  color: rgba(255,255,255,0.38);
  font-size: 0.9rem;
  font-style: italic;
  letter-spacing: 0.15em;
}

.footer-pillars span { color: var(--green-light); }

.footer-review a {
  color: var(--green-light);
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  transition: color 0.25s;
}

.footer-review a:hover { color: #fff; }

.footer-copy {
  color: rgba(255,255,255,0.28);
  font-size: 0.85rem;
}

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ADMIN */
.admin-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 7rem 2rem 4rem;
}

.admin-wrap h1 {
  font-family: 'Playfair Display', serif;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  font-size: 0.95rem;
}

.admin-table th {
  background: var(--navy);
  color: #fff;
  text-align: left;
  padding: 0.75rem 1rem;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(36,46,59,0.1);
  vertical-align: top;
}

.admin-table tr:hover td { background: var(--cream); }

/* FLOATING "LEAVE A REVIEW" BUBBLE */
.review-bubble {
  position: fixed;
  top: 6.75rem;                 /* clears the fixed nav */
  right: 1.5rem;
  z-index: 90;                  /* under nav (100) and modals (1000) */
  width: 300px;
  max-width: calc(100vw - 3rem);
  background: var(--navy);
  color: #fff;
  border: 1px solid rgba(129,186,35,0.55);
  border-radius: 14px;
  box-shadow: 0 14px 36px rgba(0,0,0,0.34);
  padding: 1.05rem 1.2rem 1.1rem;
  opacity: 0;
  transform: translateY(-12px) scale(0.98);
  pointer-events: none;         /* not interactive until revealed */
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.review-bubble.show {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.review-bubble.dismissed { display: none; }

.review-bubble-close {
  position: absolute;
  top: 0.3rem;
  right: 0.5rem;
  background: none;
  border: none;
  color: rgba(255,255,255,0.55);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.1rem 0.35rem;
  transition: color 0.2s;
}

.review-bubble-close:hover { color: #fff; }

.review-bubble-link {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  color: inherit;
}

.review-bubble-icon {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}

.review-bubble-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.review-bubble-text strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.2;
}

.review-bubble-stars {
  color: #ffc93c;
  letter-spacing: 2px;
  font-size: 0.95rem;
}

.review-bubble-cta {
  color: var(--green-light);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
}

.review-bubble-link:hover .review-bubble-cta { color: #fff; }

@media (prefers-reduced-motion: reduce) {
  .review-bubble { transition: opacity 0.2s ease; transform: none; }
  .review-bubble.show { transform: none; }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .review-bubble { top: 5.25rem; right: 0.85rem; width: 270px; padding: 0.9rem 1rem 0.95rem; }
  nav.tb-nav { padding: 0.75rem 1.5rem; }
  .nav-logo img { height: 40px; }
  .nav-links { gap: 1.5rem; }
  section, .values, .offerings { padding: 4rem 1.5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .offerings-grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .reviews-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .offerings-header { margin-bottom: 2.5rem; }
  .values-layout { grid-template-columns: 1fr; gap: 3rem; }
  .founder-inner { grid-template-columns: 1fr; gap: 3rem; }
  footer.tb-footer { flex-direction: column; gap: 1.25rem; text-align: center; }
  .hero-pillars { flex-direction: column; gap: 0.5rem; }
  .hero-pillars span::after { display: none; }
  .hero-cta { flex-direction: column; align-items: center; }
  .form-grid,
  .check-group,
  .radio-group.wrap { grid-template-columns: 1fr; }
  .modal-dialog { padding: 2.5rem 1.25rem; }
  .modal-overlay { padding: 2vh 0.75rem; }
}
