/* ===================================================
   HKC Consulting v2 – atozbk.com Inspired Design
   =================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Inter:wght@400;500;600;700&display=swap');

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, sans-serif;
  color: #1e1e1e;
  background: #fff;
  font-size: 15px;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; }
p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

/* --- Variables --- */
:root {
  --teal:      #7eaaa5;
  --teal-dark: #5e8c88;
  --sage:      #ecf0ec;
  --charcoal:  #3a3a3a;
  --text:      #1e1e1e;
  --muted:     #6b6b6b;
  --border:    #d0d0d0;
  --serif:     'Playfair Display', Georgia, serif;
  --sans:      'Inter', -apple-system, sans-serif;
}

/* --- Layout --- */
.container   { max-width: 960px; margin: 0 auto; padding: 0 32px; }
.section     { padding: 72px 0; }
.section--sage { background: var(--sage); }
.text-center { text-align: center; }

/* ================================================
   NAVIGATION
   ================================================ */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: 90px;
  display: flex;
  align-items: center;
  padding: 0 56px;
  transition: background 0.3s, box-shadow 0.3s;
}

/* Over hero: transparent with white elements */
.site-nav--transparent {
  background: transparent;
}

/* Sticky: white background, dark elements */
.site-nav--solid {
  background: #fff;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}
.site-nav--solid .brand-badge {
  border-color: var(--teal);
}
.site-nav--solid .brand-badge__top,
.site-nav--solid .brand-badge__bottom {
  color: var(--muted);
}
.site-nav--solid .brand-badge__main {
  color: var(--text);
}
.site-nav--solid .brand-text__name {
  color: var(--text);
}
.site-nav--solid .brand-text__sub {
  color: var(--muted);
}
.site-nav--solid .site-nav__links li a {
  color: var(--teal-dark);
  border-bottom-color: transparent;
}
.site-nav--solid .site-nav__links li a:hover  { border-bottom-color: var(--teal); }
.site-nav--solid .site-nav__links li a.active { border-bottom-color: var(--teal-dark); }
.site-nav--solid .hamburger span { background: var(--text); }

.site-nav__brand {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  flex-shrink: 0;
}

.brand-badge {
  width: 70px; height: 70px;
  border: 2px solid rgba(255,255,255,0.52);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  flex-shrink: 0;
  transition: border-color 0.3s;
}
.brand-badge__top {
  font-size: 0.46rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  line-height: 1;
  transition: color 0.3s;
}
.brand-badge__main {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.01em;
  transition: color 0.3s;
}
.brand-badge__bottom {
  font-size: 0.4rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.52);
  line-height: 1;
  text-align: center;
  transition: color 0.3s;
}

.brand-text { display: flex; flex-direction: column; }
.brand-text__name {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  transition: color 0.3s;
}
.brand-text__sub {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.68);
  line-height: 1;
  transition: color 0.3s;
}

