/*
  Boğaziçi Yapı Market - Premium Polish
  Manrope + Inter | Bordo/White/Gray
*/

:root {
  --nav-h: 76px;
  --nav-h-sm: 64px;
  --hero-offset: 12px;
  --content-pad-x: 1.5rem;
  --bg: #ffffff;
  --bg-soft: #f6f7fb;
  --text: #0c1222;
  --muted: #64748b;
  --border: rgba(15,23,42,.08);
  --shadow: 0 18px 40px rgba(15,23,42,.10);
  --shadow-sm: 0 10px 24px rgba(15,23,42,.08);
  --brand: #8B1538;
  --brand-hover: #70102d;
  --brand-soft: rgba(139,21,56,.10);
  --brand-soft-2: rgba(139,21,56,.16);
  --footer: #0b1220;
  --r-lg: 24px;
  --r-md: 18px;
  --r-sm: 14px;
  --ease: cubic-bezier(.2,.8,.2,1);
  --section-pad-d: 92px;
  --section-pad-m: 60px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
section[id] { scroll-margin-top: var(--nav-h); }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, var(--bg-soft) 100%);
  pointer-events: none;
  z-index: -1;
}
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: -1;
}

h1, h2, h3, .section-title, .hero-title { font-family: 'Manrope', sans-serif; }
h1, h2, h3, .section-title { letter-spacing: -0.02em; }
.body-text { font-size: 1.05rem; line-height: 1.7; }

.skip-link {
  position: absolute;
  top: -3rem;
  left: 0;
  background: var(--brand);
  color: white;
  padding: 0.5rem 1rem;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

.dot-sep {
  display: inline-block;
  width: 4px;
  height: 4px;
  background: var(--brand);
  border-radius: 50%;
  margin: 0 0.5rem;
  vertical-align: middle;
}

/* Navbar */
.navbar {
  background: var(--bg) !important;
  box-shadow: 0 2px 12px rgba(15,23,42,.06);
  min-height: var(--nav-h);
  padding-block: 10px;
  padding-inline: 1rem;
  transition: box-shadow 0.22s var(--ease), border-color 0.22s var(--ease);
  border-bottom: 1px solid transparent;
  align-items: center;
}
.navbar.shadow {
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--border);
}
.nav-wrap{
  padding-left: 14px !important;    /* logo sola */
  padding-right: 34px !important;   /* menü/cta sağa */
}

.navbar .navbar-collapse{ justify-content:flex-end; }
.navbar .navbar-nav{ margin-left:auto !important; gap:20px; }
.navbar .nav-cta{ margin-left:18px; }

@media (max-width: 991.98px){
  .nav-wrap{ padding-left: 12px !important; padding-right: 12px !important; }
  .navbar .nav-cta{ margin-left:0; margin-top:10px; }
}

.navbar .container,
.navbar .container-fluid {
  max-width: 1200px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0;
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-right: auto;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
.navbar-brand:focus-visible { outline: 2px solid var(--brand); outline-offset: 3px; }
.navbar-logo {
  max-height: 34px;
  width: auto;
  display: block;
  flex-shrink: 0;
  object-fit: contain;
}
.navbar-brand-text {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.3;
  color: var(--brand);
  letter-spacing: -0.02em;
}
.navbar-collapse {
  align-items: center;
}
.navbar-nav-list {
  gap: 0 20px;
  align-items: center;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
.navbar-light .nav-link {
  color: var(--text) !important;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  line-height: 1.5;
  padding: 0.55rem 0.5rem;
  position: relative;
  transition: color 0.22s var(--ease);
}
.navbar-light .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0.2rem;
  left: 0.5rem;
  right: 0.5rem;
  height: 2px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.22s var(--ease);
}
.navbar-light .nav-link:hover::after { transform: scaleX(1); opacity: 0.7; }
.navbar-light .nav-link.active::after { transform: scaleX(1); height: 2.5px; opacity: 1; }
.navbar-light .nav-link:focus-visible { outline: 2px solid var(--brand); outline-offset: 2px; }
.btn-nav-cta {
  min-height: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(139,21,56,.25);
  border-radius: var(--r-md);
  padding: 0 1.25rem;
}
.btn-nav-cta i { font-size: 1rem; line-height: 1; vertical-align: middle; }
@media (max-width: 991.98px) {
  .navbar { min-height: var(--nav-h-sm); padding-block: 8px; }
  .navbar .container-fluid { min-height: calc(var(--nav-h-sm) - 16px); }
  .navbar-logo { max-height: 28px; }
  .navbar-collapse {
    padding-top: 0.75rem;
    padding-bottom: 0.5rem;
    width: 100%;
    order: 10;
  }
  .navbar-nav-list {
    padding-top: 0;
    padding-bottom: 0;
    gap: 0.25rem 0;
  }
  .nav-item-cta {
    margin-top: 1rem;
    width: 100%;
  }
  .nav-item-cta .btn { width: 100% !important; }
}
.btn-brand {
  background: var(--brand);
  border-color: var(--brand);
  color: white;
  box-shadow: 0 4px 14px rgba(139,21,56,.25);
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease), background 0.22s var(--ease);
}
.btn-brand:hover {
  background: var(--brand-hover);
  border-color: var(--brand-hover);
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(139,21,56,.35);
}
@media (prefers-reduced-motion: reduce) {
  .btn-brand:hover { transform: none; }
}

