:root {
  --navy: #0f2340;
  --gold: #b87319;
  --cream: #f8f5ef;
  --white: #fff;
  --muted: #4b5563;
  --soft: #f4eee6;
  --line: rgba(15, 35, 64, .14);
  --shadow: 0 18px 46px rgba(15, 35, 64, .1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--cream);
  color: var(--navy);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.6;
}

h1,
h2,
h3,
.brand span {
  font-family: Georgia, "Times New Roman", serif;
}

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

.container {
  margin: 0 auto;
  width: min(1180px, 92%);
}

header.site-header {
  background: #e8e8e8;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
}

.nav {
  align-items: center;
  display: flex;
  gap: 28px;
  justify-content: flex-start;
  min-height: 104px;
}

.brand {
  align-items: center;
  display: flex;
  gap: 14px;
}

.brand img {
  border-radius: 50%;
  height: 82px;
  object-fit: cover;
  width: 82px;
}

.brand span {
  font-size: 1.7rem;
}

nav {
  display: flex;
  font-size: .94rem;
  font-weight: 700;
  gap: 32px;
}

nav a {
  border-bottom: 2px solid transparent;
  padding: 8px 0;
}

nav a:hover,
nav a.active {
  border-bottom-color: var(--gold);
}

.nav-cta,
.btn {
  align-items: center;
  border-radius: 8px;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
}

.nav-cta {
  background: var(--gold);
  color: var(--white);
  padding: 14px 22px;
}

.btn {
  border: 0;
  cursor: pointer;
  font-size: 1rem;
  min-height: 54px;
  padding: 14px 26px;
}

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

.btn-secondary {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
}

.hero {
  background: var(--white);
  padding: 34px 0 22px;
}

.hero-layout {
  align-items: center;
  display: grid;
  gap: 30px;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .62fr);
}

.hero-copy {
  margin: 0;
  max-width: 620px;
  text-align: left;
}

.eyebrow {
  color: var(--gold);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .09em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.hero h1 {
  color: var(--navy);
  font-size: clamp(2.35rem, 4.2vw, 4.35rem);
  letter-spacing: 0;
  line-height: 1.02;
  margin-bottom: 14px;
}

.hero p {
  color: var(--navy);
  font-size: 1.08rem;
  margin: 0;
  max-width: 520px;
}

.hero-image {
  align-self: center;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  justify-self: end;
  max-height: 360px;
  max-width: 470px;
  overflow: hidden;
  width: 100%;
}

.hero-image img {
  aspect-ratio: 1.22 / 1;
  display: block;
  height: auto;
  max-height: 360px;
  object-fit: cover;
  object-position: center 40%;
  width: 100%;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.categories {
  background: var(--white);
  padding: 18px 0 24px;
}

.categories h2 {
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  line-height: 1.1;
  margin: 0 0 18px;
  text-align: center;
}

.category-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(6, 1fr);
}

.category-grid article {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 10px;
  justify-items: center;
  min-height: 118px;
  padding: 18px 12px;
  text-align: center;
}

.category-grid svg {
  color: #111;
  display: block;
  fill: none;
  height: 34px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
  width: 34px;
}

.category-grid h3 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: .98rem;
  line-height: 1.25;
}

.enquiry {
  background: var(--white);
  padding: 30px 0 34px;
}

.form-heading {
  margin: 0 auto 18px;
  max-width: 940px;
}

.form-heading h2,
.trust-panel h2,
.why h2,
.steps h2,
.faq h2,
.final-cta h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.05;
  margin: 0 0 14px;
}

.form-heading p,
.trust-panel p,
.faq p,
.final-cta p {
  color: var(--muted);
  font-size: 1.1rem;
  margin-bottom: 0;
}

form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  margin: 0 auto;
  max-width: 940px;
  padding: clamp(28px, 5vw, 42px);
}

.field-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr 1fr;
}

.field {
  margin-bottom: 16px;
}

label {
  color: var(--navy);
  display: block;
  font-size: .92rem;
  font-weight: 800;
  margin-bottom: 7px;
}

input,
select,
textarea {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--navy);
  font: inherit;
  padding: 15px;
  width: 100%;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184, 115, 25, .14);
  outline: 0;
}

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

.submit-row {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.fine {
  color: var(--muted);
  flex: 1 1 260px;
  font-size: .82rem;
}

.fine a {
  border-bottom: 1px solid var(--gold);
  color: var(--navy);
  font-weight: 700;
}

.trust-panel-section {
  background: var(--cream);
  padding: 28px 0 32px;
}

.trust-panel {
  background: linear-gradient(90deg, rgba(248, 245, 239, .92), var(--white));
  border: 1px solid rgba(184, 115, 25, .42);
  border-left: 6px solid var(--gold);
  border-radius: 8px;
  box-shadow: 0 18px 38px rgba(15, 35, 64, .13);
  margin: 0 auto;
  max-width: 940px;
  padding: 28px 32px;
}

.trust-panel h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
}

.trust-panel strong {
  color: var(--navy);
  display: block;
  margin-top: 10px;
}

.why,
.steps,
.faq,
.final-cta {
  background: var(--white);
  padding: 30px 0;
}

.why h2,
.steps h2,
.faq h2,
.final-cta h2 {
  text-align: center;
}

.icon-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 20px;
}

.icon-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px 18px;
  text-align: center;
}

