/* TopSale — modern stylesheet (RTL first) */

/* ---------- tokens ---------- */
:root {
  --ink: #0b0f14;
  --ink-2: #121a24;
  --ink-3: #1b2634;

  --surface: #ffffff;
  --surface-alt: #f5f7f9;

  --text: #14202c;
  --muted: #5b6b7b;
  --muted-dark: #a7b4c2;

  --gold: #b3873f;
  --gold-soft: #d7b273;
  --gold-bright: #e6c98e;

  --line: rgba(11, 15, 20, 0.1);
  --line-dark: rgba(255, 255, 255, 0.12);

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;

  --shadow-sm: 0 1px 2px rgba(11, 15, 20, 0.06), 0 4px 12px rgba(11, 15, 20, 0.05);
  --shadow: 0 8px 24px rgba(11, 15, 20, 0.08), 0 2px 6px rgba(11, 15, 20, 0.04);
  --shadow-lg: 0 24px 60px rgba(11, 15, 20, 0.16);

  --container: 1180px;
  --header-h: 74px;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: "Heebo", "Segoe UI", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.75;
  color: var(--text);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 0.5em;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.015em;
}

h1 {
  font-size: clamp(2.1rem, 4.6vw, 3.5rem);
}
h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
}
h3 {
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
}

p {
  margin: 0 0 1rem;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

a:hover {
  color: var(--text);
}

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

:focus-visible {
  outline: 3px solid var(--gold-soft);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  inset-inline-start: 16px;
  top: -60px;
  z-index: 200;
  padding: 10px 18px;
  background: var(--ink);
  color: #fff;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  transition: top 0.2s var(--ease);
}

.skip-link:focus {
  top: 0;
  color: #fff;
}

/* ---------- layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

.section {
  padding: clamp(64px, 9vw, 120px) 0;
}

.section--alt {
  background: var(--surface-alt);
}

.section-head {
  max-width: 680px;
  margin: 0 auto clamp(36px, 5vw, 64px);
  text-align: center;
}

.section-head p {
  color: var(--muted);
  font-size: 1.08rem;
  margin: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 6px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border: 1px solid transparent;
  border-radius: 999px;
  font: inherit;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease),
    background-color 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.btn svg {
  flex: none;
}

.btn--primary {
  background: linear-gradient(135deg, var(--gold) 0%, #97702f 100%);
  color: #fff;
  box-shadow: 0 10px 24px rgba(179, 135, 63, 0.32);
}

.btn--primary:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(179, 135, 63, 0.4);
}

.btn--ghost {
  border-color: var(--line-dark);
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(6px);
}

.btn--ghost:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-2px);
}

.btn--outline {
  border-color: var(--line);
  color: var(--text);
  background: var(--surface);
}

.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn--sm {
  padding: 11px 20px;
  font-size: 0.95rem;
}

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

/* ---------- header ---------- */
.site-header {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background-color 0.3s var(--ease), box-shadow 0.3s var(--ease),
    border-color 0.3s var(--ease);
  border-bottom: 1px solid transparent;
}

.site-header.is-stuck {
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom-color: var(--line);
  box-shadow: 0 4px 24px rgba(11, 15, 20, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
}

.logo:hover {
  color: #fff;
}

.logo-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold) 60%, #8d6828);
  color: #fff;
  box-shadow: 0 6px 16px rgba(179, 135, 63, 0.35);
}

.logo-mark svg {
  width: 20px;
  height: 20px;
}

