:root {
  --brown: #6B4226;
  --brown-light: #8B5E3C;
  --brown-lighter: #C4956A;
  --brown-pale: #F7EFE6;
  --brown-muted: #EDE0D4;
  --cream: #FDFAF7;
  --dark: #1A1008;
  --mid: #4A3020;
  --text-muted: #7A5C44;
  --white: #FFFFFF;
  --radius: 16px;
  --radius-sm: 8px;
  --nav-h: 72px;
  --topbar-h: 36px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--dark);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* TOP BAR */
.top-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--topbar-h);
  background: var(--brown);
  z-index: 101;
  display: flex;
  align-items: center;
  justify-content: right;
  padding: 0 48px;
}

.top-bar-phone {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: color 0.2s;
}
.top-bar-phone:hover { color: var(--white); }
.top-bar-phone svg { width: 13px; height: 13px; opacity: 0.7; flex-shrink: 0; }

.top-bar-social {
  display: flex;
  align-items: center;
  gap: 4px;
}
.top-bar-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px; height: 26px;
  border-radius: 5px;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
}
.top-bar-social a:hover { color: var(--white); background: rgba(255,255,255,0.12); }
.top-bar-social svg { width: 13px; height: 13px; }

/* NAV */
nav {
  position: fixed;
  top: var(--topbar-h); left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(253, 250, 247, 0.88);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(107,66,38,0.1);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.nav-logo .name {
  font-family: 'DM Serif Display', serif;
  font-size: 17px;
  color: var(--brown);
  letter-spacing: -0.3px;
  line-height: 1.2;
}

.nav-logo .title {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-weight: 400;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 400;
  color: var(--mid);
  text-decoration: none;
  transition: color 0.2s;
  letter-spacing: -0.1px;
}

.nav-links a:hover { color: var(--brown); }

.nav-cta {
  background: var(--brown);
  color: var(--white) !important;
  padding: 9px 20px;
  border-radius: 100px;
  font-size: 14px !important;
  font-weight: 500 !important;
  transition: background 0.2s, transform 0.15s !important;
}
.nav-cta:hover { background: var(--brown-light) !important; transform: translateY(-1px); }

/* HAMBURGER */
.nav-toggle { display: none; cursor: pointer; background: none; border: none; padding: 8px; }
.nav-toggle svg { width: 22px; height: 22px; color: var(--brown); }

/* MOBILE NAV */
.mobile-menu {
  display: none;
  position: fixed;
  top: calc(var(--topbar-h) + var(--nav-h));
  left: 0; right: 0;
  background: var(--cream);
  border-bottom: 1px solid rgba(107,66,38,0.1);
  padding: 24px;
  z-index: 99;
  flex-direction: column;
  gap: 4px;
}

.mobile-menu.open { display: flex; }
.mobile-menu a {
  display: block;
  padding: 12px 16px;
  font-size: 16px;
  color: var(--mid);
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.15s;
}
.mobile-menu a:hover { background: var(--brown-pale); }

/* FOOTER */
footer {
  background: var(--dark);
  padding: 48px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 18px;
  color: var(--white);
  letter-spacing: -0.3px;
}

.footer-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--white); }

.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
}


/* UTILITIES */
.eyebrow {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--brown-lighter);
  margin-bottom: 16px;
}

.section-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(32px, 3vw, 48px);
  line-height: 1.15;
  color: var(--dark);
  letter-spacing: -0.8px;
  margin-bottom: 24px;
}

.section-title em { font-style: italic; color: var(--brown); }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brown);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  letter-spacing: -0.2px;
}

.btn-primary:hover { background: var(--brown-light); transform: translateY(-1px); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brown);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: gap 0.2s;
  letter-spacing: -0.2px;
}

.btn-secondary:hover { gap: 12px; }

/* SCROLL ANIMATION */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  :root { --topbar-h: 0px; }
  .top-bar { display: none; }
  nav { padding: 0 24px; top: 0; }
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  footer { padding: 32px 24px; flex-direction: column; gap: 20px; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; gap: 16px; }
}

@media (max-width: 600px) {
  .btn-primary, .btn-secondary { font-size: 14px; padding: 12px 20px; }
  .section-title { letter-spacing: -0.5px; }
  footer { padding: 28px 16px; }
  .footer-links { gap: 12px; }
  .footer-copy { font-size: 11px; }
}

/* ====================================================== */
/* SHARED CONTENT SECTIONS (used by standalone pages)      */
/* ====================================================== */

/* GENERIC SECTION WRAPPER */
.section {
  padding: 100px 80px;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* ABOUT */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
}

.about-img-wrap img {
  width: 100%;
  border-radius: 24px;
  display: block;
  object-fit: cover;
  aspect-ratio: 3/4;
}

.about-card-float {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--white);
  border-radius: 16px;
  padding: 20px 24px;
  box-shadow: 0 12px 48px rgba(107,66,38,0.15);
  min-width: 200px;
}