.site-nav__phone {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  text-decoration: none;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.site-nav__phone:hover { opacity: 0.75; }
.site-nav__phone-icon {
  width: 34px; height: 34px;
  border: 2px solid rgba(255,255,255,0.55);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color 0.2s;
}
.site-nav__phone:hover .site-nav__phone-icon { border-color: rgba(255,255,255,0.9); }
.site-nav--solid .site-nav__phone { color: var(--teal-dark); }
.site-nav--solid .site-nav__phone-icon { border-color: var(--teal); }
.site-nav--solid .site-nav__phone svg { stroke: var(--teal-dark); }

.site-nav__links {
  display: flex;
  align-items: center;
  gap: 44px;
}
.site-nav__links li a {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  border-bottom: 2px solid transparent;
  padding-bottom: 3px;
  transition: border-color 0.2s, color 0.3s;
}
.site-nav__links li a:hover   { border-bottom-color: rgba(255,255,255,0.6); }
.site-nav__links li a.active  { border-bottom-color: rgba(255,255,255,0.9); }

/* CONTACT button – solid teal, prominent */
.site-nav__links .nav-btn a {
  background: var(--teal);
  color: #fff !important;
  padding: 16px 32px;
  border: none;
  border-bottom: none !important;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  transition: background 0.2s;
}
.site-nav__links .nav-btn a:hover { background: var(--teal-dark); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: 20px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: #fff;
  transition: transform 0.3s, opacity 0.3s, background 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 90px; left: 0; right: 0;
  background: var(--charcoal);
  z-index: 150;
  padding: 4px 0;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 16px 32px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu a:hover { background: rgba(255,255,255,0.05); }

/* ================================================
   HERO BANNER
   ================================================ */
.hero-banner {
  height: 350px; /* taller so logo/nav are fully inside the teal hero area */
  background:
    linear-gradient(rgba(58,96,92,0.72), rgba(58,96,92,0.72)),
    url('https://images.unsplash.com/photo-1501594907352-04cda38ebc29?auto=format&w=1600&q=80')
    center/cover no-repeat;
}
.hero-banner--services {
  background:
    linear-gradient(rgba(58,96,92,0.72), rgba(58,96,92,0.72)),
    url('https://images.unsplash.com/photo-1554224155-6726b3ff858f?auto=format&w=1600&q=80')
    center/cover no-repeat;
}
.hero-banner--faqs {
  background:
    linear-gradient(rgba(58,96,92,0.72), rgba(58,96,92,0.72)),
    url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?auto=format&w=1600&q=80')
    center/cover no-repeat;
}
.hero-banner--careers {
  background:
    linear-gradient(rgba(58,96,92,0.72), rgba(58,96,92,0.72)),
    url('https://images.unsplash.com/photo-1517245386807-bb43f82c33c4?auto=format&w=1600&q=80')
    center/cover no-repeat;
}
.hero-banner--contact {
  background:
    linear-gradient(rgba(58,96,92,0.72), rgba(58,96,92,0.72)),
    url('https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&w=1600&q=80')
    center/cover no-repeat;
}

/* ================================================
   TYPOGRAPHY
   ================================================ */
.heading-xl {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 8px;
}
.heading-lg {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3.5vw, 2.1rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 8px;
}
.caps-label {
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text);
  display: inline-block;
  padding-bottom: 14px;
  border-bottom: 1.5px solid #aaa;
  margin-bottom: 28px;
}

/* ================================================
   BUTTONS
   ================================================ */
.btn-teal {
  display: inline-block;
  padding: 12px 22px;
  background: var(--teal);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1.5px solid var(--teal);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  font-family: var(--sans);
}
.btn-teal:hover { background: var(--teal-dark); border-color: var(--teal-dark); }

.btn-teal-outline {
  display: inline-block;
  padding: 12px 22px;
  background: transparent;
  color: var(--teal-dark);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1.5px solid var(--teal);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  font-family: var(--sans);
}
.btn-teal-outline:hover { background: var(--teal); color: #fff; }

/* ================================================
   ABOUT / HOME PAGE
   ================================================ */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 72px;
  align-items: start;
}
.about-body p {
  color: #444;
  font-size: 0.93rem;
  line-height: 1.82;
}

/* Right sidebar */
.sidebar-company {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 8px;
}
.sidebar-rule { border: none; border-top: 2px solid #222; margin-bottom: 18px; }
.sidebar-detail {
  font-size: 0.88rem;
  color: #333;
  line-height: 1.7;
  margin-bottom: 16px;
}
.sidebar-detail a { color: #333; }
.sidebar-detail a:hover { text-decoration: underline; }

/* Section divider with circle icon */
.section-divider {
  border-top: 1px solid var(--border);
  position: relative;
  max-width: 680px;
  margin: 48px auto 0;
  text-align: center;
}
.section-divider__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--border);
  position: absolute;
  top: -19px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--teal);
  font-size: 1rem;
}

