/* ============================================================
   CURATED FOR CLASS — Design System
   Aesthetic: Quiet luxury, editorial, founder-led boutique
   Influences: Aman, Cereal Magazine, Monocle, Aesop
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Inter:wght@300;400;500;600&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  /* Palette — crisp ivory, warm charcoal, refined brass */
  --paper: #faf8f3;
  --paper-warm: #f0ebe1;
  --paper-deep: #e5ddd0;
  --ink: #1e1b17;
  --ink-soft: #3b3530;
  --ink-quiet: #6b6259;
  --ink-faint: #a59b8f;
  --brass: #937242;
  --brass-deep: #7a5a2e;
  --accent: #b8895a;
  --line: rgba(30, 27, 23, 0.10);
  --line-soft: rgba(30, 27, 23, 0.05);
  --shadow: rgba(30, 27, 23, 0.08);

  /* Type */
  --display: 'Cormorant Garamond', 'Times New Roman', serif;
  --body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: 'JetBrains Mono', 'Courier New', monospace;

  /* Spacing scale */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 8rem;
  --space-2xl: 12rem;

  /* Layout */
  --max-w: 1280px;
  --max-w-text: 680px;
}

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

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

body {
  font-family: var(--body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
}

/* Subtle paper texture */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.4;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(184, 137, 90, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(138, 109, 59, 0.03) 0%, transparent 50%);
}

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

a { color: var(--ink); text-decoration: none; transition: color 0.3s ease; }
a:hover { color: var(--brass); }

/* ============================================================
   Typography
   ============================================================ */
h1, h2, h3, h4, h5 {
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--ink);
}

h1 {
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 300;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 400;
}

h3 {
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  font-weight: 400;
}

h4 {
  font-size: 1.25rem;
  font-weight: 500;
}

.eyebrow {
  font-family: var(--body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--brass);
  display: inline-block;
  position: relative;
  padding-left: 2.5rem;
}

.eyebrow::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 2rem;
  height: 1px;
  background: var(--brass);
}

.eyebrow.center {
  padding-left: 0;
}
.eyebrow.center::before { display: none; }

.italic { font-style: italic; }

p { max-width: var(--max-w-text); }

.lead {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1.4;
  color: var(--ink-soft);
}

.small-caps {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ============================================================
   Layout primitives
   ============================================================ */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.container-narrow {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

section { padding: 6rem 0; position: relative; }
section.tight { padding: 3rem 0; }

.divider {
  width: 60px;
  height: 1px;
  background: var(--brass);
  margin: 2rem 0;
}

.divider.center { margin: 2rem auto; }

/* ============================================================
   Navigation
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 2rem;
  background: rgba(250, 248, 243, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line-soft);
  transition: padding 0.3s ease;
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--ink);
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
}

.brand-mark {
  font-style: italic;
  color: var(--brass);
}

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

.nav-links a {
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--ink-soft);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: var(--brass);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta {
  background: var(--ink);
  color: var(--paper) !important;
  padding: 0.75rem 1.5rem;
  border-radius: 0;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s ease;
}
.nav-cta:hover { background: var(--brass-deep); color: var(--paper) !important; }
.nav-cta::after { display: none !important; }

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 28px;
  height: 22px;
  flex-direction: column;
  justify-content: space-between;
}

.mobile-toggle span {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--ink);
  transition: all 0.3s ease;
}

/* ============================================================
   Hero — Full-bleed
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 6rem;
  padding-bottom: 4rem;
  position: relative;
  overflow: hidden;
}

.hero-fullbleed {
  align-items: flex-end;
  padding-bottom: 6rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to bottom, rgba(30, 27, 23, 0.25) 0%, rgba(30, 27, 23, 0.1) 40%, rgba(30, 27, 23, 0.55) 70%, rgba(30, 27, 23, 0.85) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
}

.hero-fullbleed .eyebrow {
  color: rgba(250, 248, 243, 0.9);
}
.hero-fullbleed .eyebrow::before {
  background: rgba(250, 248, 243, 0.9);
}

.hero-fullbleed h1 {
  color: var(--paper);
  margin-bottom: 2rem;
}

.hero h1 .underline {
  position: relative;
  display: inline-block;
}
.hero h1 .underline::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0.1em;
  width: 100%;
  height: 6px;
  background: var(--brass);
  opacity: 0.5;
  z-index: -1;
}

.hero-fullbleed .lead {
  color: rgba(250, 248, 243, 0.85);
  max-width: 680px;
}

.btn-ghost-light {
  background: transparent;
  color: var(--paper);
  border: 1px solid rgba(250, 248, 243, 0.5);
}
.btn-ghost-light:hover {
  background: var(--paper);
  color: var(--ink);
}

.btn-secondary {
  background: var(--brass);
  color: var(--paper);
  border: 1px solid var(--brass);
}
.btn-secondary:hover {
  background: var(--brass-deep);
  color: var(--paper);
  transform: translateY(-2px);
}

.hero-stamp {
  position: relative;
  display: inline-flex;
  margin-top: 2.5rem;
  width: 130px;
  height: 130px;
  background: rgba(250, 248, 243, 0.95);
  border: 1px solid var(--brass);
  border-radius: 50%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--display);
  font-style: italic;
  font-size: 0.8rem;
  color: var(--brass-deep);
  padding: 1rem;
  line-height: 1.2;
  transform: rotate(-8deg);
  box-shadow: 0 10px 30px rgba(30, 27, 23, 0.2);
}
.hero-stamp strong {
  font-family: var(--display);
  font-style: normal;
  font-size: 1.4rem;
  font-weight: 500;
  display: block;
  color: var(--ink);
  margin: 0.25rem 0;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  font-family: var(--body);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  position: relative;
}

.btn-primary {
  background: var(--ink);
  color: var(--paper);
}
.btn-primary:hover { background: var(--brass-deep); color: var(--paper); transform: translateY(-2px); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--paper); }

.btn-text {
  background: none;
  padding: 0;
  color: var(--ink);
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  border-bottom: 1px solid var(--brass);
  padding-bottom: 0.4rem;
}
.btn-text:hover { color: var(--brass); }

.btn-arrow::after {
  content: '→';
  transition: transform 0.3s ease;
}
.btn-arrow:hover::after { transform: translateX(4px); }

.btn-group { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }

/* ============================================================
   Trust strip
   ============================================================ */
.trust-strip {
  padding: 3.5rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper-warm);
}

.trust-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  text-align: center;
}

.trust-stat {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
}

.trust-stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -1.5rem;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: var(--line);
}

.trust-num {
  font-family: var(--display);
  font-size: 3.25rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1;
}

.trust-label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-quiet);
  font-weight: 500;
}

