/*
Theme Name: Miami Concierge Crosby Classy
Theme URI: https://miamiconciergecrosby.com
Author: ChatGPT
Author URI: https://openai.com
Description: Quiet luxury chauffeur theme for Miami Concierge Crosby with secure merchant checkout, Key West trips, and boat trailer hauling.
Version: 3.5.0
License: GPLv2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: miami-concierge-crosby-classy
Tags: custom-background, custom-logo, featured-images, one-column, responsive-layout
*/

:root {
  --ink: #082f36;
  --ink-2: #0f4548;
  --night: #071b1f;
  --gold: #b78331;
  --gold-soft: #d4ad68;
  --paper: #f7f1e5;
  --paper-2: #fffaf0;
  --linen: #ede0c8;
  --text: #263b3d;
  --muted: #7a7468;
  --line: rgba(183, 131, 49, .28);
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(31, 24, 12, .12);
  --max: 1120px;
  --radius: 8px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(247,241,229,.72), rgba(255,250,240,.94)),
    url("assets/images/palm-paper-bg.jpg") center top / cover fixed,
    var(--paper);
  font-family: Avenir, Montserrat, "Segoe UI", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button, input, textarea, select { font: inherit; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 9999;
  background: var(--night);
  color: var(--paper-2);
  padding: 10px 14px;
  border-radius: var(--radius);
}
.skip-link:focus { left: 12px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 27, 31, .96);
  border-bottom: 1px solid rgba(212, 173, 104, .42);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 40px rgba(7, 27, 31, .16);
}
.header-wrap {
  width: min(var(--max), calc(100% - 32px));
  min-height: 92px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--paper-2);
}
.brand-mark {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-soft);
  background: rgba(255, 250, 240, .04);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.48rem;
  font-weight: 700;
  letter-spacing: 0;
}
.brand-mark span:first-child { transform: translateX(2px); }
.brand-mark span:last-child { transform: translateX(-2px); }
.brand-text {
  display: grid;
  line-height: 1.05;
}
.brand-text strong {
  color: var(--paper-2);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.26rem;
  font-weight: 500;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.brand-text span {
  color: var(--gold);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .34em;
  text-transform: uppercase;
  text-align: center;
}
.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: rgba(255, 250, 240, .86);
  font-size: .88rem;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.nav a { padding: 8px 0; }
.nav a:hover,
.nav a:focus { color: var(--gold); }
.header-cta {
  padding: 11px 15px;
  border: 1px solid var(--gold);
  color: var(--night);
  background: var(--gold-soft);
  border-radius: var(--radius);
}
.menu-toggle {
  display: none;
  width: 46px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid rgba(212, 173, 104, .55);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, .04);
  color: var(--gold-soft);
  cursor: pointer;
}
.menu-toggle span {
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition: transform .2s ease, opacity .2s ease;
}

main { overflow: hidden; }
h1, h2, h3 {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.08;
}
h1 {
  font-size: 4.35rem;
  letter-spacing: .05em;
  text-transform: uppercase;
}
h2 {
  font-size: 2.45rem;
  letter-spacing: .01em;
}
h3 { font-size: 1.18rem; }
p { margin: 0; }
ul, li { margin: 0; padding: 0; list-style: none; }

