/* ============================================
   TRUE NOBLE PUBLISHING — LUXURY STYLESHEET
   Ivory · Parchment · Rich Gold · Ornate Flourishes
   Matched to the White & Gold Flyer Aesthetic
   ============================================ */

:root {
  /* ── Warm Gold (sampled from logo/flyer) ── */
  --gold: #c9a050;
  --gold-light: #dbb978;
  --gold-lighter: #e8d5a8;
  --gold-vivid: #d4a742;
  --gold-dark: #a07830;
  --gold-deep: #8b6914;
  --gold-glow: rgba(201, 160, 80, 0.45);

  /* ── Rich Darks (warm espresso — for text) ── */
  --deep: #2d2318;
  --deep-warm: #3a3028;
  --deep-mid: #4a3f33;
  --deep-rich: #221e18;
  --deep-card: #2d2318;

  /* ── Warm Lights (parchment / ivory) ── */
  --cream: #faf7f2;
  --cream-dark: #f2ece2;
  --ivory: #f5f0e6;
  --parchment: #efe8da;
  --white: #ffffff;

  /* ── Text ── */
  --text-dark: #2d2318;
  --text-body: #4a3f33;
  --text-muted: #7a6e60;
  --text-light: #e8dfd3;

  /* ── Fonts ── */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Raleway', 'Segoe UI', sans-serif;
  --font-accent: 'Cormorant Garamond', Georgia, serif;

  /* ── Motion ── */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);

  /* ── Shadows (warm) ── */
  --shadow-sm: 0 2px 8px rgba(45, 35, 24, 0.06);
  --shadow-md: 0 8px 30px rgba(45, 35, 24, 0.08);
  --shadow-lg: 0 20px 60px rgba(45, 35, 24, 0.1);
  --shadow-gold: 0 8px 35px rgba(201, 160, 80, 0.15);
  --shadow-gold-lg: 0 12px 50px rgba(201, 160, 80, 0.22);
}

/* ======== RESET & BASE ======== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: var(--font-body);
  background: linear-gradient(180deg, var(--ivory) 0%, var(--cream) 50%, var(--ivory) 100%);
  color: var(--text-body);
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { text-decoration: none; color: var(--gold-dark); transition: var(--transition); }
a:hover { color: var(--gold); }

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

.container { max-width: 1180px; margin: 0 auto; padding: 0 28px; }

::selection { background: var(--gold); color: var(--white); }

/* ======== GOLD TRIM ELEMENTS ======== */
.gold-text {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gold-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dark), var(--gold-light), var(--gold), var(--gold-light), var(--gold-dark), transparent);
  opacity: 0.4;
}

.gold-line-top,
.gold-line-bottom {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-light), var(--gold), var(--gold-light), transparent);
  z-index: 5;
  opacity: 0.4;
}
.gold-line-top { top: 72px; }
.gold-line-bottom { bottom: 0; }

/* ======== DECORATIVE FLOURISHES ======== */
.ornate-frame {
  position: relative;
  border: 2px solid var(--gold-lighter);
  border-radius: 16px;
  padding: 60px 40px;
}

.ornate-frame::before,
.ornate-frame::after {
  content: '✦';
  position: absolute;
  font-size: 1.2rem;
  color: var(--gold);
  opacity: 0.6;
}
.ornate-frame::before { top: -12px; left: 50%; transform: translateX(-50%); background: var(--ivory); padding: 0 12px; }
.ornate-frame::after { bottom: -12px; left: 50%; transform: translateX(-50%); background: var(--ivory); padding: 0 12px; }

.ornate-corner {
  position: relative;
}
.ornate-corner::before,
.ornate-corner::after {
  position: absolute;
  color: var(--gold);
  opacity: 0.4;
  font-size: 1.5rem;
  line-height: 1;
}
.ornate-corner::before { content: '❧'; top: 8px; left: 12px; }
.ornate-corner::after { content: '❧'; bottom: 8px; right: 12px; transform: rotate(180deg); }

.scrollwork-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 24px 0;
  color: var(--gold);
  opacity: 0.5;
}
.scrollwork-divider::before,
.scrollwork-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.scrollwork-divider span {
  font-size: 1.1rem;
  letter-spacing: 6px;
}

/* ======== PRELOADER ======== */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--ivory);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.hidden { opacity: 0; visibility: hidden; }

.preloader-inner { text-align: center; }

.preloader-logo {
  width: 110px;
  height: auto;
  margin-bottom: 28px;
  animation: logoGlow 2.5s ease-in-out infinite alternate;
}

.preloader-bar {
  width: 180px;
  height: 2px;
  background: rgba(201, 160, 80, 0.15);
  border-radius: 2px;
  margin: 0 auto 18px;
  overflow: hidden;
}

