/* ================================================================
   Rapco Rent — design system
   Industrial editorial: heavy display type, work-truck orange,
   deep navy, paper cream. Built tradesperson-trustworthy.
   ================================================================ */

:root {
  --rap-orange:    #E85D1F;
  --rap-orange-deep: #C4451A;
  --rap-blue:      #0F2540;
  --rap-blue-deep: #081628;
  --rap-cream:     #F5F1EA;
  --rap-paper:     #FAF7F2;
  --rap-ink:       #14161A;
  --rap-grey-900:  #2A2D33;
  --rap-grey-700:  #4A4F58;
  --rap-grey-500:  #7A8290;
  --rap-grey-300:  #C9CFD8;
  --rap-grey-100:  #EAEDF1;

  --font-display: 'Archivo Black', 'Helvetica Neue', sans-serif;
  --font-serif:   'Fraunces', 'Times New Roman', serif;
  --font-body:    'Manrope', 'Helvetica Neue', sans-serif;
  --font-mono:    'JetBrains Mono', 'SF Mono', monospace;

  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-base: 1rem;
  --fs-md: 1.125rem;
  --fs-lg: 1.5rem;
  --fs-xl: 2rem;
  --fs-2xl: clamp(2.5rem, 5vw, 4rem);
  --fs-3xl: clamp(3.5rem, 9vw, 7.5rem);

  --sp-1: 0.5rem; --sp-2: 1rem; --sp-3: 1.5rem;
  --sp-4: 2rem;   --sp-5: 3rem; --sp-6: 4rem;
  --sp-8: 6rem;   --sp-10: 8rem;

  --container: 1280px;
  --radius: 4px;
}

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

html { font-size: 16px; -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: 1.55;
  color: var(--rap-ink);
  background: var(--rap-paper);
  -webkit-font-smoothing: antialiased;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(232, 93, 31, 0.02) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(15, 37, 64, 0.02) 0%, transparent 40%);
}

img, video, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.2s; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: var(--font-serif); font-weight: 600;
  letter-spacing: -0.02em; line-height: 1.05;
  color: var(--rap-blue-deep);
  text-transform: none;
}
h1 { font-size: var(--fs-3xl); }
h2 { font-size: var(--fs-2xl); }
h3 { font-size: var(--fs-xl); letter-spacing: -0.01em; }
h4 { font-size: var(--fs-lg); }

.eyebrow {
  font-family: var(--font-mono); font-size: var(--fs-xs);
  text-transform: uppercase; letter-spacing: 0.2em;
  color: var(--rap-orange); font-weight: 500;
  display: inline-flex; align-items: center; gap: 0.75rem;
}
.eyebrow::before {
  content: ''; display: inline-block;
  width: 32px; height: 1px; background: var(--rap-orange);
}

p { color: var(--rap-grey-700); }
.lede { font-size: var(--fs-md); color: var(--rap-grey-900); line-height: 1.5; max-width: 60ch; }

/* ---- Layout ---- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--sp-3);
}
@media (min-width: 768px) { .container { padding: 0 var(--sp-4); } }

.section { padding: var(--sp-8) 0; }
.section-tight { padding: var(--sp-6) 0; }

/* ---- Header ---- */
.site-header {
  background: var(--rap-paper);
  border-bottom: 1px solid var(--rap-grey-100);
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(8px);
  background-color: rgba(250, 247, 242, 0.92);
}

.nav { display: flex; align-items: center; justify-content: space-between; height: 84px; gap: var(--sp-3); }

.brand { display: flex; align-items: center; gap: 0.75rem; }
.brand-logo { height: 36px; width: auto; }
.brand-text {
  font-family: var(--font-display); font-size: var(--fs-xl);
  letter-spacing: -0.04em; color: var(--rap-blue-deep);
  text-transform: uppercase; line-height: 1;
}
.brand-text::after { content: ' Rent-it'; color: var(--rap-orange); }

