:root {
  --green: #24492d;
  --green-deep: #17351f;
  --mustard: #f4ae16;
  --ink: #1c1d1f;
  --muted: #74777b;
  --line: #e8e8e4;
  --panel: #f6f6f2;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(23, 53, 31, 0.12);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

section {
  scroll-margin-top: 96px;
}

.section-pad {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 92px 0;
}

.site-header {
  position: sticky;
  top: 22px;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  width: min(980px, calc(100% - 36px));
  margin: 22px auto 0;
  padding: 10px 12px;
  color: var(--white);
  background: var(--green);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  box-shadow: var(--shadow);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: max-content;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: var(--green);
  background: var(--mustard);
  border-radius: 50%;
  font-weight: 900;
}

.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 26px;
  font-size: 0.84rem;
}

.main-nav a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 180ms ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--mustard);
}

.header-cta {
  padding: 10px 18px;
  color: var(--green);
  background: var(--white);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
}

.icon-button {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: inherit;
  background: transparent;
  border: 0;
}

.icon-button svg {
  width: 20px;
  height: 20px;
}

.nav-toggle {
  display: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.93fr) minmax(320px, 1.07fr);
  gap: 64px;
  align-items: center;
  min-height: calc(100vh - 96px);
  padding-top: 70px;
}

.hero-copy {
  position: relative;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-weight: 700;
  font-size: 0.92rem;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--mustard);
}

.boxed {
  position: relative;
  padding: 3px 8px;
  border: 1px solid var(--muted);
  color: var(--ink);
  background: var(--white);
}

.boxed::before,
.boxed::after {
  position: absolute;
  content: "";
  width: 7px;
  height: 7px;
  background: var(--mustard);
  border: 1px solid var(--green);
}

.boxed::before {
  top: -5px;
  left: -5px;
}

.boxed::after {
  right: -5px;
  bottom: -5px;
}

.hero h1,
.section-heading h2,
.about-copy h2,
.faq-panel h2,
.contact-form h2 {
  margin: 14px 0 0;
  color: var(--ink);
  font-size: clamp(2.45rem, 4.8rem, 5.15rem);
  line-height: 0.95;
  font-weight: 900;
}

.hero h1 {
  max-width: 620px;
}

em {
  color: var(--mustard);
  font-style: italic;
  font-weight: inherit;
}

.hero-copy p {
  max-width: 520px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 19px;
  border: 1px solid var(--green);
  border-radius: 999px;
  font-weight: 850;
  font-size: 0.9rem;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(23, 53, 31, 0.15);
}

.btn-primary {
  color: var(--white);
  background: var(--green);
}

.btn-secondary {
  color: var(--ink);
  background: var(--white);
}

.btn-small {
  min-height: 42px;
  padding-inline: 16px;
  font-size: 0.84rem;
}

.btn-icon {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: var(--green);
  background: var(--mustard);
  border-radius: 50%;
  flex: 0 0 auto;
}

.btn-icon svg,
.round-link svg,
.service-card a svg {
  width: 16px;
  height: 16px;
}

.hero-visual {
  position: relative;
  min-height: 590px;
  isolation: isolate;
}

.hero-visual::before {
  position: absolute;
  right: 8%;
  bottom: 46px;
  z-index: -2;
  content: "";
  width: min(68%, 430px);
  aspect-ratio: 1;
  background: var(--mustard);
  border-radius: 50%;
}

.hero-visual::after {
  position: absolute;
  right: 4%;
  bottom: 28px;
  z-index: -3;
  content: "";
  width: min(74%, 470px);
  aspect-ratio: 1;
  border: 2px solid var(--green);
  border-right-color: transparent;
  border-radius: 50%;
}

.portrait-wrap {
  position: absolute;
  right: 10%;
  bottom: 0;
  width: min(74%, 460px);
  height: 560px;
  overflow: hidden;
  border-bottom-left-radius: 46%;
  border-bottom-right-radius: 46%;
}

.portrait-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 8%;
  filter: drop-shadow(0 30px 24px rgba(23, 53, 31, 0.18));
}

.hero-ring {
  position: absolute;
  right: 7%;
  top: 84px;
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
  color: var(--white);
  background: var(--green);
  border: 8px solid var(--mustard);
  border-radius: 50%;
  box-shadow: 0 16px 30px rgba(23, 53, 31, 0.18);
}