.preloader-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold));
  border-radius: 2px;
  animation: preloaderFill 1.8s ease forwards;
}

@keyframes preloaderFill { to { width: 100%; } }

.preloader-text {
  font-family: var(--font-accent);
  font-style: italic;
  color: var(--gold-dark);
  font-size: 1rem;
  letter-spacing: 4px;
  opacity: 0.7;
}

/* ======== SKIP NAV ======== */
.skip-nav {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 0 0 8px 8px;
  z-index: 10000;
  font-weight: 700;
  transition: top 0.3s;
}
.skip-nav:focus { top: 0; color: var(--white); }

/* ======== LOGO IMAGES ======== */
.nav-logo {
  height: 44px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(201, 160, 80, 0.2));
}

.hero-logo {
  width: 160px;
  height: auto;
  margin-bottom: 24px;
  filter: drop-shadow(0 0 25px rgba(201, 160, 80, 0.2));
  animation: logoGlow 3s ease-in-out infinite alternate;
}

@keyframes logoGlow {
  from { filter: drop-shadow(0 0 15px rgba(201, 160, 80, 0.15)); }
  to { filter: drop-shadow(0 0 35px rgba(201, 160, 80, 0.35)); }
}

.about-portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 10px;
}

.footer-logo {
  height: 30px;
  width: auto;
  vertical-align: middle;
  margin-right: 8px;
  filter: drop-shadow(0 0 6px rgba(201, 160, 80, 0.3));
}

/* ======== NAVIGATION — Ivory/Cream with Gold ======== */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201, 160, 80, 0.15);
  transition: var(--transition);
}

#navbar.scrolled {
  background: rgba(250, 247, 242, 0.97);
  border-bottom: 1px solid rgba(201, 160, 80, 0.25);
  box-shadow: 0 4px 30px rgba(45, 35, 24, 0.08);
}

.nav-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.5px;
}
.logo-text:hover { color: var(--gold); }

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

.nav-links a {
  color: var(--text-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width 0.4s var(--ease);
}

.nav-links a:hover { color: var(--gold-dark); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--gold-dark); }
.nav-links a.active::after { width: 100%; }

.nav-cta {
  background: linear-gradient(145deg, var(--gold-light), var(--gold), var(--gold-dark));
  color: var(--white) !important;
  padding: 10px 26px;
  border-radius: 6px;
  font-weight: 700 !important;
  letter-spacing: 1.2px !important;
  box-shadow: 0 2px 15px rgba(201, 160, 80, 0.25);
  transition: var(--transition);
}

.nav-cta::after { display: none !important; }
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(201, 160, 80, 0.4);
  color: var(--white) !important;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--gold-dark);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 8px;
}

/* ======== HERO — Luxurious Ivory/Parchment ======== */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(160deg, var(--cream) 0%, var(--ivory) 30%, var(--parchment) 50%, var(--ivory) 70%, var(--cream) 100%);
  overflow: hidden;
  padding-top: 100px;
  padding-bottom: 50px;
}

/* Ornate gold border frame around hero content */
#hero::before {
  content: '';
  position: absolute;
  top: 90px;
  left: 40px;
  right: 40px;
  bottom: 20px;
  border: 1.5px solid rgba(201, 160, 80, 0.2);
  border-radius: 20px;
  pointer-events: none;
  z-index: 1;
}

/* Corner flourishes for hero frame */
#hero::after {
  content: '';
  position: absolute;
  top: 90px;
  left: 40px;
  right: 40px;
  bottom: 20px;
  border: 0.5px solid rgba(201, 160, 80, 0.1);
  border-radius: 24px;
  pointer-events: none;
  z-index: 1;
  margin: 8px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 25% 50%, rgba(201, 160, 80, 0.06) 0%, transparent 55%),
    radial-gradient(ellipse at 75% 30%, rgba(201, 160, 80, 0.04) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(201, 160, 80, 0.03) 0%, transparent 45%);
}

.hero-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(201, 160, 80, 0.02) 50%, transparent 70%);
  background-size: 200% 200%;
  animation: subtleShift 10s ease-in-out infinite;
}

@keyframes subtleShift {
  0%, 100% { background-position: 0% 0%; }
  50% { background-position: 100% 100%; }
}

.hero-particles { position: absolute; inset: 0; pointer-events: none; }

.particle {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat 8s infinite;
}

@keyframes particleFloat {
  0% { opacity: 0; transform: translateY(100vh) rotate(0deg); }
  15% { opacity: 0.4; }
  85% { opacity: 0.4; }
  100% { opacity: 0; transform: translateY(-10vh) rotate(120deg); }
}

