/* ============================================================
   GHOST ASSIGNMENTS — MAIN STYLESHEET
   Ghostly Paper Aesthetic
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Crimson+Pro:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Special+Elite&display=swap');

/* ── VARIABLES ── */
:root {
  --ink: #1a1208;
  --ink-light: #3d2e1a;
  --ink-faint: #6b5a3e;
  --paper: #f5efe0;
  --paper-dark: #ede5cc;
  --paper-aged: #d4c4a0;
  --paper-shadow: #c4b080;
  --ecto: #7eb8c9;
  --ecto-dark: #3a8fa3;
  --ecto-glow: rgba(126,184,201,0.25);
  --accent: #2d6b7f;
  --gold: #b8860b;
  --gold-light: #d4a017;
  --white: #ffffff;
  --radius: 4px;
  --nav-h: 68px;
  --max-w: 1200px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 6px 24px rgba(0,0,0,0.12);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.16);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Crimson Pro', Georgia, serif;
  background-color: var(--paper);
  color: var(--ink);
  font-size: 18px;
  line-height: 1.7;
  position: relative;
  overflow-x: hidden;
}

/* Paper texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 27px,
      rgba(180,160,100,0.1) 27px,
      rgba(180,160,100,0.1) 28px
    );
  pointer-events: none;
  z-index: 0;
}

.site-wrapper { position: relative; z-index: 1; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5 {
  font-family: 'Cinzel', serif;
  line-height: 1.2;
  color: var(--ink);
}

a { color: var(--ecto-dark); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--accent); }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

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

/* ── UTILITY ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.section-label {
  font-family: 'Special Elite', serif;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ecto-dark);
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, var(--paper-aged), transparent);
  max-width: 100px;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 600;
  margin-bottom: 1rem;
}
.section-desc {
  font-style: italic;
  color: var(--ink-faint);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
  max-width: 540px;
}

.text-center { text-align: center; }
.text-center .section-label { justify-content: center; }
.text-center .section-label::after { display: none; }
.text-center .section-desc { margin-left: auto; margin-right: auto; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Special Elite', serif;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 13px 28px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.22s;
  text-decoration: none;
  line-height: 1;
}

.btn-primary {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.btn-primary:hover {
  background: var(--ecto-dark);
  border-color: var(--ecto-dark);
  color: var(--white);
  box-shadow: 0 4px 20px var(--ecto-glow);
}

.btn-ecto {
  background: var(--ecto-dark);
  color: var(--white);
  border-color: var(--ecto-dark);
}
.btn-ecto:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 20px var(--ecto-glow);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--paper-shadow);
}
.btn-outline:hover {
  border-color: var(--ecto-dark);
  color: var(--ecto-dark);
}

.btn-outline-light {
  background: transparent;
  color: var(--paper);
  border-color: rgba(255,255,255,0.3);
}
.btn-outline-light:hover {
  border-color: var(--ecto);
  color: var(--ecto);
}

.btn-wa {
  background: #25D366;
  color: white;
  border-color: #25D366;
  font-size: 0.82rem;
}
.btn-wa:hover {
  background: #1da851;
  color: white;
  box-shadow: 0 4px 18px rgba(37,211,102,0.4);
}

.btn-full { width: 100%; justify-content: center; }

.btn-quote {
  background: #1e9bca;
  color: white;
  border-color: #1e9bca;
  font-size: 0.9rem;
  padding: 15px 32px;
  letter-spacing: 0.06em;
  border-radius: 6px;
  font-family: 'Special Elite', serif;
  font-weight: normal;
}
.btn-quote:hover {
  background: #1680a8;
  color: white;
  border-color: #1680a8;
}

/* ── NAVBAR ── */
.site-header {
  background: var(--ink);
  position: sticky;
  top: 0;
  z-index: 200;
  height: var(--nav-h);
  border-bottom: 2px solid var(--gold);
  box-shadow: 0 2px 24px rgba(0,0,0,0.5);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-logo {
  font-family: 'Cinzel', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--paper);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.site-logo:hover { color: var(--ecto); }

.logo-ghost {
  font-size: 1.7rem;
  display: inline-block;
  animation: float-ghost 3s ease-in-out infinite;
  filter: drop-shadow(0 0 8px rgba(126,184,201,0.7));
}

@keyframes float-ghost {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-5px); }
}

