/* Archangel Care — concept rebuild */

:root {
  --gold: #a8863c;
  --gold-dark: #8a6d2f;
  --gold-pale: #f5efe1;
  --ink: #26221c;
  --ink-soft: #55504a;
  --cream: #faf8f3;
  --white: #ffffff;
  --line: #e8e2d6;
  --radius: 14px;
  --shadow: 0 2px 24px rgba(38, 34, 28, 0.08);
  --serif: Georgia, "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
}

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

a { color: var(--gold-dark); }

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.2; }

/* ---------- header ---------- */

.topbar {
  background: var(--ink);
  color: #cfc8bc;
  font-size: 14px;
  padding: 7px 0;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar a { color: #e8dfc8; text-decoration: none; }
.topbar a:hover { color: var(--white); }

header.site {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
}
header.site .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 20px;
}
.logo img { height: 44px; width: auto; }

nav.main { display: flex; align-items: center; gap: 26px; }
nav.main a {
  text-decoration: none;
  color: var(--ink);
  font-size: 15.5px;
  font-weight: 500;
}
nav.main a:hover, nav.main a.active { color: var(--gold-dark); }
nav.main a.active { border-bottom: 2px solid var(--gold); padding-bottom: 3px; }

.btn {
  display: inline-block;
  background: var(--gold);
  color: var(--white) !important;
  padding: 11px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15.5px;
  border: none;
  cursor: pointer;
  transition: background 0.15s;
}
.btn:hover { background: var(--gold-dark); }
.btn.ghost {
  background: transparent;
  color: var(--ink) !important;
  border: 1.5px solid var(--ink);
}
.btn.ghost:hover { background: var(--ink); color: var(--white) !important; }

.nav-toggle { display: none; background: none; border: none; font-size: 28px; cursor: pointer; color: var(--ink); }

/* ---------- hero ---------- */

.hero { background: var(--white); padding: 64px 0; }
.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero .kicker,
.kicker {
  color: var(--gold-dark);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 14px;
}
.hero h1 { font-size: clamp(34px, 5vw, 50px); margin-bottom: 18px; }
.hero p.lead { font-size: 19px; color: var(--ink-soft); margin-bottom: 28px; }
.hero .actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero .photo img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: 100% center;
}

/* page hero (inner pages) */
.page-hero {
  background: var(--ink);
  color: var(--white);
  padding: 56px 0;
}
.page-hero h1 { font-size: clamp(30px, 4.5vw, 42px); margin-bottom: 10px; }
.page-hero p { color: #cfc8bc; max-width: 640px; font-size: 18px; }

/* ---------- trust bar ---------- */

.trustbar { background: var(--gold-pale); padding: 22px 0; }
.trustbar .container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.trust {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}
.trust svg { flex-shrink: 0; }

/* ---------- sections ---------- */

section.block { padding: 72px 0; }
section.block.alt { background: var(--white); }

.section-head { max-width: 640px; margin-bottom: 42px; }
.section-head h2 { font-size: clamp(26px, 3.5vw, 34px); margin-bottom: 12px; }
.section-head p { color: var(--ink-soft); }

/* cards */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  text-decoration: none;
  color: var(--ink);
  transition: transform 0.15s, box-shadow 0.15s;
  display: block;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card .icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.card h3 { font-size: 21px; margin-bottom: 10px; }
.card p { color: var(--ink-soft); font-size: 15.5px; margin-bottom: 14px; }
.card .more { color: var(--gold-dark); font-weight: 600; font-size: 15px; }

/* two-column content */
.split { display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; align-items: start; }
.split .photo img { border-radius: var(--radius); box-shadow: var(--shadow); }
.prose p { margin-bottom: 18px; color: var(--ink-soft); }
.prose p strong { color: var(--ink); }
.prose h2 { font-size: 28px; margin: 32px 0 14px; }
.prose ul { margin: 0 0 18px 22px; color: var(--ink-soft); }
.prose li { margin-bottom: 8px; }

/* stats */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 40px; }
.stat {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
}
.stat .num { font-family: var(--serif); font-size: 34px; color: var(--gold-dark); font-weight: 700; }
.stat .label { font-size: 14px; color: var(--ink-soft); margin-top: 4px; }

