/* ============================================
   Up To Code Property Works
   Premium · Modern · Trustworthy
   Palette: Gold + Dark Grey + Grey (ASB-inspired)
   ============================================ */

:root {
  /* Logo-matched metallic gold + silver (sampled from logo) */
  --gold: #C4A03A;
  --gold-light: #D9B85C;
  --gold-dark: #A68628;
  --gold-muted: rgba(196, 160, 58, 0.14);
  --silver: #AAA8A8;
  --silver-light: #C8C6C6;

  /* Greys — clean, Ray White inspired */
  --dark: #111111;
  --dark-2: #1C1C1C;
  --dark-3: #2A2A2A;
  --grey-800: #3A3A3A;
  --grey-600: #5A5A5A;
  --grey-400: #8A8A8A;
  --grey-200: #D0D0D0;
  --grey-100: #EBEBEB;
  --off-white: #F8F8F7;
  --white: #FFFFFF;

  /* Typography */
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;

  /* Spacing & layout — more open, refined */
  --container: 1140px;
  --section-pad: clamp(5rem, 9vw, 7.5rem);
  --radius: 4px;
  --radius-lg: 10px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  --transition: 0.25s ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

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

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

h1, h2, h3, h4 {
  font-weight: 600;
  line-height: 1.2;
  color: var(--dark);
}

h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 3.75rem);
  font-weight: 600;
  letter-spacing: -0.02em;
}

h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.lead {
  font-size: 1.125rem;
  color: var(--grey-600);
  margin-bottom: 1.25rem;
}

.gold {
  color: var(--gold);
}

.section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 3.75rem;
}

.section-header .section-sub {
  color: var(--grey-600);
  font-size: 1.05rem;
}

.section-header.light h2,
.section-header.light .section-sub {
  color: var(--off-white);
}

.section-header.light .eyebrow {
  color: var(--gold-light);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.75rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
}

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

.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--dark);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-full {
  width: 100%;
}

/* ========== Header ========== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(26, 26, 26, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background var(--transition);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
  padding-top: 4px;
  padding-bottom: 4px;
}

.logo {
  display: flex;
  align-items: center;
  color: var(--white);
}

.logo-img {
  height: 84px;
  width: auto;
  display: block;
  object-fit: contain;
}

.logo-img-footer {
  height: 220px;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--grey-200);
}

.nav a:hover {
  color: var(--gold);
}

.nav-cta {
  background: var(--gold);
  color: var(--dark) !important;
  padding: 0.55rem 1.15rem;
  border-radius: var(--radius);
  font-weight: 600;
}

.nav-cta:hover {
  background: var(--gold-light) !important;
  color: var(--dark) !important;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

/* ========== Hero ========== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background-color: var(--dark);
  background-image: url('images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--white);
  padding: 7.5rem 0 5.5rem;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0.72);
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to right,
      rgba(17, 17, 17, 0.88) 0%,
      rgba(26, 26, 26, 0.75) 45%,
      rgba(26, 26, 26, 0.55) 100%
    );
  pointer-events: none;
}

/* hero-content styles in hero-layout */

.hero .eyebrow {
  color: var(--gold-light);
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--grey-200);
  max-width: 540px;
  margin-bottom: 2rem;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3.5rem;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.trust-item strong {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: -0.02em;
}

.trust-item span {
  font-size: 0.8rem;
  color: var(--grey-400);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ========== About ========== */
.about {
  background: var(--off-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4rem;
  align-items: center;
}

.about-content p {
  color: var(--grey-600);
  margin-bottom: 1rem;
}

.about-list {
  margin-top: 1.75rem;
  display: grid;
  gap: 0.65rem;
}

.about-list li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--dark);
  font-weight: 500;
  font-size: 0.95rem;
}

.about-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
}

.about-card {
  background: var(--dark);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  color: var(--white);
  box-shadow: var(--shadow);
}

.about-card-inner {
  position: relative;
}


.quote-mark {
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.7;
  margin-bottom: 0.5rem;
}

.about-card p {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--grey-100);
  margin-bottom: 1.75rem;
}

.quote-author strong {
  display: block;
  color: var(--gold);
  font-size: 1rem;
}

.quote-author span {
  font-size: 0.85rem;
  color: var(--grey-400);
}