/* Primary nav */
.primary-nav { list-style: none; display: flex; align-items: center; gap: 2px; }
.primary-nav a {
  font-family: 'Special Elite', serif;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245,239,224,0.75);
  text-decoration: none;
  padding: 6px 11px;
  border-radius: 3px;
  transition: all 0.2s;
  display: block;
}
.primary-nav a:hover,
.primary-nav .current-menu-item > a,
.primary-nav .current_page_item > a {
  background: rgba(126,184,201,0.18);
  color: var(--ecto);
}

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--paper);
  padding: 8px 10px;
  cursor: pointer;
  border-radius: 3px;
  font-size: 1.1rem;
  line-height: 1;
}

/* Mobile nav */
.mobile-nav {
  display: none;
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,0.08);
  position: absolute;
  top: var(--nav-h);
  left: 0; right: 0;
  z-index: 199;
  padding: 1rem;
}
.mobile-nav.open { display: block; }
.mobile-nav ul { list-style: none; }
.mobile-nav ul a {
  font-family: 'Special Elite', serif;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245,239,224,0.8);
  text-decoration: none;
  display: block;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.mobile-nav ul a:hover { color: var(--ecto); }

/* ── HERO SECTION ── */
.hero {
  min-height: calc(100vh - var(--nav-h));
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 3rem;
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 4rem 2rem;
  position: relative;
}

.hero-ghost-bg {
  position: absolute;
  font-size: 45vw;
  opacity: 0.03;
  right: -10%;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  animation: float-ghost 10s ease-in-out infinite;
  user-select: none;
}

.hero-badge {
  font-family: 'Special Elite', serif;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ecto-dark);
  border: 1px solid var(--ecto-dark);
  padding: 5px 16px;
  border-radius: 2px;
  margin-bottom: 1.8rem;
  display: inline-block;
  background: rgba(126,184,201,0.07);
}

.hero h1 {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: 0.4em;
  text-shadow: 2px 2px 0 var(--paper-aged);
}

.hero h1 .accent-line {
  color: var(--ecto-dark);
  display: block;
}

.hero-sub {
  font-style: italic;
  font-size: 1.15rem;
  color: var(--ink-faint);
  max-width: 480px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-top: 2rem;
}

.trust-pill {
  font-family: 'Special Elite', serif;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--paper-dark);
  border: 1px solid var(--paper-aged);
  color: var(--ink-faint);
  padding: 5px 12px;
  border-radius: 2px;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ── ORDER FORM CARD ── */
.order-form-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.14);
  padding: 2rem;
  position: relative;
  z-index: 2;
  border: 1px solid rgba(0,0,0,0.06);
}

.order-form-card h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.05rem;
  font-weight: 600;
  text-align: center;
  color: var(--ink);
  margin-bottom: 1.5rem;
  line-height: 1.4;
  padding-bottom: 1rem;
  border-bottom: 1px solid #f0f0f0;
}

.order-form-card h3 .hat { font-size: 1.1rem; }

/* Form fields */
.of-row {
  display: grid;
  gap: 0.7rem;
  margin-bottom: 0.7rem;
}
.of-row.cols-2 { grid-template-columns: 1fr 1fr; }
.of-row.cols-phone { grid-template-columns: 130px 1fr; }

.of-field {
  position: relative;
}

.of-field input,
.of-field select,
.of-field textarea {
  width: 100%;
  background: #f4f5f7;
  border: 1.5px solid #e8eaed;
  border-radius: 8px;
  padding: 11px 14px;
  font-family: 'Crimson Pro', serif;
  font-size: 1rem;
  color: #1a1a1a;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
  -webkit-appearance: none;
  outline: none;
  line-height: 1.4;
}

.of-field input::placeholder,
.of-field textarea::placeholder { color: #9ca3af; }

.of-field input:focus,
.of-field select:focus,
.of-field textarea:focus {
  border-color: #1e9bca;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(30,155,202,0.1);
}

.of-field 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 d='M1 1l5 5 5-5' stroke='%239ca3af' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
  cursor: pointer;
  color: #6b7280;
}

