@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Inter:wght@400;500;600;700&display=swap");

:root {
  --primary: #1f3a30;
  --primary-soft: #e7efe9;
  --accent: #7a403b;
  --accent-soft: #f4e9e7;
  --gold: #b78e4d;
  --gold-soft: #efe4cf;
  --surface: #f8f1e4;
  --surface-2: #f2e7d4;
  --text: #1e1b17;
  --muted: #5f5447;
  --border: #ddccb1;
  --white: #ffffff;

  --radius-sm: 12px;
  --radius-md: 14px;
  --radius-lg: 16px;
  --radius-pill: 999px;

  --shadow-soft: 0 12px 28px -24px rgba(22, 23, 18, 0.35);
  --shadow-card: 0 18px 36px -28px rgba(22, 23, 18, 0.42);

  --phi: 1.618;
  --space-1: 0.5rem;
  --space-2: calc(var(--space-1) * var(--phi));
  --space-3: calc(var(--space-2) * var(--phi));
  --space-4: calc(var(--space-3) * var(--phi));
  --space-5: calc(var(--space-4) * var(--phi));
  --space-6: calc(var(--space-5) * var(--phi));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.35), rgba(248, 241, 228, 0.45)),
    radial-gradient(circle at 10% 10%, rgba(31, 58, 48, 0.11), transparent 42%),
    radial-gradient(circle at 88% 14%, rgba(122, 64, 59, 0.09), transparent 35%),
    url("ornament-fractal.svg") center top/980px repeat,
    var(--surface) url("pattern-mandala.svg") top center/860px repeat;
  color: var(--text);
  font-family: "Inter", "Source Sans 3", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  font-optical-sizing: auto;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

main {
  display: block;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: "Cormorant Garamond", "Fraunces", serif;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2rem, 4.7vw, 4rem);
}

h2 {
  font-size: clamp(1.7rem, 3vw, 2.8rem);
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.55rem);
}

p {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

::selection {
  background: rgba(37, 67, 54, 0.17);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  background: var(--white);
  color: var(--text);
  border: 1px solid var(--border);
  padding: 0.5rem 0.75rem;
  border-radius: 10px;
  z-index: 100;
}

.skip-link:focus {
  left: 12px;
}

.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;
}

.container {
  width: min(100%, 1160px);
  margin-inline: auto;
  padding-inline: var(--space-4);
}

.section {
  padding-block: var(--space-6);
}

.section.compact {
  padding-block: var(--space-5);
}

.section.alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(249, 244, 236, 0.6));
  border-top: 1px solid rgba(183, 142, 77, 0.22);
  border-bottom: 1px solid rgba(183, 142, 77, 0.22);
}

.grid-12 {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: var(--space-4);
}

.grid-12 > *,
.preview-grid-2 > *,
.preview-grid-3 > *,
.footer-grid > *,
.contact-grid > * {
  min-width: 0;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.section-head {
  display: grid;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
  max-width: 730px;
}

.lead {
  font-size: clamp(1.02rem, 1.7vw, 1.18rem);
  color: var(--muted);
}

.muted {
  color: var(--muted);
}

.card {
  position: relative;
  overflow: clip;
  border: 1px solid rgba(183, 142, 77, 0.24);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.94), rgba(250, 246, 239, 0.86));
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 1px solid rgba(183, 142, 77, 0.33);
  pointer-events: none;
}

.card-pad {
  padding: var(--space-4);
}

.card-tight {
  padding: var(--space-3);
}

.card-lift {
  transition: transform 250ms ease, box-shadow 250ms ease;
}

.card-lift:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 1px solid rgba(183, 142, 77, 0.3);
  border-radius: var(--radius-pill);
  padding: 6px 12px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--muted);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 242, 231, 0.96));
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-2);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  padding: calc(var(--space-2) * 0.9) var(--space-3);
  font-size: 0.92rem;
  font-weight: 600;
  transition: transform 220ms ease, background-color 220ms ease, border-color 220ms ease, color 220ms ease;
}

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

