@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Sora:wght@500;600;700&display=swap");

:root {
  color-scheme: dark;
  --bg: #050505;
  --panel: rgba(18, 18, 18, 0.86);
  --panel-strong: rgba(12, 12, 12, 0.94);
  --text: #f7f1df;
  --muted: #c7b98a;
  --gold: #d4af37;
  --gold-soft: #f3dd8c;
  --gold-deep: #8d6b14;
  --border: rgba(212, 175, 55, 0.22);
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.55);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(212, 175, 55, 0.14), transparent 30%),
    radial-gradient(circle at bottom right, rgba(212, 175, 55, 0.09), transparent 32%),
    linear-gradient(135deg, #020202 0%, #090909 45%, #030303 100%);
  color: var(--text);
}

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

.page-shell {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding: 28px;
}

.content {
  position: relative;
  z-index: 1;
  padding-top: 144px;
}

.background-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(80px);
  opacity: 0.4;
  pointer-events: none;
}

.background-glow-left {
  top: -60px;
  left: -80px;
  width: 260px;
  height: 260px;
  background: rgba(212, 175, 55, 0.18);
}

.background-glow-right {
  right: -70px;
  bottom: 0;
  width: 320px;
  height: 320px;
  background: rgba(212, 175, 55, 0.1);
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  pointer-events: none;
}

.topbar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(6, 6, 6, 0.85);
  backdrop-filter: blur(20px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.topbar-inner {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
  padding: 12px 28px;
  display: flex;
  justify-content: flex-start;
  pointer-events: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 14px 18px 14px 14px;
  border: 0;
  border-radius: 20px;
  background: transparent;
  backdrop-filter: blur(18px);
  box-shadow: none;
  pointer-events: auto;
  margin-left: 72px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 10px 24px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.brand-kicker {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.brand-title {
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 1.55rem;
  letter-spacing: 0.03em;
  color: var(--gold-soft);
}

.hero {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  max-width: 1180px;
  min-height: calc(100vh - 120px);
  margin: 0 auto;
  padding: 40px 0 24px;
}

.hero-panel {
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(22, 22, 22, 0.88), rgba(8, 8, 8, 0.94));
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}

.hero-panel {
  max-width: 1060px;
  padding: 64px 64px 60px;
  border-radius: 34px;
  margin: 0 auto;
  text-align: center;
}

.eyebrow {
  margin: 0 0 18px;
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.promo-label {
  margin: 0 auto 18px;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 227, 132, 0.4);
  background: linear-gradient(135deg, rgba(244, 223, 160, 0.2), rgba(212, 175, 55, 0.12));
  color: #f8e6ae;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow:
    0 12px 28px rgba(212, 175, 55, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.promo-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #f4dfa0;
  box-shadow: 0 0 12px rgba(244, 223, 160, 0.9);
}

h1 {
  margin: 0;
  max-width: 16ch;
  font-family: "Sora", "Inter", "Segoe UI", sans-serif;
  font-size: clamp(2.25rem, 5.2vw, 4.15rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #fff8e6;
  margin-left: auto;
  margin-right: auto;
}

h1 span {
  display: inline-block;
  margin-top: 12px;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold), #fff1bf);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-text {
  max-width: 74ch;
  margin: 28px 0 0;
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(247, 241, 223, 0.82);
  margin-left: auto;
  margin-right: auto;
}

.hero-text-secondary {
  margin-top: 14px;
  color: rgba(247, 241, 223, 0.74);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
  justify-content: center;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 28px;
  border-radius: 999px;
  border: 1px solid rgba(255, 227, 132, 0.38);
  background: linear-gradient(135deg, #f4dfa0 0%, #d4af37 48%, #8a6611 100%);
  color: #100d04;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow:
    0 18px 40px rgba(212, 175, 55, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    filter 160ms ease;
}

.cta-button:hover,
.cta-button:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.04);
  box-shadow:
    0 24px 44px rgba(212, 175, 55, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.hero-preview {
  margin-top: 34px;
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 20px;
  overflow: hidden;
  background: rgba(5, 5, 5, 0.9);
  box-shadow: 0 26px 55px rgba(0, 0, 0, 0.45);
}

.hero-preview img {
  width: 100%;
  height: auto;
  display: block;
}

.showcase {
  max-width: 1180px;
  margin: 28px auto 0;
  padding: 40px 0 64px;
}

.section-heading {
  max-width: 1060px;
  margin: 0 auto 28px;
}

h2,
h3 {
  margin: 0;
}

h2 {
  font-family: "Sora", "Inter", "Segoe UI", sans-serif;
  font-size: clamp(2.1rem, 4.6vw, 3.6rem);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: #fff8e6;
}

.section-text {
  margin: 18px 0 0;
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(247, 241, 223, 0.78);
}

.showcase-frame {
  position: relative;
  max-width: 1060px;
  margin: 0 auto;
}

.showcase-controls {
  position: absolute;
  top: -74px;
  right: 0;
  display: flex;
  gap: 10px;
}

.showcase-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(12, 12, 12, 0.9);
  color: var(--gold-soft);
  font-size: 1.2rem;
  cursor: pointer;
  transition:
    transform 140ms ease,
    background-color 140ms ease,
    opacity 140ms ease;
}

.showcase-arrow:hover,
.showcase-arrow:focus-visible {
  transform: translateY(-1px);
  background: rgba(18, 18, 18, 0.95);
}

.showcase-arrow:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  transform: none;
}

.showcase-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 6px 6px 14px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.showcase-track::-webkit-scrollbar {
  display: none;
}

.showcase-slide {
  flex: 0 0 100%;
  border: 1px solid var(--border);
  border-radius: 30px;
  overflow: hidden;
  scroll-snap-align: start;
  background: linear-gradient(180deg, rgba(20, 20, 20, 0.96), rgba(8, 8, 8, 0.98));
  box-shadow: var(--shadow);
  opacity: 0.68;
  transform: scale(0.99);
  filter: saturate(0.84);
  transition:
    opacity 320ms ease,
    transform 320ms ease,
    filter 320ms ease;
}

.showcase-slide.is-active {
  opacity: 1;
  transform: scale(1);
  filter: saturate(1);
}

.showcase-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #090909;
}

.showcase-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  transition: opacity 380ms ease;
}

.showcase-media-phone {
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.14), transparent 48%),
    linear-gradient(180deg, rgba(10, 10, 10, 0.95), rgba(6, 6, 6, 0.98));
}