.nav-links { display: none; gap: var(--sp-4); list-style: none; }
@media (min-width: 768px) { .nav-links { display: flex; } }
.nav-links a {
  font-family: var(--font-mono); font-size: var(--fs-sm);
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--rap-grey-700); padding: 0.5rem 0; position: relative;
}
.nav-links a:hover { color: var(--rap-orange); }
.nav-links a.active::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 2px; background: var(--rap-orange);
}

.nav-cta { display: flex; align-items: center; gap: var(--sp-2); }

.mobile-toggle { display: flex; flex-direction: column; gap: 4px; padding: 0.5rem; }
.mobile-toggle span { width: 22px; height: 2px; background: var(--rap-ink); }
@media (min-width: 768px) { .mobile-toggle { display: none; } }

.mobile-menu { display: none; background: var(--rap-blue-deep); color: white; padding: var(--sp-3); }
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block; padding: 0.75rem 0;
  font-family: var(--font-mono); text-transform: uppercase;
  letter-spacing: 0.1em; font-size: var(--fs-sm);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 1rem 1.5rem;
  font-family: var(--font-mono); font-size: var(--fs-sm);
  font-weight: 500; text-transform: uppercase; letter-spacing: 0.12em;
  border-radius: var(--radius); transition: all 0.2s;
  cursor: pointer; border: 2px solid transparent;
}
.btn-primary { background: var(--rap-orange); color: white; }
.btn-primary:hover { background: var(--rap-orange-deep); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(232, 93, 31, 0.3); }
.btn-dark { background: var(--rap-blue-deep); color: white; }
.btn-dark:hover { background: var(--rap-blue); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--rap-blue-deep); border-color: var(--rap-blue-deep); }
.btn-ghost:hover { background: var(--rap-blue-deep); color: white; }
.btn-arrow::after {
  content: '→'; font-family: var(--font-body); font-size: 1.1em; transition: transform 0.2s;
}
.btn-arrow:hover::after { transform: translateX(4px); }

/* ---- Hero (Fraunces serif headline, 4/5 aspect dark visual on the right) ---- */
.hero {
  position: relative; background: var(--rap-paper); color: var(--rap-ink);
  overflow: hidden; padding: var(--sp-6) 0 var(--sp-6);
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 15% 90%, rgba(232, 93, 31, 0.04) 0%, transparent 40%),
    radial-gradient(circle at 85% 10%, rgba(15, 37, 64, 0.03) 0%, transparent 40%);
  pointer-events: none;
}
.hero-grid {
  position: relative; display: grid;
  grid-template-columns: 1fr; gap: var(--sp-5); align-items: center;
}
@media (min-width: 900px) { .hero-grid { grid-template-columns: 1.1fr 0.9fr; gap: var(--sp-6); } }

.hero-marker {
  font-family: var(--font-mono); font-size: var(--fs-xs);
  text-transform: uppercase; letter-spacing: 0.2em;
  color: var(--rap-orange);
  display: inline-flex; align-items: center; gap: 0.625rem;
  margin-bottom: var(--sp-3);
}
.hero-marker::before {
  content: ''; width: 28px; height: 1px; background: var(--rap-orange);
}

/* Big serif headline */
.hero h1.hero-headline {
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.02;
  text-transform: none;
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  color: var(--rap-blue-deep);
  margin-bottom: var(--sp-3);
}
.hero h1.hero-headline em {
  font-style: italic; font-weight: 400; color: var(--rap-orange);
  position: relative;
}
.hero h1.hero-headline em::after {
  content: ''; position: absolute; left: 0; bottom: 6px; height: 8px; width: 100%;
  background: rgba(232, 93, 31, 0.18); z-index: -1; transform: skew(-8deg);
}
.hero-strike {
  display: inline-block; position: relative;
}
.hero-strike::before {
  content: ''; position: absolute; left: -4%; right: -4%; top: 52%;
  height: 4px; background: var(--rap-orange);
  transform: rotate(-3deg); border-radius: 2px;
}