.btn-primary {
  background: linear-gradient(140deg, #193128 0%, #295245 64%, #6a3f3b 140%);
  border-color: rgba(183, 142, 77, 0.36);
  color: var(--white);
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  background: linear-gradient(140deg, #142920 0%, #214539 66%, #623a37 140%);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(183, 142, 77, 0.3);
  color: var(--text);
}

.btn-secondary:hover {
  background: rgba(242, 231, 212, 0.72);
}

.btn-subtle {
  background: rgba(183, 142, 77, 0.13);
  border-color: rgba(183, 142, 77, 0.3);
  color: var(--primary);
}

.tag {
  display: inline-flex;
  align-items: center;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(183, 142, 77, 0.26);
  background: rgba(255, 255, 255, 0.92);
  padding: 4px 10px;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--muted);
}

.pill-filter {
  border: 1px solid rgba(183, 142, 77, 0.24);
  border-radius: var(--radius-pill);
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--muted);
  font-size: 0.87rem;
  font-weight: 600;
  transition: background-color 200ms ease, color 200ms ease, border-color 200ms ease;
}

.pill-filter.is-active,
.pill-filter[aria-pressed="true"] {
  border-color: rgba(183, 142, 77, 0.42);
  background: rgba(183, 142, 77, 0.14);
  color: var(--primary);
}

.list-icon {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
}

.list-icon i {
  width: 16px;
  height: 16px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 3px;
}

.top-strip {
  border-bottom: 1px solid rgba(183, 142, 77, 0.26);
  background: linear-gradient(90deg, rgba(183, 142, 77, 0.1), rgba(255, 255, 255, 0.52), rgba(122, 64, 59, 0.08));
  min-height: 34px;
  padding: 4px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.25;
  color: var(--muted);
  font-size: 0.76rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(183, 142, 77, 0.2);
  background: rgba(248, 241, 228, 0.82);
  backdrop-filter: blur(12px);
}

.site-nav {
  height: calc(var(--space-5) * 1.4);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand > span:last-child {
  display: grid;
  min-width: 0;
}

.brand-badge {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 28% 22%, #2f5b4b 10%, #193126 72%);
  box-shadow: inset 0 0 0 1px rgba(183, 142, 77, 0.55);
  color: var(--white);
}

.brand-mark {
  width: 20px;
  height: 20px;
}

.brand-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.brand-sub {
  font-size: 0.72rem;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2px;
}

.nav-links a {
  padding: 8px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 600;
}

.nav-links a:hover {
  background: rgba(242, 231, 212, 0.78);
  color: var(--text);
}

.nav-links a.is-active {
  background: rgba(183, 142, 77, 0.16);
  color: var(--primary);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.desktop-only {
  display: none;
}

.menu-toggle {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(183, 142, 77, 0.28);
  background: rgba(255, 255, 255, 0.94);
  display: inline-grid;
  place-items: center;
}

.mobile-panel {
  max-height: 0;
  overflow: hidden;
  border-top: 1px solid rgba(183, 142, 77, 0.2);
  background: rgba(255, 255, 255, 0.94);
  transition: max-height 260ms ease, opacity 260ms ease;
  opacity: 0;
}

.mobile-panel.is-open {
  opacity: 1;
}

.mobile-panel nav {
  display: grid;
  gap: 6px;
  padding: 14px 0 18px;
}

.mobile-panel a {
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  font-size: 0.92rem;
  font-weight: 600;
}

.mobile-panel a:hover,
.mobile-panel a.is-active {
  background: var(--surface-2);
}

.hero-grid {
  align-items: center;
}

.hero-content {
  grid-column: span 7;
  display: grid;
  gap: var(--space-3);
}

.hero-aside {
  grid-column: span 5;
  display: block;
}

.heritage-panel {
  isolation: isolate;
  border: 1px solid rgba(183, 142, 77, 0.34);
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.96), rgba(247, 239, 226, 0.9)),
    url("ornament-fractal.svg") center/460px repeat;
}

.heritage-panel::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(183, 142, 77, 0.2);
  border-radius: calc(var(--radius-lg) - 6px);
  pointer-events: none;
  z-index: 0;
}

.heritage-panel > * {
  position: relative;
  z-index: 1;
}

.navagraha-panel {
  display: grid;
  gap: var(--space-3);
}

.navagraha-stage {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: calc(var(--radius-lg) + 6px);
  border: 1px solid rgba(183, 142, 77, 0.34);
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.82), rgba(239, 228, 207, 0.52)),
    linear-gradient(145deg, rgba(249, 242, 231, 0.96), rgba(241, 230, 212, 0.78));
  box-shadow: inset 0 0 0 1px rgba(183, 142, 77, 0.2);
}