.overline,
.card-label {
  margin: 0;
  color: var(--gold);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.btn-gold {
  background: var(--gold);
  color: var(--paper-2);
  box-shadow: 0 12px 28px rgba(183, 131, 49, .22);
}
.btn-primary {
  background: var(--ink);
  color: var(--paper-2);
}
.btn-ghost {
  color: var(--ink);
  background: rgba(255, 250, 240, .78);
  border-color: var(--line);
}
.full-btn { width: 100%; }
.text-link {
  color: var(--gold);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.atelier-hero {
  padding: 46px 0 34px;
  background:
    linear-gradient(180deg, rgba(255,250,240,.74), rgba(247,241,229,.78));
}
.paper-frame {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  min-height: 640px;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(360px, .78fr);
  align-items: stretch;
  gap: 34px;
  padding: 38px;
  background:
    linear-gradient(180deg, rgba(255,250,240,.8), rgba(255,250,240,.86)),
    url("assets/images/palm-paper-bg.jpg") center center / cover,
    linear-gradient(145deg, rgba(255,250,240,.98), rgba(247,241,229,.95));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.hero-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 18px;
  padding: 16px;
}
.hero-copy:before {
  content: "";
  position: absolute;
  inset: 0 auto 0 -10px;
  width: 1px;
  background: linear-gradient(var(--gold), transparent);
}
.monogram {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.85rem;
  letter-spacing: 0;
  background: var(--night);
}
.subhead {
  max-width: 560px;
  color: var(--muted);
  font-size: 1.05rem;
}
.quiet-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.ownership {
  margin-top: 10px;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.hero-image-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: var(--night);
  border: 1px solid rgba(183, 131, 49, .36);
}
.hero-image-card:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(7,27,31,.08), rgba(7,27,31,.3));
}
.hero-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.private-strip {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.private-strip div {
  padding: 22px 18px;
  border-right: 1px solid var(--line);
}
.private-strip div:last-child { border-right: 0; }
.private-strip span {
  display: block;
  color: var(--gold);
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .12em;
}
.private-strip b {
  display: block;
  margin-top: 6px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
}
.private-strip small { color: var(--muted); }

.media-suite {
  background: linear-gradient(180deg, rgba(255,250,240,.8), rgba(247,241,229,.72));
  border-bottom: 1px solid var(--line);
}
.media-intro {
  max-width: 720px;
}
.media-slider {
  position: relative;
  overflow: hidden;
  background: var(--night);
  border: 1px solid rgba(183, 131, 49, .34);
  box-shadow: var(--shadow);
}
.slider-track {
  display: flex;
  height: 520px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.slider-track::-webkit-scrollbar { display: none; }
.slide {
  position: relative;
  flex: 0 0 100%;
  min-width: 100%;
  margin: 0;
  scroll-snap-align: start;
}
.slide:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,27,31,.05), rgba(7,27,31,.45));
  pointer-events: none;
}
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slide figcaption {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 2;
  max-width: 520px;
  padding: 12px 14px;
  color: var(--paper-2);
  background: rgba(7, 27, 31, .82);
  border: 1px solid rgba(212, 173, 104, .3);
  border-radius: var(--radius);
  font-size: .95rem;
}
.slider-btn {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(212, 173, 104, .52);
  border-radius: 50%;
  color: var(--gold-soft);
  background: rgba(7, 27, 31, .82);
  cursor: pointer;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1;
  transform: translateY(-50%);
}
.slider-prev { left: 18px; }
.slider-next { right: 18px; }
.video-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}
.video-card {
  padding: 16px;
  background: rgba(255,250,240,.84);
  border: 1px solid var(--line);
  box-shadow: 0 14px 38px rgba(31, 24, 12, .07);
}
.video-frame {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--night);
}
.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.video-card h3 {
  margin-top: 14px;
}
.video-card p {
  margin-top: 6px;
  color: var(--muted);
  font-size: .92rem;
}

.quiet-section {
  padding: 76px 0;
}
.quiet-container {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}
.section-intro {
  display: grid;
  gap: 10px;
  max-width: 620px;
  margin-bottom: 28px;
}
.section-intro p:last-child,
.fleet-note p,
.split-copy p,
.pay-panel > p,
.request-panel > p {
  color: var(--muted);
}

.rate-table {
  border: 1px solid var(--line);
  background: rgba(255, 250, 240, .72);
}
.rate-row {
  display: grid;
  grid-template-columns: minmax(160px, 1.3fr) 150px minmax(170px, 1fr) 90px;
  gap: 16px;
  align-items: center;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(183, 131, 49, .18);
}
.rate-row:last-child { border-bottom: 0; }
.rate-row span {
  color: var(--ink);
  font-weight: 850;
}
.rate-row b {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  font-weight: 500;
}
.rate-row small { color: var(--muted); }
.rate-row a { justify-self: end; }

.split-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .75fr);
  min-height: 560px;
  background: var(--night);
  color: rgba(255,250,240,.82);
}
.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.split-copy {
  align-self: center;
  padding: 54px;
  display: grid;
  gap: 16px;
}
.split-copy h2 { color: var(--paper-2); }
.quiet-facts {
  display: grid;
  gap: 10px;
  margin: 8px 0;
}
.quiet-facts div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(212, 173, 104, .28);
}
.quiet-facts dt {
  color: rgba(255,250,240,.72);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.quiet-facts dd {
  margin: 0;
  color: var(--gold-soft);
  font-family: Georgia, "Times New Roman", serif;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, .7fr) minmax(0, 1fr);
  gap: 52px;
  align-items: start;
}
.fleet-note {
  background: var(--paper-2);
  border-bottom: 1px solid var(--line);
}

