:root {
  --dark: #6f5142;
  --nav: #6f5142;
  --section-accent: #6f5142;
  --title: #6f5142;
  --coffee: #6f5142;
  --taupe: #a69688;
  --sand: #d8cbbd;
  --clay: #6f5142;
  --ivory: #f1ece5;
  --cream: #f8f5f0;
  --white: #ffffff;
  --mist: #e6ddd3;
  --bar: #ddd2c7;
  --line: rgba(78, 65, 55, 0.14);
  --shadow: 0 16px 42px rgba(78, 65, 55, 0.08);
  --radius: 4px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--dark);
  background: var(--ivory);
  font-family: Montserrat, "Montserrat", "Segoe UI", system-ui, sans-serif;
  line-height: 1.5;
}

main {
  position: relative;
  isolation: isolate;
}

main::after {
  content: "";
  position: absolute;
  top: 94svh;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  background: linear-gradient(rgba(241, 236, 229, 0.52), rgba(241, 236, 229, 0.62)),
    url("assets/hero-hotel-reception.png") center top / cover fixed no-repeat;
  opacity: 0.86;
  pointer-events: none;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px clamp(18px, 4vw, 54px);
  color: var(--dark);
  background: var(--bar);
  border-bottom: 1px solid rgba(78, 65, 55, 0.12);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: var(--bar);
  box-shadow: none;
}

.brand {
  display: inline-flex;
  align-items: flex-start;
}

.brand img {
  display: block;
  width: 164px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 14px;
  font-weight: 700;
  color: var(--nav);
}

.site-nav a {
  opacity: 0.82;
}

.site-nav a:hover {
  opacity: 1;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 999px;
  background: transparent;
  color: inherit;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: center;
  padding: 128px clamp(18px, 4vw, 54px) 74px;
  overflow: hidden;
  background: var(--ivory);
  color: var(--ivory);
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("assets/hero-hotel-reception.png") center / cover no-repeat;
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(47, 41, 36, 0.42) 0%, rgba(47, 41, 36, 0.24) 42%, rgba(47, 41, 36, 0.06) 76%, rgba(47, 41, 36, 0.02) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 46%, rgba(47, 41, 36, 0.12) 100%);
  pointer-events: none;
}

.hero-overlay {
  display: none;
}

.curve {
  display: none;
}

.curve-top {
  top: -34vw;
  right: -16vw;
}

.curve-bottom {
  left: -24vw;
  bottom: -34vw;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(640px, 100%);
  text-align: left;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--sand);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 800;
}

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

h1 {
  max-width: 620px;
  margin-bottom: 22px;
  color: var(--white);
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  color: var(--title);
  font-size: clamp(28px, 3.8vw, 46px);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  color: var(--title);
  font-size: 21px;
  line-height: 1.2;
}

.hero-copy {
  max-width: 560px;
  margin-bottom: 30px;
  color: rgba(250, 247, 242, 0.86);
  font-size: clamp(16px, 1.45vw, 19px);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.button:hover {
  transform: none;
}

.button-light,
.button-dark {
  background: var(--white);
  color: var(--coffee);
}

.button-dark {
  background: var(--coffee);
  color: var(--ivory);
}

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

.button-dark {
  width: 100%;
}

.button-outline {
  width: 100%;
  border-color: rgba(78, 65, 55, 0.28);
  background: transparent;
  color: var(--nav);
}

.section {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 82px 0;
}

.manifest {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: start;
}

.manifest .eyebrow,
.community .eyebrow,
.experiences .eyebrow,
.memberships .eyebrow,
.contact .eyebrow {
  color: var(--clay);
}

.manifest h2 {
  color: var(--section-accent);
}

.manifest .eyebrow {
  color: var(--section-accent);
}

.community h2,
.community .eyebrow,
.community h3 {
  color: var(--section-accent);
}

.experiences h2,
.experiences .eyebrow,
.line-item strong {
  color: var(--section-accent);
}

.success-cases h2,
.success-cases .eyebrow,
.match-brand strong,
.case-detail span {
  color: var(--section-accent);
}

.memberships h2,
.memberships .eyebrow,
.memberships h3,
.plan-label {
  color: var(--section-accent);
}

.contact h2,
.contact .eyebrow {
  color: var(--section-accent);
}

.manifest-copy {
  max-width: 560px;
  padding: 24px;
  border: 1px solid rgba(78, 65, 55, 0.12);
  background: rgba(248, 245, 240, 0.72);
  color: var(--nav);
  font-size: clamp(16px, 1.38vw, 19px);
  line-height: 1.52;
}

.manifest-copy p {
  margin-bottom: 24px;
}

.manifest-copy p:last-child {
  margin-bottom: 0;
}

.community {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: rgba(248, 245, 240, 0.42);
}

.community::before {
  content: "";
  position: absolute;
  top: -22vw;
  left: -18vw;
  width: 46vw;
  aspect-ratio: 1;
  border: 14px solid rgba(255, 255, 255, 0.82);
  border-radius: 50%;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 38px;
}

.community-lead {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(0, 0.9fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
  margin-bottom: 42px;
}

.community-lead .section-heading {
  margin-bottom: 0;
}

.community-photo {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 14px 38px rgba(78, 65, 55, 0.08);
}

.community-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  background: var(--cream);
}

.section-heading p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--coffee);
  font-size: 17px;
  line-height: 1.65;
}

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

