/* ==========================================================================
   Ralfort — brand variables
   ========================================================================== */
:root {
  --ink: #071d3b;          /* base navy background, everywhere */
  --ink-2: #0a2547;        /* mid navy, gradients */
  --ink-card: #0f2b4d;     /* card / panel background */
  --ink-card-2: #14335c;   /* nav pill, avatar backgrounds */
  --emerald: #4f8155;      /* primary accent, headings, key UI */
  --mint: #A8E8CF;         /* light accent, links, small text on dark */
  --brass: #C9A227;        /* CTA buttons, hover states, highlights */
  --paper: #FAF9F4;        /* bright text (h1, quotes) on dark */
  --text-soft: rgba(250, 249, 244, 0.82); /* body copy on dark */

  --card-border: rgba(168, 232, 207, 0.16);
  --ink-line: rgba(168, 232, 207, 0.22);

  --glow-emerald: rgba(79, 129, 85, 0.55);
  --glow-brass: rgba(201, 162, 39, 0.5);
  --glow-mint: rgba(168, 232, 207, 0.4);

  --pattern: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240' viewBox='0 0 240 240'%3E%3Cg fill='none' stroke='%23C9A227' stroke-width='0.75' opacity='0.5'%3E%3Cpath d='M0 60 L80 20 L160 70 L240 30'/%3E%3Cpath d='M0 150 L70 190 L150 140 L240 180'/%3E%3Cpath d='M30 0 L60 90 L20 170 L50 240'/%3E%3Cpath d='M180 0 L150 100 L200 170 L170 240'/%3E%3Ccircle cx='80' cy='20' r='2.5'/%3E%3Ccircle cx='160' cy='70' r='2.5'/%3E%3Ccircle cx='70' cy='190' r='2.5'/%3E%3Ccircle cx='150' cy='140' r='2.5'/%3E%3Ccircle cx='60' cy='90' r='2.5'/%3E%3Ccircle cx='150' cy='100' r='2.5'/%3E%3C/g%3E%3C/svg%3E");

  --max-width: 72rem;
}

/* ==========================================================================
   Self-hosted fonts — no requests to Google Fonts at runtime
   ========================================================================== */
@font-face {
  font-family: "Cormorant";
  src: url("assets/fonts/cormorant-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "EB Garamond";
  src: url("assets/fonts/ebgaramond-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "EB Garamond";
  src: url("assets/fonts/ebgaramond-400italic.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "EB Garamond";
  src: url("assets/fonts/ebgaramond-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* ==========================================================================
   Reset
   ========================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

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

ul {
  margin: 0;
  padding: 0;
}

/* ==========================================================================
   Base — dark theme throughout, no light sections
   ========================================================================== */
body {
  font-family: Inter, Arial, Helvetica, sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-soft);
  background: var(--ink);
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: var(--pattern);
  background-size: 420px 420px;
  opacity: 0.12;
}

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 1;
}

h1, h2, h3, h4,
.wordmark {
  font-family: "Cormorant", Georgia, "Times New Roman", serif;
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.5em;
  letter-spacing: 0.01em;
  color: var(--emerald);
}

h1 { font-size: clamp(2.75rem, 7vw, 5.5rem); }
h2 { font-size: clamp(2.5rem, 5vw, 4rem); }
h3 { font-size: 1.5rem; }

h2, h3 {
  text-align: center;
}

p {
  margin: 0 0 1.25em;
}

a {
  color: var(--mint);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.15em;
}

a:hover {
  color: var(--brass);
}

/* Visible focus state everywhere */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 3px;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ==========================================================================
   Skip link
   ========================================================================== */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--paper);
  color: var(--ink);
  padding: 0.75em 1.25em;
  z-index: 100;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* ==========================================================================
   Header / nav — pill nav bar, centred
   ========================================================================== */
.site-header {
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--ink);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  color: var(--mint);
  justify-self: start;
}

.brand img {
  width: 2.5rem;
  height: 2.5rem;
}

.wordmark {
  font-size: 1.6rem;
  letter-spacing: 0.07em;
  margin: 0;
  color: var(--mint);
}

.main-nav {
  justify-self: center;
}

.main-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  background: rgba(168, 232, 207, 0.05);
  border: 1px solid var(--card-border);
  border-radius: 999px;
  padding: 0.4rem;
}