.hero-split {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

.hero-left { text-align: left; }

.hero-tagline {
  font-family: var(--font-accent);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--gold-dark);
  letter-spacing: 4px;
  margin-bottom: 18px;
  text-transform: uppercase;
  opacity: 0.8;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1.08;
  margin-bottom: 22px;
  letter-spacing: -0.5px;
}

.hero-title .gold-text {
  filter: drop-shadow(0 0 12px rgba(201, 160, 80, 0.2));
}

.hero-sub {
  font-size: 0.95rem;
  color: var(--text-muted);
  letter-spacing: 1px;
  margin-bottom: 40px;
  font-weight: 400;
  min-height: 1.75em;
  line-height: 1.8;
}

.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-right { display: flex; justify-content: center; align-items: center; }

/* ── Hero Featured Book ── */
.hero-books-featured { display: flex; gap: 28px; align-items: flex-start; justify-content: center; }

.hero-book-card { text-align: center; transition: var(--transition); }
.hero-book-card:hover { transform: translateY(-8px); }

.hero-book-glow {
  position: relative;
  display: inline-block;
  border-radius: 8px;
  overflow: hidden;
}

.hero-book-glow::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 10px;
  background: linear-gradient(145deg, var(--gold-light), var(--gold-dark), var(--gold-light));
  background-size: 200% 200%;
  z-index: -1;
  opacity: 0.6;
  animation: borderShimmer 5s ease-in-out infinite;
}

@keyframes borderShimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero-book-card:hover .hero-book-glow::after {
  opacity: 0.9;
  inset: -3px;
  filter: blur(4px);
}

.hero-book-img {
  width: 280px;
  height: auto;
  display: block;
  border-radius: 6px;
  box-shadow: 0 20px 60px rgba(45, 35, 24, 0.2), 0 0 20px rgba(201, 160, 80, 0.08);
  transition: var(--transition);
}

.hero-book-label { margin-top: 16px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 22px;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero-badge.available {
  background: rgba(201, 160, 80, 0.1);
  color: var(--gold-dark);
  border: 1px solid rgba(201, 160, 80, 0.3);
}

.hero-badge i { font-size: 0.68rem; }

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero-scroll a {
  color: var(--gold-dark);
  font-size: 1.1rem;
  animation: gentleBounce 2.5s ease-in-out infinite;
  opacity: 0.5;
  transition: var(--transition);
}
.hero-scroll a:hover { opacity: 1; color: var(--gold); }

@keyframes gentleBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* ======== BUTTONS — Rich Gold Gradient ======== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 34px;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s var(--ease);
}
.btn:hover::before { left: 100%; }

.btn-gold {
  background: linear-gradient(145deg, var(--gold-light), var(--gold), var(--gold-dark));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(201, 160, 80, 0.25);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold-lg);
  color: var(--white);
}

.btn-lg { font-size: 0.88rem; padding: 18px 42px; }

