:root {
  --ink: #0a211f;
  --muted: #787d8a;
  --line: #dbe0e0;
  --paper: #f6fdf6;
  --white: #ffffff;
  --teal: #009c57;
  --teal-strong: #005c4f;
  --green-bright: #1fc763;
  --mint: #c2e5d1;
  --gold: #d79536;
  --clay: #b95645;
  --blue: #486782;
  --sage: #edf8f1;
  --warm: #fff8e8;
  --shadow: 0 18px 44px rgba(0, 71, 46, .12);
  --radius: 8px;
  --site-width: 1440px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #f6fdf6 0%, #ffffff 44%, #edf8f1 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
  border-bottom: 1px solid rgba(219, 224, 224, .78);
  background: rgba(250, 255, 250, .9);
  backdrop-filter: blur(16px);
}

main {
  padding-top: 68px;
}

.nav-wrap {
  width: min(var(--site-width), calc(100% - 48px));
  min-height: 68px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  width: 52px;
  height: 46px;
  display: block;
  flex: 0 0 auto;
  border-radius: 14px;
  background: rgba(250, 255, 250, .86);
  box-shadow: 0 10px 22px rgba(0, 92, 79, .12);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-text {
  display: grid;
  line-height: 1.12;
}

.brand-text small {
  color: #009c57;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.brand-text span {
  font-size: 15px;
}

.nav-toggle {
  width: 42px;
  height: 42px;
  display: none;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  width: 18px;
  height: 2px;
  display: block;
  background: currentColor;
  content: "";
}

.nav-toggle span::before {
  transform: translateY(-6px);
}

.nav-toggle span::after {
  transform: translateY(4px);
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.primary-nav a {
  min-height: 40px;
  padding: 9px 12px;
  border-radius: 6px;
  color: #415150;
  font-size: 14px;
  font-weight: 700;
}

.primary-nav a:hover,
.primary-nav a.active {
  color: var(--teal-strong);
  background: #e8f8ee;
}

.nav-cta {
  color: var(--white) !important;
  background: linear-gradient(180deg, var(--green-bright) 0%, var(--teal) 100%) !important;
  box-shadow: 0 10px 20px rgba(0, 71, 46, .16);
}

.hero {
  position: relative;
  min-height: 74svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--ink);
  border-bottom: 1px solid rgba(194, 229, 194, .72);
  background:
    radial-gradient(circle at 76% 56%, rgba(194, 229, 194, .28) 0, rgba(194, 229, 194, 0) 44%),
    linear-gradient(135deg, #ebfceb 0%, #ebfceb 62%, #e6f8e9 100%);
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(235, 252, 235, .98) 0%, rgba(235, 252, 235, .92) 34%, rgba(235, 252, 235, .46) 62%, rgba(235, 252, 235, .12) 100%),
    radial-gradient(circle at 22% 42%, rgba(235, 252, 235, .9) 0, rgba(235, 252, 235, 0) 36%);
  pointer-events: none;
  content: "";
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(var(--site-width), calc(100% - 48px));
  margin: 0 auto;
  padding: 58px 0 72px;
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(560px, 1fr);
  gap: 32px;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(620px, 100%);
  min-width: 0;
  margin-left: 0;
}


.hero-building {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  display: block;
  overflow: hidden;
  opacity: .68;
  pointer-events: none;
}

.hero-building::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(235, 252, 235, .94) 0%, rgba(235, 252, 235, .72) 30%, rgba(235, 252, 235, .24) 58%, rgba(235, 252, 235, 0) 100%),
    linear-gradient(180deg, rgba(235, 252, 235, .3) 0%, rgba(235, 252, 235, 0) 42%, rgba(235, 252, 235, .2) 100%);
  content: "";
}

.hero-building img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% 58%;
  filter: saturate(.92) contrast(.98) brightness(1.08);
  mix-blend-mode: multiply;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(42px, 6.4vw, 74px);
  line-height: .98;
  letter-spacing: 0;
  color: var(--teal-strong);
  overflow-wrap: break-word;
}

.hero p,
.page-hero p {
  max-width: 620px;
  margin: 24px 0 0;
  color: #465653;
  font-size: clamp(17px, 2.2vw, 22px);
  word-break: normal;
  overflow-wrap: normal;
}

.hero-brand-logo {
  width: clamp(96px, 13vw, 142px);
  height: auto;
  margin: 0 0 12px;
  filter: drop-shadow(0 14px 24px rgba(0, 71, 46, .14));
}