/* About page – team sidebar */
.about-team {
  background: var(--sage);
  padding: 28px 24px;
  text-align: center;
}
.about-team h2 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.about-team .caps-label {
  font-size: 0.6rem;
  margin-bottom: 20px;
}
.about-team .team-card {
  text-align: center;
  margin-bottom: 28px;
}
.about-team .team-card:last-child {
  margin-bottom: 0;
}
.about-team .team-photo {
  width: 100%;
  max-width: 150px;
  aspect-ratio: 1 / 1;
  height: auto;
  font-size: 4rem;
  line-height: 1;
  margin: 0 auto 14px;
}
.about-team .team-photo svg {
  width: 52%;
  height: 52%;
  fill: rgba(255,255,255,0.45);
}

/* ================================================
   TEAM SECTION
   ================================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 56px;
}
.team-card { text-align: center; }
.team-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #b5c9c6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 18px;
  overflow: hidden;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-name {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.team-role {
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.team-link {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  border-bottom: 1.5px solid var(--text);
  padding-bottom: 1px;
}
.team-link:hover { color: var(--teal-dark); border-bottom-color: var(--teal-dark); }

/* ================================================
   SERVICES PAGE
   ================================================ */
.services-intro {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}
.services-intro p { font-size: 0.93rem; color: #444; line-height: 1.82; }

.service-block {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 40px;
  padding: 52px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.service-block:last-child { border-bottom: none; }

.service-icon {
  display: flex;
  justify-content: center;
  padding-top: 4px;
}
.service-icon svg {
  width: 76px; height: 76px;
  stroke: var(--teal-dark);
  fill: none;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-title {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.service-desc {
  font-size: 0.92rem;
  color: #444;
  line-height: 1.78;
  margin-bottom: 20px;
}

.checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px 24px;
  margin-bottom: 28px;
  list-style: none;
}
.checklist li {
  font-size: 0.87rem;
  color: #444;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.4;
}
.checklist li::before {
  content: '✓';
  color: var(--teal);
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ================================================
   BOOK CONSULTATION CTA BOX
   ================================================ */
.cta-box-section { padding: 80px 0 72px; }
.cta-box {
  border: 1px solid var(--border);
  text-align: center;
  padding: 48px 40px 40px;
  max-width: 560px;
  margin: 0 auto;
  position: relative;
}
.cta-box__avatar {
  width: 88px; height: 88px;
  border-radius: 50%;
  background: var(--teal);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.8rem;
  margin: -44px auto 24px;
  position: relative;
  z-index: 1;
  border: 4px solid #fff;
  overflow: hidden;
  color: rgba(255,255,255,0.6);
}
.cta-box__avatar img { width: 100%; height: 100%; object-fit: cover; }
.cta-box .heading-lg { margin-bottom: 8px; }
.cta-box p { color: #666; font-size: 0.9rem; margin-bottom: 24px; }

/* ================================================
   FAQs PAGE
   ================================================ */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid #d5d5d5; transition: background 0.2s; }
.faq-item:hover { background: var(--sage); }
.faq-trigger {
  width: 100%;
  background: none;
  border: none;
  padding: 16px 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-dark);
  text-align: left;
  line-height: 1.5;
}
.faq-plus {
  width: 24px; height: 24px;
  border: 1.5px solid var(--teal-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--teal-dark);
  flex-shrink: 0;
  transition: transform 0.25s;
  line-height: 1;
}
.faq-item.open .faq-plus { transform: rotate(45deg); }
.faq-body {
  display: none;
  padding: 4px 0 20px 38px;
}
.faq-body p { font-size: 0.92rem; color: #444; line-height: 1.78; }
.faq-body ul { margin: 8px 0 8px 20px; }
.faq-body li { font-size: 0.92rem; color: #444; margin-bottom: 4px; }
.faq-item.open .faq-body { display: block; }

/* ================================================
   CAREERS PAGE
   ================================================ */
.careers-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}
.careers-intro p { font-size: 0.93rem; color: #444; line-height: 1.82; }

.careers-form-wrap { max-width: 640px; margin: 0 auto; }

.form-row-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  margin-bottom: 10px;
}
.form-input {
  border: 1px solid #ccc;
  padding: 11px 14px;
  font-size: 0.88rem;
  font-family: var(--sans);
  width: 100%;
  background: #fff;
  outline: none;
  color: var(--text);
  transition: border-color 0.2s;
  -webkit-appearance: none;
  border-radius: 0;
}
.form-input::placeholder { color: #bbb; }
.form-input:focus { border-color: var(--teal); }

.form-textarea {
  border: 1px solid #ccc;
  padding: 11px 14px;
  font-size: 0.88rem;
  font-family: var(--sans);
  width: 100%;
  background: #fff;
  outline: none;
  resize: vertical;
  min-height: 130px;
  color: var(--text);
  transition: border-color 0.2s;
  margin-bottom: 10px;
  border-radius: 0;
}
.form-textarea::placeholder { color: #bbb; }
.form-textarea:focus { border-color: var(--teal); }

.upload-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  display: block;
  margin-bottom: 6px;
}
.upload-note { font-size: 0.78rem; color: var(--muted); display: block; margin-bottom: 22px; }

.btn-send {
  display: inline-block;
  padding: 12px 36px;
  background: var(--teal);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  font-family: var(--sans);
}
.btn-send:hover { background: var(--teal-dark); }

/* ================================================
   CONTACT PAGE
   ================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-col-title {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 24px;
}
.contact-info-item {
  margin-bottom: 20px;
  font-size: 0.9rem;
  color: #333;
  line-height: 1.65;
}
.contact-info-item strong {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 3px;
}
.contact-info-item a { color: var(--teal-dark); }
.contact-info-item a:hover { text-decoration: underline; }

/* ================================================
   FOOTER
   ================================================ */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.82);
  padding: 56px 0 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 24px;
}
.footer__col-title {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.footer__about-text {
  font-size: 0.83rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  margin-bottom: 10px;
}
.footer__copy {
  font-size: 0.73rem;
  color: rgba(255,255,255,0.35);
  margin-top: 14px;
  display: block;
}

/* Footer center badge */
.footer__badge-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.footer__badge {
  width: 96px; height: 96px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.22);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 10px;
}
.footer__badge-top {
  font-size: 0.4rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.48);
  line-height: 1;
}
.footer__badge-main {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.footer__badge-bottom {
  font-size: 0.36rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  line-height: 1;
  text-align: center;
}

/* Footer right */
.footer__right { text-align: right; }
.footer__contact-block {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.7;
  margin-bottom: 2px;
}
.footer__contact-block a { color: rgba(255,255,255,0.62); }
.footer__contact-block a:hover { color: #fff; }

.footer__social {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
  margin-top: 14px;
}
.footer__social a {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  font-weight: 600;
}
.footer__social a:hover { color: rgba(255,255,255,0.85); }

.footer__bottom {
  font-size: 0.73rem;
  color: rgba(255,255,255,0.32);
  text-align: center;
}

/* ================================================
   TEAM GRID – TWO MEMBER LAYOUT
   ================================================ */
.team-grid--two {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  margin-top: 56px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ================================================
   SERVICES GRID (card layout)
   ================================================ */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
  margin-top: 48px;
}
.service-card {
  flex: 0 1 calc(33.333% - 20px);
  min-width: 260px;
  border: 1px solid var(--border);
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s;
}
.service-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.08); background: var(--sage); border-color: var(--teal); }
.service-card__icon {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.service-card__icon svg {
  width: 56px; height: 56px;
  stroke: var(--teal-dark);
  fill: none;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-card__title {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  text-align: center;
}
.service-card__desc {
  font-size: 0.87rem;
  color: #555;
  line-height: 1.72;
  margin-bottom: 18px;
  text-align: center;
}
.service-card .checklist {
  grid-template-columns: 1fr;
  gap: 6px;
  margin-bottom: 0;
  display: none;
}
.service-card .checklist.open { display: grid; }
.service-card__toggle {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-dark);
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
  border-bottom: 1.5px solid var(--teal-dark);
  padding-bottom: 1px;
  font-family: var(--sans);
  transition: color 0.2s;
}
.service-card__toggle:hover { color: var(--teal); border-bottom-color: var(--teal); }
.service-card__toggle-icon {
  font-style: normal;
  transition: transform 0.25s;
  display: inline-block;
  line-height: 1;
}
.service-card__toggle.open .service-card__toggle-icon { transform: rotate(45deg); }

/* ================================================
   FAQ SECTION LABELS
   ================================================ */
.faq-section-label {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin-top: 48px;
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--teal);
}
.faq-section-label:first-child { margin-top: 0; }

/* ================================================
   MAP EMBED
   ================================================ */
.map-section { padding: 64px 0; background: var(--sage); }
.map-embed {
  width: 100%;
  height: 400px;
  border: 0;
  display: block;
  filter: grayscale(10%);
}
.map-section__label {
  text-align: center;
  margin-bottom: 28px;
}

/* ================================================
   RESOURCES PAGE
   ================================================ */
.resources-intro {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}
.resources-intro p { font-size: 0.93rem; color: #444; line-height: 1.82; }

.resources-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 8px;
}
.resources-section {
  padding: 32px;
  border: 1px solid var(--border);
}
.resources-section__title {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}
.resources-section__sub {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: 16px;
  display: block;
}
.resources-link-list { list-style: none; }
.resources-link-list li {
  border-bottom: 1px solid #ebebeb;
  padding: 10px 0;
  font-size: 0.88rem;
}
.resources-link-list li:last-child { border-bottom: none; }
.resources-link-list a {
  color: var(--teal-dark);
  font-weight: 600;
  display: block;
  padding-left: 20px;
  position: relative;
  line-height: 1.45;
}
.resources-link-list a::before {
  content: '→';
  position: absolute;
  left: 0;
  top: 0;
}
.resources-link-list a:hover { text-decoration: underline; }
.resources-link-list .link-desc {
  display: block;
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--muted);
  margin-top: 2px;
}
.resources-tip-list { list-style: none; }
.resources-tip-list li {
  font-size: 0.88rem;
  color: #444;
  line-height: 1.6;
  padding: 8px 0 8px 20px;
  border-bottom: 1px solid #ebebeb;
  position: relative;
}
.resources-tip-list li:last-child { border-bottom: none; }
.resources-tip-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}

/* ================================================
   HOME PAGE – HERO
   ================================================ */
.hero-home {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(to right, rgba(20,32,28,0.58) 36%, rgba(20,32,28,0.10) 100%),
    url('https://images.unsplash.com/photo-1501594907352-04cda38ebc29?auto=format&w=1600&q=80')
    center/cover no-repeat;
  padding-top: 90px;
  padding-left: clamp(40px, 7vw, 110px);
  padding-right: clamp(40px, 7vw, 110px);
}
.hero-home__content {
  max-width: 480px;
  padding: 72px 0;
}
.hero-home__eyebrow {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 20px;
  display: block;
}
.hero-home__headline {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 6vw, 4.2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.08;
  margin-bottom: 24px;
}
.hero-home__headline em {
  font-style: normal;
  color: var(--teal);
}
.hero-home__sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.72;
  margin-bottom: 40px;
  max-width: 420px;
}
.hero-home__cta {
  display: inline-block;
  padding: 16px 40px;
  background: var(--teal);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: background 0.2s;
}
.hero-home__cta:hover { background: var(--teal-dark); }

