@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800&family=Manrope:wght@300;400;500;700&display=swap');

:root {
  --gold: #c8a96e;
  --gold-dim: #3a2e1a;
  --bg: #0a0a0a;
  --bg-card: #111;
  --bg-card-2: #161616;
  --border: #1e1e1e;
  --border-2: #2a2a2a;
  --text: #f0ede6;
  --text-dim: #888;
  --text-dimmer: #707070;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Manrope', sans-serif;
  line-height: 1.6;
}

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

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 32px;
}

.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

/* NAV */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

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

.nav-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--text);
}

.nav-cta {
  font-size: 12px;
  font-weight: 500;
  color: var(--gold);
  border: 1px solid var(--gold-dim);
  padding: 7px 16px;
  border-radius: 2px;
  transition: background 0.2s, border-color 0.2s;
}

.nav-cta:hover {
  background: var(--gold-dim);
  border-color: var(--gold);
}

/* HERO */
.hero {
  display: flex;
  align-items: center;
  padding: 100px 0 48px;
  padding-top: calc(60px + 56px);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(200,169,110,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 32px;
}

.hero-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(40px, 7vw, 80px);
  font-weight: 800;
  line-height: 1.0;
  margin-bottom: 16px;
  max-width: 700px;
}

.hero-sub {
  font-size: 16px;
  color: var(--text-dim);
  font-weight: 300;
  max-width: 480px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: #0a0a0a;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 2px;
  transition: opacity 0.2s;
}

.btn-primary:hover { opacity: 0.85; }

/* SERVICES */
.services {
  padding: 40px 0;
  border-top: 1px solid var(--border);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.service-card {
  background: var(--bg);
  padding: 28px;
  transition: background 0.2s;
}

.service-card:hover { background: var(--bg-card); }

.service-icon {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.service-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-desc {
  font-size: 14px;
  color: var(--text-dim);
  font-weight: 400;
  line-height: 1.7;
}

/* STYLE */
.style-section {
  padding: 40px 0;
  border-top: 1px solid var(--border);
}

.style-intro {
  font-size: 15px;
  color: var(--text-dim);
  font-weight: 400;
  margin-bottom: 24px;
  max-width: 480px;
}

.style-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.style-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-top: 2px solid var(--gold);
  padding: 20px;
  border-radius: 2px;
}

.style-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}

.style-desc {
  font-size: 15px;
  color: var(--text-dim);
  font-weight: 400;
  line-height: 1.7;
}

/* PRICING */
.pricing {
  padding: 64px 0;
  border-top: 1px solid var(--border);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 20px;
  border-radius: 2px;
  position: relative;
}

.price-card.featured {
  border-color: var(--gold);
  background: #131109;
}

.price-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.price-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dim);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.price-amount {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.price-per {
  font-size: 12px;
  color: var(--text-dimmer);
  font-weight: 300;
  margin-bottom: 16px;
  margin-top: 4px;
}

.price-desc {
  font-size: 15px;
  color: var(--text-dim);
  font-weight: 400;
  line-height: 1.6;
}

/* CTA */
.cta-section {
  padding: 32px 0;
  border-top: 1px solid var(--border);
  text-align: center;
}

.cta-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  margin-bottom: 16px;
}

.cta-sub {
  font-size: 16px;
  color: var(--text-dim);
  font-weight: 300;
  margin-bottom: 36px;
}

/* FOOTER */
.footer {
  border-top: 1px solid var(--border);
  padding: 28px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 800;
}

.footer-note {
  font-size: 12px;
  color: var(--text-dimmer);
  font-weight: 300;
}

/* NAV LINKS */
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text-dim);
  transition: color 0.2s;
}

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

/* OUTLINE BUTTON */
.btn-outline {
  display: inline-block;
  color: var(--gold);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 2px;
  border: 1px solid var(--gold);
  transition: background 0.2s;
  white-space: nowrap;
}

.btn-outline:hover { background: rgba(200,169,110,0.08); }

/* RATES TEASER */
.rates-teaser {
  padding: 24px 0;
  border-top: 1px solid var(--border);
}

.rates-teaser-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.rates-teaser-text {
  font-size: 17px;
  color: var(--text-dim);
  font-weight: 300;
  max-width: 480px;
  line-height: 1.7;
}

/* PAGE HEADER (rates page) */
.page-header {
  padding: 96px 0 36px;
  border-bottom: 1px solid var(--border);
}

.page-header-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.page-header-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.0;
  margin-bottom: 12px;
}

.page-header-sub {
  font-size: 16px;
  color: var(--text-dim);
  font-weight: 400;
  max-width: 480px;
  line-height: 1.7;
}

/* RATES SECTION HEADER */
.rates-section {
  padding: 28px 0;
  border-top: 1px solid var(--border);
}

.rates-section-header {
  margin-bottom: 24px;
}

.rates-section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}

.rates-section-sub {
  font-size: 14px;
  color: var(--text-dim);
  font-weight: 400;
  max-width: 520px;
  line-height: 1.7;
}

