:root {
  --navy: #10243f;
  --navy2: #0a172a;
  --cream: #f8f2e8;
  --cream2: #fffaf1;
  --gold: #b98a3d;
  --gold2: #e8d0a8;
  --ink: #18202b;
  --muted: #657184;
  --line: #e2d5c4;
  --white: #fff;
  --shadow: 0 24px 70px rgba(28, 30, 36, 0.12);
  --shadow-soft: 0 18px 44px rgba(16, 36, 63, 0.1);
  --radius: 28px;
  --max: 1180px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--ink);
  background:
    radial-gradient(
      circle at 12% 4%,
      rgba(185, 138, 61, 0.16),
      transparent 26rem
    ),
    radial-gradient(
      circle at 88% 16%,
      rgba(16, 36, 63, 0.08),
      transparent 24rem
    ),
    linear-gradient(180deg, #fffaf3 0%, #f8f2e8 46%, #fffaf3 100%);
}
body:before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.5;
  background-image:
    linear-gradient(rgba(16, 36, 63, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 36, 63, 0.03) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black, transparent 75%);
}
.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  background: var(--navy);
  color: #fff;
  padding: 10px 14px;
  border-radius: 10px;
  z-index: 100;
}
.skip-link:focus {
  left: 12px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  max-width: calc(var(--max) + 64px);
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  backdrop-filter: blur(18px);
  background: rgba(255, 250, 243, 0.9);
  border-bottom: 1px solid rgba(226, 213, 196, 0.8);
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.55);
}
.site-header.scrolled {
  box-shadow: 0 12px 32px rgba(22, 28, 36, 0.08);
}
.brand {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  color: var(--ink);
  text-decoration: none;
}
.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: white;
  font-family: Georgia, serif;
  font-size: 26px;
  background: linear-gradient(145deg, var(--navy), #24476e);
  box-shadow: 0 12px 28px rgba(16, 36, 63, 0.2);
}
.brand strong,
.brand small {
  display: block;
}
.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
}
.brand small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav {
  display: flex;
  gap: 22px;
  align-items: center;
}
.nav a {
  position: relative;
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  transition:
    color 0.2s ease,
    opacity 0.2s ease;
}
.nav a:hover {
  color: var(--navy);
}
.nav a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), rgba(185, 138, 61, 0.35));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}
.nav a:hover:after,
.nav a[aria-current="page"]:after {
  transform: scaleX(1);
}
.nav a[aria-current="page"] {
  color: var(--navy);
}
.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--cream2);
}
.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--navy);
  margin: 4px auto;
}
.section-shell {
  max-width: var(--max);
  margin: 0 auto;
  padding: 94px 32px;
  position: relative;
}
.hero {
  padding-top: 78px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.75fr;
  gap: 48px;
  align-items: center;
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
h1,
h2,
h3 {
  margin-top: 0;
}
h1 {
  max-width: 900px;
  margin-bottom: 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(46px, 6.5vw, 84px);
  line-height: 0.96;
  letter-spacing: -0.045em;
  color: var(--navy2);
}
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 4.4vw, 54px);
  line-height: 1.03;
  letter-spacing: -0.035em;
  color: var(--navy2);
}
h3 {
  font-size: 21px;
  line-height: 1.2;
  color: var(--navy);
}
p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}
.lead {
  max-width: 760px;
  font-size: 21px;
  color: #4d5a6b;
}
.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 950;
  letter-spacing: 0.01em;
  border: 0;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}
