/* Kindred Supply — Design System
   Navy · White · Black · Gold */

:root {
  --navy-900: #0a1628;
  --navy-800: #0f2140;
  --navy-700: #152d52;
  --navy-600: #1c3a66;
  --gold-500: #c9a227;
  --gold-400: #d4b44a;
  --gold-300: #e0c76e;
  --white: #ffffff;
  --off-white: #f7f8fa;
  --gray-100: #eef0f4;
  --gray-300: #c5cad3;
  --gray-500: #6b7280;
  --gray-700: #374151;
  --black: #0d0d0d;

  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-logo: "Marcellus", Georgia, "Times New Roman", serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;

  --shadow-sm: 0 1px 3px rgba(10, 22, 40, 0.08);
  --shadow-md: 0 8px 30px rgba(10, 22, 40, 0.12);
  --shadow-lg: 0 20px 50px rgba(10, 22, 40, 0.18);

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;

  --header-height: 72px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 1rem);
}

.section-header {
  scroll-margin-top: calc(var(--header-height) + 1rem);
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--gray-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

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

.container {
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
}

/* Header */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-height);
  background: rgba(10, 22, 40, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 162, 39, 0.2);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

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

.logo-mark {
  display: block;
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-logo);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.site-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--gold-400);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--gold-400);
  border-radius: 1px;
  transition: transform 0.25s, opacity 0.25s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  background:
    linear-gradient(160deg, var(--navy-900) 0%, var(--navy-700) 55%, var(--navy-800) 100%);
  background-image: url("../assets/hero-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(10, 22, 40, 0.99) 0%, rgba(10, 22, 40, 0.95) 42%, rgba(10, 22, 40, 0.82) 68%, rgba(10, 22, 40, 0.72) 100%);
  pointer-events: none;
}

.hero-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--gold-500) 20%, var(--gold-400) 50%, var(--gold-500) 80%, transparent);
}

.hero-content {
  position: relative;
  padding-block: 5rem 6rem;
  max-width: 720px;
}

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 1.25rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 3.75rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 1.5rem;
  text-wrap: balance;
}

.hero-lead {
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 2.5rem;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--navy-900);
  border-color: var(--gold-500);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-300), var(--gold-400));
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}

.btn-outline:hover {
  border-color: var(--gold-400);
  color: var(--gold-400);
}

.hero .btn-outline {
  background: rgba(10, 22, 40, 0.55);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(6px);
}

.hero .btn-outline:hover {
  background: rgba(10, 22, 40, 0.72);
  border-color: var(--gold-400);
  color: var(--white);
}

.btn-full {
  width: 100%;
}

/* Sections */

.section {
  padding-block: 5.5rem;
}

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

.section-navy {
  background: var(--navy-800);
  color: rgba(255, 255, 255, 0.85);
}

.section-dark {
  background: var(--black);
  color: rgba(255, 255, 255, 0.85);
}

.section-header {
  margin-bottom: 3rem;
  max-width: 640px;
}

.section-header-center {
  margin-inline: auto;
  text-align: center;
}

.section-label {
  display: inline-block;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 0.75rem;
}

.section-navy .section-label,
.section-dark .section-label {
  color: var(--gold-400);
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.875rem, 3.5vw, 2.5rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--navy-900);
  margin-bottom: 1rem;
}

.section-navy .section-header h2,
.section-dark .section-header h2 {
  color: var(--white);
}

#about .section-header h2,
#services .section-header h2 {
  width: fit-content;
  max-width: 100%;
}

#about .section-header h2::after,
#services .section-header h2::after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  margin-top: 1.25rem;
  background: var(--gold-500);
  border-radius: 2px;
}

.section-intro {
  font-size: 1.0625rem;
  color: var(--gray-500);
  max-width: 560px;
}

.section-header-center .section-intro {
  margin-inline: auto;
}

.section-navy .section-intro,
.section-dark .section-intro {
  color: rgba(255, 255, 255, 0.65);
}

/* About */

#about,
#services,
#values,
#partnerships,
#contact {
  min-height: 100dvh;
  scroll-margin-top: 0;
  box-sizing: border-box;
}

#about,
#services {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: calc(var(--header-height) + 3.25rem);
  padding-bottom: 0;
}

#about {
  padding-top: calc(var(--header-height) + 3.5rem);
}

#services {
  padding-top: calc(var(--header-height) + 4.5rem);
}

