:root {
  color-scheme: light;
  --bg: #f7f8f6;
  --bg-muted: #edf2ef;
  --surface: #ffffff;
  --surface-muted: #f3f6f4;
  --text: #1f2933;
  --text-soft: #52616b;
  --text-muted: #6d7b82;
  --line: #d9e2df;
  --line-strong: #b7c8c2;
  --glass: rgba(255, 255, 255, 0.66);
  --glass-strong: rgba(255, 255, 255, 0.82);
  --glass-line: rgba(255, 255, 255, 0.48);
  --green: #146b5c;
  --teal: #2f7f8d;
  --ink: #20211f;
  --cream: #f4eedc;
  --cream-soft: #ece5d4;
  --acid: #ebff32;
  --amber: #d28a20;
  --danger: #b42318;
  --success: #157347;
  --focus: #2f7f8d;
  --shadow: 0 18px 44px rgba(31, 41, 51, 0.1);
  --shadow-soft: 0 10px 26px rgba(31, 41, 51, 0.08);
  --radius: 8px;
  --header-height: 76px;
  --section-space: 5rem;
}

[data-theme="dark"] {
  color-scheme: dark;
  --bg: #151716;
  --bg-muted: #1d211f;
  --surface: #202523;
  --surface-muted: #252b28;
  --text: #f4f7f5;
  --text-soft: #ccd6d2;
  --text-muted: #aab7b2;
  --line: #34403b;
  --line-strong: #50615b;
  --glass: rgba(32, 37, 35, 0.62);
  --glass-strong: rgba(37, 43, 40, 0.78);
  --glass-line: rgba(255, 255, 255, 0.12);
  --green: #71c7ae;
  --teal: #73bfcb;
  --ink: #f4f7f5;
  --cream: #1f231f;
  --cream-soft: #181c19;
  --acid: #dfff35;
  --amber: #f1b554;
  --danger: #ff8a80;
  --success: #78d69d;
  --focus: #73bfcb;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.32);
  --shadow-soft: 0 10px 28px rgba(0, 0, 0, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 4%, rgba(235, 255, 50, 0.18), transparent 22rem),
    radial-gradient(circle at 88% 8%, rgba(20, 107, 92, 0.11), transparent 23rem),
    linear-gradient(90deg, rgba(32, 33, 31, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, #eee9dc 0%, #e8dfcc 48%, #f4eedc 100%);
  background-size: 72px 100%, auto;
  font-family: "Manrope", system-ui, sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

[data-theme="dark"] body {
  background:
    radial-gradient(circle at 12% 4%, rgba(223, 255, 53, 0.08), transparent 22rem),
    radial-gradient(circle at 88% 8%, rgba(113, 199, 174, 0.1), transparent 23rem),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(180deg, #141715 0%, #1b1f1c 48%, #111412 100%);
}

body.nav-open {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.28)),
    repeating-linear-gradient(135deg, rgba(31, 41, 51, 0.025) 0 1px, transparent 1px 14px);
}

[data-theme="dark"] body::before {
  background:
    linear-gradient(180deg, rgba(21, 23, 22, 0.72), rgba(21, 23, 22, 0.34)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 14px);
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  border: 0;
}

button,
a,
input,
textarea {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  padding: 0.7rem 0.9rem;
  border-radius: var(--radius);
  color: var(--surface);
  background: var(--text);
  opacity: 0;
  transform: translateY(-140%);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

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

.section-anchor {
  scroll-margin-top: calc(var(--header-height) + 1rem);
}

.container-xl {
  width: min(100% - 1.5rem, 1320px);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  background: rgba(247, 248, 246, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

[data-theme="dark"] .site-header {
  background: rgba(21, 23, 22, 0.9);
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: var(--shadow-soft);
}

.nav-shell {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

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

.brand-mark {
  width: 2.7rem;
  height: 2.7rem;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 46% 54% 42% 58% / 52% 38% 62% 48%;
  color: #ffffff;
  background: linear-gradient(135deg, var(--green), var(--teal));
  font-weight: 800;
}

.brand-text {
  display: grid;
  min-width: 0;
}

.brand-text strong {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.1;
  letter-spacing: 0;
}

.brand-text small {
  color: var(--text-muted);
  font-size: 0.78rem;
  line-height: 1.2;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.35rem;
}

.nav-menu a,
.theme-toggle {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0.9rem;
  border-radius: var(--radius);
  color: var(--text-soft);
  background: transparent;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: color 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.nav-menu a:hover,
.nav-menu a.is-active,
.theme-toggle:hover {
  color: var(--text);
  background: var(--surface-muted);
}

.nav-login {
  color: #ffffff !important;
  background: var(--green) !important;
}

.nav-login:hover {
  background: var(--teal) !important;
}

.theme-toggle {
  border: 1px solid var(--line);
}

.nav-toggle {
  width: 2.8rem;
  height: 2.8rem;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.26rem;
  border-radius: var(--radius);
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--line);
  cursor: pointer;
}

.nav-toggle span {
  width: 1.25rem;
  height: 2px;
  display: block;
  margin: 0;
  border-radius: 99px;
  background: currentColor;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.flash-section {
  padding: 1rem 0 0;
}

.flash {
  max-width: 58rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-left: 4px solid var(--teal);
  border-radius: var(--radius);
  color: var(--text);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  font-weight: 600;
}

.flash--success {
  border-left-color: var(--success);
}

.flash--error,
.flash--danger {
  border-left-color: var(--danger);
}

.hero-section {
  position: relative;
  isolation: isolate;
  padding: 1.2rem 0 5.2rem;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 248, 192, 0.52), transparent 19rem),
    radial-gradient(circle at 88% 22%, rgba(20, 107, 92, 0.12), transparent 18rem),
    linear-gradient(180deg, #efede7 0%, #e7dfcf 100%);
  overflow: hidden;
}

[data-theme="dark"] .hero-section {
  background:
    radial-gradient(circle at 18% 16%, rgba(223, 255, 53, 0.1), transparent 20rem),
    radial-gradient(circle at 88% 22%, rgba(113, 199, 174, 0.12), transparent 18rem),
    linear-gradient(180deg, #171a18 0%, #111412 100%);
}

.hero-container {
  width: min(100% - 1.2rem, 1840px);
  margin-inline: auto;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(29, 31, 28, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(29, 31, 28, 0.03) 1px, transparent 1px);
  background-size: 4.8rem 4.8rem;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 86%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 86%, transparent 100%);
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.ambient-shape {
  position: absolute;
  display: block;
  border: 1px solid rgba(29, 31, 28, 0.08);
  background: rgba(255, 255, 255, 0.34);
  box-shadow: 0 24px 70px rgba(52, 45, 28, 0.09);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

[data-theme="dark"] .ambient-shape {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.ambient-shape--one {
  width: 19rem;
  height: 13rem;
  left: 5vw;
  top: 8rem;
  border-radius: 64% 36% 50% 50% / 44% 62% 38% 56%;
  transform: rotate(-10deg);
}

.ambient-shape--two {
  width: 17rem;
  height: 17rem;
  right: 7vw;
  top: 7rem;
  border-radius: 42% 58% 36% 64% / 60% 35% 65% 40%;
  transform: rotate(12deg);
}

.ambient-shape--three {
  width: 28rem;
  height: 9rem;
  right: 22vw;
  bottom: 2.4rem;
  border-radius: 999px;
  transform: rotate(-8deg);
}

.hero-showcase {
  position: relative;
  min-height: calc(100svh - var(--header-height) - 2.4rem);
  min-height: max(48rem, calc(100svh - var(--header-height) - 2.4rem));
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 34px;
  color: #1f211f;
  background:
    radial-gradient(circle at 20% 70%, rgba(234, 220, 162, 0.5), transparent 21rem),
    radial-gradient(circle at 84% 26%, rgba(255, 255, 255, 0.86), transparent 18rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(248, 241, 220, 0.88)),
    #f4eedc;
  box-shadow:
    0 34px 80px rgba(60, 51, 31, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

[data-theme="dark"] .hero-showcase {
  color: #f4f7f5;
  border-color: rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at 20% 70%, rgba(223, 255, 53, 0.08), transparent 21rem),
    radial-gradient(circle at 84% 26%, rgba(255, 255, 255, 0.07), transparent 18rem),
    linear-gradient(135deg, rgba(31, 36, 32, 0.92), rgba(21, 25, 22, 0.96)),
    #171a18;
  box-shadow:
    0 34px 80px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero-showcase::before,
.hero-showcase::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero-showcase::before {
  left: -8rem;
  bottom: -13rem;
  width: 48rem;
  height: 28rem;
  border: 1px solid rgba(31, 33, 31, 0.05);
  border-radius: 50%;
  background: rgba(219, 206, 164, 0.22);
}

.hero-showcase::after {
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0 48%, rgba(255, 255, 255, 0.24) 48% 49%, transparent 49% 100%),
    repeating-linear-gradient(0deg, rgba(31, 33, 31, 0.02) 0 1px, transparent 1px 4rem);
}

.hero-heading-block {
  position: relative;
  z-index: 3;
  display: grid;
  justify-items: center;
  padding: 5.4rem 1rem 0;
  text-align: center;
}

.hero-section .section-kicker {
  margin-bottom: 0.7rem;
  color: rgba(31, 33, 31, 0.56);
}

[data-theme="dark"] .hero-section .section-kicker {
  color: rgba(244, 247, 245, 0.58);
}

.hero-line {
  margin: 0 0 0.9rem;
  color: rgba(31, 33, 31, 0.88);
  font-size: 1.15rem;
  font-weight: 700;
}

[data-theme="dark"] .hero-line {
  color: rgba(244, 247, 245, 0.84);
}

.hero-section h1 {
  max-width: none;
  display: grid;
  justify-items: center;
  color: #20211f;
  font-size: 9.6rem;
  font-weight: 800;
  line-height: 0.78;
  letter-spacing: -0.085em;
  text-transform: uppercase;
}

[data-theme="dark"] .hero-section h1 {
  color: #f4f7f5;
}

.hero-section h1 span + span {
  margin-top: 0.36rem;
  font-size: 0.43em;
  letter-spacing: -0.045em;
}

.showcase-copy {
  position: absolute;
  z-index: 7;
  left: max(3.4rem, 5vw);
  bottom: 7.8rem;
  width: 17.2rem;
}

.showcase-copy p {
  margin: 0 0 1rem;
  color: rgba(31, 33, 31, 0.76);
  font-size: 0.94rem;
  font-weight: 700;
}

[data-theme="dark"] .showcase-copy p {
  color: rgba(244, 247, 245, 0.74);
}

.hero-showcase .button-primary {
  color: #1f211f;
  background: #ebff32;
  box-shadow: 0 16px 30px rgba(143, 157, 28, 0.22);
}

.hero-showcase .button-primary:hover {
  background: #dff42c;
}

.hero-showcase .button-secondary {
  color: #1f211f;
  border-color: rgba(31, 33, 31, 0.18);
  background: rgba(255, 255, 255, 0.54);
}

.hero-residence {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: -2.8rem;
  width: min(76rem, 78vw);
  margin: 0;
  pointer-events: none;
  transform: translateX(-50%);
}

.hero-residence picture,
.hero-residence img {
  display: block;
}

.hero-residence img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 34px 32px rgba(40, 34, 22, 0.26));
}

.showcase-tags {
  position: absolute;
  z-index: 7;
  right: max(3.4rem, 5vw);
  bottom: 7.4rem;
  max-width: 15.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.52rem;
}

.showcase-tags span,
.showcase-tags a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.2rem;
  padding: 0.48rem 0.72rem;
  border: 1px solid rgba(31, 33, 31, 0.18);
  border-radius: 999px;
  color: rgba(31, 33, 31, 0.84);
  background: rgba(255, 255, 255, 0.34);
  font-size: 0.78rem;
  font-weight: 800;
}

[data-theme="dark"] .showcase-tags span,
[data-theme="dark"] .showcase-tags a {
  border-color: rgba(255, 255, 255, 0.16);
  color: rgba(244, 247, 245, 0.84);
  background: rgba(255, 255, 255, 0.06);
}

.showcase-tags a {
  width: 100%;
  justify-content: flex-start;
  border-color: transparent;
  background: transparent;
  text-decoration: underline;
  text-underline-offset: 0.18rem;
}

.showcase-thumb {
  position: absolute;
  z-index: 2;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.46);
  box-shadow: 0 22px 52px rgba(53, 44, 28, 0.16);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

[data-theme="dark"] .showcase-thumb {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.28);
}

.showcase-thumb picture,
.showcase-thumb img {
  width: 100%;
  height: 100%;
  display: block;
}

.showcase-thumb img {
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 16px 16px rgba(42, 35, 22, 0.18));
}

.showcase-thumb--one {
  top: 10.4rem;
  left: max(2.2rem, 3.2vw);
  width: 15.2rem;
  height: 9.4rem;
  transform: rotate(-4deg);
}

.showcase-thumb--two {
  top: 10.8rem;
  right: max(2.2rem, 3.2vw);
  width: 15rem;
  height: 10rem;
  transform: rotate(4deg);
}

.hero-mobile-actions {
  display: none;
}

.section {
  position: relative;
  padding: var(--section-space) 0;
}

.section-muted {
  border-block: 0;
  background:
    radial-gradient(circle at 12% 24%, rgba(235, 255, 50, 0.16), transparent 20rem),
    transparent;
}

.section-suite {
  padding-top: clamp(2.25rem, 3vw, 3.2rem);
}

.section-process,
.section-contact {
  padding-top: clamp(2rem, 3vw, 2.8rem);
}

.section-canvas {
  position: relative;
  width: min(100% - 1.2rem, 1680px);
  max-width: min(100% - 1.2rem, 1680px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 30px;
  background:
    radial-gradient(circle at 18% 14%, rgba(255, 255, 255, 0.72), transparent 18rem),
    radial-gradient(circle at 82% 70%, rgba(235, 255, 50, 0.14), transparent 18rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(244, 238, 220, 0.84)),
    var(--cream);
  box-shadow:
    0 28px 70px rgba(60, 51, 31, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

[data-theme="dark"] .section-canvas {
  border-color: rgba(255, 255, 255, 0.11);
  background:
    radial-gradient(circle at 18% 14%, rgba(255, 255, 255, 0.07), transparent 18rem),
    radial-gradient(circle at 82% 70%, rgba(223, 255, 53, 0.08), transparent 18rem),
    linear-gradient(135deg, rgba(31, 36, 32, 0.86), rgba(20, 24, 21, 0.94)),
    var(--cream);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.section-canvas::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(32, 33, 31, 0.028) 1px, transparent 1px),
    linear-gradient(180deg, rgba(32, 33, 31, 0.024) 1px, transparent 1px);
  background-size: 4.6rem 4.6rem;
}

.section-canvas h2,
.section-canvas h3,
.section-canvas label,
.section-canvas .flow-list strong {
  color: #20211f;
}

.section-canvas .section-heading p,
.section-canvas .section-copy,
.section-canvas .module-card p,
.section-canvas .flow-list span {
  color: rgba(32, 33, 31, 0.68);
}

.section-canvas .section-kicker,
.section-canvas .module-card span {
  color: rgba(32, 33, 31, 0.55);
}

[data-theme="dark"] .section-canvas h2,
[data-theme="dark"] .section-canvas h3,
[data-theme="dark"] .section-canvas label,
[data-theme="dark"] .section-canvas .flow-list strong {
  color: #f4f7f5;
}

[data-theme="dark"] .section-canvas .section-heading p,
[data-theme="dark"] .section-canvas .section-copy,
[data-theme="dark"] .section-canvas .module-card p,
[data-theme="dark"] .section-canvas .flow-list span {
  color: rgba(244, 247, 245, 0.72);
}

[data-theme="dark"] .section-canvas .section-kicker,
[data-theme="dark"] .section-canvas .module-card span {
  color: rgba(244, 247, 245, 0.58);
}

.section-kicker {
  margin: 0 0 0.85rem;
  color: rgba(32, 33, 31, 0.58);
  font-size: 0.8rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--text);
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  max-width: 12ch;
  font-size: 4.8rem;
  font-weight: 800;
}

h2 {
  max-width: 15ch;
  font-size: 2.65rem;
  font-weight: 800;
}

h3 {
  font-size: 1.12rem;
  font-weight: 800;
}

.section-heading p,
.section-copy {
  max-width: 42rem;
  margin: 1.1rem 0 0;
  color: var(--text-soft);
  font-size: 1.05rem;
  font-weight: 500;
}

.button {
  min-height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.82rem 1rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 800;
  line-height: 1.15;
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

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

.button-primary {
  color: #ffffff;
  background: var(--green);
  box-shadow: 0 12px 24px rgba(20, 107, 92, 0.22);
}

.button-primary:hover {
  background: var(--teal);
}

.button-secondary {
  color: var(--text);
  border-color: var(--line-strong);
  background: var(--surface);
}

.button-secondary:hover {
  border-color: var(--green);
  box-shadow: var(--shadow-soft);
}

.button-full {
  width: 100%;
}

.module-card span {
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.section-heading {
  position: relative;
  z-index: 2;
  max-width: 48rem;
  margin-bottom: clamp(1.25rem, 2vw, 1.7rem);
}

.section-heading--wide {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(22rem, 0.86fr) minmax(26rem, 1.14fr);
  gap: 1rem 2rem;
  align-items: center;
  margin-bottom: 1.15rem;
}

.section-heading--wide .section-kicker,
.section-heading--wide h2 {
  grid-column: 1;
}

.section-heading--wide h2 {
  max-width: 18ch;
}

.section-heading--wide p:not(.section-kicker) {
  grid-column: 2;
  max-width: 44rem;
  margin: 0;
  padding: 1rem 1.12rem;
  border: 1px solid rgba(32, 33, 31, 0.08);
  border-left: 0.28rem solid var(--acid);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.3)),
    rgba(255, 255, 255, 0.22);
  box-shadow: 0 16px 38px rgba(56, 47, 31, 0.07);
  font-weight: 700;
}

.module-card {
  height: 100%;
  min-height: 11.6rem;
  display: grid;
  align-content: start;
  gap: 0.72rem;
  padding: 1rem;
  border: 1px solid rgba(32, 33, 31, 0.08);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.32)),
    rgba(255, 255, 255, 0.28);
  box-shadow: 0 18px 44px rgba(56, 47, 31, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  container-type: inline-size;
}

.module-card::before {
  content: "";
  width: 2.8rem;
  height: 0.28rem;
  border-radius: 999px;
  background: var(--acid);
  box-shadow: 0 9px 18px rgba(153, 170, 35, 0.16);
}

.suite-canvas {
  padding: clamp(1.35rem, 2.4vw, 2.65rem);
}

.about-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin: 0 0 0.95rem;
}

.about-strip article {
  min-height: 10.4rem;
  display: grid;
  align-content: start;
  gap: 0.55rem;
  padding: 1rem;
  border: 1px solid rgba(32, 33, 31, 0.08);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.3)),
    rgba(255, 255, 255, 0.22);
  box-shadow: 0 18px 44px rgba(56, 47, 31, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.about-strip span {
  width: max-content;
  max-width: 100%;
  padding: 0.34rem 0.58rem;
  border: 1px solid rgba(32, 33, 31, 0.1);
  border-radius: 999px;
  color: rgba(32, 33, 31, 0.6);
  background: rgba(255, 255, 255, 0.34);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.about-strip strong {
  color: #20211f;
  font-size: 1.08rem;
  line-height: 1.16;
}

.about-strip p {
  margin: 0;
  color: rgba(32, 33, 31, 0.66);
  font-size: 0.94rem;
  font-weight: 700;
}

[data-theme="dark"] .about-strip article,
[data-theme="dark"] .module-card,
[data-theme="dark"] .flow-list li,
[data-theme="dark"] .contact-form {
  border-color: rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.035);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
}

[data-theme="dark"] .about-strip span {
  border-color: rgba(255, 255, 255, 0.12);
  color: rgba(244, 247, 245, 0.62);
  background: rgba(255, 255, 255, 0.06);
}

[data-theme="dark"] .about-strip strong {
  color: #f4f7f5;
}

[data-theme="dark"] .about-strip p {
  color: rgba(244, 247, 245, 0.7);
}

[data-theme="dark"] .section-heading--wide p:not(.section-kicker) {
  border-color: rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.035);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.2);
}

.suite-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(20rem, 0.82fr);
  gap: 0.95rem;
  align-items: stretch;
}

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

.suite-visual {
  position: relative;
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(32, 33, 31, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.32);
  box-shadow: 0 22px 56px rgba(56, 47, 31, 0.12);
}

[data-theme="dark"] .suite-visual {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.3);
}