.is-stuck .logo {
  color: var(--text);
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav a {
  padding: 9px 14px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.98rem;
  font-weight: 500;
}

.nav a:hover,
.nav a.is-active {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.is-stuck .nav a {
  color: var(--muted);
}

.is-stuck .nav a:hover,
.is-stuck .nav a.is-active {
  color: var(--text);
  background: rgba(11, 15, 20, 0.06);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line-dark);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
}

.is-stuck .nav-toggle {
  border-color: var(--line);
  background: var(--surface);
  color: var(--text);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 2px;
  background: currentColor;
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: min(92vh, 860px);
  padding: calc(var(--header-h) + 72px) 0 96px;
  background: var(--ink);
  color: #fff;
  isolation: isolate;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero::before {
  background: url("../images/apple1.png") no-repeat left center / cover;
  opacity: 0.5;
  filter: grayscale(0.35);
}

.hero::after {
  background: linear-gradient(to top, var(--ink) 2%, rgba(11, 15, 20, 0) 38%),
    linear-gradient(to left, rgba(11, 15, 20, 0.97) 6%, rgba(11, 15, 20, 0.82) 42%, rgba(11, 15, 20, 0.45) 100%),
    radial-gradient(60% 70% at 88% 12%, rgba(179, 135, 63, 0.28), transparent 70%);
}

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

.hero .eyebrow {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--line-dark);
  color: var(--gold-bright);
}

.hero .eyebrow::before {
  background: var(--gold-bright);
}

.hero-kicker {
  margin: 0 0 10px;
  color: var(--gold-bright);
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.hero h1 {
  margin-bottom: 20px;
  text-wrap: balance;
}

.hero h1 .accent {
  background: linear-gradient(120deg, var(--gold-bright), var(--gold-soft) 60%, var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-lead {
  max-width: 56ch;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 44px;
  padding-top: 30px;
  border-top: 1px solid var(--line-dark);
}

.hero-stats dt {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--gold-bright);
}

.hero-stats dd {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.95rem;
}

.scroll-hint {
  position: absolute;
  inset-block-end: 26px;
  inset-inline-start: 50%;
  transform: translateX(50%);
  color: rgba(255, 255, 255, 0.55);
  animation: bob 2.4s var(--ease) infinite;
}

@keyframes bob {
  0%,
  100% {
    transform: translateX(50%) translateY(0);
  }
  50% {
    transform: translateX(50%) translateY(7px);
  }
}

/* ---------- integrations strip ---------- */
.logos {
  padding: 44px 0;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.logos p {
  margin: 0 0 22px;
  color: var(--muted);
  text-align: center;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.logos-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 6vw, 72px);
}

.logos-grid li {
  display: grid;
  place-items: center;
  width: 136px;
  height: 54px;
}

.logos-grid img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.62;
  transition: filter 0.3s var(--ease), opacity 0.3s var(--ease), transform 0.3s var(--ease);
}

.logos-grid li:hover img {
  filter: none;
  opacity: 1;
  transform: scale(1.04);
}

.logo-text {
  color: var(--muted);
  font-size: 1.1rem;
  font-weight: 700;
  opacity: 0.75;
  transition: color 0.3s var(--ease), opacity 0.3s var(--ease);
}

.logos-grid li:hover .logo-text {
  color: var(--text);
  opacity: 1;
}

/* ---------- cards ---------- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.card {
  position: relative;
  padding: 34px 30px 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease),
    border-color 0.3s var(--ease);
}

.card::after {
  content: "";
  position: absolute;
  inset-block-start: 0;
  inset-inline: 28px;
  height: 3px;
  border-radius: 0 0 3px 3px;
  background: linear-gradient(to left, var(--gold), var(--gold-soft));
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(179, 135, 63, 0.3);
  box-shadow: var(--shadow-lg);
}

.card:hover::after {
  opacity: 1;
}

.card h3 {
  margin-bottom: 10px;
}

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

.card-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 22px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(179, 135, 63, 0.14), rgba(179, 135, 63, 0.04));
  color: var(--gold);
}

.card-icon svg {
  width: 26px;
  height: 26px;
}

/* ---------- features ---------- */
.features-list {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 460px), 1fr));
}

.feature {
  display: flex;
  gap: 22px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.feature-media {
  flex: none;
  align-self: stretch;
  width: 132px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface-alt);
}

.feature-media img {
  width: 100%;
  height: 100%;
  min-height: 132px;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}

.feature:hover .feature-media img {
  transform: scale(1.06);
}

