:root {
  --bg: #050816;
  --bg-alt: #070b1f;
  --card: #0b1024;
  --accent: #ffb648;
  --accent-soft: rgba(255, 182, 72, 0.18);
  --text: #f5f5ff;
  --muted: #9ca3af;
  --border: rgba(148, 163, 184, 0.3);
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.85);
  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-pill: 999px;
  --transition-fast: 0.18s ease-out;
  --transition-med: 0.25s ease-out;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: radial-gradient(circle at top, #111827 0, #020617 40%, #000 100%);
  color: var(--text);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-bottom: 3rem;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -200px -40%;
  background:
    radial-gradient(circle at top left, rgba(56, 189, 248, 0.09), transparent 55%),
    radial-gradient(circle at top right, rgba(244, 114, 182, 0.14), transparent 55%),
    radial-gradient(circle at bottom, rgba(94, 234, 212, 0.06), transparent 60%);
  opacity: 0.78;
  pointer-events: none;
  z-index: -2;
}

.navbar {
  position: fixed;
  top: 0.75rem;
  left: 0;
  right: 0;
  z-index: 20;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  background: linear-gradient(
      120deg,
      rgba(15, 23, 42, 0.96),
      rgba(15, 23, 42, 0.92)
    );
  box-shadow:
    0 18px 45px rgba(15, 23, 42, 0.95),
    0 0 0 1px rgba(148, 163, 184, 0.25);
  backdrop-filter: blur(22px);
}

.logo {
  font-weight: 600;
  letter-spacing: 0.03em;
  font-size: 1.08rem;
}

.logo span {
  color: var(--accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.95rem;
}

.nav-links a {
  position: relative;
  color: var(--muted);
  transition: color var(--transition-fast);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.4rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #38bdf8, #f97316, #a855f7);
  transform-origin: center;
  transform: scaleX(0);
  transition: transform var(--transition-fast);
}

.nav-links a:hover {
  color: var(--text);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.hero-content {
  padding-top: 6.5rem;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 3.2rem;
}

.hero-text h1 {
  font-size: clamp(2.3rem, 3.1vw + 1.5rem, 3.3rem);
  line-height: 1.12;
  margin: 1.1rem 0 1rem;
}

.hero-text h1 span {
  background: linear-gradient(135deg, #fbbf24, #fb923c, #f97316);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-text p {
  color: var(--muted);
  max-width: 34rem;
  font-size: 0.98rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.25rem 0.9rem 0.25rem 0.35rem;
  border-radius: 999px;
  background: radial-gradient(circle at left, rgba(56, 189, 248, 0.4), #020617);
  color: #e5e7eb;
  font-size: 0.8rem;
  border: 1px solid rgba(56, 189, 248, 0.35);
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.8);
}

.badge::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: radial-gradient(circle, #22c55e 0, #15803d 55%, transparent 70%);
  box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.25);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 1.6rem 0 1.4rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.75rem 1.4rem;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color var(--transition-med), color var(--transition-med),
    box-shadow var(--transition-med), transform var(--transition-fast),
    border-color var(--transition-fast);
}

.btn.primary {
  background: linear-gradient(135deg, #f97316, #facc15);
  color: #111827;
  box-shadow: 0 18px 40px rgba(248, 150, 30, 0.55);
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 24px 55px rgba(248, 150, 30, 0.7);
}

.btn.ghost {
  background: rgba(15, 23, 42, 0.8);
  color: var(--text);
  border-color: rgba(148, 163, 184, 0.5);
}

.btn.ghost:hover {
  background: rgba(15, 23, 42, 1);
  border-color: rgba(248, 150, 30, 0.65);
}

.btn.small {
  padding: 0.55rem 1.15rem;
  font-size: 0.85rem;
}

.btn.full {
  width: 100%;
}

.social-proof {
  margin-top: 0.6rem;
  font-size: 0.88rem;
  color: var(--muted);
}

.social-proof .link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 0.3rem;
  font-size: 0.85rem;
  color: #7dd3fc;
}

.social-proof .link::after {
  content: "↗";
  font-size: 0.8em;
}

.hero-photo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-main-photo {
  width: min(320px, 100%);
  border-radius: 24px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.95);
}

.section {
  padding: 4.5rem 0;
}

.section-alt {
  background: radial-gradient(circle at top, #020617, #020617);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

.section-header h2 {
  font-size: 1.8rem;
  margin-bottom: 0.6rem;
}

.section-header p {
  font-size: 0.96rem;
  color: var(--muted);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.2fr);
  gap: 2.3rem;
  align-items: flex-start;
}

.section-text h2 {
  font-size: 1.7rem;
  margin-bottom: 0.6rem;
}

.section-text p {
  font-size: 0.95rem;
  color: var(--muted);
}

.section-text p + p {
  margin-top: 0.5rem;
}

.section-card {
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.98));
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.6rem;
  border: 1px solid rgba(148, 163, 184, 0.45);
  box-shadow: var(--shadow-soft);
}

.section-card h3 {
  margin-top: 0;
  margin-bottom: 0.8rem;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.94rem;
}

.check-list li {
  color: var(--muted);
  margin-bottom: 0.4rem;
}

.cards-grid {
  display: grid;
  gap: 1.7rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.note-card {
  background: radial-gradient(circle at top, rgba(248, 150, 30, 0.16), #020617);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.5rem;
  border: 1px solid rgba(248, 150, 30, 0.4);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.note-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.1rem;
}

.note-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.note-card ul {
  margin: 0.2rem 0 0.6rem;
  padding-left: 1.1rem;
  font-size: 0.88rem;
  color: var(--muted);
}

.note-card li + li {
  margin-top: 0.1rem;
}

.note-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  margin-top: auto;
}

.price {
  font-weight: 600;
  color: var(--accent);
  font-size: 0.95rem;
}

.note-info {
  margin-top: 1.6rem;
  font-size: 0.85rem;
  color: var(--muted);
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.gallery-item {
  border-radius: var(--radius-md);
  min-height: 180px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.45);
  box-shadow: var(--shadow-soft);
  background: #020617;
}

.gallery-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.contact-options {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.contact-note {
  font-size: 0.85rem;
  color: var(--muted);
}

.footer {
  border-top: 1px solid rgba(15, 23, 42, 0.9);
  background: #020617;
  padding: 1.2rem 0 1.5rem;
  margin-top: 1.5rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.footer a {
  color: #7dd3fc;
}

@media (max-width: 960px) {
  .hero-content {
    grid-template-columns: minmax(0, 1.3fr);
    padding-top: 6rem;
  }

  .hero-photo {
    order: -1;
    justify-content: center;
  }

  .two-column {
    grid-template-columns: minmax(0, 1fr);
  }

  .cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .nav-inner {
    padding-inline: 1rem;
  }

  .nav-links {
    gap: 0.9rem;
    font-size: 0.78rem;
  }

  .hero-text h1 {
    font-size: 2.1rem;
  }

  .cards-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .gallery-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .section {
    padding: 3.5rem 0;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}


