:root {
    /* Earth tone palette */
    --bg: #f4eee6;
    --bg-alt: #efe4d7;
    --bg-card: #fffaf3;
    --border-soft: #ddcbb4;
    --text-main: #2b2117;
    --text-muted: #7a6a5a;
  
    --primary: #b0703c;     /* warm terracotta */
    --primary-dark: #8c5427;
    --accent: #6d8b5b;      /* muted olive green */
  
    --radius-lg: 18px;
    --radius-md: 12px;
    --shadow-soft: 0 16px 40px rgba(73, 49, 26, 0.1);
  }
  
  /* Basic reset */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: radial-gradient(circle at top, #fdf6eb 0, #f4eee6 45%, #f1e7d9 100%);
    color: var(--text-main);
    line-height: 1.6;
  }
  
  img {
    max-width: 100%;
    display: block;
  }
  
  a {
    color: inherit;
    text-decoration: none;
  }
  
  .container {
    max-width: 1040px;
    margin: 0 auto;
    padding: 0 1.25rem;
  }
  
  /* HEADER / NAV */
  
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #fff;
  border-bottom: 1px solid rgba(221, 203, 180, 0.6);
  box-shadow: 0 10px 30px rgba(43, 33, 23, 0.06);
}
  
  .nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
  }
  
.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.logo-img {
  height: 42px;
  width: auto;
  display: block;
}

.logo-mark {
  width: 36px;
  height: 36px;
    border-radius: 999px;
    background: radial-gradient(circle at 30% 20%, #e6c19a, #b0703c);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fdf6eb;
    font-weight: 700;
    font-size: 0.9rem;
  }
  
  .logo-text {
    display: flex;
    flex-direction: column;
    gap: 0.05rem;
  }
  
  .logo-name {
    font-weight: 600;
    letter-spacing: 0.03em;
    font-size: 0.95rem;
  }
  
  .logo-tagline {
    font-size: 0.78rem;
    font-style: italic;
    color: var(--text-muted);
  }
  
  .nav-links {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
  }
  
  .nav-links a {
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    color: var(--text-muted);
    border: 1px solid transparent;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  }
  
  .nav-links a:hover {
    background: rgba(255, 250, 243, 0.9);
    border-color: rgba(221, 203, 180, 0.7);
    color: var(--text-main);
  }
  
  .nav-links .active {
    color: var(--primary-dark);
    border-color: rgba(221, 203, 180, 0.9);
    background: rgba(255, 250, 243, 0.9);
  }
  
  .nav-cta {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fffaf3 !important;
    border-color: transparent !important;
    box-shadow: 0 12px 30px rgba(176, 112, 60, 0.35);
  }
  
  .nav-cta:hover {
    filter: brightness(1.02);
  }
  
  /* HERO HOME */
  
  .hero {
    padding: 3.2rem 0 2.8rem;
  }
  
  .hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
    gap: 2.5rem;
    align-items: flex-start;
    margin-bottom: 0.75rem;
  }

  .hero-side {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-self: stretch;
    margin-top: 0.6rem;
  }

  .hero-figure {
    margin: 0.5rem 0 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    background: #f3ebdf;
  }

  .hero-figure img {
    width: 100%;
    height: fit;
    max-height: 450px;
    object-fit: contain;
    display: block;
  }

  .hero-grid p {
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-muted);
    max-width: 36rem;
  }
  
  .eyebrow {
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
  }
  
  h1 {
    font-size: clamp(2.1rem, 3.2vw, 2.6rem);
    line-height: 1.1;
    margin-bottom: 0.9rem;
  }
  
  .highlight {
    color: var(--primary-dark);
  }
  
  .hero-subtitle {
    font-size: 0.95rem;
    color: var(--text-muted);
    max-width: 34rem;
    margin-bottom: 1.4rem;
  }
  
  .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 3rem;
    margin-bottom: 0.5rem;
  }
  
  .hero-note {
    font-size: 0.8rem;
    color: var(--text-muted);
  }
  
.hero-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  padding: 0.9rem 0.85rem;
  box-shadow: var(--shadow-soft);
}

.hero-card-title {
  font-size: 0.98rem;
  margin-bottom: 0.6rem;
}
  
  .checklist {
    list-style: none;
    margin-bottom: 1.25rem;
  }
  