.suite-visual picture,
.suite-visual img {
  width: 100%;
  height: 100%;
  display: block;
}

.suite-visual img {
  object-fit: contain;
  object-position: center bottom;
  padding: 1.2rem 1rem 0;
  filter: drop-shadow(0 24px 22px rgba(42, 35, 22, 0.18));
}

.suite-visual figcaption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  display: grid;
  gap: 0.14rem;
  padding: 0.85rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.56);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

[data-theme="dark"] .suite-visual figcaption {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(20, 24, 21, 0.66);
}

.suite-visual strong,
.suite-visual span {
  display: block;
}

.suite-visual strong {
  color: #20211f;
  font-size: 0.88rem;
}

.suite-visual span {
  color: rgba(32, 33, 31, 0.66);
  font-size: 0.82rem;
  font-weight: 700;
}

[data-theme="dark"] .suite-visual strong {
  color: #f4f7f5;
}

[data-theme="dark"] .suite-visual span {
  color: rgba(244, 247, 245, 0.68);
}

.process-canvas {
  padding: clamp(1.35rem, 2.4vw, 2.65rem);
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.74), transparent 18rem),
    radial-gradient(circle at 16% 80%, rgba(235, 255, 50, 0.2), transparent 18rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.76), rgba(235, 228, 210, 0.88)),
    var(--cream);
}

