/* ============================================================
   Diamond UK — Global Styles
   ============================================================ */

:root {
  --gold: #c9a84c;
  --gold-light: #e0c06b;
  --dark: #0d0d0d;
  --dark-2: #161616;
  --dark-3: #1f1f1f;
  --dark-4: #2a2a2a;
  --text: #e8e8e8;
  --text-muted: #999;
  --border: #333;
  --radius: 8px;
  --shadow: 0 4px 20px rgba(0,0,0,0.5);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--dark);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

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

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

/* ── HEADER ── */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13,13,13,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 20px;
}

.logo {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 2px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
}

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

nav a {
  padding: 8px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}

nav a:hover, nav a.active {
  color: var(--gold);
  background: rgba(201,168,76,0.08);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.25s;
  border: none;
  text-transform: uppercase;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark);
}

.btn-gold:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201,168,76,0.35);
}

.btn-outline {
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
}

.btn-outline:hover {
  background: rgba(201,168,76,0.1);
}

.btn-lg { padding: 14px 36px; font-size: 1rem; }

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
  font-size: 1.5rem;
}

/* ── HERO ── */
.hero {
  position: relative;
  overflow: hidden;
  padding: 90px 24px;
  text-align: center;
  background: linear-gradient(180deg, #111 0%, var(--dark) 100%);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(201,168,76,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero h1 span { color: var(--gold); }

.hero p {
  max-width: 560px;
  margin: 0 auto 36px;
  color: var(--text-muted);
  font-size: 1.05rem;
}

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

/* ── SECTION ── */
.section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 24px;
}

.section-title {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.section-title span { color: var(--gold); }

.section-sub {
  color: var(--text-muted);
  margin-bottom: 40px;
  font-size: 0.95rem;
}

.divider {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 12px 0 32px;
  border-radius: 2px;
}

/* ── PROFILE GRID ── */
.profile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

.profile-card {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
}

.profile-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.6);
  border-color: var(--gold);
}

.profile-card-img {
  position: relative;
  aspect-ratio: 3/4;
  background: var(--dark-3);
  overflow: hidden;
}

.profile-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.profile-card:hover .profile-card-img img {
  transform: scale(1.04);
}

.profile-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
}

.profile-card-body {
  padding: 14px;
}

.profile-name {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.profile-location {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.profile-stats {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.profile-stat {
  font-size: 0.7rem;
  color: var(--text-muted);
  background: var(--dark-3);
  padding: 2px 8px;
  border-radius: 20px;
}

.profile-price {
  color: var(--gold);
  font-weight: 700;
  font-size: 0.9rem;
}

/* ── FILTER BAR ── */
.filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  align-items: center;
}

.filter-btn {
  padding: 6px 16px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: var(--dark-3);
  color: var(--text-muted);
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.2s;
}

.filter-btn:hover, .filter-btn.active {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.08);
}

.search-box {
  flex: 1;
  max-width: 300px;
  position: relative;
}

.search-box input {
  width: 100%;
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 8px 16px 8px 36px;
  color: var(--text);
  font-size: 0.85rem;
  outline: none;
  transition: border-color 0.2s;
}

.search-box input:focus { border-color: var(--gold); }

.search-box::before {
  content: '🔍';
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.75rem;
  pointer-events: none;
}

/* ── STATS BAR ── */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 60px 0;
}

.stat-item {
  background: var(--dark-2);
  padding: 30px 20px;
  text-align: center;
}

.stat-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
}

/* ── MEMBERSHIP CARDS ── */
.membership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.gents-membership-grid {
  max-width: 520px;
  margin: 0 auto;
}

.membership-card {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  transition: border-color 0.25s, transform 0.25s;
}

.membership-card.featured {
  border-color: var(--gold);
  background: linear-gradient(160deg, var(--dark-2), #1a1508);
}

.membership-card.featured::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--dark);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 1.5px;
  padding: 4px 14px;
  border-radius: 0 0 6px 6px;
}

.membership-card:hover { transform: translateY(-4px); }

