/* ============================================================
   Corporate Rentals Fort Lauderdale — redesign
   Palette: ink #182B22, fairway #3F6A4C, clay #B5522E,
            limestone #F4F0E6, sand line #D9D0BC
   Type: Fraunces (display) / Public Sans (body)
   ============================================================ */

:root {
  --ink: #182B22;
  --ink-soft: #23392C;
  --fairway: #3F6A4C;
  --fairway-dark: #2C4C37;
  --clay: #B5522E;
  --clay-dark: #963F20;
  --limestone: #F4F0E6;
  --paper: #FBF9F4;
  --sand: #D9D0BC;
  --text: #23271F;
  --text-muted: #5B6259;
  --white: #FFFFFF;

  --serif: "Fraunces", "Iowan Old Style", Georgia, serif;
  --sans: "Public Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --max: 1180px;
  --radius: 6px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--text);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--fairway-dark); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--clay);
  outline-offset: 2px;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--ink);
  margin: 0 0 0.4em;
  font-weight: 600;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 4.6vw, 3.9rem); line-height: 1.05; font-weight: 500; }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); line-height: 1.15; }
h3 { font-size: 1.25rem; line-height: 1.3; }

p { margin: 0 0 1em; max-width: 62ch; color: var(--text); }
.muted { color: var(--text-muted); }

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

section { padding: 88px 0; }
@media (max-width: 720px) {
  section { padding: 56px 0; }
}

.eyebrow-plain {
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--fairway-dark);
  font-weight: 600;
  margin: 0 0 10px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius);
  font-family: var(--sans);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}
.btn-clay { background: var(--clay); color: var(--white); }
.btn-clay:hover { background: var(--clay-dark); }
.btn-outline-light { border-color: rgba(255,255,255,0.5); color: var(--white); background: transparent; }
.btn-outline-light:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }
.btn-outline-dark { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn-outline-dark:hover { background: var(--ink); color: var(--white); }
.btn-block { width: 100%; justify-content: center; }

/* ---------- Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 249, 244, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--sand);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}
.brand {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--ink);
  text-decoration: none;
  line-height: 1.1;
}
.brand strong { display: block; font-weight: 600; }
.brand span { display: block; font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.02em; color: var(--fairway-dark); font-weight: 600; margin-top: 2px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: var(--ink-soft);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.98rem;
}
.nav-links a:hover { color: var(--clay); }
.nav-cta { display: flex; align-items: center; gap: 18px; }
.nav-toggle { display: none; }

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-toggle {
    display: inline-flex;
    background: none;
    border: 1px solid var(--sand);
    border-radius: var(--radius);
    padding: 8px 12px;
    font-family: var(--sans);
    font-weight: 600;
  }
  .nav-cta .btn { padding: 10px 16px; font-size: 0.9rem; }
}

/* ---------- Hero ---------- */
.hero {
  background: var(--ink);
  color: var(--white);
  padding: 64px 0 84px;
  overflow: hidden;
}
.hero .wrap {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero h1 { color: var(--white); }
.hero .lede { color: rgba(255,255,255,0.82); font-size: 1.12rem; max-width: 46ch; }
.hero-ctas { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }

.trust-bar {
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.18);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.75);
}
.trust-bar span::before { content: "· "; color: var(--clay); font-weight: 700; }
.trust-bar span:first-child::before { content: ""; }

.hero-photos {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  justify-items: end;
}
.hero-photo-frame {
  background: var(--paper);
  padding: 10px;
  border-radius: 4px;
  box-shadow: 0 24px 48px rgba(0,0,0,0.35);
}
.hero-photo-frame img { border-radius: 2px; width: 100%; }
.hero-photo-main { width: 88%; }
.hero-photo-sub {
  width: 58%;
  margin-top: -60px;
  margin-right: 44%;
  transform: rotate(-3deg);
}
.hero-photo-cap {
  font-family: var(--sans);
  font-size: 0.78rem;
  color: var(--text-muted);
  margin: 8px 2px 0;
}