.of-field select.has-value { color: #1a1a1a; }

/* Description textarea */
.of-field textarea {
  resize: none;
  height: 110px;
  font-size: 0.95rem;
}

/* Attach file area */
.attach-wrap {
  background: #f4f5f7;
  border: 1.5px dashed #d1d5db;
  border-radius: 8px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: border-color 0.2s;
  margin-bottom: 0.7rem;
}
.attach-wrap:hover { border-color: #1e9bca; }
.attach-wrap input[type="file"] { display: none; }
.attach-icon { font-size: 1rem; }
.attach-label {
  font-family: 'Crimson Pro', serif;
  font-size: 0.92rem;
  color: #6b7280;
}

/* Pages counter */
.pages-field {
  background: #f4f5f7;
  border: 1.5px solid #e8eaed;
  border-radius: 8px;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0.7rem;
}
.pages-label {
  font-size: 0.78rem;
  color: #9ca3af;
  font-family: 'Special Elite', serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-right: 1px solid #e8eaed;
  padding-right: 10px;
  margin-right: 4px;
  min-width: 44px;
}
.pages-num {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  color: var(--ink);
  min-width: 20px;
}
.pages-words {
  font-size: 0.82rem;
  color: #9ca3af;
  flex: 1;
}
.pages-sep {
  font-size: 1rem;
  color: #d1d5db;
  margin: 0 4px;
}
.pages-btn {
  width: 28px;
  height: 28px;
  background: #e8eaed;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #374151;
  transition: background 0.15s;
  line-height: 1;
}
.pages-btn:hover { background: #d1d5db; }

/* Deadline row */
.deadline-field {
  background: #f4f5f7;
  border: 1.5px solid #e8eaed;
  border-radius: 8px;
  padding: 11px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  width: 100%;
}
.deadline-placeholder {
  font-family: 'Crimson Pro', serif;
  font-size: 1rem;
  color: #6b7280;
  flex: 1;
}
.deadline-time {
  font-family: 'Special Elite', serif;
  font-size: 0.85rem;
  color: #374151;
  letter-spacing: 0.05em;
}

/* Checkboxes */
.of-checks { margin-bottom: 1.2rem; }
.of-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 0.7rem;
  font-family: 'Crimson Pro', serif;
  font-size: 0.85rem;
  color: #374151;
  line-height: 1.5;
  cursor: pointer;
}
.of-check input[type="checkbox"] {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: #1e9bca;
  cursor: pointer;
  border-radius: 3px;
}
.of-check a { color: #1e9bca; text-decoration: underline; }
.of-check strong { font-weight: 600; color: #1a1a1a; }

/* Phone prefix */
.phone-prefix {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #f4f5f7;
  border: 1.5px solid #e8eaed;
  border-radius: 8px;
  padding: 11px 12px;
  cursor: pointer;
  font-family: 'Crimson Pro', serif;
  font-size: 0.95rem;
  color: #374151;
  white-space: nowrap;
  transition: border-color 0.2s;
}
.phone-prefix:hover { border-color: #1e9bca; }
.phone-flag { font-size: 1rem; }
.phone-arrow { font-size: 0.6rem; color: #9ca3af; }

/* ── DIVIDER ── */
.section-divider {
  border: none;
  border-top: 1px solid var(--paper-aged);
  margin: 0;
}

/* ── SERVICES SECTION ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.service-card {
  background: var(--paper-dark);
  border: 1px solid var(--paper-aged);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
  text-decoration: none;
  display: block;
  color: inherit;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--ecto-dark), transparent);
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md), 0 0 24px var(--ecto-glow);
  border-color: var(--ecto);
  color: inherit;
}

.service-icon { font-size: 2.4rem; margin-bottom: 1.2rem; display: block; }
.service-card h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  margin-bottom: 0.7rem;
  color: var(--ink);
}
.service-card p { font-size: 0.92rem; color: var(--ink-faint); margin-bottom: 1.5rem; line-height: 1.6; }
.service-cta {
  font-family: 'Special Elite', serif;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ecto-dark);
}

/* ── WHY US (Dark section) ── */
.why-section {
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
.why-ghost-bg {
  position: absolute;
  font-size: 50vw;
  opacity: 0.025;
  right: -8%;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  animation: float-ghost 12s ease-in-out infinite;
  user-select: none;
}
.why-section .section-label { color: var(--ecto); }
.why-section .section-label::after { background: linear-gradient(to right, var(--ecto), transparent); }
.why-section .section-title { color: var(--paper); }
.why-section .section-desc { color: rgba(245,239,224,0.6); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.why-card {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 2rem;
  background: rgba(255,255,255,0.03);
  transition: all 0.3s;
}
.why-card:hover {
  background: rgba(126,184,201,0.07);
  border-color: rgba(126,184,201,0.4);
}
.why-icon { font-size: 1.9rem; margin-bottom: 1rem; display: block; }
.why-card h3 { font-family: 'Cinzel', serif; font-size: 0.95rem; color: var(--paper); margin-bottom: 0.5rem; }
.why-card p { font-size: 0.88rem; color: rgba(245,239,224,0.55); line-height: 1.6; }

/* ── COMPARISON TABLE ── */
.compare-table-wrap { overflow-x: auto; margin-top: 2.5rem; }
.compare-table {
  width: 100%;
  border-collapse: collapse;
}
.compare-table th {
  font-family: 'Cinzel', serif;
  font-size: 0.82rem;
  padding: 14px 20px;
  text-align: left;
  background: var(--ink);
  color: var(--paper);
  font-weight: 600;
}
.compare-table th:first-child { border-radius: 4px 0 0 0; }
.compare-table th:last-child { border-radius: 0 4px 0 0; }
.compare-table td {
  padding: 12px 20px;
  border-bottom: 1px solid var(--paper-aged);
  font-size: 0.9rem;
  color: var(--ink-light);
}
.compare-table tr:nth-child(even) td { background: var(--paper-dark); }
.compare-table .row-highlight td { background: rgba(126,184,201,0.1) !important; font-weight: 600; color: var(--ecto-dark); }
.compare-table .check { color: #2a7a3b; font-size: 1rem; font-weight: 700; }
.compare-table .cross { color: #8b3a1a; font-size: 1rem; }

/* ── TESTIMONIALS ── */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.testi-card {
  background: var(--paper-dark);
  border: 1px solid var(--paper-aged);
  border-left: 3px solid var(--ecto-dark);
  padding: 2rem;
  border-radius: var(--radius);
  position: relative;
}
.testi-card::before {
  content: '"';
  position: absolute;
  top: -6px; left: 1.5rem;
  font-family: 'Cinzel', serif;
  font-size: 5rem;
  color: var(--ecto-dark);
  opacity: 0.2;
  line-height: 1;
}
.testi-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 0.7rem; }
.testi-text { font-style: italic; font-size: 0.98rem; color: var(--ink-light); margin-bottom: 1rem; padding-top: 0.8rem; }
.testi-meta {
  font-family: 'Special Elite', serif;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

/* ── PAGE HERO ── */
.page-hero {
  background: var(--ink);
  padding: 5rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--ecto-dark), transparent);
}
.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--paper);
  text-shadow: 0 0 40px var(--ecto-glow);
}
.page-hero p { font-style: italic; color: rgba(245,239,224,0.6); margin-top: 0.8rem; font-size: 1.05rem; }

/* ── CONTACT PANEL ── */
.contact-panel {
  background: var(--ink);
  border-radius: var(--radius);
  padding: 2.2rem;
  color: var(--paper);
  height: fit-content;
}
.contact-panel h3 { font-family: 'Cinzel', serif; font-size: 1.2rem; color: var(--paper); margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.contact-method { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.4rem; padding-bottom: 1.4rem; border-bottom: 1px solid rgba(255,255,255,0.05); }
.contact-method:last-child { border: none; margin: 0; padding: 0; }
.contact-icon { font-size: 1.4rem; flex-shrink: 0; }
.contact-detail h4 { font-family: 'Special Elite', serif; font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ecto); margin-bottom: 0.3rem; }
.contact-detail p { font-size: 0.92rem; color: rgba(245,239,224,0.7); }

/* ── FORM ELEMENTS (generic) ── */
.form-card { background: var(--paper-dark); border: 1px solid var(--paper-aged); border-radius: var(--radius); padding: 2rem; }
.form-group { margin-bottom: 1.4rem; }
.form-group label { display: block; font-family: 'Special Elite', serif; font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 0.45rem; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--paper);
  border: 1px solid var(--paper-aged);
  border-radius: 3px;
  padding: 11px 14px;
  font-family: 'Crimson Pro', serif;
  font-size: 1rem;
  color: var(--ink);
  transition: border-color 0.2s;
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--ecto-dark); }
.form-group textarea { height: 140px; resize: vertical; }

/* ── SOLUTIONS GRID ── */
.cat-bar { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.cat-btn {
  font-family: 'Special Elite', serif;
  font-size: 0.7rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  background: var(--paper-dark);
  border: 1px solid var(--paper-aged);
  color: var(--ink-faint);
  padding: 6px 14px;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.2s;
}
.cat-btn:hover, .cat-btn.active { background: var(--ink); color: var(--paper); border-color: var(--ink); }

.posts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.post-card { background: var(--paper-dark); border: 1px solid var(--paper-aged); border-radius: var(--radius); overflow: hidden; transition: all 0.3s; text-decoration: none; display: block; color: inherit; }
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--ecto); color: inherit; }
.post-card-top { background: var(--ink); padding: 1.8rem; }
.post-badge { font-family: 'Special Elite', serif; font-size: 0.62rem; letter-spacing: 0.1em; text-transform: uppercase; background: rgba(126,184,201,0.18); color: var(--ecto); border: 1px solid var(--ecto-dark); padding: 3px 10px; border-radius: 2px; display: inline-block; margin-bottom: 0.7rem; }
.post-card-top h3 { font-family: 'Cinzel', serif; font-size: 0.95rem; color: var(--paper); line-height: 1.35; }
.post-body { padding: 1.4rem; }
.post-body p { font-size: 0.88rem; color: var(--ink-faint); margin-bottom: 1rem; line-height: 1.5; }
.post-meta { display: flex; justify-content: space-between; align-items: center; font-family: 'Special Elite', serif; font-size: 0.65rem; letter-spacing: 0.06em; color: var(--ink-faint); text-transform: uppercase; }

/* ── STEP BOXES ── */
.steps-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin: 2.5rem 0; }
.step-box { text-align: center; padding: 2rem 1rem; background: var(--paper-dark); border: 1px solid var(--paper-aged); border-radius: var(--radius); position: relative; }
.step-box::after { content: '→'; position: absolute; right: -0.6rem; top: 50%; transform: translateY(-50%); color: var(--paper-shadow); font-size: 1.1rem; z-index: 1; }
.step-box:last-child::after { display: none; }
.step-num { font-family: 'Cinzel', serif; font-size: 2rem; color: var(--ecto-dark); opacity: 0.4; display: block; margin-bottom: 0.5rem; }
.step-box h4 { font-family: 'Cinzel', serif; font-size: 0.85rem; color: var(--ink); margin-bottom: 0.4rem; }
.step-box p { font-size: 0.8rem; color: var(--ink-faint); }

/* ── FEATURES LIST ── */
.features-list { list-style: none; }
.features-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.95rem; color: var(--ink-light); padding: 6px 0; border-bottom: 1px solid var(--paper-aged); }
.features-list li:last-child { border: none; }
.features-list li::before { content: '◆'; color: var(--ecto-dark); flex-shrink: 0; font-size: 0.55rem; margin-top: 0.45em; }

/* ── PRICING BOX ── */
.pricing-box { background: var(--paper-dark); border: 1px solid var(--paper-aged); border-top: 3px solid var(--gold); padding: 2.2rem; border-radius: var(--radius); text-align: center; }
.price-badge { font-family: 'Special Elite', serif; font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.8rem; }
.price-big { font-family: 'Cinzel', serif; font-size: 2.8rem; color: var(--ink); line-height: 1; margin-bottom: 0.3rem; }
.price-sub { font-style: italic; color: var(--ink-faint); font-size: 0.92rem; }

/* ── STATS ROW ── */
.stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.stat-box { text-align: center; padding: 2rem; background: var(--paper-dark); border: 1px solid var(--paper-aged); border-radius: var(--radius); }
.stat-num { font-family: 'Cinzel', serif; font-size: 2.8rem; color: var(--ecto-dark); margin-bottom: 0.3rem; }
.stat-label { font-family: 'Special Elite', serif; font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-faint); }

