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

:root {
  --teal: #0aa6a6;
  --teal-dark: #00685d;
  --teal-bright: #2bb18f;
  --teal-hover: #259676;
  --navy: #0b2545;
  --ink: #1d2433;
  --muted: #5f6f8d;
  --surface: #f4f6fb;
  --white: #ffffff;
  --hp-red: #c41e3a;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.wrap {
  width: min(1140px, calc(100% - 2rem));
  margin-inline: auto;
}

.top-bar {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.78rem;
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
  min-height: 34px;
}

.top-bar a {
  color: #fff;
  font-weight: 600;
}

.top-bar a:hover {
  color: var(--teal-bright);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(29, 36, 51, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 80px;
}

.brand img {
  height: 56px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.site-nav a {
  padding: 0.5rem 0.85rem;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ink);
  border-radius: 4px;
}

.site-nav a:hover {
  color: var(--teal-dark);
  background: rgba(10, 166, 166, 0.08);
}

.nav-cta {
  margin-left: 0.5rem;
  background: var(--hp-red) !important;
  color: var(--white) !important;
}

.nav-cta:hover {
  background: #a01830 !important;
  color: var(--white) !important;
}

.nav-toggle {
  display: none;
  padding: 0.5rem 0.85rem;
  border: 1px solid rgba(201, 206, 216, 0.9);
  border-radius: 4px;
  background: var(--white);
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
}

.hero-banner {
  position: relative;
  width: 100%;
  height: clamp(280px, 42vw, 480px);
  overflow: hidden;
  background: var(--navy);
}

.hero-banner > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(180deg, rgba(11, 37, 69, 0.15) 0%, rgba(11, 37, 69, 0.72) 100%);
}

.hero-caption {
  padding-bottom: 2.5rem;
  color: var(--white);
}

.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.9;
  margin-bottom: 0.5rem;
}

.hero-caption h1 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 0.5rem;
}

.hero-caption p {
  font-size: 1rem;
  max-width: 520px;
  opacity: 0.92;
}

.promo-row {
  padding: 0;
  margin-top: -2rem;
  position: relative;
  z-index: 2;
}

.promo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.promo-tile {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 110px;
  padding: 1.25rem 1.5rem;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(29, 36, 51, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.promo-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(29, 36, 51, 0.16);
}

.promo-tile-primary {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 100%);
  color: var(--white);
}

.promo-tile-secondary {
  background: linear-gradient(135deg, var(--hp-red) 0%, #e03550 100%);
  color: var(--white);
}

.promo-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.9;
  margin-bottom: 0.25rem;
}

.promo-tile strong {
  font-size: 1.15rem;
  font-weight: 700;
}

.whats-new {
  padding: 3.5rem 0 2.5rem;
}

.block-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 1.5rem;
  text-align: center;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.news-card {
  padding: 1.35rem;
  border: 1px solid rgba(201, 206, 216, 0.85);
  border-radius: 8px;
  background: var(--white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.news-card:hover {
  border-color: rgba(10, 166, 166, 0.35);
  box-shadow: 0 6px 20px rgba(29, 36, 51, 0.06);
}

.news-tag {
  display: inline-block;
  margin-bottom: 0.5rem;
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
  background: rgba(10, 166, 166, 0.1);
  color: var(--teal-dark);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
}

.news-card h3 {
  font-size: 1rem;
  margin-bottom: 0.45rem;
  color: var(--ink);
}

.news-card p {
  font-size: 0.88rem;
  color: var(--muted);
}

.highlights {
  padding: 3rem 0;
  background: var(--surface);
  text-align: center;
}

.highlights-headline {
  font-size: clamp(1.25rem, 3vw, 1.65rem);
  font-weight: 700;
  color: var(--teal-dark);
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

.highlight-item {
  padding: 0 1rem;
}

.highlight-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  color: var(--teal-dark);
  box-shadow: 0 4px 16px rgba(29, 36, 51, 0.08);
}

.highlight-item h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--ink);
}

.highlight-item p {
  font-size: 0.88rem;
  color: var(--muted);
}

.section {
  padding: 3.5rem 0;
}