/* Sections / Rhythm */
.section-pad { padding: var(--section-pad-d) 0; }
@media (max-width: 767px) { .section-pad { padding: var(--section-pad-m) 0; } }
.section-soft { background: var(--bg-soft); }
.container { max-width: 1200px; }
.section-head {
  margin-bottom: 32px;
}
.section-head .section-title { margin-bottom: 0; }
.section-title {
  font-size: clamp(1.7rem, 2.1vw, 2.4rem);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}

/* Hero */
.hero-split {
  display: flex;
  min-height: min(560px, calc(100vh - var(--nav-h)));
  min-height: min(560px, calc(100dvh - var(--nav-h)));
  background: var(--bg-soft);
  position: relative;
  align-items: stretch;
}
.hero-rail {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--brand);
  z-index: 2;
}
.hero-left {
  flex: 1;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 6px) 2.5rem 2rem;
  padding-left: 4rem;
  min-width: 0;
}
.hero-content-inner {
  max-width: 480px;
  margin-left: 2.5rem;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem;
  background: var(--brand-soft);
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 600;
  border-radius: 9999px;
  border: 1px solid var(--brand-soft-2);
}
.hero-title {
  font-size: clamp(2.1rem, 3.2vw, 3.4rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.12;
  letter-spacing: -0.03em;
  padding-bottom: 0.6rem;
  border-bottom: 3px solid var(--brand);
  display: inline-block;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.7;
}
.btn-outline-hero {
  background: var(--bg);
  border: 2px solid var(--border);
  color: var(--text);
  transition: border-color 0.22s var(--ease), color 0.22s var(--ease), background 0.22s var(--ease);
}
.btn-outline-hero:hover {
  border-color: var(--brand);
  color: var(--brand);
  background: var(--brand-soft);
}
.btn-outline-hero:focus-visible { outline: 2px solid var(--brand); outline-offset: 2px; }
.hero-right {
  flex: 1;
  min-width: 0;
  position: relative;
  display: none;
  min-height: 480px;
}
@media (min-width: 992px) { .hero-right { display: block; } }
.hero-img-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  display: block;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, rgba(139,21,56,0.18) 0%, transparent 45%);
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
  pointer-events: none;
}
.hero-contact-panel {
  position: absolute;
  bottom: 1.75rem;
  right: 1.75rem;
  background: var(--bg);
  padding: 1rem 1.25rem;
  border-radius: var(--r-md);
  box-shadow: 0 12px 32px rgba(15,23,42,.15);
  border: 1px solid var(--border);
  z-index: 3;
}
@media (max-width: 991px) {
  .hero-split { min-height: auto; flex-direction: column; }
  .hero-rail { width: 100%; height: 3px; }
  .hero-left { padding: calc(var(--nav-h-sm) + 6px) var(--content-pad-x) 2rem; }
  .hero-content-inner { margin-left: 0; }
  .hero-right { min-height: 380px; }
}

