:root {
  --black: #111111;
  --white: #ffffff;
  --navy: #142b4d;
  --gray: #6b7280;
  --border: #d4d7dd;
  --shadow: 0 18px 45px rgba(17, 17, 17, 0.08);
  --radius: 22px;
  --wrap: 1180px;
  --hero-title-font: "Palatino Linotype", "Book Antiqua", Georgia, serif;
  --hero-title-size: clamp(2.4rem, 6vw, 5.4rem);
  --text-color: var(--black);
  --muted-color: var(--gray);
  --page-bg:
    radial-gradient(circle at top, rgba(20, 43, 77, 0.1), transparent 38%),
    linear-gradient(180deg, #f5f7fa 0%, var(--white) 30%, #eef1f5 100%);
  --header-bg: rgba(255, 255, 255, 0.92);
  --surface-bg: rgba(255, 255, 255, 0.95);
  --surface-alt: rgba(255, 255, 255, 0.88);
  --nav-panel-bg: var(--white);
  --nav-hover-bg: var(--navy);
  --button-secondary-text: var(--black);
  --button-secondary-border: rgba(17, 17, 17, 0.18);
  --input-bg: var(--white);
  --logo-bg: var(--white);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Palatino Linotype", "Book Antiqua", Georgia, serif;
  color: var(--text-color);
  background: var(--page-bg);
}

body.dark-mode {
  --text-color: #f3f5f7;
  --muted-color: #b3bcc8;
  --border: rgba(255, 255, 255, 0.12);
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
  --page-bg:
    radial-gradient(circle at top, rgba(74, 106, 156, 0.18), transparent 34%),
    linear-gradient(180deg, #09111d 0%, #0d1624 48%, #111b2c 100%);
  --header-bg: rgba(10, 16, 28, 0.9);
  --surface-bg: rgba(17, 27, 44, 0.88);
  --surface-alt: rgba(17, 27, 44, 0.82);
  --nav-panel-bg: #101a2a;
  --nav-hover-bg: #274b7d;
  --button-secondary-text: #f3f5f7;
  --button-secondary-border: rgba(255, 255, 255, 0.18);
  --input-bg: rgba(9, 17, 29, 0.85);
  --logo-bg: rgba(255, 255, 255, 0.94);
}

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

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

button,
input,
textarea {
  font: inherit;
}

.wrap {
  width: min(calc(100% - 2rem), var(--wrap));
  margin: 0 auto;
}

.site-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(12px);
  background: var(--header-bg);
  border-bottom: 1px solid rgba(20, 43, 77, 0.1);
}

.header-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  padding: 0.44rem 0;
}

.header-controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
  grid-column: 2;
  justify-self: end;
}

.brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
  flex: 0 1 auto;
  grid-column: 1;
  justify-self: center;
}

.brand-logo {
  width: 96px;
  height: auto;
  flex-shrink: 0;
}

.brand-text,
.footer-brand div {
  display: flex;
  flex-direction: column;
  gap: 0.02rem;
}

.brand-text {
  text-align: center;
}

.brand-text strong {
  font-size: 1.4rem;
  letter-spacing: 0.025em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-text span {
  color: var(--muted-color);
  font-size: 1.08rem;
  line-height: 1;
  margin: 0;
  letter-spacing: 0.015em;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.35rem;
}

.site-nav a {
  padding: 0.7rem 0.9rem;
  border-radius: 999px;
  font-size: 0.95rem;
  transition: background-color 180ms ease, color 180ms ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--white);
  background: var(--nav-hover-bg);
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 52px;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 999px;
  background: #111111;
  color: var(--white);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease, color 180ms ease;
}

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

body.dark-mode .theme-toggle {
  border-color: rgba(255, 255, 255, 0.18);
  background: #ffffff;
  color: #111111;
}

.theme-toggle-icon {
  font-size: 1rem;
  line-height: 1;
}

.nav-toggle {
  display: none;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(20, 43, 77, 0.16);
  border-radius: 14px;
  background: var(--surface-bg);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.3rem;
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  width: 22px;
  height: 2px;
  background: var(--text-color);
  border-radius: 999px;
}

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

.mobile-only {
  display: none;
}

.nowrap {
  white-space: nowrap;
}

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

.hero-grid,
.hero-home-grid,
.grid-two,
.grid-three,
.footer-inner {
  display: grid;
  gap: 1.5rem;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  align-items: center;
}

.hero-home-grid {
  grid-template-columns: 1fr;
  align-items: start;
}

.hero-home .hero-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
}

.hero-home .hero-copy h1 {
  max-width: 24ch;
}

