/* =============================================
   Play, Paws, Repeat — Main Stylesheet
   Premium, clean, warm — boutique pet care
   ============================================= */

/* ── Custom Properties ────────────────────── */
:root {
  /* Palette */
  --green-900: #1E3421;
  --green-700: #2D4C32;
  --green-500: #4A7854;
  --green-300: #7FAA87;
  --green-100: #D4E5D7;
  --gold-500:  #B8883A;
  --gold-300:  #D4A94E;
  --gold-100:  #F5ECD7;
  --cream:     #F9F6EF;
  --cream-50:  #FDFCF9;
  --stone-900: #231F1A;
  --stone-700: #5B5448;
  --stone-500: #8C8476;
  --stone-300: #C4BDB2;
  --stone-100: #EBE7DF;
  --white:     #FFFFFF;

  /* Semantic */
  --c-primary:         var(--green-700);
  --c-primary-dark:    var(--green-900);
  --c-primary-light:   var(--green-300);
  --c-accent:          var(--gold-500);
  --c-accent-light:    var(--gold-300);
  --c-bg:              var(--cream);
  --c-bg-warm:         var(--cream-50);
  --c-surface:         var(--white);
  --c-text:            var(--stone-900);
  --c-text-muted:      var(--stone-700);
  --c-text-subtle:     var(--stone-500);
  --c-border:          var(--stone-100);
  --c-border-strong:   var(--stone-300);
  --c-success:         var(--green-700);
  --c-error:           #B5343A;

  /* Typography */
  --ff-heading: 'Cormorant Garamond', 'Georgia', serif;
  --ff-body:    'Inter', -apple-system, 'Segoe UI', sans-serif;
  --fs-xs:      0.75rem;
  --fs-sm:      0.875rem;
  --fs-base:    1rem;
  --fs-lg:      1.125rem;
  --fs-xl:      1.25rem;
  --fs-2xl:     1.5rem;
  --fs-3xl:     2rem;
  --fs-4xl:     2.5rem;
  --fs-5xl:     3.25rem;
  --fs-6xl:     4.25rem;
  --lh-body:    1.7;
  --lh-heading: 1.15;

  /* Spacing */
  --sp-2xs: 0.25rem;
  --sp-xs:  0.5rem;
  --sp-sm:  0.75rem;
  --sp-md:  1rem;
  --sp-lg:  1.5rem;
  --sp-xl:  2rem;
  --sp-2xl: 3rem;
  --sp-3xl: 4.5rem;
  --sp-4xl: 6rem;
  --sp-5xl: 8rem;

  /* Layout */
  --max-width:    1160px;
  --pad-inline:   2rem;
  --section-gap:  6rem;

  /* Effects */
  --radius-sm: 6px;
  --radius:    10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,.04);
  --shadow:    0 4px 20px rgba(0,0,0,.06);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.08);
  --ease:      cubic-bezier(.4,0,.2,1);

  /* Header */
  --header-h: 4.5rem;
}

/* ── Reset & Base ────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin:0; padding:0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }
body {
  font-family: var(--ff-body);
  font-size: var(--fs-base);
  line-height: var(--lh-body);
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width:100%; height:auto; display:block; }
a { color: var(--c-primary); text-decoration:none; transition: color .2s var(--ease); }
a:hover { color: var(--c-primary-dark); }
ul, ol { list-style:none; }
::selection { background: var(--green-100); color: var(--green-900); }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--pad-inline);
}

/* ── Typography ──────────────────────────── */
h1, h2, h3, h4 { font-family: var(--ff-heading); line-height: var(--lh-heading); color: var(--c-text); }
p + p { margin-top: var(--sp-sm); }
strong { font-weight: 600; }

.section-eyebrow {
  font-size: var(--fs-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--c-accent);
  margin-bottom: var(--sp-sm);
}
.section-heading {
  font-size: var(--fs-4xl);
  font-weight: 600;
  color: var(--green-900);
  margin-bottom: var(--sp-sm);
}
.section-sub {
  font-size: var(--fs-lg);
  color: var(--c-text-muted);
  max-width: 520px;
}
.text-center { text-align: center; }
.section-sub.text-center { margin: 0 auto var(--sp-2xl); }