.hero-blurb {
  font-size: 1.1rem; line-height: 1.55;
  color: var(--rap-grey-700); max-width: 480px;
  margin-bottom: var(--sp-4);
}

.hero-actions { display: flex; gap: 0.875rem; flex-wrap: wrap; margin-bottom: var(--sp-4); }

/* Trust row (12k+ moves, etc.) */
.hero-stats {
  display: flex; gap: 2rem; flex-wrap: wrap;
  padding-top: var(--sp-3);
  border-top: 1px solid var(--rap-grey-300);
}
.hero-stats .stat-num {
  font-family: var(--font-serif);
  font-size: 1.85rem; font-weight: 600;
  color: var(--rap-blue-deep);
  display: block; line-height: 1; letter-spacing: -0.01em;
}
.hero-stats .stat-label {
  font-family: var(--font-mono); font-size: 0.72rem;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--rap-grey-700); margin-top: 0.4rem;
}

/* RIGHT — dark illustration panel */
.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--rap-blue-deep) 0%, var(--rap-blue) 100%);
  overflow: visible;
  box-shadow: 0 30px 60px -20px rgba(15, 37, 64, 0.4);
}
.hero-visual::before {
  content: ''; position: absolute; inset: 0; border-radius: 18px;
  background:
    radial-gradient(circle at 20% 80%, rgba(232, 106, 26, 0.18) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(232, 106, 26, 0.08) 0%, transparent 50%);
  pointer-events: none;
}
.hero-visual .corner-mark {
  position: absolute; width: 26px; height: 26px;
  border: 3px solid var(--rap-orange);
}
.hero-visual .corner-mark.tl { top: 8%; left: 8%; border-right: none; border-bottom: none; }
.hero-visual .corner-mark.tr { top: 8%; right: 8%; border-left: none; border-bottom: none; }
.hero-visual .corner-mark.bl { bottom: 8%; left: 8%; border-right: none; border-top: none; }
.hero-visual .corner-mark.br { bottom: 8%; right: 8%; border-left: none; border-top: none; }
.hero-visual .dash-frame {
  position: absolute; top: 10%; left: 10%; width: 80%; height: 80%;
  border: 2.5px dashed var(--rap-orange); border-radius: 8px;
  animation: pulse-frame 3s ease-in-out infinite;
  pointer-events: none;
}
@keyframes pulse-frame {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50%      { opacity: 1; transform: scale(1.01); }
}
.sofa-art {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 75%; height: auto;
}

/* Hero "from $X" sticker — top-right corner of the visual */
.hero-badge {
  position: absolute;
  top: -16px; right: -16px;
  background: var(--rap-orange); color: white;
  padding: 1rem 1.4rem;
  border-radius: 12px;
  font-family: var(--font-serif); font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 12px 28px rgba(232, 93, 31, 0.4),
              0 0 0 4px rgba(255, 255, 255, 0.4);
  transform: rotate(4deg);
  z-index: 10; text-align: center; line-height: 1.2;
}
.hero-badge strong {
  display: block;
  font-size: 1.5rem;
  letter-spacing: -0.01em;
  margin-top: 0.15rem;
  font-weight: 700;
}
.hero-badge small {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 0.4rem;
  opacity: 0.85;
}

@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

