@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Sora:wght@500;600;700;800&display=swap");

:root {
  --font-body: "Manrope", "Segoe UI", Arial, sans-serif;
  --font-display: "Sora", "Manrope", "Segoe UI", Arial, sans-serif;

  --bg: #070909;
  --bg-elevated: #0b0f0f;
  --surface: #101515;
  --surface-soft: #151b1b;
  --surface-bright: #1b2323;
  --text: #f6f4ed;
  --text-soft: #d7d2c7;
  --muted: #a8a195;
  --subtle: #746f66;
  --line: rgba(246, 244, 237, 0.13);
  --line-strong: rgba(246, 244, 237, 0.22);
  --teal: #54d7d1;
  --teal-soft: rgba(84, 215, 209, 0.14);
  --teal-line: rgba(84, 215, 209, 0.34);
  --copper: #c88a55;
  --copper-soft: rgba(200, 138, 85, 0.16);
  --ink: #061011;

  --radius: 8px;
  --radius-sm: 6px;
  --max: 1520px;
  --section: 112px;
  --section-sm: 84px;
  --gutter: 32px;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.38);
  --shadow-soft: 0 18px 54px rgba(0, 0, 0, 0.26);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 88% 8%, rgba(84, 215, 209, 0.08), transparent 30%),
    linear-gradient(180deg, #070909 0%, #090c0c 45%, #070909 100%);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

::selection {
  background: var(--teal);
  color: var(--ink);
}

.section-dark {
  background: transparent;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 76px;
  padding: 14px max(28px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid rgba(246, 244, 237, 0.1);
  background: rgba(7, 9, 9, 0.82);
  backdrop-filter: blur(22px);
}

.site-header.is-scrolled {
  background: rgba(7, 9, 9, 0.94);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.28);
}

.brand img {
  width: 188px;
  height: auto;
}

.site-nav {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  color: var(--text-soft);
  font-family: var(--font-display);
  font-size: 0.86rem;
  font-weight: 700;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--teal);
  transition: transform 180ms ease;
}

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

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 170ms ease,
    border-color 170ms ease,
    background 170ms ease,
    color 170ms ease,
    box-shadow 170ms ease;
}

.header-cta,
.button-primary {
  background: var(--teal);
  color: var(--ink);
  border-color: var(--teal);
  box-shadow: 0 12px 32px rgba(84, 215, 209, 0.16);
}

.button-secondary {
  background: rgba(246, 244, 237, 0.04);
  color: var(--text);
  border-color: var(--line);
}

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

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--teal-line);
  color: var(--teal);
  background: var(--teal-soft);
}

.mobile-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(246, 244, 237, 0.04);
  cursor: pointer;
}

.mobile-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
}

.hero {
  position: relative;
  width: min(var(--max), calc(100% - 64px));
  display: grid;
  grid-template-columns: minmax(390px, 0.78fr) minmax(560px, 1.22fr);
  gap: 54px;
  align-items: center;
  min-height: 720px;
  margin: 0 auto;
  padding: 74px 0 48px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 34px auto auto -90px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(84, 215, 209, 0.13), transparent 62%);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 560px;
}

.hero-logo {
  width: 218px;
  margin-bottom: 38px;
  opacity: 0.92;
}

.hero h1,
.section-heading h2,
.vision-inner h2,
.request-copy h2,
.subpage-hero h1,
.contact-intro h1 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero h1 {
  max-width: 11ch;
  font-size: 4rem;
  color: var(--text);
}

.hero-claim {
  margin: 24px 0 12px;
  color: var(--teal);
  font-family: var(--font-display);
  font-size: 1.24rem;
  font-weight: 800;
}

.hero-copy p:not(.hero-claim) {
  max-width: 520px;
  margin: 0;
  color: var(--text-soft);
  font-size: 1.04rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-media {
  position: relative;
  z-index: 2;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid rgba(246, 244, 237, 0.12);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-carousel {
  isolation: isolate;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.015);
  transition: opacity 650ms ease, transform 650ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7, 9, 9, 0.18), transparent 36%),
    linear-gradient(180deg, transparent 55%, rgba(7, 9, 9, 0.42));
  pointer-events: none;
}

.hero-panel {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  width: min(340px, calc(100% - 48px));
  padding: 22px;
  border: 1px solid rgba(246, 244, 237, 0.18);
  border-radius: var(--radius);
  background: rgba(7, 9, 9, 0.72);
  backdrop-filter: blur(18px);
}

