/* Audit Care — concept rebuild */

:root {
  --green: #05251b;
  --green-soft: #16463a;
  --gold: #c09e2f;
  --gold-dark: #a2841f;
  --teal: #85cbcb;
  --teal-pale: #e6f3f3;
  --ink: #21332c;
  --ink-soft: #55655e;
  --cream: #f8f6ef;
  --white: #ffffff;
  --line: #e4e0d3;
  --radius: 10px;
  --shadow: 0 4px 30px rgba(5, 37, 27, 0.10);
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Raleway", -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(--white);
  line-height: 1.7;
  font-size: 17px;
  font-weight: 400;
}

img { max-width: 100%; display: block; }
a { color: var(--gold-dark); }

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

h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.15; letter-spacing: 0.01em; }

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

.topbar {
  background: var(--green);
  color: #c8d8d2;
  font-size: 14px;
  padding: 8px 0;
}
.topbar .container { display: flex; justify-content: flex-end; gap: 24px; flex-wrap: wrap; }
.topbar a { color: #e4efec; text-decoration: none; }
.topbar a:hover { color: var(--white); }
.topbar .ic { color: var(--teal); }

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: 16px 24px;
  gap: 20px;
}
.logo img { height: 58px; width: auto; }

nav.main { display: flex; align-items: center; gap: 28px; }
nav.main a {
  text-decoration: none;
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
nav.main a:hover, nav.main a.active { color: var(--gold-dark); }
nav.main a.active { border-bottom: 2px solid var(--gold); padding-bottom: 2px; }

.btn {
  display: inline-block;
  background: var(--gold);
  color: var(--white) !important;
  padding: 12px 26px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: var(--sans);
  border: none;
  cursor: pointer;
  transition: background 0.15s;
}
.btn:hover { background: var(--gold-dark); }
.btn.green { background: var(--green); }
.btn.green:hover { background: var(--green-soft); }
.btn.ghost { background: transparent; color: var(--white) !important; border: 1.5px solid rgba(255,255,255,0.8); }
.btn.ghost:hover { background: rgba(255,255,255,0.15); }
.btn.ghost-dark { background: transparent; color: var(--green) !important; border: 1.5px solid var(--green); }
.btn.ghost-dark:hover { background: var(--green); color: var(--white) !important; }

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

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

.hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  color: var(--white);
  background-size: cover;
  background-position: center;
}
.hero:before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(5,37,27,0.78) 0%, rgba(5,37,27,0.45) 55%, rgba(5,37,27,0.2) 100%);
}
.hero .inner { position: relative; max-width: 620px; padding: 60px 0; }
.hero .kicker { color: var(--teal); font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; font-size: 13px; margin-bottom: 18px; }
.hero h1 { font-size: clamp(40px, 6vw, 62px); margin-bottom: 20px; font-weight: 600; }
.hero p.lead { font-size: 20px; margin-bottom: 30px; color: #eef4f1; font-weight: 300; }
.hero .actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* page hero */
.page-hero {
  position: relative;
  color: var(--white);
  background-size: cover;
  background-position: center;
  padding: 90px 0;
}
.page-hero:before { content: ""; position: absolute; inset: 0; background: rgba(5,37,27,0.62); }
.page-hero .inner { position: relative; max-width: 720px; }
.page-hero .kicker { color: var(--teal); font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; font-size: 13px; margin-bottom: 14px; }
.page-hero h1 { font-size: clamp(36px, 5vw, 52px); margin-bottom: 12px; font-weight: 600; }
.page-hero p { font-size: 19px; color: #eef4f1; font-weight: 300; }

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

.trustbar { background: var(--green); padding: 20px 0; }
.trustbar .container { display: flex; justify-content: center; gap: 48px; flex-wrap: wrap; align-items: center; }
.trust { display: flex; align-items: center; gap: 10px; font-size: 15px; font-weight: 600; color: #eef4f1; letter-spacing: 0.02em; }
.trust svg { flex-shrink: 0; color: var(--teal); }

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

section.block { padding: 84px 0; }
section.block.cream { background: var(--cream); }
section.block.green { background: var(--green); color: #eef4f1; }
section.block.green h2 { color: var(--white); }
section.block.green .section-head p { color: #c8d8d2; }

.section-head { max-width: 680px; margin-bottom: 48px; }
.section-head.center { margin: 0 auto 48px; text-align: center; }
.kicker-line { color: var(--gold-dark); font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; font-size: 13px; margin-bottom: 14px; }
.section-head h2 { font-size: clamp(30px, 4vw, 42px); margin-bottom: 14px; font-weight: 600; }
.section-head p { color: var(--ink-soft); font-size: 18px; }

/* split */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split.narrow-img { grid-template-columns: 1.2fr 1fr; }
.split .photo img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; }
.split .photo.framed { position: relative; }
.split .photo.framed:before {
  content: ""; position: absolute; inset: -14px -14px 14px 14px;
  border: 2px solid var(--teal); border-radius: var(--radius); z-index: -1;
}
.prose h2 { font-size: clamp(28px, 3.5vw, 38px); margin-bottom: 16px; }
.prose p { margin-bottom: 16px; color: var(--ink-soft); font-size: 17px; }
.prose p strong { color: var(--ink); }
.prose .kicker-line { margin-bottom: 12px; }

/* value cards */
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.value { text-align: center; padding: 8px; }
.value .icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--teal-pale); color: var(--gold-dark);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.value h3 { font-size: 26px; margin-bottom: 10px; }
.value p { color: var(--ink-soft); font-size: 16px; }

/* home cards */
.homes { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.home-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.home-card img { width: 100%; height: 260px; object-fit: cover; }
.home-card .body { padding: 28px 30px 32px; }
.home-card .beds { display: inline-block; background: var(--teal-pale); color: var(--green-soft); font-size: 13px; font-weight: 700; letter-spacing: 0.04em; padding: 4px 12px; border-radius: 999px; margin-bottom: 14px; text-transform: uppercase; }
.home-card h3 { font-size: 30px; margin-bottom: 6px; }
.home-card .est { color: var(--gold-dark); font-weight: 600; font-size: 14px; margin-bottom: 14px; }
.home-card p { color: var(--ink-soft); font-size: 16px; margin-bottom: 8px; }
.home-card .addr { font-size: 15px; color: var(--ink-soft); margin: 14px 0 4px; }
.home-card a.tel { font-weight: 700; font-size: 19px; color: var(--green); text-decoration: none; font-family: var(--serif); }
.home-card a.tel:hover { color: var(--gold-dark); }
.home-card .cqc { display: inline-flex; align-items: center; gap: 8px; margin-top: 16px; font-size: 13px; font-weight: 700; color: var(--green-soft); text-transform: uppercase; letter-spacing: 0.04em; }
.home-card .cqc span.dot { width: 10px; height: 10px; border-radius: 50%; background: #6ab04c; }

/* service chips */
.services { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.service-chip {
  background: var(--white); border: 1px solid var(--line);
  border-radius: 999px; padding: 12px 24px;
  font-size: 16px; font-weight: 600; color: var(--green);
}
section.green .service-chip { background: var(--green-soft); border-color: var(--green-soft); color: #eef4f1; }

/* gallery */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery img { width: 100%; height: 260px; object-fit: cover; border-radius: var(--radius); }

/* testimonials */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.quote { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; }
.quote .stars { color: var(--gold); font-size: 18px; letter-spacing: 2px; margin-bottom: 14px; }
.quote p { font-size: 17px; margin-bottom: 16px; font-style: italic; color: var(--ink); font-family: var(--serif); line-height: 1.5; }
.quote .who { font-weight: 700; font-size: 14px; color: var(--gold-dark); font-style: normal; text-transform: uppercase; letter-spacing: 0.04em; }

/* team */
.team { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; max-width: 720px; margin: 0 auto; }
.member { text-align: center; }
.member .ph { width: 130px; height: 130px; border-radius: 50%; object-fit: cover; margin: 0 auto 16px; border: 3px solid var(--teal); }
.member h3 { font-size: 24px; margin-bottom: 4px; }
.member p { color: var(--gold-dark); font-weight: 600; font-size: 15px; }

/* CTA band */
.cta-band { background-size: cover; background-position: center; position: relative; padding: 84px 0; text-align: center; color: var(--white); }
.cta-band:before { content: ""; position: absolute; inset: 0; background: rgba(5,37,27,0.8); }
.cta-band .inner { position: relative; max-width: 620px; margin: 0 auto; }
.cta-band h2 { font-size: clamp(30px, 4vw, 42px); margin-bottom: 14px; color: var(--white); }
.cta-band p { color: #d6e3de; margin-bottom: 28px; font-size: 18px; }

/* with-side */
.with-side { display: grid; grid-template-columns: 1.5fr 1fr; gap: 56px; align-items: start; }
.side-card { background: var(--green); color: #eef4f1; border-radius: var(--radius); padding: 34px; position: sticky; top: 100px; }
.side-card h3 { font-size: 26px; margin-bottom: 12px; color: var(--white); }
.side-card p { color: #c8d8d2; font-size: 16px; margin-bottom: 22px; }
.side-card .btn { width: 100%; text-align: center; margin-bottom: 12px; }

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

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

footer.site { background: var(--green); color: #b6c7c0; padding: 60px 0 28px; }
footer.site .cols { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 44px; margin-bottom: 40px; }
footer.site .logo-foot img { height: 66px; margin-bottom: 18px; }
footer.site h4 { color: var(--white); font-size: 20px; margin-bottom: 16px; font-family: var(--serif); font-weight: 600; }
footer.site a { color: #d0ddd8; text-decoration: none; }
footer.site a:hover { color: var(--white); }
footer.site ul { list-style: none; }
footer.site li { margin-bottom: 9px; font-size: 15px; }
footer.site .fine { border-top: 1px solid #1c4238; padding-top: 22px; font-size: 13.5px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }

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

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

@media (max-width: 900px) {
  .split, .with-side { grid-template-columns: 1fr; gap: 40px; }
  .split .photo.framed:before { display: none; }
  .values { grid-template-columns: 1fr; gap: 32px; }
  .homes { grid-template-columns: 1fr; }
  .quotes { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .team { grid-template-columns: 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: 22px 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; }
  section.block { padding: 56px 0; }
  .topbar .container { justify-content: center; }
}