.feature-body h3 {
  margin-bottom: 8px;
}

.feature-body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

/* ---------- gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: 22px;
}

.shot {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

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

.shot img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  object-position: top center;
  background: #fff;
}

.shot-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 20px;
  border-top: 1px solid var(--line);
  color: var(--text);
  font-weight: 700;
  font-size: 1rem;
}

.shot-label span:last-child {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--surface-alt);
  color: var(--gold);
  transition: background-color 0.3s var(--ease), color 0.3s var(--ease);
}

.shot:hover .shot-label span:last-child {
  background: var(--gold);
  color: #fff;
}

/* ---------- lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(8, 11, 15, 0.9);
  backdrop-filter: blur(8px);
}

.lightbox.is-open {
  display: grid;
  animation: fade 0.25s var(--ease);
}

@keyframes fade {
  from {
    opacity: 0;
  }
}

.lightbox figure {
  margin: 0;
  max-width: min(1100px, 100%);
  text-align: center;
}

.lightbox img {
  max-height: 78vh;
  width: auto;
  margin-inline: auto;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-lg);
}

.lightbox figcaption {
  margin-top: 18px;
  color: #fff;
  font-weight: 600;
}

.lightbox button {
  position: absolute;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  cursor: pointer;
  transition: background-color 0.2s var(--ease), transform 0.2s var(--ease);
}

.lightbox button:hover {
  background: rgba(255, 255, 255, 0.24);
  transform: scale(1.06);
}

.lb-close {
  inset-block-start: 20px;
  inset-inline-end: 20px;
}

.lb-prev,
.lb-next {
  inset-block-start: 50%;
  margin-block-start: -24px;
}

.lb-prev {
  inset-inline-start: 20px;
}

.lb-next {
  inset-inline-end: 20px;
}

/* ---------- contact ---------- */
.contact {
  background: var(--ink);
  color: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}

.contact .section-head {
  margin: 0 0 28px;
  text-align: start;
  max-width: none;
}

.contact .eyebrow {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--line-dark);
  color: var(--gold-bright);
}

.contact .eyebrow::before {
  background: var(--gold-bright);
}

.contact .section-head p {
  color: rgba(255, 255, 255, 0.72);
}

.contact-list {
  display: grid;
  gap: 14px;
}

.contact-list a {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  transition: background-color 0.25s var(--ease), border-color 0.25s var(--ease),
    transform 0.25s var(--ease);
}

.contact-list a:hover {
  color: #fff;
  border-color: rgba(179, 135, 63, 0.6);
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(-2px);
}

.contact-list .ci {
  display: grid;
  place-items: center;
  flex: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(179, 135, 63, 0.9), rgba(141, 104, 40, 0.9));
}

.contact-list .ci svg {
  width: 20px;
  height: 20px;
}

.contact-list small {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.82rem;
  line-height: 1.5;
}

.contact-list strong {
  font-size: 1.12rem;
  letter-spacing: 0.01em;
}

/* form */
.form-card {
  padding: clamp(24px, 3vw, 38px);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-lg);
}

.form-alert {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 0 0 22px;
  padding: 14px 16px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.5;
}

.form-alert svg {
  flex: none;
  margin-top: 3px;
}

.form-alert--ok {
  border-color: rgba(126, 200, 148, 0.42);
  background: rgba(126, 200, 148, 0.12);
  color: #bfe9cd;
}

.form-alert--error {
  border-color: rgba(233, 128, 118, 0.42);
  background: rgba(233, 128, 118, 0.12);
  color: #f4bdb7;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field {
  margin-bottom: 16px;
}

.field label {
  display: block;
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  font-weight: 600;
}

.field input,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-sm);
  background: rgba(11, 15, 20, 0.5);
  color: #fff;
  font: inherit;
  font-size: 1rem;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease),
    background-color 0.2s var(--ease);
}

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

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold-soft);
  background: rgba(11, 15, 20, 0.7);
  box-shadow: 0 0 0 4px rgba(179, 135, 63, 0.2);
}