[data-theme="dark"] .process-canvas {
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.07), transparent 18rem),
    radial-gradient(circle at 16% 80%, rgba(223, 255, 53, 0.08), transparent 18rem),
    linear-gradient(135deg, rgba(31, 36, 32, 0.88), rgba(20, 24, 21, 0.96)),
    var(--cream);
}

.process-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(19rem, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(1.2rem, 2vw, 2rem);
  align-items: center;
}

.process-copy p:not(.section-kicker) {
  max-width: 28rem;
  margin: 1rem 0 1.4rem;
  color: rgba(32, 33, 31, 0.68);
  font-weight: 700;
}

[data-theme="dark"] .process-copy p:not(.section-kicker) {
  color: rgba(244, 247, 245, 0.72);
}

.module-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.96rem;
  font-weight: 500;
}

.flow-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: flow;
}

.flow-list li {
  position: relative;
  min-height: 8.4rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.35rem 1rem;
  padding: 1.05rem;
  border: 1px solid rgba(32, 33, 31, 0.08);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.36)),
    rgba(255, 255, 255, 0.28);
  box-shadow: 0 18px 44px rgba(56, 47, 31, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  counter-increment: flow;
}

.flow-list li::before {
  content: counter(flow, decimal-leading-zero);
  width: 2.6rem;
  height: 2.6rem;
  display: grid;
  place-items: center;
  grid-row: span 2;
  border-radius: 50%;
  color: #20211f;
  background: var(--acid);
  font-size: 0.78rem;
  font-weight: 800;
}