#about .section-header h2 {
  text-wrap: balance;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: start;
}

.about-copy p + p {
  margin-top: 1.25rem;
}

.about-aside {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.stat-card {
  padding: 1.25rem 1.5rem;
  background: var(--off-white);
  border-left: 3px solid var(--gold-500);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.stat-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 0.35rem;
}

.stat-value {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy-800);
}

.stat-note {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.8125rem;
  color: var(--gray-500);
}

/* Values */

#values {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100dvh;
  padding-top: calc(var(--header-height) + 1.5rem);
  padding-bottom: 3rem;
  box-sizing: border-box;
  overflow: hidden;
  background-image: url("../assets/values-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.values-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 22, 40, 0.97) 0%, rgba(10, 22, 40, 0.9) 45%, rgba(10, 22, 40, 0.95) 100%);
  pointer-events: none;
}

#values > .container {
  position: relative;
  z-index: 1;
}

#values .section-header {
  margin-bottom: 2.5rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.value-card {
  padding: 1.75rem 1.5rem;
  background: rgba(10, 22, 40, 0.55);
  border: 1px solid rgba(201, 162, 39, 0.2);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(8px);
  transition: border-color 0.25s, transform 0.25s;
}

.value-card:hover {
  border-color: rgba(201, 162, 39, 0.45);
  transform: translateY(-3px);
}

.value-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 1.25rem;
  color: var(--gold-400);
}

.value-icon svg {
  width: 100%;
  height: 100%;
}

.value-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.value-card p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
}

/* Services */

.services-layout,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 3rem;
}

.services-layout {
  align-items: start;
}

.contact-grid {
  align-items: start;
}

.services-copy p {
  margin-bottom: 1.5rem;
  max-width: 100%;
  font-size: 0.9375rem;
  line-height: 1.5;
  text-wrap: pretty;
  text-wrap: balance;
}

@media (min-width: 480px) {
  #services .services-copy p {
    font-size: 1rem;
    line-height: 1.55;
  }
}

@media (min-width: 901px) {
  .services-copy p {
    max-width: 34rem;
    font-size: 1.0625rem;
    line-height: 1.58;
  }

  .services-list {
    max-width: 34rem;
  }

  .about-copy p {
    max-width: 34rem;
  }
}

.services-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.services-list li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.9375rem;
}

.services-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  background: var(--gold-500);
  border-radius: 1px;
  transform: rotate(45deg);
}

.category-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.category-card:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

.category-card {
  padding: 1.5rem;
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  border-top: 3px solid var(--gold-500);
  border-radius: var(--radius-md);
}

.category-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy-800);
  margin-bottom: 0.5rem;
}

.category-card p {
  font-size: 0.9rem;
  color: var(--gray-500);
}

/* Partnerships */

#partnerships {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100dvh;
  padding-top: var(--header-height);
  padding-bottom: 0;
  box-sizing: border-box;
}

#partnerships .section-header {
  margin-bottom: 1.75rem;
}

#partnerships .section-header h2 {
  margin-bottom: 1rem;
}

#partnerships .section-label {
  margin-bottom: 1rem;
}

#partnerships .section-intro {
  font-size: 0.9375rem;
  line-height: 1.65;
  max-width: 34rem;
}

.partnership-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
  max-width: 40rem;
  margin-inline: auto;
  text-align: center;
}

.distribution-partners {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.distribution-partners-label {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 0.875rem;
}

.partner-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.625rem 0;
}

.partner-list li {
  font-family: var(--font-display);
  font-size: clamp(1.125rem, 2.2vw, 1.375rem);
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--white);
  padding: 0 1.25rem;
  position: relative;
}

.partner-list li + li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 1.125rem;
  background: rgba(201, 162, 39, 0.45);
}

.partnership-quote {
  margin: 0 auto;
  max-width: 34rem;
  padding: 0 0 0 1.25rem;
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 3px solid var(--gold-500);
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.1875rem;
  font-style: italic;
  font-weight: 500;
  line-height: 1.5;
  color: var(--gold-300);
}

/* Contact */

#contact {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100dvh;
  max-height: 100dvh;
  padding-top: calc(var(--header-height) + 0.75rem);
  padding-bottom: 0.75rem;
  box-sizing: border-box;
  overflow: hidden;
}

