:root {
  --accent: #fe5400;
  --dark: #0a0a0a;
  --light-bg: #f6f6f6;
  --text: #333333;
  --white: #ffffff;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
}

h1, h2, h3, h4, h5 {
  font-family: "Nunito Sans", "Open Sans", Arial, sans-serif;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.25;
}

h1 { font-size: 2.75rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.375rem; }

p {
  margin-bottom: 1.25rem;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 5%;
}

/* Header */
.site-header {
  background: var(--white);
  padding: 1.5rem 0;
  border-bottom: 1px solid #eaeaea;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header .logo img {
  height: 36px;
  width: auto;
}

.site-nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.site-nav a {
  color: var(--dark);
}

.site-nav a[aria-current="page"] {
  color: var(--accent);
}

/* Hero / sections */
.section {
  padding: 5% 0;
}

.section--dark {
  background: var(--dark);
  color: var(--white);
}

.section--dark h1,
.section--dark h2,
.section--dark h3 {
  color: var(--white);
}

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

.section--bg-image {
  background-size: cover;
  background-position: center;
  color: var(--white);
}

.section--bg-image h1,
.section--bg-image h2,
.section--bg-image h3 {
  color: var(--white);
}

/* Overrides section--dark/section--bg-image's white text for sections that
   should keep dark text (matches the original site's text_color="dark" rows) */
.section--text-dark,
.section--text-dark h1,
.section--text-dark h2,
.section--text-dark h3 {
  color: var(--text);
}

.section--center {
  text-align: center;
}

.section--center .lede {
  max-width: 750px;
  margin: 0 auto 1.5rem;
}

/* Buttons */
.btn {
  display: inline-block;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 1rem 2.25rem;
  border-radius: 2px;
  background: var(--accent);
  color: var(--white) !important;
  text-decoration: none !important;
}

.btn:hover {
  opacity: 0.9;
}

/* Feature columns */
.columns {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
}

.columns .col {
  flex: 1 1 260px;
}

.columns .col h4 {
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.split {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2.5rem;
}

.split > * {
  flex: 1 1 400px;
}

/* Testimonial */
.testimonial {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.testimonial blockquote p {
  font-size: 1.375rem;
  font-style: italic;
  margin-bottom: 1rem;
}

.testimonial .name {
  display: block;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 700;
}

.testimonial .title {
  display: block;
  font-family: "Playfair Display", serif;
  color: #777;
  font-size: 0.9rem;
}

/* Footer */
.site-footer {
  background: var(--dark);
  color: #ccc;
  font-size: 0.9rem;
}

.site-footer .footer-widgets {
  padding: 3rem 0;
  border-bottom: 1px solid #222;
}

.site-footer .footer-widgets .container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.site-footer .footer-widgets .col {
  flex: 1 1 220px;
}

.site-footer h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.site-footer a {
  color: #ccc;
}

.site-footer .copyright {
  padding: 1.25rem 0;
}

.site-footer .copyright .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* Utility */
.text-center { text-align: center; }

@media (max-width: 700px) {
  .site-header .container {
    flex-direction: column;
    gap: 1rem;
  }
  .site-nav ul {
    gap: 1.25rem;
  }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
}
