:root {
  --ink: #0f172a;
  --ink-soft: #334155;
  --ink-mute: #64748b;
  --paper: #fafaf9;
  --paper-warm: #f5f4f0;
  --white: #ffffff;
  --line: #e2e8f0;
  --line-soft: #eef2f6;
  --navy: #16233d;
  --navy-deep: #0a0f1c;
  --navy-mid: #1e3a5f;
  --silver: #94a3b8;
  --silver-light: #cbd5e1;
  --steel: #3b5b8c;
  --accent: #2563eb;
  --accent-soft: #dbeafe;
  --danger: #dc2626;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 12px 40px -12px rgba(15, 23, 42, 0.18);
  --shadow-lg: 0 30px 80px -20px rgba(10, 15, 28, 0.35);
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
  --font-display: "Playfair Display", Georgia, serif;
  --header-h: 76px;
}

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

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
fieldset,
legend,
dl,
dd,
hr,
pre,
ul,
ol {
  margin: 0;
}

ul,
ol {
  padding: 0;
}

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

button {
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

a {
  color: inherit;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

#pachinkopl-root {
  flex: 1 0 auto;
}

::selection {
  background: var(--steel);
  color: #fff;
}

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

.container-wide {
  width: 100%;
  max-width: 1320px;
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 40px);
}

.container-narrow {
  max-width: 920px;
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 40px);
}

h1,
h2,
h3,
.font-display {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink-mute);
}

h1 {
  font-size: clamp(2rem, 5.5vw, 4.6rem);
  line-height: 1.08;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.15;
}

h3 {
  font-size: clamp(1.2rem, 2.4vw, 1.6rem);
  line-height: 1.3;
}

.section {
  padding-block: clamp(56px, 9vw, 120px);
  position: relative;
}

.section-tight {
  padding-block: clamp(40px, 6vw, 72px);
}

.section-dark {
  background-color: var(--navy-deep);
  color: #f1f5f9;
  background-size: cover;
  background-position: center;
}

.section-dark h1,
.section-dark h2,
.section-dark h3 {
  color: #fff;
}

.section-dark p {
  color: #cbd5e1;
}

.bg-cover-block {
  background-size: cover;
  background-position: center;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 18px;
}

.kicker::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--steel);
}

.section-dark .kicker {
  color: var(--silver-light);
}

.section-dark .kicker::before {
  background: var(--silver-light);
}

.lead {
  font-size: clamp(1.02rem, 1.6vw, 1.25rem);
  line-height: 1.75;
  color: var(--ink-mute);
  max-width: 62ch;
}

.section-dark .lead {
  color: #cbd5e1;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn i {
  font-size: 0.8em;
  transition: transform 0.25s ease;
}

.btn:hover i {
  transform: translateX(4px);
}

.btn-primary {
  background: var(--navy);
  color: #fff;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background: var(--navy-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  border-color: var(--ink);
  color: var(--ink);
  background: transparent;
}

.btn-outline:hover {
  background: var(--ink);
  color: #fff;
  transform: translateY(-2px);
}

.btn-light {
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow-md);
}

.btn-light:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-ghost-light {
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
}

.btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.7);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--accent-soft);
  color: var(--navy-mid);
  border: 1px solid #bfdbfe;
}

.badge-dark {
  background: rgba(255, 255, 255, 0.08);
  color: #e2e8f0;
  border-color: rgba(255, 255, 255, 0.18);
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--silver-light);
}

.card-dark {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.card-dark:hover {
  border-color: rgba(255, 255, 255, 0.3);
}

.img-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.img-frame:hover img {
  transform: scale(1.05);
}

.img-frame::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: calc(var(--radius) - 8px);
  pointer-events: none;
}

.ornament {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--silver);
}

.ornament::before,
.ornament::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--silver-light),
    transparent
  );
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 3vw, 44px);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.4vw, 32px);
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 2vw, 24px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(250, 250, 249, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
  transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-top {
  border-bottom: 1px solid var(--line-soft);
  font-size: 0.78rem;
  color: var(--ink-mute);
}

.header-top-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 8px;
  gap: 16px;
}

.header-top-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-mute);
  text-decoration: none;
}

a.header-top-item:hover {
  color: var(--ink);
}

.header-top-contacts {
  display: flex;
  gap: 22px;
}

.header-main-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: var(--header-h);
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
}

.header-logo img {
  height: 44px;
  width: auto;
}