.btn-outline {
  border: 1.5px solid var(--gold);
  color: var(--gold-dark);
  background: transparent;
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-gold-sm {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 24px;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  background: linear-gradient(145deg, var(--gold-light), var(--gold), var(--gold-dark));
  color: var(--white);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-gold-sm::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}
.btn-gold-sm:hover::before { left: 100%; }
.btn-gold-sm:hover { transform: translateY(-2px); box-shadow: var(--shadow-gold); color: var(--white); }

/* ======== ANIMATIONS ======== */
.animate-fade-up { opacity: 0; transform: translateY(25px); animation: fadeUp 0.8s var(--ease) forwards; }
.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.5s; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

/* ======== TRUST BAR — Warm Cream ======== */
.trust-bar {
  background: var(--cream-dark);
  padding: 28px 0;
  border-top: 1px solid rgba(201, 160, 80, 0.15);
  border-bottom: 1px solid rgba(201, 160, 80, 0.15);
}

.trust-items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.trust-item i {
  color: var(--gold);
  font-size: 1rem;
  opacity: 0.8;
}

.trust-item strong { color: var(--text-dark); }

/* ======== SECTIONS ======== */
.section {
  padding: 120px 0;
  background: var(--cream);
  color: var(--text-body);
  position: relative;
}

.section-dark {
  background: linear-gradient(180deg, var(--ivory) 0%, var(--parchment) 25%, var(--cream-dark) 50%, var(--parchment) 75%, var(--ivory) 100%);
  color: var(--text-body);
  position: relative;
}

.section-header { text-align: center; margin-bottom: 70px; }

.section-tag {
  font-family: var(--font-accent);
  font-style: italic;
  color: var(--gold-dark);
  font-size: 1.1rem;
  letter-spacing: 3px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.section-dark .section-tag {
  color: var(--gold-dark);
  opacity: 0.8;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 16px;
  letter-spacing: -0.3px;
}

.section-dark .section-title { color: var(--text-dark); }

.title-accent {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
  margin: 0 auto 22px;
  border-radius: 1px;
}

.title-accent-left { margin: 0 0 25px 0; }

.section-desc {
  max-width: 560px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.8;
}
.section-dark .section-desc { color: var(--text-muted); }

/* ======== NEW RELEASE SPOTLIGHT ======== */
.new-release-section { padding: 100px 0; overflow: hidden; }

.new-release-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.new-release-cover { text-align: center; }

.new-release-glow {
  position: relative;
  display: inline-block;
  border-radius: 10px;
  overflow: hidden;
}

.new-release-glow::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 12px;
  background: linear-gradient(145deg, var(--gold-light), var(--gold-dark), var(--gold-light));
  background-size: 200% 200%;
  z-index: -1;
  animation: borderShimmer 5s ease-in-out infinite;
}

.new-release-glow::after {
  content: '';
  position: absolute;
  inset: -25px;
  border-radius: 30px;
  background: radial-gradient(ellipse, rgba(201, 160, 80, 0.06) 0%, transparent 70%);
  z-index: -2;
}

.new-release-img {
  width: 100%;
  max-width: 350px;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 25px 70px rgba(45, 35, 24, 0.2), 0 0 30px rgba(201, 160, 80, 0.06);
}

.new-release-badge-wrap { margin-top: 20px; }

.new-release-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 28px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  background: linear-gradient(145deg, var(--gold-light), var(--gold));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(201, 160, 80, 0.3);
}

.new-release-info .section-tag { text-align: left; }

.new-release-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.15;
  letter-spacing: -0.3px;
}

.new-release-subtitle {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--gold-dark);
  margin-bottom: 10px;
  opacity: 0.8;
}

.new-release-author {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.new-release-author strong { color: var(--gold-dark); }

.new-release-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 24px;
}

.new-release-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold-dark);
  margin-bottom: 30px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.new-release-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

/* ======== ABOUT ======== */
.about-layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 80px;
  align-items: center;
}

.about-image-side { position: relative; }

.about-image-frame {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 12px;
  overflow: hidden;
  border: 3px solid var(--gold-lighter);
  box-shadow: var(--shadow-lg), 0 0 40px rgba(201, 160, 80, 0.08);
  background: linear-gradient(160deg, var(--cream), var(--ivory));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Gold corner accents on photo frame */
.about-image-frame::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 6px;
  right: 6px;
  bottom: 6px;
  border: 1px solid rgba(201, 160, 80, 0.25);
  border-radius: 8px;
  pointer-events: none;
  z-index: 2;
}

.about-content .section-tag { text-align: left; }
.about-content .section-title { text-align: left; }

.about-name {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.about-role {
  color: var(--gold-dark);
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 22px;
  letter-spacing: 1px;
}

.about-content p {
  margin-bottom: 16px;
  color: var(--text-body);
  font-size: 0.95rem;
  line-height: 1.85;
}

.about-mission {
  background: rgba(201, 160, 80, 0.06);
  border-left: 2px solid var(--gold);
  padding: 18px 24px;
  border-radius: 0 8px 8px 0;
  margin: 24px 0;
}

.about-stats {
  display: flex;
  gap: 45px;
  margin-top: 35px;
  padding-top: 30px;
  border-top: 1px solid rgba(201, 160, 80, 0.15);
}

.stat { text-align: center; }

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(145deg, var(--gold-dark), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-suffix {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--gold-dark);
}
.stat p { font-size: 0.82rem; color: var(--text-muted); margin-top: 4px; letter-spacing: 0.5px; }

/* ======== HOW IT WORKS ======== */
.process-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  position: relative;
}

.process-step {
  text-align: center;
  padding: 45px 30px;
  flex: 1;
  max-width: 340px;
  position: relative;
}

.process-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 900;
  background: linear-gradient(145deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 12px;
}

.process-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(201, 160, 80, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
  color: var(--gold-dark);
  border: 1px solid rgba(201, 160, 80, 0.15);
  transition: var(--transition);
}

.process-step:hover .process-icon {
  border-color: rgba(201, 160, 80, 0.35);
  box-shadow: 0 0 25px rgba(201, 160, 80, 0.1);
  background: rgba(201, 160, 80, 0.08);
}

.process-step h3 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  font-size: 1.15rem;
  margin-bottom: 12px;
  letter-spacing: 0.3px;
}
.process-step p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }

.process-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 75px;
  color: var(--gold);
  font-size: 1.2rem;
  opacity: 0.3;
}

/* ======== SERVICES — Ivory Cards with Gold Borders ======== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  position: relative;
}

.service-card {
  background: var(--white);
  border: 1px solid rgba(201, 160, 80, 0.15);
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 160, 80, 0.3);
  box-shadow: 0 20px 50px rgba(45, 35, 24, 0.08), 0 0 30px rgba(201, 160, 80, 0.06);
}

.service-card:hover::before { opacity: 1; }

.service-card.featured {
  border-color: rgba(201, 160, 80, 0.3);
  background: linear-gradient(180deg, rgba(201, 160, 80, 0.04), var(--white));
}

.featured-badge {
  position: absolute;
  top: 15px;
  right: -32px;
  background: linear-gradient(145deg, var(--gold-light), var(--gold));
  color: var(--white);
  padding: 5px 42px;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transform: rotate(45deg);
}

.service-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(201, 160, 80, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
  color: var(--gold-dark);
  border: 1px solid rgba(201, 160, 80, 0.15);
  transition: var(--transition);
}

.service-card:hover .service-icon {
  border-color: rgba(201, 160, 80, 0.35);
  background: rgba(201, 160, 80, 0.1);
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.service-card p {
  font-size: 0.9rem;
  margin-bottom: 20px;
  color: var(--text-muted);
  line-height: 1.75;
}

.service-features { list-style: none; text-align: left; margin-bottom: 24px; }
.service-features li {
  padding: 5px 0;
  font-size: 0.85rem;
  color: var(--text-body);
}
.service-features i {
  color: var(--gold);
  margin-right: 10px;
  font-size: 0.72rem;
}

/* ======== ACADEMIC EDITING SECTION ======== */
.academic-editing-section { overflow: hidden; }

.academic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.academic-card {
  background: var(--white);
  border: 1px solid rgba(201, 160, 80, 0.15);
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.academic-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.5;
}

.academic-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 160, 80, 0.3);
  box-shadow: var(--shadow-md), 0 0 30px rgba(201, 160, 80, 0.06);
}

.academic-card .card-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(201, 160, 80, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.3rem;
  color: var(--gold-dark);
  border: 1px solid rgba(201, 160, 80, 0.15);
}

.academic-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.academic-card .card-price {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  background: linear-gradient(145deg, var(--gold-dark), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

.academic-card ul {
  list-style: none;
  text-align: left;
  margin-bottom: 20px;
}

.academic-card ul li {
  padding: 4px 0;
  font-size: 0.85rem;
  color: var(--text-body);
}

.academic-card ul li i {
  color: var(--gold);
  margin-right: 8px;
  font-size: 0.72rem;
}

/* Academic benefits callout */
.academic-benefits {
  background: var(--white);
  border: 1.5px solid rgba(201, 160, 80, 0.2);
  border-radius: 16px;
  padding: 36px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.academic-benefits::before {
  content: '✦';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cream);
  padding: 0 12px;
  color: var(--gold);
  font-size: 1rem;
}

.academic-benefits h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.academic-benefits ul {
  list-style: none;
}

.academic-benefits ul li {
  padding: 4px 0;
  font-size: 0.88rem;
  color: var(--text-body);
}

.academic-benefits ul li i {
  color: var(--gold);
  margin-right: 8px;
  font-size: 0.72rem;
}

.turnaround-note {
  text-align: center;
  margin-top: 28px;
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--gold-dark);
  letter-spacing: 1px;
}

.turnaround-note i {
  margin-right: 6px;
  color: var(--gold);
}

/* ======== RESUME & CAREER SERVICES SECTION ======== */
.resume-services-section { overflow: hidden; }

.resume-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.resume-card {
  background: var(--white);
  border: 1px solid rgba(201, 160, 80, 0.15);
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.resume-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.5;
}

.resume-card.resume-featured {
  border: 1.5px solid var(--gold);
  background: linear-gradient(180deg, rgba(201, 160, 80, 0.05), var(--white));
}

.resume-card.resume-featured::before {
  opacity: 1;
}

.resume-popular-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(145deg, var(--gold-light), var(--gold));
  color: var(--white);
  padding: 6px 22px;
  border-radius: 4px;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  white-space: nowrap;
}

.resume-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 160, 80, 0.3);
  box-shadow: var(--shadow-md), 0 0 30px rgba(201, 160, 80, 0.06);
}

.resume-card .card-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(201, 160, 80, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.3rem;
  color: var(--gold-dark);
  border: 1px solid rgba(201, 160, 80, 0.15);
}