/* ── Buttons ─────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .4rem;
  font-family: var(--ff-body); font-size: var(--fs-sm); font-weight: 600;
  padding: .7rem 1.5rem; border: 2px solid transparent; border-radius: var(--radius);
  cursor: pointer; transition: all .25s var(--ease); text-decoration: none;
  white-space: nowrap; line-height: 1.4;
}
.btn-primary {
  background: var(--green-700); color: #fff; border-color: var(--green-700);
}
.btn-primary:hover {
  background: var(--green-900); border-color: var(--green-900);
  color: #fff; transform: translateY(-1px); box-shadow: var(--shadow);
}
.btn-outline {
  background: transparent; color: var(--green-700); border-color: var(--green-300);
}
.btn-outline:hover {
  background: var(--green-700); border-color: var(--green-700);
  color: #fff; transform: translateY(-1px);
}
.btn-outline-light {
  background: transparent; color: #fff; border-color: rgba(255,255,255,.45);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,.12); border-color: #fff; color: #fff;
}
.btn-lg { padding: .9rem 2rem; font-size: var(--fs-base); border-radius: var(--radius-lg); }
.btn-full { width: 100%; }

/* ── Logo ────────────────────────────────── */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--c-text);
  flex-shrink: 0;
}
.logo-img {
  height: 32px;
  width: auto;
  flex-shrink: 0;
}
.logo-text {
  font-family: var(--ff-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--green-900);
  line-height: 1.15;
  white-space: nowrap;
}

/* ── Lockup Horizontal: [TrioMark] + Wordmark ── */
.logo-lockup {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-lockup-mark {
  height: 34px;
  width: auto;
  display: block;
  flex-shrink: 0;
}
.logo-lockup-text {
  font-family: var(--ff-heading);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--green-900);
  line-height: 1.15;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .logo-lockup { gap: 8px; }
  .logo-lockup-mark { height: 28px; }
  .logo-lockup-text { font-size: 1.1rem; }
}

@media (max-width: 480px) {
  .logo-lockup { gap: 6px; }
  .logo-lockup-mark { height: 24px; }
  .logo-lockup-text { font-size: 0.95rem; }
}



@media (max-width: 768px) {
  .logo-img { height: 28px; }
  .logo-text { font-size: 1.1rem; }
}

@media (max-width: 480px) {
  .logo-img { height: 24px; }
  .logo-text { font-size: 0.95rem; }
}

/* ── Header ──────────────────────────────── */
.header {
  position: fixed; top:0; left:0; right:0; z-index:1000;
  height: var(--header-h);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--c-border);
  transition: box-shadow .3s var(--ease);
}
.header.scrolled { box-shadow: var(--shadow-sm); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%; gap: var(--sp-xl);
}



.nav-list { display: flex; align-items: center; gap: var(--sp-xs); }
.nav-link {
  display: block; padding: .45rem .85rem;
  font-size: var(--fs-sm); font-weight: 500;
  color: var(--c-text-muted); border-radius: var(--radius-sm);
  transition: all .2s var(--ease);
}
.nav-link:hover,
.nav-link.active { color: var(--c-primary); background: rgba(45,76,50,.06); }

.nav-cta { font-size: var(--fs-sm); padding: .55rem 1.25rem; }
.nav-cta-mobile { display: none; }