.button:hover,
.card:hover,
.contact-link:hover {
  transform: translateY(-2px);
}
.button:focus-visible,
.nav a:focus-visible,
.contact-link:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(185, 138, 61, 0.35);
  outline-offset: 3px;
}
.primary {
  color: white;
  background: linear-gradient(145deg, var(--navy), #24476e);
  box-shadow: 0 14px 34px rgba(16, 36, 63, 0.22);
}
.primary:hover {
  box-shadow: 0 18px 42px rgba(16, 36, 63, 0.28);
}
.secondary {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
}
.secondary:hover {
  background: rgba(255, 255, 255, 0.92);
}
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}
.trust-strip span {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(185, 138, 61, 0.28);
  color: #5c4c32;
  background: rgba(255, 250, 241, 0.72);
  font-size: 14px;
  font-weight: 850;
}
.hero-panel {
  overflow: hidden;
  border: 1px solid rgba(226, 213, 196, 0.9);
  border-radius: 34px;
  background: rgba(255, 250, 241, 0.86);
  box-shadow: var(--shadow);
  position: relative;
}
.hero-panel:after {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 120px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.3),
    rgba(255, 255, 255, 0)
  );
  pointer-events: none;
}
.profile-photo {
  display: block;
  width: 100%;
  aspect-ratio: 1/1.12;
  object-fit: cover;
  background: #10243f;
}
.panel-content {
  padding: 30px;
}
.panel-label {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.panel-content h2 {
  margin-bottom: 10px;
  font-size: 34px;
}
.quick-facts {
  margin: 26px 0 0;
}
.quick-facts div {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 16px;
  padding: 15px 0;
  border-top: 1px solid var(--line);
}
dt {
  color: var(--gold);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}
dd {
  margin: 0;
  color: var(--ink);
  font-weight: 850;
}
.credibility-band {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.credibility-band div {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 12px 34px rgba(22, 28, 36, 0.06);
}
.credibility-band strong {
  display: block;
  color: var(--navy);
  font-family: Georgia, serif;
  font-size: 28px;
}
.credibility-band span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}
.two-column {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: start;
}
.section-heading.centered {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}
.bullet-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.bullet-grid div,
.method-list div {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.56);
  box-shadow: 0 10px 28px rgba(16, 36, 63, 0.04);
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.cards.long {
  grid-template-columns: repeat(3, 1fr);
}
.card {
  display: block;
  min-height: 250px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 241, 0.84);
  box-shadow: 0 18px 48px rgba(22, 28, 36, 0.07);
  text-decoration: none;
  color: inherit;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}
.card:hover {
  border-color: rgba(185, 138, 61, 0.35);
  box-shadow: 0 22px 54px rgba(16, 36, 63, 0.12);
}
.card-number {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  border-radius: 14px;
  color: white;
  background: linear-gradient(145deg, var(--navy), #24476e);
  font-weight: 950;
}
.approach-card,
.contact-card,
.contact-band {
  padding: 44px;
  border: 1px solid rgba(226, 213, 196, 0.94);
  border-radius: 36px;
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.82),
      rgba(255, 250, 241, 0.74)
    ),
    radial-gradient(
      circle at top right,
      rgba(185, 138, 61, 0.16),
      transparent 22rem
    );
  box-shadow: var(--shadow);
}
.method-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 36px;
}
.reviews-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
  align-items: start;
}
.review-note {
  padding: 30px;
  border-radius: 28px;
  color: white;
  background: linear-gradient(145deg, var(--navy), #24476e);
  box-shadow: 0 20px 55px rgba(16, 36, 63, 0.18);
}
.review-note h2 {
  color: white;
}
.review-note p {
  color: rgba(255, 255, 255, 0.9);
}
.review-note .microcopy {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
}
.review-stat {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.review-stat strong {
  color: var(--gold2);
  font-size: 20px;
  letter-spacing: 0;
  text-transform: none;
}
.testimonial-grid {
  display: grid;
  gap: 18px;
}
.testimonial {
  margin: 0;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255, 250, 241, 0.84);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.testimonial:before {
  content: "“";
  position: absolute;
  top: 10px;
  right: 20px;
  color: rgba(185, 138, 61, 0.18);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 120px;
  line-height: 1;
}
.testimonial p {
  margin-top: 0;
  margin-bottom: 18px;
  color: var(--ink);
  font-family: Georgia, serif;
  font-size: 22px;
  line-height: 1.45;
  position: relative;
  z-index: 1;
}
.testimonial footer {
  color: var(--gold);
  font-weight: 950;
  position: relative;
  z-index: 1;
}
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}
details {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 250, 241, 0.82);
  box-shadow: 0 12px 34px rgba(22, 28, 36, 0.05);
}
summary {
  cursor: pointer;
  padding: 22px 24px;
  color: var(--navy);
  font-weight: 950;
  list-style: none;
}
summary::-webkit-details-marker {
  display: none;
}
details p {
  margin: 0;
  padding: 0 24px 24px;
}
.contact-band {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
}
.contact-band p {
  max-width: 650px;
}
.contact-actions.standalone {
  margin-top: 0;
  display: grid;
}
.contact-link {
  display: block;
  padding: 22px;
  border: 1px solid rgba(16, 36, 63, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--navy);
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(16, 36, 63, 0.05);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}
.contact-link:hover {
  border-color: rgba(185, 138, 61, 0.35);
  box-shadow: 0 16px 34px rgba(16, 36, 63, 0.1);
}
.contact-link span {
  display: block;
  margin-bottom: 6px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.contact-link strong {
  font-size: 20px;
}
.contact-link.non-link {
  cursor: default;
}
.contact-link.non-link:hover {
  transform: none;
}
.contact-page-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 32px;
  align-items: start;
}
.enquiry-form {
  display: grid;
  gap: 16px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 250, 241, 0.84);
  box-shadow: var(--shadow);
}
.contact-note {
  margin: 18px 0 0;
  font-size: 15px;
  line-height: 1.7;
}
.contact-hint {
  display: block;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}
