/* =====================================================
   Tandem-Bridge v2 (Warm Professional) — Design System & Styles
   ===================================================== */

:root {
  /* Colors */
  --bg: #FEFCF8;
  --bg-muted: #F5F1EA;
  --bg-cream: #FBF8F3;
  --forest: #3A5A40;
  --forest-dark: #2C4532;
  --terracotta: #BC6C25;
  --terracotta-light: #E8B89D;
  --terracotta-soft: rgba(188, 108, 37, 0.08);
  --text: #1F2937;
  --text-muted: #6B7280;
  --text-light: #9CA3AF;
  --border: rgba(31, 41, 55, 0.08);
  --white: #FFFFFF;
  --error: #DC2626;
  --success: #16A34A;

  /* Typography */
  --font-serif: 'DM Serif Display', Georgia, serif;
  --font-sans: 'Inter', sans-serif;

  /* Layout */
  --container: 1200px;
  --section-pad: clamp(5rem, 10vw, 8rem);

  /* Motion */
  --transition-fast: 0.2s ease;
  --transition-base: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-smooth: 0.6s cubic-bezier(0.16, 1, 0.3, 1);

  /* Shadows */
  --shadow-sm: 0 4px 24px rgba(31, 41, 55, 0.05);
  --shadow-md: 0 12px 40px rgba(31, 41, 55, 0.08);
  --shadow-lg: 0 24px 64px rgba(31, 41, 55, 0.1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

/* ---------------- Layout ---------------- */
.container {
  width: min(100% - 3rem, var(--container));
  margin-inline: auto;
}

.section {
  padding-block: var(--section-pad);
  position: relative;
}

.section--muted {
  background: var(--bg-muted);
}

.section__header {
  max-width: 640px;
  margin-bottom: 4rem;
}

.section__header--centered {
  text-align: center;
  margin-inline: auto;
}

.section__title {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.12;
  color: var(--forest-dark);
  margin-top: 1rem;
}

.section__title em {
  color: var(--terracotta);
  font-style: italic;
}

.section__lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-top: 1.25rem;
}

.tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
  padding: 0.45rem 1rem;
  background: var(--terracotta-soft);
  border-radius: 100px;
}

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.9rem 1.75rem;
  border-radius: 100px;
  transition: all var(--transition-base);
}

.btn--primary {
  background: var(--terracotta);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(188, 108, 37, 0.2);
}

.btn--primary:hover {
  background: var(--forest);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(58, 90, 64, 0.2);
}

.btn--outline {
  border: 1px solid var(--border);
  color: var(--forest-dark);
  background: transparent;
}

.btn--outline:hover {
  border-color: var(--terracotta);
  color: var(--terracotta);
  background: var(--terracotta-soft);
}

.btn--light {
  background: var(--white);
  color: var(--forest-dark);
}

.btn--light:hover {
  background: var(--forest-dark);
  color: var(--white);
}

.btn--lg {
  padding: 1rem 2.25rem;
  font-size: 0.95rem;
}

.btn--sm {
  padding: 0.65rem 1.25rem;
  font-size: 0.8rem;
}

/* ---------------- Topbar ---------------- */
.topbar {
  background: var(--forest-dark);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  padding-block: 0.65rem;
}

.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar__info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.topbar a {
  color: rgba(255, 255, 255, 0.85);
}

.topbar a:hover {
  color: var(--terracotta-light);
}

.topbar__divider {
  width: 1px;
  height: 12px;
  background: rgba(255, 255, 255, 0.2);
}

.topbar__meta {
  font-weight: 500;
}

/* ---------------- Header ---------------- */
.header {
  position: sticky;
  top: 0;
  background: rgba(254, 252, 248, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  z-index: 100;
  transition: all var(--transition-base);
}

.header--scrolled {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 82px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--forest-dark);
}

.logo__mark {
  width: 40px;
  height: 26px;
  color: var(--terracotta);
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.nav__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition-fast);
  position: relative;
  padding-block: 0.5rem;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--terracotta);
  border-radius: 2px;
  transition: width var(--transition-base);
}

.nav__link:hover,
.nav__link.active {
  color: var(--forest-dark);
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 26px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--forest-dark);
  transition: all var(--transition-base);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ---------------- Hero ---------------- */
.hero {
  position: relative;
  padding-block: 6rem 5rem;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-cream) 100%);
}

.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  pointer-events: none;
}

.hero__blob--top {
  width: 500px;
  height: 500px;
  background: var(--terracotta-light);
  top: -200px;
  right: -150px;
}

