/* ============================================================
   SUBPOENA SUPREME — Legal Service. Theatrical Delivery.
   Mobile-first, standalone CSS
   ============================================================ */

/* --- RESET & BASE --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: #FAFAF4;
  color: #1A1A08;
  font-family: 'Lora', Georgia, serif;
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: #B8922A;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease, opacity 0.2s ease;
}

a:hover {
  color: #8a6a18;
}

a:focus-visible {
  outline: 2px solid #B8922A;
  outline-offset: 3px;
  border-radius: 2px;
}

ul, ol {
  list-style: none;
}

/* --- PORTFOLIO CREDIT BAR --- */
.portfolio-credit {
  background-color: #F5F5E8;
  border-bottom: 1px solid #DDD9C0;
  text-align: center;
  padding: 6px 16px;
  font-size: 0.75rem;
  color: #5C5C30;
  font-family: 'Lora', serif;
  font-style: italic;
}

.portfolio-credit a {
  color: #B8922A;
  font-style: italic;
  text-decoration: none;
}

.portfolio-credit a:hover {
  text-decoration: underline;
}

/* --- SITE HEADER --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(250, 250, 244, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #DDD9C0;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #1A1A08;
  flex-shrink: 0;
}

.logo:hover .logo-main {
  color: #B8922A;
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.logo-main {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #1A1A08;
  transition: color 0.2s ease;
  line-height: 1.2;
}

.logo-sub {
  font-family: 'Lora', serif;
  font-size: 0.65rem;
  color: #5C5C30;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
}

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

nav ul li a {
  color: #1A1A08;
  text-decoration: none;
  font-family: 'Lora', serif;
  font-size: 0.875rem;
  padding: 6px 12px;
  border-radius: 4px;
  transition: background-color 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

nav ul li a:hover {
  background-color: #F5F5E8;
  color: #B8922A;
}

nav ul li a.nav-cta {
  border: 1px solid #B8922A;
  color: #B8922A;
  padding: 6px 16px;
}

nav ul li a.nav-cta:hover {
  background-color: #B8922A;
  color: #FFFFFF;
}

@media (max-width: 640px) {
  nav ul li:not(:last-child) {
    display: none;
  }

  .logo-sub {
    display: none;
  }
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 3px;
  font-family: 'Lora', serif;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  letter-spacing: 0.03em;
}

.btn:focus-visible {
  outline: 2px solid #B8922A;
  outline-offset: 3px;
}

.btn-primary {
  background-color: #B8922A;
  color: #FFFFFF;
  border-color: #B8922A;
}

.btn-primary:hover {
  background-color: #8a6a18;
  color: #FFFFFF;
  border-color: #8a6a18;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(184, 146, 42, 0.25);
}

.btn-secondary {
  background-color: transparent;
  color: #1A1A08;
  border-color: #DDD9C0;
}

.btn-secondary:hover {
  background-color: #F5F5E8;
  color: #B8922A;
  border-color: #B8922A;
}

.btn-large {
  padding: 16px 36px;
  font-size: 1rem;
  letter-spacing: 0.04em;
}

/* --- HERO --- */
.hero {
  padding: 80px 20px 90px;
  text-align: center;
  border-bottom: 1px solid #DDD9C0;
}

.hero-inner {
  max-width: 800px;
  margin: 0 auto;
}

.hero-seal {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
  opacity: 0.85;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: #1A1A08;
  margin-bottom: 20px;
}

.hero h1 em {
  font-style: italic;
  color: #B8922A;
}

.hero-tagline {
  font-family: 'Lora', serif;
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-style: italic;
  color: #5C5C30;
  margin-bottom: 24px;
  letter-spacing: 0.01em;
}

.hero-sub {
  font-size: 1rem;
  color: #1A1A08;
  max-width: 640px;
  margin: 0 auto 40px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 24px;
}

.hero-disclaimer {
  font-size: 0.78rem;
  color: #5C5C30;
  font-style: italic;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.5;
}

.disclaimer-asterisk {
  color: #8B1A2E;
  font-style: normal;
  font-weight: 700;
  margin-right: 2px;
}

@media (min-width: 768px) {
  .hero {
    padding: 100px 40px 110px;
  }
}

/* --- RULE DIVIDER --- */
.rule-divider {
  padding: 0 20px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .rule-divider {
    padding: 0 40px;
  }
}

/* --- SHARED SECTION STYLES --- */
.section {
  padding: 80px 20px;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-inner--centered {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.section-label {
  font-family: 'Lora', serif;
  font-size: 0.72rem;
  font-weight: 600;
  color: #B8922A;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 16px;
  font-style: normal;
}

.section-label-light {
  color: rgba(221, 217, 192, 0.55);
}

.section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: #1A1A08;
  margin-bottom: 20px;
}

/* heading underline for centered sections */
.section-inner--centered h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background-color: #B8922A;
  margin: 16px auto 0;
}