/* testimonials */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.quote {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}
.quote .mark { font-family: var(--serif); font-size: 46px; color: var(--gold); line-height: 1; margin-bottom: 8px; }
.quote p { font-size: 16.5px; margin-bottom: 16px; font-style: italic; }
.quote .who { font-weight: 600; font-size: 14.5px; color: var(--gold-dark); font-style: normal; }

/* branch cards */
.branches { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.branch {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}
.branch h3 { font-size: 20px; margin-bottom: 6px; }
.branch .area { color: var(--gold-dark); font-size: 14px; font-weight: 600; margin-bottom: 14px; }
.branch p { color: var(--ink-soft); font-size: 15.5px; margin-bottom: 4px; }
.branch a.tel {
  display: inline-block;
  margin-top: 12px;
  font-weight: 700;
  font-size: 18px;
  color: var(--ink);
  text-decoration: none;
}
.branch a.tel:hover { color: var(--gold-dark); }
.branch a.mail { font-size: 15px; word-break: break-all; }

/* sidebar layout */
.with-side { display: grid; grid-template-columns: 1.6fr 1fr; gap: 48px; align-items: start; }
.side-card {
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius);
  padding: 30px;
  position: sticky;
  top: 96px;
}
.side-card h3 { font-size: 22px; margin-bottom: 12px; color: var(--white); }
.side-card p { color: #cfc8bc; font-size: 15.5px; margin-bottom: 20px; }
.side-card .btn { width: 100%; text-align: center; margin-bottom: 12px; }
.side-card .btn.ghost { border-color: #cfc8bc; color: #f3eee2 !important; }
.side-card .btn.ghost:hover { background: rgba(255,255,255,0.1); }

/* CTA band */
.cta-band { background: var(--ink); color: var(--white); padding: 64px 0; text-align: center; }
.cta-band h2 { font-size: clamp(26px, 3.5vw, 34px); margin-bottom: 12px; }
.cta-band p { color: #cfc8bc; max-width: 560px; margin: 0 auto 28px; }

/* forms */
form.enquiry { display: grid; gap: 16px; }
form.enquiry .row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
form.enquiry label { font-weight: 600; font-size: 14.5px; display: block; margin-bottom: 6px; }
form.enquiry input, form.enquiry textarea, form.enquiry select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-family: inherit;
  font-size: 16px;
  background: var(--white);
}
form.enquiry input:focus, form.enquiry textarea:focus, form.enquiry select:focus {
  outline: 2px solid var(--gold);
  border-color: var(--gold);
}

/* ---------- footer ---------- */

footer.site { background: #1b1815; color: #b7b0a4; padding: 56px 0 32px; margin-top: 0; }
footer.site .cols {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}
footer.site h4 { color: var(--white); font-size: 16px; margin-bottom: 14px; font-family: var(--serif); }
footer.site a { color: #d8cfbe; text-decoration: none; }
footer.site a:hover { color: var(--white); }
footer.site ul { list-style: none; }
footer.site li { margin-bottom: 8px; font-size: 15px; }
footer.site .fine {
  border-top: 1px solid #3a352e;
  padding-top: 22px;
  font-size: 13.5px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.demo-note {
  background: var(--gold-pale);
  border-top: 1px solid var(--line);
  font-size: 13.5px;
  color: var(--ink-soft);
  text-align: center;
  padding: 10px 16px;
}

/* ---------- responsive ---------- */

@media (max-width: 860px) {
  .hero .container, .split, .with-side { grid-template-columns: 1fr; }
  .cards, .quotes { grid-template-columns: 1fr; }
  .branches { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  footer.site .cols { grid-template-columns: 1fr; }
  .side-card { position: static; }

  .nav-toggle { display: block; }
  nav.main {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px;
    gap: 18px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  nav.main.open { display: flex; }
  form.enquiry .row { grid-template-columns: 1fr; }
  .hero { padding: 40px 0; }
  section.block { padding: 52px 0; }
}