.leaf-divider {
  width: 132px;
  height: auto;
  margin-top: 24px;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 24px;
  font-weight: 800;
  line-height: 1.1;
}

.button:disabled {
  cursor: wait;
  opacity: .72;
}

.button.is-loading::before {
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255, 255, 255, .62);
  border-top-color: var(--white);
  border-radius: 50%;
  content: "";
  animation: spin .8s linear infinite;
}

.button.primary {
  color: var(--white);
  background: linear-gradient(180deg, var(--green-bright) 0%, var(--teal) 100%);
  box-shadow: 0 11px 20px rgba(0, 71, 46, .2);
}

.button.gold {
  color: var(--white);
  background: linear-gradient(180deg, var(--green-bright) 0%, var(--teal) 100%);
  box-shadow: 0 11px 20px rgba(0, 71, 46, .2);
}

.button.secondary {
  color: var(--teal-strong);
  border-color: #c2e5d1;
  background: rgba(255, 255, 255, .72);
}

.button.light {
  color: var(--teal-strong);
  border-color: var(--line);
  background: var(--white);
}

.section {
  padding: 84px 0;
}

.section.alt {
  background: #edf8f1;
}

.section.warm {
  background: var(--warm);
}

.container {
  width: min(var(--site-width), calc(100% - 48px));
  margin: 0 auto;
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-head.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-head h2,
.split-copy h2,
.cta-band h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
}

.section-head p,
.split-copy p,
.cta-band p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

.feature-card,
.service-card,
.price-card,
.contact-panel,
.metric,
.timeline-item {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 9px 20px rgba(0, 71, 46, .08), inset 0 0 4px rgba(196, 209, 204, .18);
}

.feature-card,
.service-card,
.price-card,
.metric,
.timeline-item {
  padding: 24px;
}

.icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 14px;
  color: var(--teal);
  background: #e8f8ee;
}

.icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card:nth-child(2n) .icon,
.service-card:nth-child(2n) .icon {
  color: #795017;
  background: #faead0;
}

.feature-card:nth-child(3n) .icon,
.service-card:nth-child(3n) .icon {
  color: #37546d;
  background: #e4edf4;
}

.feature-card h3,
.service-card h3,
.price-card h3,
.timeline-item h3,
.contact-panel h3 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.18;
}

.feature-card p,
.service-card p,
.price-card p,
.timeline-item p,
.contact-panel p {
  margin: 0;
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .9fr);
  gap: 52px;
  align-items: center;
}

.product-shot {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  background: var(--white);
}

.phone-shot {
  width: min(360px, 100%);
  height: min(760px, 170vw);
  justify-self: center;
  padding: 8px;
  border-radius: 34px;
  background: #fafffa;
}

.phone-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 26px;
}

.check-list,
.plain-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.plain-list li {
  position: relative;
  padding-left: 30px;
  color: #344342;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--teal);
  content: "✓";
  font-size: 12px;
  font-weight: 900;
}

.plain-list li::before {
  position: absolute;
  left: 0;
  top: 10px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.content-panel {
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 16px 36px rgba(0, 71, 46, .08);
}

.content-panel h2 {
  margin: 0 0 20px;
  color: var(--teal-strong);
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.1;
}

.content-panel h3 {
  margin: 28px 0 8px;
  color: var(--ink);
  font-size: 21px;
  line-height: 1.2;
}

.content-panel p {
  max-width: 920px;
  margin: 0 0 14px;
  color: #465653;
}

.privacy-policy p {
  max-width: none;
}

.content-panel a {
  color: var(--teal-strong);
  font-weight: 800;
}

.page-hero {
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(246, 253, 246, .98) 0%, rgba(255, 255, 255, .97) 58%, rgba(237, 251, 244, .98) 100%);
  border-bottom: 1px solid rgba(194, 229, 209, .72);
  overflow: hidden;
}

.page-hero .container {
  padding: 58px 0;
}

.page-hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 420px);
  gap: 26px;
  align-items: center;
}

.page-hero-inner::after {
  position: absolute;
  right: 210px;
  bottom: -44px;
  width: 260px;
  height: 54px;
  content: "";
  background: url("assets/leaf-divider.png") center / contain no-repeat;
  opacity: .18;
}

.page-hero p {
  color: #465653;
}

.page-hero .crumb {
  margin-bottom: 12px;
}

.page-hero h1 {
  max-width: 760px;
  font-size: clamp(34px, 4.6vw, 58px);
  line-height: 1.03;
}

