:root {
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --page-pad: clamp(1rem, 4vw, 3.5rem);
  --content-width: 86rem;
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 20rem;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  min-height: 100svh;
  background: var(--page-bg);
  color: var(--text);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

.theme-flyingdancer {
  --page-bg: #0b1f33;
  --surface: #132c46;
  --surface-soft: #1b3955;
  --text: #f8f6f1;
  --muted: #c8d4de;
  --accent: #d4aa62;
  --accent-strong: #f0d9a8;
  --accent-ink: #10283e;
  --line: rgb(221 229 235 / 22%);
  --focus: #7dd3fc;
}

.theme-gmimi {
  --page-bg: #f2f5f4;
  --surface: #ffffff;
  --surface-soft: #e2ebe8;
  --text: #132b2f;
  --muted: #4c5f61;
  --accent: #2f7a72;
  --accent-strong: #b9ded5;
  --accent-ink: #0f2b2a;
  --line: rgb(19 43 47 / 20%);
  --focus: #005fcc;
}

.theme-goodbies {
  --page-bg: #f5f2e8;
  --surface: #fffdf7;
  --surface-soft: #e2ecdf;
  --text: #18372f;
  --muted: #51655e;
  --accent: #d5684a;
  --accent-strong: #2f715f;
  --accent-ink: #fffdf7;
  --line: rgb(24 55 47 / 18%);
  --focus: #005fcc;
}

.theme-buyhour {
  --page-bg: #111a34;
  --surface: #192544;
  --surface-soft: #222f50;
  --text: #f7f8fc;
  --muted: #c5ccdc;
  --accent: #f1a92f;
  --accent-strong: #ffd271;
  --accent-ink: #18213b;
  --line: rgb(235 239 248 / 20%);
  --focus: #70d6ff;
}

.theme-maladang {
  --page-bg: #241714;
  --surface: #32201b;
  --surface-soft: #47251d;
  --text: #fff7e8;
  --muted: #e2cbbd;
  --accent: #f05a35;
  --accent-strong: #ffc45b;
  --accent-ink: #32150f;
  --line: rgb(255 238 215 / 20%);
  --focus: #7dd3fc;
}

.theme-psb,
.theme-bca {
  --page-bg: #f3f5f7;
  --surface: #ffffff;
  --surface-soft: #e7ebef;
  --text: #23303a;
  --muted: #566570;
  --accent: #6d7780;
  --accent-strong: #304b60;
  --accent-ink: #ffffff;
  --line: rgb(35 48 58 / 18%);
  --focus: #005fcc;
}

.skip-link {
  position: fixed;
  inset-block-start: var(--space-4);
  inset-inline-start: var(--space-4);
  z-index: 20;
  padding: var(--space-3) var(--space-4);
  border-radius: 999px;
  background: var(--accent-strong);
  color: var(--accent-ink);
  font-weight: 800;
  transform: translateY(-180%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

.page-shell {
  width: min(100%, var(--content-width));
  min-height: 100vh;
  min-height: 100svh;
  margin-inline: auto;
  padding-inline: var(--page-pad);
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.site-header,
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

.site-header {
  min-height: 5.5rem;
  border-block-end: 1px solid var(--line);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  min-height: 2.75rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.wordmark-mark {
  display: grid;
  width: 2.25rem;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--accent-strong);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
}

.theme-gmimi .wordmark-mark {
  border-radius: 0.45rem;
  background: var(--text);
  color: var(--accent-strong);
}

.theme-goodbies .wordmark-mark,
.theme-psb .wordmark-mark,
.theme-bca .wordmark-mark {
  background: var(--text);
  color: #fff;
}

.theme-maladang .wordmark-mark {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff7e8;
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 1rem;
}

.availability {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.availability > span {
  width: 0.58rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--accent-strong);
  box-shadow: 0 0 0 0.28rem color-mix(in srgb, var(--accent-strong) 18%, transparent);
}

main {
  display: grid;
  align-items: center;
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  gap: clamp(2.5rem, 6vw, 6.5rem);
  padding-block: clamp(3.5rem, 9vw, 8rem);
}

.hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
}

.eyebrow,
.sale-kicker {
  margin: 0 0 var(--space-4);
  color: var(--accent-strong);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.theme-gmimi .eyebrow,
.theme-gmimi .sale-kicker {
  color: #245f5a;
}

.theme-goodbies .eyebrow,
.theme-goodbies .sale-kicker,
.theme-psb .eyebrow,
.theme-psb .sale-kicker,
.theme-bca .eyebrow,
.theme-bca .sale-kicker {
  color: var(--accent-strong);
}

h1,
h2,
p {
  margin-block-start: 0;
}

h1 {
  max-width: 12ch;
  margin-block-end: var(--space-6);
  font-size: clamp(3rem, 11vw, 7.5rem);
  font-weight: 780;
  letter-spacing: -0.075em;
  line-height: 0.88;
  overflow-wrap: anywhere;
}

h1 span,
h1 b {
  font-weight: inherit;
}

h1 b {
  color: var(--accent);
}

.theme-flyingdancer h1 {
  max-width: none;
  font-size: clamp(3rem, 7vw, 5.6rem);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.075em;
  overflow-wrap: normal;
  white-space: nowrap;
}

.theme-flyingdancer h1 span {
  font-style: italic;
}

.theme-gmimi h1 {
  text-transform: lowercase;
}

.theme-gmimi h1 span {
  display: inline-block;
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 0.13em;
  text-underline-offset: 0.06em;
}

.theme-buyhour h1 span {
  color: var(--accent-strong);
}

.theme-goodbies h1,
.theme-buyhour h1 {
  max-width: none;
  font-size: clamp(3rem, 7.5vw, 6.5rem);
  overflow-wrap: normal;
  word-break: normal;
}

.theme-maladang h1 {
  max-width: none;
  font-size: clamp(3rem, 7vw, 6rem);
  font-family: Georgia, "Noto Serif SC", "Songti SC", serif;
  font-weight: 600;
  overflow-wrap: normal;
  word-break: normal;
}

.theme-psb h1,
.theme-bca h1 {
  max-width: none;
  font-size: clamp(3rem, 7vw, 6.2rem);
  overflow-wrap: normal;
  word-break: normal;
}

.theme-maladang h1 .han {
  display: block;
  margin-block-end: var(--space-3);
  color: var(--accent-strong);
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 0.48em;
  font-weight: 750;
  letter-spacing: 0.12em;
  line-height: 1.1;
}

.hero-intro {
  max-width: 39rem;
  margin-block-end: var(--space-8);
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.65;
}

.domain-points {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin: 0;
  padding: 0;
  list-style: none;
}

.domain-points li {
  padding: 0.55rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 750;
}

.sale-card {
  position: relative;
  z-index: 3;
  display: grid;
  gap: var(--space-6);
  align-self: center;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border: 1px solid var(--line);
  border-radius: 1.5rem;
  background: color-mix(in srgb, var(--surface) 94%, transparent);
  box-shadow: 0 2rem 5rem rgb(0 0 0 / 18%);
}

.theme-flyingdancer .sale-card {
  backdrop-filter: blur(18px);
}

.theme-gmimi .sale-card {
  border: 2px solid var(--text);
  border-radius: 0;
  box-shadow: 0.75rem 0.75rem 0 var(--accent);
}

.theme-goodbies .sale-card {
  box-shadow: 0.75rem 0.75rem 0 #b8d4c7;
}

.theme-buyhour .sale-card {
  box-shadow: 0 1.5rem 5rem rgb(0 0 0 / 32%);
}

.theme-maladang .sale-card {
  border-color: rgb(255 196 91 / 40%);
  background: linear-gradient(145deg, #3b231c, #2b1b17);
}

.sale-card h2 {
  margin-block-end: var(--space-3);
  font-size: clamp(1.8rem, 4vw, 2.55rem);
  letter-spacing: -0.045em;
  line-height: 1.1;
}

.sale-card p {
  margin-block-end: 0;
  color: var(--muted);
}

.offer-summary {
  display: grid;
  gap: var(--space-1);
  padding-block: var(--space-5);
  border-block: 1px solid var(--line);
}

.offer-summary span,
.offer-summary small {
  color: var(--muted);
  font-size: 0.76rem;
}

.offer-summary span {
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.offer-summary strong {
  font-size: clamp(1.3rem, 3vw, 1.75rem);
  letter-spacing: -0.03em;
}

.button {
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  padding: var(--space-3) var(--space-5);
  border-radius: 999px;
  background: var(--accent-strong);
  color: var(--accent-ink);
  font-size: 0.88rem;
  font-weight: 850;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
}

.theme-gmimi .button {
  border: 2px solid var(--text);
  border-radius: 0;
}

.theme-goodbies .button,
.theme-psb .button,
.theme-bca .button {
  color: #fff;
}

.button:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
}

.button:active {
  transform: translateY(0);
}

.secure-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-size: 0.73rem;
  text-align: center;
}

.secure-note svg {
  width: 1rem;
  flex: 0 0 auto;
  fill: currentColor;
}

.brand-potential {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  padding-block: clamp(4rem, 8vw, 7rem);
  border-block-start: 1px solid var(--line);
}

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

.section-heading h2,
.name-story h2 {
  margin-block-end: var(--space-5);
  font-size: clamp(2rem, 5vw, 4rem);
  letter-spacing: -0.055em;
  line-height: 1.05;
}

.section-heading > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.7;
}

.business-grid {
  display: grid;
  gap: var(--space-4);
}

.business-card {
  position: relative;
  min-height: 15rem;
  padding: clamp(1.4rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: var(--surface);
}

.business-card h3 {
  max-width: 15ch;
  margin: var(--space-10) 0 var(--space-3);
  font-size: 1.16rem;
  letter-spacing: -0.025em;
  line-height: 1.25;
}

.business-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.65;
}

.card-number {
  position: absolute;
  inset-block-start: var(--space-5);
  inset-inline-end: var(--space-5);
  color: var(--accent-strong);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.theme-gmimi .business-card {
  border: 2px solid var(--text);
  border-radius: 0;
  box-shadow: 0.35rem 0.35rem 0 var(--accent-strong);
}

.theme-goodbies .business-card {
  border-radius: 1.25rem 1.25rem 3rem 1.25rem;
}

.theme-buyhour .business-card,
.theme-maladang .business-card {
  background: color-mix(in srgb, var(--surface) 95%, transparent);
}

.theme-gmimi .card-number {
  color: #245f5a;
}

.name-story {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  padding: clamp(1.5rem, 5vw, 4rem);
  border: 1px solid var(--line);
  border-radius: 1.5rem;
  background: var(--surface-soft);
}

.theme-gmimi .name-story {
  border: 2px solid var(--text);
  border-radius: 0;
  background: var(--surface);
}

.story-label {
  margin-block-end: var(--space-4);
  color: var(--accent-strong);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.theme-gmimi .story-label {
  color: #245f5a;
}

.theme-goodbies .story-label,
.theme-psb .story-label,
.theme-bca .story-label {
  color: var(--accent-strong);
}

.name-story h2 {
  max-width: 12ch;
  margin-block-end: 0;
}

.story-expressions {
  display: grid;
  gap: var(--space-6);
}

.story-expressions article + article {
  padding-block-start: var(--space-6);
  border-block-start: 1px solid var(--line);
}

.story-expressions h3 {
  margin: 0 0 var(--space-3);
  color: var(--accent-strong);
  font-size: clamp(1.3rem, 3vw, 1.7rem);
  letter-spacing: -0.025em;
}

.theme-gmimi .story-expressions h3 {
  color: #245f5a;
}

.theme-goodbies .story-expressions h3,
.theme-psb .story-expressions h3,
.theme-bca .story-expressions h3 {
  color: var(--accent-strong);
}

.story-expressions p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.7;
}

.story-expressions p + p {
  margin-block-start: var(--space-3);
}

.chinese-description {
  color: var(--text) !important;
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
}

.chinese-name {
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-weight: 700;
  letter-spacing: 0.06em !important;
}

.bilingual-line {
  color: var(--text) !important;
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-weight: 700;
}

.hero-motif {
  position: absolute;
  z-index: 0;
  inset: 6% 1% auto auto;
  width: min(34rem, 48vw);
  color: var(--accent);
  font-size: clamp(7rem, 20vw, 18rem);
  font-weight: 900;
  letter-spacing: -0.12em;
  line-height: 0.8;
  opacity: 0.09;
  pointer-events: none;
  user-select: none;
}

.theme-maladang .hero-motif {
  color: var(--accent-strong);
  font-family: "Noto Serif SC", "Songti SC", serif;
  letter-spacing: -0.18em;
}

.concept-page {
  display: grid;
  gap: clamp(2rem, 5vw, 5rem);
  padding-block: clamp(3rem, 8vw, 7rem);
}

.concept-copy {
  max-width: 53rem;
}

.concept-copy h1 {
  max-width: 11ch;
  margin-block-end: var(--space-6);
  font-size: clamp(3rem, 9vw, 6.5rem);
}

.concept-copy > p:not(.eyebrow) {
  max-width: 48rem;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.22rem);
}

.status-panel {
  max-width: 53rem;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border: 1px solid var(--line);
  border-inline-start: 0.45rem solid var(--accent-strong);
  border-radius: 0.8rem;
  background: var(--surface);
}

.status-panel h2 {
  margin-block-end: var(--space-3);
  font-size: clamp(1.35rem, 3vw, 2rem);
  letter-spacing: -0.03em;
}

.status-panel p {
  margin-block-end: 0;
  color: var(--muted);
}

.status-panel p + p {
  margin-block-start: var(--space-3);
}

.neutral-potential {
  display: grid;
  gap: var(--space-5);
  max-width: 70rem;
  padding-block: clamp(2rem, 5vw, 4rem);
  border-block-start: 1px solid var(--line);
}

.neutral-potential h2 {
  max-width: 19ch;
  margin-block-end: 0;
  font-size: clamp(1.8rem, 4vw, 3.25rem);
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.neutral-potential p {
  max-width: 48rem;
  margin-block-end: 0;
  color: var(--muted);
}

.academy-sale-card {
  width: min(100%, 53rem);
  box-shadow: 0.6rem 0.6rem 0 #d8e0e6;
}

.offer-page {
  position: relative;
  isolation: isolate;
  display: grid;
  gap: clamp(2rem, 5vw, 5rem);
  padding-block: clamp(3rem, 7vw, 6rem);
}

.offer-intro {
  position: relative;
  z-index: 1;
  align-self: start;
}

.offer-intro h1 {
  max-width: 11ch;
  margin-block-end: var(--space-5);
  font-size: clamp(2.6rem, 7vw, 5.5rem);
  white-space: normal;
}

.offer-intro p:not(.eyebrow) {
  max-width: 38rem;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.15rem);
}

.back-link {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  margin-block-start: var(--space-4);
  border-radius: 0.4rem;
  color: var(--accent-strong);
  font-weight: 800;
  text-underline-offset: 0.2em;
}

.theme-gmimi .back-link {
  color: #245f5a;
}

.offer-form-card {
  position: relative;
  z-index: 2;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border: 1px solid var(--line);
  border-radius: 1.5rem;
  background: var(--surface);
  box-shadow: 0 2rem 5rem rgb(0 0 0 / 18%);
}

.theme-gmimi .offer-form-card {
  border: 2px solid var(--text);
  border-radius: 0;
  box-shadow: 0.75rem 0.75rem 0 var(--accent);
}

.offer-form-card h2 {
  margin-block-end: var(--space-2);
  font-size: clamp(1.6rem, 4vw, 2.25rem);
  letter-spacing: -0.04em;
}

.form-help,
.privacy-note {
  color: var(--muted);
  font-size: 0.82rem;
}

.required-note {
  margin-block-end: var(--space-6);
  color: var(--muted);
  font-size: 0.78rem;
}

.required-mark {
  color: var(--accent-strong);
  font-weight: 900;
}

.theme-gmimi .required-mark {
  color: #245f5a;
}

.offer-form {
  display: grid;
  gap: var(--space-5);
}

.form-field {
  display: grid;
  gap: var(--space-2);
}

.form-field label {
  font-size: 0.82rem;
  font-weight: 800;
}

.form-field input,
.form-field textarea {
  width: 100%;
  min-height: 3rem;
  padding: 0.72rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 0.65rem;
  background: var(--page-bg);
  color: var(--text);
  font: inherit;
  line-height: 1.4;
}

.form-field textarea {
  min-height: 7rem;
  resize: vertical;
}

.theme-gmimi .form-field input,
.theme-gmimi .form-field textarea {
  border: 2px solid var(--text);
  border-radius: 0;
  background: #fff;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--muted);
  opacity: 0.82;
}

.form-field [aria-invalid="true"] {
  border-color: #f04444;
  box-shadow: 0 0 0 1px #f04444;
}

.field-error {
  margin: 0;
  color: #ffaaa0;
  font-size: 0.78rem;
  font-weight: 750;
}

.theme-gmimi .field-error {
  color: #9b111e;
}

.error-summary,
.success-message,
.service-message {
  margin-block-end: var(--space-6);
  padding: var(--space-4);
  border: 1px solid currentColor;
  border-radius: 0.75rem;
}

.theme-gmimi .error-summary,
.theme-gmimi .success-message,
.theme-gmimi .service-message {
  border-width: 2px;
  border-radius: 0;
}

.error-summary {
  color: #ffaaa0;
}

.theme-gmimi .error-summary {
  color: #7f0b16;
}

.error-summary h2,
.success-message h2,
.service-message h2 {
  margin-block-end: var(--space-2);
  font-size: 1rem;
  letter-spacing: 0;
}

.error-summary ul {
  margin: 0;
  padding-inline-start: var(--space-5);
}

.error-summary a {
  text-underline-offset: 0.15em;
}

.success-message {
  color: var(--accent-strong);
}

.theme-gmimi .success-message {
  color: #205d50;
}

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

.form-actions {
  display: grid;
  gap: var(--space-3);
}

.offer-form .button {
  width: 100%;
  border: 0;
  cursor: pointer;
  font-family: inherit;
}

.theme-gmimi .offer-form .button {
  border: 2px solid var(--text);
}

.button[disabled] {
  cursor: not-allowed;
  filter: saturate(0.4);
  opacity: 0.65;
  transform: none;
}

.form-trap {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.site-footer {
  min-height: 5.5rem;
  border-block-start: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.72rem;
}

.site-footer p {
  margin: 0;
}

.hero-art {
  position: absolute;
  z-index: 0;
  inset: 4% -8% auto auto;
  width: min(64vw, 45rem);
  color: var(--accent);
  opacity: 0.72;
  pointer-events: none;
}

.hero-art svg {
  display: block;
  width: 100%;
  overflow: visible;
}

.ribbon {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
}

.ribbon-one {
  stroke-width: 2.5;
}

.ribbon-two {
  stroke: var(--accent-strong);
  stroke-width: 1.5;
  opacity: 0.5;
}

.orb-one {
  fill: color-mix(in srgb, var(--accent) 18%, transparent);
  stroke: var(--accent);
  stroke-width: 1;
}

.orb-two {
  fill: var(--accent-strong);
}

.gmimi-grid {
  position: absolute;
  z-index: 0;
  inset: 0 0 auto auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  width: min(40rem, 72vw);
  transform: rotate(-6deg) translate(8%, -12%);
  opacity: 0.14;
  pointer-events: none;
}

.gmimi-grid span {
  display: grid;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid var(--text);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 900;
  line-height: 1;
}

@media (min-width: 60rem) {
  .hero {
    grid-template-columns: minmax(0, 1.5fr) minmax(19rem, 0.75fr);
    align-items: center;
  }

  .hero-copy {
    padding-inline-start: clamp(0rem, 3vw, 3rem);
  }

  .offer-page {
    grid-template-columns: minmax(0, 1fr) minmax(21rem, 0.75fr);
    align-items: start;
  }

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

  .name-story {
    grid-template-columns: minmax(0, 0.8fr) minmax(24rem, 1.2fr);
    align-items: start;
  }
}

@media (min-width: 38rem) and (max-width: 59.999rem) {
  .business-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 38rem) {
  .site-header {
    min-height: 4.75rem;
  }

  .wordmark > span:last-child {
    display: none;
  }

  .hero {
    padding-block: var(--space-12) var(--space-16);
  }

  .domain-points {
    display: grid;
  }

  .domain-points li {
    width: fit-content;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-block: var(--space-5);
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@supports not (color: color-mix(in srgb, black, white)) {
  .availability > span {
    box-shadow: none;
  }

  .sale-card {
    background: var(--surface);
  }

  .orb-one {
    fill: var(--surface-soft);
  }
}
