:root {
  color-scheme: light;
  --bg: #f3eee4;
  --bg-soft: #faf7f1;
  --surface: rgba(255, 252, 247, 0.82);
  --surface-solid: #fffaf3;
  --surface-muted: #ebe3d4;
  --ink: #18211d;
  --ink-soft: #435047;
  --muted: #6c766f;
  --line: rgba(24, 33, 29, 0.1);
  --line-strong: rgba(24, 33, 29, 0.18);
  --accent: #c88d45;
  --accent-soft: #ead1a9;
  --accent-green: #6e856e;
  --dark: #18211d;
  --dark-soft: #243129;
  --white: #ffffff;
  --shadow-lg: 0 28px 80px rgba(24, 33, 29, 0.12);
  --shadow-md: 0 20px 52px rgba(24, 33, 29, 0.1);
  --shadow-sm: 0 12px 28px rgba(24, 33, 29, 0.08);
  --radius-xl: 36px;
  --radius-lg: 28px;
  --radius-md: 22px;
  --radius-sm: 18px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Instrument Sans", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.56), rgba(255, 255, 255, 0)),
    linear-gradient(180deg, #f7f3eb 0%, #f3eee4 48%, #f9f5ee 100%);
  position: relative;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  pointer-events: none;
  z-index: -1;
  filter: blur(16px);
}

body::before {
  top: -180px;
  right: -140px;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 141, 69, 0.22) 0%, rgba(200, 141, 69, 0) 68%);
}

body::after {
  bottom: -220px;
  left: -120px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(110, 133, 110, 0.16) 0%, rgba(110, 133, 110, 0) 70%);
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
}

input,
select,
textarea {
  border-radius: 18px;
}

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

[id] {
  scroll-margin-top: 96px;
}

.shell {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.section-space {
  padding: clamp(4.75rem, 8vw, 8rem) 0;
}

.section-tag,
.mini-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.73rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.section-tag {
  color: var(--accent-green);
  margin: 0 0 1rem;
}

.section-tag::before,
.mini-tag::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
}

.section-tag--light,
.mini-tag--light {
  color: var(--accent-soft);
}

.mini-tag {
  color: var(--accent);
  margin: 0 0 0.9rem;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 1.5rem 4rem;
  align-items: end;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.section-head--light .section-tag {
  color: var(--accent-soft);
}

.section-title {
  margin: 0;
  max-width: 13ch;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.7rem, 6vw, 4.8rem);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: -0.03em;
}

.section-title--light {
  color: var(--white);
}

.section-text {
  margin: 0;
  max-width: 62ch;
  font-size: 1rem;
  line-height: 1.85;
  color: var(--ink-soft);
}

.section-text + .section-text {
  margin-top: 1rem;
}

.section-text--narrow {
  justify-self: end;
  max-width: 48ch;
}

.section-text--light {
  color: rgba(255, 255, 255, 0.72);
}

.section-text--compact {
  max-width: 36ch;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0.9rem 1.5rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

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

.button--primary {
  background: var(--accent);
  color: var(--dark);
  box-shadow: 0 16px 30px rgba(200, 141, 69, 0.24);
}

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

.button--ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.button--ghost:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.16);
}

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

.button--secondary:hover {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
  box-shadow: var(--shadow-sm);
}

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

.button--dark:hover {
  color: var(--dark);
  background: var(--accent);
}

