/* ==========================================================================
   Club Car Mobile Bars — Rustic & Elegant design system (light palette)
   ========================================================================== */

:root {
  --cream: #faf5ec;
  --cream-deep: #f2e9d8;
  --sand: #ecdcb9;
  --sand-deep: #e0c99c;
  --wood-dark: #6b4a34;
  --wood: #85614a;
  --wood-light: #a4805f;
  --sage: #a9ad84;
  --sage-deep: #888c62;
  --gold: #c9a24b;
  --gold-light: #e2c581;
  --gold-deep: #9c7a2e;
  --ink: #2c231b;
  --white: #fffdf9;

  --serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --script: 'Great Vibes', 'Brush Script MT', cursive;
  --sans: 'Jost', 'Helvetica Neue', Arial, sans-serif;

  --max-width: 1180px;
  --radius: 4px;
  --shadow: 0 12px 30px -14px rgba(107, 74, 52, 0.22);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  color: var(--wood-dark);
  margin: 0 0 0.5em;
  line-height: 1.2;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); }
h3 { font-size: 1.35rem; }

p { margin: 0 0 1em; }

.script {
  font-family: var(--script);
  color: var(--gold-deep);
  font-weight: 400;
}

.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--sage-deep);
  margin-bottom: 0.9em;
  font-weight: 500;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
}

section { padding: 84px 0; }
.section-tight { padding: 56px 0; }
.center { text-align: center; }

.bg-wood {
  background: linear-gradient(160deg, var(--wood-dark), var(--wood) 65%, var(--wood-light));
  color: var(--cream);
}
.bg-wood h1, .bg-wood h2, .bg-wood h3 { color: var(--white); }
.bg-accent {
  background: linear-gradient(160deg, var(--sand-deep), var(--sand));
  color: var(--ink);
}
.bg-accent h1, .bg-accent h2, .bg-accent h3 { color: var(--wood-dark); }
.bg-cream-deep { background: var(--cream-deep); }
.bg-white { background: var(--white); }

/* Divider ornament */
.ornament {
  width: 90px;
  height: 22px;
  margin: 0 auto 1.6em;
  position: relative;
  opacity: 0.85;
}
.ornament::before, .ornament::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 34px;
  height: 1px;
  background: var(--gold);
}
.ornament::before { left: 0; }
.ornament::after { right: 0; }
.ornament span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 8px;
  height: 8px;
  border: 1px solid var(--gold);
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-block;
  font-family: var(--sans);
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 500;
  padding: 15px 34px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
}
.btn-primary {
  background: var(--gold);
  color: var(--wood-dark);
  border-color: var(--gold);
}
.btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); }
.btn-outline {
  background: transparent;
  color: var(--wood-dark);
  border-color: rgba(107, 74, 52, 0.45);
}
.btn-outline:hover { background: rgba(107, 74, 52, 0.08); border-color: var(--wood-dark); }
.btn-outline-dark {
  background: transparent;
  color: var(--wood-dark);
  border-color: var(--wood-dark);
}
.btn-outline-dark:hover { background: var(--wood-dark); color: var(--cream); }
.btn:focus-visible, a:focus-visible, button:focus-visible,
input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 2px solid var(--gold-deep);
  outline-offset: 2px;
}

