:root {
  --bg: #f6f1e7;
  --bg-soft: #fbf8f2;
  --surface: rgba(255, 253, 248, 0.9);
  --surface-strong: #fffdfa;
  --line: rgba(10, 33, 79, 0.12);
  --line-strong: rgba(10, 33, 79, 0.18);
  --navy: #0d2d72;
  --navy-deep: #08162d;
  --gold: #d59a1e;
  --gold-soft: rgba(213, 154, 30, 0.12);
  --text: #17212d;
  --muted: #5e6875;
  --white: #fffdfa;
  --shadow: 0 28px 60px rgba(8, 22, 45, 0.08);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(213, 154, 30, 0.08), transparent 24%),
    linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 56%, #efe4d4 100%);
}

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

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

.page-shell {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
  padding: 22px 0 42px;
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(251, 248, 242, 0.9);
  backdrop-filter: blur(12px);
  box-shadow: 0 14px 32px rgba(8, 22, 45, 0.05);
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  width: min(100%, 248px);
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.86rem;
}

.site-nav a:hover,
.contact-points a:hover,
.footer-links a:hover {
  color: var(--navy);
}

.button,
.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.header-cta,
.button-primary {
  background: var(--navy);
  color: var(--white);
}

.button-secondary {
  border-color: var(--line-strong);
  background: transparent;
  color: var(--navy);
}

.hero {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 22px;
  margin-top: 24px;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-copy {
  align-self: center;
  max-width: 680px;
}

.eyebrow,
.form-eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.7rem;
  font-weight: 700;
}

.eyebrow-light {
  color: rgba(255, 253, 248, 0.76);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Fraunces", serif;
  font-weight: 600;
  line-height: 1.02;
}

h1 {
  max-width: 11.5ch;
  color: var(--navy-deep);
  font-size: clamp(2.5rem, 4.4vw, 4.1rem);
}

h2 {
  max-width: 16ch;
  color: var(--navy-deep);
  font-size: clamp(1.55rem, 2.7vw, 2.3rem);
}

h3 {
  font-size: clamp(1.08rem, 1.6vw, 1.38rem);
}

.hero-lead,
.hero-note,
.overview-copy p,
.service-card p,
.focus-card p,
.band-card p,
.contact-copy p,
.form-note,
input,
textarea {
  font-size: 0.9rem;
  line-height: 1.66;
}

.hero-lead {
  max-width: 62ch;
  margin: 22px 0 0;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-note {
  max-width: 58ch;
  margin: 22px 0 0;
  color: var(--muted);
}

.hero-panel {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(243, 235, 223, 0.8));
}

.panel-logo {
  width: min(100%, 260px);
  margin-bottom: 24px;
}

.panel-group + .panel-group {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.panel-group span,
.contact-points span,
.service-card span,
.principles span {
  display: block;
  margin-bottom: 6px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.68rem;
  font-weight: 700;
}

.panel-group strong,
.contact-points strong {
  color: var(--navy-deep);
  font-size: 0.94rem;
  line-height: 1.52;
}

.ribbon {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.ribbon-card {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--surface-strong);
  box-shadow: 0 14px 36px rgba(8, 22, 45, 0.05);
}

.ribbon-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.ribbon-card figcaption {
  padding: 14px 16px 16px;
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 600;
}

.section {
  margin-top: 20px;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: 0 16px 40px rgba(8, 22, 45, 0.05);
}

.section-dark {
  background:
    linear-gradient(135deg, rgba(8, 22, 45, 0.98), rgba(11, 28, 60, 0.96)),
    linear-gradient(180deg, rgba(213, 154, 30, 0.08), transparent);
  border-color: rgba(255, 255, 255, 0.08);
}

.section-heading {
  display: grid;
  gap: 12px;
}

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

.overview-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 24px;
  margin-top: 24px;
}

.overview-copy p {
  margin: 0 0 16px;
  color: var(--muted);
}

.principles {
  display: grid;
  gap: 14px;
}

.principles article {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
}

.principles h3 {
  color: var(--navy-deep);
}

.principles p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.62;
}

.services-grid,
.focus-grid {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

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

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

.service-card {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
}

.service-card h3 {
  margin-top: 12px;
}

.service-card p {
  margin: 12px 0 0;
  color: rgba(255, 253, 248, 0.82);
}

.focus-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
}

.focus-card h3 {
  color: var(--navy-deep);
}

.focus-card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.section-note {
  max-width: 72ch;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.64;
}

.band-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 20px;
}

.band-card {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: 0 14px 36px rgba(8, 22, 45, 0.05);
}

.band-card-dark {
  background:
    linear-gradient(135deg, rgba(13, 45, 114, 0.96), rgba(8, 22, 45, 0.96)),
    linear-gradient(180deg, rgba(213, 154, 30, 0.05), transparent);
  border-color: rgba(255, 255, 255, 0.06);
}

.band-card-dark h2,
.band-card-dark p {
  color: var(--white);
}

.band-card p {
  margin: 16px 0 0;
  color: var(--muted);
}

.contact-section {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 20px;
  align-items: start;
}

.contact-copy p {
  color: var(--muted);
}

.contact-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.contact-points article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
}

.contact-form {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.78);
}

.contact-form h3 {
  color: var(--navy-deep);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.form-grid label {
  display: grid;
  gap: 10px;
  color: var(--navy);
  font-size: 0.86rem;
  font-weight: 600;
}

.full-width {
  grid-column: 1 / -1;
}

input,
textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  font-family: inherit;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: rgba(13, 45, 114, 0.34);
  box-shadow: 0 0 0 4px rgba(13, 45, 114, 0.08);
}

input.invalid,
textarea.invalid {
  border-color: #a13c3c;
}

.form-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
}

.form-note {
  max-width: 38ch;
  margin: 0;
  color: var(--muted);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 4px 8px;
  color: var(--muted);
  font-size: 0.88rem;
}

.site-footer strong {
  display: block;
  margin-bottom: 4px;
  color: var(--navy-deep);
}

.site-footer p {
  margin: 0 0 6px;
}

.footer-links {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

@media (max-width: 1080px) {
  .hero,
  .overview-grid,
  .band-grid,
  .contact-section,
  .services-grid,
  .focus-grid,
  .ribbon {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    max-width: 560px;
  }
}

@media (max-width: 820px) {
  .page-shell {
    width: min(calc(100% - 24px), var(--container));
  }

  .site-header {
    position: static;
    flex-wrap: wrap;
    border-radius: 26px;
  }

  .site-nav {
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .hero,
  .section,
  .band-card,
  .contact-form {
    padding: 24px;
  }

  .contact-points,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .hero-actions,
  .form-footer,
  .footer-links {
    flex-direction: column;
    align-items: stretch;
  }

  .button,
  .header-cta {
    width: 100%;
  }
}
