@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500&display=swap');

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #2a2a1e;
  background: #faf7f2;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }

/* ─── TOKENS ─── */
:root {
  --sage:        #3d4a3c;
  --sage-light:  #5c6b4a;
  --sage-pale:   #e8ede6;
  --warm-stone:  #7a6b55;
  --warm-light:  #f5f0e8;
  --warm-mid:    #d6cebc;
  --warm-dark:   #c8bfae;
  --text-dark:   #2a2a1e;
  --text-mid:    #5a5449;
  --text-light:  #8c7e6a;
  --border:      #e0d8cc;
  --white:       #ffffff;
  --cream:       #faf7f2;
  --radius:      2px;
}

/* ─── TYPOGRAPHY ─── */
.font-serif { font-family: 'Cormorant Garamond', serif; }

h1, h2, h3 { font-family: 'Cormorant Garamond', serif; font-weight: 300; line-height: 1.15; color: var(--text-dark); }
h1 { font-size: clamp(36px, 5vw, 54px); }
h2 { font-size: clamp(28px, 4vw, 40px); }
h3 { font-size: clamp(20px, 2.5vw, 26px); }

p { color: var(--text-mid); line-height: 1.8; }

.tag {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--warm-stone); font-weight: 500;
  display: block; margin-bottom: 12px;
}

/* ─── NAVIGATION ─── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  border-bottom: 0.5px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px;
  height: 64px;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 21px; font-weight: 300;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.nav-logo em { font-style: italic; color: var(--warm-stone); }
.nav-links {
  display: flex; gap: 28px; list-style: none;
  font-size: 13px; font-weight: 400; letter-spacing: 0.03em;
  color: var(--text-mid);
}
.nav-links a:hover { color: var(--text-dark); }
.nav-links a.active { color: var(--text-dark); border-bottom: 1px solid var(--sage); padding-bottom: 1px; }
.nav-cta {
  background: var(--sage); color: #f0ebe3;
  padding: 10px 22px; border: none;
  font-size: 12px; font-weight: 400; letter-spacing: 0.08em;
  text-transform: uppercase; border-radius: var(--radius);
  white-space: nowrap;
}
.nav-cta:hover { background: var(--sage-light); }
.nav-hamburger { display: none; background: none; border: none; font-size: 22px; color: var(--text-dark); }

/* ─── BUTTONS ─── */
.btn { display: inline-block; border-radius: var(--radius); font-size: 12px; font-weight: 400; letter-spacing: 0.08em; text-transform: uppercase; padding: 13px 28px; transition: all 0.2s; }
.btn-primary { background: var(--sage); color: #f0ebe3; border: none; }
.btn-primary:hover { background: var(--sage-light); }
.btn-ghost { background: transparent; color: var(--text-mid); border: 0.5px solid var(--warm-dark); }
.btn-ghost:hover { background: var(--warm-light); color: var(--text-dark); }
.btn-light { background: #f0ebe3; color: var(--sage); border: none; font-weight: 500; }
.btn-light:hover { background: var(--warm-light); }

/* ─── SECTIONS ─── */
.section { padding: 72px 40px; }
.section-sm { padding: 48px 40px; }
.container { max-width: 1100px; margin: 0 auto; }
.container-narrow { max-width: 760px; margin: 0 auto; }

/* ─── TRUST BAR ─── */
.trust-bar {
  display: flex;
  border-bottom: 0.5px solid var(--border);
  border-top: 0.5px solid var(--border);
  background: var(--white);
}
.trust-item {
  flex: 1; padding: 20px 28px;
  border-right: 0.5px solid var(--border);
  display: flex; align-items: center; gap: 12px;
}
.trust-item:last-child { border-right: none; }
.trust-icon { font-size: 20px; color: var(--warm-stone); flex-shrink: 0; }
.trust-label { font-size: 13px; font-weight: 500; color: var(--text-dark); }
.trust-sub { font-size: 12px; color: var(--text-light); }

/* ─── SERVICE GRID ─── */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border);
  border: 0.5px solid var(--border);
}
.service-card {
  background: var(--white); padding: 32px 28px;
  transition: background 0.2s;
}
.service-card:hover { background: var(--warm-light); }
.service-icon { font-size: 26px; color: var(--sage-light); margin-bottom: 14px; }
.service-title { font-size: 15px; font-weight: 500; margin-bottom: 8px; color: var(--text-dark); }
.service-desc { font-size: 13px; line-height: 1.65; color: var(--text-mid); margin-bottom: 14px; }
.service-link { font-size: 12px; color: var(--warm-stone); letter-spacing: 0.04em; }
.service-link:hover { color: var(--sage); }

/* ─── SPLIT LAYOUT ─── */
.split { display: grid; grid-template-columns: 1fr 1fr; }
.split-img {
  background: var(--warm-mid); min-height: 400px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-light); font-size: 13px; flex-direction: column; gap: 8px;
  overflow: hidden;
}
.split-img img { width: 100%; height: 100%; object-fit: cover; }
.split-content { padding: 64px 56px; display: flex; flex-direction: column; justify-content: center; }