@media (max-width: 900px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .hero-photos { justify-items: start; margin-top: 12px; }
  .hero-photo-main { width: 78%; }
  .hero-photo-sub { margin-right: 0; margin-left: 30%; }
}

/* ---------- Stat band ---------- */
.stat-band {
  background: var(--fairway-dark);
  color: var(--white);
  padding: 56px 0;
}
.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.stat-num {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3rem);
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label { color: rgba(255,255,255,0.82); font-size: 1rem; max-width: 30ch; }
@media (max-width: 720px) {
  .stat-grid { grid-template-columns: 1fr; gap: 34px; }
}

/* ---------- Audience section ---------- */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--sand);
  border: 1px solid var(--sand);
  margin-top: 44px;
}
.audience-card {
  background: var(--paper);
  padding: 34px 30px;
}
.audience-card .tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--clay);
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}
.audience-card p:last-child { margin-bottom: 0; }
@media (max-width: 860px) {
  .audience-grid { grid-template-columns: 1fr; }
}

/* ---------- Section headers ---------- */
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 44px;
}
.section-head p { margin-bottom: 0; }
@media (max-width: 720px) {
  .section-head { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* ---------- Gallery ---------- */
.gallery-section { background: var(--limestone); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 190px;
  gap: 14px;
}
.gallery-grid figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 3px;
}
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; }
.gallery-grid figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 10px 12px;
  font-size: 0.82rem;
  color: var(--white);
  background: linear-gradient(0deg, rgba(24,43,34,0.82), rgba(24,43,34,0));
}
.g-tall { grid-row: span 2; }
.g-wide { grid-column: span 2; }

@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .g-wide { grid-column: span 2; }
}
@media (max-width: 560px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .g-wide, .g-tall { grid-column: span 1; grid-row: span 1; }
}

/* ---------- Amenities ---------- */
.amenities-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: start;
}
.amenity-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 28px;
}
.amenity-list li {
  padding-left: 26px;
  position: relative;
  font-size: 0.98rem;
  color: var(--text);
}
.amenity-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 7px;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--fairway);
}
.amenities-photo { border-radius: 4px; overflow: hidden; }
@media (max-width: 860px) {
  .amenities-layout { grid-template-columns: 1fr; }
  .amenity-list { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .amenity-list { grid-template-columns: 1fr; }
}

/* ---------- Location ---------- */
.location-section { background: var(--ink); color: var(--white); }
.location-section h2 { color: var(--white); }
.location-section .muted { color: rgba(255,255,255,0.65); }
.location-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.loc-item {
  border-top: 1px solid rgba(255,255,255,0.22);
  padding-top: 18px;
}
.loc-time {
  font-family: var(--serif);
  font-size: 1.9rem;
  color: var(--white);
  display: block;
  margin-bottom: 6px;
}
.loc-label { color: rgba(255,255,255,0.78); font-size: 0.95rem; }
@media (max-width: 720px) {
  .location-grid { grid-template-columns: 1fr 1fr; }
}

/* ---------- Testimonials ---------- */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 44px;
}
.testi-card {
  background: var(--paper);
  border: 1px solid var(--sand);
  border-radius: 4px;
  padding: 26px 24px;
}
.testi-quote {
  font-family: var(--serif);
  font-size: 1.08rem;
  color: var(--ink);
  margin-bottom: 16px;
}
.testi-name { font-weight: 600; font-size: 0.92rem; }
.testi-meta { color: var(--text-muted); font-size: 0.86rem; }
@media (max-width: 860px) {
  .testi-grid { grid-template-columns: 1fr; }
}

/* ---------- Process / booking ---------- */
.process-section { background: var(--limestone); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  margin-top: 44px;
}
.process-step { position: relative; padding-left: 4px; }
.process-num {
  font-family: var(--serif);
  font-size: 2.6rem;
  color: var(--clay);
  display: block;
  margin-bottom: 10px;
  line-height: 1;
}