.hero-ring::after {
  content: "";
  width: 22px;
  height: 22px;
  background: var(--mustard);
  border-radius: 50%;
}

.rotate-badge {
  position: absolute;
  inset: 7px;
  display: grid;
  place-items: center;
  font-size: 0.48rem;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
  animation: spin 16s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.role-pill {
  position: absolute;
  z-index: 3;
  padding: 10px 15px;
  color: var(--ink);
  background: var(--mustard);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 850;
  box-shadow: var(--shadow);
}

.role-one {
  left: 10%;
  bottom: 188px;
  color: var(--white);
  background: var(--green);
}

.role-two {
  right: 4%;
  bottom: 128px;
}

.ticker {
  overflow: hidden;
  color: var(--ink);
  background: var(--mustard);
  border-block: 2px solid var(--green);
}

.ticker-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 5vw, 70px);
  width: max-content;
  min-width: 100%;
  padding: 17px 18px;
  font-weight: 900;
}

.ticker-track b {
  color: var(--green);
  font-size: 1.4rem;
}

.section-heading {
  margin-bottom: 38px;
}

.split-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 28px;
}

.section-heading h2,
.about-copy h2,
.faq-panel h2,
.contact-form h2 {
  font-size: clamp(2rem, 3.1rem, 3.55rem);
  line-height: 1.04;
}

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

.center-heading .eyebrow {
  justify-content: center;
}

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

.service-card,
.timeline-card,
.quote-card,
.blog-card,
.faq-panel,
.contact-form,
.project-card,
.tool-card {
  border: 1px solid var(--line);
  border-radius: 8px;
}

.service-card {
  min-height: 228px;
  padding: 24px;
  background: var(--panel);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(244, 174, 22, 0.85);
  box-shadow: var(--shadow);
}

.service-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  color: var(--green);
  background: var(--white);
  border-radius: 50%;
  margin-bottom: 24px;
  box-shadow: inset 0 0 0 7px #ecece8;
}

.service-icon svg {
  width: 23px;
  height: 23px;
}

.service-card h3,
.project-card h3,
.timeline-card h3,
.blog-card h3 {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.25;
}

.service-card p,
.blog-card p,
.timeline-item p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.service-card a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  color: var(--green);
  font-size: 0.84rem;
  font-weight: 850;
}

.about-band {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
  gap: 60px;
  align-items: center;
  padding: 84px max(18px, calc((100vw - 1180px) / 2));
  color: var(--white);
  background: var(--green);
  overflow: hidden;
}

.about-band .eyebrow,
.about-band h2 {
  color: var(--white);
}

.about-band .eyebrow::before {
  background: var(--mustard);
}

.about-visual {
  position: relative;
  min-height: 500px;
}

.about-visual::before {
  position: absolute;
  inset: auto 10% 0 4%;
  content: "";
  aspect-ratio: 1;
  background: var(--mustard);
  border-radius: 50%;
}

.about-visual img {
  position: absolute;
  right: 14%;
  bottom: 0;
  z-index: 2;
  width: min(74%, 380px);
  max-height: 490px;
  object-fit: cover;
  object-position: top;
  border-bottom-left-radius: 48%;
  border-bottom-right-radius: 48%;
}

.skill-tags {
  position: absolute;
  right: 0;
  bottom: 78px;
  z-index: 4;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  width: min(330px, 86%);
}

.skill-tags span {
  padding: 8px 12px;
  color: var(--green);
  background: var(--mustard);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 850;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.about-copy p {
  max-width: 650px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1rem;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin: 32px 0;
}

.stat-row span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}

.stat-row strong {
  display: block;
  color: var(--mustard);
  font-size: 2.2rem;
  line-height: 1;
}

.tools {
  background:
    linear-gradient(#f7f7f4, #f7f7f4) center top / 100% 44% no-repeat,
    var(--white);
}

.tool-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}

.tool-card {
  display: grid;
  justify-items: center;
  gap: 10px;
  min-height: 190px;
  padding: 26px 14px;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(23, 53, 31, 0.08);
}

.tool-icon {
  display: grid;
  place-items: center;
  width: 84px;
  height: 84px;
  color: var(--white);
  background: var(--green);
  border: 16px solid #ededed;
  border-radius: 50%;
  font-weight: 950;
}

