/* ================================================
   CUSTOM PROPERTIES
   ================================================ */
:root {
  --gold:        #C9960E;
  --plum:        #4D1040;
  --plum-mid:    #7B2A55;
  --cream:       #FAF3E0;
  --yellow:      #F0B52A;
  --charcoal:    #3A3A3A;
  --white:       #ffffff;
  --text-dark:   #2C1824;
  --text-body:   #5A4A52;
  --radius:      12px;
  --shadow:      0 2px 20px rgba(0,0,0,0.08);
}

/* ================================================
   RESET & BASE  (mobile-first)
   ================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  { font-family: 'Inter', sans-serif; font-size: 18px; line-height: 1.6; color: var(--text-body); background: var(--white); }
img   { max-width: 100%; display: block; }
a     { text-decoration: none; color: inherit; }
ul    { list-style: none; }

/* WordPress admin bar compensation */
.admin-bar .site-header { top: 32px; }
@media screen and (max-width: 782px) { .admin-bar .site-header { top: 46px; } }

/* Screen-reader only utility */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.container--narrow { max-width: 800px; }

/* ================================================
   BUTTONS
   ================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  background: var(--plum);
  color: var(--white);
  border: 2px solid var(--plum);
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 17px;
  cursor: pointer;
  transition: background .2s, border-color .2s;
}
.btn-primary:hover { background: #3a0c30; border-color: #3a0c30; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  background: var(--white);
  color: var(--plum);
  border: 2px solid var(--plum);
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 17px;
  cursor: pointer;
  transition: background .2s, color .2s;
}
.btn-outline:hover { background: var(--plum); color: var(--white); }

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.6);
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 17px;
  cursor: pointer;
  transition: background .2s, border-color .2s;
}
.btn-outline-white:hover { background: rgba(255,255,255,.15); border-color: var(--white); }

.btn-outline-plum {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  background: transparent;
  color: var(--plum);
  border: 2px solid var(--plum);
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 17px;
  cursor: pointer;
  transition: background .2s, color .2s;
  text-decoration: none;
}
.btn-outline-plum:hover { background: var(--plum); color: var(--white); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--plum-mid);
  font-weight: 500;
  font-size: 16px;
  transition: gap .2s;
}
.link-arrow:hover { gap: 10px; }

/* ================================================
   HEADER
   ================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--white);
  box-shadow: 0 1px 0 rgba(0,0,0,.08);
  transition: box-shadow .3s;
}
.site-header.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,.12); }

/* --- utility bar --- */
.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 20px 12px 20px;
  max-width: 1200px;
  margin: 0 auto;
  gap: 16px;
}

/* WordPress wp_nav_menu outputs a <ul> inside .util-nav */
.util-nav { display: none; flex-shrink: 0; }
.util-nav-list { display: flex; gap: 24px; list-style: none; }
.util-nav-list li a { font-size: 16px; color: var(--text-body); transition: color .2s; }
.util-nav-list li a:hover { color: var(--plum); }
@media (min-width: 900px) { .util-nav { display: flex; } }

/* --- logo --- */
.logo {
	display: flex;
	flex-direction: column;
	align-items: center;
	line-height: 1;
	flex-shrink: 0;
	position: relative;
	width: 200px;
	overflow: visible;
	height: 50px;
}
.logo a { display: flex; flex-direction: column; align-items: center; }
.logo-top { display: flex; align-items: center; gap: 5px; }
.logo-script { font-family: 'Dancing Script', cursive; font-size: 42px; color: var(--gold); line-height: 1; }
.logo-rings { display: flex; align-items: center; }
.logo-rings svg { width: 28px; height: 14px; }
.logo-sub { font-size: 10.5px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--plum); margin-top: 1px; }

/* WordPress custom logo */
.logo .custom-logo-link {
	display: block;
	position: absolute;
	top: -25px;
	left: 0;
	z-index: 99999;
}
.logo .custom-logo { max-height: 95px; width: auto; }

@media (min-width: 640px) { .logo-script { font-size: 48px; } }

/* --- header right --- */
.header-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

.btn-phone {
  display: none;
  align-items: center;
  gap: 7px;
  padding: 9px 16px;
  border: 2px solid var(--plum);
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  color: var(--plum);
  white-space: nowrap;
  transition: background .2s, color .2s;
}
.btn-phone:hover { background: var(--plum); color: var(--white); }
@media (min-width: 640px) { .btn-phone { display: flex; } }

.btn-contact-sm {
  display: flex;
  align-items: center;
  padding: 9px 16px;
  background: var(--plum);
  color: var(--white);
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  white-space: nowrap;
  transition: background .2s;
}
.btn-contact-sm:hover { background: #3a0c30; }

/* --- hamburger --- */
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--plum); border-radius: 2px; transition: all .3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (min-width: 1024px) { .nav-toggle { display: none; } }