/* ============================================================
   Two-col / Founder
   ============================================================ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.two-col.reverse > :first-child { order: 2; }

.section-header {
  margin-bottom: 4rem;
}

.section-header.center { text-align: center; }
.section-header.center .eyebrow { padding-left: 0; }
.section-header.center .eyebrow::before { display: none; }

/* ============================================================
   Services / Pricing cards
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.service-card {
  background: var(--paper-warm);
  padding: 3rem 2.5rem;
  border: 1px solid var(--line);
  position: relative;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: visible;
}

.service-card:hover {
  background: var(--paper);
  border-color: var(--brass);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px var(--shadow);
}

.service-card.featured {
  background: linear-gradient(145deg, #3b3530, #2c2620);
  color: var(--paper);
  border-color: rgba(147, 114, 66, 0.25);
}
.service-card.featured h3, .service-card.featured .service-price { color: var(--paper); }
.service-card.featured .service-desc, .service-card.featured li { color: rgba(244, 239, 230, 0.7); }
.service-card.featured:hover {
  background: linear-gradient(145deg, #4a4440, #3b3530);
  border-color: var(--brass);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px var(--shadow);
}
.service-card.featured .service-price {
  border-top-color: rgba(244, 239, 230, 0.15);
  border-bottom-color: rgba(244, 239, 230, 0.15);
}
.service-card.featured li { border-bottom-color: rgba(244, 239, 230, 0.08); }
.service-card.featured .featured-tag {
  position: absolute;
  top: -12px;
  right: 2rem;
  background: var(--brass);
  color: var(--paper);
  padding: 0.4rem 1rem;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.complimentary-tag {
  position: absolute;
  top: -12px;
  right: 2rem;
  background: var(--ink);
  color: var(--paper);
  padding: 0.4rem 1rem;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.service-num {
  font-family: var(--display);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--brass);
  margin-bottom: 1rem;
}

.service-card h3 { margin-bottom: 1rem; }

.service-price {
  font-family: var(--display);
  font-size: 2rem;
  color: var(--ink);
  margin: 1.5rem 0;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.service-price small {
  font-family: var(--body);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-quiet);
  display: block;
  margin-top: 0.25rem;
}
.service-card.featured .service-price small { color: rgba(244, 239, 230, 0.5); }

.service-desc {
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.service-card ul {
  list-style: none;
  flex-grow: 1;
  margin-bottom: 2rem;
}

.service-card > .btn {
  margin-top: auto;
  align-self: flex-start;
}

.service-card li {
  padding: 0.6rem 0;
  font-size: 0.9rem;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line-soft);
  position: relative;
  padding-left: 1.5rem;
}

.service-card li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--brass);
}

/* ============================================================
   Process / Steps
   ============================================================ */
.process {
  background: var(--paper-warm);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  margin-top: 4rem;
  border: 1px solid var(--line);
}

.process-step {
  background: var(--paper-warm);
  padding: 2.5rem 2rem;
  position: relative;
}

.process-visual {
  color: var(--brass);
  margin-bottom: 1rem;
  opacity: 0.7;
}

.process-num {
  font-family: var(--display);
  font-size: 4rem;
  font-weight: 300;
  color: var(--brass);
  line-height: 1;
  margin-bottom: 1rem;
  font-style: italic;
}

.process-step h4 {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
}

.process-step p {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

/* ============================================================
   Portfolio / Scorecard preview
   ============================================================ */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.review-card {
  background: var(--paper);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
}

.review-card:hover {
  transform: translateY(-4px);
  border-color: var(--brass);
  box-shadow: 0 16px 32px var(--shadow);
}

.review-img {
  aspect-ratio: 4/3;
  background:
    linear-gradient(135deg, var(--paper-deep), var(--paper-warm));
  overflow: hidden;
  position: relative;
}

.review-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 30% 40%, rgba(184, 137, 90, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 70% 60%, rgba(138, 109, 59, 0.1) 0%, transparent 40%);
  z-index: 0;
}

.review-img img {
  width: 100%; height: 100%; object-fit: cover;
  position: relative;
  z-index: 1;
  transition: transform 0.6s ease;
}
.review-card:hover .review-img img { transform: scale(1.05); }

.review-score {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  z-index: 2;
  background: var(--paper);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--ink);
  box-shadow: 0 4px 12px var(--shadow);
}

.review-body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.review-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-quiet);
  margin-bottom: 0.75rem;
}

.review-card h4 {
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.review-card p {
  font-size: 0.9rem;
  color: var(--ink-soft);
  flex: 1;
}


/* ============================================================
   Quote / Testimonial
   ============================================================ */
.quote-section {
  text-align: center;
  background: var(--ink);
  color: var(--paper);
}

.quote-section .eyebrow { color: var(--brass); }
.quote-section .eyebrow::before { background: var(--brass); }

.quote-mark {
  font-family: var(--display);
  font-size: 6rem;
  line-height: 0.5;
  color: var(--brass);
  margin-bottom: 1rem;
}

.quote-text {
  font-family: var(--display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  line-height: 1.3;
  max-width: 900px;
  margin: 0 auto 3rem;
  color: var(--paper);
}

.quote-attr {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(244, 239, 230, 0.6);
}

/* ============================================================
   FAQ — critical for AIO
   ============================================================ */
.faq-list {
  max-width: 880px;
  margin: 4rem auto 0;
}

.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 2rem 0;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--display);
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.3;
  padding: 0;
}

.faq-question .faq-icon {
  font-family: var(--display);
  font-size: 1.5rem;
  color: var(--brass);
  flex-shrink: 0;
  transition: transform 0.4s ease;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.open .faq-answer {
  max-height: 600px;
  padding-top: 1.5rem;
}

.faq-answer p {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 100%;
}

.faq-answer p + p { margin-top: 1rem; }

/* ============================================================
   CTA
   ============================================================ */
.cta-section {
  background: var(--paper-deep);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(184, 137, 90, 0.08) 0%, transparent 60%);
  z-index: 0;
}

.cta-section .container { position: relative; z-index: 2; }

.cta-section h2 { margin-bottom: 1.5rem; }
.cta-section p { margin: 0 auto 2.5rem; color: var(--ink-soft); font-size: 1.1rem; }

/* ============================================================
   Footer
   ============================================================ */
footer {
  background: var(--ink);
  color: var(--paper);
  padding: 5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(244, 239, 230, 0.1);
}

footer h5 {
  color: var(--paper);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  font-family: var(--body);
  font-weight: 500;
}

footer .brand {
  color: var(--paper);
  font-size: 2rem;
  margin-bottom: 1rem;
}

footer p {
  color: rgba(244, 239, 230, 0.6);
  font-size: 0.9rem;
  max-width: 360px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: rgba(244, 239, 230, 0.7);
  font-size: 0.9rem;
}
.footer-links a:hover { color: var(--brass); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  font-size: 0.8rem;
  color: rgba(244, 239, 230, 0.5);
}

/* ============================================================
   Page hero (interior pages)
   ============================================================ */
.page-hero {
  padding: 10rem 0 5rem;
  text-align: center;
  border-bottom: 1px solid var(--line);
}

