:root {
  --bg: #ffffff;
  --text: #222222;
  --muted: #666666;
  --border: #e6e6e6;
  --accent: #ff5a1f;
  --accent-soft: rgba(255, 90, 31, 0.08);
  --radius-card: 18px;
  --shadow-soft: 0 8px 24px rgba(15, 23, 42, 0.06);
  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Helvetica Neue", Arial, sans-serif;
}

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

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

/* Layout */

.container {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 2.5rem 4vw 3.5rem;
}

section + section {
  margin-top: 3.5rem;
}

/* Header */

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid #f2f2f2;
}

.header-inner {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0 4vw;
}

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

.brand img {
  height: 66px;
  width: auto;
}

.brand-name {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #9f9f9f;   /* softer grey */
  font-weight: 500;
}


.nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  font-size: 0.92rem;
}

.nav a {
  text-decoration: none;
  color: var(--muted);
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
}

.nav a:hover {
  color: var(--text);
}

.nav a.active {
  color: var(--accent);
  border-color: var(--accent);
}

/* Nav toggle (mobile) */

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  border: none;
  background: none;
  padding: 4px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
}

/* Hero */

.hero {
  padding-top: 1.5rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 2.1fr) minmax(280px, 1.1fr);
  gap: 2.5rem;
  align-items: flex-start;
}

.hero-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.hero-heading {
  font-size: clamp(2.1rem, 3vw, 2.6rem);
  line-height: 1.1;
  margin: 0 0 1rem;
}

.hero-subheading {
  margin: 0 0 1.5rem;
  color: var(--muted);
  max-width: 44rem;
}

.hero-bullets {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.hero-bullets div span {
  display: block;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.15rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.hero-meta {
  font-size: 0.86rem;
  color: var(--muted);
}

.hero-card {
  background: #ffffff;
  border-radius: var(--radius-card);
  padding: 1.5rem 1.6rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  font-size: 0.9rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.1rem 0.6rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.6rem;
}

/* Sections */

.section-header {
  max-width: 42rem;
  margin-bottom: 1.75rem;
}

.section-header h1,
.section-header h2 {
  margin: 0 0 0.5rem;
}

.section-header h1 {
  font-size: 2rem;
}

.section-header h2 {
  font-size: 1.6rem;
}

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

/* Grids */

.three-col-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.75rem;
}

.two-col-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.75rem;
}

/* Cards */

.card-soft {
  background: #ffffff;
  border-radius: var(--radius-card);
  padding: 1.35rem 1.4rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  font-size: 0.92rem;
}

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

.card-soft h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.card-soft p {
  margin: 0 0 0.7rem;
  color: var(--muted);
}

.card-soft ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.card-soft li + li {
  margin-top: 0.25rem;
}

.small-heading {
  margin-top: 0.7rem;
  font-size: 0.85rem;
  font-weight: 600;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.25rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent);
  color: #ffffff;
}

.btn-primary:hover {
  filter: brightness(1.05);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}

.btn-outline:hover {
  background: var(--accent-soft);
}

/* Contact */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, 1fr);
  gap: 2.5rem;
}

.contact-email span {
  font-weight: 600;
}

.contact-copy {
  margin-top: 1.4rem;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.2rem;
}

.pill {
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  border: 1px solid #f0d4c5;
  background: #fff6f1;
  color: #a54614;
  font-size: 0.78rem;
}

.contact-form {
  background: #ffffff;
  border-radius: var(--radius-card);
  padding: 1.4rem 1.5rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.form-group {
  margin-bottom: 0.9rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.required {
  color: var(--accent);
}

.form-control {
  width: 100%;
  padding: 0.55rem 0.6rem;
  border-radius: 0.55rem;
  border: 1px solid #d5d5d5;
  font-family: inherit;
  font-size: 0.9rem;
}

.form-control:focus {
  outline: none;
  border-color: var(--accent);
}

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

.btn-submit {
  width: 100%;
  margin-top: 0.35rem;
}

.form-note {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 0.6rem;
}

/* Inline CTA */

.cta-inline {
  margin-top: 1.7rem;
  font-size: 0.92rem;
  color: var(--muted);
}

.cta-inline a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}

/* Footer */

.footer {
  border-top: 1px solid #f2f2f2;
  padding: 1.2rem 0 1.4rem;
  margin-top: 1rem;
}

.footer-inner {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0 4vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 1.1rem;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--accent);
}

/* Responsive */

@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-card {
    order: -1;
  }

  .three-col-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .two-col-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 720px) {
  .header-inner {
    height: 60px;
  }

  .brand-name {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav {
    position: absolute;
    inset: 60px 0 auto;
    padding: 0.8rem 4vw 1rem;
    background: rgba(255, 255, 255, 0.98);
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    border-bottom: 1px solid #f1f1f1;
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: 0.18s ease;
  }

  .nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .container {
    padding: 2rem 4vw 3rem;
  }
.about-intro {
  max-width: 820px;      /* keeps text in a nice column */
  font-size: 0.96rem;
}

.about-intro p + p {
  margin-top: 0.6rem;    /* a bit more breathing space between paragraphs */
}


}