.section-intro {
  font-size: 1rem;
  color: #5C5C30;
  max-width: 640px;
  line-height: 1.75;
  margin-bottom: 56px;
}

.section-intro-light {
  color: rgba(245, 245, 220, 0.6);
}

@media (min-width: 768px) {
  .section {
    padding: 100px 40px;
  }
}

/* --- DELIVERY METHODS --- */
.section-methods {
  background-color: #FFFFFF;
}

.methods-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border: 1px solid #DDD9C0;
  border-radius: 4px;
  overflow: hidden;
}

.method-card {
  padding: 32px 36px;
  border-bottom: 1px solid #DDD9C0;
  transition: background-color 0.2s ease;
  background-color: #FFFFFF;
}

.method-card:last-child {
  border-bottom: none;
}

.method-card:hover {
  background-color: #FAFAF4;
}

.method-card--premium {
  background-color: #FAFAF4;
}

.method-card--premium:hover {
  background-color: #F5F5E8;
}

.method-card--signature {
  border-left: 3px solid #B8922A;
}

.method-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 16px;
}

.method-icon {
  flex-shrink: 0;
  padding-top: 4px;
}

.method-title-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.method-tier {
  font-family: 'Lora', serif;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 2px 8px;
  border-radius: 2px;
  display: inline-block;
  width: fit-content;
}

.method-tier--standard {
  background-color: #F5F5E8;
  color: #5C5C30;
  border: 1px solid #DDD9C0;
}

.method-tier--premium {
  background-color: rgba(184, 146, 42, 0.1);
  color: #B8922A;
  border: 1px solid rgba(184, 146, 42, 0.3);
}

.method-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #1A1A08;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.method-card p {
  font-size: 0.9375rem;
  color: #5C5C30;
  line-height: 1.75;
  max-width: 700px;
}

.method-footer {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.method-link {
  font-family: 'Lora', serif;
  font-size: 0.8125rem;
  color: #B8922A;
  font-style: italic;
  text-decoration: none;
  transition: color 0.2s ease;
}

.method-link:hover {
  color: #8a6a18;
  text-decoration: underline;
}

.method-starred {
  display: flex;
  align-items: center;
  gap: 6px;
}

.method-starred span {
  font-size: 0.875rem;
  color: #B8922A;
  letter-spacing: 2px;
}

.star-empty {
  color: #DDD9C0 !important;
}

.method-starred-label {
  font-size: 0.72rem;
  color: #5C5C30;
  font-style: italic;
  font-family: 'Lora', serif;
  letter-spacing: 0.05em;
}

@media (min-width: 768px) {
  .method-card {
    padding: 36px 48px;
  }
}

/* --- CASE SECTION --- */
.section-case {
  background-color: #FAFAF4;
}

.case-text {
  max-width: 660px;
  margin: 0 auto 56px;
}

.case-text p {
  font-size: 1rem;
  color: #1A1A08;
  line-height: 1.8;
  margin-bottom: 20px;
}

.case-text p:last-child {
  margin-bottom: 0;
}

/* stats display */
.case-stats {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  margin-bottom: 56px;
  padding: 40px 32px;
  border: 1px solid #DDD9C0;
  border-radius: 4px;
  background-color: #FFFFFF;
}

@media (min-width: 640px) {
  .case-stats {
    flex-direction: row;
    justify-content: center;
    gap: 0;
  }
}

.case-stat {
  flex: 1;
  text-align: center;
  padding: 0 24px;
}

.case-stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #B8922A;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 8px;
}

.case-stat-label {
  font-family: 'Lora', serif;
  font-size: 0.8125rem;
  color: #5C5C30;
  line-height: 1.4;
  font-style: italic;
}

.case-stat-divider {
  font-size: 1.5rem;
  color: #DDD9C0;
  flex-shrink: 0;
  display: none;
}

@media (min-width: 640px) {
  .case-stat-divider {
    display: block;
  }
}

/* comparison bars */
.case-vs {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.case-vs-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
}

@media (min-width: 500px) {
  .case-vs-item {
    grid-template-columns: 220px 1fr auto;
    align-items: center;
    gap: 16px;
  }
}

.case-vs-label {
  font-family: 'Lora', serif;
  font-size: 0.8125rem;
  color: #5C5C30;
  font-style: italic;
}

.case-vs-bar-track {
  height: 8px;
  background-color: #F5F5E8;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid #DDD9C0;
}