.page-hero .eyebrow { margin-bottom: 1.5rem; padding-left: 0; }
.page-hero .eyebrow::before { display: none; }

.page-hero h1 { margin-bottom: 1.5rem; }
.page-hero .lead { max-width: 720px; margin: 0 auto; }

/* ============================================================
   Scorecard table
   ============================================================ */
.scorecard-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--line);
  margin-bottom: 0;
}

.scorecard-filters {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.filter-pill {
  padding: 0.5rem 1.2rem;
  background: transparent;
  border: 1px solid var(--line);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  color: var(--ink-quiet);
  transition: all 0.3s ease;
  font-family: var(--body);
}
.filter-pill:hover { color: var(--ink); border-color: var(--ink); }
.filter-pill.active { background: var(--ink); color: var(--paper); border-color: var(--ink); }

.region-filter-banner {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  background: var(--paper-warm);
  border: 1px solid var(--brass);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brass-deep);
  font-weight: 500;
}

.score-search {
  background: transparent;
  border: 1px solid var(--line);
  padding: 0.6rem 1rem;
  font-family: var(--body);
  font-size: 0.85rem;
  color: var(--ink);
  width: 240px;
}
.score-search:focus { outline: none; border-color: var(--brass); }

.score-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 0;
}

.score-table thead { border-bottom: 2px solid var(--ink); }
.score-table th {
  text-align: left;
  padding: 1.5rem 1rem;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-quiet);
  font-weight: 500;
}

.score-table td {
  padding: 1.5rem 1rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
  vertical-align: top;
}

.score-table tr { transition: background 0.2s ease; }
.score-table tr:hover { background: var(--paper-warm); }

.score-name {
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--ink);
  display: block;
}

.score-loc {
  font-size: 0.75rem;
  color: var(--ink-quiet);
  letter-spacing: 0.05em;
  margin-top: 0.25rem;
}

.score-pill {
  display: inline-block;
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--ink);
  padding: 0.25rem 0.75rem;
  background: var(--paper-warm);
  border: 1px solid var(--line);
}

.score-pill.gold { background: var(--brass); color: var(--paper); border-color: var(--brass); }
.score-pill.silver { background: var(--paper-deep); }

.score-category {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brass);
}

/* ============================================================
   Methodology
   ============================================================ */
.method-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin-top: 4rem;
}

.method-card {
  padding: 2.5rem;
  background: var(--paper-warm);
  border-left: 2px solid var(--brass);
}

.method-card h4 {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1rem;
}

.method-card p {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

/* ============================================================
   Bespoke Journey — elevated card design
   ============================================================ */
.service-card.bespoke {
  background: linear-gradient(145deg, #1e1b17, #12100d);
  color: var(--paper);
  border-color: var(--brass);
  position: relative;
  overflow: visible;
}

.service-card.bespoke::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(147, 114, 66, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.service-card.bespoke:hover {
  background: linear-gradient(145deg, #252119, #18150f);
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(147, 114, 66, 0.15);
}

.service-card.bespoke h3,
.service-card.bespoke .service-price { color: var(--paper); }
.service-card.bespoke .service-price {
  border-top-color: rgba(244, 239, 230, 0.15);
  border-bottom-color: rgba(244, 239, 230, 0.15);
}
.service-card.bespoke .service-num { color: var(--accent); }
.service-card.bespoke .service-desc,
.service-card.bespoke li { color: rgba(244, 239, 230, 0.7); }
.service-card.bespoke .service-price small { color: rgba(244, 239, 230, 0.5); }
.service-card.bespoke li { border-bottom-color: rgba(244, 239, 230, 0.08); }

.bespoke-tag {
  position: absolute;
  top: -12px;
  right: 2rem;
  background: linear-gradient(135deg, var(--brass), var(--accent));
  color: var(--paper);
  padding: 0.4rem 1rem;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.btn-bespoke {
  background: linear-gradient(135deg, var(--brass), var(--accent));
  color: var(--paper);
  border: none;
  transition: all 0.3s ease;
}
.btn-bespoke:hover {
  background: linear-gradient(135deg, var(--accent), var(--brass));
  color: var(--paper);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(147, 114, 66, 0.3);
}

.bespoke-ideal {
  margin-top: auto;
  margin-bottom: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(244, 239, 230, 0.08);
}

.bespoke-ideal-label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.bespoke-ideal-items {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.bespoke-ideal-items span {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  border: 1px solid rgba(184, 137, 90, 0.3);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(244, 239, 230, 0.6);
  transition: all 0.3s ease;
}

.service-card.bespoke:hover .bespoke-ideal-items span {
  border-color: rgba(184, 137, 90, 0.5);
  color: rgba(244, 239, 230, 0.8);
}

/* ============================================================
   Comparison grid — CFC vs. Networks
   ============================================================ */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.compare-col {
  padding: 2.5rem;
  border: 1px solid var(--line);
  position: relative;
}

.compare-col--cfc {
  background: var(--paper);
  border-color: var(--brass);
  box-shadow: 0 8px 32px rgba(147, 114, 66, 0.08);
}

.compare-col--network {
  background: var(--paper);
  border-color: var(--line);
}

.compare-header {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}

.compare-header h3 {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 400;
  margin-top: 0.75rem;
}

.compare-badge {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
}

.compare-badge--cfc {
  background: var(--brass);
  color: var(--paper);
}

.compare-badge--network {
  background: var(--paper-deep);
  color: var(--ink-quiet);
}

.compare-list {
  list-style: none;
}

.compare-list li {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line-soft);
  align-items: flex-start;
}

.compare-list li:last-child { border-bottom: none; }

.compare-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 0.1rem;
}

.compare-icon--pos {
  color: var(--brass-deep);
  background: rgba(147, 114, 66, 0.1);
  border-radius: 50%;
}

.compare-icon--neu {
  color: var(--ink-faint);
  font-size: 1.2rem;
}

.compare-list strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.2rem;
}

.compare-list span {
  font-size: 0.82rem;
  color: var(--ink-quiet);
  line-height: 1.4;
}

/* ============================================================
   Real-world example cards
   ============================================================ */
.examples-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.example-card {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 2.5rem;
  transition: all 0.4s ease;
}

.example-card:hover {
  border-color: var(--brass);
  box-shadow: 0 16px 40px var(--shadow);
  transform: translateY(-2px);
}

.example-destination {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.example-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--brass), var(--accent));
  color: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.example-eyebrow {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.example-destination h4 {
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--ink);
}

.example-scenario {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line-soft);
}

.example-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.example-compare-item {
  padding: 1.25rem;
  text-align: center;
}

.example-compare-item--other {
  background: var(--paper-warm);
  border: 1px solid var(--line);
}

.example-compare-item--cfc {
  background: var(--ink);
  border: 1px solid var(--ink);
  color: var(--paper);
}

.example-compare-label {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.example-compare-item--other .example-compare-label { color: var(--ink-quiet); }
.example-compare-item--cfc .example-compare-label { color: var(--accent); }

.example-compare-value {
  display: block;
  font-family: var(--display);
  font-size: 1.75rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.example-compare-item--other .example-compare-value { color: var(--ink-quiet); text-decoration: line-through; text-decoration-color: rgba(30, 27, 23, 0.2); }
.example-compare-item--cfc .example-compare-value { color: var(--paper); }
.example-compare-value small {
  font-family: var(--body);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.7;
}

.example-compare-note {
  display: block;
  font-size: 0.7rem;
  line-height: 1.3;
}
.example-compare-item--other .example-compare-note { color: var(--ink-faint); }
.example-compare-item--cfc .example-compare-note { color: rgba(244, 239, 230, 0.5); }

.example-savings {
  text-align: center;
  padding: 1.25rem;
  background: linear-gradient(135deg, rgba(147, 114, 66, 0.08), rgba(184, 137, 90, 0.06));
  border: 1px solid rgba(147, 114, 66, 0.15);
  margin-bottom: 1.5rem;
}

.example-savings-amount {
  display: block;
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--brass-deep);
}

.example-savings-label {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 600;
  margin-top: 0.25rem;
}

.example-details p {
  font-size: 0.85rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

.example-closing {
  text-align: center;
  max-width: 700px;
  margin: 3rem auto 0;
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.6;
  font-style: italic;
  font-family: var(--display);
  font-size: 1.1rem;
}

/* ============================================================
   About page
   ============================================================ */
.about-img {
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--paper-deep), var(--paper-warm));
  overflow: hidden;
  position: relative;
}

.about-img::before {
  content: 'CS';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-style: italic;
  font-size: 10rem;
  font-weight: 300;
  color: rgba(138, 109, 59, 0.2);
  z-index: 0;
}

.about-img img { width: 100%; height: 100%; object-fit: cover; position: relative; z-index: 1; }

.signature {
  font-family: var(--display);
  font-style: italic;
  font-size: 2rem;
  color: var(--brass-deep);
  margin-top: 2rem;
  display: block;
}

.loyalty-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--paper);
  border: 1px solid var(--line);
  font-family: var(--body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--ink-soft);
  transition: all 0.3s ease;
}

