/* Liv-In Comfort — Luxury Restroom Trailer Rentals
   Elegant, warm luxury palette inspired by premium event brands */

:root {
  --ink: #1a1614;
  --ink-soft: #3d3530;
  /* Matched to logo artboard background for seamless blend */
  --cream: #e6e2d6;
  --cream-dark: #ddd9cc;
  --ivory: #ece8dc;
  --logo-bg: #e6e2d6;
  --gold: #b8956c;
  --gold-light: #d4b896;
  --gold-dark: #8f6f4a;
  --blush: #e8d5c8;
  --charcoal: #2c2622;
  --muted: #7a7168;
  --border: rgba(184, 149, 108, 0.25);
  --shadow: 0 20px 60px rgba(26, 22, 20, 0.08);
  --shadow-lg: 0 30px 80px rgba(26, 22, 20, 0.12);
  --radius: 4px;
  --radius-lg: 12px;
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Raleway", system-ui, -apple-system, sans-serif;
  --max: 1180px;
  --header-h: 100px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

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

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.35rem, 2vw, 1.75rem); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 1rem;
}

.lead {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--muted);
  max-width: 560px;
}

/* ——— Layout ——— */
.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

/* Pull first content block up under the hero */
.section--after-hero {
  padding-top: clamp(2rem, 4vw, 3rem);
}

.section--dark {
  background: var(--charcoal);
  color: var(--cream);
}

.section--dark h2,
.section--dark h3 {
  color: var(--ivory);
}

.section--cream {
  background: var(--cream-dark);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}

.section-header .lead {
  margin: 1rem auto 0;
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.85rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1.5px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.35s var(--ease);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--ivory);
  border-color: var(--gold);
}

.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(143, 111, 74, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}

.btn-outline:hover {
  background: var(--ink);
  color: var(--ivory);
}

.btn-outline-light {
  background: transparent;
  color: var(--ivory);
  border-color: var(--gold-light);
}

.btn-outline-light:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ivory);
}

.btn-ghost {
  background: transparent;
  color: var(--gold-dark);
  border-color: transparent;
  padding-inline: 0.5rem;
  letter-spacing: 0.1em;
}

.btn-ghost:hover {
  color: var(--ink);
}

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

/* ——— Header ——— */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 100px;
  display: flex;
  align-items: center;
  background: var(--logo-bg);
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 4px 24px rgba(26, 22, 20, 0.04);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  height: 100%;
}

.site-header .logo {
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  min-width: 0;
  max-width: calc(100% - 56px);
  text-decoration: none;
}

/* ONE logo size for header on all pages */
.site-header .logo-img {
  display: block;
  height: 72px;
  width: auto;
  max-height: 72px;
  max-width: min(340px, 65vw);
  object-fit: contain;
  object-position: left center;
}

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

.logo-mark {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--ink);
}

.logo-mark span { color: var(--gold); }

.logo-tag {
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.footer-brand .logo-img {
  width: 100%;
  max-width: 360px;
  max-height: 120px;
  height: auto;
  margin-bottom: 1rem;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li { list-style: none; margin: 0; padding: 0; }

.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  padding: 0.25rem 0;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--ink);
  border-bottom-color: var(--gold);
}

.nav-cta {
  padding: 0.65rem 1.1rem;
  font-size: 0.75rem;
  white-space: nowrap;
}

/* ——— Pure CSS mobile menu (checkbox + label — no JavaScript) ——— */
.nav-check {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  opacity: 0;
  pointer-events: none;
}