.hero__blob--bottom {
  width: 400px;
  height: 400px;
  background: #D4E4D1;
  bottom: -150px;
  left: -100px;
}

.hero__container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero__content {
  max-width: 560px;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.75rem, 5.5vw, 4.5rem);
  font-weight: 400;
  line-height: 1.08;
  color: var(--forest-dark);
  margin-top: 1.25rem;
}

.hero__title em {
  color: var(--terracotta);
  font-style: italic;
}

.hero__lead {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-top: 1.5rem;
}

.hero__ctas {
  display: flex;
  gap: 1rem;
  margin-top: 2.25rem;
  flex-wrap: wrap;
}

.hero__visual {
  position: relative;
}

.hero__image-main {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero__image-main img {
  width: 100%;
  aspect-ratio: 5 / 6;
  object-fit: cover;
}

.hero__image-shape {
  position: absolute;
  top: -24px;
  right: -24px;
  width: 120px;
  height: 120px;
  background: var(--terracotta);
  border-radius: 24px;
  z-index: -1;
  opacity: 0.8;
}

.hero__stat-card {
  position: absolute;
  bottom: 2rem;
  left: -2rem;
  background: var(--white);
  padding: 1.5rem 2rem;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  text-align: center;
}

.hero__stat-number,
.hero__stat-unit {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--terracotta);
  line-height: 1;
}

.hero__stat-label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.4rem;
  max-width: 120px;
}

/* ---------------- Trust Strip ---------------- */
.trust {
  padding-block: 2.5rem;
  border-block: 1px solid var(--border);
}

.trust__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.trust p {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  flex-shrink: 0;
}

.trust__logos {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.trust__logos span {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--text-light);
  letter-spacing: 0.05em;
  transition: color var(--transition-fast);
}

.trust__logos span:hover {
  color: var(--forest);
}

/* ---------------- Intro ---------------- */
.intro__inner {
  max-width: 840px;
  text-align: center;
}

.intro__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
}

.intro__title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 400;
  color: var(--forest-dark);
  margin-top: 1rem;
  line-height: 1.25;
}

.intro__text {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-top: 1.25rem;
}

/* ---------------- Services ---------------- */
.services__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.service-row {
  display: grid;
  grid-template-columns: 70px 1fr 60px;
  gap: 2rem;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem 2.5rem;
  transition: all var(--transition-base);
}

.service-row:hover {
  border-color: transparent;
  box-shadow: var(--shadow-md);
  transform: translateX(8px);
}

.service-row__num {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--terracotta);
}

.service-row__content h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--forest-dark);
  margin-bottom: 0.4rem;
}

.service-row__content p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.service-row__link {
  width: 52px;
  height: 52px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--forest);
  transition: all var(--transition-base);
}

.service-row:hover .service-row__link {
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: var(--white);
}

/* ---------------- Why Us ---------------- */
.why__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.why__content {
  max-width: 520px;
}

.why__stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.why__stat {
  display: flex;
  flex-direction: column;
}

.why__stat strong {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--forest-dark);
  line-height: 1;
}

.why__stat span {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.why__visual {
  position: relative;
}

.why__visual img {
  width: 100%;
  border-radius: 32px;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.why__quote {
  position: absolute;
  bottom: -2rem;
  left: -2rem;
  background: var(--white);
  padding: 2rem;
  border-radius: 24px;
  box-shadow: var(--shadow-md);
  max-width: 320px;
}

.why__quote p {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--forest-dark);
  line-height: 1.45;
  margin-bottom: 1rem;
}

.why__quote cite {
  font-size: 0.85rem;
  font-style: normal;
  font-weight: 600;
  color: var(--terracotta);
}

/* ---------------- Values ---------------- */
.values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2.5rem;
  transition: all var(--transition-base);
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.value-card__num {
  display: inline-block;
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 400;
  color: var(--terracotta);
  margin-bottom: 1.25rem;
}

.value-card h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--forest-dark);
  margin-bottom: 0.75rem;
}

.value-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* ---------------- Process ---------------- */
.process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.process-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2rem;
  text-align: center;
  transition: all var(--transition-base);
}

.process-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.process-card__num {
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--terracotta-soft);
  color: var(--terracotta);
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 1.25rem;
}

.process-card h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--forest-dark);
  margin-bottom: 0.5rem;
}

