﻿:root {
  color-scheme: light;
  --ink: #f7eeee;
  --navy: #031c32;
  --navy-soft: #0a2945;
  --pink: #EBCACA;
  --pink-deep: #EBCACA;
  --panel: #08243d;
  --panel-soft: #102f4a;
  --white: #fff7f7;
  --muted: rgba(255, 247, 247, 0.72);
  --line: rgba(235, 202, 202, 0.28);
  --green: #5d7164;
  --shadow: 0 24px 64px rgba(0, 0, 0, 0.22);
  --page-width: min(1500px, calc(100% - clamp(24px, 4vw, 72px)));
  --section-gap: clamp(42px, 6vw, 86px);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--navy);
  color: var(--ink);
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 18px clamp(12px, 2.4vw, 34px);
  background: rgba(3, 28, 50, 0.88);
  border-bottom: 1px solid rgba(235, 202, 202, 0.24);
  backdrop-filter: blur(18px);
}

.brand,
.nav-links,
.hero-actions,
.contact {
  display: flex;
  align-items: center;
}

.brand {
  min-width: 0;
  width: 176px;
  min-height: 54px;
  font-weight: 800;
  color: var(--pink);
}

.brand-logo {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.nav-links {
  gap: clamp(14px, 1.7vw, 26px);
  color: var(--pink);
  font-size: 1.18rem;
  font-weight: 800;
}

.nav-links a {
  padding: 8px 0;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover {
  border-color: currentColor;
}

.nav-links a[aria-current="page"] {
  border-color: currentColor;
  font-weight: 850;
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: end;
  padding: 168px clamp(12px, 3vw, 46px) 58px;
  overflow: hidden;
  isolation: isolate;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-image {
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(24, 36, 47, 0.88) 0%, rgba(24, 36, 47, 0.66) 46%, rgba(235, 202, 202, 0.2) 80%),
    linear-gradient(0deg, rgba(24, 36, 47, 0.22), rgba(24, 36, 47, 0.04));
}

.hero-content {
  width: min(760px, 100%);
  color: var(--white);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
}

h1 {
  max-width: 11ch;
  margin-bottom: 22px;
  color: var(--pink);
  font-size: clamp(3.3rem, 7.4vw, 7.7rem);
  line-height: 0.9;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4.2vw, 4.5rem);
  line-height: 0.98;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.28rem;
  line-height: 1.1;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 30px;
  color: rgba(255, 253, 249, 0.88);
  font-size: clamp(1.04rem, 2vw, 1.28rem);
  line-height: 1.58;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
}

.button.primary {
  background: var(--pink);
  color: var(--navy);
}

.button.secondary {
  border-color: var(--pink);
  color: var(--pink);
}

.button:hover,
.service-card:hover,
.text-link:hover {
  transform: translateY(-2px);
}

.text-link {
  display: inline-flex;
  margin-top: 8px;
  color: var(--pink);
  font-weight: 850;
  border-bottom: 1px solid currentColor;
  transition: transform 180ms ease;
}

.welcome-panel {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(24px, 5vw, 58px);
  width: var(--page-width);
  margin: var(--section-gap) auto 0;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.welcome-panel h2 {
  margin-bottom: 18px;
  color: var(--pink);
  font-size: clamp(2.1rem, 4.2vw, 4.35rem);
}

.welcome-panel > div > p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.7;
}

.promise-list {
  display: grid;
  gap: 12px;
}

.promise-list article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--navy-soft);
}

.promise-list span {
  display: block;
  margin-bottom: 8px;
  color: var(--pink);
  font-size: 1.05rem;
  font-weight: 850;
}

.promise-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.service-cards {
  position: relative;
  z-index: 2;
  display: grid;
  width: var(--page-width);
  margin: var(--section-gap) auto 0;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding: 14px;
  border-radius: 14px;
  background: var(--pink);
}

.service-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
  transition: transform 180ms ease;
}

.service-card span {
  margin-bottom: auto;
  color: var(--pink-deep);
  font-weight: 850;
}

.service-card h2 {
  margin-bottom: 14px;
  font-size: clamp(1.85rem, 3vw, 3rem);
}

.service-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.6;
}

.first-time {
  background: var(--panel-soft);
  color: var(--pink);
}

.first-time p {
  color: rgba(255, 253, 249, 0.78);
}

.buy-to-let {
  background: var(--panel);
  color: var(--pink);
}

.remortgage {
  background: var(--panel);
  color: var(--pink);
}