.loyalty-badge:hover {
  border-color: var(--brass);
  color: var(--brass-deep);
}

/* Brand showcase grid — Fora-inspired layout */
.brand-showcase {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.brand-showcase-group {
  text-align: center;
}

.brand-showcase-label {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.brand-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
}

.brand-tile {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 2rem;
  min-width: 160px;
  background: var(--paper);
  border: 1px solid var(--line);
  margin: -0.5px;
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: 0.02em;
  transition: all 0.3s ease;
  text-align: center;
}

.brand-tile:hover {
  background: #fff;
  border-color: var(--brass);
  color: var(--brass-deep);
  z-index: 1;
  position: relative;
}

@media (max-width: 768px) {
  .brand-tile {
    min-width: 140px;
    padding: 1rem 1.25rem;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .brand-tile {
    min-width: 120px;
    padding: 0.85rem 1rem;
    font-size: 0.85rem;
  }
}

.bio-list {
  list-style: none;
  margin-top: 2rem;
}

.bio-list li {
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 2rem;
  align-items: baseline;
}

.bio-list .label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-quiet);
}

.bio-list .value {
  font-family: var(--display);
  font-size: 1.1rem;
  color: var(--ink);
}

/* ============================================================
   Contact form
   ============================================================ */
.contact-form {
  max-width: 720px;
  margin: 4rem auto 0;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-grid.single { grid-template-columns: 1fr; }

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.form-field label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-quiet);
  font-weight: 500;
}

.form-field input,
.form-field select,
.form-field textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  padding: 0.75rem 0;
  font-family: var(--body);
  font-size: 1rem;
  color: var(--ink);
  transition: border 0.3s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-bottom-color: var(--brass);
}

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

/* ============================================================
   Footnote / Legal blocks
   ============================================================ */
.footnote {
  font-size: 0.8rem;
  color: var(--ink-quiet);
  margin-top: 1rem;
  font-style: italic;
}

/* ============================================================
   Scorecard entries (card-list layout)
   ============================================================ */
.score-entries {
  margin-top: 1rem;
}

.score-entry {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 1.5rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
  transition: background 0.2s ease;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.score-entry:first-child {
  border-top: 2px solid var(--ink);
  padding-top: 1.5rem;
}

.score-entry:hover {
  background: var(--paper-warm);
  margin: 0 -1rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

.score-entry-img {
  width: 100px;
  height: 70px;
  overflow: hidden;
  flex-shrink: 0;
}

.score-entry-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.score-entry:hover .score-entry-img img {
  transform: scale(1.08);
}

.score-entry-info {
  min-width: 0;
}

.score-entry-info h4 {
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 0.15rem;
}

.score-entry-info .score-loc {
  display: block;
  margin-top: 0;
  margin-bottom: 0.15rem;
}

.score-blurb {
  font-size: 0.82rem;
  color: var(--ink-quiet);
  margin-top: 0.25rem;
  line-height: 1.45;
  max-width: 560px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.score-entry .score-pill {
  flex-shrink: 0;
}

.score-entry-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 2px solid var(--ink);
  margin-top: 1rem;
}

.score-entry-header span {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-quiet);
  font-weight: 500;
}

/* ============================================================
   Image band / visual break
   ============================================================ */
.image-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  overflow: hidden;
  margin-top: 3rem;
}

.image-band img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.image-band img:hover {
  transform: scale(1.05);
}

.image-band-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  color: var(--paper);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: linear-gradient(transparent, rgba(30, 27, 23, 0.6));
}

.image-band-item {
  position: relative;
  overflow: hidden;
}

.image-band-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.image-band-item:hover img {
  transform: scale(1.05);
}

/* ============================================================
   Destination grid
   ============================================================ */
.dest-section {
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
}

.dest-section .eyebrow { color: var(--accent); }
.dest-section .eyebrow::before { background: var(--accent); }
.dest-section h2 { color: var(--paper); }

.dest-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

a.dest-card,
.dest-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.dest-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.dest-card:hover img {
  transform: scale(1.08);
}

.dest-card-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(transparent, rgba(30, 27, 23, 0.7));
}

.dest-card-label h4 {
  color: var(--paper);
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 400;
}

.dest-card-label span {
  color: rgba(250, 248, 243, 0.6);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ============================================================
   Score count badge
   ============================================================ */
.score-count {
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--ink-quiet);
  margin-left: 0.5rem;
}

/* ============================================================
   Method card hover (Services — "What we don't do")
   ============================================================ */
.method-card-hover {
  transition: all 0.4s ease;
  cursor: default;
}

.method-card-hover:hover {
  background: var(--paper);
  border-left-color: var(--brass-deep);
  transform: translateY(-4px);
  box-shadow: 0 16px 32px var(--shadow);
}