.nav-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  background: none; border: none; cursor: pointer; padding: .5rem; z-index: 1001;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px; background: var(--c-text);
  border-radius: 2px; transition: all .3s var(--ease);
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  color: #fff; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg-img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-bg-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(30,52,33,.75) 0%,
    rgba(30,52,33,.55) 40%,
    rgba(0,0,0,.35) 100%
  );
}
.hero-inner {
  position: relative; z-index: 1;
  max-width: 720px; padding: var(--header-h) var(--pad-inline) var(--sp-4xl);
}
.hero-location {
  display: inline-block;
  font-size: var(--fs-xs); font-weight: 600;
  text-transform: uppercase; letter-spacing: .12em;
  color: rgba(255,255,255,.75);
  padding: var(--sp-2xs) var(--sp-sm);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50px; margin-bottom: var(--sp-lg);
  backdrop-filter: blur(4px);
}
.hero-title {
  font-size: var(--fs-6xl); font-weight: 600;
  color: #fff; margin-bottom: var(--sp-lg);
  line-height: 1.08;
}
.hero-subtitle {
  font-size: var(--fs-lg); color: rgba(255,255,255,.85);
  margin-bottom: var(--sp-2xl); max-width: 560px;
  line-height: var(--lh-body);
}
.hero-actions {
  display: flex; gap: var(--sp-md); flex-wrap: wrap;
  margin-bottom: var(--sp-xl);
}
.hero-contact-row {
  display: flex; align-items: center; gap: var(--sp-md);
  font-size: var(--fs-sm); color: rgba(255,255,255,.55);
  flex-wrap: wrap;
}
.hero-contact-link {
  color: rgba(255,255,255,.8); font-weight: 500;
  transition: color .2s var(--ease);
}
.hero-contact-link:hover { color: #fff; }

/* ── Trust Strip ─────────────────────────── */
.trust-strip {
  background: var(--c-surface); border-bottom: 1px solid var(--c-border);
  padding: var(--sp-xl) 0;
}
.trust-strip-list {
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: var(--sp-md) var(--sp-2xl);
}
.trust-item {
  display: flex; align-items: center; gap: var(--sp-2xs);
  font-size: var(--fs-sm); font-weight: 500; color: var(--c-text-muted);
}
.trust-icon { font-size: 1.1rem; }

/* ── Welcome ─────────────────────────────── */
.welcome { padding: var(--section-gap) 0; }
.welcome-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--sp-4xl); align-items: center;
}
.welcome-content .section-eyebrow { margin-bottom: var(--sp-sm); }
.welcome-content .section-heading { margin-bottom: var(--sp-lg); }
.welcome-lead {
  font-size: var(--fs-lg); color: var(--c-text-muted);
  margin-bottom: var(--sp-md);
}
.welcome-content p { color: var(--c-text-muted); }
.welcome-content .btn { margin-top: var(--sp-xl); }

/* ── Services ────────────────────────────── */
.services {
  padding: var(--section-gap) 0;
  background: var(--c-bg-warm);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: var(--sp-xl);
  margin-top: var(--sp-2xl);
}
.service-card {
  background: var(--c-surface); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
  border: 1px solid var(--c-border);
  transition: all .35s var(--ease);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.service-card-img img {
  width: 100%; aspect-ratio: 3/2; object-fit: cover;
}
.service-card-icon-fallback {
  background: linear-gradient(135deg, var(--green-100), var(--gold-100));
  aspect-ratio: 3/2; display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem;
}
.service-card-body { padding: var(--sp-xl); }
.service-card-title {
  font-size: var(--fs-2xl); font-weight: 600;
  margin-bottom: var(--sp-sm); color: var(--green-900);
}
.service-card-body > p {
  font-size: var(--fs-sm); color: var(--c-text-muted);
  margin-bottom: var(--sp-md);
}
.service-features {
  margin-bottom: var(--sp-lg);
}
.service-features li {
  font-size: var(--fs-sm); color: var(--c-text-muted);
  padding: .25rem 0 .25rem 1.4rem; position: relative;
}
.service-features li::before {
  content: ''; position: absolute; left: 0; top: .65rem;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--c-accent);
}
.service-link {
  font-size: var(--fs-sm); font-weight: 600;
  color: var(--c-primary); transition: gap .2s var(--ease);
  display: inline-flex; align-items: center; gap: .25rem;
}
.service-link:hover { gap: .5rem; }

