/* Property Sale Express — brand styles (navy + brass + express scarlet).
   Vintage British railway feel: nameplate labels, brass lining, ticket forms,
   stations on a line. Subtle — the destination is SOLD. Class names kept from
   the shared template. */
:root {
  --teal: #123A5A;          /* primary navy */
  --teal-dark: #0C2840;
  --teal-light: #E7EEF5;
  --cream: #F9F7F1;         /* warm parchment page background */
  --yellow: #D89A2E;        /* brass action accent */
  --yellow-soft: #F5E8C8;
  --scarlet: #C41E25;       /* express livery red — used sparingly */
  --scarlet-dark: #9A161C;
  --ticket: #FDFBF4;        /* warm ticket-stock white */
  --charcoal: #1A2430;
  --gray: #5A6675;
  --white: #ffffff;
  --radius: 12px;
  --shadow: 0 8px 30px rgba(18, 58, 90, 0.10);
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --display: Georgia, "Times New Roman", serif;   /* vintage rail poster headings */
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--charcoal); background: var(--cream); line-height: 1.65; font-size: 17px; }
img, svg { max-width: 100%; }
a { color: var(--teal); }
.container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 720px; }

/* Header */
header.site { background: var(--white); border-bottom: 1px solid rgba(18,58,90,0.10); position: sticky; top: 0; z-index: 50; }
header.site .bar { display: flex; align-items: center; justify-content: space-between; padding: 14px 24px; max-width: 1080px; margin: 0 auto; }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--charcoal); font-weight: 700; font-size: 1.15rem; letter-spacing: 0.01em; font-family: var(--display); }
.logo .mark { width: 40px; height: 40px; }
nav.main { display: flex; gap: 24px; align-items: center; }
nav.main a { text-decoration: none; color: var(--gray); font-weight: 600; font-size: 0.95rem; }
nav.main a:hover { color: var(--teal); }
nav.main a.btn { color: var(--white); }