.flow-list strong {
  color: var(--text);
}

.flow-list span {
  color: var(--text-soft);
}

.contact-form {
  padding: 1.2rem;
  border: 1px solid rgba(32, 33, 31, 0.08);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.42)),
    rgba(255, 255, 255, 0.38);
  box-shadow: 0 22px 56px rgba(56, 47, 31, 0.11);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.contact-form label {
  display: inline-block;
  margin-bottom: 0.45rem;
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(32, 33, 31, 0.1);
  border-radius: 16px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.5);
  padding: 0.85rem 0.9rem;
  font-weight: 600;
  transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

[data-theme="dark"] .contact-form input,
[data-theme="dark"] .contact-form textarea {
  border-color: rgba(255, 255, 255, 0.12);
  color: #f4f7f5;
  background: rgba(255, 255, 255, 0.06);
}

.contact-form textarea {
  resize: vertical;
  min-height: 9rem;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--text-muted);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #20211f;
  background: var(--surface);
  box-shadow: 0 0 0 4px rgba(235, 255, 50, 0.34);
}

[data-theme="dark"] .contact-form input:focus,
[data-theme="dark"] .contact-form textarea:focus {
  border-color: var(--acid);
  background: rgba(255, 255, 255, 0.08);
}

.contact-canvas {
  padding: 3.2rem;
}