.phone-gallery {
  width: min(100%, 780px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.phone-gallery img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #050505;
  box-shadow:
    0 18px 34px rgba(0, 0, 0, 0.38),
    inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.showcase-media-themes {
  padding: 24px;
  background:
    radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.12), transparent 52%),
    linear-gradient(180deg, rgba(10, 10, 10, 0.95), rgba(6, 6, 6, 0.98));
}

.theme-gallery {
  width: min(100%, 980px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.theme-gallery img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #050505;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.28);
}

.showcase-slide.is-active .showcase-media img {
  animation: showcaseFadeIn 520ms ease;
}

.showcase-meta {
  padding: 24px 24px 26px;
}

.showcase-count {
  margin: 0 0 10px;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(243, 221, 140, 0.86);
}

.showcase-meta h3 {
  font-family: "Sora", "Inter", "Segoe UI", sans-serif;
  font-size: clamp(1.25rem, 2.4vw, 1.55rem);
  font-weight: 600;
  color: var(--gold-soft);
}

.showcase-meta p:last-child {
  margin: 10px 0 0;
  font-size: 1.08rem;
  line-height: 1.75;
  color: rgba(247, 241, 223, 0.78);
}

@keyframes showcaseFadeIn {
  from {
    opacity: 0.6;
  }
  to {
    opacity: 1;
  }
}

.showcase-dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 14px;
}

.showcase-dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  cursor: pointer;
  transition:
    width 180ms ease,
    background-color 180ms ease,
    opacity 180ms ease;
}

.showcase-dot.is-active {
  width: 34px;
  background: linear-gradient(135deg, #f4dfa0 0%, #d4af37 48%, #8a6611 100%);
}

.showcase-dot:focus-visible {
  outline: 2px solid rgba(243, 221, 140, 0.8);
  outline-offset: 2px;
}

.reviews {
  max-width: 1180px;
  margin: 8px auto 0;
  padding: 26px 0 84px;
}

.reviews-grid {
  max-width: 1060px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.review-card {
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(20, 20, 20, 0.92), rgba(8, 8, 8, 0.98));
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.32);
  padding: 22px 20px 20px;
}

.review-stars {
  margin: 0;
  color: #f4dfa0;
  font-size: 1rem;
  letter-spacing: 0.08em;
}

.review-text {
  margin: 12px 0 0;
  font-size: 1rem;
  line-height: 1.72;
  color: rgba(247, 241, 223, 0.82);
}

.review-author {
  margin: 14px 0 0;
  color: rgba(243, 221, 140, 0.92);
  font-weight: 600;
  font-size: 0.93rem;
  letter-spacing: 0.02em;
}