.header-logo-text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.header-nav-list {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.6vw, 26px);
  list-style: none;
  margin: 0;
  padding: 0;
}

.header-nav-list a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  text-decoration: none;
  position: relative;
  padding-block: 6px;
  white-space: nowrap;
}

.header-nav-list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--navy);
  transition: width 0.3s ease;
}

.header-nav-list a:hover {
  color: var(--ink);
}

.header-nav-list a:hover::after {
  width: 100%;
}

.header-nav-cta {
  padding: 10px 20px !important;
  border-radius: 999px;
  background: var(--navy);
  color: #fff !important;
}

.header-nav-cta::after {
  display: none;
}

.header-nav-cta:hover {
  background: var(--navy-mid);
}

.header-burger {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--ink);
  cursor: pointer;
  padding: 8px;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(86vw, 380px);
  background: var(--white);
  z-index: 1200;
  padding: 88px 32px 40px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: var(--shadow-lg);
  overflow-y: auto;
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-menu-nav li {
  border-bottom: 1px solid var(--line-soft);
}

.mobile-menu-nav a {
  display: block;
  padding: 15px 4px;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
}

.mobile-menu-nav a:hover {
  color: var(--steel);
  padding-left: 10px;
  transition: padding 0.25s ease;
}

.mobile-menu-contacts {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.mobile-menu-contact {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink-soft);
  text-decoration: none;
}

.mobile-menu-contact i {
  color: var(--steel);
  width: 18px;
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 15, 28, 0.5);
  backdrop-filter: blur(3px);
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.menu-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.site-footer {
  background: var(--navy-deep);
  color: #cbd5e1;
  margin-top: auto;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.8fr 1.1fr;
  gap: clamp(28px, 4vw, 64px);
  padding-block: clamp(48px, 6vw, 80px);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
}

.footer-logo img {
  height: 52px;
  width: auto;
}

.footer-desc {
  margin-top: 18px;
  font-size: 0.9rem;
  line-height: 1.7;
  color: #94a3b8;
  max-width: 40ch;
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #e2e8f0;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.footer-socials a:hover {
  background: #fff;
  color: var(--navy-deep);
  transform: translateY(-3px);
}

.footer-heading {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 20px;
}

.footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-list a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.88rem;
  transition:
    color 0.25s ease,
    padding 0.25s ease;
}

.footer-list a:hover {
  color: #fff;
  padding-left: 6px;
}

.footer-contacts li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.88rem;
  color: #94a3b8;
  line-height: 1.5;
}

.footer-contacts i {
  color: var(--silver);
  margin-top: 3px;
  width: 16px;
}

.footer-contacts a {
  color: #cbd5e1;
}

.footer-legal {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-block: 26px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-size: 0.78rem;
  color: #64748b;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-legal-links a {
  color: #94a3b8;
  text-decoration: none;
}

.footer-legal-links a:hover {
  color: #fff;
}

.footer-company {
  text-align: center;
}

.footer-company p {
  margin: 0;
  line-height: 1.6;
}

.footer-copy {
  margin: 0;
}

.tp-slider {
  position: relative;
  overflow: hidden;
  min-height: clamp(560px, 92vh, 860px);
  display: flex;
  align-items: stretch;
}

.tp-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 1s ease,
    visibility 1s ease;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.tp-slide.active {
  opacity: 1;
  visibility: visible;
  position: relative;
  width: 100%;
  flex: 0 0 100%;
}

.tp-slide-inner {
  width: 100%;
  padding-block: 80px;
}

.tp-slide .kicker {
  color: var(--silver-light);
}

.tp-slide h1,
.tp-slide h2 {
  color: #fff;
  max-width: 16ch;
}

.tp-slide p {
  color: #cbd5e1;
}

.tp-slider-nav {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 18px;
  z-index: 20;
}

.tp-slider-arrow {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.tp-slider-arrow:hover {
  background: #fff;
  color: var(--navy-deep);
}

.tp-slider-dots {
  display: flex;
  gap: 10px;
}

.tp-slider-dot {
  width: 34px;
  height: 4px;
  border-radius: 2px;
  border: none;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  padding: 0;
  transition: background 0.3s ease;
}

.tp-slider-dot.active {
  background: #fff;
}

.tp-slider-count {
  position: absolute;
  top: 34px;
  right: clamp(16px, 4vw, 40px);
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.75);
  z-index: 20;
}

.ticker {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--white);
  padding-block: 16px;
}

.ticker-dark {
  background: var(--navy-deep);
  border-color: rgba(255, 255, 255, 0.1);
}