.main-nav a {
  display: inline-block;
  color: var(--mint);
  text-decoration: none;
  font-size: 1rem;
  letter-spacing: 0.01em;
  padding: 0.55em 1.1em;
  border-radius: 999px;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  background: rgba(168, 232, 207, 0.1);
  color: var(--paper);
}

.btn-nav-cta {
  padding: 0.6em 1.5em;
  font-size: 0.95rem;
  white-space: nowrap;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  justify-self: end;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  flex-shrink: 0;
  background: rgba(168, 232, 207, 0.05);
  border: 1px solid var(--card-border);
  border-radius: 999px;
  cursor: pointer;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  background: rgba(168, 232, 207, 0.1);
  border-color: var(--mint);
}

.nav-toggle-bar {
  display: block;
  width: 1.15rem;
  height: 2px;
  border-radius: 2px;
  background: var(--mint);
  transition: transform 0.15s ease, opacity 0.15s ease;
}

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

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

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

/* ==========================================================================
   Hero — centred, stacked, full atmosphere
   ========================================================================== */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 7rem 0 5rem;
  background:
    radial-gradient(ellipse 55% 45% at 18% 8%, rgba(79, 129, 85, 0.32), transparent 62%),
    radial-gradient(ellipse 50% 45% at 85% 92%, rgba(201, 162, 39, 0.24), transparent 60%),
    linear-gradient(160deg, #0a2547 0%, var(--ink) 55%, #05132a 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: var(--pattern);
  background-size: 420px 420px;
  opacity: 0.32;
  pointer-events: none;
}

.hero-wolf {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 66%;
  transform: translate(-50%, -50%);
  height: min(99vh, 950px);
  width: auto;
  max-width: none;
  opacity: 0.67;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 66rem;
  margin: 0 auto;
}

.status-line {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mint);
  background: rgba(168, 232, 207, 0.08);
  border: 1px solid var(--ink-line);
  border-radius: 999px;
  padding: 0.5em 1.1em;
  margin-bottom: 2rem;
}

.status-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--mint);
  flex-shrink: 0;
}

.hero h1 {
  color: var(--paper);
}

.hero-subhead {
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  line-height: 1.6;
  color: var(--text-soft);
  max-width: 46ch;
  margin: 0 0 2rem;
}

.hero-footnote {
  font-size: 1rem;
  color: var(--mint);
  margin: 2rem 0 0;
}

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

.hero-logo-wrap {
  position: relative;
  margin-bottom: 2.5rem;
}

.hero-logo-wrap::before {
  content: "";
  position: absolute;
  inset: -50px;
  background: radial-gradient(circle at 50% 45%, var(--glow-emerald), transparent 68%);
  filter: blur(36px);
  z-index: 0;
}

.hero-logo-frame {
  position: relative;
  z-index: 1;
  width: min(50vw, 340px);
  aspect-ratio: 1 / 1;
  background: var(--ink);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.55);
  margin: 0 auto;
}

.hero-logo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==========================================================================
   Page hero — shorter intro band for secondary pages
   ========================================================================== */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 4.5rem 0 5rem;
  background:
    radial-gradient(ellipse 55% 45% at 18% 8%, rgba(79, 129, 85, 0.28), transparent 62%),
    radial-gradient(ellipse 50% 45% at 85% 92%, rgba(201, 162, 39, 0.2), transparent 60%),
    linear-gradient(160deg, #0a2547 0%, var(--ink) 55%, #05132a 100%);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: var(--pattern);
  background-size: 420px 420px;
  opacity: 0.32;
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 50rem;
  margin: 0 auto;
}

.page-hero h1 {
  color: var(--paper);
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin: 0;
}

/* ==========================================================================
   Buttons — pill, soft glow
   ========================================================================== */
.btn {
  display: inline-block;
  padding: 0.9em 1.9em;
  font-family: Inter, Arial, Helvetica, sans-serif;
  font-size: 1.1rem;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 999px;
  transition: background-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}

.btn-primary {
  background: var(--brass);
  color: var(--ink);
  border-color: var(--brass);
  font-weight: 600;
  box-shadow: 0 0 0 1px rgba(201, 162, 39, 0.3), 0 10px 28px -10px rgba(201, 162, 39, 0.6);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: transparent;
  color: var(--brass);
  box-shadow: 0 0 0 1px rgba(201, 162, 39, 0.6), 0 0 26px rgba(201, 162, 39, 0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--paper);
  border-color: var(--ink-line);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: rgba(168, 232, 207, 0.08);
  color: var(--mint);
  border-color: var(--mint);
}