.tool-card strong {
  font-size: 1.7rem;
}

.tool-card span:last-child {
  color: var(--muted);
  font-size: 0.9rem;
}

.figma {
  background: #f24e1e;
}

.sketch {
  background: var(--mustard);
  color: var(--ink);
}

.ps {
  background: #001d35;
}

.ae {
  background: #261059;
}

.story {
  background: #ff4785;
}

.invision {
  background: #e91e63;
}

.project-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 9px;
}

.chip {
  min-height: 38px;
  padding: 0 14px;
  color: var(--green);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.82rem;
}

.chip.active {
  color: var(--ink);
  background: var(--mustard);
  border-color: var(--mustard);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.project-card {
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 18px 44px rgba(23, 53, 31, 0.1);
}

.project-card.is-hidden {
  display: none;
}

.project-card img {
  width: 100%;
  aspect-ratio: 1.08;
  object-fit: cover;
}

.project-card:nth-child(2) img {
  object-position: 12% 48%;
}

.project-card:nth-child(3) img {
  object-position: 70% 20%;
}

.project-body {
  position: relative;
  display: grid;
  gap: 14px;
  min-height: 136px;
  padding: 18px 64px 20px 18px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 27px;
  padding: 0 9px;
  color: var(--green);
  background: var(--mustard);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 850;
}

.round-link {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--white);
  background: var(--green);
  border-radius: 50%;
  transition: transform 180ms ease, background 180ms ease;
}

.round-link:hover {
  transform: translateY(-2px);
  background: var(--green-deep);
}

.project-body .round-link {
  position: absolute;
  right: 18px;
  bottom: 22px;
}

.journey {
  background:
    linear-gradient(var(--panel), var(--panel)) center 0 / 100% 52% no-repeat,
    var(--white);
}

.timeline-grid,
.testimonial-grid,
.blog-grid,
.faq-contact {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.timeline-card {
  padding: 28px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.timeline-card h3 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 14px;
  margin-bottom: 24px;
  background: var(--panel);
  border-radius: 999px;
}

.timeline-card h3 svg {
  color: var(--mustard);
}

.timeline-item {
  padding: 20px 0 20px 24px;
  border-left: 1px solid var(--line);
}

.timeline-item + .timeline-item {
  border-top: 1px solid var(--line);
}

.timeline-item span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
}

.timeline-item strong {
  display: block;
  margin-top: 6px;
  font-size: 1.18rem;
}

.pricing {
  width: 100%;
  max-width: none;
  padding-inline: max(18px, calc((100vw - 1180px) / 2));
  color: var(--white);
  background: var(--green);
}

.pricing .section-heading h2,
.pricing .eyebrow {
  color: var(--white);
}

.billing-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 800;
}

.billing-toggle input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.switch {
  position: relative;
  width: 54px;
  height: 30px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
}

.switch::after {
  position: absolute;
  top: 4px;
  left: 4px;
  content: "";
  width: 20px;
  height: 20px;
  background: var(--mustard);
  border-radius: 50%;
  transition: transform 180ms ease;
}

.billing-toggle input:checked + .switch::after {
  transform: translateX(24px);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.price-card {
  min-height: 360px;
  padding: 28px;
  border-radius: 8px;
}

.price-card.muted {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
}

.price-card.featured {
  color: var(--ink);
  background: var(--mustard);
}

.price-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  font-weight: 850;
}

.price-card strong {
  color: var(--mustard);
  font-size: 3rem;
  line-height: 1;
}

.price-card.featured strong {
  color: var(--green);
}

.price-card ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.price-card li {
  display: flex;
  gap: 10px;
  color: rgba(255, 255, 255, 0.76);
}

.price-card.featured li {
  color: rgba(28, 29, 31, 0.76);
}

.price-card li::before {
  content: "";
  width: 9px;
  height: 9px;
  margin-top: 7px;
  background: var(--mustard);
  border-radius: 50%;
  flex: 0 0 auto;
}

.price-card.featured li::before {
  background: var(--green);
}

.quote-card {
  min-height: 260px;
  margin: 0;
  padding: 30px;
  background: var(--panel);
}

.quote-card blockquote {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.45;
}

.quote-card figcaption {
  display: grid;
  gap: 4px;
  margin-top: 28px;
}