/* ─── BADGE / CREDENTIAL ─── */
.cred {
  display: inline-block;
  background: var(--sage); color: #e8e0d4;
  padding: 6px 14px; border-radius: var(--radius);
  font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase;
}

/* ─── QUOTE ─── */
.quote-block {
  padding: 64px 80px; text-align: center;
  border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
  background: var(--warm-light);
}
.quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px, 3vw, 28px); font-weight: 300; font-style: italic;
  line-height: 1.55; color: var(--sage); max-width: 640px; margin: 0 auto 16px;
}
.quote-attr { font-size: 12px; color: var(--text-light); letter-spacing: 0.08em; text-transform: uppercase; }

/* ─── CTA BAR ─── */
.cta-bar {
  background: var(--sage); padding: 56px 40px;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
}
.cta-bar-text h2 { color: #f0ebe3; font-size: clamp(24px, 3vw, 34px); }
.cta-bar-text p { color: #b8a98e; font-size: 14px; margin-top: 8px; }

/* ─── FOOTER ─── */
footer {
  background: var(--text-dark);
  color: #b8a98e;
  padding: 56px 40px 32px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; padding-bottom: 40px;
  border-bottom: 0.5px solid #3a3a2e;
}
.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 300; color: #e8e0d4; margin-bottom: 8px;
}
.footer-brand-name em { font-style: italic; color: #9a8b76; }
.footer-brand-desc { font-size: 13px; line-height: 1.7; color: #8a7b68; margin-bottom: 20px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 34px; height: 34px; border-radius: 50%;
  border: 0.5px solid #3a3a2e;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: #8a7b68; transition: all 0.2s;
}
.footer-social a:hover { border-color: #9a8b76; color: #c8b99e; }
.footer-col h4 { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: #9a8b76; margin-bottom: 16px; font-weight: 500; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 13px; color: #8a7b68; }
.footer-col ul li a:hover { color: #c8b99e; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px; font-size: 12px; color: #6a5e50;
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: inherit; }
.footer-bottom-links a:hover { color: #9a8b76; }

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  background: var(--warm-light);
  padding: 72px 40px;
  border-bottom: 0.5px solid var(--border);
}
.page-hero-inner { max-width: 760px; }

/* ─── ACCORDION ─── */
.accordion-item {
  border-bottom: 0.5px solid var(--border);
}
.accordion-btn {
  width: 100%; background: none; border: none;
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0; font-size: 15px; font-weight: 500;
  color: var(--text-dark); text-align: left; cursor: pointer;
}
.accordion-btn:hover { color: var(--sage); }
.accordion-icon { font-size: 18px; color: var(--warm-stone); transition: transform 0.25s; }
.accordion-body { display: none; padding: 0 0 20px; font-size: 14px; line-height: 1.8; color: var(--text-mid); }
.accordion-item.open .accordion-body { display: block; }
.accordion-item.open .accordion-icon { transform: rotate(45deg); }

/* ─── CARDS GRID ─── */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.card {
  background: var(--white); border: 0.5px solid var(--border);
  border-radius: var(--radius); padding: 32px 28px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover { box-shadow: 0 4px 24px rgba(61,74,60,0.08); transform: translateY(-2px); }

/* ─── TESTIMONIAL ─── */
.testimonial-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.testimonial-card {
  background: var(--warm-light); border: 0.5px solid var(--border);
  padding: 28px; border-radius: var(--radius);
}
.testimonial-stars { color: var(--warm-stone); font-size: 13px; letter-spacing: 3px; margin-bottom: 12px; }
.testimonial-text { font-size: 14px; line-height: 1.75; color: var(--text-mid); margin-bottom: 16px; font-style: italic; }
.testimonial-author { font-size: 13px; font-weight: 500; color: var(--text-dark); }

/* ─── MOBILE ─── */
@media (max-width: 768px) {
  .nav { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-hamburger { display: block; }
  .nav.open .nav-links {
    display: flex; flex-direction: column; gap: 0;
    position: absolute; top: 64px; left: 0; right: 0;
    background: var(--white); border-bottom: 0.5px solid var(--border);
    padding: 16px 20px; z-index: 99;
  }
  .nav.open .nav-links li { padding: 10px 0; border-bottom: 0.5px solid var(--border); }
  .section, .section-sm { padding: 48px 20px; }
  .split { grid-template-columns: 1fr; }
  .split-content { padding: 40px 24px; }
  .split-img { min-height: 280px; }
  .services-grid { grid-template-columns: 1fr; }
  .trust-bar { flex-direction: column; }
  .trust-item { border-right: none; border-bottom: 0.5px solid var(--border); }
  .cta-bar { flex-direction: column; text-align: center; }
  .quote-block { padding: 40px 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .page-hero { padding: 48px 20px; }
  h1 { font-size: 32px; }
  h2 { font-size: 26px; }
}