/* ---- Marquee bar (between hero & steps) ---- */
.marquee {
  background: var(--rap-blue-deep); color: var(--rap-cream);
  padding: 1.4rem 0; overflow: hidden; border-top: 1px solid var(--rap-blue);
  border-bottom: 1px solid var(--rap-blue);
}
.marquee-track {
  display: flex; gap: 4rem; white-space: nowrap;
  animation: marquee 40s linear infinite; align-items: center;
  width: max-content;
}
.marquee-track span {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1.25rem;
  letter-spacing: 0;
  text-transform: none;
}
.marquee-track .dot {
  color: var(--rap-orange); font-size: 1rem;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---- Steps (big background numeral) ---- */
.steps {
  display: grid; grid-template-columns: 1fr; gap: var(--sp-3); margin-top: var(--sp-5);
}
@media (min-width: 700px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step {
  background: white; padding: var(--sp-4) var(--sp-3) var(--sp-3);
  border-radius: 12px; border: 1px solid var(--rap-grey-100);
  position: relative; transition: all 0.3s; overflow: hidden;
}
.step:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(15, 37, 64, 0.08);
  border-color: var(--rap-orange);
}
.step-num {
  font-family: var(--font-serif); font-size: 5rem;
  color: var(--rap-cream); font-weight: 700;
  position: absolute; top: -8px; right: 18px; line-height: 1;
  letter-spacing: -0.02em;
  transition: color 0.3s;
}
.step:hover .step-num { color: rgba(232, 93, 31, 0.18); }
.step-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(232, 93, 31, 0.12); color: var(--rap-orange);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--sp-2);
  font-size: 1.2rem;
  position: relative; z-index: 1;
}
.step h3 {
  font-size: var(--fs-lg); margin-bottom: 0.5rem; margin-top: var(--sp-2);
  position: relative; z-index: 1;
}
.step p {
  font-size: var(--fs-sm); color: var(--rap-grey-700);
  position: relative; z-index: 1;
}

/* ---- Item grid ---- */
.item-grid {
  display: grid; grid-template-columns: 1fr;
  gap: var(--sp-3); margin-top: var(--sp-4);
}
@media (min-width: 700px)  { .item-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .item-grid { grid-template-columns: repeat(3, 1fr); } }

.item-card {
  background: white; border: 1px solid var(--rap-grey-100);
  border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column; transition: all 0.3s;
}
.item-card:hover {
  border-color: var(--rap-orange); transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(15, 37, 64, 0.06);
}

.item-image {
  aspect-ratio: 4/3; background: var(--rap-cream);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.item-image::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(45deg, transparent 48%, rgba(232,93,31,0.08) 49%, rgba(232,93,31,0.08) 51%, transparent 52%);
  background-size: 12px 12px;
}
.item-image img { width: 100%; height: 100%; object-fit: cover; position: relative; z-index: 1; }
.item-image-placeholder {
  font-family: var(--font-serif); font-weight: 700; font-size: 3rem;
  color: var(--rap-orange); letter-spacing: -0.02em;
  position: relative; z-index: 1;
}

.item-body { padding: var(--sp-3); flex: 1; display: flex; flex-direction: column; }
.item-cat {
  font-family: var(--font-mono); font-size: var(--fs-xs);
  text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--rap-grey-500); margin-bottom: 0.5rem;
}
.item-name {
  font-family: var(--font-serif); font-weight: 600; font-size: 1.4rem;
  text-transform: none; letter-spacing: -0.01em; margin-bottom: 0.5rem;
  line-height: 1.2;
}
.item-fits { font-size: var(--fs-sm); color: var(--rap-grey-700); margin-bottom: var(--sp-2); flex: 1; }
.item-foot {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: var(--sp-2); border-top: 1px solid var(--rap-grey-100);
}
.item-price {
  font-family: var(--font-serif); font-weight: 700; font-size: 1.4rem;
  color: var(--rap-blue-deep); line-height: 1.2;
}
.item-price small {
  font-family: var(--font-mono); font-size: var(--fs-xs);
  color: var(--rap-grey-500); font-weight: normal;
  letter-spacing: 0.1em; margin-left: 0.4rem; display: block;
}

/* ---- Sections ---- */
.section-heading {
  display: grid; grid-template-columns: 1fr;
  gap: var(--sp-3); margin-bottom: var(--sp-5); align-items: end;
}
@media (min-width: 800px) { .section-heading { grid-template-columns: 2fr 1fr; } }
.section-heading .lede { margin-top: var(--sp-2); }

