:root {
  --navy: #071827;
  --navy-2: #0d2d43;
  --gold: #c99335;
  --gold-2: #e2bd73;
  --ivory: #fbf8f1;
  --paper: #ffffff;
  --mist: #f3f5f5;
  --text: #102033;
  --muted: #5c6875;
  --line: rgba(16, 32, 51, .12);
  --shadow: 0 24px 70px rgba(7, 24, 39, .18);
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--paper);
  line-height: 1.6;
}
body.nav-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

.container {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}
.sr-only,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link:focus {
  width: auto;
  height: auto;
  margin: 12px;
  padding: 10px 14px;
  clip: auto;
  z-index: 100;
  background: var(--navy);
  color: white;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, .42);
  transition: box-shadow .2s ease, background .2s ease;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 10px 30px rgba(7, 24, 39, .08);
}
.nav {
  min-height: 84px;
  width: min(1210px, calc(100% - 36px));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: max-content;
}
.brand-mark {
  width: 42px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
}
.brand-mark i {
  display: block;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
}
.brand-mark i:nth-child(1), .brand-mark i:nth-child(5) { height: 14px; }
.brand-mark i:nth-child(2), .brand-mark i:nth-child(4) { height: 24px; }
.brand-mark i:nth-child(3) { height: 32px; }
.brand strong {
  display: block;
  font-size: 1.72rem;
  line-height: .9;
  letter-spacing: 0;
  text-transform: uppercase;
}
.brand strong span { color: var(--gold); }
.brand em {
  display: block;
  color: var(--muted);
  font-size: .66rem;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: .16em;
  margin-top: 6px;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 25px;
  font-size: .82rem;
  font-weight: 800;
  text-transform: uppercase;
}
.nav-menu a:not(.btn) {
  color: var(--navy);
  position: relative;
}
.nav-menu a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  background: var(--gold);
  transition: right .22s ease;
}
.nav-menu a:hover::after,
.nav-menu a:focus-visible::after { right: 0; }
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: white;
  border-radius: 6px;
}
.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--navy);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), #d7a447);
  color: white;
  font-weight: 850;
  box-shadow: 0 10px 24px rgba(201, 147, 53, .24);
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn::after {
  content: "->";
  margin-left: 12px;
  font-size: 1em;
  line-height: 1;
}
.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(201, 147, 53, .32);
}
.btn-small {
  min-height: 42px;
  padding-inline: 19px;
  font-size: .76rem;
}
.btn-ghost {
  background: rgba(255, 255, 255, .88);
  color: var(--navy);
  box-shadow: none;
}
.btn-light {
  background: white;
  color: var(--navy);
  box-shadow: none;
}

.hero {
  min-height: calc(100vh - 84px);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  align-items: center;
}
.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.78) 38%, rgba(255,255,255,.2) 72%),
    linear-gradient(180deg, rgba(255,255,255,.72) 0%, rgba(255,255,255,.1) 60%, rgba(255,255,255,.85) 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 620px) minmax(270px, 380px);
  align-items: end;
  gap: 54px;
  padding-block: 86px;
}
.hero-copy h1,
.section h2,
.cta-band h2 {
  margin: 0;
  line-height: 1.04;
  font-size: clamp(2.55rem, 6vw, 5.6rem);
  letter-spacing: 0;
  color: var(--navy);
}
.hero-copy p {
  max-width: 610px;
  font-size: 1.12rem;
  margin: 24px 0 0;
  color: #243448;
}
.eyebrow {
  display: inline-flex;
  margin: 0 0 13px;
  color: var(--gold);
  font-size: .78rem;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: .16em;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}
