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

:root {
  --red: #C8202A;
  --red-dark: #9B1820;
  --red-light: #F9E8E9;
  --navy: #1A2744;
  --navy-mid: #243460;
  --white: #FFFFFF;
  --off-white: #F7F6F4;
  --grey: #6B7280;
  --grey-light: #E8E8E4;
  --text: #1A1A1A;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Source Sans 3', sans-serif;
  color: var(--text);
  background: var(--white);
  font-size: 16px;
  line-height: 1.7;
}

/* ===== NAV ===== */
nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--navy);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 3rem;
  height: 68px;
  border-bottom: 3px solid var(--red);
}

.nav-logo {
  display: flex; align-items: center; gap: 0.7rem;
  cursor: pointer;
  text-decoration: none;
}
.nav-logo img { height: 48px; width: auto; }
.nav-logo-text {
  font-family: 'Playfair Display', serif;
  color: var(--white);
  font-size: 1.25rem;
  letter-spacing: 0.01em;
  line-height: 1.1;
}
.nav-logo-text span { color: var(--red); display: block; }

.nav-links { display: flex; gap: 0; list-style: none; }

.nav-links li a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0 1.2rem;
  height: 68px;
  display: flex; align-items: center;
  border-bottom: 3px solid transparent;
  margin-bottom: -3px;
  transition: color 0.2s, border-color 0.2s;
}
.nav-links li a:hover,
.nav-links li a.active {
  color: var(--white);
  border-bottom-color: var(--red);
}

/* ===== BUTTONS ===== */
.btn-primary {
  background: var(--red);
  color: var(--white);
  border: none;
  padding: 0.85rem 2rem;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  transition: background 0.2s;
  display: inline-block;
  text-decoration: none;
}
.btn-primary:hover { background: var(--red-dark); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4);
  padding: 0.85rem 2rem;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  transition: border-color 0.2s, color 0.2s;
  display: inline-block;
  text-decoration: none;
}
.btn-outline:hover { border-color: var(--white); color: var(--white); }

.btn-white {
  background: var(--white);
  color: var(--red);
  border: none;
  padding: 0.85rem 2.2rem;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  transition: background 0.2s;
  display: inline-block;
  text-decoration: none;
}
.btn-white:hover { background: var(--off-white); }

/* ===== SECTIONS ===== */
section { padding: 4.5rem 3rem; }
.section-inner { max-width: 960px; margin: 0 auto; }