.icon-grid span {
  color: var(--gold);
  display: block;
  font-size: 1.45rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.icon-grid h3,
.step-grid h3,
.faq h3 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.35;
}

.steps {
  background: var(--cream);
}

.step-grid {
  align-items: stretch;
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  margin: 20px auto 0;
  max-width: 940px;
}

.step-grid article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px 18px;
  text-align: center;
}

.step-number {
  align-items: center;
  background: var(--gold);
  border-radius: 50%;
  color: var(--white);
  display: inline-flex;
  font-weight: 800;
  height: 34px;
  justify-content: center;
  margin-bottom: 12px;
  width: 34px;
}

.step-arrow {
  align-self: center;
  color: var(--gold);
  font-size: 1.4rem;
  font-weight: 800;
}

.faq {
  background: var(--cream);
}

.faq-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 20px;
}

.faq article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
}

.faq h3 {
  color: var(--navy);
  margin-bottom: 8px;
}

.final-cta {
  text-align: center;
}

.final-cta p {
  margin: 0 auto 10px;
  max-width: 650px;
}

.final-cta strong {
  color: var(--navy);
  display: block;
  margin: 0 auto 22px;
}

.site-footer {
  background: var(--navy);
  color: var(--white);
  padding: 22px 0 16px;
}

.footer-row,
.legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-row {
  font-size: .95rem;
  gap: 34px;
}

.legal-links {
  font-size: .86rem;
  gap: 20px;
  margin-top: 14px;
}

.legal-links a {
  border-bottom: 1px solid rgba(255, 255, 255, .35);
  opacity: .9;
  padding-bottom: 2px;
}

.compliance {
  font-size: .82rem;
  line-height: 1.5;
  margin-top: 12px;
  opacity: .85;
  text-align: center;
}

.thanks {
  background: var(--white);
  min-height: calc(100vh - 220px);
  padding: 70px 0 90px;
}

.thanks-card {
  margin: 0 auto;
  max-width: 760px;
  text-align: center;
}

.thanks-card h1 {
  font-size: clamp(2.8rem, 5vw, 5.4rem);
  line-height: .98;
  margin-bottom: 24px;
}

.thanks-card p {
  color: var(--muted);
  font-size: 1.12rem;
  margin: 0 auto 30px;
  max-width: 560px;
}

@media (max-width: 900px) {
  .nav {
    flex-wrap: wrap;
  }

  .nav-cta {
    display: none;
  }

  nav {
    flex-wrap: wrap;
    gap: 16px;
  }

  .hero-layout {
    gap: 22px;
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .form-heading {
    text-align: center;
  }

  .hero p {
    margin: 0 auto;
  }

  .hero-image {
    justify-self: center;
    max-height: 320px;
    max-width: 520px;
  }

  .hero-image img {
    max-height: 320px;
  }

  .icon-grid,
  .faq-grid {
    grid-template-columns: 1fr 1fr;
  }

  .category-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .step-grid {
    grid-template-columns: 1fr;
  }

  .step-arrow {
    transform: rotate(0deg);
  }

}

@media (max-width: 620px) {
  .brand img {
    height: 66px;
    width: 66px;
  }

  .brand span {
    font-size: 1.35rem;
  }

  nav {
    display: none;
  }

  .hero {
    padding: 18px 0 12px;
  }

  .hero-layout {
    align-items: start;
    gap: 12px;
    grid-template-columns: minmax(0, 1fr) 116px;
  }

  .hero-copy,
  .form-heading {
    text-align: left;
  }

  .hero h1 {
    font-size: 2.4rem;
  }

  .hero p,
  .form-heading p,
  .trust-panel p,
  .faq p,
  .final-cta p {
    font-size: 1.04rem;
  }

  .hero p {
    margin: 0;
  }

  .hero-image {
    align-self: start;
    justify-self: end;
    max-height: 148px;
    max-width: 116px;
    width: 116px;
  }

  .hero-image img {
    aspect-ratio: .78 / 1;
    height: 148px;
    max-height: 148px;
    object-position: center 34%;
  }

  .button-row,
  .submit-row {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .field-grid {
    grid-template-columns: 1fr;
  }

  .field {
    margin-bottom: 12px;
  }

  input,
  select,
  textarea {
    padding: 12px;
  }

  textarea {
    min-height: 92px;
  }

  .enquiry {
    padding: 22px 0 26px;
  }

  form,
  .trust-panel,
  .faq article,
  .icon-grid article,
  .step-grid article {
    border-radius: 8px;
    padding: 16px;
  }

  .categories {
    padding: 16px 0 20px;
  }

  .category-grid {
    gap: 10px;
    grid-template-columns: 1fr 1fr;
  }

  .category-grid article {
    min-height: 88px;
    padding: 12px 8px;
  }

  .category-grid svg {
    height: 30px;
    width: 30px;
  }

  .trust-panel-section,
  .why,
  .steps,
  .faq,
  .final-cta {
    padding: 20px 0;
  }

  .trust-panel {
    border-left-width: 4px;
  }

  .form-heading h2,
  .trust-panel h2,
  .why h2,
  .steps h2,
  .faq h2,
  .final-cta h2 {
    font-size: 2rem;
  }

  .icon-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    padding: 26px 0 20px;
  }

  .footer-row,
  .legal-links {
    display: grid;
    gap: 10px;
    text-align: center;
  }

  .compliance {
    font-size: .76rem;
    margin-top: 18px;
  }
}