/* Hamburger is a <label> — tapping it toggles #nav-open */
.menu-toggle {
  display: none;
  box-sizing: border-box;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(26, 22, 20, 0.35);
  border-radius: 10px;
  padding: 0;
  margin: 0;
  background: #1a1614;
  cursor: pointer;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: #ece8dc;
  border-radius: 1px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* PHONE */
@media (max-width: 768px) {
  .site-header {
    height: 64px;
    z-index: 1000;
  }

  .header-inner {
    width: min(100% - 1rem, var(--max));
    height: 64px;
    position: relative;
  }

  .site-header .logo {
    max-width: calc(100% - 60px);
  }

  .site-header .logo-img {
    height: 44px;
    max-height: 44px;
    max-width: calc(100vw - 80px);
  }

  /* Fixed dark hamburger — always tappable on iPhone */
  .menu-toggle {
    display: flex !important;
    position: fixed !important;
    top: 8px !important;
    right: 10px !important;
    z-index: 2147483647 !important;
    width: 48px !important;
    height: 48px !important;
    pointer-events: auto !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  /* Full-screen menu panel */
  .site-header .nav {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    z-index: 2147483646 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 1.5rem !important;
    background: #e6e2d6 !important;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s ease;
  }

  /* Open state — pure CSS, no JS */
  .nav-check:checked ~ .nav {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }

  .nav-check:checked ~ .menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .nav-check:checked ~ .menu-toggle span:nth-child(2) {
    opacity: 0;
  }
  .nav-check:checked ~ .menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .site-header .nav-links {
    flex-direction: column !important;
    gap: 1.15rem !important;
    align-items: center !important;
  }

  .site-header .nav-links a {
    font-size: 1.2rem !important;
    font-weight: 600 !important;
    padding: 0.55rem 0.75rem !important;
    color: #1a1614 !important;
    border-bottom: none !important;
  }

  .site-header .nav-cta {
    margin-top: 0.5rem;
  }

  .hero,
  .page-hero {
    padding-top: 64px;
  }
}

/* Desktop: hide hamburger, show row nav */
@media (min-width: 769px) {
  .menu-toggle {
    display: none !important;
  }
  .nav-check {
    display: none !important;
  }
  .site-header .nav {
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    background: transparent !important;
    flex-direction: row !important;
    inset: auto !important;
  }
}

/* Keep --header-h in sync for padding-top calc elsewhere */
:root { --header-h: 100px; }
@media (max-width: 768px) {
  :root { --header-h: 64px; }
}

/* ——— Hero ——— */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  overflow: hidden;
  background: var(--charcoal);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(26, 22, 20, 0.75) 0%, rgba(44, 38, 34, 0.55) 50%, rgba(26, 22, 20, 0.7) 100%),
    radial-gradient(ellipse at 70% 40%, rgba(184, 149, 108, 0.25) 0%, transparent 55%),
    linear-gradient(160deg, #2c2622 0%, #1a1614 40%, #3d2e24 100%);
  z-index: 0;
}

.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 80px,
      rgba(184, 149, 108, 0.03) 80px,
      rgba(184, 149, 108, 0.03) 81px
    );
  opacity: 0.6;
}

.hero-pattern {
  position: absolute;
  right: -5%;
  top: 10%;
  width: 55%;
  height: 80%;
  border: 1px solid rgba(184, 149, 108, 0.15);
  border-radius: 50% 40% 60% 45%;
  z-index: 1;
  pointer-events: none;
}

.hero-pattern::after {
  content: "";
  position: absolute;
  inset: 40px;
  border: 1px solid rgba(184, 149, 108, 0.1);
  border-radius: 45% 55% 40% 60%;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 4rem 0 5rem;
}

.hero .eyebrow {
  color: var(--gold-light);
}

/* Tagline slightly larger than the market title below it */
.hero .eyebrow.tagline,
.tagline {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  letter-spacing: 0.12em;
  font-weight: 600;
  margin-bottom: 0.7rem;
  text-transform: uppercase;
}

/* Market title: a bit smaller than tagline, larger than body lead */
.hero h1 {
  color: var(--ivory);
  font-size: clamp(1rem, 1.7vw, 1.18rem);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.01em;
  max-width: 38rem;
  margin-bottom: 0.85rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
  font-weight: 400;
}

.hero .lead {
  color: rgba(250, 247, 242, 0.78);
  font-size: 0.95rem;
  line-height: 1.65;
  max-width: 28rem;
}

