:root {
  --navy: #17364f;
  --navy-dark: #0e2639;
  --navy-light: #2f5672;
  --gold: #b3976d;
  --gold-light: #ddd0b9;
  --cream: #f5f2ec;
  --paper: #fbfaf7;
  --white: #ffffff;
  --ink: #1e2b34;
  --muted: #60707b;
  --line: #d9dfe3;
  --shadow: 0 18px 45px rgba(14, 38, 57, .12);
  --radius: 18px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: .75rem 1rem;
  color: var(--white);
  background: var(--navy-dark);
  border-radius: 8px;
  transform: translateY(-160%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 250, 247, .92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(23, 54, 79, .08);
}
.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.brand { display: inline-flex; flex-direction: column; line-height: 1; }
.brand-main {
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 2.5vw, 2rem);
  letter-spacing: -.02em;
}
.brand-sub {
  margin-top: .35rem;
  color: var(--muted);
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.main-nav { display: flex; align-items: center; gap: 1.8rem; }
.main-nav > a:not(.button) {
  position: relative;
  color: var(--ink);
  font-size: .95rem;
  font-weight: 600;
}
.main-nav > a:not(.button)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -.4rem;
  height: 2px;
  background: var(--gold);
  transition: right .2s ease;
}
.main-nav > a:not(.button):hover::after,
.main-nav > a:not(.button):focus-visible::after { right: 0; }
.nav-toggle { display: none; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: .8rem 1.4rem;
  border: 1px solid var(--navy);
  border-radius: 8px;
  color: var(--white);
  background: var(--navy);
  font-weight: 700;
  line-height: 1.2;
  box-shadow: 0 8px 22px rgba(23, 54, 79, .18);
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.button:hover, .button:focus-visible {
  background: var(--navy-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(23, 54, 79, .24);
}
.button-small { min-height: 42px; padding: .65rem 1rem; font-size: .9rem; }
.button-light { color: var(--navy-dark); background: var(--white); border-color: var(--white); }
.button-light:hover, .button-light:focus-visible { background: var(--cream); }
.text-link, .card-link {
  color: var(--navy);
  font-weight: 800;
}
.text-link span, .card-link span { display: inline-block; transition: transform .2s ease; }
.text-link:hover span, .card-link:hover span { transform: translateX(4px); }

.hero {
  overflow: hidden;
  padding: clamp(4.5rem, 8vw, 7.5rem) 0 0;
  background:
    radial-gradient(circle at 85% 10%, rgba(179, 151, 109, .19), transparent 30%),
    linear-gradient(180deg, var(--paper) 0%, var(--cream) 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: clamp(2.5rem, 6vw, 5rem);
}
.eyebrow, .section-label {
  margin: 0 0 .8rem;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
h1, h2, h3 {
  margin-top: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--navy-dark);
  line-height: 1.12;
  text-wrap: balance;
}
h1 { margin-bottom: 1.4rem; font-size: clamp(2.65rem, 5.2vw, 4.65rem); letter-spacing: -.045em; }
.no-break { white-space: nowrap; }
#hero-title { overflow-wrap: normal; word-break: normal; hyphens: none; }
h2 { margin-bottom: 1.15rem; font-size: clamp(2rem, 4vw, 3.25rem); letter-spacing: -.035em; }
h3 { margin-bottom: .75rem; font-size: 1.55rem; }
p { margin: 0 0 1rem; }
.hero-text { max-width: 650px; color: var(--muted); font-size: clamp(1.06rem, 1.6vw, 1.25rem); }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 1.4rem; margin-top: 2rem; }
.trust-line { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.2rem; color: var(--navy); font-size: .88rem; font-weight: 800; }
.trust-line span { display: inline-flex; align-items: center; gap: .55rem; }
.trust-line span::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
.hero-media { position: relative; padding: 0 0 3.5rem 2rem; }
.hero-media::before {
  content: "";
  position: absolute;
  inset: 9% 8% 0 0;
  border-radius: 46% 54% 52% 48% / 38% 44% 56% 62%;
  background: rgba(179, 151, 109, .22);
  transform: rotate(-3deg);
}
.image-frame {
  position: relative;
  z-index: 1;
  overflow: hidden;
  aspect-ratio: 1.44 / 1;
  border: 8px solid rgba(255,255,255,.78);
  border-radius: 26px 26px 90px 26px;
  box-shadow: var(--shadow);
}
.image-frame picture { display: block; width: 100%; height: 100%; }
.image-frame img { width: 100%; height: 100%; object-fit: cover; object-position: 55% center; }
.hero-card {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 1rem;
  display: flex;
  flex-direction: column;
  max-width: 320px;
  padding: 1.2rem 1.4rem;
  border: 1px solid rgba(23, 54, 79, .08);
  border-radius: 12px;
  background: rgba(255,255,255,.94);
  box-shadow: var(--shadow);
}
.hero-card strong { color: var(--navy); font-family: Georgia, "Times New Roman", serif; font-size: 1.25rem; }
.hero-card span { color: var(--muted); font-size: .82rem; }
.focus-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(3rem, 7vw, 6rem);
  border-radius: var(--radius) var(--radius) 0 0;
  background: var(--white);
  box-shadow: var(--shadow);
}
.focus-item { display: flex; align-items: center; gap: 1rem; padding: 1.45rem 1.6rem; border-right: 1px solid var(--line); }
.focus-item:last-child { border-right: 0; }
.focus-item .icon { display: grid; place-items: center; flex: 0 0 44px; height: 44px; border: 1px solid var(--gold-light); border-radius: 50%; color: var(--gold); font-size: 1.1rem; }
.focus-item .icon svg { width: 23px; height: 23px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.focus-item span:last-child { display: flex; flex-direction: column; }
.focus-item strong { color: var(--navy); }
.focus-item small { color: var(--muted); font-size: .78rem; line-height: 1.35; }

.section { padding: clamp(4.5rem, 8vw, 7.5rem) 0; }
.section-tinted { background: var(--cream); }
.split-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(2rem, 7vw, 7rem); }
.large-prose { color: var(--muted); font-size: clamp(1.05rem, 1.5vw, 1.25rem); }
.signature-line { color: var(--navy); font-weight: 800; }
.photo-pair {
  display: grid;
  grid-template-columns: 1.35fr .85fr;
  gap: 1.35rem;
  margin-top: clamp(2.75rem, 6vw, 4.75rem);
}
.photo-card {
  position: relative;
  height: clamp(320px, 34vw, 430px);
  margin: 0;
  overflow: hidden;
  border: 8px solid rgba(255,255,255,.82);
  border-radius: var(--radius);
  background: var(--navy-dark);
  box-shadow: var(--shadow);
}
.photo-card picture { display: block; width: 100%; height: 100%; }
.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}
.photo-card-wide img { object-position: 62% center; }
.photo-card-accent img { object-position: 54% center; }
.photo-card:hover img { transform: scale(1.025); }
.photo-card figcaption {
  position: absolute;
  inset: auto 0 0;
  display: flex;
  flex-direction: column;
  gap: .2rem;
  padding: 2.8rem 1.4rem 1.25rem;
  color: var(--white);
  background: linear-gradient(180deg, transparent, rgba(9,29,44,.9));
}
.photo-card figcaption strong { font-family: Georgia, "Times New Roman", serif; font-size: 1.25rem; }
.photo-card figcaption span { color: rgba(255,255,255,.78); font-size: .86rem; line-height: 1.45; }
.section-heading { display: grid; grid-template-columns: 1.15fr .85fr; gap: 4rem; align-items: end; margin-bottom: 3rem; }
.section-heading > p { color: var(--muted); font-size: 1.05rem; }
.section-heading.compact { align-items: start; }
.service-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.35rem; }
.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: clamp(1.5rem, 3vw, 2.35rem);
  overflow: hidden;
  border: 1px solid rgba(23, 54, 79, .08);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 8px 28px rgba(14, 38, 57, .06);
  transition: transform .25s ease, box-shadow .25s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 18px 36px rgba(14, 38, 57, .11); }