.checklist li {
  position: relative;
  padding-left: 1.3rem;
  font-size: 0.86rem;
  color: var(--text-muted);
  margin-bottom: 0.3rem;
}
  
  .checklist li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0.15rem;
    font-size: 0.8rem;
    color: var(--accent);
  }
  
.stat-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
  margin-bottom: 0.75rem;
}

.stat {
  padding: 0.45rem 0.6rem;
  border-radius: var(--radius-md);
  background: #f9f1e5;
}
  
  .stat-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
  }
  
.stat-value {
  font-weight: 600;
  font-size: 1rem;
}

.hero-card-footnote {
  font-size: 0.78rem;
  color: var(--text-muted);
}
  
  /* BUTTONS / LINKS */
  
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 1.2rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 0.9rem;
    cursor: pointer;
    transition: box-shadow 0.15s ease, transform 0.15s ease, background 0.15s ease;
    white-space: nowrap;
  }
  
  .btn.primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fffaf3;
    box-shadow: 0 14px 30px rgba(176, 112, 60, 0.35);
  }
  
  .btn.primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 38px rgba(176, 112, 60, 0.4);
  }
  
  .btn.ghost {
    background: rgba(255, 250, 243, 0.9);
    border-color: var(--border-soft);
    color: var(--text-main);
  }
  
  .btn.ghost:hover {
    background: #fffaf3;
  }
  
  .btn.full-width {
    width: 100%;
  }
  
  .link-arrow {
    font-size: 0.9rem;
    color: var(--primary-dark);
  }
  
  /* HOME lower section */
  
  .home-sections {
    padding: 2.8rem 0 3.5rem;
  }
  
  .home-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.8rem;
  }
  
  .home-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 1.6rem 1.5rem;
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-soft);
  }
  
  .home-card h2 {
    margin-bottom: 0.6rem;
  }
  
.home-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
}
  
  .bullet-list {
    margin-left: 1.1rem;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    color: var(--text-muted);
  }
  
  .bullet-list li {
    margin-bottom: 0.3rem;
  }

  .mini-logo-band {
  padding: 0.2rem 0 0.4rem;
  border-top: 1px solid rgba(221, 203, 180, 0.5);
  border-bottom: 1px solid rgba(221, 203, 180, 0.45);
}

.mini-logo-wrap {
  display: flex;
  justify-content: center;
}

.mini-logo {
  height: 110px;
  width: auto;
  filter: drop-shadow(0 10px 24px rgba(43, 33, 23, 0.08));
}

/* HOME: SERVICE PANELS */

.section-heading {
  max-width: 52rem;
  margin-bottom: 1.6rem;
}

.section-heading h2 {
  margin-bottom: 0.45rem;
}

.section-intro {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.panel-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.panel-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
  padding: 1.1rem 1.05rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.panel-media {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #f3ebdf;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 0.9rem;
}

.panel-media img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.panel-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(239, 228, 215, 0.9);
  color: var(--primary-dark);
  border-radius: 999px;
  padding: 0.35rem 0.8rem;
  font-size: 0.82rem;
  margin: 0.65rem auto 0.15rem;
  border: 1px solid var(--border-soft);
  box-shadow: 0 8px 18px rgba(43, 33, 23, 0.08);
}

.panel-subtitle:hover {
  background: #fffaf3;
}

.panel-card h3 {
  font-size: 1.05rem;
  margin: 0;
}

.panel-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin: 0;
}

/* GENERIC PAGE SECTIONS */

.page-hero {
  padding: 3rem 0 1.5rem;
}
  
  .page-hero h1 {
    margin-bottom: 0.5rem;
  }
  
  .page-intro {
    max-width: 40rem;
    color: var(--text-muted);
    font-size: 0.95rem;
  }

  .page-intro-2 {
    max-width: 40rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 20px 0;
  }
  
.section {
  padding: 2rem 0 2.4rem;
}

.section-alt {
  background: var(--bg-alt);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.15rem;
}
  
.service-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 1.1rem 1rem 1.3rem;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.service-card h2 {
  margin-bottom: 0.5rem;
}
  
.service-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 0.9rem;
}