/* ==========================================================================
   Header / Nav
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 239, 223, 0.95);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(201, 162, 75, 0.35);
}

.nav-wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--wood-dark);
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  font: inherit;
}
.brand img, .brand svg { width: 44px; height: 44px; flex: none; object-fit: contain; }
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  text-align: left;
}
.brand-text .script { font-size: 1.3rem; white-space: nowrap; }
.brand-text small {
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  color: var(--sage-deep);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 8px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  display: inline-block;
  padding: 10px 16px;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--wood-dark);
  border-radius: var(--radius);
  transition: color 0.2s ease, background 0.2s ease;
  cursor: pointer;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--gold-deep);
  background: rgba(201, 162, 75, 0.16);
}
.nav-cta {
  margin-left: 8px;
  padding: 10px 22px !important;
  border: 1px solid var(--gold);
  color: var(--wood-dark) !important;
}
.nav-cta:hover { background: var(--gold) !important; color: var(--wood-dark) !important; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--wood-dark);
  font-size: 1.6rem;
  cursor: pointer;
}

@media (max-width: 880px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    background: var(--cream-deep);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    border-bottom: 1px solid rgba(201, 162, 75, 0.35);
  }
  .nav-links.open { max-height: 520px; }
  .nav-links a { padding: 16px 28px; border-radius: 0; }
  .nav-cta { margin-left: 0; border-left: none; }
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  padding: 120px 0 100px;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 15%, rgba(201, 162, 75, 0.22), transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(169, 173, 132, 0.22), transparent 50%),
    linear-gradient(160deg, var(--cream-deep), var(--sand) 65%, var(--sand-deep));
  color: var(--ink);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(107, 74, 52, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(107, 74, 52, 0.04) 1px, transparent 1px);
  background-size: 42px 42px;
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero-inner { max-width: 720px; }
.hero p.lead {
  font-size: 1.15rem;
  color: var(--wood);
  max-width: 560px;
}
.hero-actions { display: flex; gap: 16px; margin-top: 30px; flex-wrap: wrap; }
.hero-stats {
  margin-top: 56px;
  display: flex;
  gap: 46px;
  flex-wrap: wrap;
}
.hero-stats div strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.8rem;
  color: var(--gold-deep);
}
.hero-stats div span {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage-deep);
}

.page-hero {
  padding: 92px 0 66px;
  background: linear-gradient(160deg, var(--cream-deep), var(--sand) 80%);
  color: var(--ink);
  text-align: center;
}
.page-hero p { max-width: 620px; margin: 0 auto; color: var(--wood); }

/* ==========================================================================
   Photo-forward hero (home page)
   ========================================================================== */

.photo-hero {
  position: relative;
  min-height: 640px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background: linear-gradient(160deg, var(--sand-deep), var(--sand));
}
.photo-hero .photo-slot {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  border: none;
  border-radius: 0;
  align-items: flex-start;
}
.photo-hero .photo-slot .slot-inner {
  padding: 18px 20px;
  text-align: left;
}
.photo-hero .photo-slot svg { display: none; }
.photo-hero .photo-slot em { font-size: 0.8rem; }
.photo-hero .photo-slot small { color: var(--sage-deep); }
.photo-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(30,23,17,0.35) 0%, rgba(30,23,17,0.5) 40%, rgba(20,15,11,0.9) 100%);
  pointer-events: none;
}
.photo-hero .container { position: relative; z-index: 2; padding-top: 90px; padding-bottom: 56px; }
.photo-hero .eyebrow, .photo-hero h1, .photo-hero p.lead {
  text-shadow: 0 2px 10px rgba(20,15,11,0.45);
}
.photo-hero .eyebrow { color: var(--gold-light); }
.photo-hero h1 { color: var(--white); text-wrap: balance; }
.photo-hero h1 .script { color: var(--gold-light); }
.photo-hero p.lead { color: rgba(255,253,249,0.92); max-width: 560px; }
.photo-hero .hero-actions { margin-top: 28px; }
.photo-hero .btn-outline { color: var(--white); border-color: rgba(255,253,249,0.65); }
.photo-hero .btn-outline:hover { background: rgba(255,253,249,0.14); border-color: var(--white); }

.stat-bar {
  background: var(--cream-deep);
  border-bottom: 1px solid rgba(201,162,75,0.25);
  padding: 30px 0;
}
.stat-bar .container { display: flex; gap: 46px; flex-wrap: wrap; justify-content: center; }
.stat-bar div { text-align: center; }
.stat-bar strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--gold-deep);
}
.stat-bar span {
  font-size: 0.7rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--sage-deep);
}

