*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --white: #FFFFFF;
  --warm-1: #F2F3F1;
  --warm-2: #ECEEE9;
  --warm-3: #E8EDE5;
  --rule: #D0D0CE;
  --muted: #808080;
  --dark: #111111;
  --text: #444444;
  --accent: #3A6B2A;
  --accent-light: #E8EDE5;
}
html { scroll-behavior: smooth; }
body { background: #fff; color: var(--text); font-family: 'DM Sans', sans-serif; -webkit-font-smoothing: antialiased; }
a, a:where(:visited, :hover, :active) { color: inherit; text-decoration: none; }

/* NAV */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(255,255,255,0.96); backdrop-filter: blur(16px); border-bottom: 1px solid var(--rule); padding: 0 var(--mobile-gutter, 52px); height: 66px; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { font-size: 16px; font-weight: 700; color: var(--dark); }
.nav-links { display: flex; gap: 28px; }
.nav-links a { font-size: 13px; font-weight: 500; color: var(--text); text-decoration: none; opacity: 0.6; transition: opacity 0.2s; }
.nav-links a:hover, .nav-links a.active { opacity: 1; color: var(--dark); }
.nav-cta { font-size: 13px; font-weight: 600; color: #fff; background: var(--dark); padding: 10px 22px; border-radius: 100px; text-decoration: none; transition: background 0.2s; }
.nav-cta:hover { background: #333; }

/* SHARED */
.section-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
.section-eyebrow::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }
.section-heading { font-size: 38px; font-weight: 700; line-height: 1.18; color: var(--dark); letter-spacing: -0.3px; }
.btn-dark { font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 600; color: #fff; background: var(--dark); border: none; padding: 14px 28px; border-radius: 100px; cursor: pointer; transition: background 0.2s; display: inline-block; }
.btn-dark:hover { background: #333; }
.btn-cta-white { font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 600; color: var(--dark); background: #fff; border: none; padding: 14px 28px; border-radius: 100px; cursor: pointer; transition: background 0.2s, box-shadow 0.2s; display: inline-block; box-shadow: 0 4px 20px rgba(0,0,0,0.20); }
.btn-cta-white:hover { background: #f5f5f5; }

/* HERO */
.hero { background: var(--warm-1); padding: 120px var(--mobile-gutter, 52px) 96px; border-bottom: 1px solid var(--rule); }
.hero-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 480px; gap: 72px; align-items: center; }
.hero-eyebrow { font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; display: inline-flex; align-items: center; gap: 8px; }
.hero-eyebrow::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }
.hero-headline { font-size: var(--mobile-gutter, 52px); font-weight: 700; line-height: 1.1; color: var(--dark); letter-spacing: -0.5px; margin-bottom: 20px; }
.hero-headline em { font-style: italic; font-weight: 400; color: var(--muted); }
.hero-sub { font-size: 16px; line-height: 1.75; color: var(--text); max-width: 460px; margin-bottom: 32px; }
.hero-photo-frame { position: relative; border-radius: 24px; overflow: hidden; box-shadow: 0 24px 64px rgba(20,28,18,0.14); aspect-ratio: 4/5; }
.hero-photo-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center 15%; display: block; }
.hero-photo-badge { position: absolute; bottom: 20px; left: 20px; background: rgba(255,255,255,0.95); backdrop-filter: blur(8px); border-radius: 100px; padding: 8px 16px; font-size: 12px; font-weight: 600; color: var(--dark); }

/* DESIGNATIONS STRIP */

.desig-logos-row { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.desig-logo-box { display: flex; align-items: center; gap: 10px; }
.desig-logo-box img { height: 40px; width: auto; object-fit: contain; }
.desig-logo-box.nar-box img { height: 28px; }


/* ABOUT */
.about-section { padding: 96px var(--mobile-gutter, 52px); background: #fff; }
.about-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 400px 1fr; gap: 72px; align-items: start; }
.about-photo { border-radius: 24px; overflow: hidden; aspect-ratio: 1/1; position: relative; }
.about-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center center; display: block; }
.about-photo-badge { position: absolute; bottom: 20px; left: 20px; background: rgba(255,255,255,0.95); border-radius: 100px; padding: 8px 16px; font-size: 12px; font-weight: 600; color: var(--dark); }
.about-text { padding-top: 8px; }
.about-bio { font-size: 15px; line-height: 1.85; color: var(--text); margin-bottom: 20px; }
.about-mission-block { background: var(--warm-1); border-radius: 20px; padding: 32px 36px; border-left: 3px solid var(--accent); margin: 32px 0; }
.about-mission-label { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; }
.about-mission-text { font-size: 15px; line-height: 1.85; color: var(--dark); font-style: italic; }

/* VALUES */
.values-section { background: url("../images/about-01.webp") center/cover no-repeat; position: relative; padding: 88px var(--mobile-gutter, 52px); }
.values-section::before { content: ''; position: absolute; inset: 0; background: rgba(15, 22, 14, 0.60); }
.values-section .values-inner { position: relative; z-index: 1; }
.values-inner { max-width: 1200px; margin: 0 auto; }
.values-section .section-eyebrow { color: rgba(255,255,255,0.65); }
.values-section .section-heading { color: #fff; font-size: 56px; }
.values-header { max-width: 560px; margin-bottom: var(--mobile-gutter, 52px); }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.vcard { background: rgba(255,255,255,0.82); border-radius: 20px; padding: 32px 28px; border: 1px solid rgba(255,255,255,0.4); }
.vcard-icon { width: 44px; height: 44px; background: var(--accent-light); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.vcard-icon svg { width: 22px; height: 22px; stroke: var(--accent); }
.vcard-name { font-size: 22px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.vcard-desc { font-size: 13px; line-height: 1.75; color: var(--text); }

/* CTA */
.cta-section { padding: 100px var(--mobile-gutter, 52px); text-align: center; background: url("../images/about-02.webp") center/cover no-repeat; position: relative; border-top: none; }
.cta-section::before { content: ''; position: absolute; inset: 0; background: rgba(12, 20, 10, 0.62); }
.cta-section .cta-inner { position: relative; z-index: 1; }
.cta-inner { max-width: 640px; margin: 0 auto; }
.cta-eyebrow { font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.90); margin-bottom: 16px; display: inline-flex; align-items: center; gap: 8px; }
.cta-eyebrow::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,0.90); flex-shrink: 0; }
.cta-title { font-size: 42px; font-weight: 700; line-height: 1.15; color: #fff; letter-spacing: -0.3px; margin-bottom: 16px; }
.cta-body { font-size: 15px; line-height: 1.75; color: rgba(255,255,255,0.85); margin-bottom: 32px; }
.cta-note { font-size: 12px; color: rgba(255,255,255,0.65); margin-top: 14px; }

/* FOOTER */

/* TESTIMONIALS CAROUSEL */
.testimonials-section { background: var(--warm-1); padding: 96px 0 80px; overflow: hidden; }
.testimonials-inner { max-width: 1200px; margin: 0 auto; padding: 0 var(--mobile-gutter, 52px); }
.testimonials-header { margin-bottom: 56px; }
.testimonials-header .section-eyebrow { color: var(--accent); }
.carousel-wrapper { position: relative; overflow: hidden; margin: 0 -var(--mobile-gutter, 52px); padding: 0 var(--mobile-gutter, 52px) 40px; }
.carousel-track { display: flex; gap: 24px; transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94); will-change: transform; }
.tcard { background: var(--white); border: 1px solid var(--rule); border-radius: 20px; min-width: 420px; max-width: 420px; flex-shrink: 0; transition: box-shadow 0.25s, transform 0.25s; display: flex; flex-direction: column; overflow: hidden; }
.tcard:hover { box-shadow: 0 12px 40px rgba(20,28,18,0.10); transform: translateY(-4px); }
.tcard-top { background: var(--white); padding: 32px 32px 28px; }
.tcard-quote { font-size: 15px; font-weight: 400; font-style: italic; color: var(--dark); line-height: 1.78; }
.tcard-stars { display: flex; gap: 3px; margin-top: 20px; }
.tcard-star { width: 12px; height: 12px; background: var(--accent); clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%); }
.tcard-bottom { padding: 18px 32px; display: flex; align-items: center; gap: 12px; border-top: 1px solid var(--rule); background: var(--white); min-height: 76px; }
.tcard-info { flex: 1; }
.tcard-name { font-size: 13px; font-weight: 700; color: var(--dark); }
.tcard-loc { font-size: 11px; color: var(--text); margin-top: 2px; }
.tcard-tag { font-size: 11px; font-weight: 600; color: var(--accent); background: var(--accent-light); padding: 4px 10px; border-radius: 20px; white-space: nowrap; }
.carousel-controls { display: flex; align-items: center; gap: 12px; margin-top: 36px; }
.carousel-btn { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--rule); background: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.2s; }
.carousel-btn:hover { background: var(--dark); border-color: var(--dark); }
.carousel-btn:hover svg { stroke: #fff; }
.carousel-btn svg { width: 18px; height: 18px; stroke: var(--dark); }
.carousel-dots { display: flex; gap: 6px; }
.carousel-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--rule); cursor: pointer; transition: all 0.2s; }
.carousel-dot.active { background: var(--dark); width: 20px; border-radius: 3px; }
.carousel-progress { flex: 1; height: 2px; background: var(--rule); border-radius: 2px; overflow: hidden; }
.carousel-progress-bar { height: 100%; background: var(--accent); border-radius: 2px; transition: width 0.5s; }