/* Feature Strip */
.feature-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  background: var(--bg);
  border-radius: var(--r-lg);
  padding: 2.25rem 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  gap: 0;
}
.feature-item {
  flex: 1;
  min-width: 200px;
  padding: 0 1.75rem;
  text-align: center;
}
.feature-divider {
  width: 1px;
  background: rgba(139,21,56,.15);
  align-self: stretch;
  flex-shrink: 0;
}
@media (max-width: 991px) {
  .feature-strip { flex-direction: column; padding: 1.75rem; }
  .feature-divider { width: 100%; height: 1px; }
  .feature-item { min-width: 0; padding: 1.25rem 0; text-align: left; }
}
.feature-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-soft);
  color: var(--brand);
  border-radius: 50%;
  font-size: 1.3rem;
  margin: 0 auto 1rem;
}
@media (max-width: 991px) {
  .feature-icon { margin-left: 0; margin-right: auto; }
}
.feature-title { font-size: 1.05rem; font-weight: 600; margin-bottom: 0.4rem; color: var(--text); }
.feature-desc { font-size: 0.875rem; color: var(--muted); margin: 0; }

/* About */
.principle-tile {
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease);
  min-height: 140px;
}
.principle-tile:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
@media (prefers-reduced-motion: reduce) {
  .principle-tile:hover { transform: none; }
}
.principle-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-soft);
  border-radius: 50%;
  margin-bottom: 0.75rem;
}
.principle-icon i { font-size: 1.25rem; display: inline-block; font-style: normal; line-height: 1; }
.about-photo-card {
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.photo-caption {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: rgba(15,23,42,.75);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.4rem 0.85rem;
  border-radius: var(--r-sm);
}

/* Services */
.svc-shell {
  display: grid;
  grid-template-columns: clamp(260px, 26vw, 360px) 1fr;
  gap: 24px;
  align-items: start;
  max-height: 560px;
  overflow: hidden;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
}
.svc-nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 1rem;
  min-height: 0;
  -webkit-overflow-scrolling: touch;
}
.svc-item {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  height: 60px;
  min-height: 60px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 0 1rem;
  text-align: left;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  transition: border-color 0.22s var(--ease), background 0.22s var(--ease), color 0.22s var(--ease);
}
.svc-item:focus-visible { outline: 2px solid var(--brand); outline-offset: 2px; }
.svc-item-text {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.svc-item:hover {
  background: var(--bg-soft);
  border-color: var(--brand);
  color: var(--brand);
}
.svc-item.is-active {
  background: var(--brand-soft);
  border-color: var(--brand);
  color: var(--brand);
}
.svc-panel {
  min-width: 0;
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 1.5rem 2rem;
  -webkit-overflow-scrolling: touch;
}
.svc-panel-inner { min-height: 100%; }
.service-detail-panel { display: none; }
.service-detail-panel.active { display: block; }
.svc-panel-title {
  font-size: clamp(1.05rem, 1.25vw, 1.2rem);
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.service-bullets {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.service-bullets li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.5rem;
}
.service-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
}

@media (min-width: 768px) and (max-width: 1199px) {
  .svc-shell { grid-template-columns: clamp(220px, 24vw, 300px) 1fr; max-height: 520px; }
  .svc-item { height: 54px; min-height: 54px; font-size: 0.85rem; padding: 0 0.9rem; }
  .svc-panel { padding: 1.25rem 1.5rem; }
}

@media (max-width: 767px) {
  .svc-shell {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    max-height: none;
    overflow: visible;
  }
  .svc-nav {
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0.75rem;
    gap: 0.5rem;
    white-space: nowrap;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    border-bottom: 1px solid var(--border);
  }
  .svc-item {
    flex-shrink: 0;
    min-width: 200px;
    height: 52px;
    min-height: 52px;
    scroll-snap-align: start;
  }
  .svc-item-text { -webkit-line-clamp: 2; line-clamp: 2; white-space: normal; }
  .svc-panel { overflow: visible; padding: 1.25rem 1rem; }
}

/* Bayilikler */
.brand-tile {
  background: linear-gradient(135deg, var(--bg) 0%, var(--bg-soft) 100%);
  border: 2px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease), border-color 0.22s var(--ease);
  position: relative;
  overflow: hidden;
}
.brand-tile::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
}
.brand-tile:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
  border-color: var(--brand);
}
@media (prefers-reduced-motion: reduce) {
  .brand-tile:hover { transform: none; }
}
.brand-logo {
  max-height: 56px;
  width: auto;
  max-width: 100%;
  display: block;
  margin-left: auto;
  margin-right: auto;
  object-fit: contain;
  position: relative;
  z-index: 1;
}
.brand-sublabel {
  font-size: 0.8rem;
  color: var(--muted);
  position: relative;
  z-index: 1;
}
.trust-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: var(--bg-soft);
  border-radius: var(--r-md);
  border: 1px solid var(--border);
}
.trust-text { font-weight: 500; color: var(--text); }