.process-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ---------------- Testimonials ---------------- */
.testimonials__inner {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

.testimonials__image img {
  width: 100%;
  border-radius: 32px;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.testimonials__slider {
  position: relative;
  overflow: hidden;
}

.testimonials__track {
  display: flex;
  transition: transform var(--transition-smooth);
}

.testimonial-slide {
  flex: 0 0 100%;
}

.testimonial-slide p {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--forest-dark);
  line-height: 1.45;
  margin-bottom: 2rem;
}

.testimonial-slide footer {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-slide img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-slide cite {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  font-style: normal;
  color: var(--forest-dark);
}

.testimonial-slide footer span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.testimonials__controls {
  display: flex;
  gap: 0.75rem;
  margin-top: 2rem;
}

.slider-btn {
  width: 48px;
  height: 48px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--forest);
  transition: all var(--transition-base);
}

.slider-btn:hover {
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: var(--white);
}

/* ---------------- CTA ---------------- */
.cta-section {
  background: var(--terracotta);
  color: var(--white);
  padding-block: 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -60%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}

.cta-section__inner {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin-inline: auto;
}

.cta-section h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 2rem;
}

/* ---------------- Footer ---------------- */
.footer {
  background: var(--forest-dark);
  color: rgba(255, 255, 255, 0.7);
  padding-top: 5rem;
  padding-bottom: 2rem;
}

.footer .logo {
  color: var(--white);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__brand p {
  margin-top: 1.25rem;
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 300px;
}

.footer__social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.footer__social a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.7);
  transition: all var(--transition-base);
}

.footer__social a:hover {
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: var(--white);
}

.footer__column h4 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.footer__column li {
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}

.footer__column a {
  color: rgba(255, 255, 255, 0.7);
}

.footer__column a:hover {
  color: var(--terracotta-light);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer__legal {
  display: flex;
  gap: 1.5rem;
}

.footer__legal a:hover {
  color: var(--terracotta-light);
}

/* ---------------- Animations ---------------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* =====================================================
   Additional Components — Inner Pages, Forms, Admin
   ===================================================== */

/* ---------------- Page Header / Banner ---------------- */
.page-banner {
  position: relative;
  padding-block: 5rem 4rem;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-cream) 100%);
  overflow: hidden;
}

.page-banner__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  pointer-events: none;
}

.page-banner__blob--1 {
  width: 400px;
  height: 400px;
  background: var(--terracotta-light);
  top: -150px;
  right: -100px;
}

.page-banner__blob--2 {
  width: 350px;
  height: 350px;
  background: #D4E4D1;
  bottom: -120px;
  left: -80px;
}

.page-banner__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 760px;
  margin-inline: auto;
}

.page-banner__title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  color: var(--forest-dark);
  margin-top: 1rem;
  line-height: 1.1;
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.breadcrumb a:hover {
  color: var(--terracotta);
}

.breadcrumb__sep {
  color: var(--text-light);
}

/* ---------------- Forms ---------------- */
.form-group {
  margin-bottom: 1.5rem;
}

.form-group label,
.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--forest-dark);
  margin-bottom: 0.5rem;
}

.form-group label .required,
.form-label .required {
  color: var(--terracotta);
  margin-left: 0.15rem;
}

.form-control,
.form-select,
textarea.form-control {
  width: 100%;
  padding: 0.9rem 1.1rem;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: all var(--transition-fast);
}

.form-control:focus,
.form-select:focus,
textarea.form-control:focus {
  outline: none;
  border-color: var(--terracotta);
  box-shadow: 0 0 0 4px var(--terracotta-soft);
}

.form-control::placeholder {
  color: var(--text-light);
}

textarea.form-control {
  resize: vertical;
  min-height: 140px;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.75rem;
}

.form-file {
  position: relative;
}

.form-file input[type="file"] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.form-file__trigger {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1.1rem;
  background: var(--white);
  border: 1px dashed var(--border);
  border-radius: 12px;
  color: var(--text-muted);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.form-file:hover .form-file__trigger,
.form-file input[type="file"]:focus + .form-file__trigger {
  border-color: var(--terracotta);
  background: var(--terracotta-soft);
  color: var(--forest-dark);
}

.form-file__name {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.4rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.form-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

.form-status {
  padding: 1rem 1.25rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  display: none;
}

.form-status.active {
  display: block;
}

.form-status--success {
  background: rgba(22, 163, 74, 0.08);
  color: var(--success);
  border: 1px solid rgba(22, 163, 74, 0.15);
}

.form-status--error {
  background: rgba(220, 38, 38, 0.08);
  color: var(--error);
  border: 1px solid rgba(220, 38, 38, 0.15);
}

.form-control.error,
.form-select.error {
  border-color: var(--error);
  box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.08);
}

.form-file.error .form-file__trigger {
  border-color: var(--error);
  background: rgba(220, 38, 38, 0.04);
}

/* ---------------- Contact Page ---------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.contact-info__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--terracotta-soft);
  color: var(--terracotta);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.contact-info__item h4 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--forest-dark);
  margin-bottom: 0.25rem;
}

.contact-info__item p,
.contact-info__item a {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.contact-info__item a:hover {
  color: var(--terracotta);
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}

/* ---------------- Job Board ---------------- */
.job-board__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.job-board__count {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

.job-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.job-card {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 2rem;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.75rem 2rem;
  transition: all var(--transition-base);
}

.job-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-md);
  transform: translateX(6px);
}

