/*  Reset  */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/*  Tokens  */
:root {
  --navy:      #1a2340;
  --navy-dark: #12192e;
  --navy-mid:  #2e3d5a;
  --terracotta:#DB7C5C;
  --terra-light: #fdf0e8;
  --terra-pale:  #f5d5c3;
  --white:     #ffffff;
  --offwhite:  #e9eaec;
  --text-body: #5a6a82;
  --text-muted:#6b7a91;
  --border:    #dde2ea;
  --font: system-ui, -apple-system, "Segoe UI", sans-serif;
}

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--navy);
  /* display: flex; */
  /* flex-direction: column; */
  /* min-height: 100vh; */
  background-color: var(--navy-dark);
}

/*  Nav  */
.nav {
  background: var(--navy-dark);
  padding: 5% 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  border-bottom: 4px solid var(--terracotta);
}

.stc-logo {
  font-size: 20px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.04em;
  text-decoration: none;
}

.stc-logo span {
  color: var(--terracotta);
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
}

.nav-link {
  color: #b0bac8;
  text-decoration: none;
  font-size: 14px;
  margin-left: 2rem;
  transition: color 0.15s;
}

.nav-link:hover {
  color: var(--white);
}

.nav-cta {
  background: var(--terracotta);
  color: var(--white);
  border: none;
  padding: 8px 20px;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  margin-left: 2rem;
  font-family: var(--font);
  text-decoration: none;
  display: inline-block;
}

.nav-cta:hover {
  background: #C46F52;
}

/* Forms */ 

.form-submit {
  background: var(--terracotta);
  color: var(--white);
  border: none;
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 450;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

.form-submit:hover {
  background: #C46F52;
}

.form-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 0.5rem;
}

/*  Hero  */
.hero {
  background: var(--navy);
  padding: 5rem 2.5rem 4.5rem;
  position: relative;
  overflow: hidden;
}

.hero-bg-circle {
  position: absolute;
  right: -100px;
  top: -180px;
  width: 550px;
  height: 550px;
  border-radius: 75%;
  border: 4px solid var(--navy-mid);
  pointer-events: none;
  transform: rotate(90);
}

.hero-bg-circle2 {
  position: absolute;
  right: -80px;
  top: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 2px solid var(--navy-mid);
  pointer-events: none;
}

.hero-bg-circle3 {
  position: absolute;
  right: 40px;
  top: 40px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 1px solid var(--navy-mid);
  pointer-events: none;
}

.hero-accent-bar {
  width: 48px;
  height: 4px;
  background: var(--terracotta);
  border-radius: 2px;
  margin-bottom: 1.25rem;
}

.hero h1 {
  font-size: 42px;
  font-weight: 500;
  color: var(--white);
  line-height: 1.2;
  max-width: 560px;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 17px;
  color: #8fa0b8;
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 2rem;
}


/*  Shared section helpers ─ */
.section-eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: 28px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.section-sub {
  font-size: 15px;
  color: var(--text-body);
  margin-bottom: 2.5rem;
  line-height: 1.6;
  max-width: 560px;
}

/*  Services ─ */
.services {
  padding: 4.5rem 2.5rem;
  background: var(--offwhite);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.service-card {
  background: var(--white);
  border: 0.5px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem 1.25rem;
}

.service-icon {
  width: 40px;
  height: 40px;
  background: var(--terra-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--terracotta);
  font-size: 20px;
}

.service-card h3 {
  font-size: 15px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.service-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Main Content */
.about, .main {
  padding: 4.5rem 2.5rem;
  background: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.main-center {
  padding: 4.5rem 2.5rem;
  gap: 3rem;
  background: var(--white);
  display: flex;
  flex-direction: column;
}

.main-left h2 {
  font-size: 28px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 1rem;
}

.main-left p {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.about-stats {
  display: flex;
  gap: 2rem;
  margin-top: 1.5rem;
}

.about-stat-num {
  font-size: 30px;
  font-weight: 500;
  color: var(--terracotta);
}

.about-stat-label {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 2px;
}

.about-right {
  background: var(--navy);
  border-radius: 16px;
  padding: 2rem;
}

.about-right-quote {
  font-size: 15px;
  color: var(--terra-light);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.about-right-quote a {
  text-decoration: none;
  color: var(--terracotta);
  font-weight: 400;
  font-style: italic;
}

.about-right-quote a:hover {
  color: var(--terracotta);
  text-decoration: underline;

}

/* Contact */

.form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 18px 40px rgba(26, 35, 64, 0.08);
  width: 75%;
  max-width: 700px;
  margin: 0 auto;
}

.form .form-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.form label {
  color: var(--navy-dark);
  font-weight: 600;
}

.form input,
.form textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  background: var(--white);
  color: var(--navy-dark);
  font: inherit;
  box-sizing: border-box;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form input:focus,
.form textarea:focus {
  border-color: var(--terracotta);
  box-shadow: 0 0 0 4px rgba(219, 124, 92, 0.18);
  outline: none;
}

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

.form input::placeholder,
.form textarea::placeholder {
  color: var(--border);
}


.form #name2 {
  height: 0px;
  overflow: hidden;
}

/*  CTA strip  */
.cta-strip {
  background: var(--terracotta);
  padding: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.cta-strip h3 {
  font-size: 20px;
  font-weight: 500;
  color: var(--navy-dark);
}

.cta-strip p {
  font-size: 14px;
  color: var(--terra-pale);
  margin-top: 2px;
}

.cta-strip-btn {
  background: var(--white);
  color: var(--navy);
  border: none;
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  font-family: var(--font);
  text-decoration: none;
  display: inline-block;
  white-space: nowrap;
}

.cta-strip-btn:hover {
  background: var(--offwhite);
}

/*  Footer  */
.footer {
  background: var(--navy-dark);
  padding: 5% 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  font-size: large;
}

.footer-copy {
  font-size: 12px;
  color: #4a5a72;
}

/*  Responsive ─ */
@media (max-width: 768px) {
  .about, .contact, .main {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 28px;
  }

  .nav {
    padding: 0 1.25rem;
  }

  .hero,
  .services,
  .about,
  .contact,
  .main,
  .cta-strip,
  .footer {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .about-stats {
    gap: 1.25rem;
  }

  .hero-btn-ghost {
    margin-left: 0;
    margin-top: 12px;
    display: inline-block;
  }
}
