:root {
  --bg: #ecd7b0;
  --bg-soft: #f7efe2;
  --bg-wash: #f8f1e7;
  --ink: #4c342f;
  --ink-soft: #6c5651;
  --terracotta: #b33c33;
  --terracotta-deep: #91261f;
  --teal: #0f6f68;
  --teal-deep: #0a4e4a;
  --gold: #d5ae74;
  --white: #ffffff;
  --shadow-lg: 0 28px 90px rgba(76, 52, 47, 0.16);
  --shadow-md: 0 20px 50px rgba(76, 52, 47, 0.12);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: min(1180px, calc(100vw - 3rem));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top right, rgba(179, 60, 51, 0.12), transparent 26%),
    radial-gradient(circle at left 15% bottom 25%, rgba(15, 111, 104, 0.14), transparent 28%),
    linear-gradient(180deg, #f0debb 0%, #f7efe2 100%);
  color: var(--ink);
}

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

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-shell {
  width: var(--container);
  margin: 0 auto;
  padding: 1.4rem 0 2.5rem;
}

.site-header {
  position: sticky;
  top: 1rem;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.2rem;
  background: rgba(247, 239, 226, 0.82);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(76, 52, 47, 0.08);
  border-radius: 999px;
  box-shadow: var(--shadow-md);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.brand img {
  flex: 0 0 auto;
  width: 74px;
  height: 74px;
  border-radius: 24px;
  box-shadow: 0 12px 30px rgba(179, 60, 51, 0.12);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.brand-copy strong {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.brand-copy span:last-child {
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  font-weight: 700;
  color: var(--ink-soft);
}

.site-nav a {
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  transition: color 180ms ease;
}

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

.site-nav a[aria-current="page"] {
  background: rgba(179, 60, 51, 0.12);
  color: var(--terracotta);
}

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

.header-cta,
.header-compare,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 800;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

.header-cta {
  padding: 0.9rem 1.25rem;
  background: var(--terracotta);
  color: var(--white);
  box-shadow: 0 12px 25px rgba(179, 60, 51, 0.22);
}

.header-compare {
  padding: 0.9rem 1.15rem;
  border: 1px solid rgba(76, 52, 47, 0.12);
  background: rgba(255, 255, 255, 0.56);
  color: var(--ink);
}

.header-cta:hover,
.header-compare:hover,
.header-cta:focus-visible,
.header-compare:focus-visible,
.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  min-height: calc(100svh - 8rem);
}

.hero-copy,
.hero-aside,
.service-card,
.step-card,
.quote-card,
.contact-card,
.story-card,
.insight-card {
  animation: lift-in 780ms ease both;
}

.hero-aside {
  animation-delay: 110ms;
}

.hero h1,
.section-heading h2,
.contact-copy h2 {
  margin: 0;
  font-family: "Fraunces", serif;
  font-weight: 600;
  line-height: 0.96;
  letter-spacing: -0.03em;
}

.hero h1 {
  font-size: clamp(3.3rem, 8vw, 6.4rem);
  max-width: 13ch;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(15, 111, 104, 0.1);
  color: var(--teal-deep);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero-intro {
  max-width: 58ch;
  margin: 1.4rem 0 0;
  font-size: 1.17rem;
  line-height: 1.75;
  color: var(--ink-soft);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.button {
  padding: 1rem 1.35rem;
}

.button-primary {
  background: linear-gradient(135deg, var(--terracotta) 0%, #c8554a 100%);
  color: var(--white);
  box-shadow: 0 16px 30px rgba(179, 60, 51, 0.22);
}

.button-secondary {
  border: 1px solid rgba(76, 52, 47, 0.12);
  background: rgba(255, 255, 255, 0.58);
  color: var(--ink);
}

.hero-list {
  display: grid;
  gap: 0.9rem;
  margin-top: 2rem;
}

.hero-list li {
  position: relative;
  padding-left: 1.6rem;
  color: var(--ink-soft);
  font-weight: 600;
}

.hero-list li::before {
  content: "";
  position: absolute;
  top: 0.55rem;
  left: 0;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal) 0%, var(--gold) 100%);
}

.hero-aside {
  display: grid;
  gap: 1.15rem;
}

.consult-card {
  padding: 2rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(155deg, var(--terracotta) 0%, var(--terracotta-deep) 100%);
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.pill,
.service-topline {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.35rem 0.72rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pill {
  background: rgba(255, 255, 255, 0.16);
}

.consult-card h2 {
  margin: 1rem 0 0;
  font-family: "Fraunces", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
}

.consult-card p {
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.72;
}

.consult-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.5rem;
}

.consult-links a {
  padding: 0.85rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-weight: 700;
}

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

.mini-card {
  min-height: 100%;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.mini-card h3 {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 800;
}

.mini-card p {
  margin: 0.8rem 0 0;
  line-height: 1.7;
}

.mini-card-light {
  background: rgba(255, 255, 255, 0.74);
}

.mini-card-accent {
  background: rgba(15, 111, 104, 0.94);
  color: var(--white);
}

.mini-card-deep {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(76, 52, 47, 0.96) 0%, rgba(15, 111, 104, 0.9) 100%);
  color: var(--white);
}

.statement-band {
  padding-top: 0;
}

.statement-band p {
  margin: 0;
  padding: 1.2rem 1.5rem;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(15, 111, 104, 0.98) 0%, rgba(15, 111, 104, 0.72) 100%);
  color: var(--white);
  font-family: "Fraunces", serif;
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  text-align: center;
  box-shadow: var(--shadow-md);
}

.comparison-banner {
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow-md);
}

.comparison-banner p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.7;
}

.comparison-banner strong {
  color: var(--ink);
}

.section-heading {
  max-width: 40rem;
}

.section-copy {
  margin: 1rem 0 0;
  color: var(--ink-soft);
  line-height: 1.78;
}

.section-heading h2,
.contact-copy h2 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
}