.contact-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(17rem, 0.8fr) minmax(0, 1.2fr);
  gap: 2rem;
  align-items: center;
}

.contact-form-wrap {
  min-width: 0;
}

.contact-pills {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.4rem;
}

.contact-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 2.15rem;
  padding: 0.42rem 0.68rem;
  border: 1px solid rgba(32, 33, 31, 0.12);
  border-radius: 999px;
  color: rgba(32, 33, 31, 0.72);
  background: rgba(255, 255, 255, 0.35);
  font-size: 0.78rem;
  font-weight: 800;
}

[data-theme="dark"] .contact-pills span {
  border-color: rgba(255, 255, 255, 0.12);
  color: rgba(244, 247, 245, 0.76);
  background: rgba(255, 255, 255, 0.06);
}

.contact-canvas::after {
  content: "";
  position: absolute;
  right: -8rem;
  bottom: -9rem;
  width: 30rem;
  height: 18rem;
  border-radius: 46% 54% 44% 56% / 56% 42% 58% 44%;
  background: rgba(255, 255, 255, 0.34);
  pointer-events: none;
}

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

.form-field {
  min-width: 0;
}

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

@supports (content-visibility: auto) {
  .section-suite,
  .section-process,
  .section-contact {
    content-visibility: auto;
    contain-intrinsic-size: 48rem;
  }
}