.job-card__title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--forest-dark);
  margin-bottom: 0.35rem;
}

.job-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.job-card__meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.job-card__badge {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.9rem;
  background: rgba(22, 163, 74, 0.08);
  color: var(--success);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ---------------- Modal ---------------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(31, 41, 55, 0.5);
  backdrop-filter: blur(4px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: var(--bg);
  border-radius: 24px;
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  transform: translateY(20px) scale(0.98);
  transition: transform var(--transition-smooth);
}

.modal-overlay.active .modal {
  transform: translateY(0) scale(1);
}

.modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.75rem 2rem;
  border-bottom: 1px solid var(--border);
}

.modal__header h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--forest-dark);
}

.modal__close {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--text-muted);
  transition: all var(--transition-fast);
}

.modal__close:hover {
  background: var(--terracotta-soft);
  color: var(--terracotta);
}

.modal__body {
  padding: 2rem;
}

.modal__job-title {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.modal__job-title strong {
  color: var(--forest-dark);
}

/* ---------------- Payment Page ---------------- */
.payment-form {
  max-width: 800px;
  margin-inline: auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}

.payment-form__notice {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--terracotta-soft);
  border-radius: 16px;
  margin-bottom: 2rem;
}

.payment-form__notice p {
  font-size: 0.9rem;
  color: var(--forest-dark);
  line-height: 1.6;
}

/* ---------------- About Page ---------------- */
.about-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-hero__image {
  position: relative;
}

.about-hero__image img {
  width: 100%;
  border-radius: 32px;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.mission-vision {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.mission-vision__card {
  background: var(--bg-muted);
  border-radius: 20px;
  padding: 1.75rem;
}

.mission-vision__card h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--forest-dark);
  margin-bottom: 0.75rem;
}

.mission-vision__card p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.team-card {
  text-align: center;
}

.team-card img {
  width: 100%;
  border-radius: 20px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  margin-bottom: 1rem;
}

.team-card h4 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--forest-dark);
}

.team-card span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.commitment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.commitment__image img {
  width: 100%;
  border-radius: 32px;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.commitment__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.commitment__stat {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
}

.commitment__stat strong {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--terracotta);
  line-height: 1;
}

.commitment__stat span {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

.values-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
}

.value-item__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--terracotta-soft);
  color: var(--terracotta);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.value-item h4 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--forest-dark);
  margin-bottom: 0.25rem;
}

.value-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ---------------- Services Page ---------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  transition: all var(--transition-base);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.service-card__image {
  position: relative;
  overflow: hidden;
}

.service-card__image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.service-card:hover .service-card__image img {
  transform: scale(1.05);
}

.service-card__num {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--terracotta);
  color: var(--white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-serif);
  font-size: 1rem;
}

.service-card__body {
  padding: 1.75rem;
}

.service-card__body h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--forest-dark);
  margin-bottom: 0.6rem;
}

.service-card__body p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ---------------- Admin Panel ---------------- */
.admin-body {
  background: var(--bg-muted);
  min-height: 100vh;
}

.admin-header {
  background: var(--forest-dark);
  color: var(--white);
  padding-block: 1rem;
}

.admin-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.admin-header__brand {
  font-family: var(--font-serif);
  font-size: 1.35rem;
}

.admin-header__user {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.9rem;
}

.admin-header__logout {
  padding: 0.5rem 1rem;
  background: var(--terracotta);
  color: var(--white);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
}

.admin-login {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.admin-login__card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2.5rem;
  width: 100%;
  max-width: 420px;
  box-shadow: var(--shadow-md);
}

.admin-login__card h1 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--forest-dark);
  margin-bottom: 0.5rem;
}

