
/* ── VARIABLES ── */
:root {
  --brl-deep:    #0d2b45;
  --brl-mid:     #1a4a72;
  --brl-bright:  #40c0e3;
  --brl-lt:      #9ddbfc;
  --brl-pale:    #ddeef7;
  --brl-purple:  #7b3fa0;
  --brl-red:     #c0392b;
  --brl-white:   #ffffff;
  --brl-off:     #f4f7fa;
  --brl-gray:    #e2eaf0;
  --brl-text:    #0d1b2a;
  --brl-mid-txt: #3d5166;
  --brl-muted:   #6b7f92;
  --brl-dark:    #0a1520;
  --brl-serif:   'Playfair Display', Georgia, serif;
  --brl-sans:    'Lato', sans-serif;
}

/* ── HERO ── */
.brl-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--brl-deep);
}
.brl-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.brl-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 43, 69, 0.58);
}
.brl-hero-content {
  position: relative;
  z-index: 2;
  padding: 4rem 3rem 6rem;
  max-width: 760px;
}
.brl-eyebrow {
  font-family: var(--brl-sans);
  font-size: 1 rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brl-lt);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.brl-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--brl-lt);
  flex-shrink: 0;
}
.brl-hero-title {
  font-family: var(--brl-serif);
  font-size: clamp(3rem, 6vw, 5.2rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--brl-white);
  margin: 0 0 1.25rem;
  letter-spacing: -0.01em;
}
.brl-hero-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--brl-lt);
}
.brl-hero-sub {
  font-family: var(--brl-sans);
  font-size: 2 rem;
  font-weight: 400;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.88);
  max-width: 520px;
  margin: 0 0 2.25rem;
}
.brl-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ── BUTTONS ── */
.brl-btn-primary {
  display: inline-block;
  font-family: var(--brl-sans);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brl-white);
  background: var(--brl-bright);
  padding: 0.95rem 2.2rem;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  border: none;
}
.brl-btn-primary:hover {
  background: var(--brl-mid);
  transform: translateY(-2px);
  color: var(--brl-white);
  text-decoration: none;
}
.brl-btn-ghost {
  display: inline-block;
  font-family: var(--brl-sans);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 0.95rem 2.2rem;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, transform 0.15s;
}
.brl-btn-ghost:hover {
  border-color: var(--brl-lt);
  color: var(--brl-lt);
  transform: translateY(-2px);
  text-decoration: none;
}
.brl-btn-white {
  display: inline-block;
  font-family: var(--brl-sans);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brl-deep);
  background: var(--brl-white);
  padding: 1.1rem 2.8rem;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
}
.brl-btn-white:hover {
  background: var(--brl-pale);
  transform: translateY(-2px);
  color: var(--brl-deep);
  text-decoration: none;
}

/* ── TRUST BAR ── */
.brl-trust-bar {
  background: var(--brl-deep);
  padding: 1.25rem 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  border-bottom: 2px solid var(--brl-mid);
}
.brl-trust-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--brl-sans);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brl-lt);
}
.brl-dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brl-purple);
  flex-shrink: 0;
}
.brl-trust-div {
  width: 1px;
  height: 18px;
  background: rgba(255, 255, 255, 0.12);
}

/* ── SECTIONS ── */
.brl-section {
  padding: 6rem 3rem;
  background: var(--brl-off);
}
.brl-label {
  font-family: var(--brl-sans);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brl-bright);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.brl-label::before {
  content: '';
  display: block;
  width: 22px;
  height: 2px;
  background: var(--brl-bright);
  flex-shrink: 0;
}
.brl-label-center {
  justify-content: center;
}
.brl-label-center::before {
  display: none;
}
.brl-section-title {
  font-family: var(--brl-serif);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--brl-deep);
  margin: 0 0 0.9rem;
  max-width: 560px;
}
.brl-section-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--brl-bright);
}
.brl-on-dark {
  color: var(--brl-white) !important;
}
.brl-on-dark em {
  color: var(--brl-lt) !important;
}
.brl-title-center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  max-width: 560px;
}
.brl-section-body {
  font-family: var(--brl-sans);
  font-size: 1.45rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--brl-mid-txt);
  max-width: 560px;
  margin: 0 0 2.75rem;
}
.brl-body-center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* ── SERVICES GRID ── */
.brl-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px;
  background: var(--brl-gray);
  border: 1px solid var(--brl-gray);
}
.brl-service-card {
  background: var(--brl-white);
  padding: 2.25rem 1.75rem;
  position: relative;
  overflow: hidden;
  transition: background 0.2s;
}
.brl-service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--brl-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.brl-service-card:hover {
  background: var(--brl-pale);
}
.brl-service-card:hover::after {
  transform: scaleX(1);
}
.brl-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 1.25rem;
  color: var(--brl-mid);
  display: block;
}
.brl-service-name {
  font-family: var(--brl-serif);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--brl-deep);
  margin: 0 0 0.5rem;
}
.brl-service-desc {
  font-family: var(--brl-sans);
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--brl-mid-txt);
  margin: 0;
}
.brl-service-link {
  display: inline-block;
  margin-top: 1.25rem;
  font-family: var(--brl-sans);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brl-bright);
  text-decoration: none;
  transition: color 0.2s;
}
.brl-service-link:hover {
  color: var(--brl-red);
  text-decoration: none;
}