.case-vs-bar {
  height: 100%;
  border-radius: 4px;
  transition: width 0.6s ease;
}

.case-vs-bar--industry {
  background-color: #DDD9C0;
}

.case-vs-bar--us {
  background-color: #B8922A;
}

.case-vs-number {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  color: #5C5C30;
  white-space: nowrap;
  text-align: right;
}

.case-vs-number--us {
  color: #B8922A;
}

/* --- TESTIMONIALS (DARK) --- */
.section-dark {
  background-color: #1A1A08;
}

.section-dark h2 {
  color: #F5F5DC;
}

.heading-light {
  color: #F5F5DC;
}

/* h2 underline override for dark bg */
.section-dark .section-inner--centered h2::after {
  background-color: #B8922A;
}

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

@media (min-width: 640px) {
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .testimonial-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial {
  border: 1px solid rgba(221, 217, 192, 0.2);
  border-radius: 3px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background-color: rgba(255, 255, 255, 0.03);
  transition: border-color 0.2s ease;
}

.testimonial:hover {
  border-color: rgba(184, 146, 42, 0.4);
}

.testimonial--crimson {
  border-color: rgba(139, 26, 46, 0.4);
}

.testimonial--crimson:hover {
  border-color: rgba(139, 26, 46, 0.7);
}

.testimonial-ornament {
  opacity: 0.8;
}

.testimonial p {
  font-size: 0.9375rem;
  color: #F5F5DC;
  line-height: 1.75;
  flex: 1;
  font-style: italic;
}

.testimonial footer {
  display: flex;
  flex-direction: column;
  gap: 3px;
  border-top: 1px solid rgba(221, 217, 192, 0.15);
  padding-top: 16px;
}

.testimonial cite {
  font-style: normal;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: #F5F5DC;
}

.testimonial-note {
  font-size: 0.75rem;
  color: rgba(245, 245, 220, 0.45);
  font-style: italic;
}

/* --- COMMISSION CTA SECTION --- */
.section-commission {
  background-color: #F5F5E8;
  border-top: 1px solid #DDD9C0;
  border-bottom: 1px solid #DDD9C0;
}

.commission-seal {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
  opacity: 0.7;
}

.section-commission h2 {
  margin-bottom: 16px;
}

.section-commission p {
  font-size: 1rem;
  color: #5C5C30;
  margin-bottom: 36px;
  line-height: 1.75;
}

/* --- FOOTER --- */
.site-footer {
  background-color: #1A1A08;
  padding: 48px 20px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
}

@media (min-width: 640px) {
  .footer-top {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #F5F5DC;
}

.footer-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-nav a {
  color: rgba(245, 245, 220, 0.5);
  text-decoration: none;
  font-family: 'Lora', serif;
  font-size: 0.8125rem;
  padding: 4px 10px;
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: #F5F5DC;
}

.footer-nav a:focus-visible {
  outline-color: #B8922A;
}

.footer-divider {
  width: 100%;
  height: 1px;
  background-color: rgba(221, 217, 192, 0.15);
}

/* compliance block */
.footer-compliance {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 680px;
}

@media (min-width: 640px) {
  .footer-compliance {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
  }
}

.compliance-seal {
  flex-shrink: 0;
  opacity: 0.6;
}

.compliance-text {
  font-size: 0.72rem;
  color: rgba(245, 245, 220, 0.35);
  line-height: 1.65;
  font-style: italic;
}

.footer-copy {
  font-size: 0.72rem;
  color: rgba(245, 245, 220, 0.3);
  max-width: 700px;
  line-height: 1.65;
}

.footer-credit {
  font-size: 0.78rem;
  color: rgba(245, 245, 220, 0.35);
}

.footer-credit a {
  color: rgba(184, 146, 42, 0.7);
}

.footer-credit a:hover {
  color: #B8922A;
}

/* --- DECORATIVE GOLD ACCENTS --- */
/* Top border on key sections */
.section-methods::before {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background-color: #B8922A;
  margin: 0 auto 0;
  position: relative;
  top: -80px;
  left: 0;
}

@media (min-width: 768px) {
  .section-methods::before {
    top: -100px;
  }
}

/* crimson accent on featured testimonial */
.testimonial--crimson {
  position: relative;
}

/* --- SMALL SCREEN REFINEMENTS --- */
@media (max-width: 400px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .btn-large {
    padding: 14px 20px;
    font-size: 0.875rem;
  }

  .method-card {
    padding: 24px 20px;
  }
}

/* --- PRINT STYLES (for when someone actually needs to serve documents) --- */
@media print {
  .site-header,
  .portfolio-credit,
  .site-footer {
    display: none;
  }

  body {
    background-color: #FFFFFF;
    color: #000000;
  }
}