.card-icon { position: absolute; top: 1rem; right: 1.2rem; color: rgba(23, 54, 79, .09); font-family: Georgia, "Times New Roman", serif; font-size: 4.5rem; line-height: 1; }
.card-lead { color: var(--navy); font-weight: 800; }
.service-card > p:not(.card-lead):not(.legal-note) { color: var(--muted); }
.service-card ul { margin: .4rem 0 1.4rem; padding-left: 1.2rem; color: var(--muted); }
.service-card li { margin-bottom: .4rem; }
.service-card li::marker { color: var(--gold); }
.card-link { margin-top: auto; padding-top: .5rem; }
.legal-note { padding: .8rem 1rem; border-left: 3px solid var(--gold); background: var(--cream); color: var(--muted); font-size: .82rem; }

.analysis-section { color: var(--white); background: var(--navy-dark); }
.analysis-grid { display: grid; grid-template-columns: .55fr 1.45fr; gap: clamp(2rem, 8vw, 7rem); align-items: center; }
.analysis-grid h2 { color: var(--white); }
.analysis-grid p:not(.section-label) { max-width: 750px; color: rgba(255,255,255,.75); }
.analysis-grid .lead { color: var(--white) !important; font-size: 1.25rem; font-weight: 700; }
.analysis-number { color: rgba(255,255,255,.09); font-family: Georgia, "Times New Roman", serif; font-size: clamp(5rem, 15vw, 11rem); font-weight: 700; line-height: .8; }
.analysis-section .button { margin-top: 1.2rem; color: var(--navy-dark); background: var(--white); border-color: var(--white); }