.navagraha-stage::before {
  content: "";
  position: absolute;
  inset: 10%;
  border-radius: 999px;
  border: 1px dashed rgba(183, 142, 77, 0.24);
  pointer-events: none;
}

.navagraha-stage canvas {
  width: 100%;
  height: 100%;
}

.heritage-title {
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  color: var(--primary);
  margin-bottom: var(--space-3);
  line-height: 1.2;
}

.credential-list {
  display: grid;
  gap: 10px;
  color: var(--muted);
  font-size: 0.93rem;
}

.credential-list li {
  border-top: 1px dashed rgba(183, 142, 77, 0.3);
  padding-top: 10px;
}

.credential-list li:first-child {
  border-top: 0;
  padding-top: 0;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-2);
}

.stats-chip {
  justify-content: center;
  text-align: center;
  min-height: 42px;
}

.preview-grid-2 {
  display: grid;
  gap: var(--space-3);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.preview-grid-3 {
  display: grid;
  gap: var(--space-3);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-meta,
.course-meta {
  display: grid;
  gap: 10px;
}

.tool-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 100%;
}

.tool-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
}

.tool-title {
  margin-top: 2px;
}

.tool-copy {
  font-size: 0.94rem;
  line-height: 1.52;
}

.tool-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 2px;
}

.tool-action {
  margin-top: auto;
  min-height: 48px;
  width: 100%;
}

.meta-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  border: 1px solid rgba(183, 142, 77, 0.26);
  border-radius: var(--radius-sm);
  background: rgba(247, 240, 229, 0.62);
  padding: 10px;
}

.meta-grid div span {
  display: block;
}

.meta-grid .label {
  font-size: 0.78rem;
  color: var(--muted);
}

.meta-grid .value {
  font-size: 0.86rem;
  font-weight: 600;
}

.service-price,
.course-price {
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(183, 142, 77, 0.19);
  color: #6d4e21;
  font-weight: 700;
  font-size: 0.85rem;
}

.accordion-item {
  border: 1px solid rgba(183, 142, 77, 0.24);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.88);
  overflow: clip;
}

.accordion-item summary {
  cursor: pointer;
  list-style: none;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-weight: 600;
}

.accordion-item summary::-webkit-details-marker {
  display: none;
}

.accordion-item .content {
  padding: 0 16px 14px;
  color: var(--muted);
  font-size: 0.92rem;
}

.section-cta {
  background: var(--primary);
  color: var(--white);
}