/* --- main nav --- */
.main-nav {
  border-top: 1px solid rgba(0,0,0,.06);
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.main-nav.open { max-height: 600px; }
@media (min-width: 1024px) { .main-nav { max-height: none; overflow: visible; } }

.main-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
@media (min-width: 1024px) {
  .main-nav-inner { flex-direction: row; align-items: center; justify-content: center; gap: 4px; }
}

.nav-item { position: relative; }

.nav-item > a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 13px 16px;
  font-size: 17px;
  font-weight: 600;
  color: var(--text-dark);
  transition: color .2s;
  white-space: nowrap;
  cursor: pointer;
  font-weight: 400;
}
.nav-item > a:hover,
.nav-item.current > a { color: var(--plum); }

.nav-arrow { font-size: 13px; transition: transform .2s; display: inline-block; }
.nav-item.open > a .nav-arrow { transform: rotate(180deg); }

/* --- dropdown panel --- */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
  padding: 8px 0;
  z-index: 300;
  list-style: none;
}
.dropdown-menu.open { display: block; }

.dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-dark);
  transition: background .15s, color .15s;
  white-space: nowrap;
}
.dropdown-menu li a:hover { background: var(--cream); color: var(--plum); }

@media (max-width: 1023px) {
  .dropdown-menu {
    position: static;
    box-shadow: none;
    border-radius: 0;
    padding: 0 0 4px 16px;
    border-left: 2px solid var(--cream);
    margin: 0 16px 4px;
  }
  .dropdown-menu li a { padding: 8px 12px; }
}

/* ================================================
   HERO
   ================================================ */
.hero { position: relative; overflow: hidden; }

/* Background set via inline style from PHP template */
.hero-bg {
  position: absolute;
  inset: 0;
  background-color: #c4a882; /* fallback colour */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(255,255,255,.82)  0%,
    rgba(255,255,255,.60) 45%,
    rgba(255,255,255,.18) 75%,
    rgba(255,255,255,.05) 100%
  );
}

.hero-upper {
  position: relative;
  z-index: 2;
  padding: 56px 20px 48px;
  max-width: 1200px;
  margin: 0 auto;
}

body.home .hero-text { max-width: 620px; }

.hero-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 5vw, 56px);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: clamp(17px, 2vw, 19px);
  color: var(--text-dark);
  line-height: 1.75;
  margin-bottom: 32px;
}

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

.hero-lower-inner { max-width: 620px; margin: 30px 0 0 0; }

.hero-lower-inner p {
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 10px;
}

/* ================================================
   SCROLLING TRUST TICKER
   ================================================ */
.trust-bar {
  background: var(--cream);
  overflow: hidden;
  padding: 14px 0;
}

.trust-ticker {
  display: flex;
  white-space: nowrap;
  animation: ticker-scroll 30s linear infinite;
}

.trust-bar:hover .trust-ticker { animation-play-state: paused; }

@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-33.333%); }
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 40px;
  font-size: 15px;
  color: var(--text-body);
  flex-shrink: 0;
}
.trust-item svg { color: var(--plum-mid); flex-shrink: 0; }

/* ================================================
   PROFESSIONALS BANNER (static)
   ================================================ */
.professionals-bar {
  background: var(--yellow);
  padding: 18px 20px;
  text-align: center;
}

.professionals-bar p {
  font-size: 17px;
  font-weight: 500;
  color: var(--plum);
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ================================================
   ABOUT VICKY
   ================================================ */
.about { padding: 72px 20px; }

.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

@media (min-width: 768px) {
  .about-inner { flex-direction: row; align-items: flex-start; gap: 64px; }
}

.about-photo { width: 100%; max-width: 300px; flex-shrink: 0; }

.about-photo img {
  width: 100%;
  border-radius: 14px;
  object-fit: cover;
  aspect-ratio: 4/5;
  height: auto;
}

.about-copy h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.about-copy p {
  font-size: 17px;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 18px;
}

/* ================================================
   SERVICES
   ================================================ */
.services { background: var(--cream); padding: 72px 20px; }

.services-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 640px) { .services-grid { grid-template-columns: 1fr 1fr; } }

.service-card {
  background: var(--white);
  border-radius: 18px;
  padding: 32px;
  box-shadow: var(--shadow);
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 13px;
  background: #EDE3EA;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--plum-mid);
  margin-bottom: 20px;
}

.service-card h3 { font-size: 19px; font-weight: 700; color: var(--text-dark); margin-bottom: 5px; }
.service-card .sub { font-size: 16px; color: var(--plum-mid); font-weight: 500; margin-bottom: 14px; }
.service-card p { font-size: 16px; color: var(--text-body); line-height: 1.75; margin-bottom: 22px; }