/* ── REVIEW FORM ── */
.star-select { display: flex; gap: 8px; margin-bottom: 1.2rem; }
.star-select label { font-size: 1.6rem; cursor: pointer; color: var(--paper-aged); transition: color 0.15s; }
.star-select input { display: none; }
.star-select label:hover,
.star-select label.lit { color: var(--gold); }

/* ── LEGAL CONTENT ── */
.legal-body { max-width: 780px; margin: 0 auto; padding: 4rem 2rem; }
.legal-body h2 { font-family: 'Cinzel', serif; font-size: 1.2rem; color: var(--ink); margin: 2rem 0 0.7rem; padding-bottom: 0.4rem; border-bottom: 1px solid var(--paper-aged); }
.legal-body p, .legal-body li { font-size: 0.94rem; color: var(--ink-light); margin-bottom: 0.8rem; }
.legal-body ul { padding-left: 1.5rem; margin-bottom: 1rem; }

/* ── CTA BANNER ── */
.cta-banner { background: var(--ink); padding: 4rem 0; text-align: center; position: relative; overflow: hidden; }
.cta-banner h2 { font-family: 'Cinzel', serif; font-size: clamp(1.6rem, 3.5vw, 2.4rem); color: var(--paper); margin-bottom: 0.8rem; }
.cta-banner p { font-style: italic; color: rgba(245,239,224,0.6); margin-bottom: 2rem; font-size: 1.05rem; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ── */
.site-footer { background: var(--ink); color: var(--paper); padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer-brand-logo { font-family: 'Cinzel', serif; font-size: 1.1rem; color: var(--paper); display: flex; align-items: center; gap: 8px; margin-bottom: 1rem; text-decoration: none; }
.footer-brand-logo:hover { color: var(--ecto); }
.footer-brand p { font-size: 0.88rem; color: rgba(245,239,224,0.45); max-width: 280px; line-height: 1.6; }
.footer-col h4 { font-family: 'Special Elite', serif; font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--ecto); margin-bottom: 1rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul a { font-size: 0.88rem; color: rgba(245,239,224,0.45); text-decoration: none; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--paper); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-copy { font-family: 'Special Elite', serif; font-size: 0.65rem; letter-spacing: 0.07em; text-transform: uppercase; color: rgba(245,239,224,0.28); }
.footer-trust { font-family: 'Special Elite', serif; font-size: 0.65rem; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(245,239,224,0.28); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-left > * {
  animation: fadeUp 0.65s ease both;
}
.hero-left > *:nth-child(1) { animation-delay: 0.1s; }
.hero-left > *:nth-child(2) { animation-delay: 0.25s; }
.hero-left > *:nth-child(3) { animation-delay: 0.4s; }
.hero-left > *:nth-child(4) { animation-delay: 0.55s; }
.hero-left > *:nth-child(5) { animation-delay: 0.7s; }
.order-form-card { animation: fadeUp 0.65s ease 0.3s both; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr; max-width: 600px; }
  .hero-ghost-bg { display: none; }
  .order-form-card { max-width: 500px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .services-grid, .why-grid, .posts-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .steps-row { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: 1fr; }
  .primary-nav { display: none; }
  .nav-toggle { display: flex; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 540px) {
  .container { padding: 0 1.2rem; }
  .section { padding: 3.5rem 0; }
  .steps-row { grid-template-columns: 1fr; }
  .of-row.cols-2 { grid-template-columns: 1fr; }
  .hero { padding: 3rem 1.2rem; }
  .order-form-card { padding: 1.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
