:root {
  --navy: #5b6883;
  --tan: #b2936f;
  --white: #ffffff;
  --max-width: 1200px;
}

* {
  box-sizing: border-box;
}

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

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--navy);
  background: var(--white);
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ---------- Content grid: logo/about on top, login/services below ---------- */

.content-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  grid-template-areas:
    "stripleft stripright"
    "brand about"
    "login services";
}

.top-accent {
  height: 18px;
}

.top-accent-left {
  grid-area: stripleft;
  background: var(--navy);
}

.top-accent-right {
  grid-area: stripright;
  background: var(--white);
}

.brand-panel {
  grid-area: brand;
  background: var(--white);
  display: flex;
  align-items: center;
  padding: 40px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  max-width: 100%;
  height: auto;
  width: 205px;
}

.about-panel {
  grid-area: about;
  background: var(--tan);
  color: var(--white);
  padding: 40px 48px;
}

.about-panel h1 {
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 14px;
  font-weight: 700;
}

.about-panel p {
  margin: 0;
  padding-right: 24px;
  font-size: 0.95rem;
}

/* ---------- Login + services ---------- */

.login-panel {
  grid-area: login;
  background: var(--navy);
  color: var(--white);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.login-panel h2 {
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin: 0 0 20px;
  font-weight: 700;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.login-form input {
  padding: 12px 14px;
  border: none;
  border-radius: 2px;
  font-size: 0.9rem;
  background: var(--white);
  color: var(--navy);
}

.login-form input::placeholder {
  color: rgba(91, 104, 131, 0.55);
}

.login-form input:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.login-form button {
  margin-top: 6px;
  padding: 13px 14px;
  border: none;
  border-radius: 2px;
  background: var(--tan);
  color: var(--white);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  cursor: not-allowed;
  opacity: 0.85;
}

.login-note {
  margin: 10px 0 0;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.75);
  font-style: italic;
}

.services-panel {
  grid-area: services;
  background: var(--white);
  padding: 40px 48px;
}

.services-panel h2 {
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  margin: 0 0 20px;
  font-weight: 700;
}

.service {
  margin-bottom: 22px;
}

.service:last-child {
  margin-bottom: 0;
}

.service h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy);
  margin: 0 0 6px;
}

.service h3::before {
  content: "\2022";
  margin-right: 8px;
  color: var(--navy);
}

.service p {
  margin: 0;
  color: var(--navy);
  font-size: 0.95rem;
  padding-right: 24px;
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--tan);
  color: var(--white);
  text-align: center;
  padding: 16px;
  font-size: 0.75rem;
}

/* ---------- Responsive ---------- */

@media (max-width: 768px) {
  .content-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "stripleft"
      "brand"
      "about"
      "services"
      "login";
  }

  .top-accent-right {
    display: none;
  }

  .brand-panel,
  .about-panel,
  .login-panel,
  .services-panel {
    padding: 28px 24px;
  }
}

@media (max-width: 480px) {
  .logo-img {
    width: 160px;
  }

  .about-panel h1,
  .services-panel h2,
  .login-panel h2 {
    font-size: 0.85rem;
  }
}