.plan-name {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.plan-price {
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 4px;
}

.plan-price sup {
  font-size: 1.2rem;
  vertical-align: super;
  font-weight: 600;
}

.plan-period {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.plan-intro {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
}

.plan-features {
  list-style: none;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.plan-features li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}

/* ── BLOG ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.blog-card {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.25s, border-color 0.25s;
  display: block;
  color: inherit;
}

.blog-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
}

.blog-img {
  aspect-ratio: 16/9;
  background: var(--dark-3);
  overflow: hidden;
}

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

.blog-body { padding: 20px; }

.blog-tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
  margin-bottom: 8px;
}

.blog-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.4;
}

.blog-excerpt {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.blog-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  align-items: start;
}

.contact-info h2 { font-size: 1.8rem; font-weight: 800; margin-bottom: 16px; }

.contact-info p { color: var(--text-muted); margin-bottom: 24px; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

.contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}

.contact-item-text strong { display: block; font-size: 0.85rem; color: var(--gold); }
.contact-item-text span { font-size: 0.9rem; color: var(--text-muted); }

form { display: flex; flex-direction: column; gap: 16px; }

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

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  color: var(--text);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }

.form-group textarea { resize: vertical; min-height: 120px; }

.form-group select option { background: var(--dark-3); }

/* ── CHECKOUT / PAYMENT ── */
.checkout-container {
  max-width: 520px;
  margin: 0 auto;
  padding: 40px 24px;
}

.checkout-header {
  text-align: center;
  margin-bottom: 36px;
}

.checkout-header h1 { font-size: 1.8rem; font-weight: 800; margin-bottom: 8px; }
.checkout-header p { color: var(--text-muted); }

.checkout-card {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 20px;
}

.checkout-card h3 {
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.order-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}

.order-line:last-child { border-bottom: none; }

.order-line strong { color: var(--gold); }

#payment-element {
  margin-bottom: 20px;
}

#payment-message {
  color: #ff6b6b;
  font-size: 0.85rem;
  margin-top: 10px;
  display: none;
}

.secure-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 16px;
}

/* ── PROFILE DETAIL ── */
.profile-detail {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 24px;
}

.profile-detail-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 40px;
  align-items: start;
}

.profile-main-img {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--dark-3);
}

.profile-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-info h1 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.profile-info .subtitle {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.profile-info .description {
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.8;
}

.details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}

.detail-item strong {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2px;
}

.detail-item span { font-size: 0.9rem; }

.price-block {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 20px;
}

.price-block h3 {
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

.price-row:last-child { border-bottom: none; }

.price-row span:last-child { color: var(--gold); font-weight: 700; }

/* ── FOOTER ── */
footer {
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  padding: 48px 24px 24px;
  margin-top: 80px;
}

.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .logo { font-size: 1.3rem; margin-bottom: 12px; display: inline-block; }
.footer-brand p { font-size: 0.85rem; color: var(--text-muted); max-width: 260px; }

.footer-col h4 {
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.footer-col ul li a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: var(--gold); }

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: var(--text-muted); transition: color 0.2s; }
.footer-legal a:hover { color: var(--gold); }

/* ── ABOUT ── */
.about-hero {
  background: linear-gradient(135deg, var(--dark-2), var(--dark));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 60px 48px;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: '◆';
  position: absolute;
  right: -20px;
  top: -20px;
  font-size: 12rem;
  color: rgba(201,168,76,0.04);
  pointer-events: none;
}

.about-hero h1 { font-size: 2.5rem; font-weight: 900; margin-bottom: 16px; }
.about-hero p { color: var(--text-muted); max-width: 600px; font-size: 1.05rem; line-height: 1.8; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.value-card {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color 0.25s;
}

.value-card:hover { border-color: var(--gold); }

.value-icon {
  font-size: 2rem;
  margin-bottom: 14px;
}

.value-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.value-card p { font-size: 0.85rem; color: var(--text-muted); }

/* ── TOAST ── */
.toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--dark-3);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  padding: 14px 20px;
  font-size: 0.85rem;
  z-index: 999;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.35s;
}

.toast.show { transform: translateY(0); opacity: 1; }

/* ── SUCCESS PAGE ── */
.success-container {
  max-width: 480px;
  margin: 80px auto;
  padding: 0 24px;
  text-align: center;
}

.success-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(201,168,76,0.15);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 24px;
}

.success-container h1 { font-size: 2rem; font-weight: 800; margin-bottom: 12px; }
.success-container p { color: var(--text-muted); margin-bottom: 32px; }

/* ── MOBILE ── */
@media (max-width: 768px) {
  nav { display: none; position: absolute; top: 70px; left: 0; right: 0; background: var(--dark-2); flex-direction: column; padding: 16px; border-bottom: 1px solid var(--border); }
  nav.open { display: flex; }
  .hamburger { display: block; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .profile-detail-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .header-inner { position: relative; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .details-grid { grid-template-columns: 1fr; }
  .membership-grid { grid-template-columns: 1fr; }
}