#contact > .container {
  display: flex;
  flex-direction: column;
  gap: 4.5rem;
  max-height: 100%;
  overflow-y: auto;
  scrollbar-width: thin;
}

#contact .section-header {
  margin-bottom: 0;
  flex-shrink: 0;
}

#contact .section-header h2 {
  margin-bottom: 1.375rem;
}

#contact .section-intro {
  max-width: 36.85rem;
  font-size: 1.0625rem;
  line-height: 1.32;
  text-wrap: pretty;
}

#contact .contact-grid {
  align-items: start;
  flex-shrink: 1;
  min-height: 0;
  margin-top: 0.25rem;
}

#contact .contact-left {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  padding-left: 4.5rem;
  align-self: start;
}

#contact .contact-details {
  gap: 1rem;
  padding-top: 0;
  padding-left: 0;
  margin-left: 0;
  width: auto;
  max-width: 100%;
}

#contact .contact-notes {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-100);
}

#contact .contact-notes .contact-item span:not(.contact-label) {
  font-size: 0.9375rem;
  line-height: 1.45;
  color: var(--gray-700);
}

#contact .contact-form {
  padding: 1rem;
}

#contact .form-row {
  margin-bottom: 0.5rem;
}

#contact .form-row:last-of-type {
  margin-bottom: 0.625rem;
}

#contact .form-row label {
  margin-bottom: 0.25rem;
  font-size: 0.75rem;
}

#contact .form-row input,
#contact .form-row textarea {
  padding: 0.5rem 0.75rem;
  font-size: 0.9375rem;
}

#contact .form-row textarea {
  min-height: 2.75rem;
}

#contact .btn {
  padding: 0.55rem 1rem;
  font-size: 0.875rem;
}

.contact-left {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-left: 4.5rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-top: 0.5rem;
}

.contact-notes {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-100);
}

.contact-notes .contact-item span:not(.contact-label) {
  font-size: 0.9375rem;
  line-height: 1.45;
  color: var(--gray-700);
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.contact-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-500);
}

.contact-item a {
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--navy-700);
  transition: color 0.2s;
}

.contact-item a:hover {
  color: var(--gold-500);
}

.contact-item span:not(.contact-label) {
  font-size: 1.0625rem;
  color: var(--navy-800);
}

.contact-form {
  padding: 2rem;
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.form-row {
  margin-bottom: 1.25rem;
}

.form-row label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gray-700);
  margin-bottom: 0.5rem;
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--black);
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-sm);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.15);
}

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

.form-honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

/* Footer */

.site-footer {
  background: var(--navy-900);
  border-top: 1px solid rgba(201, 162, 39, 0.2);
  padding-block: 2.5rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.5rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.footer-logo .logo-mark {
  width: 40px;
  height: 40px;
}

.footer-brand .logo-text {
  font-size: 1.15rem;
  letter-spacing: 0.06em;
}

.footer-brand p {
  margin-top: 0.35rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.06em;
}

.footer-nav {
  display: flex;
  gap: 1.75rem;
}

.footer-nav a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: var(--gold-400);
}

.footer-copy {
  text-align: right;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

/* Responsive */

@media (min-width: 769px) {
  .section {
    padding-block: 4rem;
  }

  .section-header {
    margin-bottom: 2rem;
  }

  #about .section-header,
  #services .section-header {
    margin-bottom: 2rem;
  }

  #values .section-header {
    margin-bottom: 2rem;
  }

  #partnerships .section-label,
  #partnerships .section-header h2 {
    margin-bottom: 1rem;
  }

  #contact > .container {
    gap: 5rem;
  }

  #contact .section-intro {
    font-size: 1.0625rem;
    line-height: 1.32;
    max-width: 36.85rem;
  }
}

@media (min-width: 769px) and (max-height: 920px) {
  .section {
    padding-block: 2.75rem;
  }

  .section-header {
    margin-bottom: 1.5rem;
  }

  #contact {
    padding-top: calc(var(--header-height) + 0.625rem);
    padding-bottom: 0.625rem;
  }

  #contact > .container {
    gap: 3.75rem;
  }

  #contact .contact-left {
    gap: 1.25rem;
  }

  #contact .contact-notes {
    padding-top: 1.25rem;
  }

  #contact .section-intro {
    font-size: 0.9375rem;
    line-height: 1.32;
    max-width: 34.75rem;
  }

  #contact .section-header h2 {
    font-size: clamp(1.625rem, 2.8vw, 2.25rem);
  }

  #contact .contact-details {
    gap: 1rem;
  }

  #contact .contact-form {
    padding: 0.875rem;
  }

  #contact .form-row {
    margin-bottom: 0.4rem;
  }

  #contact .form-row:last-of-type {
    margin-bottom: 0.5rem;
  }

  #contact .form-row textarea {
    min-height: 2.5rem;
  }

  .value-card {
    padding: 1.35rem 1.25rem;
  }

  .values-grid {
    gap: 1.25rem;
  }
}