.eyebrow,
.section-kicker,
.plan-name {
  margin: 0 0 1rem;
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  line-height: 1.05;
}

h1 {
  max-width: 12ch;
  font-family: var(--hero-title-font);
  font-size: var(--hero-title-size);
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.lead,
.card p,
.faq-item p,
.feature-list,
.site-form label {
  font-size: 1.02rem;
  line-height: 1.7;
}

.lead {
  max-width: 60ch;
  margin: 2rem auto 0;
  color: var(--muted-color);
}

.pricing-hero {
  text-align: center;
}

.pricing-hero h1 {
  max-width: 22ch;
  margin: 0 auto;
}

.pricing-hero .lead {
  max-width: 68ch;
}

.pricing-hero + .content-block {
  padding-bottom: 1.5rem;
}

.about-hero h1 {
  max-width: 24ch;
}

@media (min-width: 768px) {
  .about-hero h1 {
    max-width: 27ch;
  }
}

.service-bullets {
  margin: 2.25rem auto 0;
  padding-left: 1.2rem;
  color: var(--muted-color);
  line-height: 1.8;
  text-align: left;
}

.service-bullets li + li {
  margin-top: 0.35rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2.5rem;
  justify-content: center;
}

.mobile-call-button {
  display: none !important;
  margin-top: 1.25rem;
  background: var(--white);
  color: var(--black);
  border: 1px solid rgba(17, 17, 17, 0.16);
  box-shadow: 0 8px 20px rgba(17, 17, 17, 0.08);
}

.button.is-disabled,
.button[aria-disabled="true"] {
  opacity: 0.65;
  pointer-events: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

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

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

.button-secondary {
  background: transparent;
  color: var(--button-secondary-text);
  border-color: var(--button-secondary-border);
}

.hero-card,
.card,
.faq-item,
.form-shell {
  background: var(--surface-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card,
.card,
.faq-item,
.form-shell,
.section-heading {
  padding: 1.8rem;
}

.feature-list {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
  color: var(--muted-color);
}

.contact-card h2 {
  max-width: 18ch;
}

.contact-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 1.1rem 1.15rem;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--surface-alt);
}

.contact-label {
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-value {
  color: var(--text-color);
  font-size: 1.05rem;
  line-height: 1.6;
  word-break: break-word;
}

a.contact-value:hover {
  color: var(--navy);
}

.content-block {
  padding: 0 0 4rem;
}

.secure-files-page {
  padding-top: 3.25rem;
}

#contact-section {
  scroll-margin-top: 7.25rem;
}

.home-sections {
  align-items: stretch;
}

.home-sections > .card,
.home-sections > .contact-card {
  height: 100%;
}

.home-sections > .card .compact-form {
  max-width: 720px;
  margin: 1rem 0 0;
}

.home-sections > .card h2 {
  max-width: 16ch;
}

.home-sections > .contact-card h2 {
  margin-bottom: 2.75rem;
}

.section-heading {
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.about-photo-card,
.about-story {
  height: 100%;
}

.about-photo-card {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.owner-photo {
  width: 100%;
  height: clamp(360px, 42vw, 560px);
  border-radius: 24px;
  object-fit: cover;
  object-position: center top;
  background: var(--surface-alt);
  border: 1px solid var(--border);
}

.about-photo-copy {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.about-photo-copy p,
.about-story p {
  margin: 0;
}

.owner-name {
  color: var(--navy);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.about-story {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.about-points {
  display: grid;
  gap: 1rem;
}

.about-points .contact-item:first-child,
.about-points .contact-item:last-child {
  background: linear-gradient(180deg, rgba(20, 43, 77, 0.16), var(--surface-bg));
}

.consultation-note {
  padding: 0 1.15rem;
}

.inline-link {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

body.dark-mode .inline-link {
  color: #c9d5ea;
}

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

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

.pricing-card {
  min-height: 100%;
}

.pricing-card.featured {
  background: linear-gradient(180deg, rgba(20, 43, 77, 0.16), var(--surface-bg));
}

.price {
  margin: 0.8rem 0 1rem;
  font-size: 1.5rem;
  color: var(--navy);
  font-weight: 700;
}

body.dark-mode .eyebrow,
body.dark-mode .section-kicker,
body.dark-mode .plan-name,
body.dark-mode .contact-label,
body.dark-mode .owner-name,
body.dark-mode .price {
  color: var(--muted-color);
}

.pricing-card .pricing-note {
  margin: 1.5rem 0 0;
  display: block;
  text-align: center;
  font-size: clamp(1.35rem, 2.4vw, 1.8rem);
  font-weight: 700;
  color: var(--text-color);
  line-height: 1.15;
}

.pricing-expectations .card h2 {
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  text-wrap: balance;
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.faq-toggle:focus-visible {
  outline: 2px solid rgba(20, 43, 77, 0.24);
  outline-offset: 6px;
  border-radius: 18px;
}

.faq-question,
.card h2,
.hero-card h2 {
  margin: 0;
  font-size: clamp(1.35rem, 2.4vw, 1.8rem);
  line-height: 1.15;
}

.faq-answer {
  margin-top: 1rem;
}

.faq-answer[hidden] {
  display: none;
}

.faq-answer p {
  margin: 0;
}

.faq-icon {
  position: relative;
  width: 2.25rem;
  height: 2.25rem;
  flex-shrink: 0;
  border: 1px solid rgba(20, 43, 77, 0.16);
  border-radius: 999px;
  background: rgba(20, 43, 77, 0.04);
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.95rem;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transform: translate(-50%, -50%);
  transition: transform 180ms ease, opacity 180ms ease;
}

.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-toggle[aria-expanded="true"] .faq-icon::after {
  opacity: 0;
}

.site-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.compact-form {
  margin-top: 1rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

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

.site-form input,
.site-form textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--input-bg);
  color: var(--text-color);
}

.site-form textarea {
  resize: none;
}

.site-form input:focus,
.site-form textarea:focus {
  outline: 2px solid rgba(20, 43, 77, 0.2);
  outline-offset: 2px;
}

.secure-upload-shell {
  text-align: center;
}

.secure-upload-shell h2 {
  margin-bottom: 1rem;
}

.secure-upload-form {
  max-width: 760px;
  margin: 1.25rem auto 0;
}

.secure-files-page .secure-upload-form {
  margin-top: 0;
}

.upload-dropzone {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  padding: 2.4rem 1.4rem;
  border: 2px dashed rgba(20, 43, 77, 0.14);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 247, 252, 0.96));
  box-shadow: inset 0 0 0 8px rgba(20, 43, 77, 0.02);
  cursor: pointer;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.upload-dropzone:hover,
.upload-dropzone.is-dragging {
  border-color: rgba(20, 43, 77, 0.28);
  transform: translateY(-1px);
  box-shadow: inset 0 0 0 8px rgba(20, 43, 77, 0.04), 0 16px 32px rgba(20, 43, 77, 0.08);
}

.upload-dropzone:focus-within {
  outline: 2px solid rgba(20, 43, 77, 0.22);
  outline-offset: 4px;
}

.upload-input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.upload-cloud {
  width: 4.25rem;
  height: 4.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #6a97d6;
}

.upload-cloud svg {
  width: 100%;
  height: 100%;
}

.upload-title {
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1.15;
}

.upload-divider {
  color: var(--muted-color);
  font-size: 0.95rem;
}

.upload-button {
  pointer-events: none;
  min-width: 240px;
}

.upload-link-panel {
  cursor: default;
}

.upload-link-button {
  pointer-events: auto;
}

.upload-help,
.upload-files {
  color: var(--muted-color);
  font-size: 0.92rem;
  line-height: 1.5;
}

.upload-files {
  max-width: 52ch;
}

.form-status {
  margin: 0.85rem 0 0;
  color: var(--muted-color);
}

.site-footer {
  margin-top: 2rem;
  background: var(--black);
  color: var(--white);
}

.footer-inner {
  grid-template-columns: 1.1fr auto;
  align-items: center;
  column-gap: 1.5rem;
  row-gap: 0.5rem;
  padding: 1.35rem 0 1rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-brand strong {
  font-size: 1.18rem;
  letter-spacing: 0.025em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.footer-brand p {
  color: var(--muted-color);
  font-size: 0.98rem;
  line-height: 1;
  margin: 0;
  letter-spacing: 0.015em;
  white-space: nowrap;
}

.footer-logo {
  width: 78px;
  height: auto;
  flex-shrink: 0;
  background: var(--logo-bg);
  border-radius: 18px;
  padding: 0.35rem;
}

body.dark-mode .brand-logo,
body.dark-mode .home-logo,
body.dark-mode .footer-logo {
  filter: brightness(0) invert(1);
}

body.dark-mode .mobile-call-button {
  background: rgba(255, 255, 255, 0.96);
  color: #111111;
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

body.dark-mode .faq-icon {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.05);
}

body.dark-mode .upload-dropzone {
  border-color: rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(20, 30, 48, 0.96), rgba(16, 24, 38, 0.94));
  box-shadow: inset 0 0 0 8px rgba(255, 255, 255, 0.02);
}

body.dark-mode .upload-dropzone:hover,
body.dark-mode .upload-dropzone.is-dragging {
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: inset 0 0 0 8px rgba(255, 255, 255, 0.03), 0 18px 36px rgba(0, 0, 0, 0.28);
}

body.dark-mode .footer-logo {
  background: transparent;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1rem;
}

.footer-links a:hover {
  color: #c9d5ea;
}

.footer-note {
  grid-column: 1 / -1;
  color: #c0c5cf;
}

@media (min-width: 961px) {
  .brand {
    transform: translateX(
      calc(0.35rem - ((100vw - min(calc(100vw - 2rem), var(--wrap))) / 4))
    );
  }
}

@media (max-width: 1180px) {
  .header-inner {
    gap: 0.75rem;
  }

  .brand-logo {
    width: 82px;
  }

  .brand-text strong {
    font-size: 1.2rem;
  }

  .brand-text span {
    font-size: 0.98rem;
  }

  .site-nav {
    gap: 0.2rem;
  }

  .site-nav a {
    padding: 0.65rem 0.7rem;
    font-size: 0.9rem;
  }

  .theme-toggle {
    min-height: 48px;
    padding: 0.7rem 0.85rem;
  }
}

@media (max-width: 960px) {
  .hero-grid,
  .hero-home-grid,
  .grid-three,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    background: var(--nav-panel-bg);
    border: 1px solid var(--border);
    border-radius: 22px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    text-align: center;
  }

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

  .header-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .brand {
    margin-left: 0;
    margin-right: 0;
    transform: none;
  }

  .contact-list {
    grid-template-columns: 1fr;
  }

  .footer-links {
    margin-top: 0.65rem;
  }
}

@media (max-width: 767px) {
  .hero,
  .page-hero,
  .content-block {
    padding-bottom: 3rem;
  }

  .wrap {
    width: min(calc(100% - 1.25rem), var(--wrap));
  }

  .grid-two,
  .site-form {
    grid-template-columns: 1fr;
  }

  .header-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.45rem;
    padding: 0.3rem 0;
  }

  .brand {
    flex-direction: column;
    align-items: center;
    gap: 0.08rem;
    max-width: 100%;
    justify-self: center;
    margin: -0.16rem 0 0;
    transform: translateY(-0.18rem);
  }

  .brand-logo {
    width: 84px;
  }

  .brand-text {
    text-align: center;
    transform: none;
    margin-top: -0.34rem;
  }

  .brand-text strong {
    font-size: 1.12rem;
  }

  .brand-text span {
    display: block;
    font-size: 0.92rem;
    line-height: 1.1;
  }

  .theme-toggle-text {
    display: none;
  }

  .theme-toggle,
  .nav-toggle {
    min-height: 46px;
    width: 46px;
    height: 46px;
    padding: 0.65rem;
  }

  .header-controls {
    gap: 0.5rem;
    flex-direction: column;
    align-items: flex-end;
    justify-self: end;
  }

  .mobile-call-button {
    display: inline-flex !important;
  }

  .owner-photo {
    height: clamp(300px, 92vw, 440px);
  }

  .hero-card,
  .card,
  .faq-item,
  .form-shell,
  .section-heading {
    padding: 1.35rem;
  }

  .pricing-expectations .card:first-child {
    background: linear-gradient(180deg, rgba(20, 43, 77, 0.16), var(--surface-bg));
  }

  .mobile-only {
    display: inline;
  }

  .contact-card h2 {
    max-width: 22ch;
    text-wrap: balance;
  }

  .upload-dropzone {
    padding: 1.8rem 1rem;
  }

  .upload-title {
    font-size: 1.2rem;
  }

  .upload-button {
    min-width: 100%;
  }
}

@media (max-width: 300px) {
  .wrap {
    width: min(calc(100% - 1rem), var(--wrap));
  }

  .header-inner {
    gap: 0.5rem;
    padding: 0.35rem 0;
  }

  .brand {
    margin: -0.3rem 0 -0.1rem;
    transform: translateY(-0.12rem);
  }

  .brand-logo {
    width: 72px;
  }

  .brand-text {
    transform: translateY(-0.16rem);
  }

  .brand-text strong {
    font-size: 1rem;
  }

  .brand-text span {
    font-size: 0.82rem;
  }

  .theme-toggle,
  .nav-toggle {
    min-height: 42px;
    width: 42px;
    height: 42px;
    padding: 0.55rem;
  }

  .theme-toggle-icon {
    font-size: 0.92rem;
  }
}