.ticker-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: ticker-scroll 32s linear infinite;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  white-space: nowrap;
}

.ticker-dark .ticker-item {
  color: #94a3b8;
}

.ticker-item i {
  color: var(--steel);
}

.ticker-dark .ticker-item i {
  color: var(--silver-light);
}

@keyframes ticker-scroll {
  to {
    transform: translateX(-50%);
  }
}

.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(210px, auto);
  gap: 18px;
}

.bento-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  padding: clamp(22px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-size: cover;
  background-position: center;
}

.bento-item.card {
  justify-content: flex-start;
}

.bento-xl {
  grid-column: span 2;
  grid-row: span 2;
}

.bento-lg {
  grid-column: span 2;
}

.bento-item h3 {
  position: relative;
  z-index: 2;
}

.bento-item p {
  position: relative;
  z-index: 2;
  margin-bottom: 0;
}

.duo-split {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: clamp(420px, 60vh, 560px);
  border-radius: var(--radius);
  overflow: hidden;
}

.duo-pane {
  position: relative;
  padding: clamp(28px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-size: cover;
  background-position: center;
  color: #fff;
  transition: flex 0.5s ease;
}

.duo-pane h3 {
  color: #fff;
}

.duo-pane p {
  color: #cbd5e1;
}

.duo-divider {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(255, 255, 255, 0.4);
  z-index: 5;
}

.duo-divider::after {
  content: "\f337";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fff;
  color: var(--navy-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: var(--shadow-md);
}

.duo-toggle {
  display: none;
  gap: 8px;
  margin-bottom: 18px;
}

.duo-toggle button {
  flex: 1;
  padding: 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-mute);
  cursor: pointer;
}

.duo-toggle button.active {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

.magazine-index {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 1px solid var(--line);
}

.magazine-index button {
  background: none;
  border: none;
  border-bottom: 1px solid var(--line);
  text-align: left;
  padding: 22px 8px 22px 24px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--ink-mute);
  cursor: pointer;
  position: relative;
  transition:
    color 0.3s ease,
    padding 0.3s ease;
}

.magazine-index button .idx {
  display: block;
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  color: var(--silver);
  margin-bottom: 6px;
}

.magazine-index button.active {
  color: var(--ink);
  padding-left: 34px;
}

.magazine-index button.active::before {
  content: "";
  position: absolute;
  left: -1px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--navy);
}

.magazine-panel {
  display: none;
}

.magazine-panel.active {
  display: block;
  animation: fadeUp 0.5s ease;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}

.section-dark .stat-num {
  color: #fff;
}

.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 10px;
}

.section-dark .stat-label {
  color: var(--silver);
}

.jackpot-display {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 8vw, 6.4rem);
  font-weight: 700;
  color: #fff;
  text-shadow: 0 0 40px rgba(148, 163, 184, 0.5);
  letter-spacing: 0.02em;
  line-height: 1;
}

.live-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ef4444;
  animation: pulse-dot 1.6s ease infinite;
}

@keyframes pulse-dot {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.6);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(239, 68, 68, 0);
  }
}

.tier-card {
  position: relative;
  border-radius: var(--radius);
  padding: clamp(26px, 3vw, 40px);
  background: var(--white);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.tier-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.tier-card.featured {
  background: var(--navy-deep);
  color: #f1f5f9;
  border-color: var(--navy-deep);
}

.tier-card.featured h3 {
  color: #fff;
}

.tier-price {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--navy);
}

.tier-card.featured .tier-price {
  color: #fff;
}

.tier-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.9rem;
}

.tier-features li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.tier-features i {
  color: var(--steel);
  margin-top: 3px;
}

.tier-card.featured .tier-features i {
  color: var(--silver-light);
}

.wheel-wrap {
  position: relative;
  width: min(420px, 82vw);
  aspect-ratio: 1;
  margin-inline: auto;
}

.wheel-disc {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: relative;
  transition: transform 4s cubic-bezier(0.15, 0.9, 0.3, 1);
  background: conic-gradient(
    var(--navy) 0 45deg,
    var(--navy-mid) 45deg 90deg,
    var(--navy) 90deg 135deg,
    var(--steel) 135deg 180deg,
    var(--navy) 180deg 225deg,
    var(--navy-mid) 225deg 270deg,
    var(--navy) 270deg 315deg,
    var(--steel) 315deg 360deg
  );
  border: 10px solid var(--navy-deep);
  box-shadow:
    var(--shadow-lg),
    inset 0 0 0 2px rgba(255, 255, 255, 0.15);
}