.desktop-player {
  align-self: center;
  justify-self: end;
  width: min(100%, 390px);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.46);
  border-radius: 8px;
  color: white;
  background: linear-gradient(145deg, rgba(7,24,39,.94), rgba(12,42,63,.88));
  box-shadow: var(--shadow);
}
.window-bar {
  height: 36px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 10px;
  color: #173047;
  background: linear-gradient(180deg, #dcecf6, #a8cce3);
  border-bottom: 1px solid rgba(7,24,39,.28);
}
.window-bar strong {
  font-size: .86rem;
  line-height: 1;
}
.app-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  border-radius: 4px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.85), transparent 45%),
    linear-gradient(135deg, var(--gold), #7a571d);
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.38);
}
.window-actions {
  margin-left: auto;
  display: flex;
  gap: 6px;
}
.window-actions i {
  width: 24px;
  height: 16px;
  border: 1px solid rgba(7,24,39,.28);
  border-radius: 3px;
  background: rgba(255,255,255,.64);
}
.window-actions i:last-child {
  background: #c85b4e;
}
.player-screen {
  min-height: 430px;
  padding: 48px 30px 34px;
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 32px;
  background:
    radial-gradient(circle at 42% 26%, rgba(201,147,53,.16), transparent 28%),
    radial-gradient(circle at 20% 76%, rgba(226,189,115,.1), transparent 34%),
    linear-gradient(145deg, #082436, #031019 78%);
}
.player-logo {
  display: grid;
  justify-items: center;
  gap: 10px;
}
.player-logo .brand-mark {
  transform: scale(1.08);
}
.player-logo strong {
  display: block;
  color: white;
  font-size: 2.15rem;
  line-height: .9;
  text-transform: uppercase;
}
.player-logo strong span {
  color: var(--gold-2);
}
.now-playing {
  width: 100%;
  padding: 25px 20px;
  border: 1px solid rgba(226,189,115,.18);
  border-radius: 8px;
  text-align: center;
  background: rgba(255,255,255,.045);
  box-shadow: inset 0 0 42px rgba(0,0,0,.12);
}
.now-playing span {
  display: block;
  color: rgba(255,255,255,.56);
  font-size: 1rem;
  font-weight: 750;
}
.now-playing strong {
  display: block;
  margin-top: 4px;
  color: white;
  font-size: 2.45rem;
  line-height: 1;
}
.now-playing em {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 18px;
  padding: 9px 18px;
  border-radius: 999px;
  color: #b6ffd7;
  background: rgba(255,255,255,.08);
  font-style: normal;
  font-weight: 850;
}
.now-playing em i {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #18f08b;
  box-shadow: 0 0 18px rgba(24,240,139,.8);
}
.pause-demo {
  width: 98px;
  height: 98px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  border: 3px solid rgba(255,255,255,.82);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  box-shadow: 0 18px 42px rgba(0,0,0,.24);
}
.pause-demo span {
  width: 13px;
  height: 40px;
  border-radius: 4px;
  background: var(--navy);
}

.trust-strip {
  padding: 24px 0;
  border-top: 1px solid rgba(7, 24, 39, .08);
  border-bottom: 1px solid rgba(7, 24, 39, .08);
  background: white;
}
.strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.strip-grid span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 760;
  color: var(--navy);
}
.strip-grid span::before {
  content: "";
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(201,147,53,.2) 0 28%, transparent 30%);
}