.section-heading-tight {
  max-width: 36rem;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.story-card,
.insight-card,
.contact-card {
  padding: 2rem;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-md);
}

.story-card p,
.insight-card p,
.contact-copy p,
.step-card p,
.service-card li,
.contact-note {
  color: var(--ink-soft);
  line-height: 1.78;
}

.story-card p + p {
  margin-top: 1rem;
}

.insight-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.74) 0%, rgba(255, 247, 235, 0.94) 100%);
}

.insight-card h3,
.service-card h3,
.step-card h3 {
  margin: 0;
  font-size: 1.5rem;
  line-height: 1.2;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.25rem;
}

.tag-list li {
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: rgba(15, 111, 104, 0.08);
  color: var(--teal-deep);
  font-weight: 700;
}

.credential-note {
  margin-top: 1.5rem;
  padding: 1.2rem 1.25rem;
  border-radius: var(--radius-md);
  background: var(--terracotta);
  color: var(--white);
  line-height: 1.65;
  font-weight: 700;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: 2rem;
}

.service-card {
  padding: 1.8rem;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-md);
}

.service-card:nth-child(2) {
  animation-delay: 90ms;
}

.service-card:nth-child(3) {
  animation-delay: 170ms;
}

.service-card:nth-child(4) {
  animation-delay: 250ms;
}

.service-card-featured {
  background: linear-gradient(160deg, rgba(179, 60, 51, 0.98) 0%, rgba(145, 38, 31, 0.96) 100%);
  color: var(--white);
}

.service-card-featured li,
.service-card-featured .service-topline {
  color: rgba(255, 255, 255, 0.86);
}

.service-topline {
  margin-bottom: 1rem;
  background: rgba(15, 111, 104, 0.1);
  color: var(--teal-deep);
}

.service-card-featured .service-topline {
  background: rgba(255, 255, 255, 0.13);
}

.service-card ul {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.2rem;
}