.about,
.reviews,
.contact {
  width: var(--page-width);
  margin: 0 auto;
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 1fr);
  gap: clamp(30px, 6vw, 86px);
  padding: var(--section-gap) 0 0;
}

.about,
.reviews,
.contact {
  background: var(--navy);
}

.about-copy {
  padding-top: 8px;
}

.about-copy p,
.review-card p {
  color: var(--muted);
  line-height: 1.7;
}

.about-copy p:last-child {
  margin-bottom: 0;
}

.reviews {
  padding: var(--section-gap) 0 0;
}

.review-card {
  position: relative;
  padding: clamp(30px, 5vw, 54px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.review-card h2 {
  max-width: 780px;
  margin-bottom: 18px;
}

.review-card p:last-child {
  max-width: 700px;
  margin-bottom: 0;
}

.shortcode-preview {
  max-width: 720px;
  margin-top: 22px;
  padding: 22px;
  border: 1px dashed var(--pink);
  border-radius: 8px;
  background: rgba(235, 202, 202, 0.08);
  color: var(--pink);
  font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", monospace;
  font-size: 0.95rem;
}

.reviews-page {
  display: grid;
  gap: 22px;
  width: var(--page-width);
  margin: 0 auto;
  padding: clamp(54px, 8vw, 96px) 0 0;
}

.reviews-intro,
.reviews-widget,
.review-highlights article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.reviews-intro {
  padding: clamp(28px, 5vw, 54px);
}

.reviews-intro h2 {
  max-width: 760px;
  margin-bottom: 18px;
  color: var(--pink);
}

.reviews-intro p {
  max-width: 780px;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.7;
}

.reviews-widget {
  padding: clamp(24px, 4vw, 44px);
}

.reviews-widget .shortcode-preview {
  max-width: none;
  margin-top: 0;
}

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

.review-highlights article {
  padding: 24px;
}

.review-highlights span {
  display: block;
  margin-bottom: 10px;
  color: var(--pink);
  font-size: 1.15rem;
  font-weight: 850;
}

.review-highlights p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.6;
}

.reviews-cta {
  padding-top: clamp(54px, 8vw, 96px);
}

.contact {
  justify-content: space-between;
  gap: 28px;
  padding: var(--section-gap) 0;
}

.contact h2 {
  max-width: 790px;
}

.contact .button {
  flex: 0 0 auto;
  border-color: var(--pink);
  background: var(--pink);
  color: var(--navy);
}

.page-hero {
  width: var(--page-width);
  margin: 0 auto;
  padding: clamp(126px, 16vw, 190px) 0 clamp(54px, 8vw, 86px);
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  max-width: 920px;
  margin-bottom: 0;
  color: var(--pink);
  font-size: clamp(3.1rem, 7vw, 7rem);
}

.about-profile {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(300px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  width: var(--page-width);
  margin: 0 auto;
  padding: clamp(54px, 8vw, 96px) 0 clamp(80px, 10vw, 132px);
  align-items: start;
}

.profile-image {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.profile-image img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.profile-copy {
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.profile-copy h2 {
  margin-bottom: 22px;
  color: var(--pink);
  font-size: clamp(2.2rem, 4vw, 4rem);
}

.profile-copy p {
  color: var(--muted);
  line-height: 1.72;
}

.profile-copy .button {
  margin-top: 8px;
}

.contact-page {
  display: grid;
  grid-template-columns: minmax(320px, 1.1fr) minmax(300px, 0.9fr);
  gap: clamp(18px, 3vw, 34px);
  width: var(--page-width);
  margin: 0 auto;
  padding: clamp(54px, 8vw, 96px) 0 clamp(80px, 10vw, 132px);
  align-items: stretch;
}

.booking-panel,
.contact-panel {
  padding: clamp(22px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.panel-heading {
  margin-bottom: 24px;
}

.panel-heading h2 {
  color: var(--pink);
  font-size: clamp(2rem, 3.6vw, 3.8rem);
}

.booking-frame {
  height: min(680px, 78vh);
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--navy);
}

.booking-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--pink);
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid transparent;
  border-radius: 8px;
  background: var(--pink);
  color: var(--navy);
  font: inherit;
  padding: 13px 14px;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--white);
  outline-offset: 2px;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.contact-form .button {
  width: min(240px, 100%);
  border: 0;
  cursor: pointer;
}

.services-page {
  display: grid;
  gap: 18px;
  width: var(--page-width);
  margin: 0 auto;
  padding: clamp(54px, 8vw, 96px) 0 clamp(80px, 10vw, 132px);
}

.service-box-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-box {
  display: grid;
  grid-template-rows: 280px 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.service-box-image {
  background-position: center;
  background-size: cover;
  border-bottom: 1px solid var(--line);
}

.first-time-service .service-box-image {
  background-image:
    linear-gradient(rgba(3, 28, 50, 0.1), rgba(3, 28, 50, 0.28)),
    url("assets/keys-handover.jpeg");
  background-position: 50% 45%;
}

.home-mover-service .service-box-image {
  background-image:
    linear-gradient(rgba(3, 28, 50, 0.08), rgba(3, 28, 50, 0.3)),
    url("assets/happy-homeowners.jpg");
  background-position: 50% 72%;
}

.remortgage-service .service-box-image {
  background-image:
    linear-gradient(rgba(3, 28, 50, 0.08), rgba(3, 28, 50, 0.3)),
    url("assets/new-build-homes.jpg");
  background-position: 50% 50%;
}

.protection-service .service-box-image {
  background-image:
    linear-gradient(rgba(3, 28, 50, 0.08), rgba(3, 28, 50, 0.3)),
    url("https://lovejoyfinancialservices.co.uk/wp-content/uploads/2025/08/juliane-liebermann-O-RKu3Aqnsw-unsplash.jpg");
  background-position: 27% 47%;
}

.service-detail {
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 4vw, 38px);
}

.service-detail h2 {
  margin-bottom: 20px;
  color: var(--pink);
}

.service-detail p {
  color: var(--muted);
  line-height: 1.7;
}

.service-detail .button {
  width: fit-content;
  margin: auto 0 20px;
}

.inline-warning {
  margin: 0;
  padding: 12px 14px;
  border: 2px solid var(--pink);
  border-radius: 8px;
  color: var(--pink) !important;
  font-size: 0.86rem;
  font-weight: 850;
  line-height: 1.35 !important;
}

.protection-service .service-detail::after {
  content: "";
  display: block;
  min-height: 62px;
}

.site-footer {
  background: var(--navy);
  color: var(--pink);
}

.footer-inner {
  width: var(--page-width);
  margin: 0 auto;
  padding: clamp(34px, 6vw, 58px) 0;
  text-align: center;
}

.footer-tagline {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.4rem, 3vw, 2.35rem);
  line-height: 1.05;
}

.footer-logo {
  display: block;
  width: min(230px, 70vw);
  height: auto;
  margin: 0 auto 18px;
  border-radius: 4px;
}

.footer-nav,
.social-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.footer-nav {
  gap: clamp(14px, 3vw, 32px);
  padding: 20px 0;
  border-top: 1px solid rgba(235, 202, 202, 0.34);
  border-bottom: 1px solid rgba(235, 202, 202, 0.34);
  font-size: 1.02rem;
  font-weight: 750;
}

.social-links {
  gap: 12px;
  margin: 22px 0;
}

.social-links a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid rgba(235, 202, 202, 0.5);
  border-radius: 999px;
  font-size: 0.9rem;
}

.risk-warning {
  max-width: 880px;
  margin: 18px auto 28px;
  padding: 11px 18px;
  border: 3px solid var(--pink);
  border-radius: 999px;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 850;
  line-height: 1.25;
}

.footer-disclosure {
  max-width: 1060px;
  margin: 0 auto;
  font-size: 0.82rem;
  line-height: 1.55;
}

.footer-disclosure p {
  margin-bottom: 10px;
}

.footer-disclosure p:last-child {
  margin-bottom: 0;
}

@media (max-width: 820px) {
  .site-header {
    position: absolute;
  }

  .brand {
    width: 138px;
    min-height: 44px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 88svh;
    padding-top: 136px;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(24, 36, 47, 0.9), rgba(24, 36, 47, 0.46)),
      linear-gradient(0deg, rgba(24, 36, 47, 0.28), rgba(24, 36, 47, 0.06));
  }

  h1 {
    max-width: 10ch;
  }

  .service-cards,
  .welcome-panel,
  .about,
  .about-profile,
  .contact-page,
  .service-box-grid,
  .contact {
    display: grid;
    grid-template-columns: 1fr;
  }

  .welcome-panel {
    margin-top: var(--section-gap);
    padding: 24px;
  }

  .service-card {
    min-height: 245px;
  }

  .booking-frame {
    height: 600px;
    min-height: 520px;
  }

  .contact {
    align-items: start;
  }

  .risk-warning {
    border-radius: 18px;
  }
}

@media (max-width: 470px) {
  .hero-actions,
  .button {
    width: 100%;
  }

  h1 {
    font-size: 3.05rem;
  }
}