.resume-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.resume-card .card-price {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  background: linear-gradient(145deg, var(--gold-dark), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}

.resume-card .card-price-note {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.resume-card ul {
  list-style: none;
  text-align: left;
  margin-bottom: 20px;
}

.resume-card ul li {
  padding: 4px 0;
  font-size: 0.85rem;
  color: var(--text-body);
}

.resume-card ul li i {
  color: var(--gold);
  margin-right: 8px;
  font-size: 0.72rem;
}

.resume-payment-info {
  text-align: center;
  padding: 20px;
  background: rgba(201, 160, 80, 0.04);
  border-radius: 12px;
  border: 1px solid rgba(201, 160, 80, 0.1);
}

.resume-payment-info p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.resume-payment-info .payment-methods {
  font-family: var(--font-accent);
  font-size: 1rem;
  color: var(--gold-dark);
  font-weight: 600;
  letter-spacing: 1px;
}

.resume-payment-info .payment-methods i {
  margin-right: 6px;
  color: var(--gold);
}

/* ======== BOOKS ======== */
.books-showcase {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  max-width: 900px;
  margin: 0 auto;
}

.book-showcase-item {
  text-align: center;
  transition: var(--transition);
}
.book-showcase-item:hover { transform: translateY(-6px); }

.book-cover-glow {
  position: relative;
  display: inline-block;
  border-radius: 10px;
  overflow: hidden;
  max-width: 340px;
  margin: 0 auto;
}

.book-cover-glow::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 12px;
  background: linear-gradient(145deg, var(--gold-light), var(--gold-dark), var(--gold-light));
  z-index: -1;
  opacity: 0.5;
  transition: var(--transition);
}

.book-showcase-item:hover .book-cover-glow::after {
  opacity: 0.8;
  inset: -3px;
}

.book-showcase-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}

.book-showcase-info { margin-top: 28px; }
.book-showcase-info h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.book-subtitle {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.book-author {
  font-family: var(--font-accent);
  font-style: italic;
  color: var(--gold-dark);
  margin-bottom: 14px;
  font-size: 1rem;
}

.book-badge {
  display: inline-block;
  padding: 6px 20px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.book-badge.available {
  background: rgba(201, 160, 80, 0.08);
  color: var(--gold-dark);
  border: 1px solid rgba(201, 160, 80, 0.2);
}

.book-badge.coming-soon {
  background: rgba(201, 160, 80, 0.08);
  color: var(--gold);
  border: 1px solid rgba(201, 160, 80, 0.2);
}

/* ======== WHY CHOOSE US — Elegant Ivory Cards ======== */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

.why-card {
  text-align: center;
  padding: 45px 30px;
  border-radius: 16px;
  background: var(--white);
  border: 1px solid rgba(201, 160, 80, 0.12);
  transition: var(--transition);
  position: relative;
  box-shadow: var(--shadow-sm);
}

.why-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.4s var(--ease);
}

.why-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 160, 80, 0.25);
  box-shadow: var(--shadow-md);
}
.why-card:hover::after { width: 60px; }

.why-icon {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--gold-dark);
  opacity: 0.8;
}

.why-card h3 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  font-size: 1.15rem;
  margin-bottom: 12px;
}
.why-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ======== CTA BANNER — Gold Gradient ======== */
.cta-banner {
  background: linear-gradient(160deg, var(--gold-deep) 0%, var(--gold-dark) 30%, var(--gold) 50%, var(--gold-dark) 70%, var(--gold-deep) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 65%);
}

.cta-banner h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--white);
  margin-bottom: 14px;
  position: relative;
  letter-spacing: -0.3px;
}

.cta-banner p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 35px;
  position: relative;
}

.cta-banner .btn {
  position: relative;
  background: var(--white);
  color: var(--gold-dark);
}
.cta-banner .btn:hover {
  background: var(--cream);
  color: var(--gold-deep);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* ======== PRICING — Ivory Cards with Gold Accents ======== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.price-card {
  background: var(--white);
  border: 1px solid rgba(201, 160, 80, 0.12);
  border-radius: 16px;
  padding: 42px 28px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  box-shadow: var(--shadow-sm);
}

.price-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 160, 80, 0.25);
  box-shadow: var(--shadow-md);
}

.price-featured {
  border: 1.5px solid var(--gold);
  background: linear-gradient(180deg, rgba(201, 160, 80, 0.05), var(--white));
  transform: scale(1.04);
}

.price-featured:hover { transform: scale(1.04) translateY(-6px); }