/* ================================================
   MORTGAGE CAPACITY
   ================================================ */
.capacity { padding: 72px 20px; }

.capacity-card {
  max-width: 820px;
  margin: 0 auto;
  background: var(--plum);
  border-radius: 20px;
  padding: 48px 40px;
  color: var(--white);
  box-shadow: 0 8px 40px rgba(77,16,64,.22);
}

@media (max-width: 480px) { .capacity-card { padding: 36px 24px; } }

.capacity-card h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  margin-bottom: 20px;
}

.capacity-card p { font-size: 17px; line-height: 1.8; opacity: .9; margin-bottom: 16px; }
.capacity-card .link-arrow { color: rgba(255,255,255,.75); margin-top: 4px; }
.capacity-card .link-arrow:hover { color: var(--white); }

/* ================================================
   TESTIMONIALS
   ================================================ */
.testimonials { background: var(--cream); padding: 72px 20px; text-align: center; }

.section-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.section-sub {
  font-size: 17px;
  color: var(--text-body);
  line-height: 1.65;
  max-width: 520px;
  margin: 0 auto 44px;
}

.t-carousel { position: relative; max-width: 680px; margin: 0 auto; }

.t-card {
  background: var(--white);
  border-radius: 18px;
  padding: 40px 48px;
  box-shadow: var(--shadow);
}
@media (max-width: 480px) { .t-card { padding: 32px 24px; } }

.t-stars { display: flex; justify-content: center; gap: 4px; margin-bottom: 18px; }
.t-stars span { font-size: 24px; color: var(--gold); }
.t-stars span.t-star-empty { opacity: 0.25; }

.t-quote { font-size: 18px; color: var(--text-dark); line-height: 1.75; font-style: italic; margin-bottom: 18px; }
.t-author { font-size: 16px; color: var(--plum-mid); font-weight: 500; }

.t-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid rgba(0,0,0,.1);
  cursor: pointer;
  font-size: 20px;
  color: var(--plum-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0,0,0,.08);
  transition: box-shadow .2s;
}
.t-btn:hover { box-shadow: 0 4px 16px rgba(0,0,0,.14); }
.t-btn.prev { left: -19px; }
.t-btn.next { right: -19px; }

.t-leave { display: inline-block; margin-top: 28px; color: var(--plum-mid); font-size: 16px; font-weight: 500; }
.t-leave:hover { color: var(--plum); }

/* ================================================
   BLOG
   ================================================ */
.blog:not(body) { padding: 72px 20px; }
.blog-inner { max-width: 1200px; margin: 0 auto; }
.blog-inner .section-heading { text-align: center; margin-bottom: 44px; }

.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-top: 40px;
}
@media (min-width: 640px)  { .blog-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }

.blog-card { display: block; }

.blog-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 14px;
  background: #d4c0b4;
}
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.blog-card:hover .blog-img img { transform: scale(1.04); }

.blog-date { display: flex; align-items: center; gap: 6px; font-size: 15px; color: #999; margin-bottom: 8px; }

.blog-card h2,
.blog-card h3,
.blog-card-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.45;
  transition: color .2s;
  margin-bottom: 6px;
}
.blog-card:hover h2,
.blog-card:hover h3,
.blog-card:hover .blog-card-title { color: var(--plum); }

.blog-excerpt { font-size: 16px; color: var(--text-body); line-height: 1.6; }

/* ================================================
   CTA SECTION
   ================================================ */
.cta-section {
  background: var(--plum);
  padding: 88px 20px;
  text-align: center;
  color: var(--white);
}

.cta-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 700;
  margin-bottom: 20px;
}

.cta-section > .container > p {
  font-size: 18px;
  line-height: 1.8;
  max-width: 580px;
  margin: 0 auto 32px;
  opacity: .9;
}

.cta-contacts { display: flex; flex-wrap: wrap; justify-content: center; gap: 24px; margin-bottom: 32px; }
.cta-contact { display: flex; align-items: center; gap: 8px; font-size: 18px; color: var(--white); }
.cta-buttons { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }

/* ================================================
   DISCLAIMER BAR
   ================================================ */
.disclaimer-bar { padding: 32px 20px; text-align: center; }
.disclaimer-bar p { font-size: 15px; color: #999; max-width: 700px; margin: 0 auto 8px; line-height: 1.65; }

/* ================================================
   FOOTER
   ================================================ */
footer {
  background: var(--charcoal);
  color: rgba(255,255,255,.65);
  padding: 52px 20px 0;
}

.footer-tagline {
  text-align: center;
  font-size: 17px;
  max-width: 660px;
  margin: 0 auto 38px;
  line-height: 1.75;
}

/* WordPress wp_nav_menu outputs a <ul> with class footer-nav */
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 36px;
  list-style: none;
}
.footer-nav li a {
  display: inline-block;
  font-size: 15px;
  color: rgba(255,255,255,.65);
  padding: 4px 14px;
  border-right: 1px solid rgba(255,255,255,.18);
  transition: color .2s;
  white-space: nowrap;
}
.footer-nav li:last-child a { border-right: none; }
.footer-nav li a:hover { color: var(--white); }