.availability {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0 92px;
}

.availability-card {
  max-width: 1060px;
  margin: 0 auto;
  border: 1px solid rgba(212, 175, 55, 0.26);
  border-radius: 26px;
  background:
    radial-gradient(circle at 8% 0%, rgba(212, 175, 55, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(18, 18, 18, 0.94), rgba(8, 8, 8, 0.98));
  box-shadow: 0 26px 55px rgba(0, 0, 0, 0.35);
  padding: 30px 30px 32px;
}

.availability-card h2 {
  margin-top: 0;
}

.availability-text {
  margin: 16px 0 0;
  font-size: 1.06rem;
  line-height: 1.78;
  color: rgba(247, 241, 223, 0.84);
}

.availability-text-secondary {
  color: rgba(247, 241, 223, 0.74);
}

.availability-actions {
  margin-top: 24px;
  display: flex;
  justify-content: center;
}

.contact {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0 96px;
}

.contact-card {
  max-width: 1060px;
  margin: 0 auto;
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(16, 16, 16, 0.94), rgba(8, 8, 8, 0.98));
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.33);
  padding: 28px 30px 30px;
  text-align: center;
}

.contact-card h2 {
  margin-top: 0;
}

.contact-text {
  margin: 14px auto 0;
  max-width: 64ch;
  color: rgba(247, 241, 223, 0.8);
  line-height: 1.75;
}

.contact-email {
  display: inline-block;
  margin-top: 16px;
  color: #f4dfa0;
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: opacity 160ms ease;
}

.contact-email:hover,
.contact-email:focus-visible {
  opacity: 0.85;
}

@media (max-width: 900px) {
  .page-shell {
    padding: 20px;
  }

  .hero {
    min-height: auto;
    padding-top: 26px;
  }

  .hero-panel {
    padding: 44px 30px;
  }

  .content {
    padding-top: 128px;
  }

  .topbar {
    width: 100%;
  }

  .topbar-inner {
    padding: 10px 20px;
  }

  .brand {
    margin-left: 40px;
  }

  h1 {
    max-width: none;
  }

  .showcase {
    padding-top: 20px;
  }

  .showcase-controls {
    position: static;
    margin-bottom: 12px;
    justify-content: flex-end;
  }

  .phone-gallery {
    width: min(100%, 640px);
  }

  .theme-gallery {
    grid-template-columns: 1fr;
    width: min(100%, 680px);
  }

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

  .availability {
    padding-bottom: 72px;
  }

  .availability-card {
    padding: 26px 24px 28px;
  }

  .contact {
    padding-bottom: 72px;
  }

  .contact-card {
    padding: 24px 22px 26px;
  }
}

@media (max-width: 560px) {
  .brand {
    align-items: flex-start;
  }

  .content {
    padding-top: 116px;
  }

  .topbar-inner {
    padding: 8px 14px;
  }

  .brand {
    margin-left: 16px;
  }

  .brand-copy {
    gap: 6px;
  }

  .brand-title {
    font-size: 1.35rem;
  }

  .hero-panel {
    border-radius: 24px;
  }

  .hero-panel {
    padding: 30px 22px;
  }

  h1 {
    max-width: 13ch;
    font-size: clamp(2rem, 8.8vw, 2.9rem);
  }

  .promo-label {
    font-size: 0.8rem;
    padding: 8px 12px;
    gap: 8px;
  }

  .hero-text {
    font-size: 1rem;
    line-height: 1.7;
  }

  .cta-button {
    width: 100%;
  }

  .showcase-slide {
    border-radius: 24px;
  }

  .showcase-meta {
    padding: 18px 18px 20px;
  }

  .showcase-arrow {
    width: 42px;
    height: 42px;
  }

  .phone-gallery {
    grid-template-columns: 1fr;
    width: min(100%, 320px);
  }

  .showcase-media-themes {
    padding: 16px;
  }

  .reviews {
    padding-top: 16px;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .review-card {
    border-radius: 18px;
    padding: 18px 16px;
  }

  .availability {
    padding-bottom: 56px;
  }

  .availability-card {
    border-radius: 20px;
    padding: 20px 16px 22px;
  }

  .availability-text {
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .contact {
    padding-bottom: 56px;
  }

  .contact-card {
    border-radius: 20px;
    padding: 20px 16px 22px;
  }

  .contact-text {
    font-size: 0.96rem;
    line-height: 1.68;
  }

  .contact-email {
    font-size: 1rem;
  }
}