.price-popular {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(145deg, var(--gold-light), var(--gold));
  color: var(--white);
  padding: 6px 24px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.price-header h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.price-subtitle {
  font-family: var(--font-accent);
  font-style: italic;
  color: var(--gold-dark);
  font-size: 0.95rem;
  margin-bottom: 24px;
  opacity: 0.8;
}

.price-amount { margin-bottom: 6px; }

.currency {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--gold-dark);
  vertical-align: top;
}
.amount {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1;
}
.per {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-left: 4px;
}

.price-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  opacity: 0.7;
}

.price-features { list-style: none; text-align: left; margin-bottom: 30px; }
.price-features li {
  padding: 8px 0;
  font-size: 0.88rem;
  color: var(--text-body);
  border-bottom: 1px solid rgba(201, 160, 80, 0.06);
}
.price-features li:last-child { border: none; }
.price-features i {
  color: var(--gold);
  margin-right: 10px;
  font-size: 0.68rem;
}

/* ======== FAQ — Warm Ivory ======== */
.faq-wrapper { max-width: 720px; margin: 0 auto; }

.faq-item {
  border: 1px solid rgba(201, 160, 80, 0.12);
  border-radius: 10px;
  margin-bottom: 10px;
  overflow: hidden;
  transition: var(--transition);
  background: var(--white);
}

.faq-item:hover { border-color: rgba(201, 160, 80, 0.25); }
.faq-item.active { border-color: var(--gold); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 26px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  text-align: left;
  transition: var(--transition);
  line-height: 1.5;
}

.faq-question i {
  color: var(--gold);
  font-size: 0.8rem;
  transition: transform 0.3s var(--ease);
  flex-shrink: 0;
  margin-left: 16px;
  opacity: 0.6;
}

.faq-item.active .faq-question i { transform: rotate(45deg); opacity: 1; }
.faq-item.active .faq-question { color: var(--gold-dark); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.4s var(--ease);
  padding: 0 26px;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 26px 22px;
}

.faq-answer p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.8; }

/* ======== BOOKING FORM — Elegant Ivory ======== */
.booking-wrapper { max-width: 740px; margin: 0 auto; }
.booking-form { display: grid; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; }
.form-group.full-width { grid-column: 1 / -1; }

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.form-group label i { color: var(--gold); font-size: 0.78rem; opacity: 0.7; }

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--white);
  border: 1.5px solid rgba(201, 160, 80, 0.15);
  border-radius: 8px;
  padding: 14px 18px;
  color: var(--text-dark);
  font-family: var(--font-body);
  font-size: 0.92rem;
  transition: var(--transition);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); opacity: 0.5; }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 160, 80, 0.08);
}

.form-group select { color: var(--text-body); }
.form-group select option { background: var(--white); color: var(--text-dark); }

.btn-submit {
  width: 100%;
  justify-content: center;
  font-size: 0.88rem;
  padding: 16px;
  margin-top: 10px;
}

.form-success { text-align: center; padding: 60px 30px; animation: fadeUp 0.5s; }
.form-success i { font-size: 3.5rem; color: var(--gold); margin-bottom: 20px; }
.form-success h3 { font-family: var(--font-heading); font-size: 1.8rem; color: var(--text-dark); margin-bottom: 10px; }
.form-success p { color: var(--text-muted); }

/* ======== CONTACT BAR — Warm Cream ======== */
.contact-bar {
  background: var(--cream-dark);
  padding: 40px 0;
  border-top: 1px solid rgba(201, 160, 80, 0.12);
  border-bottom: 1px solid rgba(201, 160, 80, 0.12);
}

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

.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
}

.contact-item i {
  font-size: 1.2rem;
  color: var(--gold-dark);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(201, 160, 80, 0.06);
  border: 1px solid rgba(201, 160, 80, 0.12);
  flex-shrink: 0;
}

.contact-item strong {
  color: var(--text-dark);
  display: block;
  margin-bottom: 2px;
  font-size: 0.82rem;
  letter-spacing: 0.5px;
}
.contact-item a,
.contact-item p {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 500;
}
.contact-item a:hover { color: var(--gold); }

/* ======== FOOTER — Warm Ivory/Gold ======== */
footer {
  background: var(--parchment);
  padding: 60px 0 0;
  border-top: 1px solid rgba(201, 160, 80, 0.15);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 45px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(201, 160, 80, 0.12);
}

.footer-brand h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--gold-dark);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 20px;
  line-height: 1.75;
}

.footer-social { display: flex; gap: 10px; }

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 6px;
  border: 1px solid rgba(201, 160, 80, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  font-size: 0.85rem;
  transition: var(--transition);
  opacity: 0.7;
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  opacity: 1;
  transform: translateY(-2px);
}

.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  margin-bottom: 18px;
  font-size: 1rem;
  letter-spacing: 0.3px;
}