.button--block {
  width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 1.35rem 0;
  transition:
    padding 220ms ease,
    background-color 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.site-header.is-scrolled {
  padding: 0.9rem 0;
  background: rgba(243, 238, 228, 0.76);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(24, 33, 29, 0.08);
  box-shadow: 0 10px 34px rgba(24, 33, 29, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: max-content;
}

.brand strong {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
  font-weight: 500;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.brand span {
  font-size: 0.64rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.45rem;
  margin-left: auto;
}

.site-nav a {
  position: relative;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(24, 33, 29, 0.76);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.45rem;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

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

.nav-cta {
  margin-left: 0.65rem;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  margin-left: auto;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.42);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  backdrop-filter: blur(12px);
}

.nav-toggle span {
  width: 18px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.hero {
  padding: clamp(1.5rem, 4vw, 3.5rem) 0 clamp(3.5rem, 7vw, 5.75rem);
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  right: -100px;
  top: -40px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 141, 69, 0.16) 0%, rgba(200, 141, 69, 0) 68%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 530px);
  gap: clamp(2.2rem, 4vw, 4.5rem);
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero h1 {
  margin: 0;
  max-width: 11ch;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.3rem, 8vw, 6.3rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.04em;
}

.hero-text {
  margin: 1.5rem 0 0;
  max-width: 60ch;
  font-size: 1.04rem;
  line-height: 1.9;
  color: var(--ink-soft);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 2.5rem 0 0;
}

.hero-metrics div {
  padding: 1.3rem;
  border: 1px solid rgba(24, 33, 29, 0.08);
  border-radius: 24px;
  background: rgba(255, 252, 247, 0.64);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-sm);
}

.hero-metrics dt {
  margin: 0 0 0.45rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.9;
  color: var(--ink);
}

.hero-metrics dd {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.6;
  color: var(--muted);
}

.hero-stage {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  align-items: end;
}

.hero-frame {
  grid-column: 2 / 7;
  grid-row: 1 / 4;
  position: relative;
  padding: 14px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.2)),
    linear-gradient(135deg, rgba(200, 141, 69, 0.18), rgba(110, 133, 110, 0.08));
  box-shadow: var(--shadow-lg);
}

.hero-frame::after {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(24, 33, 29, 0.02) 0%, rgba(24, 33, 29, 0.34) 100%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.hero-frame img {
  width: 100%;
  height: 100%;
  min-height: 660px;
  object-fit: cover;
  border-radius: 28px;
}

.hero-panel,
.hero-floating {
  position: relative;
  z-index: 2;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.hero-panel {
  grid-column: 1 / 4;
  grid-row: 2 / 3;
  padding: 1.75rem;
  background: rgba(255, 250, 243, 0.94);
  border: 1px solid rgba(24, 33, 29, 0.08);
  backdrop-filter: blur(16px);
}

.hero-panel h2 {
  margin: 0 0 1rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.95rem;
  font-weight: 400;
  line-height: 1.02;
}

.hero-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.9rem;
}

.hero-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
  color: var(--ink-soft);
  line-height: 1.65;
}

.hero-list li::before {
  content: "";
  width: 9px;
  height: 9px;
  margin-top: 0.45rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #e6b26d);
  box-shadow: 0 0 0 5px rgba(200, 141, 69, 0.1);
}

.hero-floating {
  grid-column: 4 / 7;
  grid-row: 3 / 4;
  margin-top: -1rem;
  padding: 1.35rem 1.5rem;
  background:
    linear-gradient(135deg, rgba(24, 33, 29, 0.96), rgba(36, 49, 41, 0.96));
  color: rgba(255, 255, 255, 0.82);
}

.hero-floating strong {
  display: block;
  margin-bottom: 0.65rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  line-height: 1;
  color: var(--white);
}

.hero-floating p {
  margin: 0;
  line-height: 1.7;
}

.signal-bar {
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: rgba(24, 33, 29, 0.08);
  box-shadow: var(--shadow-sm);
}

.signal-grid span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 92px;
  padding: 1rem 1.2rem;
  text-align: center;
  background: rgba(255, 252, 247, 0.74);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.story-media {
  position: relative;
  padding-right: clamp(2rem, 6vw, 4rem);
  padding-bottom: 2.5rem;
}

.story-main,
.story-accent {
  margin: 0;
}

.story-main img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.story-accent {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(260px, 46%);
}

.story-accent img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border: 8px solid rgba(255, 250, 243, 0.92);
  border-radius: 26px;
  box-shadow: var(--shadow-md);
}

.story-note {
  position: absolute;
  left: 1.5rem;
  top: 1.5rem;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  background: rgba(24, 33, 29, 0.52);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

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

.feature-box {
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 252, 247, 0.7);
  box-shadow: var(--shadow-sm);
}