.method-card-hover:hover h4 {
  color: var(--brass-deep);
}

.method-card-icon {
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 56px;
  height: 56px;
  background: rgba(147, 114, 66, 0.06);
  border: 1px solid rgba(147, 114, 66, 0.12);
  padding: 4px;
  transition: all 0.4s ease;
}

.method-card-hover:hover .method-card-icon {
  background: rgba(147, 114, 66, 0.1);
  border-color: rgba(147, 114, 66, 0.25);
  transform: translateY(-2px);
}

/* ============================================================
   Particulars grid (About page)
   ============================================================ */
.particulars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.particular-item {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: var(--paper);
  border: 1px solid var(--line);
  transition: all 0.3s ease;
}

.particular-item:hover {
  border-color: var(--brass);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--shadow);
}

.particular-number {
  display: block;
  font-family: var(--display);
  font-size: 3.5rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.particular-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.particular-detail {
  display: block;
  font-family: var(--display);
  font-size: 1.05rem;
  color: var(--ink-soft);
  line-height: 1.3;
}

/* ============================================================
   Animations
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  animation: fadeUp 1s ease forwards;
}

.reveal-1 { animation-delay: 0.1s; }
.reveal-2 { animation-delay: 0.3s; }
.reveal-3 { animation-delay: 0.5s; }
.reveal-4 { animation-delay: 0.7s; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 968px) {
  .two-col,
  .services-grid,
  .portfolio-grid,
  .method-grid,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .compare-grid,
  .examples-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .particulars-grid { grid-template-columns: repeat(2, 1fr); }

  .scoring-dimensions { grid-template-columns: repeat(3, 1fr) !important; }

  .process-grid { grid-template-columns: repeat(2, 1fr); }

  .trust-inner { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .trust-stat::after { display: none !important; }

  .two-col.reverse > :first-child { order: 0; }

  section { padding: 4rem 0; }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--paper);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
    transition: right 0.4s ease;
    box-shadow: -10px 0 40px var(--shadow);
  }

  .nav-links.open { right: 0; }
  .mobile-toggle { display: flex; }

  .form-grid { grid-template-columns: 1fr; }

  .bio-list li { grid-template-columns: 1fr; gap: 0.25rem; }

  .scorecard-meta { flex-direction: column; align-items: flex-start; }
  .score-search { width: 100%; }

  .score-table { font-size: 0.85rem; }
  .score-table th, .score-table td { padding: 1rem 0.5rem; }

  .hero-stamp { width: 100px; height: 100px; font-size: 0.65rem; margin-top: 1.5rem; }
  .hero-stamp strong { font-size: 1.1rem; }

  .score-entry { grid-template-columns: 80px 1fr auto; gap: 1rem; }
  .score-entry-img { width: 80px; height: 56px; }
  .score-blurb { display: none; }

  .image-band { grid-template-columns: repeat(2, 1fr); }
  .image-band-item img { height: 200px; }
  .dest-grid { grid-template-columns: repeat(2, 1fr); }
  .dest-card { aspect-ratio: 1/1; }
}

@media (max-width: 600px) {
  .process-grid { grid-template-columns: 1fr; }
  .trust-inner { grid-template-columns: 1fr; }
  .particulars-grid { grid-template-columns: 1fr; }
  .scoring-dimensions { grid-template-columns: repeat(2, 1fr) !important; }
  .score-entry { grid-template-columns: 60px 1fr auto; gap: 0.75rem; padding: 1rem 0; }
  .score-entry-img { width: 60px; height: 44px; }
  .score-entry-info h4 { font-size: 1rem; }
  .score-pill { font-size: 1.1rem; padding: 0.2rem 0.5rem; }
  .image-band { grid-template-columns: 1fr 1fr; }
  .image-band-item img { height: 160px; }
  .dest-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
}

/* ============================================================
   iPhone 17 Pro (402px) & Pro Max (440px) — mobile-first tuning
   ============================================================ */
@media (max-width: 480px) {
  body {
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
  }

  .container {
    padding: 0 1.25rem;
  }

  .nav {
    padding: 1rem 1.25rem;
    padding-top: calc(1rem + env(safe-area-inset-top));
  }

  .hero {
    min-height: 100dvh;
    padding-top: calc(4rem + env(safe-area-inset-top));
    padding-bottom: calc(2.5rem + env(safe-area-inset-bottom));
  }

  .hero-fullbleed {
    padding-bottom: calc(2.5rem + env(safe-area-inset-bottom));
  }

  .hero-fullbleed h1 {
    font-size: clamp(2.25rem, 9vw, 3rem);
    line-height: 1.1;
    margin-bottom: 1.25rem;
  }

  .hero h1 br {
    display: none;
  }

  .hero-bg img {
    object-position: center 30%;
  }

  .hero-overlay {
    background:
      linear-gradient(to bottom,
        rgba(30, 27, 23, 0.3) 0%,
        rgba(30, 27, 23, 0.08) 30%,
        rgba(30, 27, 23, 0.55) 60%,
        rgba(30, 27, 23, 0.92) 100%
      );
  }

  .hero-fullbleed .eyebrow {
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    padding-left: 2rem;
    margin-bottom: 0.75rem;
  }

  .hero-fullbleed .eyebrow::before {
    width: 1.5rem;
  }

  .hero-fullbleed .lead {
    font-size: 1rem;
    line-height: 1.55;
    max-width: 100%;
  }

  .hero .btn-group {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
    margin-top: 1.5rem;
  }

  .hero .btn-group .btn {
    width: 100%;
    justify-content: center;
    padding: 0.875rem 1.5rem;
    font-size: 0.75rem;
  }

  section {
    padding: 3rem 0;
  }

  .trust-strip {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .trust-num {
    font-size: clamp(1.5rem, 7vw, 2rem);
  }

  .trust-label {
    font-size: 0.6rem;
  }

  .nav-links {
    width: 85%;
    padding-top: calc(2rem + env(safe-area-inset-top));
    padding-bottom: env(safe-area-inset-bottom);
  }

  h1 {
    font-size: clamp(2.25rem, 9vw, 3rem);
  }

  h2 {
    font-size: clamp(1.75rem, 7vw, 2.5rem);
  }

  .section-header .lead {
    font-size: 1rem;
  }
}

/* ============================================================
   Interactive Map (Scorecard)
   ============================================================ */
.map-section {
  background: var(--paper-warm);
}

.map-container {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 4px;
  margin-top: 2rem;
  background: var(--paper);
  overflow: hidden;
}

#scorecard-map {
  height: 520px;
  width: 100%;
  z-index: 2;
}

.leaflet-control-zoom {
  border: none !important;
  box-shadow: 0 2px 8px rgba(30, 27, 23, 0.12) !important;
}

.leaflet-control-zoom a {
  background: var(--paper) !important;
  color: var(--ink-soft) !important;
  border: 1px solid var(--line) !important;
  width: 32px !important;
  height: 32px !important;
  line-height: 30px !important;
  font-size: 16px !important;
}

.map-legend {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
  justify-content: center;
}

.map-legend-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-quiet);
  font-weight: 500;
}