.section { padding: 96px 0; }
section[id] { scroll-margin-top: 96px; }
.section-soft { background: var(--ivory); }
.section-navy {
  background:
    radial-gradient(circle at 70% 20%, rgba(201,147,53,.18), transparent 32%),
    linear-gradient(135deg, var(--navy), var(--navy-2));
  color: white;
}
.section-navy h2,
.section-navy h3 { color: white; }
.section-navy p { color: rgba(255,255,255,.76); }
.split {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: 54px;
  align-items: start;
}
.section-copy h2,
.section-head h2,
.technology h2,
.experience h2,
.cta-band h2 {
  font-size: clamp(2rem, 3.2vw, 3.5rem);
}
.section-copy p,
.section-head p,
.experience p,
.technology p,
.cta-band p {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 690px;
}
.section-head {
  text-align: center;
  max-width: 960px;
  margin: 0 auto 46px;
}
.section-head p { margin-inline: auto; }
.desktop-nowrap {
  white-space: nowrap;
}
.feature-grid,
.benefits-grid,
.spaces-grid,
.steps {
  display: grid;
  gap: 20px;
}
.feature-grid { grid-template-columns: repeat(2, 1fr); }
.benefits-grid { grid-template-columns: repeat(3, 1fr); }
.spaces-grid { grid-template-columns: repeat(3, 1fr); }
.steps { grid-template-columns: repeat(4, 1fr); }
.mini-card,
.benefit,
.step,
.technology,
.direct-contacts {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}
.mini-card { padding: 28px; }
.mini-card span,
.step span {
  color: var(--gold);
  font-weight: 900;
  letter-spacing: .16em;
}
.mini-card h3,
.benefit h3,
.space-card span,
.step h3 {
  margin: 10px 0 8px;
  color: var(--navy);
  font-size: 1.12rem;
}
.mini-card p,
.step p,
.space-card p { margin: 0; color: var(--muted); }
.benefit {
  min-height: 150px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.benefit span {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  color: var(--gold);
  border: 1px solid rgba(201,147,53,.5);
  border-radius: 50%;
  font-size: 1.3rem;
}
.space-card {
  min-height: 230px;
  padding: 22px;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  color: white;
  background-image:
    linear-gradient(180deg, rgba(7,24,39,.04), rgba(7,24,39,.82)),
    url("../img/ambiente-reception.jpg");
  background-size: cover;
  background-position: center;
}
.space-card:nth-child(2) {
  background-image:
    linear-gradient(180deg, rgba(7,24,39,.04), rgba(7,24,39,.82)),
    url("../img/ambiente-colazione.jpg");
  background-position: center;
}
.space-card:nth-child(3) {
  background-image:
    linear-gradient(180deg, rgba(7,24,39,.04), rgba(7,24,39,.82)),
    url("../img/ambiente-ristorante-bar.jpg");
  background-position: center;
}
.space-card:nth-child(4) {
  background-image:
    linear-gradient(180deg, rgba(7,24,39,.04), rgba(7,24,39,.82)),
    url("../img/ambiente-piscina-beach.jpg");
  background-position: center;
}
.space-card:nth-child(5) {
  background-image:
    linear-gradient(180deg, rgba(7,24,39,.04), rgba(7,24,39,.82)),
    url("../img/ambiente-spa-wellness.jpg");
  background-position: center;
}
.space-card:nth-child(6) {
  background-image:
    linear-gradient(180deg, rgba(7,24,39,.04), rgba(7,24,39,.82)),
    url("../img/ambiente-lounge.jpg");
  background-position: center;
}
.space-card span,
.space-card p {
  color: white;
  position: relative;
}
.step {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.16);
  padding: 28px;
}
.section-navy .step {
  background: rgba(255,255,255,.085);
  border-color: rgba(255,255,255,.28);
}
.section-navy .step h3 {
  color: #ffffff;
}
.section-navy .step p {
  color: rgba(255,255,255,.86);
}
.section-navy .step span {
  color: var(--gold-2);
}

.content-band {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 36px;
  align-items: stretch;
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 12px;
}
.check-list li {
  position: relative;
  padding-left: 34px;
  color: var(--text);
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .22em;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
}
.check-list li::after {
  content: "";
  position: absolute;
  left: 8px;
  top: .62em;
  width: 8px;
  height: 4px;
  border-left: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(-45deg);
}
.control-panel-note {
  margin-top: 28px;
  padding: 24px;
  border: 1px solid rgba(201,147,53,.26);
  border-radius: 8px;
  background: var(--ivory);
}
.control-panel-note h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 1.35rem;
}
.control-panel-note p {
  margin: 0;
  color: #344255;
  font-size: 1rem;
}
.technology {
  padding: 34px;
  background: var(--navy);
  color: white;
}
.technology h2 { color: white; }
.technology p { color: rgba(255,255,255,.78); }
.tech-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.tech-pills span {
  padding: 9px 12px;
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 999px;
  color: rgba(255,255,255,.88);
  background: rgba(255,255,255,.06);
  font-size: .9rem;
}
.experience {
  max-width: 820px;
  text-align: center;
}
.experience p { margin-inline: auto; }
.experience-logo {
  width: min(190px, 46vw);
  margin: 0 auto 22px;
}