@media (max-width: 768px) {
  .hero .eyebrow.tagline,
  .tagline {
    font-size: 1.05rem;
  }

  .hero h1 {
    font-size: 0.98rem;
    max-width: none;
  }

  .hero .lead {
    font-size: 0.9rem;
  }
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.75rem 2rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(184, 149, 108, 0.25);
}

.hero-stat {
  min-width: 6.5rem;
}

.hero-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  color: var(--gold-light);
  line-height: 1;
}

.hero-stat span {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.55);
  margin-top: 0.4rem;
  display: block;
}

/* ——— Floating quote bar ——— */
.quote-bar {
  position: relative;
  z-index: 10;
  margin-top: -2.5rem;
  margin-bottom: 0;
}

.quote-bar-inner {
  background: var(--ivory);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  border: 1px solid var(--border);
}

.quote-bar p {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--ink);
  font-style: italic;
}

.quote-bar p strong {
  font-style: normal;
  font-weight: 600;
  color: var(--gold-dark);
}

/* ——— Amenity strip ——— */
.amenities-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

/* Six “why rent” cards: always 2 rows × 3 columns on desktop */
.amenities-strip.amenities-strip--six {
  grid-template-columns: repeat(3, 1fr);
}

.amenity-card {
  text-align: center;
  padding: 2rem 1.25rem;
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.amenity-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.amenity-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--gold-dark);
  font-size: 1.35rem;
}

.amenity-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.amenity-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ——— Event cards ——— */
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.event-card {
  position: relative;
  background: var(--ivory);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.event-card:hover,
.event-card:focus-within {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.event-card-visual {
  height: 210px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  background-color: #2c2622;
  overflow: hidden;
}

/* Photo layer (zooms on hover) */
.event-card-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: #2c2622;
  background-size: cover;
  background-position: center;
  transition: transform 0.55s var(--ease);
}

.event-card:hover .event-card-visual::after {
  transform: scale(1.06);
}

/* Dark gradient for readable labels */
.event-card-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(26, 22, 20, 0.88) 0%,
    rgba(26, 22, 20, 0.35) 55%,
    rgba(26, 22, 20, 0.15) 100%
  );
  pointer-events: none;
}

.event-card-visual.weddings::after {
  background-image: url("../images/wedding.jpg");
}

.event-card-visual.graduations::after {
  background-image: url("../images/graduation.jpg");
}

.event-card-visual.corporate::after {
  background-image: url("../images/corporate.jpg");
}

.event-card-visual.festivals::after {
  background-image: url("../images/festival.jpg");
}

.event-card-visual.longterm::after {
  background-image: url("../images/longterm.jpg");
}

.event-card-visual.backyard::after {
  background-image: url("../images/backyard.jpg");
}

.event-card-visual.commercial::after {
  background-image: url("../images/commercial.jpg");
}

.event-card-visual.government::after {
  background-image: url("../images/government.jpg");
}

.event-card-visual.disaster::after {
  background-image: url("../images/disaster.jpg");
}

.event-card-visual span {
  position: relative;
  z-index: 2;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--ivory);
  font-style: italic;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.event-card-body {
  padding: 1.5rem 1.5rem 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.event-card-body p {
  font-size: 0.92rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
  flex: 1;
}

.event-card-body .link-arrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-dark);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.3s;
  white-space: normal;
  line-height: 1.35;
  /* Stretch so the whole card is the hit target */
  position: static;
}

.event-card-body .link-arrow::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  border-radius: inherit;
}

.event-card:hover .link-arrow,
.event-card:focus-within .link-arrow {
  gap: 0.7rem;
}

.event-card:focus-within {
  outline: 2px solid var(--gold-dark);
  outline-offset: 2px;
}

/* span full width for 5th card */
.events-grid .event-card:nth-child(4),
.events-grid .event-card:nth-child(5) {
  /* keep 3-col; on large screens 5 cards wrap */
}

/* ——— Feature split ——— */
.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.feature-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background:
    linear-gradient(160deg, #3d3530 0%, #1a1614 100%);
  border: 1px solid var(--border);
}

.feature-visual--photo {
  aspect-ratio: 4 / 3;
}