.footer-review {
  max-width: 620px;
  margin: 0 auto 44px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  padding: 22px 28px;
  text-align: center;
}
.footer-review p { font-size: 16px; margin-bottom: 8px; }
.footer-review a { color: var(--gold); font-size: 16px; font-weight: 500; }
.footer-review a:hover { color: #e0b020; }

.footer-rule { border: none; border-top: 1px solid rgba(255,255,255,.1); margin: 0 0 30px; }

.footer-legal {
  max-width: 900px;
  margin: 0 auto 28px;
  font-size: 14px;
  line-height: 1.85;
  color: rgba(255,255,255,.38);
}
.footer-legal p { margin-bottom: 10px; }
.footer-legal a { color: rgba(255,255,255,.45); text-decoration: underline; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 20px; text-align: center; }
.footer-bottom p { font-size: 14px; color: rgba(255,255,255,.35); margin-bottom: 8px; }

.footer-policy { display: flex; flex-wrap: wrap; justify-content: center; }
.footer-policy a {
  font-size: 14px;
  color: rgba(255,255,255,.35);
  padding: 2px 10px;
  border-right: 1px solid rgba(255,255,255,.18);
}
.footer-policy a:last-child { border-right: none; }
.footer-policy a:hover { color: rgba(255,255,255,.6); }

/* ================================================
   INNER PAGES (page, single, archive, index, 404)
   ================================================ */
.inner-page { padding: 56px 0 80px; }

.page-header { margin-bottom: 40px; }

.page-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
}

.archive-description { margin-top: 12px; font-size: 17px; color: var(--text-body); }

/* Single post */
.single-header { margin-bottom: 32px; }
.single-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.25;
  margin-top: 10px;
}

.single-thumbnail {
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 40px;
}
.single-thumbnail img { width: 100%; height: auto; }

.single-content,
.page-body {
  font-size: 18px;
  color: var(--text-body);
  line-height: 1.8;
}

/* WordPress entry-content resets */
.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4 {
  font-family: 'Playfair Display', serif;
  color: var(--text-dark);
  margin: 1.6em 0 .6em;
  line-height: 1.25;
}
.entry-content h2 { font-size: clamp(22px, 2.5vw, 30px); }
.entry-content h3 { font-size: clamp(20px, 2vw, 24px); }
.entry-content p  { margin-bottom: 1.2em; }
.entry-content ul,
.entry-content ol { padding-left: 1.5em; margin-bottom: 1.2em; }
.entry-content ul { list-style: disc; }
.entry-content ol { list-style: decimal; }
.entry-content li { margin-bottom: .4em; }
.entry-content a  { color: var(--plum-mid); text-decoration: underline; }
.entry-content a:hover { color: var(--plum); }
.entry-content blockquote {
  border-left: 3px solid var(--plum-mid);
  padding: 12px 20px;
  margin: 1.6em 0;
  font-style: italic;
  color: var(--text-dark);
  background: var(--cream);
  border-radius: 0 8px 8px 0;
}
.entry-content img { border-radius: 10px; margin: 1.2em 0; }