.guarantee-band {
  padding: 70px 0;
  background:
    linear-gradient(180deg, white 0%, var(--ivory) 100%);
}
.guarantee-card {
  position: relative;
  overflow: hidden;
  padding: 48px 42px;
  border: 1px solid rgba(226,189,115,.36);
  border-radius: 8px;
  text-align: center;
  background:
    radial-gradient(circle at 18% 20%, rgba(226,189,115,.22), transparent 28%),
    radial-gradient(circle at 84% 80%, rgba(201,147,53,.18), transparent 30%),
    linear-gradient(135deg, var(--navy), var(--navy-2));
  box-shadow: 0 24px 70px rgba(7,24,39,.22);
}
.guarantee-card::before {
  content: "90";
  position: absolute;
  right: 34px;
  bottom: -36px;
  color: rgba(255,255,255,.055);
  font-size: 12rem;
  font-weight: 950;
  line-height: 1;
}
.guarantee-card span {
  position: relative;
  display: inline-flex;
  padding: 9px 14px;
  margin-bottom: 12px;
  border: 1px solid rgba(226,189,115,.42);
  border-radius: 999px;
  color: var(--gold-2);
  background: rgba(255,255,255,.07);
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.guarantee-card h2 {
  position: relative;
  margin: 0;
  color: white;
  font-size: clamp(2rem, 3.6vw, 3.8rem);
  line-height: 1.05;
}
.guarantee-card p {
  position: relative;
  max-width: 760px;
  margin: 16px auto 0;
  color: rgba(255,255,255,.88);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 760;
}

.cta-band {
  padding: 58px 0;
  background: linear-gradient(135deg, var(--gold), #dfb45e);
  color: white;
}
.cta-band h2,
.cta-band p,
.cta-band .eyebrow { color: white; }
.cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}
.faq-section {
  background: var(--ivory);
}
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.faq-item {
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 10px 28px rgba(7,24,39,.05);
}
.faq-item summary {
  cursor: pointer;
  color: var(--navy);
  font-size: 1.08rem;
  font-weight: 880;
}
.faq-item p {
  margin: 12px 0 0;
  color: #3f4c5f;
}

.contact-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 46px;
  align-items: start;
}
.contact-note {
  margin-top: 28px;
  padding: 20px;
  border-left: 3px solid var(--gold);
  background: var(--ivory);
}
.contact-note span,
.contact-note strong { display: block; }
.contact-note span { color: var(--muted); }
.faq {
  margin-top: 18px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.faq summary {
  cursor: pointer;
  color: var(--navy);
  font-weight: 850;
}
.faq p { margin-bottom: 0; }
.direct-contacts {
  padding: 30px;
  box-shadow: 0 18px 50px rgba(7,24,39,.08);
  display: grid;
  gap: 16px;
}
.direct-card {
  padding: 24px;
  border: 1px solid rgba(16,32,51,.1);
  border-radius: 8px;
  background: var(--ivory);
}
.direct-card span {
  display: block;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.direct-card a {
  display: inline-block;
  margin-top: 6px;
  color: var(--navy);
  font-size: clamp(1.55rem, 4vw, 2.35rem);
  font-weight: 900;
  line-height: 1.1;
}
.direct-card p {
  margin: 12px 0 0;
  color: var(--muted);
}
.btn:focus-visible,
summary:focus-visible,
a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(201,147,53,.32);
  outline-offset: 3px;
}

.footer {
  padding: 48px 0 26px;
  background: var(--navy);
  color: white;
}
.footer .brand em { color: rgba(255,255,255,.62); }
.footer-grid,
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}
.footer nav {
  display: flex;
  gap: 22px;
  color: rgba(255,255,255,.78);
}
.footer-related {
  margin-top: 28px;
  padding: 18px 0 0;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.64);
  font-size: .95rem;
}
.footer-related a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-2);
  font-weight: 850;
}
.footer-related img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}
.footer-bottom {
  margin-top: 18px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.62);
  font-size: .9rem;
}
.footer-bottom span:nth-child(n + 3) {
  color: rgba(255,255,255,.74);
  font-weight: 700;
}
.cookie-banner {
  position: fixed;
  inset: auto 18px 18px;
  z-index: 50;
}
.cookie-banner[hidden] {
  display: none;
}
.cookie-box {
  width: min(100%, 960px);
  margin-inline: auto;
  padding: 18px;
  border: 1px solid rgba(226,189,115,.34);
  border-radius: 8px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  color: white;
  background: rgba(7,24,39,.96);
  box-shadow: 0 22px 68px rgba(0,0,0,.28);
}
.cookie-box strong {
  display: block;
  font-size: 1.08rem;
}
.cookie-box p {
  margin: 5px 0 0;
  color: rgba(255,255,255,.78);
  font-size: .94rem;
}
.cookie-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cookie-actions a {
  color: var(--gold-2);
  font-size: .9rem;
  font-weight: 800;
}
.cookie-actions .btn {
  min-height: 42px;
  padding-inline: 16px;
}
.cookie-actions .btn::after {
  content: none;
}
.legal-page {
  padding: 72px 0;
  background: var(--ivory);
}
.legal-content {
  max-width: 920px;
  padding: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 18px 52px rgba(7,24,39,.08);
}
.legal-content h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.4rem, 7vw, 4.2rem);
  line-height: 1.04;
}
.legal-content h2 {
  margin: 34px 0 10px;
  color: var(--navy);
  font-size: 1.35rem;
}
.legal-content p {
  color: #344255;
}
.legal-content a:not(.btn) {
  color: var(--gold);
  font-weight: 800;
}
.legal-updated {
  margin-top: 10px;
  color: var(--muted);
  font-weight: 760;
}
.cookie-table {
  overflow-x: auto;
  margin-top: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.cookie-table table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
}
.cookie-table th,
.cookie-table td {
  padding: 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}