.feature-visual--photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.feature-visual-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.5rem;
  z-index: 1;
  background:
    linear-gradient(to top, rgba(26, 22, 20, 0.85) 0%, rgba(26, 22, 20, 0.15) 55%, transparent 100%);
}

/* Trailer photo gallery */
.trailer-gallery {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.85rem;
  min-height: 420px;
}

.trailer-gallery figure {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
  background: var(--charcoal);
}

.trailer-gallery figure:first-child {
  grid-row: 1 / -1;
}

.trailer-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 180px;
  transition: transform 0.5s var(--ease);
}

.trailer-gallery figure:hover img {
  transform: scale(1.04);
}

.trailer-gallery figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.65rem 0.9rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ivory);
  background: linear-gradient(to top, rgba(26, 22, 20, 0.8), transparent);
}

.photo-credit {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--muted);
  text-align: center;
}

/* ——— Blog ——— */
/* Tighter page chrome on blog index + posts */
body:has(.blog-list) .page-hero,
body:has(.post-body) .page-hero {
  padding: calc(var(--header-h) + 1.75rem) 0 1.75rem;
}

body:has(.blog-list) .page-hero h1,
body:has(.post-body) .page-hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  margin-bottom: 0.45rem;
}

body:has(.blog-list) .page-hero .lead,
body:has(.post-body) .page-hero .lead {
  font-size: 1rem;
  max-width: 40rem;
  line-height: 1.55;
}

body:has(.blog-list) .section,
body:has(.post-body) .section {
  padding: clamp(1.75rem, 4vw, 2.75rem) 0;
}

/* Blog index: multi-column card grid (less scrolling) */
.blog-list {
  max-width: none;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: stretch;
}

@media (min-width: 640px) {
  .blog-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.15rem;
  }
}

@media (min-width: 1024px) {
  .blog-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

.blog-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.15rem 1.2rem 1.25rem;
  background: var(--ivory);
  transition: box-shadow 0.25s var(--ease), transform 0.25s var(--ease);
  min-height: 0;
}

.blog-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.blog-card .blog-meta,
.post-body .blog-meta {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.35rem;
}

.blog-card h2 {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  line-height: 1.25;
  margin: 0 0 0.5rem;
}

.blog-card h2 a {
  color: var(--ink);
  text-decoration: none;
}

.blog-card h2 a:hover {
  color: var(--gold-dark);
}

/* Hide byline on index cards — saves vertical space */
.blog-card .blog-byline {
  display: none;
}

.blog-card > p:not(.blog-byline) {
  color: var(--muted);
  margin: 0 0 0.85rem;
  font-size: 0.9rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  overflow: hidden;
  flex: 1 1 auto;
}

.blog-card .read-more {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--gold-dark);
  text-decoration: none;
  margin-top: auto;
}

.blog-card .read-more:hover {
  text-decoration: underline;
}

.blog-byline {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0.35rem 0 0.85rem;
}

/* Individual posts: denser single column (readable, shorter page) */
.post-body {
  max-width: min(100%, 760px);
  margin: 0 auto;
}

.post-body .blog-meta {
  margin-bottom: 0.35rem;
  text-align: center;
}

.post-body .blog-byline {
  text-align: center;
  margin-bottom: 1rem;
}

.post-body h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 1.35rem 0 0.55rem;
  color: var(--ink);
  line-height: 1.25;
}

.post-body p {
  margin-bottom: 0.75rem;
  color: var(--ink-soft);
  line-height: 1.65;
  font-size: 0.98rem;
}

.post-body ul {
  margin: 0 0 0.9rem 1.15rem;
  color: var(--ink-soft);
  list-style: disc;
}

.post-body li {
  margin-bottom: 0.35rem;
  line-height: 1.55;
}

.post-body .back-to-blog {
  display: inline-block;
  margin-bottom: 0.85rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--gold-dark);
  text-decoration: none;
}

.post-body .back-to-blog:hover {
  text-decoration: underline;
}