.form-note {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.85rem;
  text-align: center;
}

/* ---------- footer ---------- */
.site-footer {
  padding: 56px 0 28px;
  background: var(--ink-2);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.94rem;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line-dark);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.62);
}

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

.footer-seo {
  padding: 22px 0 0;
  max-width: 760px;
}

.footer-seo p {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.92rem;
  line-height: 1.7;
}

.footer-seo strong {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  padding-top: 22px;
  font-size: 0.88rem;
}

.footer-bottom p {
  margin: 0;
}

/* ---------- FAQ ---------- */
.faq-list {
  display: grid;
  gap: 14px;
  max-width: 820px;
  margin-inline: auto;
}

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

.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "";
  flex: none;
  width: 10px;
  height: 10px;
  border-inline-end: 2px solid var(--gold);
  border-block-end: 2px solid var(--gold);
  transform: rotate(45deg);
  transition: transform 0.25s var(--ease);
}

.faq-item[open] summary::after {
  transform: rotate(-135deg);
}

.faq-item p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--muted);
}

.faq-item a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ---------- to top ---------- */
.to-top {
  position: fixed;
  inset-block-end: 24px;
  inset-inline-start: 24px;
  z-index: 90;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface);
  color: var(--gold);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s;
}

.to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.to-top:hover {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}

/* ---------- reveal on scroll (only when JS is available) ---------- */
.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.js .reveal.is-in {
  opacity: 1;
  transform: none;
}

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  body {
    font-size: 16px;
  }

  .nav-toggle {
    display: block;
  }

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

  .site-header {
    background: rgba(255, 255, 255, 0.86);
    backdrop-filter: saturate(180%) blur(14px);
    border-bottom-color: var(--line);
  }

  .site-header .logo {
    color: var(--text);
  }

  .site-header .nav-toggle {
    border-color: var(--line);
    background: var(--surface);
    color: var(--text);
  }

  .nav {
    position: absolute;
    inset-block-start: var(--header-h);
    inset-inline: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 14px 24px 22px;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    transform-origin: top;
    display: none;
  }

  .nav.is-open {
    display: flex;
    animation: dropdown 0.24s var(--ease);
  }

  @keyframes dropdown {
    from {
      opacity: 0;
      transform: translateY(-8px);
    }
  }

  .nav a {
    padding: 13px 16px;
    border-radius: var(--radius-sm);
    color: var(--text);
    font-weight: 600;
  }

  .nav a:hover,
  .nav a.is-active {
    color: var(--gold);
    background: rgba(179, 135, 63, 0.09);
  }

  .hero {
    min-height: 0;
    padding: calc(var(--header-h) + 56px) 0 72px;
    text-align: start;
  }

  .hero::before {
    background-position: center 20%;
    opacity: 0.35;
  }

  .hero::after {
    background: linear-gradient(to bottom, rgba(11, 15, 20, 0.9), rgba(11, 15, 20, 0.96)),
      radial-gradient(80% 50% at 80% 0%, rgba(179, 135, 63, 0.3), transparent 70%);
  }

  .hero-cta .btn {
    flex: 1 1 auto;
  }

  .hero-stats {
    gap: 18px 32px;
  }

  .scroll-hint {
    display: none;
  }

  .field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .feature {
    flex-direction: column;
    gap: 18px;
  }

  .feature-media {
    width: 100%;
  }

  .feature-media img {
    height: 168px;
  }

  .lb-prev,
  .lb-next {
    inset-block-start: auto;
    inset-block-end: 22px;
    margin: 0;
  }

  .lb-prev {
    inset-inline-start: calc(50% + 12px);
  }

  .lb-next {
    inset-inline-end: calc(50% + 12px);
  }

  .lightbox img {
    max-height: 62vh;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.001s !important;
    transition-duration: 0.001s !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .site-header,
  .to-top,
  .lightbox,
  .scroll-hint {
    display: none !important;
  }
}
