:root {
  --ink: #15251f;
  --ink-soft: #34463f;
  --forest: #183d32;
  --forest-deep: #102d26;
  --sage: #72847b;
  --sage-pale: #e8ede9;
  --ivory: #f7f4ee;
  --paper: #fffefa;
  --brass: #b38b55;
  --brass-light: #d9c39f;
  --line: rgba(21, 37, 31, 0.14);
  --shadow: 0 24px 70px rgba(24, 61, 50, 0.12);
  --display: "Playfair Display", Georgia, serif;
  --body: "Inter", "Segoe UI", Arial, sans-serif;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.72;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

body::selection {
  color: #fff;
  background: var(--forest);
}

a {
  color: var(--forest);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

a:hover { color: var(--brass); }

img {
  max-width: 100%;
  height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  color: var(--ink);
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: 0;
}

p { margin-top: 0; }

[id] { scroll-margin-top: 94px; }

.container { max-width: 1180px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--brass);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 1px;
  background: currentColor;
  content: "";
}

.navbar-er {
  min-height: 84px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(21, 37, 31, 0.08);
  background: rgba(255, 254, 250, 0.96);
  box-shadow: 0 8px 30px rgba(21, 37, 31, 0.04);
  backdrop-filter: blur(14px);
}

.navbar-brand {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  margin-right: 28px;
  padding: 0 0 0 52px;
  color: var(--ink) !important;
  font-family: var(--display);
  font-size: 1.52rem;
  font-weight: 600;
  line-height: 1.05;
  text-decoration: none;
}

.navbar-brand::before {
  position: absolute;
  top: 50%;
  left: 0;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid var(--brass);
  color: var(--forest);
  content: "EE";
  font-family: var(--body);
  font-size: 0.68rem;
  font-weight: 800;
  transform: translateY(-50%);
}

.navbar-brand::after {
  margin-top: 5px;
  color: var(--sage);
  content: "PRAXIS FÜR ZAHNHEILKUNDE";
  font-family: var(--body);
  font-size: 0.48rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.navbar-nav { gap: 3px; }

.navbar-er .nav-link {
  position: relative;
  padding: 10px 12px !important;
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.navbar-er .nav-link:not(.btn-nav)::after {
  position: absolute;
  right: 12px;
  bottom: 5px;
  left: 12px;
  height: 1px;
  background: var(--brass);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.navbar-er .nav-link:hover::after,
.navbar-er .nav-link.active::after { transform: scaleX(1); }

.navbar-er .btn-nav,
.btn-er-primary,
.btn-er-outline,
.btn-er-light {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px !important;
  border: 1px solid var(--forest);
  border-radius: 2px;
  font-family: var(--body);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.navbar-er .btn-nav,
.btn-er-primary {
  color: #fff !important;
  background: var(--forest);
}

.navbar-er .btn-nav:hover,
.btn-er-primary:hover {
  border-color: var(--brass);
  color: #fff !important;
  background: var(--brass);
  transform: translateY(-2px);
}

.btn-er-outline {
  color: var(--forest);
  background: transparent;
}

.btn-er-outline:hover {
  color: #fff;
  background: var(--forest);
  transform: translateY(-2px);
}

.navbar-toggler {
  width: 44px;
  height: 44px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 2px;
}

.navbar-toggler:focus { box-shadow: 0 0 0 3px rgba(179, 139, 85, 0.2); }

.dropdown-menu {
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.dropdown-item {
  padding: 9px 13px;
  border-radius: 1px;
  color: var(--ink-soft);
  font-size: 0.84rem;
  text-decoration: none;
}

.dropdown-item:hover,
.dropdown-item:focus {
  color: var(--forest);
  background: var(--sage-pale);
}

.hero-er {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  padding: 178px 0 90px;
  background: var(--ivory);
}

.hero-er::before {
  position: absolute;
  top: 84px;
  right: 0;
  bottom: 0;
  width: 49%;
  background: url("../img/dr-erdogan-portrait.jpg") center 8% / cover no-repeat;
  content: "";
}

.hero-er::after {
  position: absolute;
  right: 48%;
  bottom: 0;
  width: 1px;
  height: 68%;
  background: var(--brass-light);
  content: "";
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(610px, 50%);
}

.hero-er h1 {
  max-width: 650px;
  margin-bottom: 24px;
  font-size: clamp(3.4rem, 6.1vw, 6.25rem);
  line-height: 0.98;
}

.hero-er h1 span {
  display: block;
  color: var(--forest);
  font-style: italic;
}

.hero-er .lead {
  max-width: 570px;
  margin-bottom: 32px;
  color: var(--ink-soft);
  font-size: 1.06rem;
  line-height: 1.78;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  margin: 0 0 34px;
  padding: 0;
  list-style: none;
}

.hero-facts li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 700;
}

.hero-facts i { color: var(--brass); }

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

.hero-caption {
  position: absolute;
  z-index: 2;
  right: 30px;
  bottom: 30px;
  padding: 12px 16px;
  color: #fff;
  background: rgba(16, 45, 38, 0.9);
  font-size: 0.75rem;
}

.trust-er {
  padding: 30px 0;
  color: rgba(255, 255, 255, 0.76);
  background: var(--forest-deep);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  display: flex;
  min-height: 60px;
  align-items: center;
  gap: 14px;
  padding: 4px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
}

.trust-item:first-child { padding-left: 0; }
.trust-item:last-child { border-right: 0; }

.trust-item i {
  color: var(--brass-light);
  font-size: 1.3rem;
}

.trust-item strong {
  display: block;
  color: #fff;
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 600;
}

.trust-item span {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.04em;
}

.section-pad { padding: 104px 0; }
.section-bg { background: var(--ivory); }

.section-title {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-title .eyebrow { margin-bottom: 14px; }

.section-title h2 {
  margin-bottom: 16px;
  font-size: clamp(2.4rem, 4.3vw, 4.2rem);
}

.section-title p {
  max-width: 620px;
  margin: 0 auto;
  color: var(--sage);
  font-size: 1rem;
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 78px;
}

.intro-image {
  position: relative;
  min-height: 560px;
}

.intro-image img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: center 18%;
  box-shadow: var(--shadow);
}

.intro-copy h2 {
  margin-bottom: 25px;
  font-size: clamp(2.45rem, 4vw, 4rem);
}

.intro-copy .lead {
  margin-bottom: 20px;
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.42rem;
  line-height: 1.5;
}

.signature {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.signature .signature-mark {
  display: grid;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid var(--brass);
  color: var(--forest);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1;
}

.signature strong,
.signature span { display: block; }
.signature strong { font-family: var(--display); font-size: 1.08rem; line-height: 1.25; }
.signature span { color: var(--sage); font-size: 0.76rem; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card {
  position: relative;
  display: block;
  min-height: 310px;
  padding: 34px;
  overflow: hidden;
  border: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  color: var(--ink-soft);
  background: var(--paper);
  box-shadow: none;
  text-decoration: none;
  transition: background 220ms ease, color 220ms ease;
}

.service-card::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--brass);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.service-card:hover {
  color: var(--ink-soft);
  background: var(--sage-pale);
}

.service-card:hover::after { transform: scaleX(1); }

.service-number {
  display: block;
  margin-bottom: 48px;
  color: var(--brass);
  font-size: 0.72rem;
  font-weight: 800;
}

.service-icon {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border: 1px solid var(--brass-light);
  border-radius: 0;
  color: var(--forest);
  background: transparent;
  font-size: 1.2rem;
}

.service-card h3 {
  margin-bottom: 14px;
  font-size: 1.62rem;
}

.service-card p {
  margin-bottom: 22px;
  color: var(--sage);
  font-size: 0.87rem;
  line-height: 1.7;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--forest);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.practice-band {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: flex-end;
  padding: 80px 0;
  background: url("../img/img_Team.jpg") center / cover no-repeat;
}

.practice-band::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(16, 45, 38, 0.9) 0%, rgba(16, 45, 38, 0.58) 47%, rgba(16, 45, 38, 0.05) 78%);
  content: "";
}

.practice-copy {
  position: relative;
  z-index: 1;
  max-width: 540px;
  color: rgba(255, 255, 255, 0.8);
}

.practice-copy h2 {
  margin-bottom: 22px;
  color: #fff;
  font-size: clamp(2.6rem, 4.8vw, 4.6rem);
}

.practice-copy .eyebrow { color: var(--brass-light); }

.hours-wrap {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  min-width: 0;
  border: 1px solid var(--line);
  background: var(--paper);
}

.hours-intro {
  min-width: 0;
  padding: 48px;
  color: rgba(255, 255, 255, 0.78);
  background: var(--forest);
}

.hours-intro h2 {
  margin-bottom: 20px;
  color: #fff;
  font-size: 2.5rem;
}

.hours-intro a { color: #fff; }

.hours-table {
  min-width: 0;
  padding: 30px 42px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.hours-table table { width: 100%; max-width: 100%; table-layout: fixed; }
.hours-table thead { display: none; }

.hours-table tr {
  display: grid;
  grid-template-columns: 0.62fr 1.25fr 1.25fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.hours-table tr:last-child { border-bottom: 0; }

.hours-table td {
  padding: 24px 10px;
  border: 0;
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.hours-table td:first-child {
  color: var(--forest);
  font-family: var(--display);
  font-size: 1.18rem;
  font-weight: 600;
}

.hours-table td::before {
  display: block;
  margin-bottom: 3px;
  color: var(--sage);
  content: attr(data-label);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cta-er {
  padding: 80px 0;
  color: rgba(255, 255, 255, 0.78);
  background: var(--forest-deep);
}

.cta-er h2 {
  margin-bottom: 10px;
  color: #fff;
  font-size: clamp(2rem, 3.4vw, 3.2rem);
}

.cta-er p { margin-bottom: 0; }

.btn-er-light {
  border-color: var(--brass-light);
  color: var(--forest-deep);
  background: var(--brass-light);
}

.btn-er-light:hover {
  border-color: #fff;
  color: var(--forest-deep);
  background: #fff;
  transform: translateY(-2px);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.contact-card {
  display: flex;
  min-height: 150px;
  align-items: flex-start;
  gap: 18px;
  padding: 32px;
  border: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  color: var(--ink-soft);
  background: var(--paper);
  box-shadow: none;
  text-decoration: none;
  transition: background 180ms ease;
}

.contact-card:hover {
  color: var(--ink-soft);
  background: var(--sage-pale);
  transform: none;
}

.contact-card > i {
  color: var(--brass);
  font-size: 1.35rem;
}

.contact-card strong,
.contact-card span { display: block; }
.contact-card strong { margin-bottom: 5px; color: var(--ink); font-family: var(--display); font-size: 1.16rem; }
.contact-card span { overflow-wrap: anywhere; color: var(--sage); font-size: 0.84rem; }

.contact-cards-row > [class*="col-"] {
  display: flex;
}

.contact-cards-row .contact-card {
  width: 100%;
  min-height: 176px;
}

.service-detail {
  padding: 94px 0 104px;
}

.service-lead-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  align-items: center;
  gap: 72px;
}

.service-visual {
  position: relative;
  margin: 0;
  padding: 0;
}

.service-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.service-visual figcaption {
  margin-top: 14px;
  color: var(--sage);
  font-size: 0.7rem;
  letter-spacing: 0.05em;
}

.service-copy .eyebrow { margin-bottom: 18px; }

.service-copy h2 {
  max-width: 570px;
  margin-bottom: 25px;
  font-size: clamp(2.55rem, 4vw, 4.25rem);
}

.service-copy .service-opening {
  margin-bottom: 21px;
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.36rem;
  line-height: 1.52;
}

.service-copy p:not(.service-opening) { color: var(--ink-soft); }

.service-highlight {
  margin-top: 28px;
  padding: 20px 0 20px 24px;
  border-left: 2px solid var(--brass);
  color: var(--forest);
  font-family: var(--display);
  font-size: 1.08rem;
  line-height: 1.55;
}

.service-content-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1px;
  margin-top: 88px;
  border: 1px solid var(--line);
  background: var(--line);
}

.service-panel,
.service-process {
  min-width: 0;
  padding: 48px;
  background: var(--paper);
}

.service-panel { background: var(--ivory); }

.service-kicker {
  display: block;
  margin-bottom: 14px;
  color: var(--brass);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-panel h2,
.service-process h2 {
  margin-bottom: 28px;
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.service-checklist {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-checklist li {
  position: relative;
  margin: 0;
  padding: 15px 0 15px 30px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
}

.service-checklist li:last-child { border-bottom: 0; }

.service-checklist li::before {
  position: absolute;
  top: 16px;
  left: 0;
  color: var(--brass);
  content: "✓";
  font-weight: 800;
}

.service-steps {
  display: grid;
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: service-step;
}

.service-steps li {
  position: relative;
  min-height: 58px;
  margin: 0;
  padding-left: 72px;
  counter-increment: service-step;
}

.service-steps li::before {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid var(--brass-light);
  color: var(--forest);
  content: counter(service-step, decimal-leading-zero);
  font-size: 0.68rem;
  font-weight: 800;
}

.service-steps strong,
.service-steps span { display: block; }

.service-steps strong {
  margin-bottom: 3px;
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.08rem;
}

.service-steps span {
  color: var(--sage);
  font-size: 0.84rem;
  line-height: 1.65;
}

.service-next {
  padding: 72px 0;
  color: rgba(255, 255, 255, 0.78);
  background: var(--forest-deep);
}

.service-next h2 {
  margin-bottom: 10px;
  color: #fff;
  font-size: clamp(2rem, 3.6vw, 3.3rem);
}

.service-next p { margin-bottom: 0; }

.page-header {
  position: relative;
  margin-top: 84px;
  overflow: hidden;
  padding: 98px 0 78px !important;
  background: var(--ivory) !important;
}

.page-header::after {
  position: absolute;
  top: 0;
  right: 6%;
  width: 26%;
  height: 100%;
  border-right: 1px solid var(--brass-light);
  border-left: 1px solid var(--brass-light);
  content: "";
  transform: skewX(-14deg);
  opacity: 0.55;
}

.page-header .container { position: relative; z-index: 1; }

.page-header h1 {
  max-width: 920px;
  margin-top: 14px !important;
  font-size: clamp(2.8rem, 5.5vw, 5.4rem) !important;
}

.breadcrumb {
  margin: 0;
  color: var(--sage);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.breadcrumb a { text-decoration: none; }
.breadcrumb-item.active { color: var(--brass); }

main > section.py-5 { padding: 92px 0 !important; }

main > section.py-5 > .container > .lead:first-child {
  max-width: 760px;
  margin: 0 auto 62px !important;
  color: var(--ink-soft);
  font-family: var(--display);
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1.48;
}

main > section .row.g-5 { --bs-gutter-x: 5.5rem; }

main > section h3 { font-size: clamp(1.7rem, 3vw, 2.5rem); }
main > section h4 { color: var(--forest); font-family: var(--body); font-weight: 700; }
main > section .lead { color: var(--ink); font-family: var(--display); font-size: 1.35rem; }

main > section ul li { margin-bottom: 8px; }

main > section .img-fluid.rounded-4,
main > section .img-fluid.rounded-3 {
  border-radius: 0 !important;
  box-shadow: var(--shadow) !important;
}

main > section .service-card.h-100 {
  min-height: 100%;
  border: 1px solid var(--line);
  background: var(--ivory);
}

.legal-content,
.legal-section {
  max-width: 860px;
  margin: 0 auto;
}

.legal-content h2,
.legal-section h2 { margin-bottom: 32px; font-size: 2.5rem; }
.legal-content h3,
.legal-section h3 { margin-top: 38px; font-size: 1.55rem; }

footer {
  padding: 54px 0 28px;
  color: rgba(255, 255, 255, 0.65);
  background: #0b211b;
  font-size: 0.8rem;
}

footer strong {
  color: #fff;
  font-family: var(--display);
  font-size: 1.18rem;
  font-weight: 600;
}

footer a { color: rgba(255, 255, 255, 0.76); text-decoration: none; }
footer a:hover { color: var(--brass-light); }

.footer-mark {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-right: 12px;
  border: 1px solid rgba(217, 195, 159, 0.55);
  color: var(--brass-light);
  font-weight: 800;
}

@media (max-width: 1199.98px) {
  .navbar-brand { font-size: 1.3rem; }
  .navbar-er .nav-link { padding-right: 8px !important; padding-left: 8px !important; font-size: 0.75rem; }
  .navbar-er .btn-nav { padding-right: 14px !important; padding-left: 14px !important; }
  .hero-er { min-height: 710px; }
}

@media (max-width: 991.98px) {
  .navbar-er { min-height: 74px; }
  .navbar-collapse {
    max-height: calc(100vh - 74px);
    overflow-y: auto;
    margin-top: 13px;
    padding: 18px;
    border-top: 1px solid var(--line);
    background: var(--paper);
  }

  .navbar-nav { align-items: stretch !important; gap: 2px; }
  .navbar-er .btn-nav { margin-top: 10px; }
  .dropdown-menu { box-shadow: none; }

  .hero-er {
    min-height: auto;
    padding: 122px 0 0;
  }

  .hero-er::before {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    display: block;
    width: 100%;
    height: 510px;
    margin-top: 58px;
    background-position: center 12%;
  }

  .hero-er::after { display: none; }
  .hero-content { width: 100%; }
  .hero-er h1 { max-width: 760px; }
  .hero-caption { display: none; }

  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { margin-bottom: 20px; }
  .trust-item:nth-child(3) { padding-left: 0; }

  .intro-grid { grid-template-columns: 1fr; gap: 50px; }
  .intro-image { min-height: 500px; }
  .intro-image img { height: 500px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .practice-band { min-height: 560px; }
  .hours-wrap { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-card { min-height: auto; }
  .contact-cards-row .contact-card { min-height: 156px; }
  .service-lead-grid { grid-template-columns: 1fr; gap: 46px; }
  .service-content-grid { grid-template-columns: 1fr; margin-top: 64px; }
}

@media (max-width: 767.98px) {
  [data-aos] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .section-pad { padding: 78px 0; }
  .hero-er h1 { font-size: 3.5rem; }
  .hero-er::before { height: 430px; background-size: auto 500px; }
  .hero-caption { right: 15px; bottom: 15px; }
  .section-title { margin-bottom: 40px; }
  .intro-image { min-height: 420px; }
  .intro-image img { height: 420px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 0; }
  .service-number { margin-bottom: 32px; }
  .practice-band { min-height: 500px; padding: 60px 0; background-position: 60% center; }
  .hours-intro { padding: 40px 32px; }
  .hours-table { padding: 20px 30px; }
  .hours-table tr { grid-template-columns: 0.55fr 1fr 1fr; }
  .hours-table td { padding: 20px 6px; font-size: 0.78rem; }
  .page-header { margin-top: 74px; padding: 74px 0 56px !important; }
  main > section.py-5 { padding: 70px 0 !important; }
  main > section .row.g-5 { --bs-gutter-x: 1.5rem; }
  .service-detail { padding: 70px 0 78px; }
  .service-panel,
  .service-process { padding: 38px 34px; }
  .service-next { padding: 62px 0; text-align: center; }
}

@media (max-width: 575.98px) {
  body { font-size: 15px; }
  .navbar-brand { padding-left: 44px; font-size: 1.12rem; }
  .navbar-brand::before { width: 34px; height: 34px; font-size: 0.58rem; }
  .navbar-brand::after { font-size: 0.4rem; }

  .hero-er { padding-top: 112px; padding-bottom: 28px; }
  .hero-er h1 { margin-bottom: 20px; font-size: 3rem; }
  .hero-er .lead { font-size: 0.97rem; }
  .hero-facts { display: grid; grid-template-columns: 1fr; gap: 7px; }
  .hero-cta-group { flex-direction: column; }
  .hero-cta-group a { width: 100%; }
  .hero-er::before { height: 390px; margin-top: 44px; background-position: center 10%; background-size: auto 440px; }

  .trust-er { padding: 24px 0; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { min-height: 56px; margin: 0 !important; padding: 12px 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); }
  .trust-item:last-child { border-bottom: 0; }

  .section-pad { padding: 66px 0; }
  .section-title h2 { font-size: 2.55rem; }
  .intro-grid { gap: 38px; }
  .intro-image { min-height: 345px; }
  .intro-image img { width: 100%; height: 345px; }
  .intro-copy h2 { font-size: 2.55rem; }
  .intro-copy .lead { font-size: 1.25rem; }
  .service-card { padding: 28px; }
  .practice-band { min-height: 580px; align-items: flex-end; background-position: 65% center; }
  .practice-band::before { background: linear-gradient(0deg, rgba(16,45,38,.94) 0%, rgba(16,45,38,.62) 58%, rgba(16,45,38,.05) 100%); }

  .hours-intro { padding: 40px 32px; }
  .hours-intro h2 { font-size: 2.15rem; line-height: 1.16; }
  .hours-table { padding: 14px 30px 18px; }
  .hours-wrap { overflow: hidden; }
  .hours-table table,
  .hours-table tbody { display: block; width: 100%; }
  .hours-table tr { display: block; padding: 19px 0; }
  .hours-table td { display: block; padding: 4px 0; }
  .hours-table td:first-child { margin-bottom: 7px; }
  .hours-table td:first-child::before { display: none; }
  .cta-er { padding: 64px 0; text-align: center; }
  .cta-er .text-lg-end { text-align: center !important; }
  .contact-card { padding: 26px; }
  .contact-cards-row .contact-card { min-height: auto; }
  .service-copy h2 { font-size: 2.5rem; }
  .service-copy .service-opening { font-size: 1.22rem; }
  .service-visual { padding: 0; }
  .service-content-grid { margin-top: 54px; }
  .service-panel,
  .service-process { padding: 32px 26px; }
  .service-panel h2,
  .service-process h2 { font-size: 2.12rem; }
  .service-steps li { padding-left: 62px; }
  .page-header h1 {
    font-size: 2.35rem !important;
    hyphens: auto;
    overflow-wrap: normal;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}