.section-label {
  display: inline-block;
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.1rem;
  color: var(--navy);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-sub {
  color: var(--grey);
  max-width: 560px;
  font-weight: 300;
  margin-bottom: 2.5rem;
}

.red-divider {
  height: 4px;
  background: var(--red);
  width: 48px;
  margin-bottom: 2rem;
}

/* ===== HERO (HOME) ===== */
.hero {
  background: var(--navy);
  padding: 5rem 3rem 4rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 45%; height: 100%;
  background: var(--red);
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
  opacity: 0.12;
}
.hero-inner {
  max-width: 960px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
  position: relative; z-index: 1;
}
.hero-badge {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 2px;
  margin-bottom: 1.2rem;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  color: var(--white);
  font-size: 3rem;
  line-height: 1.15;
  margin-bottom: 1.2rem;
}
.hero h1 em { color: var(--red); font-style: normal; }
.hero p {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  font-weight: 300;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 4px;
  padding: 2rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
}
.stat-item { text-align: center; }
.stat-number {
  font-family: 'Playfair Display', serif;
  color: var(--white);
  font-size: 2.2rem;
  font-weight: 700;
  display: block;
}
.stat-label {
  color: rgba(255,255,255,0.55);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ===== SERVICE CARDS (HOME) ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-top: 4px solid var(--red);
  border-radius: 2px;
  padding: 1.8rem;
  transition: box-shadow 0.2s;
}
.service-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.service-icon {
  width: 44px; height: 44px;
  background: var(--red-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.service-icon svg { width: 22px; height: 22px; fill: var(--red); }
.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 0.6rem;
}
.service-card p { color: var(--grey); font-size: 0.92rem; line-height: 1.65; }

/* ===== ACCREDITATIONS ===== */
.accred-bg { background: var(--navy); }
.accred-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  justify-content: center;
  margin-top: 2rem;
}
.accred-logo {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 4px;
  width: 160px; height: 90px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 8px;
  padding: 1rem;
}
.accred-placeholder-icon {
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
}
.accred-logo span {
  color: rgba(255,255,255,0.4);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.accred-section-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--white);
  text-align: center;
  margin-bottom: 0.5rem;
}
.accred-section-label {
  display: block;
  text-align: center;
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.accred-note {
  text-align: center;
  color: rgba(255,255,255,0.3);
  font-size: 0.8rem;
  margin-top: 1.2rem;
  font-style: italic;
}

/* ===== TESTIMONIALS ===== */
.testimonials-bg { background: var(--off-white); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--white);
  border-radius: 4px;
  border: 1px solid var(--grey-light);
  padding: 1.8rem;
}
.testimonial-quote {
  color: var(--red);
  font-size: 2.5rem;
  font-family: 'Playfair Display', serif;
  line-height: 1;
  margin-bottom: 0.8rem;
}
.testimonial-text {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
  font-weight: 300;
}
.testimonial-author { display: flex; align-items: center; gap: 0.8rem; }
.author-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 0.85rem; font-weight: 600;
  flex-shrink: 0;
}
.author-name { font-weight: 600; font-size: 0.9rem; color: var(--navy); }
.author-role { font-size: 0.8rem; color: var(--grey); }