.feature-box h3 {
  margin: 0 0 0.5rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 500;
}

.feature-box p {
  margin: 0;
  line-height: 1.7;
  color: var(--ink-soft);
}

.spaces {
  position: relative;
}

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

.spaces-grid--duo {
  grid-template-columns: repeat(2, minmax(280px, 380px));
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}

.space-card {
  overflow: hidden;
  border: 1px solid rgba(24, 33, 29, 0.08);
  border-radius: var(--radius-lg);
  background: rgba(255, 252, 247, 0.72);
  box-shadow: var(--shadow-sm);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.space-card:hover {
  transform: translateY(-6px);
  border-color: rgba(200, 141, 69, 0.3);
  box-shadow: var(--shadow-md);
}

.space-card img {
  width: 100%;
  height: 275px;
  object-fit: cover;
}

.space-card__body {
  padding: 1.7rem;
}

.space-card__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 1rem;
  border-radius: 18px;
  background: rgba(200, 141, 69, 0.12);
  color: var(--accent);
  font-size: 0.84rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.space-card h3 {
  margin: 0 0 0.75rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 0.98;
}

.space-card p {
  margin: 0;
  line-height: 1.75;
  color: var(--ink-soft);
}

.space-card__meta {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: 1.4rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(24, 33, 29, 0.08);
}

.space-card__meta span {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-green);
}

.space-card__meta strong {
  font-size: 1rem;
  color: var(--ink);
}

.plans {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 20%, rgba(200, 141, 69, 0.14), rgba(200, 141, 69, 0) 30%),
    radial-gradient(circle at 88% 12%, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0) 22%),
    linear-gradient(160deg, #18211d 0%, #243129 100%);
}

.plans::after {
  content: "MED SPACE";
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(5rem, 16vw, 11rem);
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

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

.plan-card {
  position: relative;
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.18);
}

.plan-card--featured {
  background: linear-gradient(180deg, rgba(200, 141, 69, 0.98), rgba(216, 166, 94, 0.98));
  border-color: rgba(255, 255, 255, 0.14);
  color: rgba(24, 33, 29, 0.88);
}

.plan-card__badge {
  display: inline-flex;
  margin-bottom: 1.2rem;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.plan-card--featured .plan-card__badge {
  border-color: rgba(24, 33, 29, 0.16);
  background: rgba(255, 255, 255, 0.35);
}

.plan-card h3 {
  margin: 0 0 0.5rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--white);
}

.plan-card--featured h3 {
  color: var(--ink);
}

.plan-card__price {
  margin-bottom: 0.4rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.7rem, 6vw, 4rem);
  line-height: 0.95;
  color: var(--white);
}

.plan-card__price span,
.plan-card__price small {
  font-family: "Instrument Sans", sans-serif;
  font-size: 0.92rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.plan-card__price small {
  font-size: 0.85rem;
}

.plan-card--featured .plan-card__price {
  color: var(--ink);
}

.plan-card__subtitle {
  margin: 0 0 1.5rem;
  color: rgba(255, 255, 255, 0.56);
}

.plan-card--featured .plan-card__subtitle {
  color: rgba(24, 33, 29, 0.64);
}

.plan-card ul {
  margin: 0 0 1.75rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.85rem;
}

.plan-card li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
  line-height: 1.65;
}

.plan-card li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 0.48rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
}

.plan-card--featured li::before {
  background: rgba(24, 33, 29, 0.52);
}

.advantages-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.advantages-media {
  position: relative;
}

.advantages-media img {
  width: 100%;
  height: 700px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.advantages-stat {
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  width: min(260px, calc(100% - 3rem));
  padding: 1.4rem;
  border-radius: 24px;
  background: rgba(24, 33, 29, 0.9);
  color: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
}

.advantages-stat strong {
  display: block;
  margin-bottom: 0.35rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 3.4rem;
  line-height: 0.9;
  color: var(--accent-soft);
}

.advantage-list {
  display: grid;
  gap: 0.9rem;
  margin-top: 2rem;
}

.advantage-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 1rem;
  padding: 1.2rem 1.25rem;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 252, 247, 0.7);
  box-shadow: var(--shadow-sm);
}