.service-card p {
  color: var(--ink-soft);
  line-height: 1.78;
}

.service-card-featured p {
  color: rgba(255, 255, 255, 0.84);
}

.service-card li {
  position: relative;
  padding-left: 1.5rem;
}

.service-card li::before {
  content: "";
  position: absolute;
  top: 0.6rem;
  left: 0;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.72;
}

.approach-panel {
  padding: 2.2rem;
  border-radius: calc(var(--radius-xl) + 6px);
  background:
    linear-gradient(135deg, rgba(15, 111, 104, 0.96) 0%, rgba(10, 78, 74, 0.98) 100%);
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.approach-panel .eyebrow {
  background: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.86);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.step-card {
  min-height: 100%;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}

.step-card:nth-child(2) {
  animation-delay: 70ms;
}

.step-card:nth-child(3) {
  animation-delay: 140ms;
}

.step-card:nth-child(4) {
  animation-delay: 210ms;
}

.step-number {
  display: inline-block;
  margin-bottom: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.step-card p {
  color: rgba(255, 255, 255, 0.8);
}

.quote-section {
  padding-top: 2rem;
}

.quote-card {
  margin: 0;
  padding: clamp(2rem, 6vw, 4rem);
  border-radius: calc(var(--radius-xl) + 10px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 250, 242, 0.94) 100%);
  box-shadow: var(--shadow-md);
  font-family: "Fraunces", serif;
  font-size: clamp(2rem, 5vw, 3.7rem);
  line-height: 1.08;
  text-align: center;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.75fr);
  gap: 1.4rem;
  align-items: center;
}

.contact-region {
  font-weight: 700;
  color: var(--teal-deep);
}

.contact-card {
  background: linear-gradient(180deg, rgba(179, 60, 51, 0.97) 0%, rgba(145, 38, 31, 0.96) 100%);
  color: var(--white);
}

.contact-link {
  display: block;
  padding: 1.05rem 1.15rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.1);
}

.contact-link + .contact-link {
  margin-top: 0.8rem;
}

.contact-link span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-link strong {
  display: block;
  margin-top: 0.3rem;
  font-size: 1.3rem;
  line-height: 1.3;
}

.contact-note {
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.6rem 0 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.site-footer p {
  margin: 0;
}

.page-hero,
.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.78fr);
  gap: 1.4rem;
  align-items: start;
}

.page-hero {
  padding-top: 4.5rem;
}

.page-hero h1 {
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: clamp(2.9rem, 6vw, 5.2rem);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.page-intro {
  margin: 1.1rem 0 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
  line-height: 1.8;
}

.page-hero-aside {
  display: grid;
  gap: 1rem;
}

.info-card,
.detail-card,
.link-card,
.sidebar-card,
.faq-card {
  padding: 1.6rem;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow-md);
}

.info-card h3,
.detail-card h3,
.link-card h3,
.sidebar-card h3,
.faq-card h3,
.story-card h3 {
  margin: 0;
  font-size: 1.45rem;
  line-height: 1.2;
}

.info-card p,
.detail-card p,
.link-card p,
.faq-card p,
.sidebar-card p {
  margin: 0.9rem 0 0;
  color: var(--ink-soft);
  line-height: 1.78;
}

.info-card-accent {
  background: linear-gradient(160deg, rgba(179, 60, 51, 0.97) 0%, rgba(145, 38, 31, 0.96) 100%);
  color: var(--white);
}

.info-card-accent p {
  color: rgba(255, 255, 255, 0.84);
}

.info-card-deep {
  background: linear-gradient(135deg, rgba(15, 111, 104, 0.96) 0%, rgba(10, 78, 74, 0.98) 100%);
  color: var(--white);
}

.info-card-deep p {
  color: rgba(255, 255, 255, 0.84);
}

