/* ================================================================
   roganventer.co.za -- hand-rolled CSS
   Luxury dark, glass, metallic. No framework, no build step.
   ================================================================ */

:root {
  --bg:            #0A0A0C;
  --bg-raised:     rgba(255, 255, 255, 0.025);
  --border:        rgba(255, 255, 255, 0.07);
  --border-strong: rgba(255, 255, 255, 0.14);
  --text:          #F5F5F7;
  --text-muted:    rgba(245, 245, 247, 0.62);
  --text-dim:      rgba(245, 245, 247, 0.42);
  --metal-light:   #F8F8FB;
  --metal-mid:     #C8C8D0;
  --metal-dark:    #7A7A82;
  --dot-green:     #9FE0A0;
  --dot-amber:     #E0C96B;
  --dot-red:       #E88B8B;
  --display: 'Fraunces', Georgia, serif;
  --sans:    'Satoshi', -apple-system, system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Film grain overlay -- kills gradient banding, adds tactile depth */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.wrap {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ---------- NAV ---------- */

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 10, 12, 0.55);
  backdrop-filter: saturate(180%) blur(24px);
  -webkit-backdrop-filter: saturate(180%) blur(24px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wordmark {
  font-family: var(--display);
  font-variation-settings: "opsz" 144, "wght" 300, "SOFT" 30;
  font-size: 22px;
  letter-spacing: 0.02em;
  background: linear-gradient(180deg, var(--metal-light) 0%, var(--metal-mid) 55%, var(--metal-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-decoration: none;
}

.wordmark span {
  font-style: italic;
  font-variation-settings: "opsz" 144, "wght" 300, "SOFT" 100;
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.01em;
  transition: color 180ms ease;
}

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

.nav-cta {
  font-size: 13px;
  font-weight: 500;
  padding: 10px 22px;
  border-radius: 100px;
  background: linear-gradient(180deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.04) 100%);
  border: 1px solid var(--border-strong);
  color: var(--text);
  text-decoration: none;
  transition: all 200ms ease;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.nav-cta:hover {
  background: linear-gradient(180deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0.06) 100%);
  border-color: rgba(255,255,255,0.22);
}

/* ---------- HERO ---------- */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 140px 0 80px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
}

@media (min-width: 960px) {
  .hero-grid {
    grid-template-columns: 1.3fr 0.9fr;
    gap: 80px;
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 32px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--border);
  border-radius: 100px;
  backdrop-filter: blur(10px);
  opacity: 0;
  animation: rise 900ms 100ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.eyebrow.dot-green::before { background: var(--dot-green); box-shadow: 0 0 12px rgba(159, 224, 160, 0.6); }
.eyebrow.dot-amber::before { background: var(--dot-amber); box-shadow: 0 0 12px rgba(224, 201, 107, 0.6); }
.eyebrow.dot-red::before   { background: var(--dot-red);   box-shadow: 0 0 12px rgba(232, 139, 139, 0.6); }

.headline {
  font-family: var(--display);
  font-variation-settings: "opsz" 144, "wght" 300, "SOFT" 40;
  font-size: clamp(44px, 7vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  margin-bottom: 32px;
  background: linear-gradient(175deg, #FFFFFF 0%, #EAEAEF 25%, #C0C0C8 55%, #8A8A92 85%, #6B6B73 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0;
  animation: rise 1000ms 200ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.headline em {
  font-style: italic;
  font-variation-settings: "opsz" 144, "wght" 300, "SOFT" 100;
}

.subhead {
  font-size: 19px;
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 540px;
  margin-bottom: 44px;
  opacity: 0;
  animation: rise 1000ms 350ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: rise 1000ms 500ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.btn {
  font-size: 15px;
  font-weight: 500;
  padding: 16px 32px;
  border-radius: 100px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 250ms cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(180deg, #EDEDF0 0%, #C8C8D0 100%);
  color: #0A0A0C;
  border: 1px solid rgba(255,255,255,0.3);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.6), 0 4px 20px rgba(200, 200, 208, 0.12);
}

.btn-primary:hover {
  background: linear-gradient(180deg, #FFFFFF 0%, #D5D5DD 100%);
  transform: translateY(-1px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.7), 0 8px 32px rgba(200, 200, 208, 0.22);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  border: 1px solid var(--border-strong);
  backdrop-filter: blur(10px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.25);
}

.btn .arrow { transition: transform 250ms ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* ---------- PRICING CARD (hero right side) ---------- */

.card {
  background: rgba(255, 255, 255, 0.028);
  border: 1px solid var(--border-strong);
  border-radius: 20px;
  padding: 36px;
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  position: relative;
  overflow: hidden;
  opacity: 0;
  animation: rise 1100ms 600ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 24px 60px rgba(0, 0, 0, 0.4);
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
}

.card-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 18px;
}

.tier-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.tier {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--border);
}

.tier:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.tier-name {
  font-family: var(--display);
  font-variation-settings: "opsz" 30, "wght" 400, "SOFT" 20;
  font-size: 19px;
  color: var(--text);
  margin-bottom: 4px;
}

.tier-desc {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.4;
}

.tier-price {
  font-family: var(--display);
  font-variation-settings: "opsz" 30, "wght" 300, "SOFT" 40;
  font-size: 22px;
  background: linear-gradient(180deg, var(--metal-light) 0%, var(--metal-mid) 60%, var(--metal-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  white-space: nowrap;
  margin-left: 20px;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-inner { padding: 16px 20px; }
  .wrap { padding: 0 20px; }
  .hero { padding: 120px 0 60px; }
  .cta-row { flex-direction: column; align-items: stretch; }
  .btn { justify-content: center; }
}

/* ================================================================
   Contact section
   ================================================================ */

.contact-section {
  padding: 120px 0 80px;
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: start;
}

@media (min-width: 960px) {
  .contact-grid {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 80px;
  }
}

.section-heading {
  font-family: var(--display);
  font-variation-settings: "opsz" 144, "wght" 300, "SOFT" 40;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  background: linear-gradient(175deg, #FFFFFF 0%, #EAEAEF 25%, #C0C0C8 60%, #8A8A92 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-lede {
  font-size: 17px;
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 440px;
  margin-bottom: 40px;
}

.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-list li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.contact-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.contact-label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.contact-list a,
.contact-list span:not(.contact-label) {
  color: var(--text);
  font-size: 16px;
  text-decoration: none;
  transition: color 180ms ease;
}

.contact-list a:hover {
  color: var(--metal-light);
}

/* ---------- Form ---------- */

.contact-form-wrap {
  background: rgba(255, 255, 255, 0.028);
  border: 1px solid var(--border-strong);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 24px 60px rgba(0, 0, 0, 0.4);
}

.contact-form-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}

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

@media (min-width: 640px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-form label > span {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 500;
}

.contact-form label > span small {
  text-transform: none;
  letter-spacing: 0;
  font-size: 11px;
  opacity: 0.7;
  margin-left: 4px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form select,
.contact-form textarea {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 16px;
  color: var(--text);
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.4;
  transition: all 180ms ease;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
  font-family: var(--sans);
}

.contact-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%23c8c8d0' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' d='M1 1.5l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
  cursor: pointer;
}

.contact-form select option {
  background: #14141a;
  color: var(--text);
}

.contact-form input:hover,
.contact-form select:hover,
.contact-form textarea:hover {
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(255, 255, 255, 0.14);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.06);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(245, 245, 247, 0.3);
}

.contact-form button[type="submit"] {
  align-self: flex-start;
  margin-top: 8px;
  padding: 16px 36px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  font-family: var(--sans);
}

/* Honeypot — hidden from humans, visible to bots */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

/* ---------- Alerts ---------- */

.alert {
  padding: 16px 20px;
  border-radius: 12px;
  margin-bottom: 24px;
  font-size: 14px;
  line-height: 1.5;
  border: 1px solid;
  backdrop-filter: blur(10px);
}

.alert-ok {
  background: rgba(159, 224, 160, 0.08);
  border-color: rgba(159, 224, 160, 0.25);
  color: #C8E8C9;
}

.alert-err {
  background: rgba(232, 139, 139, 0.08);
  border-color: rgba(232, 139, 139, 0.25);
  color: #F0C8C8;
}

/* ---------- Footer ---------- */

.site-footer {
  padding: 60px 0 40px;
  border-top: 1px solid var(--border);
  margin-top: 80px;
}

.footer-tagline {
  font-family: var(--display);
  font-variation-settings: "opsz" 30, "wght" 300, "SOFT" 30;
  font-size: 18px;
  color: var(--text-muted);
  max-width: 500px;
  margin-bottom: 20px;
}

.footer-meta {
  font-size: 13px;
  color: var(--text-dim);
}

.footer-meta a {
  color: var(--text-dim);
  text-decoration: none;
  transition: color 180ms ease;
}

.footer-meta a:hover {
  color: var(--text-muted);
}

/* ---------- Draft preview banner ---------- */

.draft-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: #E0C96B;
  color: #0A0A0C;
  text-align: center;
  padding: 10px;
  font-size: 13px;
  font-weight: 500;
}

.draft-banner a {
  color: #0A0A0C;
  text-decoration: underline;
}

/* ---------- Mobile tweaks for new sections ---------- */

@media (max-width: 720px) {
  .contact-section { padding: 80px 0 60px; }
  .contact-form-wrap { padding: 28px; }
  .site-footer { padding: 40px 0 30px; margin-top: 60px; }
}