/* ==========================================================================
   Instagram scrolling gallery
   ========================================================================== */

.ig-section { padding: 76px 0 84px; background: var(--white); }
.ig-head { text-align: center; margin-bottom: 40px; }
.ig-head .handle { color: var(--gold-deep); font-weight: 500; }
.ig-marquee {
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.ig-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: ig-scroll 36s linear infinite;
}
.ig-marquee:hover .ig-track { animation-play-state: paused; }
.ig-tile {
  width: 230px;
  height: 230px;
  flex: none;
  position: relative;
  border-radius: 6px;
  overflow: hidden;
}
.ig-tile .photo-slot {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  border-radius: 6px;
}
.ig-tile .photo-slot svg { width: 26px; height: 26px; margin-bottom: 0; }
.ig-tile .ig-badge {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(44,35,27,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}
@keyframes ig-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .ig-track { animation: none; }
  .ig-marquee { overflow-x: auto; }
}

/* Photo-forward feature card (fleet preview) */
.feature-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  box-shadow: var(--shadow);
}
.feature-card .photo-slot {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  border-radius: var(--radius);
}
.feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(44,35,27,0) 40%, rgba(44,35,27,0.88) 100%);
  pointer-events: none;
}
.feature-card .feature-body {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: 20px 20px 22px;
  color: var(--white);
}
.feature-card .feature-body .tag {
  align-self: flex-start;
  display: inline-block;
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--wood-dark);
  padding: 4px 11px;
  border-radius: 20px;
  margin-bottom: 10px;
  font-weight: 600;
}
.feature-card .feature-body h3 { color: var(--white); margin-bottom: 6px; }
.feature-card .feature-body p { color: rgba(255,253,249,0.85); font-size: 0.9rem; margin: 0; }

/* ==========================================================================
   Cards & grids
   ========================================================================== */

.grid { display: grid; gap: 34px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1000px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .grid-4 { grid-template-columns: 1fr; }
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid rgba(107, 74, 52, 0.1);
  display: flex;
  flex-direction: column;
}
.card-body { padding: 30px 28px 32px; flex: 1; display: flex; flex-direction: column; }
.card-body .tag {
  align-self: flex-start;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--sage);
  color: var(--white);
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
}

/* Photo placeholder — used everywhere a real client photo will eventually go */
.photo-slot {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  background:
    repeating-linear-gradient(135deg, rgba(107,74,52,0.05) 0 2px, transparent 2px 14px),
    linear-gradient(150deg, var(--cream-deep), #e6dbc4);
  border: 1px dashed rgba(107, 74, 52, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--wood-light);
}
.photo-slot.wide { aspect-ratio: 16 / 9; }
.photo-slot.square { aspect-ratio: 1 / 1; }
.photo-slot .slot-inner { padding: 20px; }
.photo-slot.has-photo {
  border: none;
  background: none;
  padding: 0;
  overflow: hidden;
}
.photo-slot.has-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  display: block;
}
.photo-slot svg { width: 34px; height: 34px; margin-bottom: 10px; opacity: 0.7; }
.photo-slot em {
  display: block;
  font-family: var(--script);
  font-size: 1.1rem;
  color: var(--wood);
  font-style: normal;
}
.photo-slot small {
  display: block;
  margin-top: 4px;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage-deep);
}

/* ==========================================================================
   Pricing table
   ========================================================================== */

.price-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(107,74,52,0.1);
  padding: 40px 32px;
  position: relative;
}
.price-card.featured { border: 2px solid var(--gold); }
.price-card .ribbon {
  position: absolute;
  top: -14px;
  left: 32px;
  background: var(--gold);
  color: var(--wood-dark);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  font-weight: 600;
}
.price-card .price {
  font-family: var(--serif);
  font-size: 2.4rem;
  color: var(--wood-dark);
  margin: 10px 0 4px;
}
.price-card .price span {
  font-family: var(--sans);
  font-size: 0.85rem;
  color: var(--wood-light);
}
.price-card ul {
  list-style: none;
  margin: 22px 0 26px;
  padding: 0;
}
.price-card ul li {
  padding: 9px 0;
  border-bottom: 1px solid rgba(107,74,52,0.1);
  font-size: 0.94rem;
  padding-left: 26px;
  position: relative;
}
.price-card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 15px;
  width: 8px;
  height: 8px;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
}