@media (max-width: 900px) {
  .about-grid,
  .services-layout,
  .contact-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .partner-list {
    flex-direction: column;
    gap: 0.75rem;
  }

  .partner-list li {
    padding: 0;
  }

  .partner-list li + li::before {
    display: none;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-nav {
    justify-content: center;
    flex-wrap: wrap;
  }

  .footer-copy {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
    align-items: center;
  }

  .nav-toggle span {
    width: 100%;
    min-width: 22px;
  }

  .site-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--navy-900);
    border-bottom: 1px solid rgba(201, 162, 39, 0.2);
    padding: 1rem 0;
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s, opacity 0.3s;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    display: block;
    padding: 0.875rem 1.25rem;
    width: 100%;
    text-align: center;
  }

  .hero-content {
    padding-block: 3.5rem 4.5rem;
  }

  .section {
    padding-block: 4rem;
  }

  #about,
  #services {
    min-height: auto;
    padding-top: calc(var(--header-height) + 2.5rem);
    padding-bottom: 4rem;
  }

  #partnerships {
    justify-content: flex-start;
    padding-top: calc(var(--header-height) + 1.5rem);
    padding-bottom: 2.5rem;
  }

  #values {
    justify-content: flex-start;
    min-height: auto;
    padding-top: calc(var(--header-height) + 2.5rem);
    padding-bottom: 3rem;
  }

  #values .section-header {
    margin-bottom: 0.875rem;
  }

  #values .section-label {
    margin-bottom: 0.5rem;
  }

  #values .section-header h2 {
    margin-bottom: 0.625rem;
  }

  #values .section-intro {
    font-size: 0.875rem;
    line-height: 1.5;
  }

  #values .values-grid {
    gap: 0.75rem;
  }

  #values .value-card {
    padding: 0.9rem 1rem;
  }

  #values .value-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 0.625rem;
  }

  #values .value-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
  }

  #values .value-card p {
    font-size: 0.8125rem;
    line-height: 1.5;
  }

  #contact {
    padding-top: calc(var(--header-height) + 0.5rem);
    padding-bottom: 0.5rem;
  }

  #contact > .container {
    gap: 2.25rem;
  }

  #contact .section-header {
    margin-bottom: 0;
  }

  #contact .section-header h2 {
    margin-bottom: 0.875rem;
  }

  #contact .section-label {
    margin-bottom: 0.5rem;
  }

  #contact .section-intro {
    font-size: 0.875rem;
    line-height: 1.32;
    max-width: 32rem;
  }

  #contact .contact-grid {
    gap: 0.875rem;
    margin-top: 0;
  }

  #contact .contact-left {
    padding-left: 0;
    gap: 1rem;
    align-items: center;
  }

  #contact .contact-details {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
    padding-top: 0;
    margin-left: 0;
    width: 100%;
  }

  #contact .contact-details .contact-item {
    align-items: center;
  }

  #contact .contact-notes {
    width: 100%;
    padding-top: 1rem;
    gap: 0.625rem;
    text-align: center;
    align-items: center;
  }

  #contact .contact-notes .contact-item {
    align-items: center;
  }

  #contact .contact-item {
    gap: 0.2rem;
  }

  #contact .contact-label {
    font-size: 0.625rem;
  }

  #contact .contact-item a,
  #contact .contact-item span:not(.contact-label) {
    font-size: 0.8125rem;
  }

  #contact .contact-form {
    padding: 0.875rem;
  }

  #contact .form-row {
    margin-bottom: 0.4rem;
  }

  #contact .form-row:last-of-type {
    margin-bottom: 0.5rem;
  }

  #contact .form-row textarea {
    min-height: 2.5rem;
  }

  #contact .btn {
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
  }
}

@media (max-width: 480px) {
  .values-grid {
    gap: 1.25rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}
