/* Ardenwell Care Ltd — shared styles */

:root {
  --teal-dark: #1f4d4a;
  --teal: #2f7a6f;
  --teal-light: #e6f2ef;
  --gold: #c98a3e;
  --cream: #faf7f2;
  --text: #2b2b2b;
  --text-light: #5a5a5a;
  --white: #ffffff;
  --border: #ddd6cb;
  --radius: 10px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
}

a { color: var(--teal); text-decoration: none; }
a:hover { text-decoration: underline; }

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

/* Header / Nav */
header.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.logo {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--teal-dark);
}

.logo span { color: var(--gold); }

nav ul {
  list-style: none;
  display: flex;
  gap: 28px;
  margin: 0;
  padding: 0;
}

nav a {
  color: var(--text);
  font-weight: 500;
}

nav a.active { color: var(--teal-dark); border-bottom: 2px solid var(--gold); }

.btn {
  display: inline-block;
  background: var(--teal-dark);
  color: var(--white);
  padding: 12px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn:hover { background: var(--teal); text-decoration: none; }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--teal-dark);
  padding: 12px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  border: 2px solid var(--teal-dark);
}

.btn-outline:hover { background: var(--teal-light); text-decoration: none; }

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  color: var(--white);
  padding: 80px 24px;
  text-align: center;
}

.hero h1 {
  font-size: 2.6rem;
  margin: 0 0 16px;
}

.hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 28px;
  opacity: 0.95;
}

.hero .btn { background: var(--gold); }
.hero .btn:hover { background: #b87a30; }

/* Page header for non-home pages */
.page-header {
  background: var(--teal-light);
  padding: 48px 24px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.page-header h1 { color: var(--teal-dark); margin: 0 0 8px; }
.page-header p { color: var(--text-light); margin: 0; }

/* Sections */
section { padding: 64px 0; }
section.alt { background: var(--white); }

h2 {
  color: var(--teal-dark);
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.section-intro {
  color: var(--text-light);
  max-width: 700px;
  margin-bottom: 36px;
}

/* Cards grid */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}

.card h3 { color: var(--teal-dark); margin-top: 0; }
.card p { color: var(--text-light); margin-bottom: 0; }

/* Two column */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

/* Lists */
ul.check-list { list-style: none; padding: 0; }
ul.check-list li {
  padding-left: 28px;
  position: relative;
  margin-bottom: 12px;
  color: var(--text-light);
}
ul.check-list li::before {
  content: "✓";
  color: var(--gold);
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* CTA band */
.cta-band {
  background: var(--teal-dark);
  color: var(--white);
  text-align: center;
  padding: 56px 24px;
}

.cta-band h2 { color: var(--white); }
.cta-band p { color: #d8e8e4; max-width: 600px; margin: 0 auto 24px; }

/* Forms */
form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}

.form-row { margin-bottom: 20px; }

label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}

input, select, textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-family: inherit;
  font-size: 1rem;
}

textarea { resize: vertical; min-height: 110px; }

fieldset {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 20px;
  padding: 16px 20px;
}

legend {
  font-weight: 700;
  color: var(--teal-dark);
  padding: 0 6px;
}

/* Contact info */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.info-block {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 20px;
}

.info-block h3 { color: var(--teal-dark); margin-top: 0; }

/* Images */
.photo-banner {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}

.img-rounded {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.photo-credit {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-light);
  background: var(--white);
  margin: 0;
  padding: 6px 0 0;
}

/* Footer */
footer {
  background: var(--teal-dark);
  color: #cfe3df;
  padding: 40px 24px 24px;
  text-al