/* LLC ASSOCIATE LIMITED — UK property rental & management */

:root {
  --ink: #0f172a;
  --muted: #475569;
  --line: #e2e8f0;
  --bg: #f8fafc;
  --card: #ffffff;
  --accent: #1e3a5f;
  --accent-soft: #e8eef5;
  --gold: #b8860b;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
  --font: "Source Serif 4", Georgia, "Times New Roman", serif;
  --sans: "DM Sans", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
}

h1,
h2,
h3 {
  font-family: var(--font);
  font-weight: 600;
  line-height: 1.25;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 250, 252, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 24px;
  max-width: 1120px;
  margin: 0 auto;
}

.logo {
  font-family: var(--font);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  color: var(--ink);
}

.logo span {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  font-family: var(--sans);
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 2px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  align-items: center;
}

.nav a {
  font-size: 0.9rem;
  color: var(--muted);
}

.nav a:hover {
  color: var(--accent);
}

.header-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  font-size: 0.85rem;
}

.header-cta a {
  font-weight: 600;
  color: var(--accent);
}

.header-cta span {
  color: var(--muted);
}

/* Hero */
.hero {
  padding: 72px 0 80px;
  background: linear-gradient(165deg, var(--accent-soft) 0%, var(--bg) 45%);
  border-bottom: 1px solid var(--line);
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  max-width: 720px;
  margin: 0 0 20px;
  color: var(--ink);
}

.lead {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 640px;
  margin: 0 0 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn {
  display: inline-block;
  padding: 14px 26px;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: #152a45;
  text-decoration: none;
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}

.btn-outline:hover {
  background: var(--accent-soft);
  text-decoration: none;
}

.hero-note {
  margin-top: 24px;
  font-size: 0.9rem;
  color: var(--muted);
}

/* Sections */
section {
  padding: 64px 0;
}

section:nth-child(even) {
  background: var(--card);
}

.section-head {
  margin-bottom: 40px;
}

.section-head h2 {
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  margin: 0 0 12px;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  max-width: 720px;
}

/* Grid cards */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

section:nth-child(even) .card {
  background: var(--bg);
}

.card h3 {
  font-size: 1.15rem;
  margin: 0 0 12px;
  color: var(--accent);
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.card p + p {
  margin-top: 12px;
}

/* Prose block */
.prose-block {
  max-width: 800px;
}

.prose-block p + p {
  margin-top: 16px;
}

.prose-block h3 {
  font-size: 1.25rem;
  margin: 32px 0 12px;
  color: var(--ink);
}

.prose-block h3:first-child {
  margin-top: 0;
}

/* List feature */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}

.feature-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  color: var(--muted);
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 2px;
}

/* Two column split */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

@media (max-width: 820px) {
  .split {
    grid-template-columns: 1fr;
  }

  .header-inner {
    flex-wrap: wrap;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    padding-top: 8px;
    border-top: 1px solid var(--line);
  }

  .header-cta {
    align-items: flex-start;
  }
}

/* Stats / highlight strip */
.strip {
  background: var(--accent);
  color: #e8eef5;
  padding: 40px 0;
}

.strip .wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 28px;
  text-align: center;
}

.strip strong {
  display: block;
  font-family: var(--font);
  font-size: 1.75rem;
  color: #fff;
  margin-bottom: 6px;
}

.strip span {
  font-size: 0.9rem;
  opacity: 0.88;
}

/* Process steps */
.steps {
  counter-reset: step;
  display: grid;
  gap: 20px;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: start;
  padding: 24px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

section:nth-child(even) .step {
  background: var(--bg);
}

.step::before {
  counter-increment: step;
  content: counter(step);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  border-radius: 10px;
  flex-shrink: 0;
}

.step h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
}

.step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.97rem;
}

/* FAQ */
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}

.faq-item:first-child {
  padding-top: 0;
}

.faq-item h3 {
  font-size: 1.05rem;
  margin: 0 0 10px;
  font-family: var(--sans);
  font-weight: 600;
}

.faq-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.97rem;
}

/* Contact */
.contact-section {
  background: linear-gradient(180deg, var(--bg) 0%, var(--accent-soft) 100%);
  border-top: 1px solid var(--line);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

@media (max-width: 720px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.contact-card {
  background: var(--card);
  padding: 32px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.contact-card h3 {
  margin: 0 0 20px;
  font-size: 1.2rem;
}

.contact-row {
  margin-bottom: 16px;
}

.contact-row label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 4px;
}

.contact-row a,
.contact-row span {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
}

.disclaimer {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.55;
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: #94a3b8;
  padding: 32px 0;
  font-size: 0.88rem;
}

.site-footer .wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.site-footer strong {
  color: #e2e8f0;
}
