:root {
  --green-950: #04331f;
  --green-900: #06472a;
  --green-800: #075b34;
  --green-700: #0a7040;
  --gold-600: #d99100;
  --gold-500: #efa400;
  --gold-300: #ffd36c;
  --cream-100: #fbf8f1;
  --cream-200: #f4efe5;
  --white: #ffffff;
  --ink: #173027;
  --muted: #5f6f68;
  --line: #dbe2dd;
  --shadow-sm: 0 8px 24px rgba(5, 49, 29, 0.08);
  --shadow-md: 0 18px 55px rgba(5, 49, 29, 0.14);
  --radius-sm: 0.65rem;
  --radius-md: 1rem;
  --radius-lg: 1.4rem;
  --content: min(1180px, calc(100% - 2rem));
  --header-height: 88px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 7.5rem;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Manrope", "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

button,
.button {
  -webkit-tap-highlight-color: transparent;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(239, 164, 0, 0.55);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 0.5rem;
  left: 0.5rem;
  padding: 0.7rem 1rem;
  color: var(--white);
  background: var(--green-950);
  border-radius: var(--radius-sm);
  transform: translateY(-150%);
}

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

.container {
  width: var(--content);
  margin-inline: auto;
}

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

.section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.section-tight {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.section-cream {
  background: var(--cream-100);
}

.section-green {
  color: var(--white);
  background:
    radial-gradient(circle at 12% 15%, rgba(239, 164, 0, 0.11), transparent 30%),
    linear-gradient(145deg, var(--green-950), var(--green-800));
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2.4rem;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 0.8rem;
  color: var(--green-700);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 2rem;
  height: 3px;
  content: "";
  background: var(--gold-500);
  border-radius: 999px;
}

.section-green .eyebrow {
  color: var(--gold-300);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--green-950);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(2.8rem, 6vw, 5.4rem);
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 3.5rem);
}

h3 {
  margin-bottom: 0.65rem;
  font-size: clamp(1.18rem, 2vw, 1.5rem);
}

.section-green h2,
.section-green h3 {
  color: var(--white);
}

.lead {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
}

.section-green .lead {
  color: rgba(255, 255, 255, 0.8);
}

.button {
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.8rem 1.35rem;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
  box-shadow: 0 10px 28px rgba(217, 145, 0, 0.23);
}

.button-primary:hover {
  background: linear-gradient(135deg, #f6ad08, #c88400);
  box-shadow: 0 13px 32px rgba(217, 145, 0, 0.3);
}

.button-secondary {
  color: var(--green-950);
  background: transparent;
  border-color: var(--green-800);
}

.button-secondary:hover {
  background: rgba(7, 91, 52, 0.07);
}

.button-light {
  color: var(--green-950);
  background: var(--white);
}

.button-ghost-light {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
}

.button-ghost-light:hover {
  background: rgba(255, 255, 255, 0.1);
}

.button-small {
  min-height: 2.8rem;
  padding: 0.65rem 1rem;
  font-size: 0.92rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.icon-circle {
  display: inline-grid;
  width: 2.4rem;
  height: 2.4rem;
  flex: 0 0 auto;
  place-items: center;
  color: var(--white);
  background: var(--green-800);
  border-radius: 50%;
  font-size: 1rem;
  font-weight: 900;
}

.utility-bar {
  color: var(--white);
  background: var(--green-950);
  font-size: 0.86rem;
}

.utility-inner {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.utility-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: inherit;
  text-decoration: none;
}

.utility-item svg {
  width: 1rem;
  height: 1rem;
}

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(7, 91, 52, 0.08);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: grid;
  min-height: var(--header-height);
  grid-template-columns: minmax(180px, 250px) 1fr auto;
  align-items: center;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  width: 225px;
  max-height: 76px;
  object-fit: contain;
  object-position: left center;
}

.site-nav {
  justify-self: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.2vw, 2.1rem);
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-link {
  position: relative;
  color: var(--green-950);
  font-weight: 750;
  text-decoration: none;
}

.nav-link::after {
  position: absolute;
  right: 0;
  bottom: -0.45rem;
  left: 0;
  height: 3px;
  content: "";
  background: var(--gold-500);
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-link:hover::after,
.nav-link[aria-current="page"]::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

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

.menu-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  padding: 0;
  color: var(--green-950);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.menu-toggle-lines,
.menu-toggle-lines::before,
.menu-toggle-lines::after {
  display: block;
  width: 1.25rem;
  height: 2px;
  margin: auto;
  content: "";
  background: currentColor;
  border-radius: 999px;
  transition: transform 180ms ease;
}

.menu-toggle-lines {
  position: relative;
}

.menu-toggle-lines::before {
  position: absolute;
  top: -0.4rem;
  left: 0;
}

.menu-toggle-lines::after {
  position: absolute;
  top: 0.4rem;
  left: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-lines {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-lines::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-lines::after {
  top: 0;
  transform: rotate(-45deg);
}

.hero {
  --hero-x: 50%;
  --hero-y: 45%;
  position: relative;
  min-height: clamp(680px, calc(100vh - 130px), 820px);
  overflow: hidden;
  background: var(--cream-100);
}

.hero-grid {
  display: grid;
  min-height: inherit;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(3.75rem, 6vw, 6rem) clamp(2rem, 5vw, 5rem);
  overflow: hidden;
  background:
    repeating-radial-gradient(
      circle at calc(var(--hero-x) - 16%) calc(var(--hero-y) + 10%),
      transparent 0 35px,
      rgba(7, 91, 52, 0.045) 36px 37px
    ),
    radial-gradient(circle at var(--hero-x) var(--hero-y), rgba(239, 164, 0, 0.11), transparent 28%),
    var(--cream-100);
}

.hero-copy::after {
  position: absolute;
  z-index: -1;
  right: -8rem;
  bottom: -11rem;
  width: 24rem;
  height: 24rem;
  content: "";
  background: rgba(239, 164, 0, 0.08);
  border-radius: 50%;
  filter: blur(8px);
  transform: translate3d(calc((var(--hero-x) - 50%) * 0.025), calc((var(--hero-y) - 50%) * 0.02), 0);
  transition: transform 140ms ease-out;
}

.hero-content {
  width: min(100%, 680px);
}

.hero h1 {
  max-width: 12ch;
  margin-bottom: 1.25rem;
  text-wrap: balance;
}

.hero .lead {
  max-width: 34rem;
  margin-bottom: 1.8rem;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  margin: 1.8rem 0 0;
  padding: 0;
  list-style: none;
}

.hero-features li {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.85rem;
  font-weight: 750;
}

.hero-features .icon-circle {
  width: 2rem;
  height: 2rem;
  font-size: 0.8rem;
}

.hero-photo {
  position: relative;
  min-height: 530px;
  overflow: hidden;
  background: var(--green-900);
}

.hero-photo img {
  width: calc(100% + 10px);
  height: calc(100% + 10px);
  object-fit: cover;
  object-position: center;
  transform: translate3d(calc((var(--hero-x) - 50%) * -0.025), calc((var(--hero-y) - 50%) * -0.018), 0)
    scale(1.025);
  transition: transform 160ms ease-out;
}

.hero-photo::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(4, 51, 31, 0.13), transparent 30%);
  pointer-events: none;
}

.location-finder-wrap {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 2rem;
  left: 0;
  pointer-events: none;
}

.location-finder {
  display: grid;
  width: min(600px, calc(100% - 2rem));
  min-height: 128px;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.75rem 1rem;
  margin-inline: auto;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(18px);
  pointer-events: auto;
}

.location-finder strong {
  grid-column: 2 / -1;
  font-size: clamp(1rem, 2vw, 1.22rem);
}

.location-finder input,
.field input,
.field select,
.field textarea {
  width: 100%;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #cbd5cf;
  border-radius: var(--radius-sm);
}

.location-finder input {
  grid-row: 2;
  grid-column: 1 / 3;
  min-height: 3.4rem;
  padding: 0.7rem 1rem;
}

.location-finder .button {
  grid-row: 2;
  grid-column: 3;
}

.finder-message {
  width: min(600px, calc(100% - 2rem));
  margin: 0.45rem auto 0;
  color: var(--white);
  font-size: 0.84rem;
  font-weight: 750;
  text-align: center;
  text-shadow: 0 1px 4px rgba(4, 51, 31, 0.8);
}

.finder-message:empty {
  display: none;
}

.trust-bar {
  background: var(--green-950);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  display: flex;
  min-height: 98px;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.35rem;
  color: var(--white);
  border-right: 1px solid rgba(255, 255, 255, 0.13);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item span:last-child {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.84rem;
}

.trust-item strong {
  display: block;
  color: var(--white);
  font-size: 0.98rem;
}

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

.card {
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.feature-card {
  position: relative;
  overflow: hidden;
}

.feature-card::after {
  position: absolute;
  top: -2.5rem;
  right: -2.5rem;
  width: 7rem;
  height: 7rem;
  content: "";
  background: var(--cream-200);
  border-radius: 50%;
}

.feature-card .icon-circle {
  position: relative;
  z-index: 1;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1.25rem;
  color: var(--green-950);
  background: var(--gold-500);
}

.feature-card p,
.size-card p,
.location-card p {
  margin-bottom: 0;
  color: var(--muted);
}

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

.size-card {
  position: relative;
  min-height: 235px;
  padding: 1.45rem;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.size-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  content: "";
  background: linear-gradient(90deg, var(--green-800), var(--gold-500));
}

.size-card .size-label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--green-950);
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.05em;
}

.size-card .size-comparison {
  display: inline-block;
  margin-bottom: 0.8rem;
  color: var(--green-700);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.size-card a {
  display: inline-block;
  margin-top: 1rem;
  color: var(--green-800);
  font-weight: 850;
}

.visualizer-preview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.85fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
}

.visualizer-art {
  position: relative;
  min-height: 450px;
  padding: 2rem;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    var(--green-950);
  background-size: 32px 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.visualizer-art::before {
  position: absolute;
  inset: 14% 12% 12% 12%;
  content: "";
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(239, 164, 0, 0.11));
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: 0.8rem;
  transform: perspective(900px) rotateX(55deg) rotateZ(-3deg);
  transform-origin: center bottom;
}

.preview-items {
  position: absolute;
  inset: 26% 20% 21% 20%;
  transform: perspective(900px) rotateX(55deg) rotateZ(-3deg);
  transform-origin: center bottom;
}

.preview-item {
  position: absolute;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--green-700);
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 0.4rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18);
  font-size: 0.72rem;
  font-weight: 850;
}