.wheel-sector {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 9%;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
}

.wheel-pointer {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-top: 26px solid #fff;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4));
  z-index: 5;
}

.wheel-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: #fff;
  border: 6px solid var(--navy-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-deep);
  font-size: 1.5rem;
  z-index: 4;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  overflow: hidden;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.faq-item + .faq-item {
  margin-top: 12px;
}

.faq-item.open {
  border-color: var(--silver);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  margin: 0;
}

.faq-question i {
  color: var(--steel);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.open .faq-question i {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer-inner,
.faq-answer p {
  padding: 0 24px 20px;
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--ink-mute);
}

.section-dark .faq-item {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
}

.section-dark .faq-question {
  color: #f1f5f9;
}

.section-dark .faq-answer-inner,
.section-dark .faq-answer p {
  color: #94a3b8;
}

.tp-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.tp-tab {
  padding: 12px 24px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-mute);
  cursor: pointer;
  transition: all 0.3s ease;
}

.tp-tab:hover {
  border-color: var(--silver);
  color: var(--ink);
}

.tp-tab.active {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

.tp-tab-panel {
  display: none;
}

.tp-tab-panel.active {
  display: block;
  animation: fadeUp 0.45s ease;
}

.menu-dish {
  display: flex;
  gap: 20px;
  padding: 22px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: var(--white);
  transition: all 0.3s ease;
  cursor: pointer;
}

.menu-dish:hover,
.menu-dish.active {
  border-color: var(--steel);
  box-shadow: var(--shadow-md);
}

.menu-dish-img {
  width: 84px;
  height: 84px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--paper-warm);
}

.menu-dish-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-dish-body {
  flex: 1;
  min-width: 0;
}

.menu-dish-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 14px;
}

.menu-dish-head h4 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--ink);
}

.menu-dish-price {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--steel);
  white-space: nowrap;
}

.menu-dish-desc {
  margin: 8px 0 0;
  font-size: 0.86rem;
  line-height: 1.6;
  color: var(--ink-mute);
}

.menu-dish-tags {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.menu-dish-tags span {
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--paper-warm);
  color: var(--ink-mute);
  border: 1px solid var(--line);
}

.dish-detail {
  position: sticky;
  top: calc(var(--header-h) + 70px);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--navy-deep);
  color: #f1f5f9;
  box-shadow: var(--shadow-lg);
}

.dish-detail-img {
  height: 280px;
  background-size: cover;
  background-position: center;
}

.dish-detail-body {
  padding: clamp(22px, 3vw, 34px);
}

.dish-detail-body h3 {
  color: #fff;
}

.dish-detail-body p {
  color: #94a3b8;
  line-height: 1.75;
  font-size: 0.94rem;
}

.dish-detail-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.dish-detail-price {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}

.price-table th {
  text-align: left;
  padding: 18px 22px;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  background: var(--paper-warm);
  border-bottom: 1px solid var(--line);
}

.price-table td {
  padding: 18px 22px;
  border-bottom: 1px solid var(--line-soft);
  font-size: 0.92rem;
  color: var(--ink-soft);
  vertical-align: top;
}

.price-table tr:last-child td {
  border-bottom: none;
}

.price-table tr:hover td {
  background: var(--paper);
}

.price-table .p-name {
  font-weight: 600;
  color: var(--ink);
}

.price-table .p-desc {
  display: block;
  font-size: 0.8rem;
  color: var(--ink-mute);
  margin-top: 4px;
  line-height: 1.5;
}

.price-table .p-val {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy);
  white-space: nowrap;
}

.timeline {
  position: relative;
  padding-left: 34px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 6px;
  bottom: 6px;
  width: 1px;
  background: var(--line);
}

.timeline-item {
  position: relative;
  padding-bottom: 34px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -30px;
  top: 6px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--steel);
  box-shadow: 0 0 0 5px var(--paper);
}

.timeline-item .t-year {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--steel);
  font-weight: 700;
}

.timeline-item h4 {
  margin: 6px 0;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--ink);
}

.timeline-item p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--ink-mute);
  line-height: 1.7;
}

.section-dark .timeline::before {
  background: rgba(255, 255, 255, 0.15);
}

.section-dark .timeline-item::before {
  box-shadow: 0 0 0 5px var(--navy-deep);
  background: var(--silver-light);
}

.section-dark .timeline-item h4 {
  color: #fff;
}