.post-body .photo-credit,
.post-body .content-credit {
  margin-top: 1.25rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--muted);
  text-align: left;
}

@media (max-width: 768px) {
  .trailer-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    min-height: 0;
  }

  .trailer-gallery figure:first-child {
    grid-column: 1 / -1;
    grid-row: auto;
    aspect-ratio: 16 / 10;
  }

  .trailer-gallery figure:not(:first-child) {
    aspect-ratio: 1;
  }
}

.feature-visual-inner h3 {
  color: var(--ivory);
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.feature-visual-inner p {
  color: rgba(250, 247, 242, 0.7);
  font-size: 0.95rem;
}

.feature-badge {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  background: var(--gold);
  color: var(--ivory);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
}

.feature-list {
  margin-top: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.feature-list .check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(184, 149, 108, 0.15);
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  margin-top: 0.15rem;
}

/* ——— Trailer cards ——— */
.trailers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.trailer-card {
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.35s var(--ease), transform 0.35s var(--ease);
}

.trailer-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.trailer-card.featured {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold);
}

.trailer-card-top {
  padding: 2rem 1.75rem 1.5rem;
  background: linear-gradient(160deg, #2c2622 0%, #1a1614 100%);
  color: var(--ivory);
  position: relative;
  min-height: 160px;
}

.trailer-card.featured .trailer-card-top {
  background: linear-gradient(160deg, #3d2e24 0%, #1a1614 100%);
}

.trailer-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--ivory);
  padding: 0.35rem 0.7rem;
  border-radius: var(--radius);
}

.trailer-card-top h3 {
  color: var(--ivory);
  font-size: 1.75rem;
  margin-bottom: 0.35rem;
}

.trailer-card-top .capacity {
  font-size: 0.85rem;
  color: var(--gold-light);
  letter-spacing: 0.06em;
}

.trailer-card-body {
  padding: 1.5rem 1.75rem 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.trailer-card-body ul {
  margin-bottom: 1.5rem;
  flex: 1;
}

.trailer-card-body li {
  font-size: 0.9rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(184, 149, 108, 0.12);
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.trailer-card-body li::before {
  content: "✦";
  color: var(--gold);
  font-size: 0.65rem;
}

.trailer-price {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--ink);
  margin-bottom: 1rem;
}

.trailer-price span {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* ——— Process steps ——— */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  counter-reset: step;
}

.process-step {
  text-align: center;
  position: relative;
}

.process-step::before {
  counter-increment: step;
  content: "0" counter(step);
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
  opacity: 0.85;
}

.process-step h3 {
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
}

.process-step p {
  font-size: 0.9rem;
  color: var(--muted);
}

/* ——— Testimonials ——— */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial {
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.testimonial-stars {
  color: var(--gold);
  letter-spacing: 0.15em;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.testimonial blockquote {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--ink);
  line-height: 1.55;
  margin-bottom: 1.25rem;
}

.testimonial cite {
  font-style: normal;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ——— CTA banner ——— */
.cta-banner {
  text-align: center;
  padding: clamp(4rem, 8vw, 6rem) 2rem;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(184, 149, 108, 0.2) 0%, transparent 55%),
    var(--charcoal);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(184, 149, 108, 0.2);
}

.cta-banner h2 {
  color: var(--ivory);
  margin-bottom: 1rem;
}

.cta-banner p {
  color: rgba(250, 247, 242, 0.7);
  max-width: 480px;
  margin: 0 auto 2rem;
}

.cta-banner .btn-group {
  justify-content: center;
}

/* ——— Page hero (inner pages) ——— */
.page-hero {
  padding: calc(var(--header-h) + 4rem) 0 3.5rem;
  background:
    linear-gradient(160deg, #2c2622 0%, #1a1614 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(184, 149, 108, 0.18) 0%, transparent 55%);
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero .eyebrow {
  color: var(--gold-light);
}

.page-hero h1 {
  color: var(--ivory);
  margin-bottom: 0.75rem;
}

.page-hero .lead {
  margin: 0 auto;
  color: rgba(250, 247, 242, 0.7);
}

/* ——— FAQ ——— */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--ink);
  transition: color 0.25s;
}

.faq-question:hover {
  color: var(--gold-dark);
}

.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--gold-dark);
  transition: transform 0.3s var(--ease), background 0.3s;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: rgba(184, 149, 108, 0.12);
}

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