.hero-panel span,
.section-kicker,
.summary-label,
.team-member span,
.review-card span,
.chatbot-header span,
.intro-item span,
.process-list span {
  display: block;
  color: var(--teal);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.35;
}

.hero-panel strong {
  display: block;
  margin-top: 9px;
  font-family: var(--font-display);
  font-size: 1.28rem;
  line-height: 1.3;
}

.hero-panel p {
  margin: 8px 0 0;
  color: var(--text-soft);
  font-size: 0.95rem;
}

.carousel-controls {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 3;
  display: flex;
  gap: 8px;
}

.carousel-controls button {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(246, 244, 237, 0.22);
  border-radius: var(--radius-sm);
  background: rgba(7, 9, 9, 0.72);
  color: var(--text);
  font-size: 1.38rem;
  line-height: 1;
  cursor: pointer;
}

.carousel-controls button:hover,
.carousel-controls button:focus-visible {
  border-color: var(--teal-line);
  color: var(--teal);
}

.intro-band {
  width: min(var(--max), calc(100% - 64px));
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 0 auto;
  padding: 0 0 52px;
}

.intro-item {
  min-height: 148px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(16, 21, 21, 0.72);
}

.intro-item strong {
  display: block;
  margin-top: 14px;
  font-family: var(--font-display);
  font-size: 1.08rem;
}

.intro-item p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.content-section,
.planner-section,
.process-section,
.partners-section,
.team-section,
.reviews-section,
.vision-section,
.request-section,
.partner-detail-section,
.subpage-hero,
.contact-page {
  padding: var(--section) 32px;
}

.vision-section,
.planner-section,
.partners-section,
.reviews-section,
.request-section,
.partner-detail-section {
  border-top: 1px solid rgba(246, 244, 237, 0.09);
  border-bottom: 1px solid rgba(246, 244, 237, 0.08);
  background:
    linear-gradient(180deg, rgba(16, 21, 21, 0.6), rgba(7, 9, 9, 0.9)),
    var(--bg);
}

.vision-inner,
.section-heading,
.concept-grid,
.planner-shell,
.process-list,
.partner-grid,
.team-grid,
.review-grid,
.request-section,
.partner-detail-grid,
.subpage-hero > div,
.contact-page {
  width: min(var(--max), 100%);
  margin-left: auto;
  margin-right: auto;
}

.section-heading {
  max-width: 940px;
  margin-bottom: 44px;
  text-align: center;
}

.section-heading h2,
.request-copy h2 {
  color: var(--text);
  font-size: 3rem;
}

.section-heading h2::after,
.vision-inner h2::after,
.request-copy h2::after,
.subpage-hero h1::after,
.contact-intro h1::after {
  content: "";
  display: block;
  width: 66px;
  height: 3px;
  margin: 22px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal), var(--copper));
}

.section-heading p {
  max-width: 760px;
  margin: 18px auto 0;
  color: var(--text-soft);
  font-size: 1.1rem;
}

.section-kicker {
  margin-bottom: 18px;
}

.vision-inner {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1fr);
  gap: 86px;
  align-items: start;
}

.vision-inner h2 {
  color: var(--text);
  font-size: 2.65rem;
}

.vision-inner h2::after,
.request-copy h2::after,
.subpage-hero h1::after,
.contact-intro h1::after {
  margin-left: 0;
  margin-right: 0;
}

.vision-copy {
  display: grid;
  gap: 24px;
  padding: 8px 0 0 42px;
  border-left: 1px solid var(--teal-line);
}

.vision-copy p {
  margin: 0;
  color: var(--text-soft);
  font-size: 1.18rem;
  line-height: 1.8;
}

.concept-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.concept-card,
.plan-summary,
.review-card,
.team-member,
.partner-detail-card,
.contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(27, 35, 35, 0.88), rgba(13, 17, 17, 0.94));
  box-shadow: var(--shadow-soft);
}

.concept-card {
  min-height: 280px;
  padding: 30px;
}