.section-muted {
  background: var(--surface);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.service-card {
  padding: 1.35rem;
  border-radius: 8px;
  border: 1px solid rgba(201, 206, 216, 0.85);
  background: var(--white);
  border-top: 3px solid var(--teal);
}

.service-card h3 {
  font-size: 0.95rem;
  color: var(--teal-dark);
  margin-bottom: 0.45rem;
}

.service-card p {
  font-size: 0.86rem;
  color: var(--muted);
}

.about-block {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  align-items: center;
}

.about-copy .block-title {
  text-align: left;
  margin-bottom: 1rem;
}

.about-copy p {
  color: var(--muted);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.about-badge {
  text-align: center;
  padding: 2rem;
  border-radius: 12px;
  background: var(--white);
  border: 1px solid rgba(201, 206, 216, 0.85);
}

.about-badge img {
  width: 100px;
  height: 100px;
  margin: 0 auto 1rem;
  border-radius: 16px;
  object-fit: cover;
}

.about-badge p {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--teal);
  line-height: 1.4;
  text-transform: uppercase;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
}

.contact-grid .block-title {
  text-align: left;
  margin-bottom: 0.75rem;
}

.contact-lead,
.contact-note {
  color: var(--muted);
  margin-bottom: 1rem;
}

.contact-list {
  list-style: none;
  color: var(--muted);
}

.contact-list li + li {
  margin-top: 0.35rem;
}

.staff-box {
  padding: 1.75rem;
  border-radius: 8px;
  background: var(--navy);
  color: var(--white);
}

.staff-box h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.staff-box p {
  font-size: 0.9rem;
  opacity: 0.9;
  margin-bottom: 1.25rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.4rem;
  border-radius: 6px;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  transition: background 0.2s ease;
}

.btn-primary {
  background: var(--teal-bright);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--teal-hover);
}

.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.85);
  padding: 2rem 0 1.25rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 2rem;
  margin-bottom: 1.25rem;
  font-size: 0.88rem;
  font-weight: 500;
}

.footer-links a:hover {
  color: var(--teal-bright);
}

.footer-bottom {
  text-align: center;
  font-size: 0.78rem;
  opacity: 0.75;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem 1rem 1rem;
    background: var(--white);
    border-top: 1px solid rgba(201, 206, 216, 0.7);
    box-shadow: 0 8px 20px rgba(29, 36, 51, 0.08);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 0.65rem 0.5rem;
  }

  .nav-cta {
    margin-left: 0;
    text-align: center;
  }

  .site-header {
    position: relative;
  }

  .header-inner {
    position: relative;
    flex-wrap: wrap;
  }

  .promo-grid,
  .news-grid,
  .highlights-grid,
  .service-grid,
  .about-block,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .promo-row {
    margin-top: 0;
    padding: 1.25rem 0 0;
  }
}

@media (max-width: 560px) {
  .hero-caption {
    padding-bottom: 1.5rem;
  }

  .top-bar-inner {
    justify-content: center;
  }
}

.legal-page {
  padding: 3rem 0 4rem;
  background: var(--white);
}

.legal-content {
  max-width: 760px;
}

.legal-content h1 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-bottom: 0.35rem;
  color: var(--ink);
}

.legal-updated {
  color: var(--muted);
  font-size: 0.88rem;
  margin-bottom: 2rem;
}

.legal-content section {
  margin-bottom: 2rem;
}

.legal-content h2 {
  font-size: 1.05rem;
  color: var(--teal-dark);
  margin-bottom: 0.65rem;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

.legal-content ul {
  padding-left: 1.25rem;
  margin-bottom: 0.75rem;
}

.legal-content a {
  color: var(--teal-dark);
  font-weight: 600;
}

.legal-content a:hover {
  color: var(--teal-bright);
}

.faq-list {
  display: grid;
  gap: 1.25rem;
}

.faq-item {
  padding: 1.25rem;
  border: 1px solid rgba(201, 206, 216, 0.85);
  border-radius: 8px;
  background: var(--surface);
}

.faq-item h2 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.cookie-prefs {
  padding: 1.5rem;
  border-radius: 8px;
  border: 1px solid rgba(201, 206, 216, 0.85);
  background: var(--surface);
}

.cookie-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(201, 206, 216, 0.7);
}

.cookie-option:last-of-type {
  border-bottom: none;
}

.cookie-option strong {
  display: block;
  color: var(--ink);
  margin-bottom: 0.25rem;
}

.cookie-option p {
  margin-bottom: 0;
  font-size: 0.88rem;
}

.cookie-badge {
  flex-shrink: 0;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: rgba(10, 166, 166, 0.12);
  color: var(--teal-dark);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
}

.cookie-actions {
  margin-top: 1.25rem;
}

.cookie-status {
  margin-top: 0.75rem;
  font-size: 0.88rem;
  color: var(--teal-dark);
  font-weight: 600;
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.92);
  box-shadow: 0 -8px 30px rgba(29, 36, 51, 0.2);
}

.cookie-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1rem 0;
  font-size: 0.88rem;
}

.cookie-banner a {
  color: var(--teal-bright);
  font-weight: 600;
}

.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.35);
}

.btn-outline-light:hover {
  border-color: var(--white);
}

@media (max-width: 640px) {
  .cookie-banner-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-option {
    flex-direction: column;
    align-items: flex-start;
  }
}