/* ========== Services ========== */
.services {
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--grey-100);
  border-radius: var(--radius-lg);
  padding: 2rem 1.65rem;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.service-card:hover {
  border-color: rgba(197, 160, 40, 0.4);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
  transform: translateY(-3px);
}

.service-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-muted);
  color: var(--gold-dark);
  border-radius: 8px;
  margin-bottom: 1.15rem;
}

.service-icon svg {
  width: 22px;
  height: 22px;
}

.service-card h3 {
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--grey-600);
  line-height: 1.55;
}

.services-note {
  text-align: center;
  margin-top: 2.5rem;
  color: var(--grey-600);
  font-size: 0.95rem;
}

/* ========== Gallery / Before & After ========== */
.gallery {
  background: var(--white);
}


.gallery-grid-two {
  grid-template-columns: 1fr;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  gap: 2.5rem;
}

.gallery-triple {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  background: var(--grey-100);
}

.gallery-triple .ba-img.single {
  aspect-ratio: 3 / 4;
  width: 100%;
}

.gallery-triple .ba-img.single img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-item-wide {
  max-width: 100%;
}

@media (max-width: 720px) {
  .gallery-triple {
    grid-template-columns: 1fr;
  }
  .gallery-triple .ba-img.single {
    aspect-ratio: 4 / 3;
  }
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.gallery-item {
  background: var(--off-white);
  border: 1px solid var(--grey-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}

.gallery-item:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}


.gallery-single {
  width: 100%;
}

.gallery-single .ba-img.single {
  aspect-ratio: 16 / 10;
  width: 100%;
}

.gallery-single .ba-img.single img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ba-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--grey-100);
}

.ba-img {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--dark-3);
}

.ba-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ba-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  background: linear-gradient(145deg, #2E2E2E 0%, #1A1A1A 100%);
  color: var(--grey-400);
  text-align: center;
  padding: 1rem;
}

.ba-placeholder span {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
}

.ba-placeholder small {
  font-size: 0.65rem;
  color: var(--grey-600);
  line-height: 1.3;
  max-width: 90%;
}

.ba-label {
  position: absolute;
  bottom: 0.5rem;
  left: 0.5rem;
  background: rgba(26, 26, 26, 0.85);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.25rem 0.5rem;
  border-radius: 3px;
}

.ba-img.after .ba-label {
  background: var(--gold);
  color: var(--dark);
}

.gallery-caption {
  padding: 1.15rem 1.25rem 1.35rem;
}

.gallery-caption h3 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.gallery-caption p {
  font-size: 0.85rem;
  color: var(--grey-600);
  line-height: 1.5;
}

.gallery-note {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.85rem;
  color: var(--grey-400);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.gallery-note code {
  font-size: 0.8em;
  background: var(--grey-100);
  padding: 0.1em 0.35em;
  border-radius: 3px;
}

/* ========== Why Us ========== */
.why-us {
  position: relative;
  background: var(--dark);
  background-image: url('images/bg-why.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--white);
}

.why-us::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.82);
  pointer-events: none;
}

.why-us > .container {
  position: relative;
  z-index: 1;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.why-card {
  background: rgba(28, 28, 28, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  transition: border-color var(--transition);
  backdrop-filter: blur(4px);
}

.why-card:hover {
  border-color: rgba(201, 162, 39, 0.4);
}

.why-num {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.why-card h3 {
  color: var(--white);
  margin-bottom: 0.6rem;
}

.why-card p {
  font-size: 0.9rem;
  color: var(--grey-400);
  line-height: 1.55;
}

/* ========== CTA Banner ========== */
.cta-banner {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
  padding: 3.5rem 0;
}

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

.cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 1.9rem);
  color: var(--dark);
  margin-bottom: 0.4rem;
}

.cta-inner p {
  color: rgba(26, 26, 26, 0.8);
  max-width: 480px;
  font-size: 0.95rem;
}

.cta-banner .btn-primary {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
  flex-shrink: 0;
}

.cta-banner .btn-primary:hover {
  background: var(--dark-2);
  border-color: var(--dark-2);
  color: var(--white);
}

/* ========== Contact ========== */
.contact {
  background: var(--off-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3.5rem;
  align-items: start;
}

.contact-info .lead {
  margin-bottom: 2rem;
}

.contact-details {
  display: grid;
  gap: 1.25rem;
}

.detail strong {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--grey-600);
  margin-bottom: 0.25rem;
}

.detail span,
.detail a {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--dark);
}