.page-hero-art {
  position: relative;
  z-index: 1;
  min-height: 238px;
  padding: 24px;
  display: grid;
  grid-template-columns: 132px 1fr;
  align-content: center;
  align-items: center;
  column-gap: 22px;
  row-gap: 12px;
  border: 1px solid rgba(194, 229, 209, .86);
  border-radius: 18px;
  background:
    radial-gradient(circle at 18% 28%, rgba(31, 199, 99, .1) 0, rgba(31, 199, 99, 0) 44%),
    rgba(255, 255, 255, .72);
  box-shadow: 0 18px 44px rgba(0, 71, 46, .1);
}

.page-hero-art img {
  grid-row: span 3;
  width: 130px;
  margin: 0;
  filter: drop-shadow(0 10px 18px rgba(0, 71, 46, .12));
}

.page-hero-art span {
  min-height: 34px;
  display: flex;
  align-items: center;
  padding: 10px 14px;
  border: 1px solid #d9efe2;
  border-radius: 8px;
  color: #35514d;
  background: rgba(250, 255, 250, .86);
  font-size: 14px;
  font-weight: 800;
}

.crumb {
  margin: 0 0 16px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.service-card strong {
  display: inline-flex;
  margin-top: 16px;
  color: var(--teal-strong);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.metric strong {
  display: block;
  color: var(--teal-strong);
  font-size: 18px;
  line-height: 1.2;
}

.metric span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.45;
}

.timeline {
  display: grid;
  gap: 16px;
}

.price-card {
  display: flex;
  flex-direction: column;
}

.price {
  margin: 14px 0 18px;
  color: var(--teal-strong);
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
}

.price small {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.price-card .button {
  margin-top: auto;
}

.highlight {
  border-color: rgba(215, 149, 54, .7);
  box-shadow: 0 18px 42px rgba(177, 104, 23, .14);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(340px, .86fr) minmax(0, 1.14fr);
  gap: 30px;
  align-items: start;
  padding: 34px;
  border: 1px solid #d5e4dd;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(237, 248, 241, .96) 0%, rgba(255, 255, 255, .98) 52%, rgba(246, 253, 246, .96) 100%);
  box-shadow: 0 22px 54px rgba(0, 71, 46, .08);
}

.contact-panel {
  padding: 30px;
  border: 1px solid rgba(207, 218, 214, .88);
  border-radius: 14px;
  background: rgba(255, 255, 255, .76);
  box-shadow: 0 14px 34px rgba(0, 71, 46, .06);
}

.contact-info-panel {
  position: relative;
  overflow: hidden;
  border-color: rgba(194, 229, 209, .95);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .78) 0%, rgba(232, 248, 238, .78) 100%);
}

.contact-info-panel::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, var(--teal) 0%, var(--gold) 100%);
  content: "";
}

.contact-info-panel p {
  color: var(--muted);
}

.contact-form-panel {
  background: rgba(255, 255, 255, .92);
}

.account-delete-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #f6fdf6 100%);
}

.account-delete-panel {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, .72fr);
  gap: 34px;
  align-items: start;
  padding: 42px;
  border: 1px solid rgba(194, 229, 209, .86);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .96) 0%, rgba(237, 248, 241, .92) 100%);
  box-shadow: 0 18px 44px rgba(0, 71, 46, .08);
}

.account-delete-copy h2 {
  max-width: 760px;
  margin: 0;
  color: var(--teal-strong);
  font-size: clamp(30px, 3.8vw, 46px);
  line-height: 1.08;
}

.account-delete-copy p {
  max-width: 760px;
  margin: 16px 0 0;
  color: #465653;
  font-size: 17px;
}

.account-delete-note {
  padding: 16px 18px;
  border: 1px solid #d9efe2;
  border-radius: 10px;
  background: rgba(255, 255, 255, .74);
}

.account-delete-form {
  padding: 26px;
  border: 1px solid rgba(207, 218, 214, .88);
  border-radius: 14px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 12px 30px rgba(0, 71, 46, .06);
}

.contact-lines {
  display: grid;
  gap: 12px;
  margin-top: 28px;
  border-top: 0;
}

.contact-line {
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  border: 1px solid rgba(207, 218, 214, .82);
  border-radius: 10px;
  background: rgba(255, 255, 255, .8);
}