.about-card-float .acf-title {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.about-card-float .acf-val {
  font-family: 'DM Serif Display', serif;
  font-size: 28px;
  color: var(--brown);
  letter-spacing: -0.5px;
  line-height: 1;
}

.about-card-float .acf-sub {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

.about-content p {
  font-size: 16px;
  color: var(--mid);
  line-height: 1.75;
  margin-bottom: 20px;
  font-weight: 300;
}

.about-content strong { font-weight: 500; color: var(--dark); }

.about-credentials {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 32px 0;
  padding: 28px;
  background: var(--brown-pale);
  border-radius: 16px;
  border: 1px solid rgba(107,66,38,0.12);
}

.cred-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.cred-dot {
  width: 8px;
  height: 8px;
  background: var(--brown-lighter);
  border-radius: 50%;
  margin-top: 7px;
  flex-shrink: 0;
}

.cred-item p {
  font-size: 14px;
  color: var(--mid);
  margin: 0;
  line-height: 1.5;
}

/* VIDEO */
.video-section {
  background: var(--dark);
  padding: 100px 80px;
}

.video-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.video-header {
  text-align: center;
  margin-bottom: 56px;
}

.video-header .eyebrow { color: var(--brown-lighter); }

.video-header .section-title { color: var(--white); }

.video-wrap {
  max-width: 800px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 16/9;
  border: 1px solid rgba(255,255,255,0.08);
}

.video-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* FORMS DOWNLOAD */
.forms-section {
  padding: 100px 80px;
  background: var(--brown-pale);
}

.forms-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.forms-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}

.form-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--white);
  border-radius: 12px;
  padding: 16px 20px;
  border: 1px solid rgba(107,66,38,0.1);
  text-decoration: none;
  transition: box-shadow 0.2s;
  gap: 16px;
}

.form-item:hover { box-shadow: 0 4px 20px rgba(107,66,38,0.1); }

.form-item-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.form-item-icon {
  width: 36px; height: 36px;
  background: var(--brown-pale);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.form-item-icon svg { width: 16px; height: 16px; color: var(--brown); }

.form-item span {
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
}

.form-item .dl-icon { width: 16px; height: 16px; color: var(--brown-lighter); flex-shrink: 0; }

/* CONTACT FORM */
.contact-section {
  padding: 100px 80px;
  background: var(--dark);
  color: var(--white);
}

.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}

.contact-info .eyebrow { color: var(--brown-lighter); }
.contact-info .section-title { color: var(--white); }
.contact-info p { font-size: 16px; color: rgba(255,255,255,0.55); line-height: 1.7; font-weight: 300; margin-bottom: 32px; }

.contact-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.contact-detail-icon {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.06);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon svg { width: 18px; height: 18px; color: var(--brown-lighter); }

.contact-detail a {
  font-size: 17px;
  font-weight: 500;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.3px;
}

.contact-form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 40px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 8px;
  font-weight: 400;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 15px;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  outline: none;
  transition: border-color 0.2s;
  font-weight: 300;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.25); }

.form-group input:focus,
.form-group textarea:focus { border-color: rgba(196,149,106,0.5); }

.form-group textarea { resize: vertical; min-height: 100px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.btn-form {
  width: 100%;
  background: var(--brown);
  color: var(--white);
  border: none;
  border-radius: 100px;
  padding: 15px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  margin-top: 8px;
  transition: background 0.2s;
  letter-spacing: -0.2px;
}

.btn-form:hover { background: var(--brown-light); }

/* SOCIAL LINK */
.social-link {
  width: 36px; height: 36px;
  background: var(--white);
  border-radius: 50%;
  border: 1px solid rgba(107,66,38,0.12);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  transition: background 0.2s;
  color: var(--brown);
  font-size: 15px;
  font-weight: 500;
}

.social-link:hover { background: var(--brown-pale); }
.social-link svg { width: 16px; height: 16px; }

/* TESTIMONIALS */
.testimonials-section {
  padding: 100px 0;
  background: var(--cream);
  overflow: hidden;
}

.testimonials-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 64px;
  padding: 0 80px;
}

.testimonials-grid {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: marquee 60s linear infinite;
  will-change: transform;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.testimonials-grid:hover {
  animation-play-state: paused;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid rgba(107,66,38,.1);
  border-radius: 20px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-shrink: 0;
  width: 360px;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
}

.testimonial-stars svg {
  width: 16px; height: 16px;
  fill: var(--brown);
  stroke: none;
}

.testimonial-quote {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.8;
  font-weight: 300;
  flex: 1;
}

.testimonial-quote::before {
  content: '\201C';
  font-family: 'DM Serif Display', serif;
  font-size: 40px;
  color: var(--brown-muted);
  line-height: 0;
  vertical-align: -14px;
  margin-right: 4px;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 16px;
  border-top: 1px solid var(--brown-muted);
}

.testimonial-name {
  font-size: 15px;
  font-weight: 500;
  color: var(--dark);
}

.testimonial-procedure {
  font-size: 13px;
  color: var(--brown);
  font-weight: 400;
}

/* FAQ */
.faq-section {
  padding: 100px 80px;
  background: var(--brown-pale);
}

.faq-inner {
  max-width: 860px;
  margin: 0 auto;
}

.faq-header {
  text-align: center;
  margin-bottom: 56px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border: 1px solid rgba(107,66,38,.1);
  border-radius: 14px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--dark);
  transition: color .2s;
}

.faq-question:hover { color: var(--brown); }

.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--brown-pale);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background .2s, transform .3s;
}

.faq-icon svg { width: 14px; height: 14px; stroke: var(--brown); transition: transform .3s; }

.faq-item.open .faq-icon { background: var(--brown); }
.faq-item.open .faq-icon svg { stroke: var(--white); transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  padding: 0 28px;
}

.faq-answer p {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.8;
  font-weight: 300;
  padding-bottom: 22px;
}

.faq-item.open .faq-answer {
  max-height: 400px;
  padding-top: 0;
}

/* RESPONSIVE — shared content sections */
@media (max-width: 900px) {
  .section { padding: 64px 24px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-card-float { right: 0; bottom: -20px; }
  .video-section { padding: 64px 24px; }
  .forms-section { padding: 64px 24px; }
  .forms-inner { grid-template-columns: 1fr; gap: 40px; }
  .contact-section { padding: 64px 24px; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }
  .testimonials-section { padding: 64px 0; }
  .testimonials-header { padding: 0 24px; }
  .testimonial-card { width: 280px; padding: 24px; }
}
