:root {
  --color-accent: #ff5a5f;
  --color-accent-soft: #ffe9ea;
  --color-bg: #f9fafb;
  --color-text: #111827;
  --color-muted: #6b7280;
  --color-border: #e5e7eb;
  --color-nav-bg: #ffffff;
  --color-footer-bg: #020617;
  --shadow-soft: 0 10px 30px rgba(15, 23, 42, 0.08);
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --radius-pill: 999px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
}

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

a {
  color: var(--color-accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

p {
  margin: 0 0 1rem;
}

h1, h2, h3, h4, h5 {
  margin: 0 0 0.75rem;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2rem, 3vw, 2.6rem);
}

h2 {
  font-size: clamp(1.5rem, 2.3vw, 2rem);
}

h3 {
  font-size: 1.2rem;
}

h4, .h4 {
  font-size: 1.05rem;
  text-transform: none;
}

.lead {
  font-size: 1.1rem;
  color: var(--color-muted);
  max-width: 40rem;
}

.eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-muted);
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.small {
  font-size: 0.85rem;
  color: var(--color-muted);
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.narrow {
  max-width: 760px;
}

.section {
  padding: 3rem 0;
}

.section-alt {
  background-color: #ffffff;
}

.section-header {
  text-align: left;
  margin-bottom: 2rem;
}

.section-header p {
  max-width: 40rem;
  color: var(--color-muted);
}

.grid {
  display: grid;
  gap: 1.75rem;
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(229, 231, 235, 0.9);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 0;
}

.logo img {
  height: 32px;
}

.main-nav {
  position: relative;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0;
  margin: 0;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-muted);
}

.nav-link[aria-current="page"] {
  color: var(--color-text);
}

.nav-cta .btn-small {
  font-size: 0.9rem;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--color-border);
  background-color: #ffffff;
  border-radius: 0.4rem;
  padding: 0.3rem 0.4rem;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background-color: #111827;
}

.nav-toggle span + span {
  margin-top: 3px;
}

/* Hero */

.hero {
  padding: 3rem 0 3.5rem;
}

.hero-grid {
  display: grid;
  gap: 2rem;
  align-items: flex-start;
}

.hero-primary .hero-actions {
  margin: 1.4rem 0 0.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-points {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 0;
  color: var(--color-muted);
}

.hero-points li {
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: 0.35rem;
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background-color: var(--color-accent);
}

.hero-secondary {
  align-self: stretch;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.4rem;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  background-color: var(--color-accent);
  color: #ffffff;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.08s ease-out, box-shadow 0.08s ease-out, background-color 0.1s ease-out;
  box-shadow: 0 10px 25px rgba(248, 113, 113, 0.25);
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(248, 113, 113, 0.3);
}

.btn:focus-visible {
  outline: 2px solid #111827;
  outline-offset: 3px;
}

.btn-ghost {
  background-color: transparent;
  color: var(--color-text);
  border-color: var(--color-border);
  box-shadow: none;
}

.btn-ghost:hover {
  background-color: #ffffff;
  box-shadow: var(--shadow-soft);
}

.btn-small {
  padding: 0.55rem 1rem;
}

.btn-block {
  width: 100%;
}

/* Cards */

.card {
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 1.7rem 1.6rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(15, 23, 42, 0.03);
}

.card-minimal {
  box-shadow: none;
  border-style: solid;
  border-color: var(--color-border);
}

.card-link {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
  position: relative;
  padding-bottom: 2.3rem;
}

.card-link:hover {
  text-decoration: none;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
  transform: translateY(-2px);
}

.card-link h3, .card-link h2 {
  margin-bottom: 0.5rem;
}

.card-meta {
  font-size: 0.9rem;
  color: var(--color-muted);
  margin-top: 0.75rem;
}

.card-muted {
  background-color: #f3f4f6;
  box-shadow: none;
  border-color: #e5e7eb;
}

.inline-link {
  font-weight: 500;
}

/* Lists */

.check-list,
.bullet-list,
.steps-list {
  padding-left: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.45rem;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-accent);
  font-weight: 700;
  font-size: 0.9rem;
}

.bullet-list li {
  position: relative;
  padding-left: 1.1rem;
  margin-bottom: 0.35rem;
}

.bullet-list li::before {
  content: "\2022";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-accent);
}

.steps-list li {
  margin-bottom: 1.4rem;
}

.steps-list h3 {
  margin-bottom: 0.35rem;
}

/* Layout helpers */

.layout-two-col {
  display: grid;
  gap: 2rem;
}

.page-hero {
  padding: 2.75rem 0 2rem;
}

.page-hero .lead {
  margin-top: 0.6rem;
}

.quick-enquiry {
  align-self: flex-start;
}

/* Forms */

.form {
  display: grid;
  gap: 0.9rem;
}

.form-field {
  display: grid;
  gap: 0.25rem;
}

label {
  font-size: 0.9rem;
  font-weight: 500;
}

input,
select,
textarea {
  font: inherit;
  padding: 0.6rem 0.7rem;
  border-radius: 0.6rem;
  border: 1px solid var(--color-border);
  background-color: #ffffff;
}

textarea {
  resize: vertical;
}

input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
  border-color: transparent;
}

.contact-details p {
  margin-bottom: 0.75rem;
}

/* CTA band */

.cta-band {
  background-color: var(--color-accent-soft);
  padding: 2.6rem 0;
}

.cta-band-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.cta-band-inner p {
  margin-bottom: 0;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

/* Footer */

.site-footer {
  background-color: var(--color-footer-bg);
  color: #e5e7eb;
  padding: 2.75rem 0 2rem;
  margin-top: 3rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

.footer-heading {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #9ca3af;
  margin-bottom: 0.9rem;
}

.footer-contact a {
  color: #e5e7eb;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.3rem;
}

.footer-links a {
  color: #e5e7eb;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: #ffffff;
}

.site-footer .small {
  color: #9ca3af;
}

/* Responsive */

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: minmax(0, 2fr) minmax(0, 1.3fr);
  }
}

@media (min-width: 768px) {
  .layout-two-col {
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.1fr);
  }

  .footer-grid {
    grid-template-columns: 2fr 1.4fr 1.5fr;
  }
}

@media (max-width: 768px) {
  .header-inner {
    padding: 0.6rem 0;
  }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .nav-links {
    position: absolute;
    right: 0;
    top: 120%;
    background-color: #ffffff;
    border-radius: 0.9rem;
    box-shadow: var(--shadow-soft);
    padding: 0.9rem 1.1rem;
    flex-direction: column;
    align-items: flex-start;
    min-width: 220px;
    display: none;
  }

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

  .nav-cta {
    width: 100%;
  }

  .nav-cta .btn-small {
    width: 100%;
    justify-content: center;
  }

  .hero {
    padding-top: 2.2rem;
  }

  .cta-band-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