.soft-card {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.soft-card {
  min-height: 0;
  padding: 28px 28px 0 0;
}

.soft-card span {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--section-accent);
  font-weight: 800;
}

.soft-card p,
.line-item span,
.contact-copy p {
  color: var(--coffee);
}

.experiences {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}

.experience-panel {
  position: sticky;
  top: 110px;
  align-self: start;
}

.experience-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.line-item {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.line-item strong,
.line-item span {
  display: block;
}

.line-item strong {
  margin-bottom: 8px;
  font-size: 21px;
}

.quote-band {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: rgba(230, 221, 211, 0.92);
  color: var(--dark);
}

.quote-band::after {
  display: none;
}

.quote-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.quote-content p {
  margin: 0 auto 22px;
  max-width: 860px;
  color: var(--coffee);
  font-size: clamp(24px, 3.2vw, 38px);
  line-height: 1.18;
}

.quote-content span {
  display: block;
  color: var(--section-accent);
  font-size: 18px;
  font-weight: 800;
}

.success-cases {
  display: grid;
  gap: 36px;
}

.success-cases-head {
  width: min(760px, 68%);
  margin-left: auto;
  transform: translateX(-76px);
}

.success-cases-head p:not(.eyebrow) {
  margin: 18px 0 0;
  max-width: 610px;
  color: var(--coffee);
  font-size: 17px;
  line-height: 1.65;
}

.success-case {
  padding: 26px;
  border: 1px solid rgba(78, 65, 55, 0.18);
  border-radius: var(--radius);
  background: rgba(248, 245, 240, 0.72);
}

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

.case-number {
  display: block;
  margin-bottom: 20px;
  color: var(--section-accent);
  font-size: 14px;
  font-weight: 800;
}

.match-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: start;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.match-brand {
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 14px;
  min-height: 116px;
  text-align: center;
}

.match-brand:last-child {
  text-align: center;
}

.brand-logo-slot {
  display: grid;
  height: 78px;
  place-items: center;
  padding: 4px;
}

.brand-logo-slot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-logo-slot img.brand-logo-muebles {
  width: 86%;
  height: 74%;
}

.brand-logo-slot img.brand-logo-compact {
  width: 70%;
  height: 70%;
  margin-inline: auto;
  justify-self: center;
}

.brand-logo-slot img.brand-logo-id-deco {
  transform: none;
}

.brand-logo-slot img.brand-logo-lino-fino {
  width: auto;
  height: 56%;
  max-width: 68%;
  transform: translateY(-10px);
}

.brand-logo-slot img.brand-logo-dark {
  width: 88%;
  height: 72%;
}

.brand-logo-slot img.brand-logo-privasol {
  justify-self: center;
  transform: none;
}

.brand-logo-placeholder span {
  color: rgba(111, 81, 66, 0.62);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.match-brand strong {
  max-width: 230px;
  margin-inline: auto;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.35;
}

.case-detail {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.case-detail span {
  display: block;
  margin-bottom: 7px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.case-detail p {
  margin: 0;
  color: var(--coffee);
  font-size: 14px;
  line-height: 1.65;
}

.case-result {
  padding: 18px 0;
  border-bottom: 0;
  background: transparent;
}

.more-cases-note {
  margin: 0;
  color: var(--coffee);
  font-size: 14px;
  text-align: center;
}

.memberships {
  display: grid;
  gap: 34px;
}

.membership-head {
  width: min(780px, 100%);
  margin: 0 auto;
  padding: 28px 32px;
  border: 1px solid rgba(78, 65, 55, 0.06);
  background: rgba(248, 245, 240, 0.46);
  text-align: center;
}

.membership-head p:not(.eyebrow) {
  margin: 16px auto 0;
  max-width: 680px;
  color: var(--coffee);
  font-size: 15px;
  line-height: 1.6;
}

.membership-head .membership-subtitle {
  color: var(--section-accent);
  font-size: clamp(18px, 1.8vw, 23px);
  font-weight: 500;
  line-height: 1.35;
}

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

.membership-card {
  display: flex;
  min-height: 440px;
  flex-direction: column;
  padding: 22px;
  border: 1px solid rgba(78, 65, 55, 0.16);
  border-radius: var(--radius);
  background: rgba(248, 245, 240, 0.72);
}

.membership-card-featured {
  background: rgba(230, 221, 211, 0.86);
  border-color: rgba(78, 65, 55, 0.24);
}

.plan-label {
  margin-bottom: 18px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.membership-card p {
  color: var(--coffee);
  font-size: 14px;
  line-height: 1.55;
}

.membership-card h3 {
  font-size: 19px;
}

.includes-label {
  margin-top: 4px;
  color: var(--section-accent);
  font-size: 13px;
  font-weight: 700;
}

.membership-card ul {
  display: grid;
  gap: 7px;
  margin: 12px 0 22px;
  padding: 0;
  color: var(--coffee);
  font-size: 13px;
  list-style: none;
}

.membership-card li {
  padding-top: 8px;
  border-top: 1px solid rgba(78, 65, 55, 0.12);
}

.availability-label {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(78, 65, 55, 0.16);
  color: var(--section-accent);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.founders-program {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 44px;
  padding: 34px;
  border: 1px solid rgba(78, 65, 55, 0.2);
  border-radius: var(--radius);
  background: rgba(230, 221, 211, 0.88);
}

.founders-program h3,
.founders-program .eyebrow {
  color: var(--section-accent);
}

.founders-program-copy {
  display: grid;
  gap: 16px;
}

.founders-program-copy p {
  margin: 0;
  color: var(--coffee);
  font-size: 16px;
  line-height: 1.65;
}

.founders-program .button {
  width: fit-content;
  margin-top: 6px;
}

.strategic-partners {
  display: grid;
  gap: 20px;
}

.strategic-partners-head {
  width: min(760px, 100%);
}

.strategic-partners-head h2,
.strategic-partners-head .eyebrow,
.partner-feature h3,
.partner-contact span {
  color: var(--section-accent);
}

.strategic-partners-head p:not(.eyebrow) {
  margin: 18px 0 0;
  max-width: 680px;
  color: var(--coffee);
  font-size: 16px;
  line-height: 1.65;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 360px), 1fr));
  gap: 14px;
}

.partner-feature {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr) minmax(128px, 0.34fr);
  gap: 12px;
  align-items: start;
  padding: 14px;
  border: 1px solid rgba(78, 65, 55, 0.16);
  border-radius: var(--radius);
  background: rgba(248, 245, 240, 0.78);
}

.partner-logo-box {
  display: grid;
  min-height: 68px;
  place-items: center;
  border: 1px solid rgba(78, 65, 55, 0.16);
  border-radius: var(--radius);
  background: rgba(230, 221, 211, 0.72);
}

.partner-logo-box span {
  color: var(--section-accent);
  font-size: 34px;
  font-weight: 500;
}

.partner-logo-box img {
  display: block;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% 50%;
}

.partner-copy {
  padding: 10px 12px;
  border: 1px solid rgba(78, 65, 55, 0.1);
  background: rgba(248, 245, 240, 0.48);
}

.partner-copy h3 {
  margin-bottom: 4px;
  font-size: clamp(16px, 1.45vw, 19px);
  font-weight: 500;
}

.partner-category {
  margin-bottom: 8px;
  color: var(--section-accent);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.35;
}

.partner-copy p:not(.partner-category),
.partner-contact p {
  margin: 0;
  color: var(--coffee);
  font-size: 12px;
  line-height: 1.45;
}

.partner-contact a {
  color: var(--coffee);
  text-decoration: none;
}

.partner-contact a:hover {
  color: var(--section-accent);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.partner-contact {
  display: grid;
  gap: 4px;
  align-self: stretch;
  padding-left: 12px;
  border-left: 1px solid var(--line);
}

.partner-contact span {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.subscription {
  display: grid;
  gap: 30px;
}

.subscription-head {
  width: min(820px, 100%);
  margin: 0 auto;
  text-align: center;
}

.subscription-head h2,
.subscription-head .eyebrow,
.subscription-form legend,
.choice-group > span {
  color: var(--section-accent);
}

.subscription-head p:not(.eyebrow) {
  margin: 18px auto 0;
  max-width: 720px;
  color: var(--coffee);
  font-size: 16px;
  line-height: 1.65;
}

.subscription-form {
  display: grid;
  gap: 18px;
  width: min(980px, 100%);
  margin: 0 auto;
  padding: clamp(20px, 3vw, 34px);
  border: 1px solid rgba(78, 65, 55, 0.16);
  border-radius: var(--radius);
  background: rgba(248, 245, 240, 0.82);
}

.subscription-form fieldset {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0 0 24px;
  border: 0;
  border-bottom: 1px solid var(--line);
}

.subscription-form fieldset:last-of-type {
  padding-bottom: 0;
  border-bottom: 0;
}

.subscription-form legend {
  padding: 0 0 2px;
  font-size: 18px;
  font-weight: 700;
}

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

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

.subscription-form label,
.choice-group {
  display: grid;
  gap: 8px;
  color: var(--coffee);
  font-size: 13px;
  font-weight: 700;
}

.subscription-form input,
.subscription-form select,
.subscription-form textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid rgba(78, 65, 55, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  color: var(--dark);
  font: inherit;
  font-weight: 500;
}

.subscription-form textarea {
  min-height: 116px;
  resize: vertical;
}

.subscription-form input:focus,
.subscription-form select:focus,
.subscription-form textarea:focus {
  outline: 2px solid rgba(111, 81, 66, 0.24);
  outline-offset: 2px;
  border-color: rgba(111, 81, 66, 0.52);
}

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

.checkbox-grid label,
.consent {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  min-height: 0;
  padding: 10px;
  border: 1px solid rgba(78, 65, 55, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.46);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
}

.choice-group.has-error .checkbox-grid label {
  border-color: rgba(111, 81, 66, 0.56);
  background: rgba(230, 221, 211, 0.68);
}

.checkbox-grid input,
.consent input {
  width: 16px;
  min-width: 16px;
  height: 16px;
  min-height: 16px;
  margin: 1px 0 0;
  accent-color: var(--coffee);
}

.form-actions {
  display: grid;
  grid-template-columns: minmax(180px, 240px) 1fr;
  gap: 18px;
  align-items: center;
  padding-top: 6px;
}

.form-actions .button {
  width: 100%;
}

.form-actions p {
  margin: 0;
  color: var(--coffee);
  font-size: 13px;
  line-height: 1.5;
}

.contact {
  display: flex;
  justify-content: center;
}

.contact-copy {
  width: min(620px, 100%);
  padding: 28px 30px;
  border: 1px solid rgba(78, 65, 55, 0.12);
  background: rgba(248, 245, 240, 0.78);
  text-align: center;
}

.contact-copy h2 {
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.18;
}

.contact-copy p {
  margin: 18px auto 0;
  max-width: 540px;
  color: var(--nav);
  font-size: 14px;
  line-height: 1.6;
}

.contact-panel {
  display: inline-grid;
  gap: 7px;
  justify-items: center;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.contact-panel span {
  color: var(--section-accent);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-panel p {
  margin: 0;
  color: var(--coffee);
  font-size: 12px;
  line-height: 1.5;
}

.contact-access-link {
  display: inline-block;
  margin-top: 4px;
  padding-bottom: 2px;
  border-bottom: 1px solid currentColor;
  color: var(--section-accent);
  font-size: 12px;
  font-weight: 700;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 4vw, 54px);
  border-top: 1px solid var(--line);
  background: var(--bar);
  color: var(--nav);
  font-size: 15px;
  font-weight: 700;
}

.footer-brand {
  display: inline-flex;
  align-items: flex-start;
}

.footer-brand img {
  display: block;
  width: 190px;
  height: auto;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

@media (max-width: 920px) {
  .hero {
    padding-top: 114px;
  }

  .manifest,
  .experiences,
  .contact {
    grid-template-columns: 1fr;
  }

  .community-lead {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .experience-panel {
    position: static;
  }

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

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

  .success-cases-grid {
    grid-template-columns: 1fr;
  }

  .success-cases-head {
    width: min(760px, 82%);
    transform: none;
  }

  .founders-program {
    grid-template-columns: 1fr;
  }

  .partner-feature {
    grid-template-columns: 64px 1fr;
  }

  .partner-contact {
    grid-column: 1 / -1;
    padding-top: 10px;
    border-top: 1px solid var(--line);
    padding-left: 0;
    border-left: 0;
  }

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

  .soft-card {
    min-height: auto;
  }

  .soft-card span {
    margin-bottom: 34px;
  }
}

@media (max-width: 720px) {
  main::after {
    background:
      linear-gradient(rgba(241, 236, 229, 0.44), rgba(241, 236, 229, 0.58)),
      url("assets/hero-hotel-reception.png") center top / auto 100% scroll no-repeat;
    opacity: 0.92;
  }

  .site-header {
    padding: 12px 18px;
  }

  .brand img {
    width: 136px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 64px;
    left: 18px;
    right: 18px;
    display: none;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--ivory);
    color: var(--nav);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
    gap: 14px;
  }

  .hero {
    min-height: 100svh;
    padding: 102px 18px 58px;
  }

  .hero-image {
    background:
      linear-gradient(rgba(241, 236, 229, 0.08), rgba(47, 41, 36, 0.18)),
      url("assets/hero-hotel-reception.png") center 46% / contain no-repeat,
      url("assets/hero-hotel-reception.png") center / cover no-repeat;
  }

  .hero-image::after {
    background:
      linear-gradient(180deg, rgba(47, 41, 36, 0.22) 0%, rgba(47, 41, 36, 0.12) 48%, rgba(47, 41, 36, 0.3) 100%),
      linear-gradient(90deg, rgba(47, 41, 36, 0.34) 0%, rgba(47, 41, 36, 0.08) 100%);
  }

  .curve {
    border-width: 10px;
    width: 92vw;
  }

  .curve-top {
    top: -58vw;
    right: -46vw;
  }

  .curve-bottom {
    left: -58vw;
    bottom: -62vw;
  }

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

  .button {
    width: 100%;
  }

  .section {
    width: calc(100% - 36px);
    padding: 70px 0;
  }

  .manifest-copy {
    font-size: 18px;
  }

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

  .match-heading {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .success-cases-head {
    width: 100%;
    margin-left: 0;
    transform: none;
  }

  .match-brand:last-child {
    text-align: center;
  }

  .success-case {
    padding: 24px;
  }

  .founders-program {
    padding: 26px;
  }

  .partner-feature {
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .partner-logo-box {
    min-height: 68px;
  }

  .subscription-form {
    padding: 20px;
  }

  .form-grid,
  .form-grid-compact,
  .checkbox-grid,
  .form-actions {
    grid-template-columns: 1fr;
  }

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