.footer-links a {
  display: block;
  color: var(--text-muted);
  padding: 4px 0;
  font-size: 0.85rem;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--gold); padding-left: 4px; }

.footer-contact p {
  color: var(--text-muted);
  padding: 4px 0;
  font-size: 0.85rem;
}
.footer-contact a { color: var(--text-muted); }
.footer-contact a:hover { color: var(--gold); }
.footer-contact i { color: var(--gold); margin-right: 8px; width: 16px; }

.footer-bottom {
  text-align: center;
  padding: 24px 0;
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  opacity: 0.6;
}

/* ======== BACK TO TOP ======== */
#backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  border-radius: 6px;
  background: var(--gold);
  color: var(--white);
  border: none;
  cursor: pointer;
  font-size: 1rem;
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(201, 160, 80, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}

#backToTop.visible { opacity: 1; visibility: visible; transform: translateY(0); }
#backToTop:hover { transform: translateY(-3px); box-shadow: var(--shadow-gold); }

/* ======== RESPONSIVE ======== */
@media (max-width: 1024px) {
  .hero-split { grid-template-columns: 1fr; text-align: center; gap: 50px; }
  .hero-left { text-align: center; }
  .hero-buttons { justify-content: center; }
  .hero-books-featured { justify-content: center; }
  .hero-book-img { width: 240px; }
  .about-layout { grid-template-columns: 1fr; text-align: center; gap: 50px; }
  .about-image-side { max-width: 280px; margin: 0 auto; }
  .about-content .section-tag { text-align: center; }
  .about-content .section-title { text-align: center; }
  .title-accent-left { margin: 0 auto 25px; }
  .about-stats { justify-content: center; }
  .about-mission { text-align: left; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .price-featured { grid-column: 1 / -1; max-width: 400px; margin: 0 auto; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .new-release-layout { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .new-release-cover { max-width: 300px; margin: 0 auto; }
  .new-release-info .section-tag { text-align: center; }
  .new-release-info { text-align: center; }
  .new-release-buttons { justify-content: center; }
  .new-release-status { justify-content: center; }
  .process-connector { display: none; }
  .process-grid { flex-wrap: wrap; gap: 0; }
  .academic-grid { grid-template-columns: repeat(2, 1fr); }
  .academic-grid > :last-child { grid-column: 1 / -1; max-width: 400px; margin: 0 auto; }
  .academic-benefits { grid-template-columns: 1fr; }
  .resume-grid { grid-template-columns: repeat(2, 1fr); }
  .resume-grid > :last-child { grid-column: 1 / -1; max-width: 400px; margin: 0 auto; }
}

@media (max-width: 768px) {
  .section { padding: 80px 0; }
  .section-header { margin-bottom: 50px; }
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    width: 100%;
    background: rgba(250, 247, 242, 0.98);
    flex-direction: column;
    padding: 24px;
    gap: 14px;
    border-bottom: 1px solid rgba(201, 160, 80, 0.15);
    backdrop-filter: blur(20px);
  }
  .nav-links.active { display: flex; }
  .hero-book-img { width: 200px; }
  .hero-right { margin-top: 10px; }
  #hero::before, #hero::after { left: 16px; right: 16px; }
  .services-grid { grid-template-columns: 1fr; }
  .books-showcase { grid-template-columns: 1fr; gap: 50px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-featured { transform: none; max-width: 100%; }
  .why-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 20px; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-social { justify-content: center; }
  .footer-brand h3 { justify-content: center; }
  .hero-sub { font-size: 0.88rem; }
  .hero-logo { width: 130px; }
  .trust-items { gap: 20px; }
  .trust-item { font-size: 0.82rem; }
  .process-grid { flex-direction: column; align-items: center; }
  .academic-grid { grid-template-columns: 1fr; }
  .academic-grid > :last-child { max-width: 100%; }
  .academic-benefits { padding: 28px 24px; }
  .resume-grid { grid-template-columns: 1fr; }
  .resume-grid > :last-child { max-width: 100%; }
}

@media (max-width: 480px) {
  .section { padding: 60px 0; }
  .hero-title { font-size: 2.2rem; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .about-stats { flex-direction: column; gap: 20px; }
  .hero-book-img { width: 200px; }
  .hero-logo { width: 110px; }
  .cta-banner { padding: 55px 0; }
  .new-release-cover { max-width: 240px; }
  .new-release-buttons { flex-direction: column; align-items: center; }
  .btn { padding: 14px 28px; font-size: 0.78rem; }
  .btn-lg { padding: 16px 34px; }
  #hero::before, #hero::after { left: 10px; right: 10px; }
  .ornate-frame { padding: 40px 20px; }
}