/* Buttons */
.btn { display: inline-block; background: var(--teal); color: var(--white) !important; padding: 14px 28px; border-radius: 10px; text-decoration: none; font-weight: 700; font-size: 1rem; border: none; cursor: pointer; transition: background .15s ease, transform .15s ease; }
.btn:hover { background: var(--teal-dark); transform: translateY(-1px); }
.btn.big { padding: 18px 40px; font-size: 1.15rem; }
.btn.yellow { background: var(--yellow); color: #3A2A08 !important; }
.btn.yellow:hover { background: #C4881F; }
.btn.ghost { background: transparent; color: var(--teal) !important; border: 2px solid var(--teal); }
.btn.ghost:hover { background: var(--teal-light); }
.btn.block { display: block; width: 100%; text-align: center; }

/* Hero */
.hero { padding: 72px 0 56px; text-align: center; }
/* Nameplate eyebrow — like the arched plate on an express engine */
.hero .eyebrow { display: inline-block; background: var(--scarlet); color: #F7E2A8; font-weight: 700; font-size: 0.78rem; padding: 8px 20px; border-radius: 6px; margin-bottom: 22px; letter-spacing: 0.14em; text-transform: uppercase; font-family: var(--display); border: 1.5px solid #8E1318; box-shadow: inset 0 0 0 2px rgba(247,226,168,.35), 0 2px 8px rgba(154,22,28,.25); }
h1 { font-size: clamp(2.1rem, 5vw, 3.3rem); line-height: 1.14; letter-spacing: -0.01em; font-weight: 700; font-family: var(--display); }
h1 .accent { color: var(--scarlet); }
.hero p.sub { font-size: 1.22rem; color: var(--gray); max-width: 660px; margin: 22px auto 32px; }
.hero .cta-note { font-size: 0.9rem; color: var(--gray); margin-top: 14px; }
.hero .cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Sections */
section { padding: 60px 0; }
section.alt { background: var(--white); }
/* Navy sections get brass double lining — vintage locomotive livery */
section.teal { background: var(--teal); color: var(--white); border-top: 4px double var(--yellow); border-bottom: 4px double var(--yellow); }
section.teal h2, section.teal p { color: var(--white); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); letter-spacing: -0.01em; line-height: 1.22; margin-bottom: 14px; font-weight: 700; font-family: var(--display); }
h3 { font-family: var(--display); font-weight: 700; }
.section-head { text-align: center; max-width: 700px; margin: 0 auto 40px; }
.section-head p { color: var(--gray); font-size: 1.1rem; }

/* Trust strip — departure-board styling: dark board, brass lettering */
.trust-strip { background: var(--teal-dark); border-top: 3px double var(--yellow); border-bottom: 3px double var(--yellow); }
.trust-strip .items { display: flex; flex-wrap: wrap; gap: 14px 40px; justify-content: center; padding: 18px 24px; max-width: 1080px; margin: 0 auto; }
.trust-strip .item { display: inline-block; text-align: center; color: #C9D4DE; font-weight: 600; font-size: 0.88rem; letter-spacing: 0.05em; text-transform: uppercase; font-family: var(--display); }
.trust-strip .item b { color: var(--yellow); }

/* Cards / steps */
.grid { display: grid; gap: 22px; }
.grid.cols-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid.cols-2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.card { background: var(--white); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); border: 1px solid rgba(18,58,90,0.06); }
section.alt .card { background: var(--cream); box-shadow: none; border: 1px solid rgba(18,58,90,.1); }
.card .icon { font-size: 1.8rem; margin-bottom: 12px; display: block; }
/* Step numbers as station markers on the line to SOLD */
.card .step-num { display:inline-flex; align-items:center; justify-content:center; width:40px; height:40px; border-radius:50%; background:var(--scarlet); color:#fff; font-weight:800; margin-bottom:14px; font-family: var(--display); box-shadow: 0 0 0 2.5px var(--white), 0 0 0 4.5px var(--scarlet); }
.card h3 { font-size: 1.15rem; margin-bottom: 8px; letter-spacing: -0.01em; }
.card p { color: var(--gray); font-size: 0.98rem; }

/* Checklist */
ul.checks { list-style: none; }
ul.checks li { padding: 9px 0 9px 36px; position: relative; }
ul.checks li::before { content: ""; position: absolute; left: 0; top: 12px; width: 22px; height: 22px; background: var(--teal-light); border-radius: 50%; }
ul.checks li::after { content: "✓"; position: absolute; left: 5px; top: 9px; color: var(--teal); font-weight: 800; font-size: 0.85rem; }

/* Pricing */
.price-card { background: var(--white); border-radius: 20px; box-shadow: var(--shadow); max-width: 520px; margin: 0 auto; padding: 44px 40px; text-align: center; border: 3px solid var(--teal); }
.price-card .was { text-decoration: line-through; color: var(--gray); font-size: 1.3rem; }
.price-card .now { font-size: 3.2rem; font-weight: 800; color: var(--teal); letter-spacing: -0.03em; }
.price-card .launch-tag { display: inline-block; background: var(--yellow); color: #3A2A08; font-weight: 700; font-size: 0.85rem; padding: 5px 14px; border-radius: 999px; margin-bottom: 16px; }
.guarantee { display: flex; gap: 12px; align-items: flex-start; background: var(--teal-light); border-radius: var(--radius); padding: 18px 22px; margin-top: 26px; text-align: left; font-size: 0.95rem; }

/* FAQ */
details { background: var(--white); border-radius: var(--radius); padding: 20px 26px; margin-bottom: 12px; border: 1px solid rgba(18,58,90,.1); }
details summary { font-weight: 700; cursor: pointer; font-size: 1.05rem; }
details p { margin-top: 12px; color: var(--gray); }

/* Lead / enquiry form — styled like a vintage train ticket: warm stock,
   brass edge, perforation row along the top */
.lead-form { background: var(--ticket); border-radius: 10px; box-shadow: var(--shadow); padding: 34px 30px 30px; max-width: 560px; margin: 0 auto; text-align: left; border: 1.5px solid rgba(216,154,46,.55); position: relative; overflow: hidden; }
.lead-form::before { content: ""; position: absolute; top: 9px; left: 14px; right: 14px; height: 0; border-top: 2px dashed rgba(18,58,90,.22); }
.lead-form::after { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 5px; background: repeating-linear-gradient(90deg, var(--scarlet) 0 26px, var(--teal) 26px 52px); opacity: .85; }
.lead-form.compact { padding: 24px; }
.lead-form h3 { font-size: 1.25rem; margin-bottom: 6px; }
.lead-form .sub { color: var(--gray); font-size: 0.95rem; margin-bottom: 18px; }
.field { margin-bottom: 14px; }
.field label { display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 6px; }
.field input, .field select, .field textarea { width: 100%; padding: 13px 15px; border-radius: 10px; border: 2px solid rgba(18,58,90,.2); font-size: 1rem; font-family: var(--font); background: var(--white); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--teal); }
.field-row { display: flex; gap: 12px; flex-wrap: wrap; }
.field-row .field { flex: 1; min-width: 140px; }
.consent { display: flex; gap: 10px; align-items: flex-start; font-size: 0.85rem; color: var(--gray); margin: 8px 0 18px; }
.consent input { margin-top: 3px; }
.form-note { font-size: 0.82rem; color: var(--gray); text-align: center; margin-top: 12px; }

/* Simple email opt-in */
.email-form { display: flex; gap: 10px; max-width: 480px; margin: 0 auto; flex-wrap: wrap; }
.email-form input[type="email"] { flex: 1; min-width: 220px; padding: 15px 20px; border-radius: 10px; border: 2px solid rgba(18,58,90,.25); font-size: 1rem; font-family: var(--font); background: var(--white); }
.email-form input[type="email"]:focus { outline: none; border-color: var(--teal); }

/* Blog / prose */
.post-list article { background: var(--white); border-radius: var(--radius); padding: 30px; margin-bottom: 20px; box-shadow: var(--shadow); }
.post-list h3 { font-size: 1.3rem; margin-bottom: 6px; }
.post-list h3 a { text-decoration: none; color: var(--charcoal); }
.post-list h3 a:hover { color: var(--teal); }
.post-meta { color: var(--gray); font-size: 0.88rem; margin-bottom: 10px; }
.prose { max-width: 720px; margin: 0 auto; }
.prose h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin: 20px 0 18px; }
.prose h2 { font-size: 1.5rem; margin: 38px 0 14px; }
.prose h3 { font-size: 1.2rem; margin: 28px 0 10px; }
.prose p { margin-bottom: 18px; }
.prose ul, .prose ol { margin: 0 0 18px 26px; }
.prose li { margin-bottom: 8px; }
.prose blockquote { border-left: 4px solid var(--yellow); padding: 8px 20px; background: var(--white); border-radius: 0 var(--radius) var(--radius) 0; margin-bottom: 18px; color: var(--gray); }
.prose table { border-collapse: collapse; width: 100%; margin-bottom: 18px; background: var(--white); border-radius: var(--radius); overflow: hidden; }
.prose th, .prose td { padding: 10px 14px; border: 1px solid rgba(18,58,90,.12); text-align: left; }
.prose th { background: var(--teal-light); }
.cta-banner { background: var(--teal); color: var(--white); border-radius: var(--radius); padding: 30px 34px; margin: 36px 0; text-align: center; border: 4px double var(--yellow); }
.cta-banner h3 { color: var(--white); font-size: 1.3rem; margin-bottom: 8px; }
.cta-banner p { color: rgba(255,255,255,.85); margin-bottom: 18px; }
.disclaimer { font-size: 0.82rem; color: var(--gray); background: var(--white); border: 1px solid rgba(18,58,90,.1); border-radius: var(--radius); padding: 16px 20px; margin: 24px 0; }

/* Footer */
footer.site { background: var(--charcoal); color: #AFBAC4; padding: 48px 0 36px; }
footer.site .cols { display: flex; justify-content: space-between; gap: 30px; flex-wrap: wrap; max-width: 1080px; margin: 0 auto; padding: 0 24px; }
footer.site a { color: #DDE3E8; text-decoration: none; font-size: 0.92rem; display: block; margin-bottom: 8px; }
footer.site a:hover { color: var(--yellow); }
footer.site .brand { font-weight: 700; color: var(--white); font-size: 1.1rem; margin-bottom: 8px; font-family: var(--display); }
footer.site .fine { max-width: 1080px; margin: 30px auto 0; padding: 20px 24px 0; border-top: 1px solid rgba(255,255,255,.12); font-size: 0.8rem; line-height: 1.7; }

@media (max-width: 640px) {
  nav.main a:not(.btn) { display: none; }
  .hero { padding: 48px 0 40px; }
  section { padding: 44px 0; }
}