.quote-card span {
  color: var(--muted);
}

.blog-card {
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 16px 38px rgba(23, 53, 31, 0.09);
}

.blog-card img {
  width: 100%;
  aspect-ratio: 1.8;
  object-fit: cover;
}

.blog-card div {
  padding: 22px;
}

.blog-card h3 {
  margin-top: 14px;
  font-size: 1.25rem;
}

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

.faq-panel,
.contact-form {
  padding: 30px;
  background: var(--panel);
}

.accordion {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.accordion-trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  text-align: left;
  font-weight: 850;
}

.accordion-trigger svg {
  width: 18px;
  height: 18px;
  color: var(--green);
  transition: transform 180ms ease;
  flex: 0 0 auto;
}

.accordion-trigger[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.accordion-panel {
  display: none;
  padding: 0 16px 10px;
  color: var(--muted);
}

.accordion-panel.open {
  display: block;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form h2,
.faq-panel h2 {
  margin-bottom: 10px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--green);
  font-weight: 800;
  font-size: 0.9rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 15px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--mustard);
  box-shadow: 0 0 0 3px rgba(244, 174, 22, 0.18);
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--green);
  font-weight: 800;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 34px max(18px, calc((100vw - 1180px) / 2));
  color: var(--white);
  background: var(--green-deep);
}

.footer-links {
  display: flex;
  gap: 18px;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer > span {
  color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    border-radius: 8px;
  }

  .main-nav {
    position: fixed;
    inset: 86px 18px auto 18px;
    display: none;
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 0;
    padding: 14px;
    background: var(--green);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .main-nav.open {
    display: grid;
  }

  .main-nav a {
    width: 100%;
    padding: 14px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: inline-grid;
    justify-self: end;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 36px;
    padding-top: 58px;
  }

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

  .hero h1,
  .hero-copy p {
    margin-inline: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    min-height: 540px;
  }

  .service-grid,
  .tool-grid,
  .project-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tool-grid {
    gap: 14px;
  }

  .about-band {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-visual {
    min-height: 440px;
  }

  .stat-row {
    grid-template-columns: 1fr;
  }

  .split-heading {
    align-items: start;
    flex-direction: column;
  }

  .project-filters {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .section-pad {
    width: min(100% - 28px, 560px);
    padding: 70px 0;
  }

  .site-header {
    top: 12px;
    width: calc(100% - 24px);
    margin-top: 12px;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero-copy p {
    font-size: 1rem;
  }

  .hero-actions .btn {
    width: min(100%, 260px);
  }

  .hero-visual {
    min-height: 430px;
  }

  .portrait-wrap {
    right: 8%;
    width: 84%;
    height: 430px;
  }

  .hero-ring {
    right: 4%;
    top: 20px;
    width: 72px;
    height: 72px;
  }

  .role-one {
    left: 2%;
    bottom: 128px;
  }

  .role-two {
    right: 2%;
    bottom: 82px;
  }

  .ticker-track {
    justify-content: flex-start;
    animation: marquee 16s linear infinite;
  }

  @keyframes marquee {
    to {
      transform: translateX(-45%);
    }
  }

  .service-grid,
  .tool-grid,
  .project-grid,
  .timeline-grid,
  .testimonial-grid,
  .blog-grid,
  .faq-contact,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .about-band {
    padding-top: 66px;
    padding-bottom: 66px;
  }

  .about-visual {
    min-height: 410px;
  }

  .about-visual img {
    right: 12%;
    width: 76%;
    max-height: 400px;
  }

  .skill-tags {
    right: 0;
    bottom: 32px;
    width: 92%;
  }

  .section-heading h2,
  .about-copy h2,
  .faq-panel h2,
  .contact-form h2 {
    font-size: 2.25rem;
  }

  .tool-card {
    min-height: 154px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 420px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-visual {
    min-height: 390px;
  }

  .portrait-wrap {
    height: 390px;
  }

  .role-pill {
    padding: 8px 10px;
    font-size: 0.68rem;
  }

  .section-heading h2,
  .about-copy h2,
  .faq-panel h2,
  .contact-form h2 {
    font-size: 2rem;
  }

  .faq-panel,
  .contact-form,
  .timeline-card,
  .price-card {
    padding: 22px;
  }

  .price-card strong {
    font-size: 2.3rem;
  }
}