.interactive-card {
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.interactive-card:hover,
.interactive-card:focus-within {
  transform: translateY(-6px);
  border-color: var(--teal-line);
  background: linear-gradient(180deg, rgba(32, 43, 43, 0.92), rgba(12, 17, 17, 0.96));
}

.icon-shell {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 30px;
  border: 1px solid var(--teal-line);
  border-radius: var(--radius-sm);
  background: var(--teal-soft);
  color: var(--teal);
}

.icon-shell svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.concept-card h3,
.process-list h3,
.plan-summary h3,
.team-member h3,
.partner-detail-card h2 {
  margin: 0;
  font-family: var(--font-display);
  line-height: 1.25;
  letter-spacing: 0;
}

.concept-card h3 {
  font-size: 1.35rem;
}

.concept-card p,
.process-list p,
.partner-detail-card p {
  margin: 14px 0 0;
  color: var(--muted);
}

.planner-shell {
  max-width: 1260px;
}

.planner-controls {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  margin-bottom: 24px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: rgba(7, 9, 9, 0.64);
}

.plan-tab {
  min-height: 58px;
  padding: 0 20px;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  color: var(--text-soft);
  font-family: var(--font-display);
  font-weight: 800;
  cursor: pointer;
}

.plan-tab:last-child {
  border-right: 0;
}

.plan-tab.is-active {
  background: var(--teal);
  color: var(--ink);
}

.planner-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
  align-items: stretch;
}

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

.room-image,
.floorplan-image {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #0c1010;
}

.room-image img,
.floorplan-image img {
  width: 100%;
  height: 100%;
  min-height: 470px;
  object-fit: cover;
}

.floorplan-image img {
  object-fit: contain;
  padding: 18px;
  background: #0c1010;
}

.room-image figcaption,
.floorplan-image figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(7, 9, 9, 0.78);
  color: var(--teal);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 800;
}

.plan-summary {
  min-height: 470px;
  padding: 32px;
}

.plan-summary h3 {
  margin-top: 18px;
  color: var(--text);
  font-size: 1.75rem;
}

.plan-summary > p {
  margin: 18px 0 24px;
  color: var(--text-soft);
  font-size: 1rem;
}

.summary-metrics {
  display: grid;
  gap: 0;
  margin: 0 0 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.summary-metrics div {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 14px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.summary-metrics div:last-child {
  border-bottom: 0;
}

.summary-metrics dt {
  color: var(--muted);
  font-weight: 800;
}

.summary-metrics dd {
  margin: 0;
  color: var(--text);
  font-weight: 700;
}

.equipment-list {
  display: grid;
  gap: 12px;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}

.equipment-list li {
  position: relative;
  padding-left: 22px;
  color: var(--text-soft);
}

.equipment-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--copper);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: 0;
  list-style: none;
}

.process-list li {
  min-height: 250px;
  padding: 28px;
  border: 1px solid var(--line);
  background: rgba(16, 21, 21, 0.64);
}

.process-list li:first-child {
  border-radius: var(--radius) 0 0 var(--radius);
}

.process-list li:last-child {
  border-radius: 0 var(--radius) var(--radius) 0;
}

.process-list h3 {
  margin-top: 42px;
  font-size: 1.18rem;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.partner-logo {
  display: grid;
  grid-template-rows: 100px auto;
  align-items: center;
  justify-items: center;
  min-height: 190px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(16, 21, 21, 0.82);
  color: var(--text-soft);
  text-align: center;
}

.partner-logo img {
  max-width: 145px;
  max-height: 82px;
  object-fit: contain;
  transition: transform 180ms ease;
}

.partner-logo span {
  align-self: start;
  font-size: 0.93rem;
  line-height: 1.55;
}

.partner-pop {
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.partner-pop:hover,
.partner-pop:focus-visible {
  z-index: 3;
  transform: translateY(-8px);
  border-color: var(--teal-line);
  box-shadow: var(--shadow-soft);
}

.partner-pop:hover img,
.partner-pop:focus-visible img {
  transform: scale(1.12);
}

.section-action {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

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

.team-member {
  position: relative;
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  min-height: 260px;
  overflow: hidden;
  padding: 30px;
  outline: none;
  transition: transform 180ms ease, border-color 180ms ease;
}

.team-member:hover,
.team-member:focus,
.team-member:focus-visible {
  transform: translateY(-5px);
  border-color: var(--teal-line);
}

.team-member img {
  width: 180px;
  height: 180px;
  border-radius: var(--radius);
  object-fit: cover;
}

.team-short {
  position: relative;
  z-index: 2;
}

.team-short h3 {
  margin-top: 16px;
  font-size: 1.55rem;
}

.team-full {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 34px;
  background: rgba(10, 14, 14, 0.96);
  opacity: 0;
  overflow-y: auto;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.team-member:hover .team-full,
.team-member:focus .team-full,
.team-member:focus-visible .team-full {
  opacity: 1;
  transform: translateY(0);
}

.team-full p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.98rem;
  line-height: 1.72;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.review-card {
  min-height: 250px;
  padding: 28px;
}

.review-card p {
  margin: 22px 0;
  color: var(--text);
  font-size: 1.06rem;
  line-height: 1.72;
}

.review-card strong {
  color: var(--text-soft);
  font-weight: 800;
}

.request-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.42fr);
  gap: 48px;
  align-items: center;
}

.request-copy {
  max-width: 760px;
}

.request-copy p {
  margin: 22px 0 0;
  color: var(--text-soft);
  font-size: 1.12rem;
}

.contact-lines {
  display: grid;
  gap: 14px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(16, 21, 21, 0.72);
}

.contact-lines a,
.contact-lines span {
  color: var(--text-soft);
  font-weight: 700;
}

.contact-lines a:hover,
.contact-lines a:focus-visible {
  color: var(--teal);
}

.floating-chat {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid var(--teal);
  border-radius: var(--radius-sm);
  background: var(--teal);
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 800;
  box-shadow: 0 16px 44px rgba(84, 215, 209, 0.22);
  cursor: pointer;
}

.chatbot-drawer {
  position: fixed;
  right: 22px;
  bottom: 88px;
  z-index: 79;
  display: none;
  width: min(520px, calc(100vw - 44px));
}

.chatbot-drawer.is-open {
  display: block;
}

.chatbot {
  display: grid;
  gap: 16px;
  padding: 22px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: rgba(13, 17, 17, 0.98);
  box-shadow: var(--shadow);
}

.chatbot-header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: start;
}

.chatbot-header strong {
  display: block;
  margin-top: 4px;
  font-family: var(--font-display);
}

.chatbot-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.chatbot-actions button {
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--text-soft);
  font-size: 0.86rem;
  cursor: pointer;
}