/* ==========================================================================
   Sections + section-head pattern
   ========================================================================== */
section {
  padding: 6.5rem 0;
  position: relative;
}

.section-head {
  margin-bottom: 3.5rem;
}

.section-head-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.section-head-top .eyebrow {
  margin-bottom: 0;
}

.section-head h2 {
  margin: 0 auto;
  max-width: 18ch;
}

.section-head h2.heading-wide {
  max-width: 26ch;
}

.section-support {
  max-width: 34ch;
  text-align: right;
  color: var(--text-soft);
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.55;
}

.section-head--center {
  text-align: center;
  max-width: 46rem;
  margin-left: auto;
  margin-right: auto;
}

.section-support--center {
  text-align: center;
  max-width: 54ch;
  margin: 1rem auto 0;
}

.eyebrow {
  display: block;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 0.75rem;
}

/* ==========================================================================
   Feature cards
   ========================================================================== */
.cards {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.card {
  background: var(--ink-card);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(168, 232, 207, 0.32);
}

.card-visual {
  position: relative;
  height: 190px;
  background-image: var(--pattern);
  background-size: 240px 240px;
}

.card-visual--glow-emerald {
  background-image: var(--pattern), radial-gradient(circle at 30% 30%, var(--glow-emerald), transparent 65%);
  background-size: 240px 240px, 100% 100%;
}

.card-visual--glow-brass {
  background-image: var(--pattern), radial-gradient(circle at 70% 30%, var(--glow-brass), transparent 65%);
  background-size: 240px 240px, 100% 100%;
}

.card-visual--glow-mint {
  background-image: var(--pattern), radial-gradient(circle at 50% 35%, var(--glow-mint), transparent 65%);
  background-size: 240px 240px, 100% 100%;
}

.card-visual--wolf::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("assets/brand/wolf-silhouette-pack/wolf-hero-bg-mint-12.png");
  background-position: right -30px bottom -40px;
  background-size: 220px auto;
  background-repeat: no-repeat;
}

.card-panel {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--card-border);
  padding: 2rem 2rem 2.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-panel h3 {
  margin-bottom: 0.6rem;
}

.card-panel > p {
  color: var(--text-soft);
  font-weight: 500;
  flex: 1;
}

.card-panel ul {
  list-style: none;
  margin-top: 1.5rem;
}

.card-panel li {
  padding: 0.55em 0;
  border-top: 1px solid var(--card-border);
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 500;
  color: var(--text-soft);
}

.card-panel li:first-child {
  border-top: none;
}

/* ==========================================================================
   Trust cards
   ========================================================================== */
.trust-cards {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.trust-card {
  background: var(--ink-card);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 2.25rem 2rem;
  text-align: center;
}

.trust-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--ink-card-2);
  border: 1px solid var(--card-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.trust-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
}

.trust-card p {
  font-size: 1.05rem;
  line-height: 1.6;
  font-weight: 500;
  color: var(--text-soft);
  margin: 0;
}

/* ==========================================================================
   Mission
   ========================================================================== */
.mission-statement {
  color: var(--text-soft);
  font-weight: 500;
  max-width: 65ch;
  margin: 0 auto 1.25em;
  text-align: center;
}

.mission-statement:last-child {
  margin-bottom: 0;
}

#our-mission .mission-statement,
#our-vision .mission-statement {
  max-width: 58ch;
}

/* ==========================================================================
   Audit panel
   ========================================================================== */
.audit-panel {
  position: relative;
  background: var(--ink-card);
  border: 1px solid var(--card-border);
  border-radius: 28px;
  padding: 3.5rem;
  overflow: hidden;
}

.audit-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 88% 12%, var(--glow-brass), transparent 62%);
  opacity: 0.6;
  pointer-events: none;
}

.audit-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: stretch;
}

.audit-grid > div:first-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.audit-grid p {
  color: var(--text-soft);
  font-weight: 500;
}

.audit-grid > div:last-child h3 {
  color: var(--paper);
  text-shadow: 0 2px 14px rgba(7, 29, 59, 0.6);
}