/* Badge */
.badge-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 1rem;
  background: var(--brand-soft);
  color: var(--brand);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-radius: 9999px;
}
.bg-brand-soft { background: var(--brand-soft); }
.text-brand { color: var(--brand) !important; }
.btn-outline-brand {
  border: 2px solid var(--brand);
  color: var(--brand);
  background: transparent;
  transition: background 0.22s var(--ease), border-color 0.22s var(--ease);
}
.btn-outline-brand:hover {
  background: var(--brand-soft);
  border-color: var(--brand);
  color: var(--brand);
}

/* FAQ */
.accordion-faq .accordion-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  margin-bottom: 0.5rem;
  overflow: hidden;
}
.accordion-faq .accordion-button {
  background: var(--bg) !important;
  color: var(--text) !important;
  font-weight: 600;
  padding: 1.15rem 1.35rem;
  font-size: 0.95rem;
}
.accordion-faq .accordion-button:not(.collapsed) {
  border-left: 4px solid var(--brand);
  padding-left: calc(1.35rem - 4px);
}
.accordion-faq .accordion-button:hover {
  background: var(--bg-soft) !important;
}
.accordion-faq .accordion-button:focus {
  box-shadow: 0 0 0 3px var(--brand-soft);
}
.accordion-faq .accordion-body { padding: 1.15rem 1.35rem; }

/* Contact */
.contact-card {
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.contact-card__strip {
  height: 5px;
  background: var(--brand);
}
.contact-card a:hover { color: var(--brand) !important; }
.map-card {
  height: 340px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  border-radius: var(--r-md);
}
.map-card iframe { display: block; width: 100%; height: 100%; }
.map-label {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: rgba(255,255,255,.95);
  padding: 0.4rem 0.8rem;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: var(--r-sm);
  box-shadow: var(--shadow-sm);
}
.contact-form-card {
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
}
.form-control {
  min-height: 44px;
}
.form-control:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px var(--brand-soft);
}
.form-success-msg {
  display: none;
  margin-top: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(34,197,94,.12);
  color: #15803d;
  font-size: 0.9rem;
  border-radius: var(--r-sm);
}
.form-success-msg.visible { display: block; }

/* Footer */
.footer {
  background: var(--footer);
  color: rgba(255, 255, 255, 0.85);
}
.footer-logo { height: 46px; width: auto; display: block; }
.footer a:hover { color: var(--brand) !important; }
.footer a:focus-visible { outline: 2px solid var(--brand); outline-offset: 2px; }

/* Floating Call */
.floating-call {
  position: fixed;
  bottom: max(18px, env(safe-area-inset-bottom));
  left: max(18px, env(safe-area-inset-left));
  right: auto;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brand);
  color: white;
  border-radius: 50%;
  box-shadow: 0 6px 24px rgba(139, 21, 56, 0.5);
  border: 2px solid rgba(255,255,255,.25);
  z-index: 1000;
  text-decoration: none;
  font-size: 1.3rem;
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease), bottom 0.22s var(--ease);
}
.floating-call:hover {
  background: var(--brand-hover);
  color: white;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 32px rgba(139, 21, 56, 0.55);
}
.floating-call:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}
@media (prefers-reduced-motion: reduce) {
  .floating-call:hover { transform: none; }
}
.floating-call.near-footer {
  bottom: max(72px, calc(env(safe-area-inset-bottom) + 72px));
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: max(18px, env(safe-area-inset-bottom));
  right: max(18px, env(safe-area-inset-right));
  width: 48px;
  height: 48px;
  background: var(--text) !important;
  border: none;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s var(--ease), visibility 0.22s var(--ease), transform 0.22s var(--ease);
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover {
  background: var(--footer) !important;
  color: white;
  transform: translateY(-2px);
}
.back-to-top:focus-visible { outline: 2px solid var(--brand); outline-offset: 2px; }

.btn:focus-visible { outline: 2px solid var(--brand); outline-offset: 2px; }
@media (min-width: 992px) { .w-lg-auto { width: auto !important; } }
.shadow-soft { box-shadow: var(--shadow-sm); }