/* NAV DROPDOWN */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle { display: flex; align-items: center; gap: 4px; cursor: pointer; font-size: 13px; font-weight: 500; color: var(--text, #444); opacity: .6; transition: opacity .2s; background: none; border: none; font-family: inherit; padding: 0; }
.nav-dropdown-toggle:hover, .nav-dropdown-toggle.open { opacity: 1; color: var(--dark, #111); }
.nav-dropdown-toggle.active, .nav-dropdown-toggle.active.open { opacity: 1; color: var(--dark, #111); }
.nav-dropdown-toggle svg { transition: transform .2s; }
.nav-dropdown-toggle.open svg { transform: rotate(180deg); }
.nav-dropdown-menu { position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%); background: #fff; border: 1px solid #D0D0CE; border-radius: 12px; box-shadow: 0 8px 28px rgba(0,0,0,0.12); padding: 8px; min-width: 210px; display: none; z-index: 400; }
.nav-dropdown-menu.open { display: block; }
.nav-dropdown-menu a { display: block; padding: 11px 16px; font-size: 13px; font-weight: 500; color: #444; border-radius: 7px; opacity: 1 !important; white-space: nowrap; transition: background .15s; }
.nav-dropdown-menu a:hover { background: #F2F3F1; color: #111; }
.nav-dropdown-menu a.external { display: flex; align-items: center; gap: 8px; }
.nav-dropdown-menu a.external svg { opacity: .4; flex-shrink: 0; }
.nav-dropdown-menu a.active { color: #3A6B2A; font-weight: 600; }

footer { background: #fff; border-top: 1px solid var(--rule, #D0D0CE); padding: 48px var(--mobile-gutter, 52px); }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; }
.footer-legal { font-size: 11px; line-height: 1.6; color: var(--muted, #808080); margin-top: 8px; }
.footer-links { display: flex; gap: 22px; flex-wrap: wrap; justify-content: flex-end; font-size: 12px; }
.footer-links a { color: var(--text, #444); opacity: .6; transition: opacity .2s; }
.footer-links a:hover { opacity: 1; }

/* Converted CTA buttons from <button> to <a> for real navigation. */
a.btn-white, a.btn-ghost-white, a.btn-accent, a.btn-dark, a.btn-ghost,
a.btn-outline, a.btn-primary, a.hero-btn, a.cta-btn {
  display: inline-block;
  text-align: center;
  text-decoration: none;
}
