/* Public marketing site — matches lindcareltd.co.uk tab bar + brand */
.site-top {
  background: var(--lime);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 1px 0 rgba(92, 84, 0, .18);
}
.site-top-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  min-height: 48px;
}
.site-burger {
  display: none;
  border: 0;
  background: transparent;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--ink);
  flex: 0 0 auto;
}
.site-burger svg { width: 22px; height: 22px; }
.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2px;
  flex: 1;
}
.site-nav a, .site-drop > button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 14px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
}
.site-nav a:hover, .site-drop > button:hover,
.site-nav a.active, .site-drop.open > button {
  background: rgba(0, 0, 0, .08);
  color: var(--ink);
}
.site-drop { position: relative; }
.site-drop > button { cursor: pointer; font-family: inherit; }
.site-drop > button::after {
  content: '';
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid var(--ink);
  opacity: .7;
}
.site-drop-menu {
  display: none;
  position: absolute;
  left: 0;
  top: calc(100% + 4px);
  min-width: 220px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 8px;
  z-index: 60;
}
.site-drop.open .site-drop-menu { display: block; }
.site-drop-menu a {
  display: block;
  width: 100%;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 12px;
  border-radius: 8px;
}
.site-drop-menu a:hover { background: var(--plum-soft); color: var(--plum-deep); }

.site-brand-block {
  text-align: center;
  padding: 28px 20px 18px;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.site-logo-link { display: inline-block; }
.site-logo {
  width: min(168px, 42vw);
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(79, 31, 100, .18);
}
.site-brand-block .brand-tag {
  margin-top: 16px;
  font-size: clamp(22px, 3.5vw, 32px);
  color: var(--ink);
  font-style: italic;
  font-weight: 400;
}

.site-main { max-width: 960px; margin: 0 auto; padding: 36px 20px 64px; }
.site-hero-frame {
  border: 8px solid var(--lime);
  border-radius: 4px;
  overflow: hidden;
  background: #1c1b16;
  position: relative;
  min-height: 280px;
}
.site-hero-frame > img {
  display: block;
  width: 100%;
  height: clamp(260px, 48vw, 460px);
  object-fit: cover;
  object-position: center 30%;
}
.site-hero-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 28px 22px 24px;
  background: linear-gradient(transparent, rgba(28,27,22,.72) 35%, rgba(28,27,22,.88));
  color: #fff;
  text-align: center;
}
.site-hero-caption h1 {
  font-family: var(--serif);
  font-size: clamp(24px, 3.6vw, 36px);
  font-weight: 400;
  line-height: 1.25;
}
.site-hero-caption p {
  margin-top: 8px;
  color: rgba(255,255,255,.88);
  font-size: 15px;
}
.site-hero-caption .hero-actions {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.site-page-hero {
  border: 6px solid var(--lime);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 28px;
}
.site-page-hero img {
  display: block;
  width: 100%;
  height: clamp(180px, 36vw, 320px);
  object-fit: cover;
}

.site-section { margin-top: 40px; }
.site-section h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--plum-deep);
  margin-bottom: 12px;
}
.site-section p { color: var(--muted); font-size: 16px; max-width: 62ch; }
.site-section p + p { margin-top: 12px; }

.service-grid {
  display: grid;
  gap: 14px;
  margin-top: 22px;
  grid-template-columns: repeat(3, 1fr);
}
.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: border-color .15s, transform .15s;
  color: inherit;
  text-decoration: none;
  display: flex;
  flex-direction: column;
}
.service-card:hover { border-color: var(--lime); transform: translateY(-2px); color: inherit; }
.service-card .service-photo {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: var(--plum-soft);
}
.service-card .service-body { padding: 18px 16px 20px; }
.service-card h3 {
  font-size: 17px;
  font-weight: 800;
  color: var(--plum-deep);
  margin-bottom: 8px;
}
.service-card p { font-size: 14px; color: var(--muted); }
.service-card .more {
  display: inline-block;
  margin-top: 14px;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--plum);
}

.contact-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1.1fr .9fr;
  margin-top: 20px;
}
.contact-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px;
  box-shadow: var(--shadow);
}
.contact-panel h3 { font-size: 18px; font-weight: 800; color: var(--plum-deep); margin-bottom: 10px; }
.contact-panel .line { color: var(--muted); margin-top: 8px; font-size: 15px; }
.contact-panel a { font-weight: 700; }

.site-form .field { margin-bottom: 14px; }
.site-form label {
  display: block; font-size: 12px; font-weight: 700; letter-spacing: .04em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 6px;
}
.site-form input, .site-form textarea {
  width: 100%; border: 1.5px solid var(--line); border-radius: 10px;
  padding: 11px 12px; background: #fff; color: var(--ink);
}
.site-form input:focus, .site-form textarea:focus {
  outline: none; border-color: var(--plum); box-shadow: 0 0 0 3px rgba(110,45,138,.12);
}
.site-form textarea { min-height: 120px; resize: vertical; }
#contactMsg {
  display: none; margin-top: 12px; padding: 11px 14px; border-radius: 10px;
  font-weight: 700; font-size: 14px;
}
#contactMsg.ok { display: block; background: var(--green-soft); color: var(--green); }
#contactMsg.err { display: block; background: var(--red-soft); color: var(--red); }

.site-footer {
  background: var(--plum-deep);
  color: rgba(255,255,255,.78);
  padding: 36px 20px 28px;
}
.site-footer-inner {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  gap: 22px;
  grid-template-columns: 1.2fr 1fr 1fr;
}
.site-footer h4 {
  color: #fff;
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.site-footer a { color: var(--lime); }
.site-footer a:hover { color: #fff; }
.site-footer .muted { font-size: 13.5px; line-height: 1.55; }
.site-copy {
  max-width: 960px;
  margin: 22px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: 12.5px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  justify-content: space-between;
  color: rgba(255,255,255,.55);
}
.site-copy a { color: rgba(255,255,255,.55); font-weight: 600; }
.site-copy a:hover { color: var(--lime); }

@media (max-width: 820px) {
  .site-burger { display: grid; }
  .site-nav {
    display: none;
    position: absolute;
    left: 0; right: 0; top: 48px;
    background: var(--lime);
    flex-direction: column;
    align-items: stretch;
    padding: 8px 10px 14px;
    box-shadow: 0 12px 24px rgba(0,0,0,.12);
  }
  .site-nav.open { display: flex; }
  .site-drop-menu {
    position: static;
    box-shadow: none;
    border: 0;
    background: rgba(0,0,0,.06);
    margin: 0 6px 6px;
  }
  .service-grid, .contact-grid, .site-footer-inner { grid-template-columns: 1fr; }
}