.section-dark .timeline-item p {
  color: #94a3b8;
}

.quote-block {
  position: relative;
  padding: clamp(28px, 4vw, 48px);
  border-left: 3px solid var(--steel);
  background: var(--white);
  border-radius: 0 var(--radius) var(--radius) 0;
  box-shadow: var(--shadow-sm);
}

.quote-block p {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-style: italic;
  line-height: 1.6;
  color: var(--ink);
  margin: 0;
}

.quote-author {
  margin-top: 18px;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.testi-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
}

.testi-viewport {
  overflow: hidden;
}

.testi-card {
  min-width: 100%;
  padding: clamp(26px, 4vw, 44px);
}

@media (min-width: 768px) {
  .testi-card {
    min-width: calc(50% - 10px);
  }
}

.quiz-step {
  display: none;
}

.quiz-step.active {
  display: block;
  animation: fadeUp 0.4s ease;
}

.quiz-option {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 18px 22px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: var(--white);
  text-align: left;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
  transition: all 0.25s ease;
}

.quiz-option:hover {
  border-color: var(--steel);
  transform: translateX(6px);
}

.quiz-option i {
  font-size: 1.2rem;
  color: var(--steel);
  width: 26px;
  text-align: center;
}

.quiz-progress {
  height: 4px;
  background: var(--line);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 26px;
}

.quiz-progress-bar {
  height: 100%;
  width: 0;
  background: var(--navy);
  border-radius: 2px;
  transition: width 0.4s ease;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

.form-field label {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.form-field input,
.form-field textarea,
.form-field select {
  padding: 15px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
  width: 100%;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--steel);
  box-shadow: 0 0 0 4px rgba(59, 91, 140, 0.12);
}

.form-field input.error,
.form-field textarea.error {
  border-color: var(--danger);
  box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.1);
}

.field-error {
  font-size: 0.78rem;
  color: var(--danger);
  display: none;
}

.form-field.invalid .field-error {
  display: block;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.84rem;
  color: var(--ink-mute);
  line-height: 1.6;
}

.form-consent input {
  margin-top: 4px;
  width: 16px;
  height: 16px;
  accent-color: var(--navy);
  flex-shrink: 0;
}

.form-consent a {
  color: var(--steel);
  text-decoration: underline;
}

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
}

.btn-loading {
  pointer-events: none;
  opacity: 0.8;
}

.btn-loading .btn-label {
  display: none;
}

.btn-spinner {
  display: none;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.btn-loading .btn-spinner {
  display: inline-block;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.toast {
  position: fixed;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%) translateY(140%);
  background: var(--navy-deep);
  color: #fff;
  padding: 16px 26px;
  border-radius: 999px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lg);
  z-index: 2000;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  max-width: min(92vw, 520px);
}

.toast.show {
  transform: translateX(-50%) translateY(0);
}

.toast i {
  color: #7dd3fc;
}

.toast.error i {
  color: #fca5a5;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 999999;
  display: none;
  max-width: 420px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 24px;
}

.cookie-banner.show {
  display: block;
  animation: cookieIn 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes cookieIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cookie-banner h5 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 10px;
}

.cookie-banner h5 i {
  color: var(--steel);
}

.cookie-banner p {
  margin: 0 0 18px;
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--ink-mute);
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
  padding: 11px 16px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s ease;
  border: 1px solid var(--line);
}

.cookie-accept {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy) !important;
}

.cookie-accept:hover {
  background: var(--navy-mid);
}

.cookie-decline {
  background: transparent;
  color: var(--ink-mute);
}

.cookie-decline:hover {
  background: var(--paper-warm);
  color: var(--ink);
}

.hot-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.hot-red {
  background: rgba(239, 68, 68, 0.15);
  color: #fca5a5;
  border: 1px solid rgba(239, 68, 68, 0.4);
}

.hot-black {
  background: rgba(148, 163, 184, 0.12);
  color: #e2e8f0;
  border: 1px solid rgba(148, 163, 184, 0.35);
}

.chip {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-family: var(--font-display);
  font-weight: 700;
  border: 6px dashed rgba(255, 255, 255, 0.85);
  color: #fff;
  box-shadow: var(--shadow-md);
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.chip:hover {
  transform: scale(1.12) rotate(8deg);
}

.chip small {
  font-family: var(--font-body);
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}

.chip-navy {
  background: var(--navy);
}
.chip-steel {
  background: var(--steel);
}
.chip-slate {
  background: #475569;
}
.chip-red {
  background: #9f1239;
}
.chip-black {
  background: #0a0f1c;
  border-color: rgba(255, 255, 255, 0.6);
}
.chip-silver {
  background: #64748b;
}

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
  height: 100%;
  min-height: 380px;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: 0;
  display: block;
}