/* ===== PROJECTS ===== */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.project-card {
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--grey-light);
}
.project-img {
  height: 160px;
  background: var(--navy);
  position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.project-img-1 { background: linear-gradient(135deg, #1A2744 60%, #C8202A 100%); }
.project-img-2 { background: linear-gradient(135deg, #243460 50%, #9B1820 100%); }
.project-img-3 { background: linear-gradient(135deg, #1A2744 40%, #C8202A 90%); }
.project-img-label {
  color: rgba(255,255,255,0.25);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.project-tag {
  position: absolute; top: 0.8rem; left: 0.8rem;
  background: var(--red);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: 2px;
}
.project-body { padding: 1.2rem 1.4rem; background: var(--white); }
.project-body h4 {
  font-family: 'Playfair Display', serif;
  color: var(--navy);
  font-size: 1rem;
  margin-bottom: 0.4rem;
}
.project-body p { color: var(--grey); font-size: 0.85rem; line-height: 1.6; }

/* ===== PAGE HERO (ABOUT / SERVICES / CONTACT) ===== */
.page-hero {
  background: var(--navy);
  padding: 4rem 3rem;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 100%; height: 4px;
  background: var(--red);
}
.page-hero-inner { max-width: 960px; margin: 0 auto; }
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  color: var(--white);
  font-size: 2.8rem;
  margin-bottom: 1rem;
}
.page-hero p {
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  font-weight: 300;
  font-size: 1.05rem;
}

/* ===== ABOUT ===== */
.about-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start;
}
.value-item {
  display: flex; gap: 1rem; margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--grey-light);
}
.value-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.value-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--red);
  flex-shrink: 0; margin-top: 0.55rem;
}
.value-title { font-weight: 600; color: var(--navy); margin-bottom: 0.3rem; font-size: 0.95rem; }
.value-text { color: var(--grey); font-size: 0.92rem; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
}
.team-card {
  text-align: center;
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: 4px;
  padding: 2rem 1.2rem;
}
.team-avatar {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1.1rem; font-weight: 600;
  margin: 0 auto 1rem;
  border: 3px solid var(--red);
}
.team-name { font-family: 'Playfair Display', serif; color: var(--navy); font-size: 1rem; }
.team-role { color: var(--grey); font-size: 0.82rem; margin-top: 0.3rem; }

/* ===== SERVICES PAGE ===== */
.service-detail-card {
  display: grid; grid-template-columns: 3fr 2fr; gap: 2.5rem;
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-left: 5px solid var(--red);
  border-radius: 2px;
  padding: 2rem;
  margin-bottom: 1.5rem;
}
.service-detail-card h3 {
  font-family: 'Playfair Display', serif;
  color: var(--navy); font-size: 1.3rem; margin-bottom: 0.8rem;
}
.service-detail-card > div > p {
  color: var(--grey); font-size: 0.92rem; margin-bottom: 1rem;
}
.service-detail-includes { list-style: none; }
.service-detail-includes li {
  color: var(--grey);
  font-size: 0.87rem;
  padding: 0.3rem 0;
  display: flex; align-items: center; gap: 0.6rem;
}
.service-detail-includes li::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--red); flex-shrink: 0;
}
.service-detail-meta {
  background: var(--off-white);
  border-radius: 4px;
  padding: 1.4rem;
  display: flex; flex-direction: column; gap: 1.1rem;
  align-self: start;
}
.meta-label {
  color: var(--grey);
  font-size: 0.73rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.meta-value { color: var(--navy); font-weight: 600; font-size: 0.9rem; }

/* ===== CONTACT ===== */
.contact-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start;
}
.contact-info-item {
  display: flex; gap: 1rem; margin-bottom: 1.8rem;
  padding-bottom: 1.8rem;
  border-bottom: 1px solid var(--grey-light);
}
.contact-info-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.contact-icon {
  width: 42px; height: 42px;
  background: var(--red-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 18px; height: 18px; fill: var(--red); }
.contact-info-label { font-weight: 600; color: var(--navy); font-size: 0.9rem; margin-bottom: 0.25rem; }
.contact-info-value { color: var(--grey); font-size: 0.92rem; }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.form-input, .form-select, .form-textarea {
  border: 1.5px solid var(--grey-light);
  border-radius: 2px;
  padding: 0.75rem 0.9rem;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
  width: 100%;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--red); }
.form-textarea { resize: vertical; min-height: 130px; }
.form-submit {
  background: var(--red);
  color: var(--white);
  border: none;
  padding: 0.9rem 2rem;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  transition: background 0.2s;
  align-self: flex-start;
}
.form-submit:hover { background: var(--red-dark); }

/* ===== CTA STRIP ===== */
.cta-strip {
  background: var(--red);
  padding: 3.5rem 3rem;
  text-align: center;
}
.cta-strip h2 {
  font-family: 'Playfair Display', serif;
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 0.7rem;
}
.cta-strip p {
  color: rgba(255,255,255,0.75);
  margin-bottom: 1.8rem;
  font-weight: 300;
  font-size: 1.05rem;
}

/* ===== FOOTER ===== */
footer {
  background: var(--navy);
  border-top: 3px solid var(--red);
  padding: 2.5rem 3rem;
}
.footer-inner {
  max-width: 960px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.footer-logo {
  display: flex; align-items: center; gap: 0.7rem;
  text-decoration: none;
}
.footer-logo img { height: 44px; width: auto; }
.footer-logo-text {
  font-family: 'Playfair Display', serif;
  color: var(--white); font-size: 1.1rem; line-height: 1.1;
}
.footer-logo-text span { color: var(--red); display: block; }
.footer-copy { color: rgba(255,255,255,0.35); font-size: 0.82rem; }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  font-size: 0.82rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  nav { padding: 0 1.5rem; }
  .nav-links li a { padding: 0 0.7rem; font-size: 0.78rem; }
  .hero { padding: 3rem 1.5rem; }
  .hero-inner { grid-template-columns: 1fr; gap: 2rem; }
  section { padding: 3rem 1.5rem; }
  .page-hero { padding: 3rem 1.5rem; }
  .about-split { grid-template-columns: 1fr; }
  .contact-split { grid-template-columns: 1fr; }
  .service-detail-card { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  footer { padding: 2rem 1.5rem; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 0.8rem; }
  .cta-strip { padding: 2.5rem 1.5rem; }
}
