/* ============================================================
   FUTURE GOLD LTD — Main Stylesheet
   Design: Deep navy + warm gold + clean white
   Fonts: Playfair Display (display) + Inter (body)
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;800&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── CSS Custom Properties ── */
:root {
  --gold:        #C9A84C;
  --gold-light:  #E8C96A;
  --gold-dark:   #A07830;
  --navy:        #0D1B2A;
  --navy-mid:    #162840;
  --navy-light:  #1E3A5F;
  --white:       #FFFFFF;
  --off-white:   #F8F6F1;
  --text-dark:   #1A1A2E;
  --text-mid:    #4A5568;
  --text-light:  #718096;
  --border:      #E2E8F0;
  --success:     #2D9D78;
  --error:       #E53E3E;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;

  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  16px;
  --radius-xl:  24px;

  --shadow-sm:  0 1px 3px rgba(0,0,0,.08);
  --shadow-md:  0 4px 16px rgba(0,0,0,.12);
  --shadow-lg:  0 8px 32px rgba(0,0,0,.16);
  --shadow-gold: 0 4px 20px rgba(201,168,76,.25);

  --transition: 0.25s ease;
  --max-w:      1200px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, select, textarea { font-family: inherit; }

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--navy);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }
p { color: var(--text-mid); }

/* ── Layout ── */
.container {
  width: 92%;
  max-width: var(--max-w);
  margin: 0 auto;
}
.section { padding: 5rem 0; }
.section--alt { background: var(--off-white); }
.section--dark { background: var(--navy); }

/* ── Gold Accent Line ── */
.gold-line {
  display: block;
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin-bottom: 1rem;
}
.gold-line--center { margin: 0 auto 1rem; }

/* ── Section Labels ── */
.section-label {
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .5rem;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 1.8rem;
  border-radius: var(--radius-md);
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn--primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  box-shadow: var(--shadow-gold);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(201,168,76,.4);
}
.btn--outline {
  border-color: var(--gold);
  color: var(--gold);
  background: transparent;
}
.btn--outline:hover {
  background: var(--gold);
  color: var(--navy);
}
.btn--white {
  background: var(--white);
  color: var(--navy);
}
.btn--white:hover {
  background: var(--gold);
  color: var(--navy);
}
.btn--dark {
  background: var(--navy);
  color: var(--white);
}
.btn--dark:hover {
  background: var(--navy-light);
}
.btn--sm { padding: .6rem 1.2rem; font-size: .85rem; }
.btn--full { width: 100%; justify-content: center; }

/* ── Navigation ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(13, 27, 42, 0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201,168,76,.2);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,.3); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-logo-main {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: .03em;
}
.nav-logo-sub {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: .88rem;
  font-weight: 500;
  color: rgba(255,255,255,.8);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-cta { margin-left: 1rem; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── Hero Section ── */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 70px;
}
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(201,168,76,.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(30,58,95,.6) 0%, transparent 50%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A84C' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(201,168,76,.15);
  border: 1px solid rgba(201,168,76,.3);
  border-radius: 50px;
  padding: .4rem 1rem;
  margin-bottom: 2rem;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .4; }
}
.hero h1 {
  color: var(--white);
  margin-bottom: 1rem;
}
.hero h1 span { color: var(--gold); }
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,.75);
  max-width: 580px;
  margin-bottom: 1rem;
}
.hero-supporting {
  font-size: .95rem;
  color: rgba(255,255,255,.5);
  font-style: italic;
  margin-bottom: 2.5rem;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-stats {
  display: flex;
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.1);
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.hero-stat-label {
  font-size: .8rem;
  color: rgba(255,255,255,.5);
  margin-top: .25rem;
}

/* ── Reality Section ── */
.reality-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.reality-problems {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}
.problem-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--off-white);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--gold);
  transition: transform var(--transition);
}
.problem-item:hover { transform: translateX(4px); }
.problem-icon {
  width: 36px; height: 36px;
  background: rgba(201,168,76,.15);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.problem-text {
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-dark);
}
.reality-cta-box {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 3rem;
  position: relative;
  overflow: hidden;
}
.reality-cta-box::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 160px; height: 160px;
  background: radial-gradient(circle, rgba(201,168,76,.15) 0%, transparent 70%);
  border-radius: 50%;
}
.reality-cta-box h3 { color: var(--white); margin-bottom: 1rem; }
.reality-cta-box p { color: rgba(255,255,255,.65); margin-bottom: 1.5rem; }