label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-weight: 850;
}
input,
select,
textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: white;
  color: var(--ink);
  font: inherit;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}
input:focus,
select:focus,
textarea:focus {
  border-color: rgba(185, 138, 61, 0.55);
  box-shadow: 0 0 0 4px rgba(185, 138, 61, 0.12);
}
.process-list {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
  list-style: none;
}
.process-list li {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.6);
}
.process-list strong,
.process-list span {
  display: block;
}
.process-list span {
  margin-top: 6px;
  color: var(--muted);
}
.tick-list {
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
  list-style: none;
}
.tick-list li {
  position: relative;
  padding-left: 30px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}
.tick-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 950;
}
.signature-list {
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
  list-style: none;
}
.signature-list li {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.6);
  color: var(--muted);
}
.signature-list strong {
  display: block;
  margin-bottom: 4px;
  color: var(--navy);
}
.inline-photo {
  width: 100%;
  border-radius: 28px;
  box-shadow: var(--shadow);
}
.page-hero {
  padding-bottom: 40px;
}
.site-footer {
  max-width: calc(var(--max) + 64px);
  margin: 0 auto;
  padding: 34px 32px 48px;
  display: flex;
  justify-content: space-between;
  gap: 28px;
  border-top: 1px solid var(--line);
}
.site-footer p {
  margin: 6px 0 0;
  font-size: 14px;
}
.footer-links {
  display: flex;
  gap: 18px;
}
.site-footer a {
  color: var(--navy);
  font-weight: 950;
}
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 {
  transition-delay: 0.08s;
}
.delay-2 {
  transition-delay: 0.16s;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .button:hover,
  .card:hover,
  .contact-link:hover {
    transform: none;
  }
}
@media (max-width: 1020px) {
  .hero-grid,
  .two-column,
  .reviews-layout,
  .contact-page-grid,
  .contact-band {
    grid-template-columns: 1fr;
  }
  .credibility-band,
  .method-list,
  .cards,
  .cards.long {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 720px) {
  .site-header {
    padding: 14px 18px;
  }
  .menu-button {
    display: block;
  }
  .nav {
    position: absolute;
    top: 74px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(255, 250, 243, 0.98);
    box-shadow: var(--shadow);
  }
  .nav.open {
    display: flex;
  }
  .nav a {
    padding: 14px;
  }
  .section-shell {
    padding: 64px 20px;
  }
  .hero-grid {
    gap: 28px;
  }
  h1 {
    font-size: clamp(42px, 13vw, 62px);
  }
  .credibility-band,
  .cards,
  .cards.long,
  .method-list,
  .bullet-grid {
    grid-template-columns: 1fr;
    padding-left: 20px;
    padding-right: 20px;
  }
  .approach-card,
  .contact-card,
  .contact-band {
    padding: 28px;
    border-radius: 28px;
  }
  .site-footer {
    flex-direction: column;
    padding: 30px 20px 42px;
  }
}