.map-legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--paper-warm);
  box-shadow: 0 1px 3px var(--shadow);
}

.map-legend-dot.hotel { background: #937242; }
.map-legend-dot.restaurant { background: #8b5e3c; }
.map-legend-dot.lounge { background: #3b3530; }
.map-legend-dot.must-visit-indicator {
  background: #937242;
  border: 2px solid #d4a84b;
  box-shadow: 0 0 6px rgba(212, 168, 75, 0.4);
  animation: map-pulse 2s ease-in-out infinite;
}

.map-legend-dot.recommended-indicator {
  background: #b8885a;
  border: 2px solid #b8885a;
  box-shadow: 0 0 4px rgba(184, 137, 90, 0.3);
}

.map-filter-pills {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1.5rem;
}

.leaflet-popup-content-wrapper {
  border-radius: 4px !important;
  font-family: 'Inter', -apple-system, sans-serif;
  box-shadow: 0 8px 24px rgba(30, 27, 23, 0.15) !important;
  border: 1px solid rgba(30, 27, 23, 0.08);
}

.leaflet-popup-tip {
  box-shadow: none !important;
}

.leaflet-popup-content {
  margin: 1rem 1.25rem !important;
  font-size: 0.85rem;
  line-height: 1.5;
}

.map-popup-cat {
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #937242;
  margin-bottom: 0.25rem;
}

.map-popup-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: #1e1b17;
  margin-bottom: 0.15rem;
  line-height: 1.2;
}

.map-popup-loc {
  font-size: 0.75rem;
  color: #6b6259;
  margin-bottom: 0.5rem;
}

.map-popup-score {
  display: inline-block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.15rem 0.5rem;
  background: #937242;
  color: #faf8f3;
}

.map-popup-score.silver {
  background: #e5ddd0;
  color: #1e1b17;
}

.map-popup-score.below {
  background: #e5ddd0;
  color: #6b6259;
}

.map-popup-recommended {
  display: inline-block;
  margin-left: 0.5rem;
  font-size: 0.5rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7a5a2e;
  background: rgba(147, 114, 66, 0.1);
  border: 1px solid rgba(147, 114, 66, 0.3);
  padding: 0.1rem 0.4rem;
  font-weight: 600;
  vertical-align: middle;
}

.map-popup-must-visit {
  display: inline-block;
  margin-left: 0.5rem;
  font-size: 0.5rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #faf8f3;
  background: linear-gradient(135deg, #937242, #d4a84b);
  border: 1px solid #d4a84b;
  padding: 0.1rem 0.5rem;
  font-weight: 600;
  vertical-align: middle;
}

.map-popup-score-row {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}

.map-popup-readmore {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  color: #937242;
  text-decoration: none;
  padding: 0.35rem 0.75rem;
  border: 1px solid rgba(147, 114, 66, 0.4);
  transition: background 0.2s, color 0.2s;
}

.map-popup-readmore:hover {
  background: #937242;
  color: #faf8f3;
}

/* Map hover tooltip cards */
.map-hover-tooltip {
  background: #faf8f3 !important;
  border: 1px solid rgba(147, 114, 66, 0.25) !important;
  border-radius: 0 !important;
  padding: 0 !important;
  box-shadow: 0 4px 20px rgba(30, 27, 23, 0.12) !important;
  font-family: var(--body);
}

.map-hover-tooltip .leaflet-tooltip-content {
  margin: 0;
}

.map-hover-tooltip::before {
  border-top-color: rgba(147, 114, 66, 0.25) !important;
}

.map-tooltip-card {
  padding: 0.75rem 1rem;
  min-width: 180px;
  max-width: 240px;
}

.map-tooltip-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.35rem;
}

.map-tooltip-cat {
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #937242;
  font-weight: 600;
}

.map-tooltip-score {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.1rem 0.4rem;
  background: #937242;
  color: #faf8f3;
  line-height: 1;
}

.map-tooltip-score.silver {
  background: #e5ddd0;
  color: #1e1b17;
}

.map-tooltip-score.below {
  background: #e5ddd0;
  color: #6b6259;
}

.map-tooltip-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 500;
  color: #1e1b17;
  line-height: 1.2;
  margin-bottom: 0.15rem;
}

.map-tooltip-loc {
  font-size: 0.7rem;
  color: #6b6259;
}

@keyframes map-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212, 168, 75, 0.5); }
  50% { box-shadow: 0 0 0 6px rgba(212, 168, 75, 0); }
}

.map-marker-must-visit {
  animation: map-pulse 2s ease-in-out infinite;
}

/* ============================================================
   Must Visit Badge (8.5+)
   ============================================================ */