.step-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--silver-light);
  line-height: 1;
}

.section-dark .step-num {
  color: rgba(255, 255, 255, 0.2);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--steel);
  text-decoration: none;
  transition:
    gap 0.25s ease,
    color 0.25s ease;
}

.link-arrow:hover {
  gap: 14px;
  color: var(--navy);
}

.section-dark .link-arrow {
  color: var(--silver-light);
}

.section-dark .link-arrow:hover {
  color: #fff;
}

.service-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  text-decoration: none;
  color: var(--ink);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.service-card-img {
  height: 190px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.service-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.service-card-body h3 {
  margin: 0;
}

.service-card-body p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--ink-mute);
  line-height: 1.6;
  flex: 1;
}

.service-card-price {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--steel);
  font-size: 1.05rem;
}

.blog-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  text-decoration: none;
  color: var(--ink);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.blog-card-img {
  height: 210px;
  background-size: cover;
  background-position: center;
}

.blog-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.blog-card-meta {
  display: flex;
  gap: 14px;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.blog-card-body h3 {
  margin: 0;
}

.blog-card-body p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--ink-mute);
  line-height: 1.65;
  flex: 1;
}

.article-body p {
  font-size: 1.02rem;
  line-height: 1.85;
  color: var(--ink-soft);
  margin-bottom: 1.4em;
}

.article-body h2 {
  margin-top: 1.6em;
  margin-bottom: 0.7em;
}

.article-body h3 {
  margin-top: 1.4em;
  margin-bottom: 0.6em;
}

.article-body ul,
.article-body ol {
  margin: 0 0 1.4em;
  padding-left: 1.4em;
  color: var(--ink-soft);
  line-height: 1.8;
}

.article-body li {
  margin-bottom: 0.5em;
}

.article-body a {
  color: var(--steel);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.article-body a:hover {
  color: var(--navy);
}

.marquee-imgs {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 12px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.marquee-imgs::-webkit-scrollbar {
  height: 6px;
}

.marquee-imgs::-webkit-scrollbar-thumb {
  background: var(--silver-light);
  border-radius: 3px;
}

.marquee-imgs .img-frame {
  flex: 0 0 min(72vw, 340px);
  height: 240px;
  scroll-snap-align: start;
}

.legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.legal-nav a {
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-mute);
  text-decoration: none;
  transition: all 0.25s ease;
}

.legal-nav a:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

.number-badge {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.icon-tile {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  color: var(--steel);
  font-size: 1.3rem;
  flex-shrink: 0;
}

.section-dark .icon-tile {
  background: rgba(255, 255, 255, 0.08);
  color: var(--silver-light);
}

.divider-fade {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
  border: none;
}

.split-hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: clamp(540px, 88vh, 780px);
}

.split-hero-visual {
  position: relative;
  background-size: cover;
  background-position: center;
  min-height: 320px;
}

.split-hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(32px, 6vw, 80px);
  background: var(--white);
}

.check-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.94rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

.check-list i {
  color: var(--steel);
  margin-top: 4px;
}

.section-dark .check-list li {
  color: #cbd5e1;
}

.section-dark .check-list i {
  color: var(--silver-light);
}

.gallery-strip {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 16px;
}

.gallery-strip .img-frame {
  height: 100%;
  min-height: 220px;
}

.gallery-strip .img-frame:first-child {
  min-height: 340px;
}

@media (max-width: 1100px) {
  .header-nav {
    display: none;
  }
  .header-burger {
    display: block;
  }
  .mobile-menu {
    display: block;
  }
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .bento {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
  .split-hero {
    grid-template-columns: 1fr;
  }
  .split-hero-visual {
    min-height: 380px;
    order: -1;
  }
}

.tp-hero {
  display: flex;
  align-items: center;
  min-height: clamp(480px, 70vh, 640px);
  padding-block: clamp(64px, 10vw, 120px);
}

.tp-hero-inner {
  max-width: 720px;
}

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

.hero-price-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
  padding: 12px 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  color: #fff;
  font-weight: 600;
}

.hero-price-tag i {
  color: var(--silver-light);
}

.hero-price-tag small {
  font-weight: 400;
  color: #94a3b8;
  font-size: 0.8em;
}