/* Post navigation */
.post-nav { margin-top: 48px; padding-top: 32px; border-top: 1px solid rgba(0,0,0,.08); }
.post-nav .nav-links { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.post-nav .nav-previous,
.post-nav .nav-next { max-width: 48%; }
.post-nav .nav-label { display: block; font-size: 14px; text-transform: uppercase; letter-spacing: 1px; color: #999; margin-bottom: 4px; }
.post-nav .nav-title { font-size: 17px; font-weight: 600; color: var(--plum-mid); }
.post-nav a:hover .nav-title { color: var(--plum); }

/* Pagination */
.pagination { margin-top: 48px; text-align: center; }
.pagination .nav-links { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; }
.pagination a,
.pagination .current {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
}
.pagination a { background: var(--cream); color: var(--text-dark); transition: background .2s; }
.pagination a:hover { background: var(--plum); color: var(--white); }

/* ================================================
   CONTACT PAGE
   ================================================ */

/* Hero body text (WYSIWYG output inside .hero-text) */
.hero-contact-body p {
  font-size: clamp(17px, 2vw, 19px);
  color: var(--text-dark);
  line-height: 1.75;
  margin-bottom: 20px;
}
.hero-contact-body p:last-child { margin-bottom: 0; }

/* Ways to Get in Touch */
.contact-ways { padding: 72px 0; }

.contact-ways .section-heading { text-align: center; margin-bottom: 48px; }

.contact-ways-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.contact-book-card {
  background: var(--cream);
  border-radius: 16px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  height: 100%;
}

.contact-card-icon { color: var(--plum); }
.contact-card-icon svg { display: block; }

.contact-book-heading {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--plum);
  margin: 0;
}

.contact-book-sub {
  font-size: 16px;
  color: var(--text-body);
  margin: 0;
  flex: 1;
}

.contact-book-card .btn-primary { align-self: flex-start; margin-top: 8px; }

/* Contact info cards */
.contact-info-cards { display: flex; flex-direction: column; gap: 16px; }

.contact-info-card {
  background: var(--cream);
  border-radius: 12px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-info-icon { color: var(--plum); flex-shrink: 0; }
.contact-info-icon svg { display: block; }

.contact-info-body { display: flex; flex-direction: column; gap: 3px; }

.contact-info-label {
  font-size: 15px;
  color: var(--text-body);
  font-weight: 400;
}

.contact-info-value {
  font-size: 17px;
  font-weight: 600;
  color: var(--plum);
  text-decoration: none;
}
.contact-info-value:hover { text-decoration: underline; }

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: #fff;
  padding: 9px 18px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s;
}
.btn-whatsapp:hover { background: #1db954; color: #fff; }

@media (max-width: 767px) {
  .contact-ways-grid { grid-template-columns: 1fr; }
  .contact-book-card { padding: 28px; }
}

/* Contact form section — card layout */
.contact-form-section { padding: 72px 0; }
.contact-form-section .container--narrow {
  background: #fff;
  border-radius: 16px;
  padding: 48px 52px;
  border: 2px solid rgba(77,16,64,.12);
}
.contact-form-section .section-heading {
  text-align: left;
  margin-bottom: 32px;
  font-size: clamp(22px, 2.5vw, 30px);
}
@media (max-width: 767px) {
  .contact-form-section .container--narrow { padding: 28px 20px; }
}

/* ── Gravity Forms — legacy markup (GF 2.10 / gform_legacy_markup_wrapper) ────
   Fields are <li> items inside <ul class="gform_fields">.
   Two-column via gf_left_half / gf_right_half on the <li>.
   All rules use !important to reliably override GF's own bundled CSS files.
   ──────────────────────────────────────────────────────────────────────────── */

/* Remove list chrome and use flexbox for two-column support */
.gform_wrapper ul.gform_fields {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 0 20px !important;
}

/* Every field full-width by default */
.gform_wrapper ul.gform_fields > .gfield {
  flex: 0 0 100% !important;
  width: 100% !important;
  float: none !important;
  margin-bottom: 20px !important;
  clear: none !important;
}

/* Two-column CSS Ready Classes */
.gform_wrapper ul.gform_fields > .gf_left_half,
.gform_wrapper ul.gform_fields > .gf_right_half {
  flex: 0 0 calc(50% - 10px) !important;
  width: calc(50% - 10px) !important;
  float: none !important;
  clear: none !important;
}
@media (max-width: 599px) {
  .gform_wrapper ul.gform_fields > .gf_left_half,
  .gform_wrapper ul.gform_fields > .gf_right_half {
    flex: 0 0 100% !important;
    width: 100% !important;
  }
}

/* Input containers — prevent GF from capping width */
.gform_wrapper .ginput_container {
  max-width: 100% !important;
  width: 100% !important;
}

/* Labels */
.gform_wrapper .gfield_label {
  font-family: 'Inter', sans-serif !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  color: var(--plum) !important;
  margin-bottom: 6px !important;
  display: block !important;
  line-height: 1.4 !important;
}

/* Required asterisk */
.gform_wrapper .gfield_required { color: var(--plum); margin-left: 2px; }

/* Text inputs, email, tel, number, url, password */
.gform_wrapper input[type="text"],
.gform_wrapper input[type="email"],
.gform_wrapper input[type="tel"],
.gform_wrapper input[type="number"],
.gform_wrapper input[type="url"],
.gform_wrapper input[type="password"] {
  width: 100% !important;
  max-width: 100% !important;
  padding: 12px 16px !important;
  border: 1.5px solid #ddd3c5 !important;
  border-radius: 8px !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 17px !important;
  color: var(--text-dark) !important;
  background: #fff !important;
  box-shadow: none !important;
  outline: none !important;
  box-sizing: border-box !important;
  -webkit-appearance: none;
  appearance: none;
  transition: border-color .2s, box-shadow .2s;
}

/* Textarea */
.gform_wrapper textarea {
  width: 100% !important;
  max-width: 100% !important;
  padding: 12px 16px !important;
  border: 1.5px solid #ddd3c5 !important;
  border-radius: 8px !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 17px !important;
  color: var(--text-dark) !important;
  background: #fff !important;
  box-shadow: none !important;
  outline: none !important;
  min-height: 140px !important;
  resize: vertical !important;
  box-sizing: border-box !important;
  -webkit-appearance: none;
  appearance: none;
  transition: border-color .2s, box-shadow .2s;
}

/* Select */
.gform_wrapper select {
  width: 100% !important;
  max-width: 100% !important;
  padding: 12px 40px 12px 16px !important;
  border: 1.5px solid #ddd3c5 !important;
  border-radius: 8px !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 17px !important;
  color: var(--text-dark) !important;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234D1040' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat right 16px center !important;
  box-shadow: none !important;
  outline: none !important;
  box-sizing: border-box !important;
  -webkit-appearance: none !important;
  appearance: none !important;
  cursor: pointer;
}

/* Focus states */
.gform_wrapper input[type="text"]:focus,
.gform_wrapper input[type="email"]:focus,
.gform_wrapper input[type="tel"]:focus,
.gform_wrapper input[type="number"]:focus,
.gform_wrapper input[type="url"]:focus,
.gform_wrapper textarea:focus,
.gform_wrapper select:focus {
  border-color: var(--plum) !important;
  box-shadow: 0 0 0 3px rgba(77,16,64,.10) !important;
  outline: none !important;
}

/* Submit button */
.gform_wrapper .gform_footer,
.gform_wrapper .gform-footer { padding: 8px 0 0 !important; }

.gform_wrapper input[type="submit"],
.gform_wrapper .gform_button {
  display: block !important;
  width: 100% !important;
  padding: 16px 32px !important;
  background: var(--plum) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 8px !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 18px !important;
  font-weight: 600 !important;
  letter-spacing: .3px !important;
  cursor: pointer !important;
  -webkit-appearance: none !important;
  appearance: none !important;
  text-align: center !important;
  box-sizing: border-box !important;
  box-shadow: none !important;
  transition: background .2s;
  line-height: 1.4 !important;
}
.gform_wrapper input[type="submit"]:hover,
.gform_wrapper .gform_button:hover { background: var(--plum-mid) !important; }

/* Validation errors */
.gform_wrapper .gfield_error input,
.gform_wrapper .gfield_error textarea,
.gform_wrapper .gfield_error select { border-color: #c0392b !important; }

.gform_wrapper .validation_message,
.gform_wrapper .gfield_description.validation_message {
  color: #c0392b !important;
  font-size: 15px;
  margin-top: 4px;
  display: block;
}

.gform_wrapper .gform_validation_errors,
.gform_wrapper .validation_error {
  background: #fff5f5;
  border: 1px solid #e0b0b0;
  border-radius: 8px;
  padding: 16px 20px;
  margin-bottom: 24px;
  color: #9b2020;
  font-size: 16px;
}

/* Confirmation */
.gform_wrapper .gform_confirmation_message {
  background: #f0fdf4;
  border: 1px solid #86efac;
  border-radius: 8px;
  padding: 20px 24px;
  color: #166534;
  font-size: 17px;
  font-weight: 500;
}

/* Checkbox / consent labels */
.gform_wrapper .gfield_checkbox label,
.gform_wrapper .gfield--type-consent label {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--text-body);
  cursor: pointer;
}

/* Field description (e.g. data protection text) */
.gform_wrapper .gfield_description {
  font-size: 15px;
  color: var(--text-body);
  margin-bottom: 8px;
  line-height: 1.5;
}
.gform_wrapper .gfield_description a { color: var(--plum-mid); text-decoration: underline; }

/* Find Me section */
.contact-find { background: var(--cream); padding: 72px 0; }

.contact-find-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  color: var(--plum);
  margin-bottom: 40px;
}

.contact-find-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-find-location {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
}

.contact-find-location svg { flex-shrink: 0; color: var(--plum); margin-top: 2px; }

.contact-find-location address {
  font-style: normal;
  line-height: 1.8;
  color: var(--text-dark);
  font-size: 17px;
}

.contact-find-sub {
  color: var(--text-body);
  font-size: 17px;
  line-height: 1.6;
  padding-left: 32px;
}

.contact-find-map {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,.10);
}

