/* ------------------------------------------------------------------
   Ready To Rent — design tokens
   Palette pulled from the RTR logo: gold ring, black mark, cream base.
   Swap these when the real brand guide arrives.
------------------------------------------------------------------- */
:root {
  --gold: #b8912f;
  --gold-light: #e9d8a6;
  --gold-dark: #8f6f21;
  --black: #1c1a16;
  --cream: #faf6ec;
  --cream-dark: #f1e9d6;
  --white: #ffffff;
  --text: #2b2620;
  --text-muted: #6b6255;
  --border: #e4d9bd;
  --success: #3f7d4e;
  --error: #a83232;

  --font-serif: Georgia, 'Times New Roman', serif;
  --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  --container: 1120px;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(28, 26, 22, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3 { font-family: var(--font-serif); line-height: 1.2; margin: 0 0 0.5em; }

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--black);
  color: var(--white);
  padding: 12px 20px;
  z-index: 1000;
}
.skip-link:focus { left: 0; }

/* Placeholder marker — remove/replace when real content lands */
.ph {
  border-bottom: 2px dotted var(--gold-dark);
  color: var(--text-muted);
}

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  font-size: 0.95rem;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--gold);
  color: var(--black);
}
.btn-primary:hover { background: var(--gold-dark); color: var(--white); }
.btn-ghost {
  background: transparent;
  border-color: var(--black);
  color: var(--black);
}
.btn-ghost:hover { background: var(--black); color: var(--white); }
.btn-lg { padding: 15px 30px; font-size: 1.05rem; }

/* ---------------- Header ---------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; font-family: var(--font-serif); }
.brand-text strong { font-size: 1.2rem; letter-spacing: 0.05em; }
.brand-text small { font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-muted); }

.main-nav ul { display: flex; gap: 28px; }
.main-nav a { font-weight: 600; font-size: 0.95rem; }
.main-nav a:hover { color: var(--gold-dark); }

.header-actions { display: flex; align-items: center; gap: 18px; }
.header-phone { font-weight: 600; white-space: nowrap; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--black); display: block; }

/* ---------------- Hero ---------------- */
.hero {
  background: linear-gradient(160deg, var(--cream) 0%, var(--cream-dark) 60%, var(--gold-light) 140%);
  padding: 72px 0 56px;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  align-items: center;
  gap: 40px;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold-dark);
  margin-bottom: 10px;
}
.eyebrow.center { text-align: center; }
.hero h1 { font-size: clamp(2rem, 4vw, 3rem); max-width: 16ch; }
.hero-sub { max-width: 52ch; color: var(--text-muted); font-size: 1.05rem; }
.hero-ctas { display: flex; gap: 16px; margin: 28px 0; flex-wrap: wrap; }

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.trust-strip li {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  position: relative;
  padding-left: 20px;
}
.trust-strip li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold-dark);
  font-weight: 700;
}

.hero-visual { display: flex; justify-content: center; }
.hero-badge {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
}

/* ---------------- Sections ---------------- */
.section { padding: 88px 0; }
.section-alt { background: var(--cream-dark); }
.section-title { font-size: clamp(1.6rem, 3vw, 2.2rem); }
.section-title.center { text-align: center; }
.section-sub {
  max-width: 60ch;
  color: var(--text-muted);
  margin: 0 auto 48px;
}
.section-sub.center { text-align: center; }

/* ---------------- Services ---------------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow);
}
.service-icon {
  width: 48px;
  height: 48px;
  color: var(--gold-dark);
  margin-bottom: 16px;
}
.service-icon svg { width: 100%; height: 100%; fill: none; stroke: currentColor; }
.service-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.service-card p { color: var(--text-muted); font-size: 0.95rem; margin: 0; }

/* ---------------- Before / After Gallery ---------------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.ba-slider figcaption {
  margin-top: 12px;
  font-weight: 600;
  text-align: center;
}
.ba-slider-frame {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  cursor: ew-resize;
  user-select: none;
}
.ba-pane {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  color: var(--white);
  padding: 0 18px 18px;
}
.ba-pane span { background: rgba(0,0,0,0.32); padding: 6px 16px; border-radius: 999px; }
.ba-after { background: linear-gradient(135deg, var(--gold-dark), var(--gold)); justify-content: flex-end; }
.ba-before {
  background: linear-gradient(135deg, #4a463c, var(--black));
  clip-path: inset(0 50% 0 0);
  justify-content: flex-start;
}
.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: var(--white);
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ba-handle-grip {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--white);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  font-size: 1rem;
}

/* ---------------- About ---------------- */
.about-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: start;
}
.check-list { margin-top: 20px; }
.check-list li {
  padding-left: 26px;
  position: relative;
  margin-bottom: 10px;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold-dark);
  font-weight: 700;
}
.photo-placeholder {
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  background: var(--cream-dark);
  border: 1px dashed var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  gap: 6px;
}

/* ---------------- Testimonials ---------------- */
.testimonial-grid { grid-template-columns: repeat(3, 1fr); }
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  margin: 0;
  box-shadow: var(--shadow);
}
.testimonial-card p { font-style: italic; margin: 0 0 14px; }
.testimonial-card cite { font-style: normal; font-weight: 600; color: var(--text-muted); font-size: 0.9rem; }

/* ---------------- Contact ---------------- */
.contact-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
}
.contact-details { margin-top: 24px; }
.contact-details li {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  gap: 12px;
}

.quote-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}
.form-row { margin-bottom: 18px; }
.form-row-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
label { display: block; font-weight: 600; margin-bottom: 6px; font-size: 0.92rem; }
label small { font-weight: 400; color: var(--text-muted); }
input, select, textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font: inherit;
  background: var(--cream);
}
input:focus, select:focus, textarea:focus {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
}
.file-hint { font-size: 0.82rem; color: var(--text-muted); margin: 6px 0 0; }

.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.cf-turnstile { margin: 18px 0; }

#submit-btn { width: 100%; }
.form-status {
  margin-top: 14px;
  font-weight: 600;
  min-height: 1.2em;
}
.form-status[data-state="success"] { color: var(--success); }
.form-status[data-state="error"] { color: var(--error); }

/* ---------------- Footer ---------------- */
.site-footer { background: var(--black); color: var(--cream-dark); padding: 40px 0; }
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.footer-brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-serif); font-weight: 700; }
.footer-nav { display: flex; gap: 20px; }
.footer-nav a:hover { color: var(--gold); }
.footer-meta, .footer-copy { width: 100%; font-size: 0.85rem; color: #b8b0a0; margin: 0; }
.footer-copy { margin-top: 6px; }

/* ---------------- Responsive ---------------- */
@media (max-width: 900px) {
  .hero-inner, .about-inner, .contact-inner { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .card-grid, .gallery-grid, .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .main-nav { position: fixed; top: 72px; right: 0; bottom: 0; left: 0; background: var(--cream); transform: translateX(100%); transition: transform 0.25s ease; padding: 24px; overflow-y: auto; z-index: 90; }
  .main-nav.open { transform: translateX(0); }
  .main-nav ul { flex-direction: column; gap: 20px; font-size: 1.1rem; }
  .nav-toggle { display: flex; }
  .header-phone { display: none; }
  .card-grid, .gallery-grid, .testimonial-grid { grid-template-columns: 1fr; }
  .form-row-split { grid-template-columns: 1fr; }
}