.contact-line strong {
  color: var(--teal-strong);
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.contact-line span {
  color: #213330;
}

form {
  display: grid;
  gap: 17px;
}

label {
  display: grid;
  gap: 7px;
  color: #334442;
  font-size: 14px;
  font-weight: 800;
}

input,
textarea,
select {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid #cfdad6;
  border-radius: 8px;
  color: var(--ink);
  background: #ffffff;
  font: inherit;
}

input:focus,
textarea:focus,
select:focus {
  outline: 2px solid rgba(0, 156, 87, .18);
  border-color: var(--teal);
}

textarea {
  min-height: 132px;
  resize: vertical;
}

.form-status {
  min-height: 24px;
  color: var(--teal-strong);
  font-weight: 800;
}

.form-status.loading {
  color: #795017;
}

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

.cta-band {
  padding: 50px;
  border-radius: 20px;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(246, 253, 246, .96) 0%, rgba(255, 255, 255, .94) 58%, rgba(237, 251, 244, .96) 100%),
    url("assets/leaf-divider.png") right 30px top 24px / 190px auto no-repeat;
  border: 1px solid rgba(194, 229, 209, .86);
  box-shadow: 0 18px 44px rgba(0, 71, 46, .1);
}

.cta-band h2 {
  color: var(--teal-strong);
}

.cta-band p {
  color: #465653;
}

.cta-band .eyebrow {
  color: var(--teal);
}

.cta-band .button.secondary {
  color: var(--teal-strong);
  border-color: #c2e5d1;
  background: #e8f8ee;
}

.site-footer {
  padding: 48px 0 28px;
  color: rgba(255, 255, 255, .82);
  background: var(--teal-strong);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, .65fr);
  gap: 28px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.footer-brand img {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
}

.footer-brand h2 {
  margin: 0 0 4px;
}

.footer-brand p {
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
}

.site-footer h2,
.site-footer h3 {
  margin: 0 0 12px;
  color: var(--white);
  font-size: 18px;
}

.site-footer p {
  margin: 0;
}

.site-footer .footer-brand h2 {
  margin: 0 0 4px;
}

.site-footer .footer-brand p {
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
}

.site-footer a {
  display: block;
  margin: 8px 0;
  color: rgba(255, 255, 255, .78);
}

.footer-bottom {
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .13);
  color: rgba(255, 255, 255, .58);
  font-size: 14px;
}

@media (max-width: 1180px) {
  .hero-inner {
    grid-template-columns: minmax(0, .82fr) minmax(420px, 1fr);
    gap: 24px;
  }

  .page-hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 360px);
    gap: 22px;
  }

  .page-hero-art {
    grid-template-columns: 104px 1fr;
    padding: 20px;
  }

  .page-hero-art img {
    width: 104px;
  }

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

  .hero-building {
    width: min(480px, 48vw);
    height: min(360px, 48svh);
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: grid;
  }

  .primary-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 76px;
    display: none;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

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

  .primary-nav a {
    width: 100%;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    padding: 58px 0 72px;
    grid-template-columns: 1fr;
  }

  .hero::before,
  .hero::after {
    display: none;
  }

  .hero-building {
    display: none;
  }

  .hero-copy {
    margin-left: 0;
  }

  .grid.three,
  .grid.two,
  .split,
  .metrics,
  .page-hero-inner,
  .contact-grid,
  .account-delete-panel,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 62px 0;
  }

  .page-hero .container {
    padding: 64px 0 58px;
  }

  .page-hero-inner {
    gap: 24px;
  }

  .page-hero-inner::after {
    display: none;
  }

  .page-hero-art {
    min-height: auto;
    grid-template-columns: 74px 1fr;
    align-items: center;
  }

  .page-hero-art img {
    grid-row: span 3;
    width: 72px;
    margin-bottom: 0;
  }

  .cta-band {
    padding: 30px 22px;
  }

  .content-panel {
    padding: 28px 22px;
  }
}

@media (max-width: 560px) {
  .nav-wrap,
  .container,
  .hero-inner {
    width: min(100% - 24px, var(--site-width));
  }

  .contact-grid {
    gap: 18px;
    padding: 16px;
    border-radius: 12px;
  }

  .contact-panel {
    padding: 18px;
    border-radius: 10px;
  }

  .account-delete-panel {
    padding: 20px;
    border-radius: 12px;
  }

  .account-delete-form {
    padding: 18px;
  }

  .contact-line {
    padding: 14px;
  }

  .brand-text span {
    max-width: 172px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(38px, 11vw, 42px);
  }

  .hero-copy,
  .hero p,
  .page-hero p {
    width: 100%;
    max-width: 100%;
  }

  .hero p,
  .page-hero p {
    font-size: 17px;
  }

  .page-hero-art {
    display: none;
  }

  .button {
    width: 100%;
  }

}