.stats-row .stat-card {
  text-align: center;
  padding: clamp(20px, 3vw, 36px);
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
}

.section-dark .stat-card,
.stats-dark .stat-card {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.12);
}

.section-tint {
  background: var(--paper-warm);
}

.split-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
}

.body-text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--ink-soft);
  margin-bottom: 1.2em;
}

.section-dark .body-text {
  color: #cbd5e1;
}

.img-frame.tall {
  min-height: 420px;
  height: 100%;
}

.img-frame.tall img {
  position: absolute;
  inset: 0;
}

.section-head {
  max-width: 680px;
  margin-bottom: clamp(32px, 5vw, 56px);
}

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

.section-head.center .kicker {
  justify-content: center;
}

.section-head.center .kicker::before {
  display: none;
}

.feature-card {
  padding: clamp(24px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.feature-card p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--ink-mute);
}

.quote-band {
  text-align: center;
}

.quote-mark {
  font-size: 2rem;
  color: var(--silver-light);
  margin-bottom: 24px;
  display: block;
}

.big-quote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-style: italic;
  line-height: 1.5;
  color: #fff;
  margin: 0 0 24px;
}

.side-note {
  padding: clamp(26px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.side-note p {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.75;
  color: var(--ink-mute);
}

.step-card {
  padding: clamp(24px, 3vw, 36px);
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

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

.step-card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--ink-mute);
  line-height: 1.7;
}

.price-unit {
  font-family: var(--font-body);
  font-size: 0.45em;
  font-weight: 500;
  color: var(--ink-mute);
  letter-spacing: 0.05em;
}

.price-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 26px 0 32px;
}

.price-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: var(--white);
  transition: border-color 0.25s ease;
}

.price-option:hover {
  border-color: var(--steel);
}

.price-option span {
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.price-option strong {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--navy);
  white-space: nowrap;
}

.mini-service {
  padding: clamp(24px, 3vw, 34px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-decoration: none;
}

.mini-service p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--ink-mute);
  flex: 1;
}

.cta-final {
  text-align: center;
}

.cta-final .kicker {
  justify-content: center;
}

.cta-final .kicker::before {
  display: none;
}

.cta-final .hero-actions {
  justify-content: center;
}

.inner-hero {
  padding-block: clamp(64px, 10vw, 130px);
  position: relative;
  overflow: hidden;
}

.inner-hero .lead {
  margin-top: 22px;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin-top: 28px;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: #94a3b8;
}

.article-meta i {
  margin-right: 8px;
  color: var(--silver-light);
}

.article-intro {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.4rem) !important;
  line-height: 1.7 !important;
  color: var(--ink) !important;
  border-left: 3px solid var(--steel);
  padding-left: 22px;
}

.article-hero-img {
  height: clamp(280px, 45vh, 460px);
}

.doc-updated {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 26px 0 0;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--accent-soft);
  border: 1px solid #bfdbfe;
  font-size: 0.8rem;
  color: var(--navy-mid);
}

.legal-nav {
  margin-top: 30px;
}

.legal-section {
  padding-block: clamp(22px, 3vw, 36px);
  border-bottom: 1px solid var(--line);
}

.legal-section:last-child {
  border-bottom: none;
}

.legal-section h2 {
  display: flex;
  align-items: baseline;
  gap: 16px;
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
}

.legal-num {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--steel);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 12px;
  white-space: nowrap;
}

.testi-nav {
  display: flex;
  gap: 12px;
  margin-top: 26px;
}

.testi-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.testi-btn:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

.contact-card {
  padding: clamp(24px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-card .icon-tile {
  margin-bottom: 6px;
}

.contact-card p {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.7;
  color: var(--ink-mute);
}

.contact-card .c-val {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
  font-family: var(--font-display);
}

.logo-row {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  justify-content: center;
}

.logo-row span {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--silver);
  text-transform: uppercase;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill-list span {
  padding: 10px 20px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--line);
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.num-badge-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.wheel-result {
  margin-top: 24px;
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: #fff;
  min-height: 1.6em;
  text-align: center;
}

.countdown {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.countdown-cell {
  min-width: 86px;
  padding: 18px 12px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  text-align: center;
}

.countdown-cell strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: #fff;
  line-height: 1;
}

.countdown-cell span {
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #94a3b8;
}

.leaderboard {
  width: 100%;
  border-collapse: collapse;
}

.leaderboard th {
  text-align: left;
  padding: 14px 18px;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  border-bottom: 2px solid var(--line);
}

.leaderboard td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--line-soft);
  font-size: 0.92rem;
}