/* ── Solutions / Services ── */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.solution-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.solution-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: transform var(--transition);
}
.solution-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.solution-card:hover::after { transform: scaleX(1); }
.solution-card--featured {
  background: var(--navy);
  border-color: transparent;
}
.solution-card--featured h3,
.solution-card--featured .solution-number { color: var(--white); }
.solution-card--featured p,
.solution-card--featured li { color: rgba(255,255,255,.7); }
.solution-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: rgba(201,168,76,.2);
  line-height: 1;
  margin-bottom: .5rem;
}
.solution-card h3 { margin-bottom: .75rem; font-size: 1.25rem; }
.solution-card p { font-size: .9rem; margin-bottom: 1rem; }
.solution-features {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  margin-bottom: 1.25rem;
}
.solution-features li {
  font-size: .85rem;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: .5rem;
}
.solution-features li::before {
  content: '→';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}
.solution-outcome {
  background: rgba(201,168,76,.08);
  border: 1px solid rgba(201,168,76,.2);
  border-radius: var(--radius-sm);
  padding: .6rem .9rem;
  font-size: .82rem;
  font-weight: 600;
  color: var(--gold-dark);
}

/* ── Hospitality Page ── */
.hospitality-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 7rem 0 5rem;
  text-align: center;
}
.hospitality-hero h1 { color: var(--white); }
.hospitality-hero p { color: rgba(255,255,255,.7); max-width: 600px; margin: 1rem auto 2rem; }
.hosp-problems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.hosp-problem-card {
  background: var(--off-white);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  border-top: 3px solid var(--gold);
  text-align: center;
}
.hosp-problem-card .icon { font-size: 2rem; margin-bottom: .75rem; }
.hosp-problem-card h4 { margin-bottom: .5rem; font-size: 1rem; }
.hosp-problem-card p { font-size: .85rem; }

/* ── About Page ── */
.about-hero {
  background: var(--navy);
  padding: 8rem 0 5rem;
}
.about-hero h1 { color: var(--white); }
.about-hero p { color: rgba(255,255,255,.7); max-width: 580px; margin-top: 1rem; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}
.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}
.value-card {
  padding: 1.25rem;
  border-radius: var(--radius-md);
  background: var(--off-white);
  border-left: 3px solid var(--gold);
}
.value-card h4 { margin-bottom: .25rem; font-size: .95rem; }
.value-card p { font-size: .82rem; }
.team-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.team-card-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: var(--gold);
}
.team-card-body { padding: 2rem; }
.team-card-body h3 { margin-bottom: .25rem; }
.team-card-body .role {
  color: var(--gold);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.team-card-body p { font-size: .9rem; }
.focus-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 1rem;
}
.focus-tag {
  background: rgba(201,168,76,.1);
  color: var(--gold-dark);
  border: 1px solid rgba(201,168,76,.3);
  border-radius: 50px;
  padding: .3rem .8rem;
  font-size: .75rem;
  font-weight: 600;
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.stat-card {
  background: var(--navy);
  border-radius: var(--radius-md);
  padding: 2rem;
  text-align: center;
}
.stat-card .num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--gold);
  font-weight: 800;
  line-height: 1;
}
.stat-card .label {
  font-size: .82rem;
  color: rgba(255,255,255,.6);
  margin-top: .5rem;
}