.contact-find-map iframe {
  width: 100%;
  height: 400px;
  border: 0;
  display: block;
}

@media (max-width: 767px) {
  .contact-find-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-find-map iframe { height: 280px; }
}

/* Areas Covered section */
.contact-areas { padding: 72px 0; text-align: center; }

.contact-areas .section-heading { margin-bottom: 20px; }

.contact-areas-body {
  max-width: 680px;
  margin: 0 auto;
  font-size: 19px;
  line-height: 1.75;
  color: var(--text-body);
}

.contact-areas-disclaimer {
  max-width: 680px;
  margin: 16px auto 0;
  font-size: 15px;
  color: var(--text-body);
  opacity: .7;
}
.pagination .current { background: var(--plum); color: var(--white); }

/* ================================================
   FLEXIBLE CONTENT SECTIONS  (page.php)
   ================================================ */

/* Shared helpers */
.fl-bg-white { background: var(--white); }
.fl-bg-cream  { background: var(--cream); }

.fl-body-text p          { margin-bottom: 1.4em; line-height: 1.8; }
.fl-body-text p:last-child { margin-bottom: 0; }
.fl-body-text a          { color: var(--plum-mid); text-decoration: underline; }

.fl-content-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.25;
}

.fl-text-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--plum-mid);
  font-weight: 500;
  font-size: 18px;
  margin-top: 20px;
  transition: gap .2s;
  text-decoration: none;
}
.fl-text-link:hover { gap: 10px; color: var(--plum); }