/* PRICE FEATURES LIST */
.price-features {
  list-style: none;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.price-features li {
  font-size: 14px;
  color: var(--text-dim);
  font-weight: 400;
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}

.price-features li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 11px;
  top: 1px;
}

/* INCLUDED BANNER */
.included-section {
  padding: 36px 0;
  border-top: 1px solid var(--border);
  background: var(--bg-card);
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 16px;
}

.included-item-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
}

.included-item-desc {
  font-size: 14px;
  color: var(--text-dim);
  font-weight: 400;
  line-height: 1.6;
}

/* HERO CTAs */
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* TOPICS */
.topics-section {
  padding: 40px 0;
  border-top: 1px solid var(--border);
}

.topics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.topic-item {
  background: var(--bg);
  padding: 22px 20px;
  transition: background 0.2s;
}

.topic-item:hover { background: var(--bg-card); }

.topic-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
}

.topic-desc {
  font-size: 13px;
  color: var(--text-dim);
  font-weight: 300;
  line-height: 1.7;
}

/* SECTION SUB */
.section-sub {
  font-size: 15px;
  color: var(--text-dim);
  font-weight: 300;
  max-width: 480px;
  line-height: 1.6;
  margin-bottom: 24px;
}

/* ARGUMENT LIBRARY */
.arguments-section {
  padding: 40px 0;
  border-top: 1px solid var(--border);
}

.argument-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.argument-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 20px;
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s;
}

.argument-card:hover { border-color: var(--border-2); }

.argument-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.argument-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 10px;
}

.argument-desc {
  font-size: 13px;
  color: var(--text-dim);
  font-weight: 300;
  line-height: 1.6;
  flex: 1;
  margin-bottom: 14px;
}

.argument-link {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold);
  text-transform: uppercase;
  transition: opacity 0.2s;
  align-self: flex-start;
}

.argument-link:hover { opacity: 0.7; }

/* GUIDES */
.guides-section {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  background: var(--bg-card);
}

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

.guide-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-top: 2px solid var(--gold);
  padding: 20px;
  border-radius: 2px;
}

.guide-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.guide-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.3;
}

.guide-desc {
  font-size: 13px;
  color: var(--text-dim);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 16px;
}

.guide-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dimmer);
}

/* EDITING SERVICE BANNER */
.editing-banner {
  padding: 32px 0;
  border-top: 1px solid var(--border);
  background: #0d0b07;
}

.editing-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.editing-banner-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.editing-banner-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
  max-width: 500px;
}

.editing-banner-sub {
  font-size: 14px;
  color: var(--text-dim);
  font-weight: 300;
  max-width: 460px;
  line-height: 1.7;
}

/* FOOTER LINKS */
.footer-links {
  display: flex;
  gap: 20px;
  align-items: center;
}

.footer-link {
  font-size: 12px;
  color: var(--text-dimmer);
  font-weight: 300;
  transition: color 0.2s;
}

.footer-link:hover { color: var(--text-dim); }

/* VALUE SECTION (rates page) */
.value-section {
  padding: 28px 0;
  border-top: 1px solid var(--border);
  background: var(--bg-card);
}

.value-block--divided {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

/* CONTACT PAGE */
.contact-section {
  padding: 52px 0;
  border-top: 1px solid var(--border);
}

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

.contact-channels {
  display: flex;
  flex-direction: column;
}

.contact-channel {
  display: block;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  transition: opacity 0.2s;
}

.contact-channel:hover { opacity: 0.75; }

.contact-channel-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.contact-channel-value {
  font-size: 15px;
  color: var(--text);
  font-weight: 400;
}

.contact-channel-hint {
  font-size: 12px;
  color: var(--text-dimmer);
  font-weight: 300;
  margin-top: 3px;
}

.contact-note {
  margin-top: 24px;
  font-size: 14px;
  color: var(--text-dim);
  font-weight: 400;
  line-height: 1.7;
  padding: 16px;
  background: var(--bg-card);
  border-left: 2px solid var(--gold);
}

.contact-form-wrap {
  display: flex;
  flex-direction: column;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 16px;
}

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

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

.form-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.form-input {
  background: var(--bg-card);
  border: 1px solid var(--border-2);
  color: var(--text);
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 400;
  padding: 11px 14px;
  border-radius: 2px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

.form-input::placeholder { color: var(--text-dimmer); }

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

.form-select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  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 d='M1 1l5 5 5-5' stroke='%23707070' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

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

.form-submit {
  align-self: flex-start;
  cursor: pointer;
  border: none;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .services-grid { grid-template-columns: 1fr; }
  .style-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .rates-teaser-inner { flex-direction: column; align-items: flex-start; }
  .included-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { flex-direction: column; gap: 12px; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
  .hero-title { font-size: 48px; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .topics-grid { grid-template-columns: repeat(2, 1fr); }
  .argument-grid { grid-template-columns: 1fr; }
  .guides-grid { grid-template-columns: repeat(2, 1fr); }
  .editing-banner-inner { flex-direction: column; align-items: flex-start; }
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
}