:root {
  --bg: #f8f7f1;
  --surface: #fffdf7;
  --surface-strong: #f2efe4;
  --text: #1e2a25;
  --muted: #55635d;
  --border: #d6d1bf;
  --primary: #143a32;
  --primary-soft: #d6e6df;
  --accent: #b9821f;
  --accent-soft: #f3dfbc;
  --secondary: #6d7f48;
  --shadow: 0 18px 45px rgba(20, 58, 50, 0.09);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 36px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: radial-gradient(circle at top left, rgba(214, 230, 223, 0.65), transparent 30%), var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.page-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 253, 247, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(248, 247, 241, 0.86);
  border-bottom: 1px solid rgba(20, 58, 50, 0.08);
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--primary), #2a5a4f);
  color: #fff;
  font-family: "Newsreader", serif;
  font-size: 1.4rem;
  box-shadow: var(--shadow);
}

.brand-copy strong {
  display: block;
  font-size: 1rem;
}

.brand-copy span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
}

.nav-toggle {
  display: none;
  border: 0;
  background: var(--surface);
  color: var(--primary);
  border-radius: 12px;
  width: 46px;
  height: 46px;
  box-shadow: inset 0 0 0 1px rgba(20, 58, 50, 0.08);
}

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

.site-nav-links {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.site-nav a {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--primary);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: var(--shadow);
}

.button-secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}

.button-outline {
  border-color: rgba(20, 58, 50, 0.18);
  background: var(--surface);
  color: var(--primary);
}

.button-accent {
  background: var(--accent);
  color: #fff;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 6rem 0 5rem;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(20, 58, 50, 0.82), rgba(20, 58, 50, 0.34)),
    var(--hero-image, linear-gradient(135deg, #24453c, #6d7f48));
  background-size: cover;
  background-position: center;
}

.hero::after {
  content: "";
  position: absolute;
  right: -5rem;
  bottom: -4rem;
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  background: rgba(243, 223, 188, 0.18);
  filter: blur(10px);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  gap: 2rem;
  align-items: end;
  color: #fff;
}

.hero h1,
.page-hero h1,
.section-header h2,
.card h3,
.timeline-card h3,
.metric strong,
.feature-panel h3,
.cta-panel h2,
.footer-brand strong {
  font-family: "Newsreader", serif;
}

.hero h1,
.page-hero h1 {
  margin: 1rem 0;
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 0.98;
}

.hero p,
.page-hero p {
  max-width: 42rem;
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.88);
}

.hero-card {
  background: rgba(255, 253, 247, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  backdrop-filter: blur(10px);
}

.hero-card ul {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.hero-card li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-card li:last-child {
  border-bottom: 0;
}

.section {
  padding: 5rem 0;
}

.section-alt {
  background: linear-gradient(180deg, rgba(214, 230, 223, 0.18), rgba(255, 253, 247, 0));
}

.section-header {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: end;
  margin-bottom: 2rem;
}

.section-header h2 {
  margin: 0.35rem 0 0;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.05;
  color: var(--primary);
}

.section-header p {
  max-width: 42rem;
  margin: 0;
  color: var(--muted);
}

.stats-grid,
.cards-grid,
.feature-grid,
.info-grid,
.timeline-grid,
.faq-grid,
.footer-grid {
  display: grid;
  gap: 1.25rem;
}

.stats-grid {
  grid-template-columns: repeat(4, 1fr);
  margin-top: -2.25rem;
  position: relative;
  z-index: 2;
}

.metric {
  background: var(--surface);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  border: 1px solid rgba(20, 58, 50, 0.08);
}

.metric strong {
  display: block;
  color: var(--primary);
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 0.45rem;
}

.metric span {
  color: var(--muted);
  font-size: 0.95rem;
}

.cards-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.cards-grid.two {
  grid-template-columns: repeat(2, 1fr);
}

.card,
.feature-panel,
.timeline-card,
.faq-item,
.contact-panel,
.image-panel,
.cta-panel,
.strip {
  background: var(--surface);
  border: 1px solid rgba(20, 58, 50, 0.08);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
}

.card:hover,
.feature-panel:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 45px rgba(20, 58, 50, 0.12);
}

.card,
.feature-panel,
.timeline-card,
.faq-item,
.contact-panel,
.cta-panel,
.strip {
  padding: 1.5rem;
}

.card h3,
.feature-panel h3,
.timeline-card h3,
.cta-panel h2 {
  margin: 0 0 0.75rem;
  color: var(--primary);
}

.card p,
.feature-panel p,
.timeline-card p,
.contact-panel p,
.cta-panel p,
.strip p,
.list-muted li {
  color: var(--muted);
}

.icon-chip {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  background: var(--primary-soft);
  color: var(--primary);
  margin-bottom: 1rem;
  font-weight: 700;
}

.feature-grid {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: stretch;
}

.feature-panel {
  height: 100%;
}

.image-panel {
  overflow: hidden;
  min-height: 100%;
}

.image-panel img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.list-clean,
.list-muted,
.timeline-card ul,
.footer-links,
.contact-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.list-clean li,
.list-muted li,
.timeline-card li,
.contact-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.5rem 0;
}

.list-clean li::before,
.timeline-card li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-top: 0.6rem;
  flex: 0 0 auto;
  background: var(--accent);
}