.fl-disclaimer {
  font-size: 15px;
  color: var(--text-body);
  opacity: .65;
  margin-top: 28px;
  line-height: 1.5;
}

/* Fallback page layout */
.fl-page-fallback { padding: 64px 0; }
.fl-page-fallback .page-header { margin-bottom: 32px; }
.fl-page-fallback .page-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3.5vw, 40px);
  color: var(--text-dark);
}
.fl-page-fallback .page-thumbnail { margin-bottom: 32px; border-radius: var(--radius); overflow: hidden; }
.fl-page-fallback .page-body { font-size: 18px; line-height: 1.8; }

/* ── Hero Banner ──────────────────────────────────────────────────── */
.fl-hero {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: center;
  padding-bottom: 0;
}

.fl-hero-bg {
  position: absolute;
  inset: 0;
  background-color: var(--plum);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.fl-hero-bg.top {
    background-position: center top;
}
.fl-hero-bg.bottom {
    background-position: center bottom;
}

.fl-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(255,255,255,.75) 0%,
    rgba(255,255,255,.45) 45%,
    rgba(255,255,255,.10) 80%,
    rgba(255,255,255,.0)  100%
  );
}

.fl-hero-inner {
  position: relative;
  padding-top: 80px;
  padding-bottom: 80px;
}

.fl-hero-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 700;
  color: var(--text-dark);
  max-width: 840px;
  line-height: 1.15;
}

@media (max-width: 599px) {
  .fl-hero { min-height: 300px; }
  .fl-hero-inner { padding-top: 60px; padding-bottom: 60px; }
  .fl-hero-overlay {
    background: linear-gradient(
      to bottom,
      rgba(255,255,255,.70) 0%,
      rgba(255,255,255,.55) 100%
    );
  }
}

/* ── Text + Image ─────────────────────────────────────────────────── */
.fl-text-image { padding: 72px 0; }

.fl-text-image-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 60px;
  align-items: center;
}

.fl-text-image--img-right .fl-text-image-img     { order: 2; }
.fl-text-image--img-right .fl-text-image-content  { order: 1; }

.fl-text-image-img img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 6px 32px rgba(0,0,0,.08);
}

@media (max-width: 767px) {
  .fl-text-image { padding: 52px 0; }
  .fl-text-image-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .fl-text-image--img-right .fl-text-image-img,
  .fl-text-image--img-right .fl-text-image-content { order: unset; }
}

/* ── Rich Text Block ──────────────────────────────────────────────── */
.fl-rich-text { padding: 72px 0; }

@media (max-width: 767px) { .fl-rich-text { padding: 48px 0; } }

/* ── CTA Contact Band ─────────────────────────────────────────────── */
.fl-cta-band {
  background: var(--plum);
  padding: 80px 0;
  text-align: center;
  color: var(--white);
}

.fl-cta-band .container { max-width: 820px; }

.fl-cta-body { margin-bottom: 40px; }
.fl-cta-body p {
  font-size: 20px;
  line-height: 1.75;
  color: rgba(255,255,255,.92);
  margin-bottom: 1em;
}
.fl-cta-body p:last-child { margin-bottom: 0; }

.fl-cta-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.fl-cta-contact-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 20px;
  font-weight: 500;
  text-decoration: none;
  transition: opacity .2s;
}
.fl-cta-contact-item:hover { opacity: .8; }

.fl-cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 599px) {
  .fl-cta-band { padding: 56px 0; }
  .fl-cta-body p { font-size: 18px; }
  .fl-cta-contact { gap: 20px; }
  .fl-cta-contact-item { font-size: 18px; }
  .fl-cta-buttons { flex-direction: column; align-items: stretch; }
  .fl-cta-buttons .btn-outline-white { text-align: center; justify-content: center; }
}