.service-meta {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.service-media {
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #f3ebdf;
  box-shadow: var(--shadow-soft);
}

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

.service-video {
  position: relative;
  padding-top: 56.25%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: #000;
}

.service-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
  
  /* SPLIT LAYOUT */
  
  .split {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 1.8rem;
    align-items: start;
  }
  
  .steps {
    margin-left: 1.2rem;
    font-size: 0.9rem;
    color: var(--text-muted);
  }
  
  .steps li {
    margin-bottom: 0.45rem;
  }
  
  .callout {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 1.4rem 1.3rem;
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-soft);
  }
  
  .callout h3 {
    margin-bottom: 0.4rem;
  }
  
  .callout p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.8rem;
  }
  
  /* ABOUT GRID */
  
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
  gap: 2.2rem;
  align-items: start;
}

.about-grid p {
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.about-side {
  display: grid;
  grid-template-rows: 0.72fr 0.28fr;
  gap: 0.9rem;
  height: 100%;
}

.about-figure {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  min-height: 340px;
  background: #f3ebdf;
}

.about-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bio-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
  padding: 1.5rem 1.4rem;
}

.about-side .bio-card {
  align-self: stretch;
}

.bio-card h3 {
  margin-bottom: 0.5rem;
}
  
  .tag-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 0.4rem;
  }
  
  .tag-list li {
    font-size: 0.8rem;
    padding: 0.2rem 0.65rem;
    border-radius: 999px;
    background: #f9f1e5;
    color: var(--text-muted);
  }
  
  /* CONTACT */
  
  .contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    gap: 2.2rem;
  }
  
  .contact-form {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-soft);
    padding: 1.6rem 1.5rem;
  }
  
  .field-group {
    margin-bottom: 0.9rem;
  }
  
  label {
    display: block;
    font-size: 0.8rem;
    margin-bottom: 0.2rem;
    color: var(--text-muted);
  }
  
  input,
  textarea {
    width: 100%;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-soft);
    padding: 0.55rem 0.7rem;
    font-size: 0.9rem;
    font-family: inherit;
    background: #fffef9;
    color: var(--text-main);
  }
  
  input:focus,
  textarea:focus {
    outline: 2px solid rgba(176, 112, 60, 0.6);
    outline-offset: 1px;
    border-color: transparent;
  }
  
  textarea {
    resize: vertical;
    min-height: 120px;
  }
  
  .form-note {
    margin-top: 0.6rem;
    font-size: 0.8rem;
    color: var(--text-muted);
  }
  
  .contact-info h2 {
    margin-bottom: 0.6rem;
  }
  
  .info-list {
    list-style: none;
    margin-bottom: 0.7rem;
  }
  
  .info-list li {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.6rem;
  }
  
  .info-list a {
    text-decoration: underline;
    text-decoration-style: dotted;
  }
  
  .small {
    font-size: 0.8rem;
    color: var(--text-muted);
  }
  
  /* FOOTER */
  
  .site-footer {
    padding: 1.5rem 0 2rem;
    border-top: 1px solid rgba(221, 203, 180, 0.7);
    margin-top: 1rem;
  }
  
  .footer-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    align-items: center;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-muted);
  }
  
  .footer-links {
    display: flex;
    gap: 0.75rem;
  }
  
  .footer-links a {
    text-decoration: none;
    color: var(--text-muted);
  }
  
  .footer-links a:hover {
    color: var(--text-main);
  }
  
  /* RESPONSIVE */
  
  @media (max-width: 900px) {
    .hero-grid,
    .home-grid,
    .about-grid,
    .contact-grid,
    .split,
    .panel-grid {
      grid-template-columns: minmax(0, 1fr);
    }

    .hero {
      padding-top: 2.6rem;
    }
  }
  
  @media (max-width: 720px) {
    .nav-links {
      display: none; /* keep it simple: hide nav on very small screens */
    }

    .site-header {
      position: static;
    }
  
    .stat-row {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }
  
  @media (max-width: 480px) {
    .stat-row {
      grid-template-columns: minmax(0, 1fr);
    }
  
    .home-card,
    .hero-card,
    .contact-form,
    .bio-card {
      padding: 1.2rem 1.1rem;
    }
  }
  