.detail a:hover {
  color: var(--gold-dark);
}


.contact-simple {
  max-width: 560px;
  margin: 0 auto;
  text-align: left;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.btn-outline-dark {
  background: transparent;
  color: var(--dark);
  border: 2px solid var(--grey-200);
}

.btn-outline-dark:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
}

.contact-note {
  margin-top: 1.75rem;
  font-size: 0.8rem;
  color: var(--grey-400);
  font-style: italic;
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--grey-100);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1.15rem;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--grey-600);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--dark);
  background: var(--off-white);
  border: 1px solid var(--grey-100);
  border-radius: var(--radius);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-muted);
  background: var(--white);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-disclaimer {
  margin-top: 1rem;
  font-size: 0.75rem;
  color: var(--grey-400);
  text-align: center;
}

/* ========== Footer ========== */
.footer {
  position: relative;
  background: var(--dark);
  background-image: url('images/bg-footer.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--grey-400);
  padding: 3.5rem 0 1.75rem;
}

.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.88);
  pointer-events: none;
}

.footer > .container {
  position: relative;
  z-index: 1;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
  max-width: 320px;
}

.footer-brand .logo {
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  gap: 3.5rem;
}

.footer-links h4 {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}

.footer-links a {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  color: var(--grey-400);
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 1.25rem;
  padding-top: 1.75rem;
  font-size: 0.85rem;
}

.footer-bottom-left {
  flex: 1;
  min-width: 200px;
}

.footer-lbp-note {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  color: var(--grey-600);
  max-width: 420px;
  line-height: 1.45;
}

.footer-lbp-note a {
  color: var(--gold-light);
  text-decoration: underline;
}

.footer-lbp-note a:hover {
  color: var(--gold);
}

.footer-lbp-logo {
  display: block;
  flex-shrink: 0;
  margin-left: auto;
}

.footer-lbp-logo img {
  height: 108px;
  width: auto;
  display: block;
  opacity: 0.95;
}

.footer-lbp-logo:hover img {
  opacity: 1;
}

.footer-tagline {
  color: var(--grey-600);
}

/* ========== Responsive ========== */
@media (max-width: 960px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 720px) {
  .logo-img {
    height: 68px;
  }
  .header-inner {
    height: 80px;
    padding-top: 4px;
    padding-bottom: 4px;
  }
  .nav {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--dark);
    flex-direction: column;
    padding: 1.5rem;
    gap: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav a {
    width: 100%;
    padding: 0.9rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
  }

  .nav-cta {
    margin-top: 0.75rem;
    border-bottom: none !important;
  }

  .menu-toggle {
    display: flex;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero {
    min-height: auto;
    padding: 6.5rem 0 4rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-trust {
    gap: 1.5rem 2rem;
  }

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

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

  .form-row {
    grid-template-columns: 1fr;
  }

  .cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .cta-inner p {
    margin: 0 auto 0.5rem;
  }

  .footer-top {
    flex-direction: column;
  }

  .footer-links {
    gap: 2.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .logo-img {
    height: 56px;
  }

  .logo-img-footer {
    height: 150px;
  }

  .header-inner {
    height: 68px;
    padding-top: 4px;
    padding-bottom: 4px;
  }

  .nav {
    top: 68px;
  }
}

.gallery-ba-triple .ba-label {
  position: absolute;
  bottom: 0.5rem;
  left: 0.5rem;
  background: rgba(26, 26, 26, 0.85);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.25rem 0.5rem;
  border-radius: 3px;
}

.gallery-ba-triple .ba-label.after-label {
  background: var(--gold);
  color: var(--dark);
}

.gallery-ba-triple .ba-img.single {
  position: relative;
}







.trust-item-lbp {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.65rem;
}

.trust-lbp-logo {
  height: 44px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

.trust-item-lbp .trust-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.trust-item-lbp .trust-text strong {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.trust-item-lbp .trust-text span {
  font-size: 0.8rem;
  color: var(--grey-400);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.2;
}