/* ================================================
   HOME PAGE – INTRO SECTION
   ================================================ */
.home-intro {
  padding: 88px 0;
  text-align: center;
}
.home-intro__heading {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 20px;
}
.home-intro__heading em {
  font-style: normal;
  color: var(--teal-dark);
}
.home-intro__body {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.88;
  max-width: 700px;
  margin: 0 auto;
}

/* ================================================
   HOME PAGE – QUOTE SECTION
   ================================================ */
.home-quote {
  background: var(--charcoal);
  padding: 88px 0;
  text-align: center;
}
.home-quote__mark {
  font-family: var(--serif);
  font-size: 6rem;
  color: var(--teal);
  line-height: 0.6;
  margin-bottom: 32px;
  display: block;
}
.home-quote__text {
  font-family: var(--serif);
  font-size: clamp(1.05rem, 2.4vw, 1.35rem);
  color: rgba(255,255,255,0.88);
  line-height: 1.72;
  max-width: 760px;
  margin: 0 auto 36px;
  font-style: italic;
}
.home-quote__attr {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.home-quote__line {
  width: 40px;
  height: 1px;
  background: var(--teal);
}
.home-quote__name {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
}

/* ================================================
   HOME PAGE – WHY CHOOSE SECTION
   ================================================ */
.why-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.why-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.why-item__check {
  width: 22px; height: 22px;
  background: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.why-item__check svg {
  width: 11px; height: 11px;
  stroke: #fff;
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}
.why-item__text {
  font-size: 0.9rem;
  color: #333;
  line-height: 1.6;
}
.why-item__text strong {
  display: block;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1px;
}

/* ================================================
   HOME PAGE – CTA BAR
   ================================================ */
.home-cta-bar {
  background: var(--teal-dark);
  text-align: center;
  padding: 72px 32px;
}
.home-cta-bar h2 {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3.5vw, 2.2rem);
  color: #fff;
  margin-bottom: 14px;
}
.home-cta-bar p {
  color: rgba(255,255,255,0.8);
  font-size: 0.92rem;
  margin-bottom: 32px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.home-cta-bar a {
  display: inline-block;
  padding: 18px 48px;
  background: #fff;
  color: var(--teal-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
}
.home-cta-bar a:hover { background: var(--charcoal); color: #fff; }

/* ================================================
   ENTRANCE ANIMATIONS
   ================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}

.anim-fade-up  { opacity: 0; }
.anim-fade-left  { opacity: 0; }
.anim-fade-right { opacity: 0; }

.anim-fade-up.is-visible    { animation: fadeUp   0.7s ease both; }
.anim-fade-left.is-visible  { animation: fadeLeft 0.8s ease both; }
.anim-fade-right.is-visible { animation: fadeRight 0.8s ease both; }

/* Slow variant for Why Choose items */
.anim-fade-up--slow.is-visible { animation-duration: 1.3s; }

/* Stagger delays for service cards */
.anim-fade-up:nth-child(1) { animation-delay: 0.05s; }
.anim-fade-up:nth-child(2) { animation-delay: 0.18s; }
.anim-fade-up:nth-child(3) { animation-delay: 0.31s; }
.anim-fade-up:nth-child(4) { animation-delay: 0.44s; }
.anim-fade-up:nth-child(5) { animation-delay: 0.57s; }

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 820px) {
  .site-nav { padding: 0 20px; }
  .site-nav__links { display: none; }
  .site-nav__phone { display: none; }
  .hamburger { display: flex; }

  .about-layout { grid-template-columns: 1fr; gap: 40px; }
  .about-team { padding: 24px 20px; }
  .team-grid,
  .team-grid--two { grid-template-columns: 1fr; max-width: 300px; margin-left: auto; margin-right: auto; }
  .resources-grid { grid-template-columns: 1fr; }
  .service-card { flex: 1 1 100%; }
  .service-block { grid-template-columns: 1fr; gap: 18px; }
  .checklist { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__right { text-align: left; }
  .footer__social { justify-content: flex-start; }
  .form-row-3 { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .cta-box { padding: 48px 24px 32px; }
  .hero-home { min-height: 480px; }
  .hero-home__content { padding: 56px 0; }
  .why-layout { grid-template-columns: 1fr; gap: 40px; }
  /* make room for the sticky call bar */
  body { padding-bottom: 62px; }
}

/* ================================================
   MOBILE STICKY CALL BAR
   ================================================ */
.mobile-call-bar { display: none; }

@media (max-width: 820px) {
  .mobile-call-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 300;
    background: var(--teal-dark);
    color: #fff;
    text-decoration: none;
    padding: 16px 24px;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    box-shadow: 0 -3px 16px rgba(0,0,0,0.22);
    transition: background 0.2s;
  }
  .mobile-call-bar:active { background: var(--charcoal); }
  .mobile-call-bar__icon {
    width: 34px; height: 34px;
    background: rgba(255,255,255,0.18);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
}