.site-footer {
  padding: 1.4rem 0;
  border-top: 1px solid rgba(32, 33, 31, 0.08);
  background: color-mix(in srgb, var(--cream) 72%, #ffffff);
}

[data-theme="dark"] .site-footer {
  border-top-color: rgba(255, 255, 255, 0.08);
  background: #111412;
}

.footer-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-layout p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.footer-layout nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.4rem;
}

.footer-layout a {
  padding: 0.55rem 0.65rem;
  border-radius: var(--radius);
  color: var(--text-soft);
  font-size: 0.88rem;
  font-weight: 800;
}

.footer-layout a:hover {
  color: var(--text);
  background: var(--surface-muted);
}

@container (max-width: 260px) {
  .module-card {
    min-height: 11rem;
    gap: 0.65rem;
  }

  .module-card p {
    font-size: 0.9rem;
  }
}

@media (max-width: 1199.98px) {
  h1 {
    font-size: 4rem;
  }

  .hero-showcase {
    min-height: 42.5rem;
  }

  .hero-section h1 {
    font-size: 7rem;
  }

  .hero-residence {
    width: min(48rem, 70vw);
    bottom: -1.8rem;
  }

  .showcase-copy {
    left: 2.4rem;
    bottom: 5.3rem;
  }

  .showcase-tags {
    right: 2.4rem;
    bottom: 5.3rem;
  }

  .showcase-thumb--one {
    width: 11.5rem;
    height: 7.6rem;
  }

  .showcase-thumb--two {
    width: 11.6rem;
    height: 8.2rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  .suite-layout {
    grid-template-columns: minmax(0, 1fr) minmax(19rem, 27rem);
  }
}

@media (max-width: 991.98px) {
  :root {
    --section-space: 4rem;
  }

  .hero-section {
    min-height: auto;
    padding: 3.4rem 0 3.8rem;
  }

  h1 {
    max-width: 13ch;
    font-size: 3.35rem;
  }

  h2 {
    max-width: 16ch;
    font-size: 2.1rem;
  }

  .hero-section h1 {
    font-size: 5.7rem;
  }

  .hero-showcase {
    min-height: auto;
    padding: 0 1rem 0;
  }

  .hero-heading-block {
    padding-top: 3rem;
  }

  .showcase-copy {
    position: relative;
    left: auto;
    bottom: auto;
    width: min(38rem, 100%);
    margin: 1.4rem auto 0;
    text-align: center;
  }

  .showcase-copy p {
    max-width: 33rem;
    margin-inline: auto;
  }

  .showcase-copy .button {
    margin-inline: auto;
  }

  .hero-residence {
    position: relative;
    left: auto;
    bottom: auto;
    width: min(44rem, 100%);
    margin: -0.5rem auto -1.1rem;
    transform: none;
  }

  .showcase-tags {
    position: relative;
    right: auto;
    bottom: auto;
    max-width: 100%;
    justify-content: center;
    margin: 0 auto 2rem;
  }

  .showcase-tags a {
    width: auto;
  }

  .showcase-thumb {
    display: none;
  }

  .section-canvas {
    border-radius: 24px;
  }

  .suite-canvas,
  .process-canvas,
  .contact-canvas {
    padding: 2rem;
  }

  .section-heading--wide,
  .process-layout,
  .contact-layout,
  .suite-layout {
    grid-template-columns: 1fr;
  }

  .section-heading--wide {
    gap: 0.75rem;
  }

  .about-strip {
    grid-template-columns: 1fr;
  }

  .section-heading--wide p:not(.section-kicker) {
    grid-column: 1;
    margin-top: 0.55rem;
  }

  .suite-visual {
    min-height: 22rem;
  }
}

@media (max-width: 767.98px) {
  :root {
    --header-height: 68px;
    --section-space: 3.25rem;
  }

  .nav-shell {
    min-height: var(--header-height);
  }

  body::before {
    display: none;
  }

  .ambient-shape {
    display: none;
  }

  .hero-showcase::after,
  .section-canvas::before {
    opacity: 0.45;
  }

  .section-canvas,
  .about-strip article,
  .module-card,
  .flow-list li,
  .contact-form,
  .suite-visual,
  .suite-visual figcaption {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .brand-text small {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: calc(var(--header-height) + 0.55rem);
    right: 0.75rem;
    left: 0.75rem;
    bottom: auto;
    display: grid;
    grid-template-columns: 1fr;
    justify-content: stretch;
    align-items: stretch;
    gap: 0.5rem;
    width: auto;
    max-height: calc(100svh - var(--header-height) - 1.2rem);
    overflow: auto;
    padding: 0.72rem;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: color-mix(in srgb, var(--surface) 96%, transparent);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-0.5rem) scale(0.985);
    transform-origin: top center;
    transition: opacity 0.18s ease, transform 0.18s ease;
  }

  [data-theme="dark"] .nav-menu {
    background: color-mix(in srgb, var(--surface) 94%, transparent);
  }

  .nav-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .nav-menu a,
  .theme-toggle {
    width: 100%;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--surface-muted);
  }

  .nav-login {
    justify-content: center !important;
  }

  .hero-section {
    min-height: auto;
    padding: 2.8rem 0 3rem;
  }

  .section-suite,
  .section-process,
  .section-contact {
    padding-top: 2rem;
  }

  .flow-list {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 2.7rem;
  }

  .hero-section h1 {
    font-size: 4.15rem;
    letter-spacing: -0.075em;
  }

  .hero-showcase {
    border-radius: 22px;
    padding: 0 0.75rem;
  }

  .hero-heading-block {
    padding: 2.25rem 0.35rem 0;
  }

  .hero-line {
    max-width: 24rem;
    font-size: 1rem;
  }

  h2 {
    font-size: 1.85rem;
  }

  .section-heading p,
  .section-copy {
    font-size: 1rem;
  }

  .showcase-copy {
    text-align: left;
  }

  .showcase-copy .button {
    display: none;
  }

  .hero-residence {
    width: 110%;
    margin: -0.3rem -5% -0.9rem;
  }

  .hero-residence img {
    filter: drop-shadow(0 16px 16px rgba(40, 34, 22, 0.18));
  }

  .showcase-tags {
    justify-content: flex-start;
    margin-top: 0.8rem;
  }

  .hero-mobile-actions {
    display: grid;
    position: relative;
    z-index: 8;
    gap: 0.75rem;
    margin: 1rem 0 1.3rem;
  }

  .button {
    width: 100%;
  }

  .flow-list li {
    grid-template-columns: 1fr;
  }

  .flow-list li::before {
    grid-row: auto;
  }

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

  .footer-layout nav {
    justify-content: flex-start;
  }

  .section-canvas {
    border-radius: 20px;
  }

  .suite-canvas,
  .process-canvas,
  .contact-canvas {
    padding: 1.2rem;
  }

  .suite-cards {
    grid-template-columns: 1fr;
  }

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

  .about-strip article {
    min-height: auto;
  }

  .suite-visual {
    min-height: 18rem;
  }

  .process-copy .button {
    width: 100%;
  }
}