.admin-login__card > p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.admin-dashboard {
  padding-block: 2.5rem;
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.admin-stat {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
}

.admin-stat__value {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-weight: 400;
  color: var(--forest-dark);
  line-height: 1;
}

.admin-stat__label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

.admin-section {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.75rem;
  margin-bottom: 1.5rem;
}

.admin-section__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}

.admin-section__header h2 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--forest-dark);
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.admin-table th,
.admin-table td {
  text-align: left;
  padding: 0.9rem 1rem;
  border-bottom: 1px solid var(--border);
}

.admin-table th {
  font-weight: 600;
  color: var(--forest-dark);
  background: var(--bg-muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.admin-table td {
  color: var(--text);
}

.admin-table tr:last-child td {
  border-bottom: none;
}

.admin-table__empty {
  text-align: center;
  color: var(--text-muted);
  padding: 2rem !important;
}

.admin-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.6rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
}

.admin-badge--contact {
  background: rgba(59, 130, 246, 0.1);
  color: #2563EB;
}

.admin-badge--job {
  background: rgba(188, 108, 37, 0.1);
  color: var(--terracotta);
}

.admin-badge--payment {
  background: rgba(58, 90, 64, 0.1);
  color: var(--forest);
}

.admin-btn {
  padding: 0.45rem 0.9rem;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  transition: all var(--transition-fast);
}

.admin-btn--view {
  background: var(--terracotta-soft);
  color: var(--terracotta);
}

.admin-btn--view:hover {
  background: var(--terracotta);
  color: var(--white);
}

.admin-btn--danger {
  background: rgba(220, 38, 38, 0.08);
  color: var(--error);
  margin-left: 0.5rem;
}

.admin-btn--danger:hover {
  background: var(--error);
  color: var(--white);
}

.admin-detail {
  display: grid;
  gap: 1rem;
}

.admin-detail__row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.admin-detail__row dt {
  font-weight: 600;
  color: var(--forest-dark);
  font-size: 0.85rem;
}

.admin-detail__row dd {
  color: var(--text);
  font-size: 0.9rem;
}

.admin-detail__files a {
  color: var(--terracotta);
  text-decoration: underline;
}

.admin-modal .modal {
  max-width: 700px;
}

/* ---------------- Responsive ---------------- */
@media (max-width: 1100px) {
  .hero__container,
  .why__grid,
  .testimonials__inner,
  .contact-grid,
  .about-hero__grid,
  .commitment-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero__visual,
  .why__visual,
  .about-hero__image,
  .commitment__image {
    order: -1;
    max-width: 500px;
    margin-inline: auto;
  }

  .why__quote {
    left: 0;
    bottom: -1rem;
  }

  .values__grid,
  .services-grid,
  .admin-stats {
    grid-template-columns: 1fr;
  }

  .process__grid,
  .team-grid,
  .mission-vision,
  .commitment__stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials__image {
    display: none;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .job-card {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

@media (max-width: 900px) {
  .topbar {
    display: none;
  }

  .nav {
    position: fixed;
    inset: 82px 0 auto 0;
    background: rgba(254, 252, 248, 0.98);
    border-bottom: 1px solid var(--border);
    padding: 2rem;
    transform: translateY(-150%);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-smooth);
  }

  .nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }

  .nav__link {
    font-size: 1.1rem;
  }

  .menu-toggle {
    display: flex;
  }

  .header__actions .btn {
    display: none;
  }

  .trust__inner {
    flex-direction: column;
    text-align: center;
  }

  .trust__logos {
    justify-content: center;
  }

  .service-row {
    grid-template-columns: 50px 1fr;
    padding: 1.75rem;
  }

  .service-row__link {
    display: none;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-block: 4rem;
  }

  .hero__stat-card {
    left: 1rem;
    bottom: 1rem;
  }

  .hero__image-shape {
    display: none;
  }

  .why__stats,
  .process__grid,
  .team-grid,
  .mission-vision,
  .commitment__stats,
  .admin-detail__row {
    flex-direction: column;
    grid-template-columns: 1fr;
  }

  .footer__grid,
  .footer__bottom {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer__brand p {
    margin-inline: auto;
  }

  .footer__social {
    justify-content: center;
  }

  .footer__legal {
    justify-content: center;
  }

  .contact-form,
  .payment-form,
  .admin-login__card,
  .admin-section {
    padding: 1.5rem;
  }

  .admin-table {
    font-size: 0.8rem;
  }

  .admin-table th,
  .admin-table td {
    padding: 0.7rem 0.5rem;
  }
}