.leaderboard .lb-rank {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--steel);
}

.leaderboard .lb-name {
  font-weight: 600;
  color: var(--ink);
}

.leaderboard .lb-pts {
  font-family: var(--font-display);
  font-weight: 700;
}

@media (max-width: 1100px) {
  .split-2 {
    grid-template-columns: 1fr;
  }
  .img-frame.tall {
    min-height: 300px;
  }
}

@media (max-width: 768px) {
  .header-top {
    display: none;
  }
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }
  .bento {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }
  .bento-xl,
  .bento-lg {
    grid-column: span 1;
    grid-row: span 1;
    min-height: 260px;
  }
  .duo-split {
    grid-template-columns: 1fr;
  }
  .duo-divider {
    display: none;
  }
  .duo-pane {
    min-height: 300px;
  }
  .duo-pane.hidden-mobile {
    display: none;
  }
  .duo-toggle {
    display: flex;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .footer-main {
    grid-template-columns: 1fr;
  }
  .footer-legal {
    flex-direction: column;
    text-align: center;
  }
  .gallery-strip {
    grid-template-columns: 1fr;
  }
  .magazine-index {
    flex-direction: row;
    overflow-x: auto;
    border-left: none;
    border-bottom: 1px solid var(--line);
  }
  .magazine-index button {
    border-bottom: none;
    border-right: 1px solid var(--line);
    padding: 14px 18px;
    white-space: nowrap;
  }
  .magazine-index button.active::before {
    top: auto;
    bottom: -1px;
    left: 0;
    right: 0;
    width: auto;
    height: 2px;
  }
  .tp-slider {
    min-height: 78vh;
  }
  .price-table thead {
    display: none;
  }
  .price-table,
  .price-table tbody,
  .price-table tr,
  .price-table td {
    display: block;
    width: 100%;
  }
  .price-table tr {
    border-bottom: 2px solid var(--line);
    padding: 14px 0;
  }
  .price-table td {
    border: none;
    padding: 6px 18px;
  }
  .price-table .p-val {
    font-size: 1.3rem;
  }
  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    max-width: none;
  }
  .dish-detail {
    position: static;
  }
  html,
  body {
    overflow-x: hidden;
  }
}

.mt-4 {
  margin-top: 16px;
}
.mt-6 {
  margin-top: 24px;
}
.mt-7 {
  margin-top: 26px;
}
.mt-8 {
  margin-top: 30px;
}
.mt-9 {
  margin-top: 36px;
}
.mb-6 {
  margin-bottom: 22px;
}
.mx-auto {
  margin-inline: auto;
}
.items-center {
  align-items: center;
}
.gap-4 {
  gap: 16px;
}
.p-4 {
  padding: 18px;
}
.p-8 {
  padding: 32px;
}
.text-center {
  text-align: center;
}

.bento-tall {
  min-height: 340px;
}

.ws-1 {
  transform: rotate(22.5deg);
}
.ws-2 {
  transform: rotate(67.5deg);
}
.ws-3 {
  transform: rotate(112.5deg);
}
.ws-4 {
  transform: rotate(157.5deg);
}
.ws-5 {
  transform: rotate(202.5deg);
}
.ws-6 {
  transform: rotate(247.5deg);
}
.ws-7 {
  transform: rotate(292.5deg);
}
.ws-8 {
  transform: rotate(337.5deg);
}

.stat-big {
  margin: 8px 0 0;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.3rem;
}

.quiz-result-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin: 18px 0;
  color: var(--navy);
}

.quote-icon {
  color: var(--steel);
  font-size: 1.4rem;
}

.testi-quote {
  margin-top: 16px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
}

.cta-crown {
  font-size: 2rem;
  color: var(--silver-light);
  margin-bottom: 20px;
  display: block;
}

.lb-wrap {
  padding: 10px 22px;
  overflow-x: auto;
}

.tier-price-unit {
  font-size: 0.45em;
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--ink-mute);
}
.tier-card.featured .tier-price-unit {
  color: #94a3b8;
}

.dish-inline-price {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--steel);
  white-space: nowrap;
}

.menu-dish {
  margin-bottom: 14px;
}

.self-start {
  align-self: flex-start;
}
.hidden {
  display: none;
}

.mobile-menu-close {
  position: absolute;
  top: 26px;
  right: 26px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 5;
}
.mobile-menu-close:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