@media (max-width: 575.98px) {
  body {
    background-size: 48px 100%, auto;
  }

  .brand-mark {
    width: 2.45rem;
    height: 2.45rem;
  }

  .brand-text strong {
    font-size: 0.86rem;
  }

  h1 {
    font-size: 2.35rem;
  }

  .hero-section h1 {
    font-size: 3.05rem;
    line-height: 0.82;
  }

  h2 {
    font-size: 1.7rem;
  }

  .hero-section {
    padding: 2.2rem 0 2.5rem;
  }

  .hero-showcase {
    border-radius: 18px;
    padding: 0 0.65rem;
  }

  .hero-heading-block {
    padding-top: 1.8rem;
  }

  .hero-line {
    font-size: 0.94rem;
  }

  .hero-section h1 span + span {
    font-size: 0.47em;
  }

  .showcase-copy {
    margin-top: 1rem;
  }

  .showcase-copy p {
    font-size: 0.9rem;
  }

  .showcase-tags span,
  .showcase-tags a {
    min-height: 2rem;
    padding: 0.42rem 0.58rem;
    font-size: 0.72rem;
  }

  .hero-residence {
    width: 122%;
    margin: 0 -11% -0.8rem;
  }

  .contact-form {
    padding: 0.85rem;
  }

  .module-card,
  .flow-list li {
    padding: 0.9rem;
  }

  .suite-canvas,
  .process-canvas,
  .contact-canvas {
    padding: 0.85rem;
  }

  .suite-visual {
    min-height: 15.5rem;
  }

  .suite-visual figcaption {
    left: 0.7rem;
    right: 0.7rem;
    bottom: 0.7rem;
  }

  .contact-pills span {
    width: 100%;
    justify-content: center;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}