.info-banner {
  background: var(--sage);
  color: var(--white);
  border-radius: var(--radius);
  padding: 26px 30px;
  margin-top: 40px;
}
.info-banner h4 { color: var(--white); margin-bottom: 6px; }

/* ==========================================================================
   Testimonials
   ========================================================================== */

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 34px 30px;
  border-top: 3px solid var(--gold);
}
.testimonial-card .stars { color: var(--gold-deep); letter-spacing: 3px; margin-bottom: 12px; }
.testimonial-card p.quote { font-style: italic; color: var(--wood); }
.testimonial-card .name {
  margin-top: 16px;
  font-family: var(--serif);
  font-weight: 600;
  color: var(--wood-dark);
}
.testimonial-card .role {
  font-size: 0.78rem;
  color: var(--sage-deep);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.award-strip {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.award-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid rgba(201,162,75,0.45);
  padding: 12px 22px;
  border-radius: 40px;
  font-size: 0.85rem;
  color: var(--wood-dark);
}
.award-pill strong { color: var(--gold-deep); }
.award-pill a { text-decoration: underline; text-underline-offset: 2px; }

/* ==========================================================================
   Forms
   ========================================================================== */

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 700px) { .form-grid { grid-template-columns: 1fr; } }
.form-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--wood-light);
}
.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--sans);
  font-size: 0.98rem;
  padding: 13px 14px;
  border: 1px solid rgba(107,74,52,0.28);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,162,75,0.18);
}
.form-note { font-size: 0.82rem; color: var(--wood-light); margin-top: 8px; }
.form-success {
  display: none;
  background: var(--sage);
  color: var(--white);
  padding: 16px 20px;
  border-radius: var(--radius);
  margin-bottom: 24px;
}
.form-success.show { display: block; }

/* ==========================================================================
   Contact / info blocks
   ========================================================================== */

.contact-info { display: grid; gap: 22px; }
.contact-info .item { display: flex; gap: 16px; align-items: flex-start; }
.contact-info .icon {
  flex: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--cream-deep);
  border: 1px solid rgba(201,162,75,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-deep);
}
.contact-info h4 { margin-bottom: 2px; }
.contact-info p { margin: 0; color: var(--wood-light); }

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background: linear-gradient(160deg, var(--wood-dark), var(--wood));
  color: var(--cream-deep);
  padding: 60px 0 26px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(250,245,236,0.18);
}
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 {
  color: var(--gold-light);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-brand .brand { color: var(--cream); margin-bottom: 14px; }
.footer-brand .brand-text small { color: var(--sage); }
.footer-brand p { color: rgba(250,245,236,0.7); max-width: 320px; }
.footer-links { list-style: none; margin: 0; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(250,245,236,0.8); transition: color 0.2s ease; cursor: pointer; }
.footer-links a:hover { color: var(--gold-light); }
.social-row { display: flex; gap: 12px; margin-top: 14px; }
.social-row a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(250,245,236,0.35);
  display: flex; align-items: center; justify-content: center;
  color: var(--cream);
}
.social-row a:hover { border-color: var(--gold); color: var(--gold-light); }
.footer-bottom {
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.78rem;
  color: rgba(250,245,236,0.55);
}

/* Utility */
.mt-0 { margin-top: 0; }
.muted { color: var(--wood-light); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 800px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .gallery-grid { grid-template-columns: 1fr; } }
.gallery-grid .photo-slot { border-radius: var(--radius); }
.gallery-grid .tall { aspect-ratio: 3/4; }