/* ---- Category strip ---- */
.category-strip {
  display: flex; gap: 1px; background: var(--rap-grey-100);
  padding: 1px; border-radius: var(--radius);
  margin-bottom: var(--sp-5); overflow: hidden;
}
.category-strip a {
  flex: 1; background: white; padding: var(--sp-3); text-align: center;
  font-family: var(--font-mono); font-size: var(--fs-sm);
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--rap-grey-700); transition: all 0.2s;
}
.category-strip a:hover, .category-strip a.active {
  background: var(--rap-blue-deep); color: white;
}

/* ---- Forms ---- */
.form { display: flex; flex-direction: column; gap: var(--sp-2); }
.field { display: flex; flex-direction: column; gap: 0.5rem; }
.field label {
  font-family: var(--font-mono); font-size: var(--fs-xs);
  text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--rap-grey-700);
}
.field input, .field textarea, .field select {
  padding: 0.875rem 1rem; border: 1px solid var(--rap-grey-300);
  border-radius: var(--radius); font: inherit;
  background: white; transition: border-color 0.2s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--rap-orange);
  box-shadow: 0 0 0 3px rgba(232, 93, 31, 0.1);
}
.field textarea { min-height: 140px; resize: vertical; }

.alert {
  padding: var(--sp-2); border-radius: var(--radius);
  font-size: var(--fs-sm); margin-bottom: var(--sp-2);
}
.alert-success { background: #E8F5E9; color: #1B5E20; border-left: 4px solid #2E7D32; }
.alert-error { background: #FFEBEE; color: #B71C1C; border-left: 4px solid #C62828; }

/* ---- Booking summary box ---- */
.booking-summary {
  background: var(--rap-cream); padding: var(--sp-3);
  border-radius: var(--radius); border-left: 4px solid var(--rap-orange);
  font-family: var(--font-mono); font-size: var(--fs-sm);
}
.booking-summary table { width: 100%; border-collapse: collapse; }
.booking-summary td { padding: 0.5rem 0; border-bottom: 1px solid var(--rap-grey-300); }
.booking-summary td:last-child { text-align: right; font-weight: 600; }
.booking-summary tr:last-child td { border-bottom: none; font-size: var(--fs-md); padding-top: 1rem; }

/* ---- CTA strip ---- */
.cta-strip {
  background: var(--rap-orange); color: white;
  padding: var(--sp-5) 0; position: relative; overflow: hidden;
}
.cta-strip::before {
  content: ''; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, transparent 0, transparent 20px, rgba(255,255,255,0.04) 20px, rgba(255,255,255,0.04) 40px);
}
.cta-strip-grid {
  display: grid; grid-template-columns: 1fr; gap: var(--sp-3);
  align-items: center; position: relative;
}
@media (min-width: 800px) { .cta-strip-grid { grid-template-columns: 2fr 1fr; } }
.cta-strip h2 { color: white; }
.cta-strip .btn-dark { background: var(--rap-blue-deep); }

/* ---- Footer ---- */
.site-footer {
  background: var(--rap-blue-deep);
  color: var(--rap-grey-300);
  padding: var(--sp-6) 0 var(--sp-3);
}
.footer-grid {
  display: grid; grid-template-columns: 1fr;
  gap: var(--sp-4); margin-bottom: var(--sp-4);
}
@media (min-width: 700px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }

.footer-brand-row { display: flex; align-items: center; gap: 0.75rem; margin-bottom: var(--sp-2); }
.footer-brand-logo { height: 38px; }
.footer-brand-text {
  font-family: var(--font-display); font-size: var(--fs-2xl);
  color: white; text-transform: uppercase; letter-spacing: -0.04em; line-height: 1;
}
.footer-brand-text::after { content: ' Rent-it'; color: var(--rap-orange); }
.footer-tagline { font-size: var(--fs-sm); max-width: 30ch; color: var(--rap-grey-300); }

.footer-col h4 {
  font-family: var(--font-mono); font-size: var(--fs-xs);
  text-transform: uppercase; letter-spacing: 0.2em;
  color: var(--rap-orange); margin-bottom: var(--sp-2); font-weight: 500;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col a { color: var(--rap-grey-300); font-size: var(--fs-sm); }
.footer-col a:hover { color: white; }

.footer-bottom {
  padding-top: var(--sp-3);
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; flex-wrap: wrap; gap: var(--sp-2); justify-content: space-between;
  font-family: var(--font-mono); font-size: var(--fs-xs);
  text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--rap-grey-500);
}

/* ---- Pagination ---- */
.pagination { display: flex; justify-content: center; gap: 0.5rem; margin-top: var(--sp-5); }
.pagination a, .pagination span {
  padding: 0.625rem 1rem; border: 1px solid var(--rap-grey-300);
  border-radius: var(--radius); font-family: var(--font-mono);
  font-size: var(--fs-sm); color: var(--rap-grey-700);
}
.pagination a:hover { background: var(--rap-blue-deep); color: white; border-color: var(--rap-blue-deep); }
.pagination .current { background: var(--rap-orange); color: white; border-color: var(--rap-orange); }

/* ---- Blog ---- */
.blog-grid {
  display: grid; grid-template-columns: 1fr; gap: var(--sp-4);
}
@media (min-width: 700px)  { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }

.blog-card {
  background: white; border-radius: var(--radius);
  overflow: hidden; border: 1px solid var(--rap-grey-100);
  transition: all 0.3s; display: flex; flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-4px); box-shadow: 0 20px 40px rgba(15, 37, 64, 0.06);
  border-color: var(--rap-grey-300);
}
.blog-image {
  aspect-ratio: 16/10; background: var(--rap-cream);
  background-size: cover; background-position: center;
}
.blog-body { padding: var(--sp-3); flex: 1; display: flex; flex-direction: column; }
.blog-meta {
  font-family: var(--font-mono); font-size: var(--fs-xs);
  text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--rap-orange); margin-bottom: 0.5rem;
}
.blog-title {
  font-family: var(--font-serif); font-weight: 600; font-size: 1.35rem;
  margin-bottom: 0.75rem; letter-spacing: -0.01em; line-height: 1.2;
}
.blog-excerpt { color: var(--rap-grey-700); font-size: var(--fs-sm); flex: 1; }