.strip {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.25rem;
}

.strip strong {
  color: var(--primary);
}

.page-hero {
  position: relative;
  padding: 5rem 0 4rem;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20, 58, 50, 0.9), rgba(20, 58, 50, 0.72)),
    var(--hero-image, linear-gradient(135deg, #24453c, #6d7f48));
  background-size: cover;
  background-position: center;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
  max-width: 50rem;
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}

.timeline-grid {
  grid-template-columns: repeat(4, 1fr);
}

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

.faq-item button {
  width: 100%;
  border: 0;
  background: none;
  padding: 0;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  color: var(--primary);
  font-weight: 700;
  text-align: left;
}

.faq-item p {
  display: none;
  margin: 1rem 0 0;
}

.faq-item.is-open p {
  display: block;
}

.faq-item .faq-symbol {
  font-size: 1.4rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1.4rem;
}

.contact-panel form,
.enquiry-form {
  display: grid;
  gap: 1rem;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

label {
  display: grid;
  gap: 0.45rem;
  color: var(--primary);
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(20, 58, 50, 0.14);
  border-radius: 16px;
  background: #fff;
  padding: 0.9rem 1rem;
  color: var(--text);
}

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

.cta-panel {
  background: linear-gradient(135deg, var(--primary), #214f46);
  color: #fff;
}

.cta-panel h2,
.cta-panel p {
  color: #fff;
}

.site-footer {
  margin-top: auto;
  background: #0f2d27;
  color: rgba(255, 255, 255, 0.8);
  padding: 4rem 0 2rem;
}

.footer-grid {
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
}

.footer-brand strong {
  display: block;
  font-size: 2rem;
  color: #fff;
  margin-bottom: 0.75rem;
}

.footer-heading {
  display: block;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
  margin-bottom: 1rem;
}

.footer-links li {
  margin-bottom: 0.7rem;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  font-size: 0.95rem;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.pillar {
  padding: 1.3rem;
  border-radius: 20px;
  background: rgba(20, 58, 50, 0.05);
}

.pillar strong {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.table-lite {
  width: 100%;
  border-collapse: collapse;
}

.table-lite th,
.table-lite td {
  text-align: left;
  padding: 0.95rem 1rem;
  border-bottom: 1px solid rgba(20, 58, 50, 0.08);
}

.table-lite th {
  color: var(--primary);
  font-size: 0.9rem;
}

.note {
  margin-top: 1rem;
  padding: 1rem 1.2rem;
  border-radius: 18px;
  background: var(--accent-soft);
  color: #5c4212;
}

.microcopy {
  color: var(--muted);
  font-size: 0.95rem;
}

@media (max-width: 980px) {
  .hero-content,
  .feature-grid,
  .contact-layout,
  .split-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid,
  .cards-grid.three,
  .timeline-grid,
  .pillars,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .site-nav {
    position: fixed;
    top: 78px;
    right: 1rem;
    left: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border-radius: 24px;
    background: rgba(255, 253, 247, 0.97);
    border: 1px solid rgba(20, 58, 50, 0.08);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav-links,
  .header-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }
}

@media (max-width: 720px) {
  .section,
  .hero,
  .page-hero {
    padding: 4rem 0;
  }

  .stats-grid,
  .cards-grid.two,
  .cards-grid.three,
  .timeline-grid,
  .footer-grid,
  .pillars,
  .field-row {
    grid-template-columns: 1fr;
  }

  .section-header,
  .strip,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .image-panel img {
    min-height: 280px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 2.7rem;
  }
}