/* ── Contact Page ── */
.contact-hero {
  background: var(--navy);
  padding: 8rem 0 5rem;
  text-align: center;
}
.contact-hero h1 { color: var(--white); }
.contact-hero p { color: rgba(255,255,255,.7); max-width: 560px; margin: 1rem auto 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: start;
  padding: 4rem 0;
}
.contact-info-card {
  background: var(--navy);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  position: sticky;
  top: 90px;
}
.contact-info-card h3 { color: var(--white); margin-bottom: .5rem; }
.contact-info-card .sub { color: rgba(255,255,255,.6); font-size: .9rem; margin-bottom: 2rem; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.contact-item:last-of-type { border-bottom: none; }
.contact-item-icon {
  width: 40px; height: 40px;
  background: rgba(201,168,76,.15);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-item-text small {
  display: block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .2rem;
}
.contact-item-text span { color: rgba(255,255,255,.8); font-size: .9rem; }

/* Form */
.form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.form-card h3 { margin-bottom: .5rem; }
.form-card .sub { color: var(--text-light); font-size: .9rem; margin-bottom: 2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: .4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-size: .9rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,.15);
}
.form-group textarea { resize: vertical; min-height: 130px; }

/* ── Books / Shop ── */
.shop-hero {
  background: var(--navy);
  padding: 7rem 0 4rem;
  text-align: center;
}
.shop-hero h1 { color: var(--white); }
.shop-hero p { color: rgba(255,255,255,.7); max-width: 580px; margin: 1rem auto 2rem; }
.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2rem;
}
.shop-filter-row {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
}
.filter-btn {
  padding: .45rem 1rem;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  background: var(--white);
  font-size: .82rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--text-mid);
  transition: all var(--transition);
}
.filter-btn.active,
.filter-btn:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--navy);
}
.books-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}
.book-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.book-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.book-cover {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  position: relative;
  overflow: hidden;
}
.book-badge {
  position: absolute;
  top: .75rem; right: .75rem;
  background: var(--gold);
  color: var(--navy);
  font-size: .7rem;
  font-weight: 700;
  padding: .2rem .6rem;
  border-radius: 50px;
  text-transform: uppercase;
}
.book-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.book-category {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .4rem;
}
.book-body h4 {
  font-size: 1rem;
  margin-bottom: .4rem;
  color: var(--text-dark);
}
.book-body p { font-size: .82rem; margin-bottom: 1rem; flex: 1; }
.book-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}
.book-price {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
}
.book-price .old {
  font-size: .8rem;
  text-decoration: line-through;
  color: var(--text-light);
  margin-left: .25rem;
}
.add-to-cart {
  padding: .5rem 1rem;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: var(--radius-md);
  font-size: .82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}
.add-to-cart:hover { background: var(--gold); color: var(--navy); }
.add-to-cart.added { background: var(--success); }

/* ── Cart ── */
.cart-icon-wrap {
  position: relative;
  display: inline-block;
}
.cart-count {
  position: absolute;
  top: -8px; right: -8px;
  background: var(--gold);
  color: var(--navy);
  font-size: .65rem;
  font-weight: 800;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  display: none;
}
.cart-count.visible { display: flex; }

.cart-page { padding: 7rem 0 4rem; }
.cart-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2.5rem;
  align-items: start;
  margin-top: 2rem;
}
.cart-items-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
}
.cart-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
}
.cart-item:last-child { border-bottom: none; }
.cart-item-cover {
  width: 64px; height: 80px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  flex-shrink: 0;
}
.cart-item-info { flex: 1; }
.cart-item-info h4 { font-size: .95rem; margin-bottom: .2rem; }
.cart-item-info small { color: var(--gold); font-size: .75rem; font-weight: 600; }
.cart-item-qty {
  display: flex;
  align-items: center;
  gap: .5rem;
}
.qty-btn {
  width: 28px; height: 28px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  background: var(--off-white);
  cursor: pointer;
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.qty-btn:hover { border-color: var(--gold); color: var(--gold); }
.qty-num { width: 24px; text-align: center; font-weight: 600; font-size: .9rem; }
.cart-item-price {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy);
  font-size: 1.05rem;
  min-width: 70px;
  text-align: right;
}
.remove-btn {
  background: none;
  border: none;
  color: var(--text-light);
  cursor: pointer;
  font-size: 1.1rem;
  transition: color var(--transition);
  padding: .25rem;
}
.remove-btn:hover { color: var(--error); }
.cart-empty {
  text-align: center;
  padding: 4rem 2rem;
}
.cart-empty .icon { font-size: 3rem; margin-bottom: 1rem; }
.cart-empty h3 { margin-bottom: .5rem; }
.cart-empty p { font-size: .9rem; margin-bottom: 1.5rem; }