/* ---- Single post ---- */
.post-hero { background: var(--rap-blue-deep); color: white; padding: var(--sp-8) 0 var(--sp-5); }
.post-hero h1 { color: white; max-width: 20ch; }
.post-meta {
  font-family: var(--font-mono); font-size: var(--fs-sm);
  text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--rap-orange); margin-bottom: var(--sp-3);
}
.post-body {
  max-width: 720px; margin: 0 auto;
  padding: var(--sp-6) var(--sp-3);
  font-size: var(--fs-md); line-height: 1.7;
}
.post-body h2, .post-body h3 { margin-top: var(--sp-4); margin-bottom: var(--sp-2); }
.post-body p { margin-bottom: var(--sp-2); }
.post-body blockquote {
  border-left: 4px solid var(--rap-orange);
  padding: var(--sp-2) var(--sp-3);
  margin: var(--sp-3) 0;
  font-family: var(--font-serif); font-style: italic; font-weight: 400;
  font-size: var(--fs-lg);
  color: var(--rap-blue-deep); letter-spacing: -0.01em;
  line-height: 1.4;
}

/* ---- Animations ---- */
@keyframes rise {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.rise { animation: rise 0.7s ease-out backwards; }
.rise-1 { animation-delay: 0.1s; }
.rise-2 { animation-delay: 0.2s; }
.rise-3 { animation-delay: 0.3s; }
.rise-4 { animation-delay: 0.4s; }

/* ---- Booking date table ---- */
.line-table { width: 100%; border-collapse: collapse; margin-top: var(--sp-2); }
.line-table th, .line-table td {
  padding: 0.875rem 1rem; text-align: left; border-bottom: 1px solid var(--rap-grey-100);
}
.line-table th {
  font-family: var(--font-mono); font-size: var(--fs-xs);
  text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--rap-grey-700); background: var(--rap-cream);
}