/* ---------- FAQ ---------- */
.faq-list { margin-top: 40px; border-top: 1px solid var(--sand); }
.faq-item { border-bottom: 1px solid var(--sand); padding: 22px 0; }
.faq-item h3 { margin-bottom: 8px; font-size: 1.08rem; }
.faq-item p { margin-bottom: 0; }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--clay);
  color: var(--white);
  padding: 70px 0;
  text-align: center;
}
.cta-band h2 { color: var(--white); }
.cta-band p { color: rgba(255,255,255,0.88); margin: 0 auto 28px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.78);
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.16);
}
.footer-grid h4 { color: var(--white); font-size: 0.95rem; font-family: var(--sans); font-weight: 700; margin-bottom: 14px; }
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { margin-bottom: 10px; }
.footer-grid a { color: rgba(255,255,255,0.78); text-decoration: none; }
.footer-grid a:hover { color: var(--white); }
.footer-brand { font-family: var(--serif); font-size: 1.2rem; color: var(--white); margin-bottom: 10px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 22px;
  font-size: 0.86rem;
  color: rgba(255,255,255,0.5);
  flex-wrap: wrap;
  gap: 10px;
}
@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---------- Sub-page hero (FAQ / Blog) ---------- */
.crumb {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 14px;
}
.crumb a { color: rgba(255,255,255,0.8); }

/* ---------- FAQ page ---------- */
.faq-jumplinks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 40px 0 8px;
}
.faq-jumplinks a {
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid var(--sand);
  border-radius: 999px;
  font-size: 0.9rem;
  color: var(--ink-soft);
  text-decoration: none;
  background: var(--paper);
}
.faq-jumplinks a:hover { border-color: var(--fairway); color: var(--fairway-dark); }

.faq-category {
  padding-top: 56px;
  scroll-margin-top: 90px;
}
.faq-category:first-of-type { padding-top: 20px; }
.faq-category h2 {
  border-bottom: 1px solid var(--sand);
  padding-bottom: 18px;
  margin-bottom: 6px;
}

.faq-cta-strip {
  background: var(--limestone);
  border: 1px solid var(--sand);
  border-radius: 6px;
  padding: 30px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 60px;
}
.faq-cta-strip p { margin: 0; }
.faq-cta-strip h3 { margin-bottom: 6px; }

/* ---------- Blog index ---------- */
.blog-hero-post {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  background: var(--limestone);
  border: 1px solid var(--sand);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 56px;
}
.blog-hero-post img { width: 100%; height: 100%; object-fit: cover; min-height: 280px; }
.blog-hero-copy { padding: 8px 40px 8px 4px; }
.blog-hero-copy .post-meta { margin-bottom: 12px; }
.blog-hero-copy h2 { margin-bottom: 14px; text-decoration: none; }
.blog-hero-post, .blog-hero-post * { text-decoration: none; }
.blog-hero-post p { color: var(--text-muted); }
@media (max-width: 860px) {
  .blog-hero-post { grid-template-columns: 1fr; }
  .blog-hero-copy { padding: 4px 24px 28px; }
  .blog-hero-post img { min-height: 220px; }
}

.post-meta {
  font-size: 0.84rem;
  color: var(--text-muted);
  text-transform: none;
}
.post-meta .cat {
  color: var(--clay);
  font-weight: 700;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
.post-card { text-decoration: none; display: block; }
.post-card-img {
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 16px;
  aspect-ratio: 4 / 3;
}
.post-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 300ms ease; }
.post-card:hover .post-card-img img { transform: scale(1.04); }
.post-card h3 { color: var(--ink); margin-bottom: 8px; }
.post-card p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 0; }
@media (max-width: 900px) {
  .blog-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .blog-grid { grid-template-columns: 1fr; }
}