/* ── Pricing ─────────────────────────────── */
.pricing { padding: var(--section-gap) 0; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--sp-xl);
  margin-top: var(--sp-2xl);
}
.pricing-card {
  background: var(--c-surface); border: 1px solid var(--c-border);
  border-radius: var(--radius-lg); padding: var(--sp-2xl);
  box-shadow: var(--shadow-sm); position: relative;
}
.pricing-card--featured {
  border-color: var(--c-accent);
  box-shadow: 0 0 0 4px rgba(184,136,58,.08), var(--shadow);
}
.pricing-card-badge {
  position: absolute; top: -1px; right: var(--sp-xl);
  background: var(--c-accent); color: #fff;
  font-size: var(--fs-xs); font-weight: 600;
  padding: .25rem .75rem; border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}
.pricing-card-icon {
  font-size: 1.8rem; margin-bottom: var(--sp-sm);
}
.pricing-card-title {
  font-size: var(--fs-2xl); font-weight: 600;
  margin-bottom: var(--sp-lg); color: var(--green-900);
}
.pricing-table { width: 100%; border-collapse: collapse; }
.pricing-table td {
  padding: .65rem 0; font-size: var(--fs-sm);
  color: var(--c-text-muted); border-bottom: 1px solid var(--c-border);
  vertical-align: middle;
}
.pricing-table tr:last-child td { border-bottom: none; }
.pricing-table .price {
  text-align: right; font-family: var(--ff-heading);
  font-size: var(--fs-xl); font-weight: 600;
  color: var(--c-primary); white-space: nowrap;
}
.pricing-table .price small {
  font-family: var(--ff-body); font-size: var(--fs-xs);
  font-weight: 400; color: var(--c-text-subtle);
}
.price-note {
  display: block; font-size: var(--fs-xs); color: var(--c-text-subtle);
  font-weight: 400;
}
.pricing-card-note {
  font-size: var(--fs-xs); color: var(--c-text-subtle);
  font-style: italic; margin-top: var(--sp-md);
}
.pricing-sep {
  border: none; border-top: 1px solid var(--c-border);
  margin: var(--sp-xl) 0;
}
.pricing-footer {
  text-align: center; margin-top: var(--sp-2xl);
  font-size: var(--fs-sm); color: var(--c-text-muted);
}
.pricing-footer a { font-weight: 600; }

/* ── About ───────────────────────────────── */
.about { padding: var(--section-gap) 0; background: var(--c-bg-warm); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--sp-4xl); align-items: center;
}
.about-image img {
  width: 100%; aspect-ratio: 3/2; object-fit: cover;
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
}
.about-content p { color: var(--c-text-muted); }
.about-docs {
  display: flex; flex-wrap: wrap; gap: var(--sp-sm);
  margin-top: var(--sp-xl);
}
.doc-link {
  display: inline-flex; align-items: center; gap: .3rem;
  font-size: var(--fs-xs); font-weight: 500;
  padding: .45rem .85rem;
  border: 1px solid var(--c-border-strong); border-radius: var(--radius);
  color: var(--c-text-muted); background: var(--c-surface);
  transition: all .2s var(--ease);
}
.doc-link:hover {
  border-color: var(--c-primary); color: var(--c-primary);
  background: var(--green-100);
}