.checklist {
  list-style: none;
}

.checklist li {
  padding: 0.9em 0;
  border-top: 1px solid var(--card-border);
  display: flex;
  gap: 0.75rem;
  font-weight: 500;
  color: var(--text-soft);
}

.checklist li:first-child {
  border-top: none;
}

.checklist li::before {
  content: "—";
  color: var(--mint);
  flex-shrink: 0;
}

.audit-note {
  font-size: 1.125rem;
  margin-top: 2rem;
}

/* ==========================================================================
   Core values grid
   ========================================================================== */
.values-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.value-card {
  background: var(--ink-card);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 2.25rem 2rem;
  text-align: center;
}

.value-card h3 {
  font-size: 1.55rem;
  margin-bottom: 0.6rem;
}

.value-card p {
  color: var(--text-soft);
  font-size: 1.05rem;
  line-height: 1.75;
  font-weight: 400;
  margin: 0;
}

/* ==========================================================================
   Pull quote
   ========================================================================== */
.pull-quote {
  max-width: 50ch;
  margin: 3rem auto 0;
  padding: 2rem 0;
  text-align: center;
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
}

.pull-quote p {
  font-family: "Cormorant", Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 600;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  line-height: 1.4;
  color: var(--paper);
  margin: 0;
}

/* ==========================================================================
   How we work — principle cards
   ========================================================================== */
.principles {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.principle-card {
  background: var(--ink-card);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 2.25rem 2rem;
  text-align: center;
}

.principle-card h3 {
  font-size: 1.3rem;
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

.principle-card p {
  color: var(--text-soft);
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.6;
  font-weight: 500;
}

/* ==========================================================================
   Contact
   ========================================================================== */
.contact {
  background: radial-gradient(ellipse 70% 70% at 50% 0%, rgba(79, 129, 85, 0.2), transparent 65%);
}

.contact h2 {
  color: var(--paper);
}

.contact-cta {
  text-align: center;
  margin-top: 0.5rem;
}

.contact-note {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: var(--mint);
}

.contact-details {
  margin-top: 0.5rem;
  font-size: 1rem;
  color: var(--text-soft);
}

.contact-details a {
  color: var(--mint);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  padding: 2rem 0;
  border-top: 1px solid var(--card-border);
  font-size: 0.85rem;
}

.site-footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  justify-content: space-between;
}

.site-footer p {
  margin: 0;
  opacity: 0.85;
}

.footer-contact {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.footer-contact a {
  color: var(--mint);
}

.footer-legal-break {
  display: none;
}

.footer-company-no {
  text-transform: lowercase;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 960px) {
  .site-header {
    padding: 0.75rem 0;
  }

  .header-row {
    grid-template-columns: 1fr auto;
    row-gap: 1rem;
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
  }

  .header-actions {
    grid-column: 2;
    grid-row: 1;
  }

  .btn-nav-cta {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .main-nav {
    display: none;
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: stretch;
  }

  .main-nav.is-open {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 0.25rem;
    background: var(--ink-card);
    border-radius: 16px;
  }

  .main-nav a {
    display: block;
    width: 100%;
    text-align: left;
    padding: 0.9em 1.1em;
    border-radius: 10px;
  }

  .site-footer .container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
  }

  .footer-contact {
    display: none;
  }

  .footer-legal-sep {
    display: none;
  }

  .footer-legal-break {
    display: inline;
  }

  .footer-company-no {
    text-transform: none;
  }

  .section-head-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .section-support {
    text-align: left;
    max-width: 60ch;
  }
}

@media (max-width: 860px) {
  .cards,
  .principles,
  .trust-cards,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .audit-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .audit-panel {
    padding: 2.25rem;
  }

  .hero-wolf {
    height: min(72vh, 675px);
    top: 66%;
  }
}

@media (max-width: 640px) {
  section {
    padding: 4.5rem 0;
  }

  .hero {
    min-height: auto;
    padding: 7rem 0 3.5rem;
  }

  .hero-logo-frame {
    width: min(80vw, 320px);
  }

  .page-hero {
    padding: 3.5rem 0 3rem;
  }
}

@media (max-width: 400px) {
  body {
    font-size: 16.5px;
  }

  .container {
    padding: 0 1.1rem;
  }
}