.preview-item.item-sofa {
  top: 50%;
  left: 8%;
  width: 45%;
  height: 22%;
}

.preview-item.item-bed {
  top: 8%;
  right: 7%;
  width: 36%;
  height: 36%;
  background: #9a6a25;
}

.preview-item.item-boxes {
  right: 8%;
  bottom: 8%;
  width: 26%;
  height: 24%;
  background: var(--gold-600);
}

.preview-item.item-appliance {
  bottom: 8%;
  left: 9%;
  width: 20%;
  height: 24%;
  color: var(--green-950);
  background: var(--white);
}

.visualizer-art-label {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
}

.visualizer-art-label strong {
  color: var(--white);
  font-size: 2rem;
}

.visualizer-art-label span {
  color: rgba(255, 255, 255, 0.7);
}

.check-list {
  display: grid;
  gap: 0.8rem;
  margin: 1.5rem 0 2rem;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 0.7rem;
}

.check-list li::before {
  display: grid;
  width: 1.45rem;
  height: 1.45rem;
  flex: 0 0 auto;
  place-items: center;
  color: var(--white);
  content: "✓";
  background: var(--green-800);
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 900;
}

.community-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.7rem;
}

.community-pill {
  display: grid;
  min-height: 90px;
  place-items: center;
  padding: 1rem 0.7rem;
  color: var(--green-950);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 850;
  text-align: center;
  text-decoration: none;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.community-pill:hover {
  border-color: var(--gold-500);
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}

.cta-band {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: clamp(2rem, 5vw, 3.5rem);
  color: var(--white);
  background:
    radial-gradient(circle at 80% 30%, rgba(239, 164, 0, 0.17), transparent 26%),
    var(--green-950);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.cta-band h2 {
  margin-bottom: 0.5rem;
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.cta-band p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
}

.page-hero {
  position: relative;
  padding: clamp(4.5rem, 9vw, 7.5rem) 0;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 35%, rgba(239, 164, 0, 0.18), transparent 25%),
    repeating-radial-gradient(circle at 12% 55%, transparent 0 45px, rgba(255, 255, 255, 0.035) 46px 47px),
    linear-gradient(135deg, var(--green-950), var(--green-800));
}

.page-hero h1 {
  max-width: 880px;
  margin-bottom: 1rem;
  color: var(--white);
  font-size: clamp(2.7rem, 6vw, 5rem);
}

.page-hero .lead {
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.1rem;
  padding: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.85rem;
  font-weight: 750;
  list-style: none;
}

.breadcrumb a {
  color: var(--gold-300);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.filter-button,
.size-tab {
  min-height: 2.8rem;
  padding: 0.55rem 1rem;
  color: var(--green-950);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 800;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.filter-button:hover,
.size-tab:hover {
  border-color: var(--gold-500);
  transform: translateY(-1px);
}

.filter-button[aria-pressed="true"],
.size-tab[aria-selected="true"] {
  color: var(--white);
  background: var(--green-800);
  border-color: var(--green-800);
}

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

.location-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.location-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.location-card[hidden] {
  display: none;
}

.location-card-header {
  padding: 1.35rem 1.4rem 1.15rem;
  color: var(--white);
  background:
    radial-gradient(circle at 90% 0, rgba(239, 164, 0, 0.2), transparent 35%),
    var(--green-900);
}

.location-card-header h2 {
  margin-bottom: 0.4rem;
  color: var(--white);
  font-size: 1.55rem;
}

.location-card-header address {
  color: rgba(255, 255, 255, 0.8);
  font-style: normal;
}

.location-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.35rem 1.4rem 1.45rem;
}

.location-meta {
  display: grid;
  gap: 0.65rem;
  margin: 0 0 1.1rem;
  padding: 0;
  list-style: none;
}

.location-meta li {
  display: grid;
  grid-template-columns: 6.6rem 1fr;
  gap: 0.5rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.location-meta strong {
  color: var(--ink);
}

.amenity-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.25rem;
}

.amenity-tag {
  padding: 0.35rem 0.6rem;
  color: var(--green-800);
  background: rgba(7, 91, 52, 0.07);
  border-radius: 999px;
  font-size: 0.73rem;
  font-weight: 800;
}

.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: auto;
}

.location-count {
  margin-bottom: 1rem;
  color: var(--muted);
  font-weight: 750;
}

.visualizer-shell {
  padding: clamp(1rem, 3vw, 2rem);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.size-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
}

.visualizer-grid {
  display: grid;
  grid-template-columns: minmax(390px, 1.1fr) minmax(300px, 0.9fr);
  gap: clamp(1.5rem, 4vw, 3rem);
}

.unit-stage {
  position: relative;
  display: grid;
  min-height: 530px;
  place-items: center;
  padding: 2rem;
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(145deg, var(--green-950), #0a5a37);
  background-size: 28px 28px, 28px 28px, auto;
  border-radius: var(--radius-md);
}

.unit-stage::before {
  position: absolute;
  inset: 0;
  content: "";
  background: radial-gradient(circle at 50% 60%, rgba(239, 164, 0, 0.12), transparent 33%);
}

.unit-floor {
  position: relative;
  width: 72%;
  height: 72%;
  overflow: hidden;
  background:
    linear-gradient(rgba(4, 51, 31, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(4, 51, 31, 0.1) 1px, transparent 1px),
    #e7e2d7;
  background-size: 20px 20px;
  border: 10px solid #c4beb0;
  border-bottom-color: var(--gold-500);
  border-radius: 0.45rem;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.25);
  transition:
    width 280ms ease,
    height 280ms ease;
}

.unit-floor::after {
  position: absolute;
  right: 18%;
  bottom: -10px;
  width: 34%;
  height: 10px;
  content: "";
  background: #f6c453;
  box-shadow: 0 -2px 0 rgba(255, 255, 255, 0.45);
}

.unit-item {
  position: absolute;
  display: grid;
  place-items: center;
  padding: 0.15rem;
  overflow: hidden;
  color: var(--white);
  background: var(--green-700);
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 0.35rem;
  box-shadow: 0 8px 15px rgba(4, 51, 31, 0.18);
  font-size: clamp(0.55rem, 1.1vw, 0.72rem);
  font-weight: 850;
  line-height: 1.05;
  text-align: center;
  transition:
    opacity 180ms ease,
    transform 220ms ease;
}

.unit-item[data-kind="boxes"] {
  color: var(--green-950);
  background: #e6a521;
}

.unit-item[data-kind="bed"] {
  background: #8c6a3f;
}

.unit-item[data-kind="sofa"] {
  background: #32715a;
}

.unit-item[data-kind="appliance"] {
  color: var(--green-950);
  background: #f4f4f0;
}

.unit-item[data-kind="vehicle"] {
  background: #6a756f;
  border-radius: 45% 45% 25% 25%;
}

.unit-dimension {
  position: absolute;
  z-index: 2;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.unit-dimension.width {
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
}

.unit-dimension.depth {
  top: 50%;
  left: 0.5rem;
  writing-mode: vertical-rl;
  transform: translateY(-50%) rotate(180deg);
}

.unit-info {
  padding: 0.4rem 0;
}

.unit-size-name {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--green-950);
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.055em;
}

.unit-comparison {
  margin-bottom: 1.2rem;
  color: var(--green-700);
  font-weight: 850;
}

.unit-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.7rem;
  margin: 1.4rem 0;
}

.unit-stat {
  padding: 1rem;
  background: var(--cream-100);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.unit-stat strong {
  display: block;
  color: var(--green-950);
  font-size: 1.4rem;
}

.unit-stat span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
}

.contents-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
  margin: 1rem 0 1.5rem;
  padding: 0;
  list-style: none;
}