/* ── FAQ ─────────────────────────────────── */
.faq {
  padding: var(--section-gap) 0;
  background: var(--c-bg-warm);
}
.faq-list {
  max-width: 760px;
  margin: var(--sp-2xl) auto 0;
  display: grid;
  gap: var(--sp-md);
}
.faq-item {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow .25s var(--ease);
}
.faq-item:hover {
  box-shadow: var(--shadow);
}
.faq-item[open] {
  border-color: var(--c-primary-light);
  box-shadow: var(--shadow);
}
.faq-question {
  padding: var(--sp-lg) var(--sp-xl);
  font-family: var(--ff-body);
  font-size: var(--fs-base);
  font-weight: 600;
  color: var(--c-text);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-md);
  transition: color .2s var(--ease);
  user-select: none;
}
.faq-question::-webkit-details-marker {
  display: none;
}
.faq-question::after {
  content: '+';
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--c-primary);
  border-radius: 50%;
  background: var(--green-100);
  transition: transform .25s var(--ease), background .25s var(--ease);
}
.faq-item[open] .faq-question::after {
  content: '−';
  background: var(--c-primary);
  color: #fff;
}
.faq-question:hover {
  color: var(--c-primary);
}
.faq-answer {
  padding: 0 var(--sp-xl) var(--sp-xl);
}
.faq-answer p {
  font-size: var(--fs-sm);
  color: var(--c-text-muted);
  line-height: 1.7;
}
.faq-answer a {
  font-weight: 500;
}

/* ── Reviews ─────────────────────────────── */
.reviews { padding: var(--section-gap) 0; }
.testimonial-card {
  max-width: 760px; margin: 0 auto; text-align: center;
  background: linear-gradient(145deg, var(--green-900), var(--green-700));
  color: #fff; padding: var(--sp-4xl) var(--sp-3xl);
  border-radius: var(--radius-xl); position: relative; overflow: hidden;
}
.testimonial-quote-mark {
  position: absolute; top: -20px; left: var(--sp-xl);
  font-family: var(--ff-heading); font-size: 10rem; line-height: 1;
  color: rgba(255,255,255,.05); pointer-events: none;
}
.testimonial-stars {
  font-size: 1.4rem; letter-spacing: .12em;
  color: var(--c-accent-light); margin-bottom: var(--sp-lg);
}
.testimonial-card blockquote { margin-bottom: var(--sp-xl); }
.testimonial-card blockquote p {
  font-size: var(--fs-lg); line-height: 1.8;
  font-style: italic; color: rgba(255,255,255,.92);
}
.testimonial-cite {
  display: flex; flex-direction: column; align-items: center; gap: .15rem;
  font-style: normal; margin-bottom: var(--sp-xl);
}
.testimonial-cite strong { font-size: var(--fs-base); color:#fff; }
.testimonial-cite span { font-size: var(--fs-sm); color: rgba(255,255,255,.65); }
.testimonial-cta {
  display: inline-block; font-size: var(--fs-sm); font-weight: 600;
  color: var(--c-accent-light); transition: color .2s var(--ease);
}
.testimonial-cta:hover { color: #fff; }

/* ── Contact ─────────────────────────────── */
.contact { padding: var(--section-gap) 0; background: var(--c-bg-warm); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.3fr;
  gap: var(--sp-4xl); align-items: start;
}
.contact-info p { color: var(--c-text-muted); margin-bottom: var(--sp-lg); }
.contact-details {
  display: grid; gap: var(--sp-md);
  margin: var(--sp-xl) 0;
}
.contact-detail dt {
  font-size: var(--fs-xs); font-weight: 600;
  text-transform: uppercase; letter-spacing: .08em;
  color: var(--c-accent); margin-bottom: .1rem;
}
.contact-detail dd {
  font-size: var(--fs-base); color: var(--c-text); font-weight: 500;
}
.contact-detail dd a { color: var(--c-text); }
.contact-detail dd a:hover { color: var(--c-primary); }
.contact-social {
  display: flex; gap: var(--sp-sm);
}
.social-link {
  display: inline-flex; align-items: center; justify-content: center;
  height: 40px; width: auto; font-weight: 600; font-size: var(--fs-sm);
  border: 1px solid var(--c-border-strong); border-radius: var(--radius);
  color: var(--c-text-muted); transition: all .2s var(--ease);
}
.social-link:hover {
  background: var(--c-primary); border-color: var(--c-primary);
  color: #fff; transform: translateY(-2px);
}

/* Form */
.contact-form {
  background: var(--c-surface); padding: var(--sp-2xl);
  border-radius: var(--radius-lg); border: 1px solid var(--c-border);
  box-shadow: var(--shadow);
}
.form-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--sp-md);
}
.form-group { margin-bottom: var(--sp-lg); }
.form-group label {
  display: block; font-size: var(--fs-xs); font-weight: 600;
  color: var(--c-text); margin-bottom: .35rem;
}
.form-group input,
.form-group textarea {
  width: 100%; padding: .75rem 1rem;
  font-family: var(--ff-body); font-size: var(--fs-sm);
  border: 1px solid var(--c-border-strong); border-radius: var(--radius);
  background: var(--c-bg); color: var(--c-text);
  transition: all .2s var(--ease);
  -webkit-appearance: none; appearance: none;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--c-primary);
  box-shadow: 0 0 0 3px rgba(45,76,50,.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--c-text-subtle); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-disclaimer {
  text-align: center; margin-top: var(--sp-md);
  font-size: var(--fs-xs); color: var(--c-text-subtle);
}