.link-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.link-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.link-card:hover,
.link-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.card-kicker,
.card-link {
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.card-kicker {
  color: var(--teal-deep);
  font-size: 0.82rem;
}

.card-link {
  margin-top: auto;
  padding-top: 1.35rem;
  color: var(--terracotta);
  font-size: 0.82rem;
}

.detail-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.check-list {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.25rem;
}

.check-list li {
  position: relative;
  padding-left: 1.55rem;
  color: var(--ink-soft);
  line-height: 1.7;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.55rem;
  left: 0;
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--terracotta) 0%, var(--gold) 100%);
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: center;
  padding: 2rem;
  border-radius: calc(var(--radius-xl) + 6px);
  background: linear-gradient(135deg, rgba(15, 111, 104, 0.96) 0%, rgba(10, 78, 74, 0.98) 100%);
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.cta-panel .eyebrow {
  background: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.86);
}

.cta-panel h2 {
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.02;
}

.cta-panel .section-copy {
  color: rgba(255, 255, 255, 0.82);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: flex-end;
}

.cta-panel .button-secondary {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 1.25rem;
  align-items: start;
}

.contact-form {
  padding: 2rem;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-md);
}

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

.field {
  display: grid;
  gap: 0.45rem;
}

.field span {
  font-weight: 800;
  color: var(--ink);
}

.field input,
.field textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(76, 52, 47, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  font: inherit;
}

.field textarea {
  resize: vertical;
}

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

.contact-form .button {
  margin-top: 1.2rem;
  border: 0;
  cursor: pointer;
}

.contact-brand {
  margin: 0 0 1rem;
  font-weight: 800;
  font-size: 1.05rem;
}

.single-step-row {
  grid-template-columns: minmax(0, 260px);
  justify-content: center;
  margin-top: 1rem;
}

.site-footer-rich {
  align-items: center;
  padding-top: 1.2rem;
}

.footer-brand {
  display: grid;
  gap: 0.3rem;
}

.footer-brand p:first-child {
  font-weight: 800;
  color: var(--ink);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1rem;
}

.footer-links a {
  color: var(--ink-soft);
  font-weight: 700;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--terracotta);
}

@keyframes lift-in {
  from {
    opacity: 0;
    transform: translateY(26px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1080px) {
  .site-header {
    border-radius: 30px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero,
  .about-layout,
  .contact-section,
  .steps-grid,
  .page-hero,
  .content-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 3rem;
  }

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

  .cta-panel {
    grid-template-columns: 1fr;
  }

  .cta-actions {
    justify-content: flex-start;
  }

  .steps-grid {
    gap: 0.9rem;
  }
}

@media (max-width: 860px) {
  .brand {
    width: 100%;
    justify-content: center;
  }

  .site-nav {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.55rem 0.65rem;
  }

  .header-actions {
    width: 100%;
    flex-direction: column;
  }

  .header-cta,
  .header-compare {
    width: 100%;
  }

  .hero-grid,
  .service-grid,
  .link-grid,
  .detail-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .mini-card-deep {
    grid-column: auto;
  }

  .statement-band p {
    border-radius: var(--radius-xl);
  }

  .site-footer {
    flex-direction: column;
    padding-bottom: 1rem;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(100vw - 1.5rem, 1180px);
  }

  .site-header {
    top: 0.75rem;
    padding: 0.9rem;
  }

  .brand {
    align-items: flex-start;
    justify-content: flex-start;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .brand-copy strong {
    font-size: 0.88rem;
  }

  .brand-copy span:last-child {
    font-size: 0.85rem;
  }

  .hero h1 {
    max-width: none;
  }

  .story-card,
  .insight-card,
  .service-card,
  .consult-card,
  .approach-panel,
  .contact-card,
  .info-card,
  .detail-card,
  .link-card,
  .sidebar-card,
  .faq-card,
  .cta-panel,
  .contact-form {
    padding: 1.4rem;
  }

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

  .quote-card {
    font-size: clamp(1.6rem, 8vw, 2.5rem);
  }
}