.advantage-item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: rgba(110, 133, 110, 0.12);
  color: var(--accent-green);
  font-size: 0.84rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.advantage-item h3 {
  margin: 0 0 0.35rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.62rem;
  font-weight: 500;
}

.advantage-item p {
  margin: 0;
  line-height: 1.7;
  color: var(--ink-soft);
}

.testimonials {
  background: rgba(255, 252, 247, 0.5);
}

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

.testimonial-card,
.testimonial-banner {
  padding: 1.9rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.testimonial-card {
  border: 1px solid var(--line);
  background: rgba(255, 252, 247, 0.76);
}

.testimonial-card__quote {
  margin: 0 0 1.5rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  line-height: 1.28;
  color: var(--ink-soft);
}

.testimonial-card__author strong,
.testimonial-card__author span {
  display: block;
}

.testimonial-card__author strong {
  font-size: 1rem;
}

.testimonial-card__author span {
  margin-top: 0.35rem;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.testimonial-banner {
  grid-column: 1 / -1;
  background:
    linear-gradient(135deg, rgba(24, 33, 29, 0.98), rgba(36, 49, 41, 0.96)),
    linear-gradient(135deg, rgba(200, 141, 69, 0.16), rgba(200, 141, 69, 0));
  color: rgba(255, 255, 255, 0.8);
}

.testimonial-banner p {
  margin: 0;
  max-width: 18ch;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.02;
}

.testimonial-banner strong {
  color: var(--accent-soft);
  font-weight: 500;
}

/* ── CTA Register Section ── */
.cta-register {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(200, 141, 69, 0.12), rgba(200, 141, 69, 0) 50%),
    radial-gradient(ellipse at 80% 20%, rgba(110, 133, 110, 0.1), rgba(110, 133, 110, 0) 40%),
    linear-gradient(160deg, #1e2b24 0%, #18211d 40%, #243129 100%);
}

.cta-register::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -60px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 141, 69, 0.1) 0%, rgba(200, 141, 69, 0) 70%);
  pointer-events: none;
}

.cta-register::after {
  content: "CADASTRO";
  position: absolute;
  left: -30px;
  bottom: -20px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(4rem, 14vw, 9rem);
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.025);
  pointer-events: none;
  white-space: nowrap;
}

.cta-register__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}

.cta-register__text {
  margin: 1.25rem 0 0;
  max-width: 48ch;
  font-size: 1.04rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.65);
}

.cta-register__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
  margin-top: 2rem;
}

.cta-register__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 1rem 1.8rem;
  font-size: 0.82rem;
  box-shadow:
    0 16px 36px rgba(200, 141, 69, 0.28),
    0 0 0 0 rgba(200, 141, 69, 0);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    background-color 180ms ease;
}

.cta-register__btn:hover {
  transform: translateY(-3px);
  box-shadow:
    0 20px 44px rgba(200, 141, 69, 0.34),
    0 0 0 6px rgba(200, 141, 69, 0.08);
}

.cta-register__icon {
  flex-shrink: 0;
}

.cta-register__note {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.cta-register__features {
  display: grid;
  gap: 1rem;
}

.cta-register__feature {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1rem;
  padding: 1.3rem 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
  transition:
    border-color 220ms ease,
    background-color 220ms ease,
    transform 220ms ease;
}

.cta-register__feature:hover {
  border-color: rgba(200, 141, 69, 0.2);
  background: rgba(255, 255, 255, 0.06);
  transform: translateX(4px);
}

.cta-register__feature-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(200, 141, 69, 0.15);
  color: var(--accent-soft);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
}

.cta-register__feature strong {
  display: block;
  margin-bottom: 0.3rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--white);
}

.cta-register__feature p {
  margin: 0;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.58);
}

@media (max-width: 1120px) {
  .cta-register__inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .cta-register__actions {
    flex-direction: column;
    align-items: flex-start;
  }
}