/* Form message */
.form-message {
  margin-top: var(--sp-md); padding: .75rem 1rem;
  border-radius: var(--radius); font-size: var(--fs-sm);
  font-weight: 500; text-align: center;
}
.form-message--success { background:#EFF7F0; color:var(--c-success); border:1px solid var(--green-100); }
.form-message--error   { background:#FEF4F4; color:var(--c-error);   border:1px solid #FCD9D9; }

/* ── Footer ──────────────────────────────── */
.footer {
  background: var(--green-900); color: rgba(255,255,255,.65);
  padding: var(--sp-4xl) 0 var(--sp-xl);
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: var(--sp-3xl); margin-bottom: var(--sp-3xl);
}
.footer-logo-row {
  display: flex; align-items: center; gap: var(--sp-sm);
  margin-bottom: var(--sp-md);
}
.footer-logo-img { height: 32px; width: auto; }
.footer-logo-text {
  font-family: var(--ff-heading); font-size: var(--fs-xl);
  font-weight: 600; color: #fff;
}
.footer-brand p { font-size: var(--fs-sm); line-height: 1.7; }
.footer-nav h4 {
  font-family: var(--ff-body); font-size: var(--fs-xs);
  font-weight: 600; text-transform: uppercase; letter-spacing: .08em;
  color: var(--c-accent-light); margin-bottom: var(--sp-md);
}
.footer-nav ul { display: grid; gap: .5rem; }
.footer-nav a {
  font-size: var(--fs-sm); color: rgba(255,255,255,.55);
  transition: color .2s var(--ease);
}
.footer-nav a:hover { color: #fff; }
.footer-nav li { font-size: var(--fs-sm); color: rgba(255,255,255,.55); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: var(--sp-xl); text-align: center;
  font-size: var(--fs-xs); color: rgba(255,255,255,.35);
}

/* ── Responsive ──────────────────────────── */
@media (max-width: 1024px) {
  :root {
    --fs-6xl: 3.25rem;
    --fs-5xl: 2.5rem;
    --fs-4xl: 2.25rem;
    --section-gap: 5rem;
  }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root {
    --fs-6xl: 2.5rem;
    --fs-4xl: 2rem;
    --fs-3xl: 1.75rem;
    --section-gap: 3.5rem;
    --pad-inline: 1.25rem;
    --header-h: 4rem;
  }

  /* Mobile nav */
  .nav {
    position: fixed; top:0; right:-100%;
    width: 80%; max-width: 340px; height: 100vh;
    background: var(--c-surface); padding: calc(var(--header-h) + 1rem) var(--sp-xl) var(--sp-xl);
    box-shadow: var(--shadow-lg); transition: right .3s var(--ease); z-index: 999;
  }
  .nav.active { right: 0; }
  .nav-list { flex-direction: column; align-items: flex-start; gap: .25rem; }
  .nav-link { font-size: var(--fs-base); padding: .65rem 0; }
  .nav-cta { display: none; }
  .nav-cta-mobile { display: inline-flex; margin-top: var(--sp-lg); }
  .nav-toggle { display: flex; }

  /* Layout collapses */
  .welcome-grid,
  .about-grid { grid-template-columns: 1fr; gap: var(--sp-2xl); }
  .about-grid .about-image { order: -1; }
  .contact-grid { grid-template-columns: 1fr; gap: var(--sp-2xl); }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: var(--sp-2xl); }

  .hero { min-height: auto; padding: 0; }
  .hero-inner { padding: calc(var(--header-h) + 1rem) var(--pad-inline) var(--sp-2xl); }
  .hero-actions { flex-direction: column; gap: var(--sp-sm); }
  .hero-actions .btn { width: 100%; }
  .hero-contact-row { gap: var(--sp-sm); }
  .trust-strip-list { gap: var(--sp-sm) var(--sp-lg); }

  .services-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .testimonial-card { padding: var(--sp-2xl) var(--sp-lg); }
  .testimonial-quote-mark { font-size: 6rem; left: var(--sp-sm); top: -10px; }
  .contact-form { padding: var(--sp-xl); }
  .welcome-grid,
  .about-grid { gap: var(--sp-xl); }
  .pricing-card { padding: var(--sp-xl); }
  .faq-question { padding: var(--sp-md) var(--sp-lg); font-size: var(--fs-sm); }
  .faq-answer { padding: 0 var(--sp-lg) var(--sp-lg); }
}

@media (max-width: 480px) {
  :root {
    --fs-6xl: 2.25rem;
    --fs-4xl: 1.75rem;
    --section-gap: 3rem;
  }
  .hero-location { font-size: .65rem; margin-bottom: var(--sp-md); }
  .hero-subtitle { font-size: var(--fs-base); }
  .hero-contact-row { font-size: var(--fs-xs); }
  .hero-inner { padding: calc(var(--header-h) + .75rem) var(--pad-inline) var(--sp-xl); }
  .trust-strip { padding: var(--sp-lg) 0; }
  .trust-strip-list { gap: var(--sp-sm) var(--sp-md); }
  .trust-item { font-size: var(--fs-xs); flex: 0 1 auto; }
  .testimonial-card { padding: var(--sp-xl) var(--sp-md); }
  .testimonial-quote-mark { display: none; }
  .testimonial-card blockquote p { font-size: var(--fs-base); }
  .about-docs { gap: var(--sp-2xs); }
  .doc-link { font-size: .65rem; padding: .35rem .65rem; }
  .contact-form { padding: var(--sp-lg); }
  .form-group input,
  .form-group textarea { padding: .65rem .85rem; }
}



/* ── Welcome image ── */
.welcome-image img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(184,136,58,0.12);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.welcome-image img:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 48px rgba(0,0,0,0.12);
}

/* ── Service card placeholder (no image fallback) ── */
.service-card-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-card-emoji {
  font-size: 3rem;
  filter: grayscale(0.2) brightness(1.2);
}


/* ── Clean service card icon (no images) ── */
.service-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--c-primary), #3D6647);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}
.service-card {
  padding: 2rem;
}
.service-card-img { display: none; }

/* Fix mobile headline overflow */
.hero-title { max-width: 100%; word-break: break-word; }
.section-header h2 { word-break: break-word; }



/* ── No hero image — pure gradient ── */
.hero-bg { display: none; }
.hero {
  background: linear-gradient(135deg, #2D4C32 0%, #4A7854 50%, #3D6647 100%);
  min-height: 70vh;
  padding: 8rem 0 4rem;
}

/* ── Consistent emoji service icons ── */
.service-card-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--c-primary), #3D6647);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}
.service-card-img { display: none; }



/* ── Mobile image fixes ── */
@media (max-width: 768px) {
  .about-image {
    margin: 0 0.5rem;
  }
  .about-image img {
    aspect-ratio: auto;
    object-fit: contain;
    max-height: 50vh;
    width: 100%;
  }
  .service-card {
    margin: 0 0.25rem;
  }
  .hero-title br {
    display: none;
  }
  .hero-title {
    font-size: 2rem;
  }
}