.cookie-table th {
  color: var(--navy);
  background: var(--ivory);
}
.cookie-table tr:last-child td {
  border-bottom: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 980px) {
  .nav-toggle { display: inline-block; }
  .nav-menu {
    position: fixed;
    inset: 84px 18px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: white;
    box-shadow: var(--shadow);
  }
  .nav-menu.open { display: flex; }
  .nav-menu a {
    padding: 13px 10px;
  }
  .nav-menu .btn {
    margin-top: 8px;
  }
  .hero-grid,
  .split,
  .content-band,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .desktop-player {
    justify-self: start;
  }
  .benefits-grid,
  .spaces-grid,
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .strip-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cta-grid {
    grid-template-columns: 1fr;
  }
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  html {
    scroll-padding-top: 84px;
  }
  .container { width: min(100% - 28px, 1160px); }
  .nav { min-height: 74px; width: min(100% - 28px, 1210px); }
  .brand strong { font-size: 1.38rem; }
  .brand em { font-size: .56rem; }
  .brand-mark { width: 34px; }
  .nav-menu { top: 74px; }
  .hero {
    min-height: auto;
  }
  .hero-grid {
    padding: 42px 0 46px;
    gap: 28px;
  }
  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.86) 54%, rgba(255,255,255,.76) 100%);
  }
  .hero-copy h1 { font-size: clamp(2.35rem, 11vw, 3.4rem); }
  .hero-copy p { font-size: 1rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .desktop-player { width: 100%; }
  .window-actions i { width: 20px; }
  .player-logo strong { font-size: 1.72rem; }
  .now-playing strong { font-size: 2rem; }
  .pause-demo { width: 84px; height: 84px; }
  .pause-demo span { height: 34px; }
  .player-screen {
    min-height: 360px;
    padding-inline: 22px;
  }
  .section { padding: 68px 0; }
  section[id] { scroll-margin-top: 84px; }
  .desktop-nowrap {
    white-space: normal;
  }
  .section-copy h2,
  .section-head h2,
  .technology h2,
  .experience h2,
  .cta-band h2,
  .guarantee-card h2 {
    font-size: clamp(2rem, 11vw, 3rem);
  }
  .direct-card a {
    font-size: clamp(1.35rem, 8vw, 2rem);
    overflow-wrap: anywhere;
  }
  .technology,
  .direct-contacts,
  .guarantee-card {
    padding: 24px;
  }
  .guarantee-card::before {
    right: 12px;
    bottom: -18px;
    font-size: 7rem;
  }
  .feature-grid,
  .benefits-grid,
  .spaces-grid,
  .steps,
  .strip-grid {
    grid-template-columns: 1fr;
  }
  .space-card { min-height: 210px; }
  .footer-grid,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
  .footer nav {
    flex-wrap: wrap;
  }
  .footer-related {
    align-items: flex-start;
    flex-direction: column;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
  .cookie-banner {
    inset: auto 10px 10px;
  }
  .cookie-box {
    grid-template-columns: 1fr;
    padding: 14px;
  }
  .cookie-box p {
    font-size: .88rem;
  }
  .cookie-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }
  .cookie-actions .btn {
    min-height: 40px;
    padding-inline: 12px;
  }
  .cookie-actions a {
    grid-column: 1 / -1;
  }
  .legal-page {
    padding: 28px 0;
  }
  .legal-content {
    padding: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