.location-map-wrap {
  position: relative;
  margin-top: 2rem;
}

.location-map-wrap img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  filter: saturate(0.88) contrast(0.95);
}

.location-map-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(243, 238, 228, 0.8) 0%, rgba(243, 238, 228, 0) 52%);
  pointer-events: none;
}

.location-panel-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
}

.location-panel {
  position: relative;
  z-index: 1;
  width: min(420px, 100%);
  padding: 2rem;
  border: 1px solid rgba(24, 33, 29, 0.08);
  border-radius: var(--radius-lg);
  background: rgba(255, 252, 247, 0.84);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-md);
}

.location-panel h3 {
  margin: 0 0 1.3rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.35rem;
  font-weight: 400;
  line-height: 1.02;
}

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

.location-list li {
  display: grid;
  gap: 0.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(24, 33, 29, 0.08);
}

.location-list strong {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-green);
}

.location-list span {
  line-height: 1.7;
  color: var(--ink-soft);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.9fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.contact-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 2rem;
}

.contact-gallery img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
}

.contact-card {
  padding: clamp(1.6rem, 4vw, 2.4rem);
  border: 1px solid rgba(24, 33, 29, 0.08);
  border-radius: var(--radius-xl);
  background: rgba(255, 252, 247, 0.82);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(14px);
}

.contact-card h3,
.modal__dialog h2 {
  margin: 0 0 1.4rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400;
  line-height: 0.98;
}

.lead-form {
  display: grid;
  gap: 1rem;
}

.lead-form label {
  display: grid;
  gap: 0.55rem;
}

.lead-form label span {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-green);
}

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

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  padding: 0.95rem 1.1rem;
  border: 1px solid rgba(24, 33, 29, 0.12);
  background: rgba(243, 238, 228, 0.84);
  color: var(--ink);
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.lead-form select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--accent-green) 50%),
    linear-gradient(135deg, var(--accent-green) 50%, transparent 50%);
  background-position:
    calc(100% - 22px) calc(50% - 3px),
    calc(100% - 16px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--accent);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(200, 141, 69, 0.12);
  outline: 0;
}

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

.form-area {
  grid-column: 1 / -1;
}

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

.partners {
  padding: 0 0 clamp(4rem, 6vw, 5rem);
}

.partners-inner {
  padding: 2.25rem;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(24, 33, 29, 0.98), rgba(36, 49, 41, 0.96)),
    radial-gradient(circle at top right, rgba(200, 141, 69, 0.16), rgba(200, 141, 69, 0));
  box-shadow: var(--shadow-md);
}

.partners-inner .section-tag {
  color: var(--accent-soft);
}

.partners-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  margin-top: 1.5rem;
}

.partners-row span {
  color: rgba(255, 255, 255, 0.68);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  letter-spacing: 0.04em;
}

.site-footer {
  padding: 4.5rem 0 2rem;
  background: linear-gradient(180deg, rgba(24, 33, 29, 0.98), rgba(24, 33, 29, 1));
  color: rgba(255, 255, 255, 0.82);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, minmax(0, 1fr));
  gap: 2.2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand p {
  max-width: 30ch;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.58);
}

.brand--footer strong,
.brand--footer span {
  color: var(--white);
}

.footer-grid h4 {
  margin: 0 0 1rem;
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-soft);
}

.footer-grid a,
.footer-grid span {
  display: block;
  margin-bottom: 0.8rem;
  color: rgba(255, 255, 255, 0.62);
}

.footer-grid a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.5rem;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.44);
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
}

.footer-social a {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}

.footer-social a:hover {
  color: var(--accent-soft);
}

.modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 180ms ease, visibility 180ms ease;
  z-index: 80;
}

.modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(24, 33, 29, 0.78);
  backdrop-filter: blur(12px);
}

.modal__dialog {
  position: relative;
  z-index: 1;
  width: min(680px, 100%);
  padding: clamp(1.8rem, 4vw, 2.6rem);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #fbf8f2 0%, #f3eee4 100%);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

.lead-form--modal {
  margin-top: 1.4rem;
}

.modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  font-size: 1.5rem;
  line-height: 1;
  color: var(--ink-soft);
}

.toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  max-width: min(360px, calc(100% - 40px));
  padding: 1rem 1.2rem;
  border-radius: 20px;
  background: rgba(24, 33, 29, 0.94);
  color: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-md);
  transform: translateY(16px);
  opacity: 0;
  pointer-events: none;
  transition: transform 180ms ease, opacity 180ms ease;
  z-index: 90;
}

.toast.is-visible {
  transform: translateY(0);
  opacity: 1;
}

[data-reveal] {
  opacity: 0;
  filter: blur(10px);
  transition:
    opacity 650ms ease,
    transform 650ms ease,
    filter 650ms ease;
  transition-delay: var(--delay, 0ms);
}

[data-reveal="up"] {
  transform: translateY(32px);
}

[data-reveal="left"] {
  transform: translateX(-38px);
}

[data-reveal="right"] {
  transform: translateX(38px);
}

[data-reveal].is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translate(0, 0);
}

.delay-1 {
  --delay: 80ms;
}

.delay-2 {
  --delay: 160ms;
}

.delay-3 {
  --delay: 240ms;
}

.delay-4 {
  --delay: 320ms;
}

.delay-5 {
  --delay: 400ms;
}

@media (max-width: 1120px) {
  .hero-grid,
  .story-grid,
  .advantages-grid,
  .contact-grid,
  .section-head,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section-text--narrow {
    justify-self: start;
  }

  .hero-stage {
    margin-top: 1rem;
  }

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

  .spaces-grid--duo {
    max-width: none;
    margin: 0;
  }

  .testimonial-banner {
    grid-column: 1 / -1;
  }

  .location-map-wrap::after {
    background: linear-gradient(180deg, rgba(243, 238, 228, 0.18), rgba(243, 238, 228, 0.68));
  }

  .location-panel-wrap {
    position: static;
    margin-top: -110px;
    padding-bottom: 0;
  }

  .location-panel {
    width: min(100%, 520px);
  }
}

@media (max-width: 900px) {
  .shell {
    width: min(100% - 28px, 1180px);
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    inset: 76px 14px auto;
    display: grid;
    gap: 1rem;
    padding: 1.25rem;
    border: 1px solid rgba(24, 33, 29, 0.08);
    border-radius: 28px;
    background: rgba(255, 252, 247, 0.96);
    box-shadow: var(--shadow-md);
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    font-size: 0.78rem;
  }

  .nav-cta {
    width: 100%;
    margin: 0.5rem 0 0;
  }

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

  .hero-metrics,
  .signal-grid,
  .feature-grid,
  .plans-grid,
  .spaces-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-frame,
  .hero-panel,
  .hero-floating {
    grid-column: auto;
    grid-row: auto;
    margin: 0;
  }

  .hero-frame img {
    min-height: 440px;
  }

  .story-media {
    padding-right: 0;
  }

  .story-main img,
  .advantages-media img {
    height: 480px;
  }

  .story-accent {
    width: 42%;
    right: 1rem;
    bottom: 1rem;
  }

  .contact-gallery img {
    height: 180px;
  }

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

@media (max-width: 640px) {
  .site-header {
    padding: 1rem 0;
  }

  .hero h1 {
    max-width: 11.5ch;
  }

  .hero-actions {
    flex-direction: column;
  }

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

  .hero-actions .button,
  .button--block,
  .site-nav .button {
    width: 100%;
  }

  .hero-panel,
  .hero-floating,
  .contact-card,
  .modal__dialog,
  .location-panel,
  .partners-inner {
    border-radius: 26px;
  }

  .story-note {
    left: 1rem;
    top: 1rem;
    right: 1rem;
    width: fit-content;
    max-width: calc(100% - 2rem);
  }

  .story-accent {
    display: none;
  }

  .location-map-wrap img {
    height: 400px;
  }

  .location-panel-wrap {
    margin-top: -70px;
  }

  .contact-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    gap: 1.6rem;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
    filter: none;
  }
}