.chat-window {
  display: grid;
  gap: 10px;
  max-height: 300px;
  overflow-y: auto;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #080b0b;
}

.message {
  max-width: 88%;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  color: var(--text-soft);
  background: rgba(246, 244, 237, 0.06);
  white-space: pre-line;
}

.message.user {
  justify-self: end;
  background: var(--teal);
  color: var(--ink);
}

.chat-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chat-options button {
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid var(--teal-line);
  border-radius: var(--radius-sm);
  background: var(--teal-soft);
  color: var(--text);
  cursor: pointer;
}

.chat-input {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.chat-input input,
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #080b0b;
  color: var(--text);
}

.chat-mail {
  display: none;
}

.chat-mail.is-visible {
  display: inline-flex;
}

.subpage-hero {
  padding-top: 138px;
  padding-bottom: 78px;
}

.subpage-hero > div {
  max-width: 920px;
}

.subpage-hero h1,
.contact-intro h1 {
  font-size: 3rem;
}

.subpage-hero p,
.contact-intro p {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--text-soft);
  font-size: 1.12rem;
}

.partner-detail-grid {
  display: grid;
  gap: 20px;
}

.partner-detail-card {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 36px;
  align-items: center;
  padding: 30px;
}

.partner-detail-card img {
  width: 100%;
  max-height: 136px;
  object-fit: contain;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #080b0b;
}

.partner-detail-card h2 {
  color: var(--teal);
  font-size: 1.8rem;
}

.contact-page {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(440px, 1fr);
  gap: 54px;
  align-items: start;
  padding-top: 138px;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  padding: 28px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--text-soft);
  font-weight: 800;
}

.contact-form textarea {
  resize: vertical;
}

.form-wide,
.contact-form button,
.form-status {
  grid-column: 1 / -1;
}

.form-status {
  display: none;
  margin: 0;
  padding: 14px;
  border: 1px solid var(--teal-line);
  border-radius: var(--radius-sm);
  background: var(--teal-soft);
  color: var(--text-soft);
}

.form-status.is-visible {
  display: block;
}

.form-status a {
  color: var(--teal);
  font-weight: 800;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 34px;
  align-items: center;
  padding: 46px max(32px, calc((100vw - var(--max)) / 2));
  border-top: 1px solid var(--line);
  background: #060808;
  color: var(--muted);
}

.site-footer img {
  width: 172px;
  margin-bottom: 12px;
}

.site-footer p {
  margin: 0;
}

.site-footer nav {
  display: flex;
  gap: 22px;
}

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (min-width: 1500px) {
  .hero {
    min-height: 760px;
  }

  .hero-media {
    min-height: 590px;
  }
}