.section-cta .eyebrow,
.section-cta p {
  color: rgba(255, 255, 255, 0.86);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.timeline .year {
  width: fit-content;
  background: linear-gradient(135deg, #25473b, #7a403b);
  color: var(--white);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 3px 10px;
  margin-bottom: 10px;
}

.quote-block {
  border-left: 3px solid var(--gold);
  font-size: 1.24rem;
  line-height: 1.5;
}

.tools-controls {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.search-input,
.input,
.select,
.textarea {
  width: 100%;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(183, 142, 77, 0.27);
  background: rgba(255, 255, 255, 0.96);
  color: var(--text);
  padding: 11px 14px;
  font-size: 0.92rem;
}

.search-input {
  border-radius: var(--radius-pill);
}

.input:focus,
.select:focus,
.textarea:focus,
.search-input:focus {
  border-color: rgba(183, 142, 77, 0.58);
  outline: none;
}

.helper-text {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.78rem;
}

.error-text {
  color: var(--accent);
}

.blog-list,
.blog-grid {
  display: grid;
  gap: 14px;
}

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

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 0.8rem;
}

.article-shell {
  width: min(100%, 790px);
  margin-inline: auto;
}

.article-body {
  margin-top: 36px;
  display: grid;
  gap: 14px;
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.82;
}

.article-body h2,
.article-body h3 {
  margin-top: 22px;
}

.article-body ul,
.article-body ol {
  margin-left: 18px;
}

.article-body li {
  list-style: disc;
  margin-bottom: 6px;
}

.article-nav {
  margin-top: 42px;
  border-top: 1px solid rgba(183, 142, 77, 0.3);
  padding-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.article-nav a {
  padding: 14px;
}

.testimonial-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.slider-controls {
  display: flex;
  gap: 8px;
}

.slider-btn {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(183, 142, 77, 0.27);
  background: rgba(255, 255, 255, 0.95);
  display: inline-grid;
  place-items: center;
}

.slider-track {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.slider-track::-webkit-scrollbar {
  display: none;
}

.slider-card {
  min-width: 100%;
  scroll-snap-align: start;
}

.contact-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 18px;
}

.contact-card-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  overflow-wrap: anywhere;
}

.footer {
  margin-top: var(--space-4);
  border-top: 1px solid rgba(183, 142, 77, 0.25);
  background: rgba(255, 255, 255, 0.74);
  padding: var(--space-5) 0 calc(var(--space-6) + 1rem);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: var(--space-4);
}

.footer h4 {
  font-family: "Inter", sans-serif;
  font-size: 0.76rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 8px;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--primary);
}

.social-row {
  margin-top: 12px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.social-row a {
  border: 1px solid rgba(183, 142, 77, 0.3);
  border-radius: 999px;
  padding: 6px 11px;
  color: var(--muted);
  font-size: 0.82rem;
}

.social-row a:hover {
  background: rgba(242, 231, 212, 0.74);
  color: var(--text);
}

.copyright {
  border-top: 1px solid rgba(183, 142, 77, 0.24);
  margin-top: 16px;
  padding-top: 12px;
  color: var(--muted);
  font-size: 0.76rem;
}

.mobile-actions {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  border-top: 1px solid rgba(183, 142, 77, 0.28);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(6px);
  display: none;
}

.mobile-actions .row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mobile-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 48px;
  padding: 12px 8px;
  font-size: 0.78rem;
  font-weight: 700;
}

.mobile-actions a:nth-child(2) {
  border-inline: 1px solid rgba(221, 209, 194, 0.85);
}

.mobile-actions a:first-child {
  color: var(--primary);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 560ms cubic-bezier(0.22, 0.61, 0.36, 1), transform 560ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

[data-reveal].in-view {
  opacity: 1;
  transform: translateY(0);
}

.hidden {
  display: none !important;
}

@media (min-width: 850px) {
  .nav-links {
    display: flex;
  }

  .desktop-only {
    display: inline-flex;
  }

  .menu-toggle,
  .mobile-panel,
  .mobile-actions {
    display: none !important;
  }
}

@media (max-width: 1023px) {
  .grid-12 {
    grid-template-columns: 1fr;
  }

  .grid-12 > * {
    grid-column: 1 / -1 !important;
  }

  .hero-content,
  .hero-aside {
    grid-column: auto;
  }

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

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

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .navagraha-stage {
    max-width: 420px;
    margin-inline: auto;
  }

  .testimonial-head {
    flex-wrap: wrap;
    align-items: flex-start;
  }
}

@media (max-width: 760px) {
  .container {
    padding-inline: var(--space-2);
  }

  .section {
    padding-block: 56px;
  }

  .section.compact {
    padding-block: 44px;
  }

  .top-strip {
    font-size: 0.7rem;
    padding-inline: 10px;
  }

  .site-nav {
    min-height: 66px;
    height: auto;
    padding-block: 8px;
  }

  .brand-sub {
    display: none;
  }

  .brand-title {
    font-size: 1.05rem;
  }

  .btn {
    width: 100%;
  }

  .button-row {
    width: 100%;
  }

  .preview-grid-2,
  .preview-grid-3,
  .timeline,
  .blog-grid,
  .article-nav,
  .footer-grid,
  .tools-controls,
  .meta-grid {
    grid-template-columns: 1fr;
  }

  .slider-card {
    min-width: 100%;
  }

  .slider-controls {
    width: 100%;
    justify-content: flex-start;
  }

  .contact-card-link {
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .contact-card-link > span:last-child {
    width: 100%;
    text-align: left;
  }

  .section-cta .btn {
    width: 100% !important;
  }

  .mobile-actions {
    display: block;
  }

  .footer {
    padding-bottom: 112px;
  }

}

@media (max-width: 480px) {
  .site-nav {
    gap: 10px;
  }

  .brand-badge {
    width: 34px;
    height: 34px;
  }

  .brand-mark {
    width: 18px;
    height: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
