* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "IBM Plex Serif", serif;
  font-size: clamp(15px, 2vw, 17px);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

html {
  scroll-behavior: smooth;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid #b30018;
  outline-offset: 3px;
  border-radius: 2px;
}

* {
  -webkit-tap-highlight-color: transparent;
}

:root {
  --real-vh: 1vh;
}

/* ── Logo ── */
.navBar .logoContainer {
  position: absolute;
  top: 0;
  opacity: 1;
  transition: opacity 1.5s ease;
}

.navBar.Active .logoContainer {
  margin-top: auto;
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.navBar img {
  width: clamp(60px, 8vw, 76px);
  height: clamp(60px, 8vw, 76px);
  display: block;
}

/* ── Core nav bar ── */
.navContainer {
  width: 100%;
  height: 100%;
}

.navBar {
  display: flex;
  width: 100%;
  background: #ffffff;
  border-bottom: 2px solid #b30018;
  height: 72px;
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  transition: height 0.5s cubic-bezier(0.77, 0, 0.175, 1), background-color 0.3s ease;
  overflow-y: hidden;
  transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

/* ── Desktop link list (hidden on mobile) ── */
.navBar ul {
  display: none;
  margin: 0;
  padding: 0;
  list-style: none;
}

.navBar ul li a {
  text-decoration: none;
  padding: 10px 14px;
  color: rgba(0,0,0,0.65);
  display: block;
  font-family: "IBM Plex Serif", serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.navBar ul li a:hover {
  color: #b30018;
}

/* ── Book Now CTA ── */
.navBar .Nav-consultation-button {
  background: #b30018;
  color: white !important;
  padding: 10px 20px;
  border-radius: 4px;
  font-size: 12px !important;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  transition: background 0.2s ease;
}

.navBar .Nav-consultation-button:hover {
  background: #8a0012;
  color: white !important;
  transform: none;
  box-shadow: none;
  filter: none;
  opacity: 1;
  border: none;
}

/* ── Hamburger button ── */
.Navbtn {
  width: 32px;
  height: 32px;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.navBar .Navbtn,
.Active .Navbtn {
  position: absolute;
  top: 36px;
}

.line1,
.line2,
.line3 {
  display: block;
  width: 24px;
  height: 2px;
  background-color: rgba(0,0,0,0.75);
  transition: all 0.3s;
}

.line2 {
  background-color: #b30018;
}

/* ── Mobile menu (Active state) ── */
.Active {
  height: calc(var(--real-vh, 1vh) * 100);
  background: #ffffff;
}

/* Red accent bar that grows in from the left */
.Active::before {
  content: "";
  position: absolute;
  left: 0;
  top: 72px;
  width: 0;
  height: 3px;
  background: #b30018;
  animation: accentLine 0.6s 0.2s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

@keyframes accentLine {
  to { width: 100%; }
}

.Active .line2 {
  opacity: 0;
  transform: scaleX(0);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.Active .line1 {
  transform: rotate(45deg) translate(5px, 5px);
  transition: all 0.35s cubic-bezier(0.77, 0, 0.175, 1);
  width: 22px;
  background-color: #b30018;
}

.Active .line3 {
  transform: rotate(-45deg) translate(5px, -5px);
  transition: all 0.35s cubic-bezier(0.77, 0, 0.175, 1);
  width: 22px;
  background-color: #b30018;
}

.Active ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  list-style: none;
  margin: 0;
  padding: 0 20px;
  gap: 4px;
  width: 100%;
}

.Active ul li a {
  font-weight: 700;
  font-size: clamp(18px, 5vw, 26px) !important;
  color: rgba(0,0,0,0.0);
  line-height: 1.4;
  opacity: 0;
  transform: translateX(40px);
  white-space: nowrap;
  letter-spacing: 0.03em;
  transition: color 0.2s ease;
  display: inline-block;
}

.Active ul li a:hover {
  color: #b30018 !important;
}

.Active .Nav-consultation-button {
  background: #b30018 !important;
  color: white !important;
  padding: 13px 32px !important;
  border-radius: 4px;
  border: none !important;
  font-size: clamp(13px, 3.5vw, 16px) !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateX(40px);
}

.Active .Nav-consultation-button:hover {
  background: #8a0012 !important;
  color: white !important;
  border: none !important;
}

/* ── Staggered slide-from-right animation (8 items) ── */
.Active ul li:nth-child(1) a { animation: slideFromRight 0.45s 0.18s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards; }
.Active ul li:nth-child(2) a { animation: slideFromRight 0.45s 0.24s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards; }
.Active ul li:nth-child(3) a { animation: slideFromRight 0.45s 0.30s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards; }
.Active ul li:nth-child(4) a { animation: slideFromRight 0.45s 0.36s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards; }
.Active ul li:nth-child(5) a { animation: slideFromRight 0.45s 0.42s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards; }
.Active ul li:nth-child(6) a { animation: slideFromRight 0.45s 0.48s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards; }
.Active ul li:nth-child(7) a { animation: slideFromRight 0.45s 0.54s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards; }
.Active ul li:nth-child(8) a { animation: slideFromRight 0.45s 0.60s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards; }

@keyframes slideFromRight {
  to {
    opacity: 1;
    color: rgba(0,0,0,0.8);
    transform: translateX(0);
  }
}

/* ── Tablet image fix ── */
@media (min-width: 768px) {
  .navBar img {
    margin-top: 50%;
    transform: translateY(-60%);
  }
}

/* ── Desktop horizontal nav ── */
@media (min-width: 1200px) {
  .navBar {
    justify-content: flex-start;
    background: #ffffff;
  }

  .navBar ul {
    display: flex !important;
    flex-direction: row;
    position: static;
    transform: none;
    margin: 0 0 0 auto;
    padding: 0 24px 0 0;
    align-items: center;
    height: 100%;
  }

  .navBar ul li {
    margin: 0;
  }

  .navBar ul li a {
    opacity: 1 !important;
    transform: none;
    animation: none !important;
    font-size: 13px;
    padding: 10px 12px;
    color: rgba(0,0,0,0.6);
    letter-spacing: 0.06em;
    font-weight: 500;
    position: relative;
  }

  .navBar ul li a::after {
    content: "";
    position: absolute;
    bottom: 5px;
    left: 12px;
    right: 12px;
    height: 1px;
    background: #b30018;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
  }

  .navBar ul li a:hover {
    color: #0d0d0d;
    text-decoration: none;
  }

  .navBar ul li a:hover::after {
    transform: scaleX(1);
  }

  .navBar .Nav-consultation-button {
    font-size: 11px !important;
    padding: 9px 18px;
    letter-spacing: 0.12em;
    margin-left: 8px;
  }

  .navBar .Nav-consultation-button::after {
    display: none;
  }

  .Navbtn {
    display: none;
  }

  .Active {
    height: 72px;
  }

  .Active ul {
    position: static;
    transform: none;
    display: flex !important;
    flex-direction: row;
    text-align: left;
  }

  .Active ul li a {
    font-size: 13px !important;
    letter-spacing: 0.06em;
  }
}

/* ════════════════════════════════════════════════════════════════
   FOOTER — dark premium, shared across all pages
   ════════════════════════════════════════════════════════════════ */

footer {
  background: #0d0d0d !important;
  color: rgba(255,255,255,0.55) !important;
  padding: 48px 24px 28px !important;
  font-family: "IBM Plex Serif", serif;
  font-size: 14px;
}

footer .footer-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

footer .footer-col {
  flex: 1 1 160px;
  min-width: 140px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

footer .footer-col > p {
  margin: 0 0 4px;
  line-height: 1.6;
}

footer .footer-heading {
  font-size: 11px !important;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35) !important;
  margin-bottom: 14px !important;
}

footer .footer-brand {
  font-size: 18px !important;
  font-weight: 700;
  color: white !important;
  margin-bottom: 6px !important;
  line-height: 1.2 !important;
}

footer .footer-tagline {
  font-size: 12px !important;
  color: rgba(255,255,255,0.38) !important;
  letter-spacing: 0.04em;
  margin: 0 !important;
  padding: 0 !important;
  line-height: 1.7 !important;
}

footer .footer-col a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 4px 0;
  color: rgba(255,255,255,0.55) !important;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

footer .footer-col a:hover {
  color: #b30018 !important;
}

footer .footer-col a img {
  opacity: 0.65;
  transition: opacity 0.2s;
  flex-shrink: 0;
}

footer .footer-col a:hover img {
  opacity: 1;
}

footer .footer-bottom {
  max-width: 1100px;
  margin: 24px auto 0;
  text-align: center;
}

footer .footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.28) !important;
  margin: 0;
  width: auto;
  text-align: center;
}

footer .footer-bottom a {
  color: rgba(255,255,255,0.35) !important;
  text-decoration: none;
  transition: color 0.2s;
  display: inline;
  font-size: inherit;
  margin: 0;
  padding: 0;
}

footer .footer-bottom a:hover {
  color: #b30018 !important;
}

/* Stack footer on small screens */
@media (max-width: 600px) {
  footer .footer-columns {
    flex-direction: column;
    gap: 28px;
  }
  footer .footer-col {
    flex-basis: auto;
  }
}