.order-summary {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 1.75rem;
  position: sticky;
  top: 90px;
}
.order-summary h3 { margin-bottom: 1.5rem; }
.summary-line {
  display: flex;
  justify-content: space-between;
  font-size: .9rem;
  padding: .6rem 0;
  border-bottom: 1px solid var(--border);
}
.summary-line:last-of-type { border-bottom: none; }
.summary-total {
  display: flex;
  justify-content: space-between;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  padding: .75rem 0;
  margin-top: .5rem;
  border-top: 2px solid var(--navy);
}
.promo-row {
  display: flex;
  gap: .5rem;
  margin: 1rem 0;
}
.promo-row input {
  flex: 1;
  padding: .6rem .9rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-size: .85rem;
  outline: none;
}
.promo-row input:focus { border-color: var(--gold); }
.promo-row button {
  padding: .6rem 1rem;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: var(--radius-md);
  font-size: .82rem;
  font-weight: 600;
  cursor: pointer;
}

/* ── Checkout ── */
.checkout-page { padding: 7rem 0 4rem; }
.checkout-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2.5rem;
  align-items: start;
  margin-top: 2rem;
}
.checkout-steps {
  display: flex;
  gap: 0;
  margin-bottom: 2rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
}
.checkout-step {
  flex: 1;
  padding: .75rem 1rem;
  text-align: center;
  font-size: .8rem;
  font-weight: 600;
  color: var(--text-light);
  background: var(--off-white);
  border-right: 1px solid var(--border);
  position: relative;
}
.checkout-step:last-child { border-right: none; }
.checkout-step.active {
  background: var(--gold);
  color: var(--navy);
}
.checkout-step.done {
  background: var(--navy);
  color: var(--white);
}
.checkout-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border);
  margin-bottom: 1.5rem;
}
.checkout-form-card h4 { margin-bottom: 1.25rem; }
.payment-options { display: flex; flex-direction: column; gap: .75rem; margin-bottom: 1.25rem; }
.payment-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition);
}
.payment-option:hover,
.payment-option.selected { border-color: var(--gold); background: rgba(201,168,76,.05); }
.payment-option input[type="radio"] { accent-color: var(--gold); }
.payment-option .method-icon { font-size: 1.5rem; }
.payment-option .method-info small { display: block; font-size: .75rem; color: var(--text-light); }
.payment-option .method-info strong { font-size: .9rem; }

/* ── Order Confirmation ── */
.confirmation-page { padding: 7rem 0 4rem; }
.confirmation-card {
  max-width: 680px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 3rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.confirmation-icon {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.5rem;
}
.confirmation-card h2 { margin-bottom: .5rem; }
.confirmation-card .order-id {
  display: inline-block;
  background: var(--off-white);
  border-radius: 50px;
  padding: .4rem 1.2rem;
  font-size: .85rem;
  font-weight: 700;
  color: var(--text-mid);
  margin: .75rem 0 1.5rem;
}
.order-detail-table { text-align: left; width: 100%; margin: 1.5rem 0; }
.order-detail-table tr { border-bottom: 1px solid var(--border); }
.order-detail-table td { padding: .65rem .5rem; font-size: .88rem; }
.order-detail-table td:last-child { text-align: right; font-weight: 600; }

/* ── Results / Testimonials ── */
.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.result-item {
  text-align: center;
  padding: 1.75rem 1rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.result-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.result-icon { font-size: 2rem; margin-bottom: .75rem; }
.result-item h4 { font-size: 1rem; color: var(--navy); }
.result-item p { font-size: .82rem; }

/* ── CTA Banner ── */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,.08) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.cta-banner h2 { color: var(--white); margin-bottom: 1rem; }
.cta-banner p { color: rgba(255,255,255,.7); max-width: 520px; margin: 0 auto 2rem; }
.cta-banner-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── Toast ── */
.toast-container {
  position: fixed;
  bottom: 1.5rem; right: 1.5rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.toast {
  background: var(--navy);
  color: var(--white);
  padding: .85rem 1.25rem;
  border-radius: var(--radius-md);
  font-size: .88rem;
  border-left: 3px solid var(--gold);
  box-shadow: var(--shadow-lg);
  animation: slideIn .3s ease;
  display: flex;
  align-items: center;
  gap: .6rem;
  max-width: 300px;
}
@keyframes slideIn {
  from { transform: translateX(110%); opacity: 0; }
  to   { transform: translateX(0);    opacity: 1; }
}
.toast.hide { animation: slideOut .3s ease forwards; }
@keyframes slideOut {
  to { transform: translateX(110%); opacity: 0; }
}

/* ── Footer ── */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,.7);
  padding: 4rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: .3rem;
}
.footer-brand-sub {
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 1rem;
}
.footer-desc { font-size: .85rem; line-height: 1.7; margin-bottom: 1.25rem; }
.footer-contact-mini { display: flex; flex-direction: column; gap: .4rem; }
.footer-contact-mini a { font-size: .82rem; color: rgba(255,255,255,.6); transition: color var(--transition); }
.footer-contact-mini a:hover { color: var(--gold); }
.footer-col h5 {
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .5rem; }
.footer-col ul li a { font-size: .85rem; transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .78rem;
  color: rgba(255,255,255,.4);
}
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { transition: color var(--transition); }
.footer-bottom-links a:hover { color: rgba(255,255,255,.7); }