.score-entry[data-must-visit] .score-category::after {
  content: 'Must Visit';
  margin-left: 0.75rem;
  font-size: 0.55rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #faf8f3;
  background: linear-gradient(135deg, #937242, #d4a84b);
  border: 1px solid #d4a84b;
  padding: 0.15rem 0.5rem;
  font-weight: 600;
  vertical-align: middle;
}

/* ============================================================
   Highly Recommended Badge (8.0–8.4)
   ============================================================ */
.score-entry[data-recommended] .score-category::after {
  content: 'Highly Recommended';
  margin-left: 0.75rem;
  font-size: 0.55rem;
  letter-spacing: 0.08em;
  color: var(--brass-deep);
  background: linear-gradient(135deg, rgba(147, 114, 66, 0.08), rgba(184, 137, 90, 0.15));
  border: 1px solid rgba(147, 114, 66, 0.3);
  padding: 0.15rem 0.5rem;
  font-weight: 600;
  vertical-align: middle;
}

/* ============================================================
   About page visual enhancements
   ============================================================ */
.about-argument-img {
  aspect-ratio: 4/5;
  overflow: hidden;
  position: relative;
}

.about-argument-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.belief-visual {
  color: var(--brass);
  margin-bottom: 1.25rem;
  opacity: 0.65;
}

.philosophy-counter {
  counter-reset: philosophy;
}

.philosophy-counter .method-card {
  counter-increment: philosophy;
  position: relative;
  overflow: hidden;
}

.philosophy-counter .method-card::after {
  content: counter(philosophy, decimal-leading-zero);
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-family: var(--display);
  font-style: italic;
  font-size: 3.5rem;
  color: rgba(147, 114, 66, 0.1);
  line-height: 1;
  pointer-events: none;
}

@media (max-width: 968px) {
  #scorecard-map { height: 400px; }
  .map-legend { gap: 1rem; }
  .score-entry[data-must-visit] .score-category::after { display: none; }
  .score-entry[data-must-visit] .score-entry-info::after {
    content: 'Must Visit';
    display: block;
    font-size: 0.55rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #faf8f3;
    background: linear-gradient(135deg, #937242, #d4a84b);
    border: 1px solid #d4a84b;
    padding: 0.15rem 0.5rem;
    font-weight: 600;
    width: fit-content;
    margin-top: 0.25rem;
  }
  .score-entry[data-recommended] .score-category::after { display: none; }
  .score-entry[data-recommended] .score-entry-info::after {
    content: 'Highly Recommended';
    display: block;
    font-size: 0.55rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--brass-deep);
    background: linear-gradient(135deg, rgba(147, 114, 66, 0.08), rgba(184, 137, 90, 0.15));
    border: 1px solid rgba(147, 114, 66, 0.3);
    padding: 0.15rem 0.5rem;
    font-weight: 600;
    width: fit-content;
    margin-top: 0.25rem;
  }
}

@media (max-width: 600px) {
  #scorecard-map { height: 300px; }
  .philosophy-counter .method-card::after { font-size: 2.5rem; }
}

/* ============================================================
   Collections grid — 3-column variant
   ============================================================ */
.collections-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 968px) {
  .collections-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ============================================================
   Destination carousel
   ============================================================ */
.carousel-wrapper {
  position: relative;
  overflow: hidden;
  margin-top: 3rem;
}

.carousel-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  gap: 4px;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.carousel-slide {
  position: relative;
  flex: 0 0 25%;
  scroll-snap-align: start;
  overflow: hidden;
}

.carousel-slide img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.carousel-slide:hover img {
  transform: scale(1.05);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 44px;
  height: 44px;
  border: none;
  background: rgba(250, 248, 243, 0.9);
  color: var(--ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
}

.carousel-btn:hover {
  background: var(--paper);
  color: var(--brass-deep);
}

.carousel-btn-prev { left: 0; }
.carousel-btn-next { right: 0; }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.25rem 0;
  background: var(--paper);
}

.carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: 1px solid var(--ink-faint);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.carousel-dot.active {
  background: var(--brass);
  border-color: var(--brass);
  transform: scale(1.3);
}

@media (max-width: 968px) {
  .carousel-slide { flex: 0 0 33.333%; }
  .carousel-slide img { height: 220px; }
}

@media (max-width: 600px) {
  .carousel-slide { flex: 0 0 50%; }
  .carousel-slide img { height: 180px; }
  .carousel-btn { width: 36px; height: 36px; }
}

/* ============================================================
   Admin Edit Mode
   ============================================================ */

.edit-mode-toggle {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9000;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.2rem;
  background: var(--ink);
  color: var(--paper);
  border: 1px solid var(--ink);
  border-radius: 100px;
  font-family: var(--body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(30, 27, 23, 0.2);
}

.edit-mode-toggle:hover {
  background: var(--brass-deep);
  border-color: var(--brass-deep);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(30, 27, 23, 0.25);
}

.edit-mode-toggle.active {
  background: var(--brass);
  border-color: var(--brass);
}

.edit-mode-toggle svg { flex-shrink: 0; }

/* Edit badges on cards/entries */
.edit-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 20;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 2px 8px rgba(30, 27, 23, 0.12);
  color: var(--ink-quiet);
  opacity: 0;
  transform: scale(0.85);
  animation: editBadgeIn 0.3s ease forwards;
}

@keyframes editBadgeIn {
  to { opacity: 1; transform: scale(1); }
}

.edit-badge:hover {
  background: var(--brass);
  color: var(--paper);
  border-color: var(--brass);
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(147, 114, 66, 0.3);
}

/* Delete badge on review cards */
.delete-badge {
  position: absolute;
  top: 0.75rem;
  right: 3.25rem;
  z-index: 20;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 2px 8px rgba(30, 27, 23, 0.12);
  color: var(--ink-quiet);
  opacity: 0;
  transform: scale(0.85);
  animation: editBadgeIn 0.3s ease forwards;
}

.delete-badge:hover {
  background: #b33;
  color: var(--paper);
  border-color: #b33;
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(180, 50, 50, 0.35);
}

.edit-modal-btn-delete {
  background: #b33;
  color: var(--paper);
  border: 1px solid #b33;
}

.edit-modal-btn-delete:hover {
  background: #922;
  border-color: #922;
}

.edit-mode-active .review-card:hover,
.edit-mode-active .score-entry:hover {
  outline: 2px solid var(--brass);
  outline-offset: -2px;
}

/* Modal overlay */
.edit-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(30, 27, 23, 0.5);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.edit-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.edit-modal {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  width: 90%;
  max-width: 560px;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 24px 64px rgba(30, 27, 23, 0.2);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.edit-modal-overlay.active .edit-modal {
  transform: translateY(0);
}

.edit-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 1.75rem 1rem;
  border-bottom: 1px solid var(--line);
}

.edit-modal-title {
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--ink);
}

.edit-modal-close {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 1.3rem;
  color: var(--ink-quiet);
  cursor: pointer;
  transition: all 0.2s ease;
}

.edit-modal-close:hover {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

.edit-modal-body {
  padding: 1.5rem 1.75rem;
  overflow-y: auto;
  flex: 1;
}

.edit-field-group {
  margin-bottom: 1.25rem;
}

.edit-field-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-quiet);
  margin-bottom: 0.4rem;
}

.edit-field-input {
  width: 100%;
  padding: 0.65rem 0.85rem;
  font-family: var(--body);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--ink);
  background: var(--paper-warm);
  border: 1px solid var(--line);
  border-radius: 6px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.edit-field-input:focus {
  border-color: var(--brass);
  box-shadow: 0 0 0 3px rgba(147, 114, 66, 0.1);
}

textarea.edit-field-input {
  resize: vertical;
  line-height: 1.5;
}

.edit-img-preview {
  margin-top: 0.5rem;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper-deep);
}

.edit-img-preview img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  display: block;
}

.edit-modal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.75rem 1.5rem;
  border-top: 1px solid var(--line);
}

