:root {
  --primary: #111111;
  --primary-dark: #000000;
  --accent: #E0C341;
  --bg-light: #F6F4E8;
  --text-main: #222222;
}

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

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text-main);
  background-color: #F6F4E8;
}

/* Navbar */
.navbar-brand {background-color: #F6F4E8;}
.navbar-brand img {
  height: 52px;
  width: auto;
  margin-right: 0.75rem;
  background-color: #F6F4E8;
}
.navbar-brand span {
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.82rem;
  background-color: #F6F4E8;
}

.nav-link {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background-color: #F6F4E8;
}

.nav-link.active {
  color: var(--accent) !important;
  background-color: #F6F4E8;
}




/* Buttons */

.btn-brand {
  border-radius: 999px;
  padding: 0.55rem 1.5rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  background-color: var(--accent);
  border-color: var(--accent);
  color: #111111;
}

.btn-brand:hover {
  background-color: #E0C341;
  border-color: #E0C341;
  color: #000;
}

/* Hero */

.hero {
  padding: 5rem 0 4rem;
  background: radial-gradient(circle at top left, #F6F4E8 100, #F6F4E8 55%);
}

.hero-title {
  font-size: clamp(2.4rem, 3vw + 1rem, 3rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--primary-dark);
}

.hero-subtitle {
  font-size: 1.03rem;
  max-width: 32rem;
  color: #55595f;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.1);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 0.85rem;
}

.hero-card {
  border-radius: 26px;
  background: #111111;
  color: #F6F4E8;
  padding: 2.1rem 2rem;
  box-shadow: 0 20px 45px rgba(0,0,0,0.25);
}

/* Sections */

section {
  padding: 4rem 0;
}

.section-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.section-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 0.9rem;
}

.section-lead {
  font-size: 0.98rem;
  color: #55595f;
  max-width: 34rem;
}

/* Cards */

.service-card,
.info-card {
  background-color: var(--accent);
  border-radius: 20px;
  padding: 1.6rem 1.5rem;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 10px 26px rgba(0,0,0,0.05);
  height: 100%;
}

.service-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.service-card p {
  font-size: 0.92rem;
  color: #55595f;
}

/* Contact */

.contact-wrapper {
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) minmax(0, 1.2fr);
  gap: 2.3rem;
}

.contact-side {
  border-radius: 20px;
  padding: 1.8rem 1.6rem;
  background: #111111;
  color: #F6F4E8;
}

/* Footer */

footer {
  background-color: #111111;
  color: #F6F4E8;
  padding: 2.2rem 0 1.4rem;
  font-size: 0.85rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.5rem;
}

.footer-brand img {
  height: 40px;
  width: auto;
}

.footer-title {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.76rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-top: 1.3rem;
  padding-top: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.6rem;
}

/* Utilities */

.bg-soft {
  background-color: var(--bg-light);
}

/* Responsive */

@media (max-width: 767px) {
  .hero {
    padding-top: 4rem;
  }
  .contact-wrapper {
    grid-template-columns: minmax(0, 1fr);
  }
}
.benefit-card {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.benefit-icon {
  font-size: 2rem;
  line-height: 1;
  color: #E0C341; /* Gold icon colour */
}


/* Optional: make cards full-width on very small screens */
@media (max-width: 480px) {
  .benefit-card {
    text-align: left;
  }
}