/* ── WHY KYLE SECTION ── */
.brl-why {
  background: var(--brl-deep);
  padding: 6rem 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.brl-why-img {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: visible;
}
.brl-why-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.brl-why-stat {
  position: absolute;
  bottom: 2rem;
  left: -2rem;
  background: var(--brl-bright);
  padding: 1.1rem 1.4rem;
  display: flex;
  flex-direction: column;
}
.brl-stat-num {
  font-family: var(--brl-serif);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--brl-white);
  line-height: 1;
}
.brl-stat-label {
  font-family: var(--brl-sans);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brl-pale);
  margin-top: 0.3rem;
}
.brl-why-content .brl-label {
  color: var(--brl-lt);
}
.brl-why-content .brl-label::before {
  background: var(--brl-lt);
}
.brl-why-body {
  font-family: var(--brl-sans);
  font-size: 1.45rem;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.72);
  margin: 0 0 2.25rem;
}
.brl-pillars {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 2.25rem;
}
.brl-pillar {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.brl-pillar-num {
  font-family: var(--brl-serif);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--brl-lt);
  min-width: 28px;
  line-height: 1.5;
  flex-shrink: 0;
}
.brl-pillar-head {
  display: block;
  font-family: var(--brl-sans);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brl-white);
  margin-bottom: 0.2rem;
}
.brl-pillar-text {
  font-family: var(--brl-sans);
  font-size: 1.25rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
}

/* ── INSTAGRAM SECTION ── */
.brl-social {
  padding: 6rem 3rem;
  background: var(--brl-off);
  text-align: center;
}
.brl-ig-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin: 0 0 2.5rem;
}
.brl-ig-tile {
  aspect-ratio: 1;
  overflow: hidden;
}
.brl-ig-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.brl-ig-tile:hover img {
  transform: scale(1.05);
}
.brl-ig-follow-wrap {
  text-align: center;
}
.brl-ig-follow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--brl-sans);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brl-deep);
  border: 1.5px solid var(--brl-deep);
  padding: 0.9rem 2rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.brl-ig-follow:hover {
  background: var(--brl-deep);
  color: var(--brl-white);
  text-decoration: none;
}

/* ── CTA BANNER ── */
.brl-cta-banner {
  background: var(--brl-mid);
  border-top: 4px solid var(--brl-red);
  padding: 5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}
.brl-cta-text .brl-label {
  color: var(--brl-lt);
}
.brl-cta-text .brl-label::before {
  background: var(--brl-lt);
}
.brl-cta-title {
  font-family: var(--brl-serif);
  font-size: clamp(2.1rem, 3.5vw, 3rem);
  font-weight: 600;
  color: var(--brl-white);
  line-height: 1.2;
  margin: 0;
  max-width: 480px;
}
.brl-cta-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--brl-lt);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .brl-hero-content { padding: 3rem 1.5rem 5rem; }
  .brl-section { padding: 4rem 1.5rem; }
  .brl-why { grid-template-columns: 1fr; gap: 3rem; padding: 4rem 1.5rem; }
  .brl-why-img { display: none; }
  .brl-trust-bar { gap: 1.25rem; padding: 1.1rem 1.5rem; }
  .brl-trust-div { display: none; }
  .brl-ig-grid { grid-template-columns: repeat(2, 1fr); }
  .brl-cta-banner { padding: 3.5rem 1.5rem; flex-direction: column; align-items: flex-start; }
  .brl-social { padding: 4rem 1.5rem; }
}