.edit-modal-btn {
  padding: 0.6rem 1.4rem;
  font-family: var(--body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.edit-modal-btn-reset {
  background: transparent;
  border-color: var(--line);
  color: var(--ink-quiet);
}

.edit-modal-btn-reset:hover {
  border-color: var(--ink);
  color: var(--ink);
}

.edit-modal-btn-save {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
}

.edit-modal-btn-save:hover {
  background: var(--brass);
  border-color: var(--brass);
}

/* Toast */
.edit-toast {
  position: fixed;
  bottom: 5rem;
  right: 2rem;
  z-index: 10001;
  padding: 0.7rem 1.4rem;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--body);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(30, 27, 23, 0.25);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.edit-toast.show {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   Save Bar (Edit Mode)
   ============================================================ */

.edit-save-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--ink);
  color: var(--paper);
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: var(--body);
}

.edit-save-bar.visible {
  transform: translateY(0);
}

.edit-save-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.85rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.edit-save-bar-info {
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s ease;
}

.edit-save-bar.has-changes .edit-save-bar-info {
  color: var(--brass);
  font-weight: 500;
}

.edit-save-bar-actions {
  display: flex;
  gap: 0.6rem;
}

.edit-save-bar-btn {
  padding: 0.5rem 1.3rem;
  border: none;
  border-radius: 6px;
  font-family: var(--body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: background 0.2s ease, opacity 0.2s ease;
}

.edit-save-bar-btn.discard {
  background: rgba(255, 255, 255, 0.12);
  color: var(--paper);
}

.edit-save-bar-btn.discard:hover {
  background: rgba(255, 255, 255, 0.2);
}

.edit-save-bar-btn.save {
  background: var(--brass);
  color: var(--paper);
}

.edit-save-bar-btn.save:hover {
  background: #a88347;
}

/* Adjust toast position when save bar is visible */
.edit-mode-active .edit-toast {
  bottom: 6rem;
}

/* ============================================================
   High Score Highlight (≥ 8.5)
   ============================================================ */

.review-score.high {
  background: var(--brass);
  color: var(--paper);
  box-shadow: 0 0 0 3px rgba(147, 114, 66, 0.25), 0 4px 14px rgba(147, 114, 66, 0.35);
  font-weight: 600;
}

/* ============================================================
   Drag-and-drop reorder (edit mode)
   ============================================================ */

.edit-mode-active .review-card {
  cursor: grab;
}

.review-card.dragging {
  opacity: 0.35;
  cursor: grabbing;
}

.review-card.drag-over {
  outline: 2px dashed var(--brass) !important;
  outline-offset: -2px;
}

.edit-reorder-hint {
  display: none;
  text-align: center;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-quiet);
  padding: 0.75rem 0;
  margin-top: -1rem;
  margin-bottom: 1rem;
}

.edit-mode-active .edit-reorder-hint {
  display: block;
}

/* ============================================================
   Create Review button (edit mode)
   ============================================================ */

.edit-create-btn {
  display: none;
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 9000;
  padding: 0.7rem 1.2rem;
  background: var(--brass);
  color: var(--paper);
  border: 1px solid var(--brass);
  border-radius: 100px;
  font-family: var(--body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(147, 114, 66, 0.3);
  align-items: center;
  gap: 0.5rem;
}

.edit-mode-active .edit-create-btn {
  display: flex;
}

.edit-create-btn:hover {
  background: var(--brass-deep);
  border-color: var(--brass-deep);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(147, 114, 66, 0.4);
}

.edit-quick-scorecard-btn {
  display: none;
  position: fixed;
  bottom: 2rem;
  left: calc(2rem + 160px + 1rem);
  z-index: 9000;
  padding: 0.7rem 1.2rem;
  background: var(--ink);
  color: var(--paper);
  border: 1px solid var(--ink);
  border-radius: 100px;
  font-family: var(--body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(30, 27, 23, 0.2);
  align-items: center;
  gap: 0.5rem;
}

.edit-mode-active .edit-quick-scorecard-btn {
  display: flex;
}

.edit-quick-scorecard-btn:hover {
  background: var(--brass-deep);
  border-color: var(--brass-deep);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(147, 114, 66, 0.4);
}

/* ============================================================
   Blog Editor Modal
   ============================================================ */

.blog-editor-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(30, 27, 23, 0.6);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.blog-editor-overlay.active {
  opacity: 1;
  visibility: visible;
}

.blog-editor {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  width: 95%;
  max-width: 900px;
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 24px 64px rgba(30, 27, 23, 0.25);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.blog-editor-overlay.active .blog-editor {
  transform: translateY(0);
}

.blog-editor-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.75rem;
  border-bottom: 1px solid var(--line);
}

.blog-editor-title {
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--ink);
}

.blog-editor-body {
  padding: 1.5rem 1.75rem;
  overflow-y: auto;
  flex: 1;
}

.blog-editor-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.blog-editor-row-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
}

.blog-editor-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.75rem 1.25rem;
  border-top: 1px solid var(--line);
}

.be-toolbar {
  display: flex;
  gap: 2px;
  padding: 0.5rem;
  background: var(--paper-warm);
  border: 1px solid var(--line);
  border-bottom: none;
  border-radius: 6px 6px 0 0;
  flex-wrap: wrap;
}

.be-toolbar button {
  width: 34px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  color: var(--ink-quiet);
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.15s ease;
}

.be-toolbar button:hover {
  background: var(--paper);
  border-color: var(--line);
  color: var(--ink);
}

.be-toolbar .sep {
  width: 1px;
  background: var(--line);
  margin: 2px 4px;
  border: none;
}

.be-content {
  min-height: 260px;
  max-height: 400px;
  padding: 1rem;
  font-family: var(--body);
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 0 0 6px 6px;
  outline: none;
  overflow-y: auto;
}

.be-content:focus {
  border-color: var(--brass);
  box-shadow: 0 0 0 3px rgba(147, 114, 66, 0.08);
}

.be-content img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  margin: 0.5rem 0;
}

.be-content video {
  max-width: 100%;
  border-radius: 4px;
  margin: 0.5rem 0;
}

.be-cover-preview {
  margin-top: 0.5rem;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper-deep);
}

.be-cover-preview img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
}

.be-upload-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.75rem;
  background: var(--paper-warm);
  border: 1px solid var(--line);
  border-radius: 4px;
  font-family: var(--body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-quiet);
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 0.35rem;
}

.be-upload-btn:hover {
  border-color: var(--brass);
  color: var(--brass);
}

@media (max-width: 600px) {
  .edit-mode-toggle {
    bottom: 1rem;
    right: 1rem;
    padding: 0.6rem 1rem;
    font-size: 0.65rem;
  }

  .edit-modal {
    width: 95%;
    max-height: 90vh;
  }

  .edit-modal-header,
  .edit-modal-body,
  .edit-modal-footer {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .edit-toast {
    right: 1rem;
    bottom: 4rem;
  }

  .edit-create-btn {
    left: 1rem;
    bottom: 1rem;
    padding: 0.6rem 1rem;
    font-size: 0.65rem;
  }

  .edit-quick-scorecard-btn {
    left: 1rem;
    bottom: 3.8rem;
    padding: 0.6rem 1rem;
    font-size: 0.65rem;
  }

  .blog-editor {
    width: 98%;
    max-height: 95vh;
  }

  .blog-editor-row,
  .blog-editor-row-3 {
    grid-template-columns: 1fr;
  }

  .blog-editor-header,
  .blog-editor-body,
  .blog-editor-footer {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .edit-save-bar-inner {
    padding: 0.7rem 1rem;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .edit-save-bar-info {
    font-size: 0.75rem;
    width: 100%;
    text-align: center;
  }

  .edit-save-bar-actions {
    width: 100%;
    justify-content: center;
  }

  .edit-save-bar-btn {
    flex: 1;
    text-align: center;
    font-size: 0.75rem;
    padding: 0.45rem 1rem;
  }

  .edit-mode-active .edit-toast {
    bottom: 8rem;
  }
}
