/* =========================
   VARIABLES
========================= */
:root {
  --blue: #1e2d64;
  --slate: #5b667a;
  --light-bg: #f5f7fb;
  --dark-bg: #111827;
  --max-width: 1200px;
  --content-width: 1100px;
  --radius: 6px;
}

/* =========================
   BASE
========================= */
body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--blue);
  line-height: 1.6;
  background: white;
}

h1,
h2,
h3,
h4 {
  font-family: "Playfair Display", serif;
  margin: 0 0 1rem 0;
  letter-spacing: -0.5px;
}

h1 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

h3 {
  font-size: 1.6rem;
}

p {
  margin-bottom: 1.2rem;
  max-width: 65ch;
  color: var(--slate);
}

/* =========================
   CONTAINERS
========================= */
.container {
  max-width: var(--content-width);
  width: 90%;
  margin: 0 auto;
}

.narrow {
  max-width: 750px;
}

.center {
  text-align: center;
}

/* =========================
   HEADER
========================= */
.site-header {
  padding: 2rem 0;
  border-bottom: 1px solid #e5e7eb;
}

.header-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.brand-sub {
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--slate);
}

/* =========================
   NAVIGATION
========================= */
.main-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
}
.main-nav a {
  color: var(--blue);
  text-decoration: none;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
.main-nav a:hover {
  color: var(--slate);
  text-decoration: underline;
}

.btn-primary {
  background: var(--blue);
  color: white;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  text-decoration: none;
  padding: 0.8rem 1.6rem;
  border-radius: var(--radius);
  -webkit-transition: background 0.2s ease;
  transition: background 0.2s ease;
}
.btn-primary:hover {
  background: var(--slate);
  color: white;
}

.btn-secondary {
  font-family: "Inter", sans-serif;
}

.btn-white {
  color: white;
  font-family: "Inter", sans-serif;
  font-size: 115%;
  position: relative;
  border: 1px solid white;
  border-radius: var(--radius);
  padding: 0.8rem 1.6rem;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.btn-white:hover {
  background: white;
  color: var(--dark-bg);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.btn-secondary.btn-white {
  display: inline-block;
  margin-top: 1rem;
}

/* =========================
   HERO
========================= */
.hero {
  padding: 6rem 0 5rem;
}

.hero h2 {
  max-width: 800px;
  font-size: clamp(2rem, 4vw, 3rem);
}

.hero p {
  font-size: 1.1rem;
  margin-top: 1rem;
}

.btn-primary {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.8rem 1.6rem;
  background: var(--blue);
  color: white;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 500;
  -webkit-transition: background 0.2s ease;
  transition: background 0.2s ease;
}

.btn-primary:hover {
  background: #14204d;
}

/* =========================
   SECTIONS
========================= */
.section {
  padding: 5rem 0;
}

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

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

.section-dark p {
  color: #d1d5db;
}

/* =========================
   GRID SYSTEM
========================= */
.two-column {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 3rem;
  margin-top: 3rem;
}

.two-column > div {
  grid-column: span 6;
}

@media (max-width: 900px) {
  .two-column > div {
    grid-column: span 12;
  }
}
/* =========================
   FOOTER
========================= */
footer {
  padding: 2rem 0;
  border-top: 1px solid #e5e7eb;
  text-align: center;
  font-size: 0.85rem;
  color: var(--slate);
}

/* ==========================
   CONTACT
========================= */
#contact-form {
  margin-top: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
#contact-form label {
  margin-top: 1.2rem;
  font-weight: 500;
}
#contact-form input,
#contact-form textarea {
  margin-top: 0.5rem;
  padding: 0.8rem;
  font-size: 1rem;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-family: "Inter", sans-serif;
  -webkit-transition: border 0.2s ease;
  transition: border 0.2s ease;
}
#contact-form input:focus,
#contact-form textarea:focus {
  outline: none;
  border-color: var(--blue);
}
#contact-form button {
  margin-top: 2rem;
  -ms-flex-item-align: start;
      align-self: flex-start;
}/*# sourceMappingURL=styles.css.map */