.contact-section { color: var(--white); background: linear-gradient(135deg, var(--navy) 0%, #214b68 100%); }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2.5rem, 7vw, 6rem); align-items: start; }
.contact-section h2 { color: var(--white); }
.section-label-light { color: var(--gold-light); }
.contact-intro { color: rgba(255,255,255,.78); font-size: 1.05rem; }
.contact-details { display: grid; gap: .75rem; margin: 2rem 0; }
.contact-details a { display: flex; align-items: center; gap: 1rem; padding: .7rem 0; color: var(--white); }
.contact-details a > span:first-child { display: grid; place-items: center; flex: 0 0 40px; height: 40px; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; }
.contact-details a > span:last-child { display: flex; flex-direction: column; font-weight: 700; }
.contact-details small { color: rgba(255,255,255,.6); font-size: .7rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.locations { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.locations > div { padding: 1rem; border: 1px solid rgba(255,255,255,.15); border-radius: 10px; background: rgba(255,255,255,.05); }
.locations strong, .locations span { display: block; }
.locations span { margin-top: .4rem; color: rgba(255,255,255,.7); font-size: .88rem; }
.contact-form { padding: clamp(1.5rem, 4vw, 2.5rem); border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius); background: rgba(255,255,255,.08); box-shadow: 0 24px 50px rgba(0,0,0,.12); }
.form-row { margin-bottom: 1rem; }
.form-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
label { display: block; margin-bottom: .35rem; font-size: .82rem; font-weight: 700; }
input, select, textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 8px;
  padding: .78rem .9rem;
  color: var(--white);
  background: rgba(10, 31, 47, .35);
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
select option { color: var(--ink); background: var(--white); }
textarea { resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--gold-light); box-shadow: 0 0 0 3px rgba(221, 208, 185, .16); }
.checkbox-row { display: flex; gap: .75rem; align-items: flex-start; margin: 1rem 0 1.4rem; color: rgba(255,255,255,.72); font-size: .78rem; font-weight: 400; }
.checkbox-row input { flex: 0 0 18px; width: 18px; height: 18px; margin-top: .18rem; accent-color: var(--gold); }
.form-hint, .form-status { margin-top: .8rem; color: rgba(255,255,255,.62); font-size: .75rem; }
.form-status { color: var(--gold-light); font-weight: 700; }

.legal-section { background: var(--white); }
.legal-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.2rem; }
.legal-grid article { padding: 1.7rem; border: 1px solid var(--line); border-radius: 12px; }
.legal-grid h3 { font-size: 1.25rem; }
.legal-grid p, .legal-grid dd { color: var(--muted); font-size: .9rem; }
.legal-grid a { color: var(--navy); text-decoration: underline; text-underline-offset: 3px; }
dl { margin: 1.2rem 0; }
dl > div { display: grid; grid-template-columns: 155px 1fr; gap: 1rem; padding: .5rem 0; border-bottom: 1px solid var(--line); }
dt { font-size: .82rem; font-weight: 800; }
dd { margin: 0; }

.site-footer { padding: 4rem 0 1.3rem; color: rgba(255,255,255,.72); background: #091d2c; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 2rem; }
.brand-footer .brand-main { color: var(--white); }
.brand-footer .brand-sub { color: rgba(255,255,255,.52); }
.footer-grid > div { display: flex; flex-direction: column; align-items: flex-start; gap: .55rem; }
.footer-grid strong { margin-bottom: .35rem; color: var(--white); }
.footer-grid a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; margin-top: 3rem; padding-top: 1.2rem; border-top: 1px solid rgba(255,255,255,.1); font-size: .8rem; }

:focus-visible { outline: 3px solid rgba(179, 151, 109, .75); outline-offset: 3px; }

@media (max-width: 920px) {
  .nav-toggle {
    display: inline-flex;
    width: 45px;
    height: 45px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
  }
  .nav-toggle span { width: 20px; height: 2px; background: var(--navy); transition: transform .2s ease, opacity .2s ease; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .main-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem 20px 1.4rem;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 16px 30px rgba(14,38,57,.09);
  }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: .8rem 0; }
  .main-nav .button { margin-top: .6rem; }
  .hero-grid, .split-layout, .photo-pair, .section-heading, .analysis-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 760px; }
  .hero-media { max-width: 720px; margin-inline: auto; padding-left: 0; }
  .focus-grid { grid-template-columns: 1fr; border-radius: var(--radius); margin-bottom: 2rem; }
  .focus-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .focus-item:last-child { border-bottom: 0; }
  .section-heading { gap: 1rem; }
  .photo-card { height: clamp(300px, 65vw, 430px); }
  .analysis-number { display: none; }
  .contact-grid { gap: 3rem; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .header-inner { min-height: 72px; }
  .brand-sub { display: none; }
  h1 { font-size: clamp(2.45rem, 13vw, 3.7rem); }
  .hero { padding-top: 3.5rem; }
  .hero-media { padding-bottom: 2.8rem; }
  .hero-card { left: .7rem; right: .7rem; bottom: .2rem; }
  .photo-pair { gap: 1rem; }
  .photo-card { height: auto; aspect-ratio: 4 / 3; border-width: 5px; }
  .photo-card figcaption { padding: 2.5rem 1rem 1rem; }
  .service-grid, .legal-grid, .locations, .form-columns { grid-template-columns: 1fr; }
  .service-card { padding: 1.4rem; }
  .card-icon { font-size: 3.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child, .footer-grid > div:last-child { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
  dl > div { grid-template-columns: 1fr; gap: .2rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
/* Enhancements: SEO-friendly responsive legal pages and return-to-top */
html { scroll-padding-top: 96px; }
body { overflow-wrap: break-word; }
main { min-width: 0; }
.checkbox-row a { color: var(--white); text-decoration: underline; text-underline-offset: 3px; }

.return-to-top {
  position: fixed;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 90;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 50%;
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 12px 28px rgba(14, 38, 57, .28);
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity .2s ease, visibility .2s ease, transform .2s ease, background .2s ease;
}
.return-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.return-to-top:hover, .return-to-top:focus-visible { background: var(--navy-dark); transform: translateY(-2px); }

.legal-hero {
  padding: clamp(4rem, 9vw, 7rem) 0 clamp(3rem, 6vw, 5rem);
  background:
    radial-gradient(circle at 88% 12%, rgba(179, 151, 109, .22), transparent 30%),
    linear-gradient(180deg, var(--paper) 0%, var(--cream) 100%);
}
.legal-page-intro { max-width: 850px; }
.legal-page-intro h1 { margin-bottom: 1rem; font-size: clamp(2.7rem, 7vw, 5rem); }
.legal-page-intro h1.legal-title-long {
  font-size: clamp(1.75rem, 6.6vw, 5rem);
  white-space: nowrap;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  letter-spacing: -.04em;
}
.legal-page-intro > p:last-child { max-width: 720px; color: var(--muted); font-size: clamp(1rem, 1.7vw, 1.2rem); }
.legal-document { background: var(--white); }
.legal-document-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, .38fr); gap: clamp(2rem, 6vw, 5rem); align-items: start; }
.legal-copy { min-width: 0; }
.legal-copy h2, .legal-side-card h2 { margin-top: 2.4rem; font-size: clamp(1.35rem, 2.2vw, 1.8rem); }
.legal-copy h2:first-child, .legal-side-card h2:first-child { margin-top: 0; }
.legal-copy p, .legal-copy li, .legal-side-card p, .legal-side-card li { color: var(--muted); }
.legal-copy a, .legal-side-card a { color: var(--navy); text-decoration: underline; text-underline-offset: 3px; }
.legal-side-card { position: sticky; top: 112px; padding: clamp(1.35rem, 3vw, 2rem); border: 1px solid var(--line); border-radius: var(--radius); background: var(--cream); box-shadow: 0 12px 34px rgba(14,38,57,.07); }
.legal-notice { margin-top: 1.5rem; padding: 1rem; border-left: 4px solid var(--gold); border-radius: 0 8px 8px 0; background: var(--white); font-size: .9rem; }
.check-list { margin: 0; padding-left: 1.15rem; }
.check-list li { margin-bottom: .65rem; }
.check-list li::marker { color: var(--gold); }

@media (min-width: 921px) and (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr 1fr; }
  .section-heading { gap: 2.5rem; }
}

@media (max-width: 920px) {
  .legal-document-grid { grid-template-columns: 1fr; }
  .legal-side-card { position: static; }
  .main-nav { max-height: calc(100vh - 72px); overflow-y: auto; }
}

@media (max-width: 680px) {
  body { font-size: 15.5px; }
  .section { padding-block: 4rem; }
  .hero-actions { align-items: stretch; }
  .hero-actions .button { width: 100%; }
  .focus-item { padding: 1.15rem 1.2rem; }
  .contact-form { padding: 1.25rem; }
  .return-to-top { width: 44px; height: 44px; right: 14px; bottom: 14px; }
}

@media (max-width: 430px) {
  .container { width: min(calc(100% - 22px), var(--container)); }
  h1 { font-size: clamp(2.25rem, 12vw, 3.05rem); }
  h2 { font-size: clamp(1.85rem, 9vw, 2.45rem); }
  .hero { padding-top: 2.8rem; }
  .image-frame { border-width: 5px; border-radius: 20px 20px 54px 20px; }
  .hero-card { padding: 1rem; }
  .service-card { border-radius: 14px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > div, .footer-grid > div:first-child, .footer-grid > div:last-child { grid-column: auto; }
}