/* ---------- Blog post article ---------- */
.post-header { background: var(--ink); color: var(--white); padding: 50px 0 44px; }
.post-header .post-meta { color: rgba(255,255,255,0.65); }
.post-header .post-meta .cat { color: #E19274; }
.post-header h1 { color: var(--white); max-width: 26ch; margin-top: 10px; }
.post-header p.dek { color: rgba(255,255,255,0.82); font-size: 1.1rem; max-width: 56ch; margin-top: 16px; }

.post-hero-img { margin: -46px 0 44px; }
.post-hero-img img { width: 100%; max-height: 460px; object-fit: cover; border-radius: 6px; box-shadow: 0 20px 40px rgba(0,0,0,0.18); }

.post-body {
  display: grid;
  grid-template-columns: 720px 1fr;
  gap: 50px;
  align-items: start;
}
.post-content { max-width: 68ch; }
.post-content h2 { margin-top: 1.6em; font-size: 1.5rem; }
.post-content h3 { margin-top: 1.3em; }
.post-content ul, .post-content ol { padding-left: 1.3em; color: var(--text); }
.post-content li { margin-bottom: 0.5em; }
.post-content blockquote {
  margin: 1.6em 0;
  padding-left: 20px;
  border-left: 3px solid var(--clay);
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--ink-soft);
}
.post-cta {
  background: var(--limestone);
  border: 1px solid var(--sand);
  border-radius: 6px;
  padding: 26px 28px;
  margin-top: 40px;
}
.post-cta h3 { margin-bottom: 8px; }

.post-sidebar { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 22px; }
.sidebar-card {
  background: var(--paper);
  border: 1px solid var(--sand);
  border-radius: 6px;
  padding: 22px;
}
.sidebar-card h4 { font-family: var(--sans); font-size: 0.85rem; font-weight: 700; color: var(--ink); margin-bottom: 12px; text-transform: none; }
.sidebar-card ul { list-style: none; margin: 0; padding: 0; }
.sidebar-card li { margin-bottom: 10px; }
.sidebar-card a { font-size: 0.92rem; color: var(--fairway-dark); text-decoration: none; }
.sidebar-card a:hover { text-decoration: underline; }

@media (max-width: 980px) {
  .post-body { grid-template-columns: 1fr; }
  .post-content { max-width: 100%; }
  .post-sidebar { position: static; flex-direction: row; overflow-x: auto; }
}
@media (max-width: 640px) {
  .post-sidebar { flex-direction: column; }
}

/* ---------- Reservation page ---------- */
.page-hero {
  background: var(--ink);
  color: var(--white);
  padding: 56px 0 64px;
}
.page-hero h1 { color: var(--white); max-width: 20ch; }
.page-hero p { color: rgba(255,255,255,0.8); }

.reservation-layout {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 50px;
  align-items: start;
}
.form-card {
  background: var(--paper);
  border: 1px solid var(--sand);
  border-radius: 6px;
  padding: 34px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--ink-soft);
  margin-bottom: 6px;
}
.field input, .field select, .field textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 0.98rem;
  padding: 11px 13px;
  border: 1px solid var(--sand);
  border-radius: 4px;
  background: var(--white);
  color: var(--text);
}
.field textarea { resize: vertical; min-height: 100px; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--fairway); }
.form-note { font-size: 0.86rem; color: var(--text-muted); margin-top: 14px; }
.form-status { margin-top: 14px; font-size: 0.92rem; }

.side-info { display: flex; flex-direction: column; gap: 26px; }
.info-card {
  background: var(--limestone);
  border-radius: 6px;
  padding: 26px 24px;
}
.info-card h3 { margin-bottom: 10px; }
.info-card p { margin-bottom: 6px; font-size: 0.95rem; }
.info-card a { color: var(--fairway-dark); font-weight: 600; }

@media (max-width: 900px) {
  .reservation-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