@media (max-width: 1180px) {
  :root {
    --section: 92px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 64px;
  }

  .hero-copy {
    max-width: 720px;
  }

  .hero h1 {
    max-width: 12ch;
    font-size: 3.25rem;
  }

  .hero-media {
    min-height: 500px;
  }

  .planner-layout,
  .visualizer,
  .request-section,
  .contact-page {
    grid-template-columns: 1fr;
  }

  .plan-summary {
    min-height: auto;
  }

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

  .process-list li,
  .process-list li:first-child,
  .process-list li:last-child {
    border-radius: var(--radius);
  }

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

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

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    min-height: 74px;
    padding: 14px 22px;
  }

  .brand img {
    width: 166px;
  }

  .site-nav {
    position: fixed;
    top: 74px;
    right: 0;
    bottom: 0;
    width: min(360px, 100%);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 24px;
    border-left: 1px solid var(--line);
    background: rgba(7, 9, 9, 0.98);
    transform: translateX(100%);
    transition: transform 200ms ease;
  }

  body.nav-open .site-nav {
    transform: translateX(0);
  }

  .site-nav a {
    min-height: 58px;
    border-bottom: 1px solid var(--line);
  }

  .header-cta {
    display: none;
  }

  .mobile-toggle {
    justify-self: end;
    display: block;
  }

  .hero,
  .intro-band {
    width: min(100% - 44px, var(--max));
  }

  .hero {
    padding-top: 36px;
  }

  .hero-logo {
    width: 190px;
    margin-bottom: 28px;
  }

  .hero h1 {
    font-size: 2.55rem;
  }

  .hero-media {
    min-height: 410px;
  }

  .intro-band,
  .concept-grid,
  .vision-inner,
  .review-grid,
  .partner-detail-card {
    grid-template-columns: 1fr;
  }

  .vision-copy {
    padding-left: 24px;
  }

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

  .site-footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  :root {
    --section: 68px;
  }

  body {
    font-size: 15px;
  }

  .content-section,
  .planner-section,
  .process-section,
  .partners-section,
  .team-section,
  .reviews-section,
  .vision-section,
  .request-section,
  .partner-detail-section,
  .subpage-hero,
  .contact-page {
    padding-left: 22px;
    padding-right: 22px;
  }

  .hero {
    width: calc(100% - 44px);
    gap: 26px;
    padding-bottom: 34px;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero-claim {
    font-size: 1.05rem;
  }

  .hero-actions,
  .chat-input,
  .chatbot-header {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    display: grid;
  }

  .hero-media {
    min-height: 310px;
  }

  .hero-panel {
    right: 14px;
    bottom: 14px;
    width: calc(100% - 28px);
    padding: 16px;
  }

  .carousel-controls {
    top: 14px;
    right: 14px;
  }

  .intro-band {
    display: none;
  }

  .section-heading {
    margin-bottom: 30px;
    text-align: left;
  }

  .section-heading h2,
  .vision-inner h2,
  .request-copy h2,
  .subpage-hero h1,
  .contact-intro h1 {
    font-size: 2rem;
  }

  .section-heading h2::after {
    margin-left: 0;
  }

  .section-heading p,
  .vision-copy p,
  .request-copy p,
  .subpage-hero p,
  .contact-intro p {
    font-size: 1rem;
  }

  .concept-grid,
  .planner-controls,
  .process-list,
  .partner-grid,
  .review-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .planner-controls {
    overflow: visible;
    border-radius: 0;
    border: 0;
    gap: 8px;
    background: transparent;
  }

  .plan-tab {
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: rgba(16, 21, 21, 0.78);
  }

  .room-image,
  .floorplan-image,
  .room-image img,
  .floorplan-image img {
    min-height: 320px;
  }

  .plan-summary,
  .concept-card,
  .process-list li,
  .review-card,
  .contact-form {
    padding: 22px;
  }

  .summary-metrics div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .process-list p,
  .partners-section .section-heading p,
  .team-section .section-heading p,
  .review-card:nth-child(n + 3) {
    display: none;
  }

  .team-member {
    grid-template-columns: 1fr;
    gap: 20px;
    min-height: auto;
    padding: 22px;
  }

  .team-member img {
    width: 100%;
    height: auto;
    max-height: 330px;
    aspect-ratio: 4 / 3;
  }

  .team-full {
    position: static;
    opacity: 1;
    transform: none;
    padding: 18px 0 0;
    background: transparent;
  }

  .partner-detail-card {
    padding: 22px;
  }

  .contact-page {
    padding-top: 96px;
  }

  .chatbot-drawer {
    right: 14px;
    bottom: 80px;
    width: calc(100vw - 28px);
  }

  .chatbot {
    padding: 18px;
  }

  .floating-chat {
    right: 14px;
    bottom: 14px;
  }

  .site-footer {
    padding: 34px 22px;
  }

  .site-footer nav {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
