:root {
  --navy-950: #060b08;
  --navy-900: #0d1711;
  --navy-800: #15261c;
  --navy-700: #23432d;
  --silver-50: #fbfdf9;
  --silver-100: #f0f6ee;
  --silver-200: #dce8d9;
  --silver-300: #bfceb9;
  --silver-500: #6f8472;
  --ink-900: #0d160f;
  --ink-700: #3b4c3e;
  --accent-green: #8dc63f;
  --accent-green-dark: #5b8e25;
  --white: #ffffff;
  --success: #dff7e5;
  --danger: #ffe0e0;
  --shadow-lg: 0 28px 90px rgba(7, 17, 29, 0.18);
  --shadow-md: 0 18px 50px rgba(7, 17, 29, 0.12);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --container: 1200px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(141, 198, 63, 0.14), transparent 28%),
    linear-gradient(180deg, #08100b 0%, #132016 24%, #f0f6ee 24%, #fbfdf9 100%);
  color: var(--ink-900);
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

h1,
h2,
h3,
.brand strong {
  font-family: "Cormorant Garamond", serif;
}

.container {
  width: min(calc(100% - 1.5rem), var(--container));
  margin: 0 auto;
}

.section {
  padding: 4.5rem 0;
}

.eyebrow {
  margin: 0 0 0.85rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--silver-500);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(6, 11, 8, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(219, 227, 238, 0.12);
}

.site-header.is-scrolled {
  background: rgba(6, 11, 8, 0.97);
  box-shadow: 0 18px 48px rgba(6, 11, 8, 0.34);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  color: var(--white);
}

.brand-logo {
  width: 128px;
  height: 78px;
  object-fit: cover;
  object-position: center 44%;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  padding: 0;
  box-shadow: 0 10px 26px rgba(7, 17, 29, 0.22);
}

.brand-copy {
  display: grid;
  gap: 0.15rem;
}

.brand strong {
  font-size: 1.28rem;
  letter-spacing: -0.03em;
}

.brand small {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.menu-toggle {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.3rem;
  color: var(--white);
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

.site-nav {
  position: fixed;
  inset: 82px 0 auto;
  background: rgba(6, 11, 8, 0.98);
  display: grid;
  gap: 0.35rem;
  padding: 1rem 0.75rem 1.2rem;
  transform: translateY(-140%);
  opacity: 0;
  pointer-events: none;
  transition:
    transform 0.24s ease,
    opacity 0.24s ease;
}

.site-nav.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.84);
  padding: 0.9rem 1rem;
  border-radius: 14px;
  font-size: 0.95rem;
  font-weight: 700;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.08);
}

.nav-cta,
.button-primary {
  background: linear-gradient(135deg, var(--accent-green) 0%, #a7da54 100%);
  color: var(--navy-950);
  box-shadow: 0 18px 40px rgba(141, 198, 63, 0.3);
}

.button,
.whatsapp-cta {
  min-height: 52px;
  padding: 0.9rem 1.3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.button:hover,
.button:focus-visible,
.whatsapp-cta:hover,
.whatsapp-cta:focus-visible {
  transform: translateY(-2px);
}

.button-secondary {
  color: var(--navy-900);
  border-color: rgba(91, 142, 37, 0.26);
  background: rgba(141, 198, 63, 0.08);
}

.booking-panel .button-secondary,
.hero-copy-section .button-secondary,
.whatsapp-cta {
  color: var(--white);
  border-color: rgba(141, 198, 63, 0.34);
  background: rgba(141, 198, 63, 0.18);
}

.hero-banner {
  position: relative;
  width: 100%;
  min-height: clamp(300px, 55vw, 520px);
}

.hero-banner img {
  width: 100%;
  height: clamp(300px, 55vw, 520px);
  object-fit: cover;
}

.hero-banner-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 11, 8, 0.16), rgba(6, 11, 8, 0.64)),
    linear-gradient(90deg, rgba(6, 11, 8, 0.72), rgba(91, 142, 37, 0.12));
}

.hero-copy-section {
  margin-top: -4rem;
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  gap: 1.25rem;
  align-items: end;
}

