/*
 Theme Name: 7SKY Luxury Premium
 Theme URI: https://7skyluxury.com
 Author: Svetlana (with AI assistance)
 Description: Dark + gold premium one-page theme for 7SKY LUXURY.
 Version: 1.0
 Text Domain: 7skyluxury
*/

:root {
  --bg-dark: #05070B;
  --bg-card: #101623;
  --accent-gold: #C9A56A;
  --accent-soft: #E1D3A0;
  --text-main: #F5F5F5;
  --text-muted: #A7A7B3;
  --border-soft: #1c2230;
  --radius-lg: 16px;
  --radius-md: 12px;
  --shadow-soft: 0 18px 40px rgba(0,0,0,0.6);
  --max-width: 1120px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Inter", system-ui, sans-serif;
  background: radial-gradient(circle at top left, #111725 0, #05070B 45%, #020308 100%);
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent-gold); text-decoration: none; }
a:hover { text-decoration: underline; }

.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: linear-gradient(to bottom, rgba(5,7,11,0.98), rgba(5,7,11,0.8), transparent);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.nav {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(201,165,106,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 30% 20%, #E1D3A0 0, #C9A56A 32%, #151826 80%);
  box-shadow: 0 0 18px rgba(201,165,106,0.5);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #05070B;
}

.brand-text-main {
  font-family: "Playfair Display", serif;
  font-size: 18px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.brand-text-sub {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-muted);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.nav-link {
  font-size: 13px;
  color: var(--text-muted);
  cursor: pointer;
}

.nav-link a {
  color: var(--text-muted);
  text-decoration: none;
}

.nav-link a:hover {
  text-decoration: underline;
}

main.site-main { flex: 1; }

.section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 40px 20px 32px;
}

/* HERO */

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.9fr);
  gap: 40px;
  padding-top: 52px;
  padding-bottom: 48px;
  align-items: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(201,165,106,0.35);
  background: rgba(11,15,24,0.9);
  font-size: 11px;
  color: var(--accent-soft);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(32px, 4vw, 40px);
  line-height: 1.15;
  margin-bottom: 14px;
}

.hero-subtitle {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 540px;
  line-height: 1.6;
  margin-bottom: 22px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 4px;
}

.hero-badge {
  font-size: 11px;
  color: var(--text-muted);
}

.hero-card {
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at 0 0, rgba(201,165,106,0.18) 0, #05070B 55%);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow-soft);
  padding: 20px 18px 16px;
  position: relative;
  overflow: hidden;
}

.hero-card-tagline {
  font-size: 11px;
  color: var(--accent-soft);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.hero-card-title {
  font-family: "Playfair Display", serif;
  font-size: 18px;
  margin-bottom: 10px;
}

.hero-card-list {
  font-size: 13px;
  color: var(--text-muted);
  display: grid;
  row-gap: 4px;
  margin-bottom: 14px;
}

.hero-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 12px;
  color: var(--text-muted);
  gap: 10px;
  flex-wrap: wrap;
}

.hero-card-price span {
  color: var(--accent-gold);
  font-size: 15px;
  font-weight: 600;
}

/* Buttons */

.btn {
  border-radius: 999px;
  border: 1px solid rgba(201,165,106,0.7);
  background: linear-gradient(135deg, #C9A56A, #E1D3A0);
  color: #05070B;
  padding: 9px 18px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.55);
  cursor: pointer;
  white-space: nowrap;
}

.btn-outline {
  border-radius: 999px;
  border: 1px solid rgba(201,165,106,0.6);
  background: transparent;
  color: var(--accent-gold);
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: none;
  cursor: pointer;
  white-space: nowrap;
}

.btn-outline:hover {
  background: rgba(201,165,106,0.08);
  text-decoration: none;
}

.wa-button {
  border-radius: 999px;
  border: 1px solid rgba(37, 211, 102, 0.7);
  background: rgba(37, 211, 102, 0.12);
  color: #E1FFD6;
  padding: 7px 14px;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}

.wa-button span { font-size: 14px; }

/* Sections & cards */

.section-title {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  margin-bottom: 8px;
}

.section-subtitle {
  font-size: 14px;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 22px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.card {
  border-radius: var(--radius-md);
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  padding: 18px 16px 16px;
  box-shadow: 0 16px 34px rgba(0,0,0,0.5);
}

.card-tag {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent-soft);
  margin-bottom: 6px;
}

.card-title {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 8px;
}

.card-text {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 10px;
}

.card-list {
  font-size: 13px;
  color: var(--text-muted);
  list-style: none;
  padding-left: 0;
}

.card-list li {
  margin-bottom: 4px;
}

.card-list li::before {
  content: "• ";
  color: var(--accent-gold);
}

/* Why 7SKY */

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}

.list-check {
  font-size: 13px;
  color: var(--text-muted);
  list-style: none;
  padding-left: 0;
}

.list-check li {
  margin-bottom: 6px;
  display: flex;
  gap: 8px;
}

.list-check li::before {
  content: "✓";
  color: var(--accent-gold);
  margin-top: 1px;
  font-size: 11px;
}

/* Process */

.process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.step {
  border-radius: var(--radius-md);
  border: 1px dashed rgba(201,165,106,0.4);
  padding: 14px 13px;
  font-size: 13px;
  color: var(--text-muted);
  background: rgba(11,15,24,0.9);
}

.step-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin-bottom: 4px;
}

.step-title {
  font-weight: 500;
  margin-bottom: 4px;
  color: var(--text-main);
}

/* Contact */

.contact-wrapper {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(201,165,106,0.5);
  background: radial-gradient(circle at top right, rgba(201,165,106,0.22) 0, #05070B 55%);
  padding: 20px 18px 18px;
  box-shadow: var(--shadow-soft);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 22px;
}

.contact-info p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 10px;
  max-width: 420px;
}

.contact-channels {
  font-size: 13px;
  color: var(--text-muted);
}

.contact-channels b {
  color: var(--accent-soft);
}

.contact-form {
  display: grid;
  gap: 10px;
}

.field-label {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.field-input, .field-textarea, .field-select {
  width: 100%;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(5,7,11,0.92);
  padding: 9px 12px;
  font-size: 13px;
  color: var(--text-main);
  outline: none;
}

.field-textarea {
  border-radius: 12px;
  min-height: 80px;
  resize: vertical;
}

.field-input::placeholder, .field-textarea::placeholder {
  color: #666a77;
}

/* Footer */

footer.site-footer {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 16px 20px 18px;
  font-size: 11px;
  color: var(--text-muted);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

/* Responsive */

@media (max-width: 900px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
  }
  .grid-3 {
    grid-template-columns: minmax(0, 1fr);
  }
  .two-col {
    grid-template-columns: minmax(0, 1fr);
  }
  .contact-wrapper {
    grid-template-columns: minmax(0, 1fr);
  }
  .process {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .nav-actions { justify-content: flex-end; }
  .hero-subtitle { font-size: 14px; }
  .process { grid-template-columns: minmax(0, 1fr); }
}