/* ── Utility ── */
.text-gold { color: var(--gold); }
.text-center { text-align: center; }
.text-white { color: var(--white); }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.hidden { display: none !important; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.back-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--text-mid);
  font-size: .85rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  transition: color var(--transition);
}
.back-link:hover { color: var(--gold); }

/* ── Breadcrumb ── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 1rem;
}
.breadcrumb a { color: rgba(255,255,255,.5); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold); }

/* ── Alert / Success Messages ── */
.alert {
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  font-size: .88rem;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: .75rem;
}
.alert--success {
  background: rgba(45,157,120,.1);
  border: 1px solid rgba(45,157,120,.3);
  color: #1a7a5e;
}
.alert--error {
  background: rgba(229,62,62,.1);
  border: 1px solid rgba(229,62,62,.3);
  color: #c53030;
}
.alert--info {
  background: rgba(201,168,76,.1);
  border: 1px solid rgba(201,168,76,.3);
  color: var(--gold-dark);
}

/* ── Scroll-to-top ── */
.scroll-top {
  position: fixed;
  bottom: 5rem; right: 1.5rem;
  z-index: 999;
  width: 44px; height: 44px;
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  font-size: 1.1rem;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { background: var(--gold-dark); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .checkout-grid { grid-template-columns: 1fr; }
  .cart-grid { grid-template-columns: 1fr; }
  .reality-grid { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  :root { --max-w: 100%; }
  .section { padding: 3.5rem 0; }

  /* Nav mobile */
  .nav-links {
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: var(--navy);
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem;
    gap: 1.25rem;
    border-top: 1px solid rgba(201,168,76,.2);
    transform: translateY(-120%);
    opacity: 0;
    transition: all .3s ease;
    pointer-events: none;
    z-index: 999;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .nav-links a { font-size: 1rem; }
  .nav-cta { margin-left: 0; }
  .nav-toggle { display: flex; }

  /* Hero */
  .hero { min-height: auto; padding: 5rem 0 3rem; }
  .hero-stats { gap: 1.5rem; flex-wrap: wrap; }
  .hero-ctas .btn { padding: .75rem 1.4rem; font-size: .88rem; }

  /* Grids */
  .solutions-grid { grid-template-columns: 1fr; }
  .books-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .hosp-problems-grid { grid-template-columns: 1fr 1fr; }
  .results-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* Cart / Checkout */
  .cart-item { flex-wrap: wrap; gap: .75rem; }
  .checkout-steps { flex-direction: column; }
  .checkout-step { border-right: none; border-bottom: 1px solid var(--border); }
  .confirmation-card { padding: 2rem 1.5rem; }
}

@media (max-width: 480px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .books-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 1rem; }
  .stats-row { grid-template-columns: 1fr; }
  .hosp-problems-grid { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: 1fr; }
  .cta-banner-btns { flex-direction: column; align-items: center; }
  .shop-toolbar { flex-direction: column; align-items: flex-start; }
  .reality-cta-box { padding: 2rem; }
}

/* ── Reduced Motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* ── Print ── */
@media print {
  .navbar, .footer, .scroll-top, .toast-container { display: none; }
  body { background: white; color: black; }
}