.areas-line {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  border-bottom: 1px solid var(--line);
}
.areas-line span {
  padding: 8px 11px;
  color: var(--ink);
  background: rgba(255,250,240,.68);
  border: 1px solid rgba(183, 131, 49, .22);
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.reserve-quiet {
  padding: 76px 0;
  background: linear-gradient(180deg, var(--paper), var(--paper-2));
}
.reserve-layout {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}
.single-checkout {
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
}
.pay-panel,
.request-panel,
.wp-content .container {
  padding: 26px;
  background: rgba(255,250,240,.9);
  border: 1px solid var(--line);
  box-shadow: 0 14px 42px rgba(31, 24, 12, .08);
}
.pay-panel h2,
.request-panel h2 {
  margin-top: 8px;
  font-size: 2rem;
}
.pay-panel > p,
.request-panel > p {
  margin: 12px 0 20px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.form-field {
  display: grid;
  gap: 6px;
  margin-bottom: 10px;
}
.form-field label,
.mcc-consent {
  color: var(--ink);
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 11px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(8,47,54,.18);
  border-radius: var(--radius);
}
.form-field textarea {
  min-height: 96px;
  resize: vertical;
}
.mcc-booking-form .form-submit,
.fallback-form .form-submit { width: 100%; }
.mcc-consent {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 6px 0 14px;
  line-height: 1.4;
}
.mcc-consent input { margin-top: 3px; }

.estimate-box {
  margin: 14px 0;
  padding: 16px;
  background: var(--night);
  color: var(--paper-2);
  border-radius: var(--radius);
}
.estimate-box span,
.estimate-box small {
  display: block;
  color: rgba(255,250,240,.7);
  font-weight: 800;
}
.estimate-box strong {
  display: block;
  margin: 4px 0;
  color: var(--gold-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.45rem;
  line-height: 1;
}
.calc-miles { display: none; }
.is-boat .calc-miles { display: grid; }
.is-boat .calc-hours { display: none; }
.card-note,
.insurance-note,
.refund-note {
  margin-top: 10px;
  color: var(--muted);
  font-size: .86rem;
}
.card-note {
  color: var(--ink);
  font-weight: 800;
}
.insurance-note {
  color: var(--gold);
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.form-message {
  padding: 11px;
  margin-bottom: 12px;
  border-radius: var(--radius);
  font-weight: 800;
}
.form-success { background: #e8f7ee; color: #17552c; }
.form-error { background: #fde9e5; color: #823123; }

.wp-content {
  padding: 76px 0;
  background: var(--paper);
}
.wp-content .container {
  width: min(860px, calc(100% - 32px));
  margin: 0 auto;
}
.wp-content h1 {
  margin-bottom: 20px;
  color: var(--ink);
  font-size: 2.35rem;
}
.wp-content h2 {
  margin: 28px 0 10px;
  font-size: 1.45rem;
}
.wp-content p,
.wp-content li { color: var(--text); }
.wp-content ul {
  display: grid;
  gap: 8px;
  margin: 12px 0;
  padding-left: 20px;
}
.wp-content li { list-style: disc; }

.site-footer {
  padding: 28px 0;
  background: var(--night);
  color: rgba(255,250,240,.72);
}
.footer-inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-inner strong {
  display: block;
  color: var(--paper-2);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.footer-inner span {
  color: rgba(255,250,240,.62);
  font-size: .88rem;
}
.footer-links {
  display: flex;
  gap: 9px;
  color: var(--gold-soft);
}

@media (max-width: 980px) {
  h1 { font-size: 3.35rem; }
  h2 { font-size: 2.1rem; }
  .paper-frame,
  .reserve-layout,
  .two-column,
  .split-feature {
    grid-template-columns: 1fr;
  }
  .hero-image-card { min-height: 360px; }
  .private-strip { grid-template-columns: repeat(2, 1fr); }
  .slider-track { height: 420px; }
  .video-row { grid-template-columns: 1fr; }
  .rate-row {
    grid-template-columns: 1fr;
    gap: 5px;
  }
  .rate-row a { justify-self: start; }
}

@media (max-width: 760px) {
  h1 { font-size: 2.45rem; }
  h2 { font-size: 1.78rem; }
  .header-wrap {
    min-height: 76px;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 9px 0;
    gap: 10px;
  }
  .brand { gap: 9px; }
  .brand-mark {
    width: 44px;
    height: 44px;
    font-size: 1.16rem;
  }
  .brand-text strong {
    font-size: .92rem;
    letter-spacing: .1em;
  }
  .brand-text span {
    font-size: .66rem;
    letter-spacing: .26em;
  }
  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }
  .nav {
    width: 100%;
    max-height: 0;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0;
    border-top: 0 solid rgba(212, 173, 104, .25);
    font-size: .96rem;
    transition: max-height .24s ease, padding .24s ease, border-width .24s ease;
  }
  .menu-open .nav {
    max-height: 430px;
    padding: 10px 0 6px;
    border-top-width: 1px;
  }
  .nav a {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 2px;
    border-bottom: 1px solid rgba(212, 173, 104, .14);
    white-space: nowrap;
  }
  .nav a:not(.header-cta):after {
    content: "›";
    color: var(--gold-soft);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.2rem;
  }
  .header-cta {
    display: flex;
    justify-content: center;
    margin-top: 8px;
    padding: 12px 14px;
  }
  .menu-open .menu-toggle span:first-child { transform: translateY(7px) rotate(45deg); }
  .menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
  .menu-open .menu-toggle span:last-child { transform: translateY(-7px) rotate(-45deg); }
  .atelier-hero { padding-top: 14px; }
  .paper-frame {
    width: min(100% - 20px, var(--max));
    padding: 18px;
    gap: 18px;
    min-height: auto;
  }
  .hero-copy { padding: 0; }
  .private-strip {
    width: 100%;
    grid-template-columns: 1fr;
  }
  .private-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .quiet-section,
  .reserve-quiet { padding: 52px 0; }
  .slider-track { height: 310px; }
  .slider-btn {
    width: 38px;
    height: 38px;
    font-size: 1.65rem;
  }
  .slider-prev { left: 10px; }
  .slider-next { right: 10px; }
  .slide figcaption {
    left: 12px;
    right: 12px;
    bottom: 12px;
    max-width: none;
    font-size: .84rem;
  }
  .split-copy { padding: 32px 16px; }
  .form-row { grid-template-columns: 1fr; }
  .btn { width: 100%; }
  .footer-inner { flex-direction: column; }
}