.faq-item.open .faq-answer {
  max-height: 400px;
  padding-bottom: 1.35rem;
}

.faq-answer p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.75;
}

/* ——— Forms ——— */
.form-card {
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 4vw, 2.75rem);
  box-shadow: var(--shadow);
  max-width: 720px;
  margin: 0 auto;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--cream);
  transition: border-color 0.25s, box-shadow 0.25s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184, 149, 108, 0.15);
  background: var(--ivory);
}

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

.form-note {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.5rem;
  text-align: center;
}

.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
}

.form-success.visible {
  display: block;
}

.form-success h3 {
  color: var(--gold-dark);
  margin-bottom: 0.75rem;
}

.form-card.submitted .form-fields {
  display: none;
}

/* ——— About ——— */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: start;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}

.about-stat {
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
}

.about-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.25rem;
  color: var(--gold-dark);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.about-stat span {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.about-panel {
  background: var(--charcoal);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid rgba(184, 149, 108, 0.2);
}

.about-panel h3 {
  color: var(--ivory);
  margin-bottom: 1rem;
}

.about-panel p {
  color: rgba(250, 247, 242, 0.7);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.contact-lines {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.contact-lines a {
  color: var(--gold-light);
  font-weight: 500;
  transition: color 0.25s;
}

.contact-lines a:hover {
  color: var(--ivory);
}

.contact-lines span {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.45);
  display: block;
  margin-bottom: 0.15rem;
}

/* ——— Service area ——— */
.areas-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.area-chip {
  padding: 0.55rem 1.15rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--ink-soft);
  background: var(--ivory);
}

/* ——— Footer ——— */
.site-footer {
  background: var(--ink);
  color: rgba(250, 247, 242, 0.65);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-brand .logo-mark {
  color: var(--ivory);
  font-size: 1.35rem;
}

.footer-brand p {
  margin-top: 1rem;
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-col a {
  font-size: 0.9rem;
  transition: color 0.25s;
}

.footer-col a:hover {
  color: var(--ivory);
}

.footer-bottom {
  border-top: 1px solid rgba(184, 149, 108, 0.15);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
}

/* ——— Utility ——— */
.mt-0 { margin-top: 0; }
.text-center { text-align: center; }

/* ——— Responsive ——— */
@media (max-width: 960px) {
  .amenities-strip,
  .events-grid,
  .trailers-grid,
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Keep 3-across when possible on tablet; only drop to 2 if needed */
  .amenities-strip.amenities-strip--six {
    grid-template-columns: repeat(3, 1fr);
  }

  .process-steps {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem 1.5rem;
  }

  .feature-split,
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .feature-visual {
    aspect-ratio: 16/10;
    max-height: 360px;
  }

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

@media (max-width: 768px) {
  .amenities-strip.amenities-strip--six {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    gap: 1.5rem;
  }

  .amenities-strip,
  .events-grid,
  .trailers-grid,
  .testimonials-grid,
  .process-steps,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .quote-bar-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* === Final mobile logo lock (do not hide the CSS checkbox menu) === */
@media (max-width: 768px) {
  .site-header {
    height: 64px !important;
    min-height: 64px !important;
  }
  :root { --header-h: 64px !important; }

  .site-header .logo-img {
    height: 44px !important;
    max-height: 44px !important;
    width: auto !important;
    max-width: calc(100vw - 80px) !important;
    min-height: 0 !important;
    object-fit: contain !important;
  }

  .hero-bg, .hero-pattern { z-index: 0 !important; }
  .hero-content { z-index: 1 !important; }
}
@media (min-width: 769px) {
  .site-header .logo-img {
    height: 72px !important;
    max-height: 72px !important;
    max-width: 340px !important;
  }
}