.hero-copy,
.hero-feature-card {
  background: rgba(6, 11, 8, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.hero-copy {
  padding: 1.5rem;
  color: var(--white);
}

.hero-copy p,
.hero-copy h1,
.hero-copy h2,
.hero-copy h3,
.hero-feature-card,
.hero-feature-card strong,
.hero-feature-card p,
.hero-feature-card span {
  color: var(--white);
}

.hero-copy .eyebrow,
.hero-feature-card p,
.hero-feature-card span {
  color: rgba(255, 255, 255, 0.82);
}

.hero-copy h1,
.section-heading h1,
.section-heading h2,
.detail-heading h2,
.confirmation-card h2,
.booking-copy h2,
.panel-heading h2 {
  margin: 0;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.hero-copy h1 {
  font-size: clamp(3rem, 9vw, 5.3rem);
  max-width: 11ch;
}

.hero-lead,
.section-heading p,
.detail-heading p,
.booking-copy p,
.panel-heading p,
.site-footer p {
  margin: 1rem 0 0;
  line-height: 1.75;
}

.hero-lead,
.booking-copy p {
  color: rgba(255, 255, 255, 0.82);
}

.hero-actions,
.detail-actions,
.booking-footer,
.admin-form-actions,
.inventory-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-actions {
  margin-top: 1.4rem;
}

.hero-feature-card {
  padding: 1rem;
  color: var(--white);
  overflow: hidden;
}

.hero-feature-card p,
.hero-feature-card span {
  margin: 0;
}

.hero-feature-card strong {
  display: block;
  margin-top: 0.4rem;
  font-size: 2rem;
  letter-spacing: -0.03em;
}

.hero-feature-card img {
  margin-top: 1rem;
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: var(--radius-md);
  background: var(--silver-200);
}

.section-heading {
  max-width: 760px;
}

.section-heading h1,
.section-heading h2,
.detail-heading h2,
.booking-copy h2,
.confirmation-card h2,
.panel-heading h2 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--navy-900);
}

.admin-hero .section-heading h1 {
  font-size: clamp(2.7rem, 6vw, 4.4rem);
}

.fleet-toolbar {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.chip-set {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.chip {
  padding: 0.72rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(91, 142, 37, 0.16);
  background: rgba(255, 255, 255, 0.72);
  color: var(--navy-900);
  font-size: 0.88rem;
  font-weight: 800;
}

.chip.is-active {
  background: var(--accent-green-dark);
  color: var(--white);
}

.fleet-summary {
  margin: 0;
  color: var(--ink-700);
  font-weight: 700;
}

.fleet-grid,
.analytics-grid,
.inventory-list {
  display: grid;
  gap: 1rem;
}

.fleet-grid {
  margin-top: 1.5rem;
}

.fleet-card,
.detail-shell,
.booking-panel,
.confirmation-card,
.admin-panel,
.inventory-card,
.analytics-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(12, 27, 49, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.fleet-card {
  overflow: hidden;
  display: grid;
}

.fleet-card-media {
  aspect-ratio: 4 / 3;
  position: relative;
  background: var(--silver-200);
}

.fleet-card-media img,
.inventory-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.status-pill,
.tag {
  display: inline-flex;
  align-items: center;
  padding: 0.48rem 0.8rem;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-pill {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
}

.tag {
  background: rgba(12, 27, 49, 0.06);
  color: var(--navy-900);
}

.status-available {
  background: rgba(223, 247, 229, 0.96);
  color: #0d5d29;
}

.status-rented {
  background: rgba(255, 224, 224, 0.96);
  color: #8b2121;
}

.fleet-card-body,
.inventory-card-body,
.admin-panel,
.confirmation-card,
.analytics-card,
.booking-panel {
  padding: 1.2rem;
}

.fleet-card-heading,
.inventory-card-heading {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: start;
}

.fleet-card h3,
.inventory-card h3,
.inventory-card h4 {
  margin: 0.45rem 0 0;
  color: var(--navy-900);
  font-size: 2rem;
  letter-spacing: -0.03em;
}

.inventory-card h4 {
  font-size: 1.75rem;
}

.fleet-card p,
.inventory-meta {
  color: var(--ink-700);
  line-height: 1.65;
}

.fleet-pricing,
.rate-stack {
  display: grid;
  gap: 0.8rem;
}

.fleet-pricing span,
.rate-card {
  background: rgba(12, 27, 49, 0.05);
  border-radius: var(--radius-md);
  padding: 0.95rem 1rem;
}

.fleet-pricing small,
.rate-card span,
.analytics-card span {
  color: var(--ink-700);
}

.fleet-pricing strong,
.rate-card strong,
.analytics-card strong {
  display: block;
  color: var(--navy-900);
}

.detail-shell {
  display: grid;
  gap: 1.25rem;
  padding: 1rem;
}

.detail-gallery {
  display: grid;
  gap: 0.9rem;
}

.detail-main-media {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--silver-200);
}

.detail-main-media img {
  width: 100%;
  height: min(64vw, 440px);
  object-fit: cover;
}

.detail-main-media figcaption {
  padding: 0.9rem 1rem;
  background: var(--navy-900);
  color: var(--white);
  font-weight: 700;
}

.detail-thumbnails {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.thumb-button {
  padding: 0;
  border: 1px solid rgba(12, 27, 49, 0.1);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
  text-align: left;
}

.thumb-button img {
  width: 100%;
  height: 110px;
  object-fit: cover;
}

.thumb-button span {
  display: block;
  padding: 0.75rem 0.85rem;
  font-weight: 800;
  color: var(--navy-900);
}

.thumb-button.is-active {
  box-shadow: 0 0 0 3px rgba(12, 27, 49, 0.12);
}

.detail-copy {
  display: grid;
  gap: 1.2rem;
  align-content: start;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(12, 27, 49, 0.03);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.specs-table th,
.specs-table td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid rgba(12, 27, 49, 0.08);
  text-align: left;
}

.specs-table th {
  width: 42%;
  color: var(--ink-700);
  font-size: 0.92rem;
}

.specs-table td {
  font-weight: 800;
  color: var(--navy-900);
}

.booking-section {
  background:
    radial-gradient(circle at top right, rgba(141, 198, 63, 0.18), transparent 18%),
    linear-gradient(180deg, rgba(6, 11, 8, 0.98), rgba(13, 23, 17, 0.96));
}

.booking-grid {
  display: grid;
  gap: 1.25rem;
}

.booking-copy,
.booking-copy h2,
.booking-copy p,
.booking-copy .eyebrow {
  color: var(--white);
}

.booking-copy p,
.payment-header p,
.booking-estimate,
.whatsapp-cta {
  color: rgba(255, 255, 255, 0.9);
}

.booking-panel {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.booking-panel,
.booking-panel label,
.booking-panel strong,
.booking-panel p,
.booking-panel .field-caption,
.payment-shell,
.payment-shell label,
.payment-shell strong,
.payment-shell p {
  color: var(--white);
}

.booking-form,
.admin-form {
  display: grid;
  gap: 1rem;
}

.form-grid {
  display: grid;
  gap: 0.95rem;
}

label {
  display: grid;
  gap: 0.45rem;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(12, 27, 49, 0.12);
  background: var(--white);
  color: var(--navy-900);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.full-span {
  grid-column: 1 / -1;
}

.payment-shell {
  display: grid;
  gap: 0.9rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 1rem;
}

.payment-header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.payment-header strong {
  display: block;
  font-size: 1.05rem;
}

.payment-header p {
  margin: 0.35rem 0 0;
  color: rgba(255, 255, 255, 0.76);
}

.toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.92rem;
}

.toggle input {
  width: 18px;
  height: 18px;
}

.payment-panel {
  display: grid;
  gap: 0.85rem;
}

.inline-feedback,
.form-feedback {
  margin: 0;
  min-height: 1.35em;
  font-size: 0.92rem;
}

.form-feedback.is-success,
.inline-feedback.is-success {
  color: var(--success);
}

.form-feedback.is-error,
.inline-feedback.is-error {
  color: #ffd2d2;
}

.booking-estimate {
  flex: 1 1 260px;
  padding: 0.95rem 1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
}

.whatsapp-cta {
  width: 100%;
  margin-top: 1rem;
}

.confirmation-card p,
.confirmation-meta {
  color: var(--ink-700);
}

.confirmation-meta {
  display: grid;
  gap: 0.45rem;
  margin-top: 1rem;
  font-weight: 700;
}

.analytics-grid {
  gap: 1rem;
}

.admin-shortcuts {
  display: grid;
  gap: 1rem;
}

.admin-shortcut-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(12, 27, 49, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 1.4rem;
  display: grid;
  gap: 0.55rem;
}

.admin-shortcut-card span {
  color: var(--silver-500);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.admin-shortcut-card strong {
  color: var(--navy-900);
  font-size: 2rem;
  letter-spacing: -0.03em;
}

.admin-shortcut-card p {
  margin: 0;
  color: var(--ink-700);
  line-height: 1.7;
}

.analytics-card strong {
  margin-top: 0.35rem;
  font-size: 2rem;
}

.admin-main {
  background: linear-gradient(180deg, #eef3f9, #f8fbff);
}

.admin-logo-hero {
  min-height: clamp(320px, 50vw, 500px);
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.16), transparent 32%),
    linear-gradient(135deg, #08100b 0%, #15261c 58%, #23432d 100%);
}

.admin-logo-hero-media img {
  object-fit: cover;
  object-position: center 42%;
  padding: 0;
  opacity: 0.95;
  transform: scale(1.34);
}

.admin-logo-hero-overlay {
  background:
    linear-gradient(90deg, rgba(6, 11, 8, 0.86) 0%, rgba(6, 11, 8, 0.74) 38%, rgba(6, 11, 8, 0.24) 72%),
    linear-gradient(180deg, rgba(141, 198, 63, 0.1), rgba(6, 11, 8, 0.24));
}

.admin-hero-copy {
  max-width: 720px;
}

.admin-hero-copy,
.admin-hero-copy h1,
.admin-hero-copy p,
.admin-hero-copy .eyebrow {
  color: var(--white);
}

.admin-hero-copy .eyebrow {
  color: rgba(255, 255, 255, 0.82);
}

.admin-grid {
  display: grid;
  gap: 1rem;
}

.panel-heading h2 {
  font-size: clamp(2.1rem, 5vw, 3rem);
}

.panel-heading p {
  color: var(--ink-700);
}

.inventory-card {
  overflow: hidden;
}

.inventory-card img {
  height: 190px;
  background: var(--silver-200);
}

.inventory-actions .button {
  flex: 1 1 180px;
}

.field-caption {
  display: block;
  margin-bottom: 0.7rem;
  font-weight: 700;
}

.field-hint {
  margin: -0.2rem 0 0;
  color: var(--ink-700);
  line-height: 1.6;
  font-size: 0.92rem;
}

.image-upload-shell {
  display: grid;
  gap: 0.8rem;
}

.image-upload-grid {
  display: grid;
  gap: 0.9rem;
}

.image-picker {
  display: block;
  cursor: pointer;
}

.image-picker-input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.image-picker-preview {
  min-height: 210px;
  border: 1px dashed rgba(12, 27, 49, 0.2);
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(237, 242, 248, 0.94), rgba(248, 251, 255, 0.98));
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
  position: relative;
}

.image-picker-preview img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-picker-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 17, 29, 0), rgba(7, 17, 29, 0.08));
}

.image-picker-copy {
  position: relative;
  z-index: 1;
  padding: 1rem;
}

.image-picker-copy strong,
.image-picker-copy small {
  display: block;
}

.image-picker-copy strong {
  color: var(--navy-900);
  font-size: 1.1rem;
}

.image-picker-copy small {
  margin-top: 0.35rem;
  color: var(--ink-700);
  line-height: 1.55;
}

.image-picker-preview.has-image .image-picker-copy {
  margin-top: auto;
  width: 100%;
  background: linear-gradient(180deg, rgba(7, 17, 29, 0), rgba(7, 17, 29, 0.78));
}

.image-picker-preview.has-image .image-picker-copy strong,
.image-picker-preview.has-image .image-picker-copy small {
  color: var(--white);
}

.fleet-hero {
  padding: 0;
}

.page-hero-shell {
  position: relative;
  width: 100%;
  min-height: clamp(320px, 55vw, 520px);
  overflow: hidden;
}

.page-hero-media,
.page-hero-media img,
.page-hero-overlay {
  position: absolute;
  inset: 0;
}

.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-overlay {
  background:
    linear-gradient(180deg, rgba(6, 11, 8, 0.18), rgba(6, 11, 8, 0.82)),
    linear-gradient(90deg, rgba(6, 11, 8, 0.76), rgba(91, 142, 37, 0.18));
}

.page-hero-copy {
  position: relative;
  z-index: 1;
  padding: clamp(1.6rem, 4vw, 3rem);
  min-height: clamp(320px, 55vw, 520px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  max-width: 760px;
}

.page-hero-copy,
.page-hero-copy h1,
.page-hero-copy h2,
.page-hero-copy p,
.page-hero-copy .eyebrow {
  color: var(--white);
}

.page-hero-copy .eyebrow {
  color: rgba(255, 255, 255, 0.82);
}

.fleet-hero--fleet .page-hero-overlay {
  background:
    linear-gradient(180deg, rgba(6, 11, 8, 0.16), rgba(6, 11, 8, 0.82)),
    linear-gradient(90deg, rgba(6, 11, 8, 0.78), rgba(141, 198, 63, 0.18));
}

.fleet-hero--booking .page-hero-overlay {
  background:
    linear-gradient(180deg, rgba(6, 11, 8, 0.12), rgba(6, 11, 8, 0.82)),
    linear-gradient(90deg, rgba(6, 11, 8, 0.8), rgba(141, 198, 63, 0.22));
}

.table-wrap {
  margin-top: 1rem;
  overflow-x: auto;
}

.bookings-table {
  width: 100%;
  min-width: 860px;
  border-collapse: collapse;
}

.bookings-table th,
.bookings-table td {
  text-align: left;
  padding: 0.95rem 0.85rem;
  border-bottom: 1px solid rgba(12, 27, 49, 0.08);
  vertical-align: top;
}

.bookings-table th {
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-700);
}

.status-select {
  min-width: 150px;
}

.site-footer {
  padding: 2rem 0 3rem;
  background: var(--navy-950);
  color: var(--white);
}

.site-footer,
.site-footer strong,
.site-footer p,
.site-footer a {
  color: var(--white);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
}

.footer-inner strong {
  display: block;
  font-size: 1.5rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.footer-review-button {
  min-height: 46px;
  padding-inline: 1.1rem;
}

.social-link {
  gap: 0.7rem;
}

.social-icon {
  width: 1.7rem;
  height: 1.7rem;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: var(--navy-950);
  color: var(--white);
  font-weight: 900;
  font-size: 1rem;
  text-transform: lowercase;
}

.leasing-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.leasing-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(91, 142, 37, 0.16);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.leasing-poster {
  width: 100%;
  height: 260px;
  object-fit: cover;
  background: var(--silver-200);
}

.leasing-card-body {
  display: grid;
  gap: 1rem;
  padding: 1.2rem;
}

.leasing-card h3 {
  margin: 0.5rem 0 0;
  color: var(--navy-900);
  font-size: 2rem;
  letter-spacing: -0.03em;
}

.leasing-card p {
  margin: 0.75rem 0 0;
  color: var(--ink-700);
  line-height: 1.65;
}

.poster-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.poster-specs span {
  padding: 0.8rem 0.9rem;
  border-radius: var(--radius-md);
  background: rgba(141, 198, 63, 0.12);
  color: var(--navy-900);
  font-weight: 800;
}

.is-hidden {
  display: none;
}

.reveal {
  opacity: 1;
  transform: none;
}

@media (min-width: 720px) {
  .container {
    width: min(calc(100% - 2.25rem), var(--container));
  }

  .fleet-grid,
  .analytics-grid,
  .inventory-list,
  .admin-shortcuts,
  .leasing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .form-grid,
  .rate-stack,
  .image-upload-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 980px) {
  .menu-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    inset: auto;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    background: transparent;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 0.4rem;
  }

  .site-nav a {
    padding: 0.75rem 0.95rem;
  }

  .hero-grid,
  .detail-shell,
  .booking-grid,
  .admin-grid {
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  }

  .fleet-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .analytics-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 979px) {
  .menu-toggle {
    display: inline-flex;
  }
}