/* ── Cards Grid ───────────────────────────────────────────────────── */
.fl-cards { padding: 72px 0 42px 0; }

.fl-cards-heading { text-align: center; margin-bottom: 48px; }

.fl-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 30px;
}

.fl-card {
  background: var(--cream);
  border-radius: 16px;
  padding: 28px 32px;
}

/* Invert card colour when section is on cream background */
.fl-bg-cream .fl-card { background: var(--white); }

.fl-card-title {
  font-family: 'Inter', sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--plum);
  margin-bottom: 10px;
}

.fl-card-body {
  font-size: 17px;
  color: var(--text-body);
  line-height: 1.75;
  margin: 0;
}

@media (max-width: 599px) {
  .fl-cards { padding: 52px 0; }
  .fl-cards-grid { grid-template-columns: 1fr; }
}

/* ── FAQ Accordion ────────────────────────────────────────────────── */
.fl-faq {
  background: var(--cream);
  padding: 72px 0;
}

.fl-faq-heading { text-align: center; margin-bottom: 48px; }

.fl-faq-list { max-width: 860px; margin: 0 auto; }

.fl-faq-item {
  background: var(--white);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
}

.fl-faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 28px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--text-dark);
  transition: color .2s;
}
.fl-faq-question:hover { color: var(--plum); }
.fl-faq-question[aria-expanded="true"] { color: var(--plum); }

.fl-faq-chevron {
  flex-shrink: 0;
  color: var(--plum);
  transition: transform .25s ease;
}
.fl-faq-question[aria-expanded="true"] .fl-faq-chevron { transform: rotate(180deg); }

.fl-faq-answer { overflow: hidden; }

.fl-faq-answer-inner {
  padding: 0 28px 24px;
  font-size: 17px;
  color: var(--text-body);
  line-height: 1.8;
}
.fl-faq-answer-inner p { margin-bottom: .8em; }
.fl-faq-answer-inner p:last-child { margin-bottom: 0; }

@media (max-width: 599px) {
  .fl-faq { padding: 52px 0; }
  .fl-faq-question { padding: 16px 20px; font-size: 17px; }
  .fl-faq-answer-inner { padding: 0 20px 20px; }
}

/* ── Feature Callout ──────────────────────────────────────────────── */
.fl-callout {
  background: var(--plum);
  padding: 80px 0;
}

.fl-callout .container { max-width: 860px; }

.fl-callout-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 24px;
  line-height: 1.2;
}

.fl-callout-body { margin-bottom: 28px; }
.fl-callout-body p {
  font-size: 18px;
  color: rgba(255,255,255,.88);
  line-height: 1.8;
  margin-bottom: 1em;
}
.fl-callout-body p:last-child { margin-bottom: 0; }

.fl-callout-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--cream);
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid rgba(250,243,224,.4);
  padding-bottom: 2px;
  transition: border-color .2s, gap .2s;
}
.fl-callout-link:hover { border-color: var(--cream); gap: 10px; }

.fl-callout-disclaimer {
  margin-top: 28px;
  font-size: 15px;
  color: rgba(255,255,255,.45);
  line-height: 1.5;
}

@media (max-width: 599px) { .fl-callout { padding: 56px 0; } }

/* ── Disclaimer Bar ───────────────────────────────────────────────── */
.fl-disclaimer-bar {
  padding: 40px 0;
  background: var(--white);
  text-align: center;
}
.fl-disclaimer-bar .container { max-width: 820px; }

.fl-disclaimer-bar p {
  font-size: 15px;
  color: var(--text-body);
  opacity: .6;
  line-height: 1.5;
  margin: 0;
}


/* ── Reviews Page ──────────────────────────────────────────────────────────── */

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

.fl-review-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.fl-review-stars {
  display: flex;
  gap: 3px;
}
.fl-review-stars span { font-size: 22px; color: var(--gold); }
.fl-review-stars span.fl-review-star-empty { opacity: 0.25; }

.fl-review-text {
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
  margin: 0;
}

.fl-review-author {
  font-size: 15px;
  font-weight: 600;
  color: var(--plum);
  margin: 0;
}

.fl-reviews-cta {
  margin-top: 48px;
  text-align: center;
}

@media (max-width: 900px) {
  .fl-reviews-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .fl-reviews-grid { grid-template-columns: 1fr; }
}

.gfield_description { padding-top: 0 !important; padding-bottom: 0 !important; }
.ginput_container_checkbox { border: 1.5px solid #ddd3c5; padding: 12px 16px; border-radius: 8px; }