.contents-list li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.contents-list li::before {
  color: var(--gold-600);
  content: "●";
  font-size: 0.62rem;
}

.visualizer-note {
  margin: 1.2rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.quiz-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.75fr);
  gap: 2rem;
  align-items: start;
}

.quiz-card,
.result-card {
  padding: clamp(1.5rem, 4vw, 2.4rem);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.field {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1rem;
}

.field label,
.field legend {
  color: var(--green-950);
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  min-height: 3.2rem;
  padding: 0.75rem 0.9rem;
}

.field textarea {
  min-height: 130px;
  resize: vertical;
}

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

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.8rem;
  background: var(--cream-100);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.checkbox input {
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.15rem;
  accent-color: var(--green-800);
}

.result-card {
  position: sticky;
  top: 8rem;
  color: var(--white);
  background:
    radial-gradient(circle at 90% 5%, rgba(239, 164, 0, 0.18), transparent 30%),
    var(--green-950);
}

.result-card h3 {
  color: var(--white);
}

.result-size {
  display: block;
  margin: 1rem 0 0.3rem;
  color: var(--gold-300);
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.06em;
}

.result-card p {
  color: rgba(255, 255, 255, 0.76);
}

.size-table-wrap {
  overflow-x: auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.size-table {
  width: 100%;
  border-collapse: collapse;
}

.size-table th,
.size-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.size-table th {
  color: var(--white);
  background: var(--green-900);
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.size-table tr:last-child td {
  border-bottom: 0;
}

.size-table td:first-child {
  color: var(--green-950);
  font-weight: 900;
}

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

.tip-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.35rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.tip-number {
  display: grid;
  width: 2.6rem;
  height: 2.6rem;
  place-items: center;
  color: var(--green-950);
  background: var(--gold-500);
  border-radius: 50%;
  font-weight: 900;
}

.tip-card p {
  margin-bottom: 0;
  color: var(--muted);
}

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

.prohibited-item {
  padding: 1rem;
  color: #7f2d23;
  background: #fff5f3;
  border: 1px solid #f1d1cb;
  border-radius: var(--radius-sm);
  font-weight: 800;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(390px, 1.15fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.contact-cards {
  display: grid;
  gap: 1rem;
}

.contact-card {
  padding: 1.25rem;
  background: var(--cream-100);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.contact-card h3 {
  margin-bottom: 0.4rem;
}

.contact-card p {
  margin-bottom: 0.35rem;
  color: var(--muted);
}

.contact-card a {
  color: var(--green-800);
  font-weight: 800;
}

.form-card {
  padding: clamp(1.5rem, 4vw, 2.5rem);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.form-note {
  margin: 0.75rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.payment-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.2rem;
  padding: 1.5rem;
  background: var(--cream-100);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.payment-card .icon-circle {
  width: 3.2rem;
  height: 3.2rem;
  color: var(--green-950);
  background: var(--gold-500);
}

.payment-card h3,
.payment-card p {
  margin-bottom: 0.2rem;
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

.faq-item {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.faq-question {
  display: flex;
  width: 100%;
  min-height: 3.8rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1rem;
  color: var(--green-950);
  background: transparent;
  border: 0;
  font-weight: 850;
  text-align: left;
}

.faq-question::after {
  content: "+";
  color: var(--gold-600);
  font-size: 1.5rem;
  font-weight: 500;
}

.faq-question[aria-expanded="true"]::after {
  content: "−";
}

.faq-answer {
  padding: 0 1rem 1rem;
  color: var(--muted);
}

.faq-answer[hidden] {
  display: none;
}

.site-footer {
  color: rgba(255, 255, 255, 0.76);
  background: #022719;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 0.75fr 1fr;
  gap: 2rem;
  padding: 4rem 0 3rem;
}

.footer-brand img {
  width: 250px;
  margin-bottom: 1.2rem;
  padding: 0.5rem;
  background: var(--white);
  border-radius: var(--radius-sm);
}

.footer-brand p {
  max-width: 360px;
}

.footer-column h2 {
  margin-bottom: 1rem;
  color: var(--white);
  font-size: 1rem;
  letter-spacing: 0;
}

.footer-links {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--gold-300);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.8rem;
}

.footer-bottom p {
  margin: 0;
}

.toast {
  position: fixed;
  z-index: 2000;
  right: 1rem;
  bottom: 1rem;
  max-width: 360px;
  padding: 0.9rem 1rem;
  color: var(--white);
  background: var(--green-950);
  border-left: 5px solid var(--gold-500);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  transform: translateY(140%);
  transition: transform 220ms ease;
}

.toast.visible {
  transform: translateY(0);
}

@media (max-width: 1100px) {
  :root {
    --header-height: 78px;
  }

  .header-inner {
    grid-template-columns: minmax(175px, 220px) 1fr auto;
  }

  .brand img {
    width: 195px;
    max-height: 68px;
  }

  .nav-list {
    gap: 1rem;
  }

  .header-actions .button-secondary {
    display: none;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  }

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

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

@media (max-width: 900px) {
  .utility-inner {
    justify-content: center;
  }

  .utility-item:first-child {
    display: none;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    z-index: 1002;
    top: calc(42px + var(--header-height));
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    padding: 1.5rem;
    background: var(--white);
  }

  .site-nav.open {
    display: block;
  }

  .nav-list {
    align-items: stretch;
    flex-direction: column;
    gap: 0;
  }

  .nav-link {
    display: block;
    padding: 1rem 0;
    border-bottom: 1px solid var(--line);
    font-size: 1.25rem;
  }

  .nav-link::after {
    display: none;
  }

  .mobile-nav-actions {
    display: grid;
    gap: 0.7rem;
    margin-top: 1.3rem;
  }

  .header-actions {
    grid-column: 2;
    grid-row: 1;
  }

  .header-actions .button {
    display: none;
  }

  .hero {
    min-height: auto;
  }

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

  .hero-copy {
    min-height: auto;
    padding: 4rem max(1.5rem, 6vw);
  }

  .hero-photo {
    min-height: 480px;
  }

  .hero-photo img {
    transform: scale(1.02);
  }

  .location-finder-wrap {
    bottom: 1.5rem;
  }

  .location-finder {
    width: min(600px, var(--content));
    grid-template-columns: auto 1fr auto;
  }

  .location-finder input {
    grid-column: 1 / 3;
    grid-row: 2;
  }

  .location-finder .button {
    grid-column: 3;
    grid-row: 2;
  }

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

  .trust-item:nth-child(2) {
    border-right: 0;
  }

  .trust-item:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  }

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

  .visualizer-preview,
  .visualizer-grid,
  .quiz-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .visualizer-art {
    min-height: 380px;
  }

  .result-card {
    position: static;
  }

  .cta-band {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  :root {
    --content: min(100% - 1.2rem, 1180px);
  }

  .brand img {
    width: 165px;
  }

  .hero-copy {
    min-height: auto;
    padding-top: 3.4rem;
    padding-right: 1rem;
    padding-bottom: 3.4rem;
    padding-left: 1rem;
  }

  .hero h1 {
    font-size: clamp(2.55rem, 13vw, 4rem);
  }

  .hero .button-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.6rem;
  }

  .hero-features li {
    align-items: center;
    flex-direction: column;
    font-size: 0.68rem;
    text-align: center;
  }

  .hero-photo {
    min-height: 400px;
  }

  .location-finder {
    width: calc(100% - 1.2rem);
    min-height: auto;
    grid-template-columns: auto 1fr auto;
    gap: 0.65rem;
    padding: 0.85rem;
  }

  .location-finder strong {
    font-size: 0.95rem;
  }

  .location-finder .icon-circle {
    width: 2.2rem;
    height: 2.2rem;
  }

  .location-finder .button {
    width: 3rem;
    min-height: 3rem;
    padding: 0;
    font-size: 0;
  }

  .location-finder .button::before {
    content: "→";
    font-size: 1.2rem;
  }

  .trust-grid,
  .card-grid,
  .size-cards,
  .locations-grid,
  .tips-grid,
  .prohibited-grid,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .trust-item {
    min-height: 80px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

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

  .visualizer-art {
    min-height: 315px;
  }

  .unit-stage {
    min-height: 420px;
    padding: 1rem;
  }

  .unit-floor {
    width: 82%;
  }

  .contents-list,
  .checkbox-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .field-full {
    grid-column: auto;
  }

  .location-meta li {
    grid-template-columns: 5.8rem 1fr;
  }

  .payment-card {
    grid-template-columns: auto 1fr;
  }

  .payment-card .button {
    grid-column: 1 / -1;
  }

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

@media (max-width: 420px) {
  .hero-photo {
    min-height: 460px;
  }

  .location-finder {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.65rem;
  }

  .location-finder strong {
    grid-column: 2;
  }

  .location-finder input {
    grid-row: 2;
    grid-column: 1 / -1;
  }

  .location-finder .button {
    width: 100%;
    min-height: 3rem;
    grid-row: 3;
    grid-column: 1 / -1;
    padding: 0.7rem 1rem;
    font-size: 0.85rem;
  }

  .location-finder .button::before {
    content: none;
  }
}

/* Photo-real interactive Storage Studio */
.studio-unit-room {
  --opening-left: 27.2%;
  --opening-top: 29.2%;
  --opening-width: 44%;
  --opening-height: 51.2%;
  position: relative;
  min-height: 0;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: #0d261d;
  isolation: isolate;
  perspective: none;
}

.studio-unit-room[data-door-width="5"] {
  --opening-left: 40.2%;
  --opening-top: 26.5%;
  --opening-width: 20%;
  --opening-height: 54.4%;
}

.studio-unit-photo {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
}

.studio-photo-opening {
  position: absolute;
  z-index: 3;
  top: var(--opening-top);
  left: var(--opening-left);
  width: var(--opening-width);
  height: var(--opening-height);
  padding: 0;
  overflow: hidden;
  background: transparent;
  border: 0;
  border-radius: 1px;
  cursor: pointer;
}

.studio-photo-opening:focus-visible {
  outline: 3px solid var(--studio-gold);
  outline-offset: 3px;
}

.studio-photo-opening .studio-rollup-door {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.12), transparent 18%, transparent 82%, rgba(0, 0, 0, 0.12)),
    repeating-linear-gradient(
      180deg,
      #0f8f58 0 6px,
      #087448 7px 10px,
      #075e3b 11px 12px
    );
  border: 0;
  border-bottom: 5px solid #d9ddd7;
  box-shadow:
    inset 0 0 22px rgba(0, 0, 0, 0.18),
    0 8px 18px rgba(0, 0, 0, 0.26);
  transition: transform 760ms cubic-bezier(0.2, 0.82, 0.2, 1);
  will-change: transform;
}

.studio-unit-room.is-open .studio-photo-opening .studio-rollup-door {
  transform: translateY(calc(-100% + 16px));
}

.studio-door-slat-brand {
  max-width: calc(100% - 1rem);
  padding: 0.35rem 0.5rem;
  color: #fff;
  background: rgba(2, 27, 19, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  font-size: clamp(0.36rem, 0.8vw, 0.58rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.studio-door-handle {
  position: absolute;
  bottom: 10%;
  left: 50%;
  width: clamp(20px, 18%, 42px);
  height: 7px;
  background: #e7e7df;
  border: 2px solid #575e59;
  border-radius: 2px;
  transform: translateX(-50%);
}

.studio-photo-status {
  position: absolute;
  z-index: 5;
  bottom: 1rem;
  left: 1rem;
  display: grid;
  gap: 0.15rem;
  max-width: calc(100% - 11rem);
  padding: 0.65rem 0.75rem;
  color: #fff;
  background: rgba(2, 27, 19, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.65rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(10px);
}

.studio-photo-status span {
  color: var(--studio-mint);
  font-size: 0.58rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.studio-photo-status strong {
  font-size: 0.78rem;
}

.studio-door-control {
  z-index: 6;
  cursor: pointer;
}

.studio-door-control-icon {
  display: inline-block;
}

.studio-unit-room.is-open .studio-door-control-icon {
  transform: rotate(180deg);
}

.studio-room-data {
  display: grid;
  min-height: 190px;
  grid-template-columns: minmax(0, 1fr) minmax(150px, 0.55fr);
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.35rem;
  background:
    linear-gradient(145deg, rgba(189, 232, 202, 0.07), transparent 58%),
    #041f17;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.studio-room-data > div:first-child {
  display: grid;
  gap: 0.35rem;
}

.studio-room-data > div:first-child > span {
  color: var(--studio-mint);
  font-size: 0.64rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.studio-room-data strong {
  color: #fff;
  font-size: clamp(1.1rem, 2.2vw, 1.6rem);
}

.studio-room-data small {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.68rem;
}

.studio-footprint-stage {
  display: grid;
  min-height: 150px;
  place-items: center;
  padding: 0.7rem;
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    rgba(255, 255, 255, 0.025);
  background-size: 18px 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.8rem;
}

.studio-footprint {
  position: relative;
  width: 90px;
  height: 135px;
  background:
    linear-gradient(rgba(4, 61, 41, 0.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(4, 61, 41, 0.2) 1px, transparent 1px),
    var(--studio-sand);
  background-size: var(--grid-width, 10%) var(--grid-depth, 6.666%);
  border: 4px solid #a7b0a9;
  border-bottom-color: var(--studio-gold);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
  transition:
    width 300ms ease,
    height 300ms ease;
}

.studio-footprint-width,
.studio-footprint-depth {
  position: absolute;
  color: var(--studio-mint);
  font-size: 0.58rem;
  font-weight: 850;
  white-space: nowrap;
}

.studio-footprint-width {
  bottom: -1.2rem;
  left: 50%;
  transform: translateX(-50%);
}

.studio-footprint-depth {
  top: 50%;
  left: calc(100% + 0.45rem);
  writing-mode: vertical-rl;
  transform: translateY(-50%);
}

.visualizer-media-column {
  display: grid;
  align-content: start;
  gap: 1rem;
  min-width: 0;
}

.studio-unit-room-compact {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 1rem;
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.25);
}

.studio-unit-room-compact .studio-photo-status {
  bottom: 0.8rem;
  left: 0.8rem;
}

.studio-unit-room-compact .studio-door-control {
  right: 0.8rem;
  bottom: 0.8rem;
}

.visualizer-media-column .unit-stage {
  min-height: 470px;
}

.unit-stage-kicker {
  position: absolute;
  z-index: 2;
  top: 1rem;
  left: 1rem;
  color: var(--studio-mint);
  font-size: 0.64rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.visualizer-media-column .unit-floor {
  flex: none;
  background-size: 12px 12px;
}

@media (max-width: 900px) {
  .studio-room-data {
    grid-template-columns: minmax(0, 1fr) minmax(140px, 0.45fr);
  }
}

@media (max-width: 640px) {
  .studio-unit-room {
    min-height: 0;
  }

  .studio-photo-status {
    bottom: 0.55rem;
    left: 0.55rem;
    max-width: calc(100% - 9.5rem);
    padding: 0.45rem 0.55rem;
  }

  .studio-photo-status span {
    font-size: 0.48rem;
  }

  .studio-photo-status strong {
    font-size: 0.65rem;
  }

  .studio-door-control {
    right: 0.55rem;
    bottom: 0.55rem;
    min-height: 2.6rem;
    padding: 0.5rem 0.7rem;
    font-size: 0.66rem;
  }

  .studio-door-slat-brand {
    display: none;
  }

  .studio-room-data {
    min-height: 170px;
    grid-template-columns: 1fr 118px;
    padding: 1rem;
  }

  .studio-footprint-stage {
    min-height: 132px;
    padding: 0.5rem;
  }

  .visualizer-media-column .unit-stage {
    min-height: 430px;
  }

  .unit-stage-kicker {
    top: 0.75rem;
    left: 0.75rem;
    font-size: 0.55rem;
  }
}

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

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

  .hero-photo img,
  .hero-copy::after {
    transform: none !important;
  }
}

/* =========================================================
   STORAGE STUDIO — 2026 EXPERIENCE LAYER
   ========================================================= */

:root {
  --studio-night: #021b13;
  --studio-forest: #043d29;
  --studio-green: #087a4a;
  --studio-mint: #bde8ca;
  --studio-gold: #f2a900;
  --studio-sand: #f5f1e8;
  --studio-paper: #fffdf8;
  --studio-ink: #0b241b;
  --studio-line: rgba(4, 61, 41, 0.14);
  --studio-shadow: 0 24px 80px rgba(2, 27, 19, 0.18);
}

body {
  background: var(--studio-paper);
}

.site-header {
  top: 0;
  border-bottom: 1px solid rgba(4, 61, 41, 0.1);
  box-shadow: none;
}

.utility-bar {
  background: var(--studio-night);
}

.header-inner {
  min-height: 82px;
}

.brand img {
  width: 178px;
  max-height: 72px;
}

.nav-link {
  font-size: 0.82rem;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.button {
  min-height: 3.1rem;
  border-radius: 0.75rem;
}

.button-primary {
  color: var(--studio-night);
  background: var(--studio-gold);
  box-shadow: 0 10px 28px rgba(242, 169, 0, 0.22);
}

.button-primary:hover {
  background: #ffbc23;
}

.studio-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 1.25rem;
  color: var(--studio-mint);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.studio-kicker > span {
  width: 2.2rem;
  height: 2px;
  background: var(--studio-gold);
}

.studio-kicker-dark {
  color: var(--studio-green);
}

.studio-hero {
  position: relative;
  min-height: min(850px, calc(100vh - 115px));
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--studio-night);
  isolation: isolate;
}

.studio-hero-image,
.studio-hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.studio-hero-image {
  z-index: -3;
  object-fit: cover;
  object-position: center 54%;
  filter: saturate(0.92) contrast(1.03);
  transform: scale(1.02);
  animation: studio-hero-settle 1200ms cubic-bezier(0.2, 0.72, 0.2, 1) both;
}

.studio-hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(2, 27, 19, 0.96) 0%, rgba(2, 27, 19, 0.87) 35%, rgba(2, 27, 19, 0.38) 70%, rgba(2, 27, 19, 0.24) 100%),
    linear-gradient(180deg, rgba(2, 27, 19, 0.05), rgba(2, 27, 19, 0.55));
}

.studio-hero::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, #000, transparent 68%);
}

@keyframes studio-hero-settle {
  from {
    opacity: 0.75;
    transform: scale(1.08);
  }
  to {
    opacity: 1;
    transform: scale(1.02);
  }
}

.studio-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.72fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
  padding-block: clamp(5rem, 9vw, 8rem);
}

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

.studio-hero-copy h1 {
  max-width: 10ch;
  margin: 0 0 1.5rem;
  color: var(--white);
  font-size: clamp(4rem, 7.4vw, 7.4rem);
  letter-spacing: -0.065em;
  line-height: 0.9;
  text-wrap: balance;
}

.studio-hero-copy h1 em {
  color: var(--studio-gold);
  font-style: normal;
}

.studio-hero-copy > p:not(.studio-kicker) {
  max-width: 38rem;
  margin: 0 0 2rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.7vw, 1.2rem);
}

.studio-hero-actions,
.studio-plan-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.1rem;
}

.studio-button-gold,
.studio-button-dark {
  border: 0;
}

.studio-button-gold {
  color: var(--studio-night);
  background: var(--studio-gold);
  box-shadow: 0 14px 34px rgba(242, 169, 0, 0.25);
}

.studio-button-gold:hover {
  color: var(--studio-night);
  background: #ffc13a;
}

.studio-button-dark {
  color: var(--white);
  background: var(--studio-night);
  box-shadow: none;
}

.studio-button-dark:hover {
  color: var(--white);
  background: var(--studio-green);
}

.studio-text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
}

.studio-text-link span {
  color: var(--studio-gold);
  font-size: 1.15rem;
}

.studio-text-link-dark {
  color: var(--studio-night);
}

.studio-hero-metrics {
  display: flex;
  gap: clamp(1.25rem, 3vw, 2.8rem);
  margin: 3rem 0 0;
}

.studio-hero-metrics div {
  padding-left: 1rem;
  border-left: 1px solid rgba(255, 255, 255, 0.24);
}

.studio-hero-metrics dt {
  margin-bottom: 0.15rem;
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 800;
}

.studio-hero-metrics dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.studio-quick-plan {
  padding: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--studio-ink);
  background: rgba(255, 253, 248, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 1.4rem;
  box-shadow: var(--studio-shadow);
  backdrop-filter: blur(22px);
}

.studio-card-index {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.15rem;
  color: var(--studio-green);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.studio-card-index span {
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  color: var(--studio-night);
  background: var(--studio-mint);
  border-radius: 50%;
  letter-spacing: 0;
}

.studio-quick-plan h2 {
  margin-bottom: 0.65rem;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  line-height: 1;
}

.studio-quick-plan > p {
  margin-bottom: 1.35rem;
  color: #5c6b65;
  font-size: 0.9rem;
}

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

.studio-scenario-grid button,
.studio-scenario-tabs button {
  color: var(--studio-ink);
  background: rgba(4, 61, 41, 0.045);
  border: 1px solid var(--studio-line);
  border-radius: 0.75rem;
  font-weight: 750;
  text-align: left;
  transition: 180ms ease;
}

.studio-scenario-grid button {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 3.2rem;
  padding: 0.75rem 0.8rem;
  font-size: 0.78rem;
}

.studio-scenario-grid button span {
  display: grid;
  width: 1.65rem;
  height: 1.65rem;
  place-items: center;
  color: var(--studio-green);
  background: var(--white);
  border-radius: 0.5rem;
}

.studio-scenario-grid button:hover,
.studio-scenario-tabs button:hover {
  border-color: rgba(8, 122, 74, 0.38);
  transform: translateY(-1px);
}

.studio-scenario-grid button[aria-pressed="true"],
.studio-scenario-tabs button[aria-pressed="true"] {
  color: var(--white);
  background: var(--studio-green);
  border-color: var(--studio-green);
}

.studio-scenario-grid button[aria-pressed="true"] span {
  color: var(--studio-night);
  background: var(--studio-mint);
}

.studio-quick-result {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.2rem 1rem;
  align-items: end;
  margin: 1.15rem 0;
  padding: 1rem 0;
  border-block: 1px solid var(--studio-line);
}

.studio-quick-result span,
.studio-quick-result small {
  color: #64736d;
  font-size: 0.7rem;
}

.studio-quick-result strong {
  grid-row: 1 / 3;
  grid-column: 2;
  color: var(--studio-green);
  font-size: 1.85rem;
  letter-spacing: -0.05em;
}

.studio-quick-plan > .button {
  width: 100%;
  justify-content: space-between;
}

.studio-scroll-cue {
  position: absolute;
  right: 2rem;
  bottom: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.studio-scroll-cue span {
  display: block;
  width: 2.4rem;
  height: 1px;
  background: var(--studio-gold);
}

.studio-home .trust-bar {
  background: var(--studio-night);
}

.studio-home .trust-item {
  min-height: 90px;
}

.studio-home .trust-item .icon-circle {
  color: var(--studio-night);
  background: var(--studio-mint);
}

.studio-lab {
  padding: clamp(5.5rem, 10vw, 9rem) 0;
  color: var(--white);
  background:
    radial-gradient(circle at 84% 15%, rgba(189, 232, 202, 0.12), transparent 28%),
    var(--studio-night);
}

.studio-section-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.65fr);
  align-items: end;
  gap: 4rem;
  margin-bottom: 3rem;
}

.studio-section-intro h2 {
  max-width: 12ch;
  margin: 0;
  color: var(--white);
  font-size: clamp(2.8rem, 6vw, 5.6rem);
  line-height: 0.94;
}

.studio-section-intro > p {
  margin: 0 0 0.45rem;
  color: rgba(255, 255, 255, 0.62);
}

.studio-lab-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(330px, 0.72fr);
  overflow: hidden;
  background: #06271d;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1.65rem;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.28);
}

.studio-unit-experience {
  min-width: 0;
  background: #041f17;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.studio-unit-toolbar {
  display: flex;
  min-height: 60px;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.35rem;
  color: rgba(255, 255, 255, 0.66);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.studio-unit-toolbar > div {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.studio-unit-toolbar strong {
  color: var(--studio-mint);
  font-size: 0.95rem;
}

.studio-live-dot {
  width: 0.55rem;
  height: 0.55rem;
  background: #54e78f;
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(84, 231, 143, 0.1);
}

.studio-unit-room {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  background: linear-gradient(#143b2e 0 54%, #786f5e 54% 100%);
  perspective: 1000px;
}

.studio-room-back {
  position: absolute;
  inset: 6% 7% 25%;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(#234c3e, #123529);
  background-size: 64px 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 0 70px rgba(0, 0, 0, 0.28);
}

.studio-room-back::before,
.studio-room-back::after {
  position: absolute;
  inset-block: 0;
  width: 8%;
  content: "";
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.32), transparent);
}

.studio-room-back::after {
  right: 0;
  left: auto;
  transform: scaleX(-1);
}

.studio-room-light {
  position: absolute;
  top: 4%;
  left: 50%;
  width: 35%;
  height: 4%;
  background: #e8f0d9;
  border-radius: 999px;
  box-shadow: 0 0 34px rgba(232, 240, 217, 0.46);
  transform: translateX(-50%);
}

.studio-room-floor {
  position: absolute;
  right: -12%;
  bottom: -25%;
  left: -12%;
  height: 62%;
  background:
    linear-gradient(90deg, rgba(2, 27, 19, 0.2) 1px, transparent 1px),
    linear-gradient(rgba(2, 27, 19, 0.22) 1px, transparent 1px),
    linear-gradient(#a69a83, #706958);
  background-size: 90px 100%, 100% 74px, 100% 100%;
  transform: rotateX(58deg);
  transform-origin: top;
}

.studio-stage-items {
  position: absolute;
  z-index: 2;
  inset: auto 7% 7%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0.6rem;
}

.studio-stage-items span {
  display: grid;
  min-width: 76px;
  min-height: 70px;
  place-items: center;
  padding: 0.6rem;
  color: var(--studio-night);
  background: #d9a85a;
  border: 2px solid #9a7136;
  border-radius: 0.35rem;
  box-shadow: 0 15px 24px rgba(0, 0, 0, 0.22);
  font-size: 0.7rem;
  font-weight: 850;
  transition: 280ms ease;
}

.studio-stage-items span[data-kind="bed"] {
  min-width: 150px;
  min-height: 80px;
  background: #e6dfd0;
  border-color: #aaa08e;
}

.studio-stage-items span[data-kind="sofa"] {
  min-width: 130px;
  min-height: 94px;
  color: var(--white);
  background: #426f5c;
  border-color: #274b3d;
  border-radius: 0.8rem 0.8rem 0.35rem 0.35rem;
}

.studio-stage-items span[data-kind="appliance"] {
  min-height: 112px;
  background: #d9ddd8;
  border-color: #8d9690;
}

.studio-stage-items span[data-kind="vehicle"] {
  min-width: 190px;
  min-height: 72px;
  color: var(--white);
  background: #21483a;
  border-color: #122f25;
  border-radius: 2rem 3rem 0.7rem 0.7rem;
}

.studio-rollup-door {
  position: absolute;
  z-index: 5;
  inset: 0;
  display: grid;
  place-items: center;
  background:
    repeating-linear-gradient(
      180deg,
      #f3f0e8 0 27px,
      #d4d0c6 28px 30px,
      #b9b5ac 31px 33px
    );
  border-bottom: 10px solid #a4a097;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.4);
  transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.studio-unit-room.is-open .studio-rollup-door {
  transform: translateY(-88%);
}

.studio-door-brand {
  padding: 0.55rem 0.8rem;
  color: var(--studio-forest);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(4, 61, 41, 0.18);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.11em;
}

.studio-door-control {
  position: absolute;
  z-index: 7;
  right: 1.3rem;
  bottom: 1.3rem;
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  gap: 0.55rem;
  padding: 0.65rem 0.9rem;
  color: var(--studio-night);
  background: var(--studio-mint);
  border: 0;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 850;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.24);
}

.studio-door-control span {
  font-size: 1.2rem;
  transition: transform 250ms ease;
}

.studio-unit-room.is-open .studio-door-control span {
  transform: rotate(180deg);
}

.studio-plan-panel {
  padding: clamp(1.6rem, 4vw, 3rem);
  color: var(--studio-ink);
  background: var(--studio-paper);
}

.studio-plan-panel h3 {
  margin-bottom: 0.75rem;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 0.98;
}

.studio-plan-panel > p {
  color: #617069;
}

.studio-plan-size {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.3rem 1rem;
  margin: 1.5rem 0;
  padding: 1.2rem 0;
  border-block: 1px solid var(--studio-line);
}

.studio-plan-size span,
.studio-plan-size small {
  color: #6b7872;
  font-size: 0.72rem;
}

.studio-plan-size strong {
  grid-row: 1 / 3;
  grid-column: 2;
  align-self: center;
  color: var(--studio-green);
  font-size: clamp(2rem, 4vw, 3.25rem);
  letter-spacing: -0.06em;
}

.studio-scenario-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.4rem;
}

.studio-scenario-tabs button {
  padding: 0.55rem 0.72rem;
  font-size: 0.7rem;
}

.studio-plan-panel h4 {
  margin: 0 0 0.8rem;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.studio-plan-contents {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
  margin: 0 0 1.6rem;
  padding: 0;
  list-style: none;
}

.studio-plan-contents li {
  position: relative;
  padding-left: 1rem;
  color: #43554d;
  font-size: 0.8rem;
}

.studio-plan-contents li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 0.35rem;
  height: 0.35rem;
  content: "";
  background: var(--studio-gold);
  border-radius: 50%;
}

.studio-disclaimer {
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.72rem;
  text-align: center;
}

.studio-home .section {
  padding-block: clamp(5rem, 9vw, 8rem);
}

.studio-home .section-heading h2 {
  max-width: 13ch;
  font-size: clamp(2.5rem, 5vw, 4.7rem);
  line-height: 0.98;
}

.studio-home .size-cards {
  gap: 0;
  border-block: 1px solid var(--studio-line);
}

.studio-home .size-card {
  min-height: 320px;
  padding: 2rem 1.5rem;
  background: transparent;
  border: 0;
  border-right: 1px solid var(--studio-line);
  border-radius: 0;
  box-shadow: none;
}

.studio-home .size-card:last-child {
  border-right: 0;
}

.studio-home .size-card::before {
  top: auto;
  right: 1.5rem;
  bottom: 1.5rem;
  left: auto;
  width: 2.5rem;
  height: 2.5rem;
  background: var(--studio-mint);
  border-radius: 50%;
}

.studio-home .size-card .size-label {
  color: var(--studio-green);
  font-size: clamp(2.3rem, 4vw, 4rem);
}

.studio-home .size-card .size-comparison {
  color: var(--studio-ink);
}

.studio-home .card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--studio-line);
}

.studio-home .feature-card {
  min-height: 245px;
  padding: 2rem;
  background: transparent;
  border: 0;
  border-right: 1px solid var(--studio-line);
  border-bottom: 1px solid var(--studio-line);
  border-radius: 0;
  box-shadow: none;
}

.studio-home .feature-card:nth-child(3n) {
  border-right: 0;
}

.studio-home .feature-card::after {
  display: none;
}

.studio-home .feature-card .icon-circle {
  color: var(--studio-night);
  background: var(--studio-mint);
}

.studio-location-section {
  color: var(--white);
  background:
    radial-gradient(circle at 82% 25%, rgba(189, 232, 202, 0.12), transparent 25%),
    var(--studio-forest);
}

.studio-location-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
}

.studio-location-layout h2 {
  max-width: 12ch;
  color: var(--white);
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  line-height: 0.96;
}

.studio-location-layout .lead {
  color: rgba(255, 255, 255, 0.66);
}

.studio-location-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.65rem;
  margin-top: 1.5rem;
}

.studio-location-search input {
  min-width: 0;
  min-height: 3.4rem;
  padding: 0.7rem 0.9rem;
  color: var(--studio-ink);
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 0.75rem;
}

.studio-finder-message {
  width: auto;
  margin-top: 0.7rem;
  text-align: left;
  text-shadow: none;
}

.studio-community-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.studio-community-grid .community-pill {
  display: flex;
  min-height: 86px;
  align-items: center;
  justify-content: flex-start;
  gap: 0.9rem;
  padding: 1rem 1.2rem;
  color: var(--white);
  background: rgba(255, 255, 255, 0.035);
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0;
  box-shadow: none;
}

.studio-community-grid .community-pill span {
  color: var(--studio-mint);
  font-size: 0.68rem;
}

.studio-community-grid .community-pill:hover {
  color: var(--studio-night);
  background: var(--studio-mint);
  transform: none;
}

.studio-community-grid .community-pill:hover span {
  color: var(--studio-green);
}

.studio-home .cta-band {
  padding: clamp(2rem, 5vw, 4rem);
  background: var(--studio-night);
  border-radius: 1.5rem;
}

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

/* Shared inner-page modernization */
.page-hero {
  padding-block: clamp(5rem, 10vw, 8rem);
  color: var(--white);
  background:
    linear-gradient(110deg, rgba(2, 27, 19, 0.97), rgba(4, 61, 41, 0.84)),
    url("assets/hero-storage-facility.webp") center 50% / cover;
}

.page-hero h1 {
  max-width: 13ch;
  color: var(--white);
  font-size: clamp(3rem, 6.5vw, 6.4rem);
  line-height: 0.93;
}

.page-hero .lead,
.breadcrumb,
.breadcrumb a {
  color: rgba(255, 255, 255, 0.72);
}

.filter-button,
.size-tab {
  border-radius: 0.7rem;
}

.location-card,
.visualizer-shell,
.quiz-card,
.form-card,
.contact-card,
.faq-item,
.tip-card {
  border-color: var(--studio-line);
  border-radius: 1rem;
  box-shadow: none;
}

.location-card:hover {
  box-shadow: 0 24px 60px rgba(2, 27, 19, 0.12);
}

.visualizer-shell {
  padding: clamp(1rem, 3vw, 2rem);
  background: var(--studio-night);
  border: 0;
}

.visualizer-shell .size-tabs {
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.visualizer-shell .size-tab {
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}

.visualizer-shell .size-tab[aria-selected="true"] {
  color: var(--studio-night);
  background: var(--studio-mint);
  border-color: var(--studio-mint);
}

.visualizer-shell .unit-info {
  padding: clamp(1.5rem, 4vw, 3rem);
  background: var(--studio-paper);
  border-radius: 1rem;
}

.visualizer-shell .unit-stage {
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(189, 232, 202, 0.12), transparent 36%),
    #06271d;
  border-color: rgba(255, 255, 255, 0.14);
  border-radius: 1rem;
}

.visualizer-shell .unit-floor {
  transform: rotateX(55deg) rotateZ(-3deg);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.32);
}

.visualizer-note {
  color: rgba(255, 255, 255, 0.48);
}

.result-card {
  background:
    radial-gradient(circle at 80% 10%, rgba(189, 232, 202, 0.16), transparent 25%),
    var(--studio-night);
}

@media (max-width: 1100px) {
  .studio-hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.75fr);
    gap: 2.5rem;
  }

  .studio-hero-copy h1 {
    font-size: clamp(3.6rem, 8vw, 6rem);
  }

  .studio-lab-grid {
    grid-template-columns: minmax(0, 1fr) minmax(310px, 0.72fr);
  }

  .studio-unit-room {
    min-height: 520px;
  }

  .studio-stage-items span {
    min-width: 60px;
  }

  .studio-stage-items span[data-kind="bed"],
  .studio-stage-items span[data-kind="sofa"] {
    min-width: 100px;
  }
}

@media (max-width: 900px) {
  .header-inner {
    min-height: 74px;
  }

  .studio-hero {
    min-height: auto;
  }

  .studio-hero-image {
    object-position: 62% center;
  }

  .studio-hero-shade {
    background:
      linear-gradient(180deg, rgba(2, 27, 19, 0.91) 0%, rgba(2, 27, 19, 0.83) 48%, rgba(2, 27, 19, 0.64) 100%);
  }

  .studio-hero-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-block: 4.5rem 6rem;
  }

  .studio-hero-copy {
    max-width: 640px;
  }

  .studio-hero-copy h1 {
    font-size: clamp(3.5rem, 12vw, 6.2rem);
  }

  .studio-quick-plan {
    max-width: 650px;
  }

  .studio-scroll-cue {
    display: none;
  }

  .studio-section-intro,
  .studio-lab-grid,
  .studio-location-layout {
    grid-template-columns: 1fr;
  }

  .studio-section-intro {
    gap: 1.4rem;
  }

  .studio-unit-experience {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .studio-unit-room {
    min-height: 520px;
  }

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

  .studio-home .feature-card:nth-child(3n) {
    border-right: 1px solid var(--studio-line);
  }

  .studio-home .feature-card:nth-child(2n) {
    border-right: 0;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 72px;
  }

  .utility-bar {
    display: none;
  }

  .site-nav {
    top: var(--header-height);
  }

  .brand img {
    width: 148px;
  }

  .studio-hero-layout {
    width: min(100% - 1.2rem, 1180px);
    padding-block: 3.4rem 4.5rem;
  }

  .studio-hero-copy h1 {
    max-width: 9ch;
    font-size: clamp(3rem, 16vw, 4.6rem);
    line-height: 0.92;
  }

  .studio-hero-copy > p:not(.studio-kicker) {
    font-size: 0.98rem;
  }

  .studio-hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .studio-hero-actions .button {
    width: 100%;
  }

  .studio-hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    margin-top: 2.2rem;
  }

  .studio-hero-metrics div {
    padding-left: 0.65rem;
  }

  .studio-hero-metrics dt {
    font-size: 0.85rem;
  }

  .studio-hero-metrics dd {
    font-size: 0.58rem;
  }

  .studio-quick-plan {
    padding: 1.2rem;
    border-radius: 1rem;
  }

  .studio-scenario-grid {
    gap: 0.45rem;
  }

  .studio-scenario-grid button {
    min-height: 2.9rem;
    padding: 0.65rem;
    font-size: 0.7rem;
  }

  .studio-quick-result strong {
    font-size: 1.5rem;
  }

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

  .studio-home .trust-item {
    min-height: 76px;
    padding: 0.8rem;
  }

  .studio-home .trust-item span:last-child {
    font-size: 0.68rem;
  }

  .studio-home .trust-item strong {
    font-size: 0.72rem;
  }

  .studio-lab {
    padding-block: 4.5rem;
  }

  .studio-section-intro h2 {
    font-size: clamp(2.7rem, 13vw, 4rem);
  }

  .studio-lab-grid {
    border-radius: 1rem;
  }

  .studio-unit-room {
    min-height: 400px;
  }

  .studio-room-back {
    inset: 7% 5% 27%;
  }

  .studio-stage-items {
    right: 4%;
    left: 4%;
    gap: 0.3rem;
  }

  .studio-stage-items span {
    min-width: 45px;
    min-height: 56px;
    padding: 0.35rem;
    font-size: 0.55rem;
  }

  .studio-stage-items span[data-kind="bed"],
  .studio-stage-items span[data-kind="sofa"] {
    min-width: 70px;
    min-height: 65px;
  }

  .studio-stage-items span[data-kind="appliance"] {
    min-height: 82px;
  }

  .studio-stage-items span[data-kind="vehicle"] {
    min-width: 105px;
  }

  .studio-door-control {
    right: 0.8rem;
    bottom: 0.8rem;
  }

  .studio-plan-panel {
    padding: 1.3rem;
  }

  .studio-plan-size strong {
    font-size: 1.8rem;
  }

  .studio-plan-contents {
    grid-template-columns: 1fr;
  }

  .studio-plan-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .studio-plan-actions .button {
    width: 100%;
  }

  .studio-home .size-cards {
    display: grid;
    grid-auto-columns: minmax(78vw, 1fr);
    grid-auto-flow: column;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .studio-home .size-card {
    min-height: 280px;
    border-right: 1px solid var(--studio-line);
    scroll-snap-align: start;
  }

  .studio-home .card-grid {
    grid-template-columns: 1fr;
  }

  .studio-home .feature-card,
  .studio-home .feature-card:nth-child(2n),
  .studio-home .feature-card:nth-child(3n) {
    min-height: auto;
    border-right: 0;
  }

  .studio-location-search {
    grid-template-columns: 1fr;
  }

  .studio-community-grid {
    grid-template-columns: 1fr;
  }

  .studio-community-grid .community-pill {
    min-height: 68px;
  }

  .studio-mobile-actions {
    position: fixed;
    z-index: 1200;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    min-height: 68px;
    grid-template-columns: 1fr 0.8fr 1.25fr;
    padding: 0.45rem;
    background: rgba(255, 253, 248, 0.96);
    border-top: 1px solid var(--studio-line);
    box-shadow: 0 -12px 36px rgba(2, 27, 19, 0.12);
    backdrop-filter: blur(18px);
  }

  .studio-mobile-actions a {
    display: grid;
    place-items: center;
    gap: 0.1rem;
    color: var(--studio-ink);
    border-radius: 0.65rem;
    font-size: 0.66rem;
    font-weight: 800;
    text-decoration: none;
  }

  .studio-mobile-actions a span {
    font-size: 1rem;
  }

  .studio-mobile-actions .studio-mobile-primary {
    color: var(--studio-night);
    background: var(--studio-gold);
  }

  .page-hero h1 {
    font-size: clamp(3rem, 14vw, 4.4rem);
  }

  .visualizer-shell {
    padding: 0.75rem;
  }

  .visualizer-shell .unit-info {
    padding: 1.2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .studio-hero-image {
    animation: none;
  }

  .studio-rollup-door {
    transition: none;
  }
}
