/* ==================================================
   ROOT VARIABLES
================================================== */

:root {
  --bg: #f5f5f3;
  --surface: #fff;
  --ink: #111;
  --muted: #6c6c69;
  --line: #dcdcd7
}


.container {
  width: min(1400px, calc(100% - 130px)) !important;
  max-width: 1400px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 0 !important;
  padding-right: 0 !important
}

@media (max-width: 768px) {


  .container {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
}

* {
  box-sizing: border-box
}

html {
  top: 0 !important;
  scroll-behavior: smooth;
  scroll-padding-top: 70px;
}

body {
  position: static !important;
  top: 0 !important;
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit
}

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

button,
input,
select,
textarea {
  font: inherit
}

button {
  cursor: pointer
}

/* ==================================================
   HEADER
================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  width: 100%;
  background: rgba(245, 245, 243, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.main-navbar {
  position: relative;
  min-height: 82px;
  padding-top: 12px;
  padding-bottom: 12px;

  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: nowrap;
}


/* ==================================================
   BRAND
================================================== */

.header-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  min-width: 0;
  max-width: clamp(210px, 27vw, 390px);
  margin-right: auto;

  color: var(--ink);
  text-decoration: none;
  flex: 0 1 auto;
}

.header-brand:hover {
  color: var(--ink);
}

.brand-mark {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;

  display: grid;
  place-items: center;

  background: var(--ink);
  border: 1px solid var(--ink);
  color: #fff;

  font-size: 18px;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.header-brand:hover .brand-mark {
  background: transparent;
  color: var(--ink);
  transform: rotate(-4deg);
}

.brand-name {
  display: block;
  min-width: 0;
  max-width: 100%;

  font-size: clamp(1rem, 1.45vw, 1.22rem);
  font-weight: 950;
  line-height: 1.08;
  letter-spacing: -0.035em;

  overflow-wrap: anywhere;
  word-break: break-word;
}


/* ==================================================
   LANGUAGE BOX
================================================== */

.language-box {
  position: relative;
  z-index: 1002;

  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.lang-btn {
  width: 44px;
  height: 44px;
  padding: 0;

  display: grid;
  place-items: center;

  border: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  color: var(--ink);

  font-size: 18px;
  cursor: pointer;

  transition:
    background 0.22s ease,
    color 0.22s ease,
    border-color 0.22s ease;
}

.lang-btn:hover,
.lang-btn[aria-expanded="true"] {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.language-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;

  min-width: 220px;
  padding: 14px;

  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 18px 45px rgba(15, 15, 15, 0.14);

  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);

  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    visibility 0.2s ease;
}

.language-dropdown.active {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}


/* ==================================================
   DESKTOP NAVIGATION
================================================== */

.main-navigation {
  display: block;
  flex: 0 0 auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: nowrap;
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 11px;

  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;

  transition:
    background 0.22s ease,
    color 0.22s ease;
}

.nav-link:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 11px;
  right: 11px;
  bottom: 7px;

  height: 2px;
  background: var(--ink);

  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.nav-link:not(.nav-cta):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  min-height: 48px;
  margin-left: 6px;
  padding: 0 18px;

  gap: 10px;

  background: var(--ink);
  border: 1px solid var(--ink);
  color: #fff;
}

.nav-cta:hover {
  background: transparent;
  color: var(--ink);
}

.nav-cta i {
  font-size: 12px;
  transition: transform 0.22s ease;
}

.nav-cta:hover i {
  transform: translateX(3px);
}


/* ==================================================
   MOBILE MENU BUTTON
================================================== */

.menu-toggle {
  width: 44px;
  height: 44px;
  padding: 0;

  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;

  flex: 0 0 44px;

  background: transparent;
  border: 1px solid var(--line);
  border-radius: 0;
  cursor: pointer;
}

.menu-toggle span {
  width: 19px;
  height: 2px;
  display: block;

  background: var(--ink);
  transition:
    transform 0.25s ease,
    opacity 0.2s ease;
}

.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);
}


/* ==================================================
   FINAL MOBILE HEADER TOGGLE
   KEEP THIS AT THE END OF THE CSS FILE
================================================== */

@media (max-width: 1100px) {

  .site-header .main-navbar {
    flex-wrap: wrap;
  }

  .site-header .header-brand {
    max-width: calc(100% - 124px);
  }

  /* Toggle button */
  .site-header .menu-toggle {
    position: relative;
    z-index: 1005;

    display: flex;
    flex: 0 0 44px;

    pointer-events: auto;
  }

  /* Navigation wrapper controls open/close */
  .site-header .main-navigation {
    position: static !important;
    inset: auto !important;

    width: 100%;
    flex: 0 0 100%;

    display: grid !important;
    grid-template-rows: 0fr;

    visibility: hidden;
    opacity: 0;
    pointer-events: none;

    transition:
      grid-template-rows 0.3s ease,
      visibility 0.3s ease,
      opacity 0.25s ease;
  }

  /* Override any old .nav-links display:none rule */
  .site-header .main-navigation>.nav-links {
    position: static !important;
    inset: auto !important;

    width: 100%;
    min-width: 0;
    min-height: 0;
    margin: 0;
    padding: 0;

    display: flex !important;
    flex-direction: column;
    align-items: stretch;
    gap: 0;

    overflow: hidden;

    background: transparent;
    border: 0;
    border-radius: 0;
  }

  /* Open navigation */
  .site-header.is-menu-open .main-navigation {
    grid-template-rows: 1fr;

    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }

  .site-header.is-menu-open .main-navigation>.nav-links {
    padding-top: 12px;
    padding-bottom: 4px;

    border-top: 1px solid var(--line);
  }

  /* Mobile links */
  .site-header .nav-link {
    width: 100%;
    min-height: 48px;
    padding: 0 4px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border-bottom: 1px solid var(--line);

    font-size: 0.92rem;
  }

  .site-header .nav-link:not(.nav-cta)::after {
    display: none;
  }

  .site-header .nav-link:not(.nav-cta)::before {
    content: "↗";
    order: 2;

    font-size: 13px;
    opacity: 0.45;
  }

  .site-header .nav-cta {
    min-height: 52px;
    margin: 12px 0 4px;
    padding: 0 18px;

    justify-content: center;

    background: var(--ink);
    border: 1px solid var(--ink);
    color: var(--surface);
  }

  /* Toggle becomes close icon */
  .site-header.is-menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .site-header.is-menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

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


/* ==================================================
   HEADER MOBILE
================================================== */

@media (max-width: 640px) {

  .site-header .main-navbar {
    min-height: 70px;
    padding-top: 10px;
    padding-bottom: 10px;
    gap: 8px;
  }

  .site-header .header-brand {
    gap: 9px;
    max-width: calc(100% - 104px);
  }

  .site-header .brand-mark {
    width: 42px;
    height: 42px;
    flex-basis: 42px;

    font-size: 16px;
  }

  .site-header .brand-name {
    display: -webkit-box;
    overflow: hidden;

    font-size: 0.96rem;
    line-height: 1.08;

    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }

  .site-header .lang-btn,
  .site-header .menu-toggle {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .site-header .language-dropdown {
    position: fixed;
    top: 72px;
    right: 12px;
    left: 12px;

    width: auto;
    min-width: 0;
  }
}


/* ==================================================
   HEADER SMALL MOBILE
================================================== */

@media (max-width: 390px) {

  .site-header .main-navbar {
    gap: 6px;
  }

  .site-header .header-brand {
    gap: 7px;
    max-width: calc(100% - 96px);
  }

  .site-header .brand-mark {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .site-header .brand-name {
    font-size: 0.84rem;
  }

  .site-header .lang-btn,
  .site-header .menu-toggle {
    width: 39px;
    height: 39px;
    flex-basis: 39px;
  }
}

/* ==================================================
   GOOGLE TRANSLATE OVERRIDES
================================================== */

.goog-te-banner-frame,
.goog-te-banner-frame.skiptranslate {
  display: none !important;
  height: 0 !important;
  visibility: hidden !important;
}

.skiptranslate {
  display: none !important;
}

/* Keep the translate control inside the language button clickable. */
.language-box .skiptranslate {
  display: block !important;
}

#google_translate_element {
  position: absolute !important;
  inset: 0;
  z-index: 5;
  width: 42px !important;
  height: 42px !important;
  overflow: hidden !important;
  opacity: 0;
}

#google_translate_element select {
  width: 42px !important;
  min-height: 42px;
  height: 42px !important;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 0;
  outline: none;
  background: #fff;
  color: var(--ink);
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

/* Hide Google Translate loaders and temporary overlays. */
.goog-te-spinner-pos,
.goog-te-spinner,
.goog-te-spinner-animation {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  visibility: hidden !important;
  opacity: 0 !important;
}

.VIpgJd-ZVi9od-aZ2wEe-wOHMyf,
.VIpgJd-ZVi9od-aZ2wEe-OiiCO {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
}

iframe.skiptranslate,
.skiptranslate iframe {
  display: none !important;
  height: 0 !important;
}

/* Prevent scrolling while mobile navigation is open */
body.menu-open {
  overflow: hidden;
}

/* ==================================================
   HERO
================================================== */

.hero {
  padding: 32px 0 70px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.08fr);
  align-items: stretch;

  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
}


/* ==================================================
   HERO CONTENT
================================================== */

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;

  min-width: 0;
  padding: 54px 48px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;

  margin: 0;

  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 720px;
  margin: 20px 0 22px;

  font-family: Georgia, serif;
  font-size: clamp(3.5rem, 5vw, 6.4rem);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.052em;
}

.hero p {
  max-width: 570px;
  margin: 0;

  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.72;
}


/* ==================================================
   HERO BUTTONS
================================================== */

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;

  margin-top: 28px;
}

.hero-actions .btn {
  min-width: 154px;
  min-height: 46px;
  padding: 0 20px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border: 1px solid var(--ink);
  border-radius: 0;

  font-size: 0.86rem;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  text-decoration: none;

  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.hero-actions .btn.dark {
  background: var(--ink);
  color: #fff;
}

.hero-actions .btn.dark:hover {
  background: transparent;
  color: var(--ink);
  transform: translateY(-2px);
}

.hero-actions .btn.light {
  background: transparent;
  color: var(--ink);
}

.hero-actions .btn.light:hover {
  background: var(--ink);
  color: #fff;
  transform: translateY(-2px);
}


/* ==================================================
   HERO IMAGE
================================================== */

.hero-photo {
  position: relative;
  min-width: 0;
  min-height: 500px;
  overflow: hidden;
}

.hero-photo img {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  display: block;
  object-fit: cover;
  object-position: center;
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;

  pointer-events: none;

  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0.02) 0%,
      rgba(0, 0, 0, 0.25) 100%);
}


/* ==================================================
   METRICS
================================================== */

.metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));

  background: var(--surface);
  border-inline: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.metric {
  min-width: 0;
  padding: 20px 22px;

  border-right: 1px solid var(--line);
}

.metric:last-child {
  border-right: 0;
}

.metric b {
  display: block;

  font-family: Georgia, serif;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.1;
}

.metric span {
  display: block;
  margin-top: 5px;

  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.4;
}


/* ==================================================
   MEDIUM DESKTOP
================================================== */

@media (max-width: 1100px) {

  .hero-copy {
    padding: 46px 36px;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 5.5vw, 5.4rem);
  }

  .hero-photo {
    min-height: 540px;
  }
}


/* ==================================================
   TABLET AND MOBILE
================================================== */

@media (max-width: 860px) {

  .hero {
    padding: 24px 0 56px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "media"
      "description"
      "actions";
  }

  /*
     * Allows the heading and eyebrow to share
     * the image grid area without changing HTML.
     */
  .hero-copy {
    display: contents;
  }

  .hero-photo {
    grid-area: media;
    min-height: 420px;
  }

  .hero-photo img {
    object-position: center;
  }

  .hero-photo::after {
    background: linear-gradient(180deg,
        rgba(0, 0, 0, 0.08) 0%,
        rgba(0, 0, 0, 0.12) 40%,
        rgba(0, 0, 0, 0.8) 100%);
  }

  .eyebrow {
    position: relative;
    grid-area: media;
    align-self: start;
    justify-self: start;
    z-index: 2;

    margin: 22px;
    padding: 8px 10px;

    background: rgba(17, 17, 17, 0.72);
    color: #fff;

    font-size: 0.65rem;

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }

  .hero h1 {
    position: relative;
    grid-area: media;
    align-self: end;
    z-index: 2;

    max-width: 740px;
    margin: 0;
    padding: 0 24px 28px;

    color: #fff;
    font-size: clamp(3rem, 10vw, 5.5rem);
    line-height: 0.9;
    letter-spacing: -0.045em;

    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
  }

  .hero p {
    grid-area: description;

    max-width: none;
    margin: 0;
    padding: 24px 24px 0;

    font-size: 1rem;
    line-height: 1.7;
  }

  .hero-actions {
    grid-area: actions;

    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;

    margin: 0;
    padding: 20px 24px 28px;
  }

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

  .metric {
    padding: 17px 14px;
    text-align: center;
  }

  .metric b {
    font-size: 1.75rem;
  }

  .metric span {
    font-size: 0.76rem;
  }
}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 560px) {

  .hero {
    padding-top: 16px;
    padding-bottom: 46px;
  }

  .hero-photo {
    min-height: 350px;
  }

  .eyebrow {
    margin: 16px;
    padding: 7px 9px;

    font-size: 0.6rem;
    letter-spacing: 0.14em;
  }

  .hero h1 {
    padding: 0 18px 22px;

    font-size: clamp(2.8rem, 13vw, 4.2rem);
    line-height: 0.91;
  }

  .hero p {
    padding: 20px 18px 0;

    font-size: 0.94rem;
    line-height: 1.65;
  }

  .hero-actions {
    padding: 18px 18px 24px;
  }

  .hero-actions .btn {
    min-height: 44px;
    padding: 0 12px;

    font-size: 0.78rem;
  }

  .metric {
    padding: 14px 8px;
  }

  .metric b {
    font-size: 1.45rem;
  }

  .metric span {
    margin-top: 4px;

    font-size: 0.67rem;
    line-height: 1.3;
  }
}


/* ==================================================
   SMALL MOBILE
================================================== */

@media (max-width: 390px) {

  .hero-photo {
    min-height: 320px;
  }

  .hero h1 {
    padding-right: 16px;
    padding-bottom: 20px;
    padding-left: 16px;

    font-size: 2.75rem;
  }

  .hero p {
    padding-right: 16px;
    padding-left: 16px;
  }

  .hero-actions {
    grid-template-columns: 1fr;

    padding-right: 16px;
    padding-left: 16px;
  }

  .hero-actions .btn {
    min-height: 46px;
  }

  .metric {
    padding: 13px 5px;
  }

  .metric b {
    font-size: 1.3rem;
  }

  .metric span {
    font-size: 0.62rem;
  }
}

/* ==================================================
   SHARED SECTION STYLES
================================================== */

.section {
  padding: 70px 0;
}

.section-head {
  display: grid;
  grid-template-columns: 0.3fr 1.7fr;
  gap: 36px;
  align-items: start;
  margin-bottom: 42px;
}

.section-head>* {
  min-width: 0;
}

.section-head h2 {
  margin: 0;

  color: var(--ink);
  font-family: Georgia, serif;
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.section-head p {
  max-width: 580px;
  margin: 16px 0 0;

  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}


/* ==================================================
   TABLET
================================================== */

@media (max-width: 900px) {

  .section {
    padding: 75px 0;
  }

  .section-head {
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 24px;
    margin-bottom: 34px;
  }

  .section-head h2 {
    font-size: clamp(2rem, 5vw, 3.4rem);
    line-height: 0.98;
  }
}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 600px) {

  .section {
    padding: 60px 0;
  }

  .section-head {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;

    margin-bottom: 28px;
  }

  .section-head h2 {
    max-width: 100%;

    font-size: clamp(2rem, 9vw, 2.8rem);
    line-height: 1;
    letter-spacing: -0.04em;
  }

  .section-head p {
    max-width: 100%;
    margin-top: 13px;

    font-size: 0.9rem;
    line-height: 1.65;
  }
}


/* ==================================================
   SMALL MOBILE
================================================== */

@media (max-width: 390px) {

  .section {
    padding: 52px 0;
  }

  .section-head {
    margin-bottom: 24px;
  }

  .section-head h2 {
    font-size: 2rem;
    line-height: 1.02;
  }

  .section-head p {
    font-size: 0.86rem;
  }
}

/* ==================================================
   SMALL MOBILE
================================================== */

@media (max-width: 390px) {

  .section {
    padding: 50px 0;
  }

  .section-head {
    gap: 12px;
    margin-bottom: 24px;
  }

  .section-head h2 {
    font-size: 2.15rem;
    line-height: 1;
  }

  .section-head p {
    font-size: 0.84rem;
  }
}

/* ==================================================
   OFFER SECTION
================================================== */

.offer-card {
  right: 16px;
  top: 46px;
}

.offer-card strong {
  display: block;
  color: var(--ink);
  font-size: 26px;
}


/* ==================================================
   OFFER STRIP
================================================== */

.offer-strip {
  padding: 22px 0;
  background: var(--ink);
  color: var(--surface);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}


/* ==================================================
   OFFER LABEL
================================================== */

.strip-inner>span {
  flex-shrink: 0;

  color: var(--surface);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}


/* ==================================================
   OFFER TEXT
================================================== */

.offer-text-wrap {
  position: relative;

  flex: 1;
  min-width: 0;
  height: 28px;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;
}

.offer-item {
  position: absolute;
  top: 0;
  left: 50%;

  width: auto;
  max-width: 100%;
  margin: 0;

  color: var(--line);
  font-size: 0.9rem;
  line-height: 1.6;
  text-align: center;
  white-space: nowrap;

  opacity: 0;
  transform: translateX(calc(-50% + 100vw));

  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.offer-item.active {
  opacity: 1;
  transform: translateX(-50%);
}

.offer-item.exit {
  opacity: 0;
  transform: translateX(calc(-50% - 100vw));
}


/* ==================================================
   OFFER LINK
================================================== */

.strip-inner>a {
  position: relative;
  flex-shrink: 0;

  color: var(--surface);
  font-size: 0.86rem;
  font-weight: 800;
  text-decoration: none;
}

.strip-inner>a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;

  height: 1px;
  background: var(--muted);

  transform: scaleX(1);
  transform-origin: left;

  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.strip-inner>a:hover::after {
  background: var(--surface);
  transform: scaleX(0.7);
}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 768px) {

  .offer-strip {
    padding: 18px 0;
  }

  .strip-inner {
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 8px;
    text-align: center;
  }

  .strip-inner>span {
    font-size: 0.72rem;
  }

  .offer-text-wrap {
    flex: none;

    width: 100%;
    height: 42px;
  }

  .offer-item {
    width: 92%;
    max-width: 520px;

    color: var(--line);
    font-size: 0.76rem;
    line-height: 1.45;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .strip-inner>a {
    font-size: 0.78rem;
  }
}

/* ==================================================
   PROFILE SECTION
================================================== */

.profile-section {
  background: var(--bg);
}

.profile {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;

  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
}


/* ==================================================
   PROFILE IMAGE
================================================== */

.profile-media {
  position: relative;
  min-width: 0;
  min-height: 590px;
  overflow: hidden;

  background: var(--bg);
}

.profile-media img {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  display: block;
  object-fit: cover;
  object-position: center;

  filter: grayscale(100%);
  transition:
    filter 0.4s ease,
    transform 0.7s ease;
}

.profile-media:hover img {
  filter: grayscale(35%);
  transform: scale(1.025);
}

.profile-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;

  pointer-events: none;

  background: linear-gradient(180deg,
      rgba(17, 17, 17, 0.02) 30%,
      rgba(17, 17, 17, 0.62) 100%);
}


/* ==================================================
   FLOATING PROFILE FACTS
================================================== */

.profile-facts {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;

  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;

  overflow: hidden;
  background: var(--line);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 20px 45px rgba(17, 17, 17, 0.2);
}

.profile-fact {
  min-width: 0;
  min-height: 76px;
  padding: 14px;

  display: flex;
  align-items: center;
  gap: 11px;

  background: rgba(255, 255, 255, 0.93);
  color: var(--ink);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.profile-fact i {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;

  display: grid;
  place-items: center;

  background: var(--ink);
  color: var(--surface);

  font-size: 0.78rem;
}

.profile-fact span {
  min-width: 0;

  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.35;
}


/* ==================================================
   PROFILE CONTENT
================================================== */

.profile-copy {
  min-width: 0;
  padding: 54px 52px;

  display: flex;
  flex-direction: column;
  justify-content: center;

  background: var(--surface);
}

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

.profile-copy h2 {
  max-width: 690px;
  margin: 0;

  color: var(--ink);
  font-family: Georgia, serif;
  font-size: clamp(3rem, 4.5vw, 5.5rem);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.052em;
}

.profile-copy>p {
  max-width: 650px;
  margin: 20px 0 0;

  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.75;
}

.profile-copy>p+p {
  margin-top: 12px;
}


/* ==================================================
   LANGUAGES
================================================== */

.profile-languages {
  margin-top: 28px;
  padding-top: 22px;

  border-top: 1px solid var(--line);
}

.language-title {
  display: block;
  margin-bottom: 12px;

  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.language-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.language-list span {
  min-height: 38px;
  padding: 0 14px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: var(--bg);
  border: 1px solid var(--line);
  color: var(--ink);

  font-size: 0.82rem;
  font-weight: 800;
}


/* ==================================================
   PROFILE BUTTON
================================================== */

.profile-btn {
  width: fit-content;
  min-height: 48px;
  margin-top: 28px;
  padding: 0 19px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  background: var(--ink);
  border: 1px solid var(--ink);
  color: var(--surface);

  font-size: 0.84rem;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;

  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.profile-btn:hover {
  background: transparent;
  color: var(--ink);
  transform: translateY(-2px);
}

.profile-btn i {
  font-size: 0.7rem;
  transition: transform 0.25s ease;
}

.profile-btn:hover i {
  transform: translateX(3px);
}


/* ==================================================
   MEDIUM DESKTOP
================================================== */

@media (max-width: 1100px) {

  .profile-media {
    min-height: 560px;
  }

  .profile-copy {
    padding: 44px 38px;
  }

  .profile-copy h2 {
    font-size: clamp(3rem, 4.8vw, 4.5rem);
  }

  .profile-facts {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .profile-fact {
    min-height: 70px;
    padding: 12px;
  }
}


/* ==================================================
   TABLET
================================================== */

@media (max-width: 860px) {

  .profile {
    grid-template-columns: minmax(0, 1fr);
    overflow: visible;
  }

  .profile-media {
    min-height: 500px;
    overflow: visible;
  }

  .profile-media img {
    position: absolute;
    overflow: hidden;
  }

  .profile-facts {
    left: 20px;
    right: 20px;
    bottom: -58px;
  }

  .profile-copy {
    padding: 100px 30px 40px;
  }

  .profile-copy h2 {
    max-width: 720px;
    font-size: clamp(3rem, 8vw, 5rem);
  }

  .profile-copy>p {
    max-width: 720px;
  }
}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 560px) {

  .profile-media {
    min-height: 390px;
  }

  .profile-media img {
    object-position: center;
  }

  .profile-facts {
    left: 14px;
    right: 14px;
    bottom: -74px;
  }

  .profile-fact {
    min-height: 68px;
    padding: 10px;
    gap: 8px;
  }

  .profile-fact i {
    width: 30px;
    height: 30px;
    flex-basis: 30px;

    font-size: 0.68rem;
  }

  .profile-fact span {
    font-size: 0.72rem;
  }

  .profile-copy {
    padding: 108px 20px 32px;
  }

  .profile-copy .eyebrow {
    margin-bottom: 15px;
  }

  .profile-copy h2 {
    font-size: clamp(2.7rem, 12vw, 4rem);
    line-height: 0.92;
  }

  .profile-copy>p {
    margin-top: 17px;

    font-size: 0.89rem;
    line-height: 1.68;
  }

  .profile-copy>p+p {
    margin-top: 10px;
  }

  .profile-languages {
    margin-top: 23px;
    padding-top: 19px;
  }

  .language-list {
    gap: 7px;
  }

  .language-list span {
    flex: 1 1 auto;
    min-height: 38px;
    padding: 0 11px;

    font-size: 0.76rem;
  }

  .profile-btn {
    width: 100%;
    min-height: 48px;
    margin-top: 24px;
  }
}


/* ==================================================
   SMALL MOBILE
================================================== */

@media (max-width: 390px) {

  .profile-media {
    min-height: 350px;
  }

  .profile-facts {
    left: 10px;
    right: 10px;
    bottom: -72px;
  }

  .profile-fact {
    min-height: 66px;
    padding: 8px;
  }

  .profile-fact i {
    display: none;
  }

  .profile-fact span {
    font-size: 0.7rem;
    text-align: center;
  }

  .profile-copy {
    padding: 102px 16px 28px;
  }

  .profile-copy h2 {
    font-size: 2.8rem;
  }
}

/* ============ SERVICES SECTION ======== */
.services-section {
  background: var(--bg);
}

/* ========== SERVICES SHOWCASE ========== */
.service-showcase {
  display: grid;
  grid-template-columns: minmax(210px, 0.78fr) minmax(330px, 1.35fr) minmax(260px, 0.87fr);
  height: 420px;
  min-height: 420px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
}

/* ========== SERVICE LIST ========== */
.service-list {
  height: 420px;
  padding: 14px;
  overflow-y: auto;
  overscroll-behavior: contain;
  background: var(--bg);
  border-right: 1px solid var(--line);
  scrollbar-width: thin;
  scrollbar-color: var(--muted) transparent;
}

.service-list::-webkit-scrollbar {
  width: 5px;
}

.service-list::-webkit-scrollbar-track {
  background: transparent;
}

.service-list::-webkit-scrollbar-thumb {
  background: var(--muted);
}

.service-tab {
  position: relative;
  width: 100%;
  min-height: 58px;
  margin: 0 0 7px;
  padding: 11px 38px 11px 14px;
  display: flex;
  align-items: center;
  background: var(--surface);
  border: 1px solid transparent;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 750;
  line-height: 1.3;
  text-align: left;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.service-tab:last-child {
  margin-bottom: 0;
}

.service-tab::after {
  content: "↗";
  position: absolute;
  top: 50%;
  right: 14px;
  color: inherit;
  font-size: 0.82rem;
  opacity: 0;
  transform: translate(-5px, -50%);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.service-tab:hover {
  border-color: var(--line);
  color: var(--ink);
}

.service-tab:hover::after {
  opacity: 0.5;
  transform: translate(0, -50%);
}

.service-tab.active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--surface);
}

.service-tab.active::after {
  opacity: 1;
  transform: translate(0, -50%);
}

/* ========= SERVICE DETAILS ========= */
.service-detail {
  height: 420px;
  min-width: 0;
  min-height: 420px;
  padding: 40px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--surface);
   overflow: hidden;
}

.service-count {
  display: block;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 850;
  line-height: 1;
  letter-spacing: 0.14em;
}

.service-detail h3 {
  max-width: 560px;
  margin: 0;
  color: var(--ink);
  font-family: Georgia, serif;
  font-size: clamp(2.3rem, 3.5vw, 4.3rem);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.045em;
}

.service-detail>p {
  max-width: 610px;
  margin: 18px 0 20px;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.7;
}

.service-features {
  margin: 0 0 24px;
  padding: 0;
  display: grid;
  gap: 9px;
  list-style: none;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 650;
  line-height: 1.4;
}

.service-features i {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  display: grid;
  place-items: center;
  background: var(--bg);
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 0.6rem;
}

/* ========= SERVICE BUTTON =============*/
.service-btn {
  width: fit-content;
  min-height: 46px;
  padding: 0 19px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--ink);
  border: 1px solid var(--ink);
  color: var(--surface);
  font-size: 0.84rem;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.service-btn:hover {
  background: transparent;
  color: var(--ink);
  transform: translateY(-2px);
}

.service-btn i {
  font-size: 0.68rem;
  transition: transform 0.25s ease;
}

.service-btn:hover i {
  transform: translateX(3px);
}

/* ============== SERVICE IMAGE ============== */
.service-image {
  position: relative;
  min-width: 0;
  height: 420px;
  min-height: 420px;
  overflow: hidden;
  background: var(--bg);
  border-left: 1px solid var(--line);
}

.service-image::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.01), rgba(17, 17, 17, 0.18));
}

.service-image img {
  width: 100%;
  height: 100%;
  min-height: 0;
  /* display: block; */
  object-fit: cover;
  /* object-position: center; */

  opacity: 1;
  transform: scale(1);
  transition: opacity 0.25s ease, transform 0.7s ease;
}

.service-image:hover img {
  transform: scale(1.035);
}

.service-image img.changing {
  opacity: 0.25;
}

/* Responsive */

@media (max-width: 1024px) {
  .service-showcase {
    grid-template-columns: 1fr;
    height: auto;
  }

  .service-list {
    height: auto;
    max-height: 330px;
  }

  .service-detail {
    height: auto;
    padding: 30px 24px;
  }

  .service-image {
    height: 280px;
  }
}

@media (max-width: 768px) {
  .section-head.center {
    margin-bottom: 28px;
  }

  .service-showcase {
    border-radius: 22px;
  }

  .service-list {
    padding: 12px;
  }

  .service-tab {
    min-height: 52px;
    padding: 10px 12px;
    font-size: 14px;
  }

  .service-detail {
    padding: 26px 20px;
  }

  .service-detail h3 {
    font-size: 30px;
  }

  .service-image {
    height: 240px;
  }
}

/* ==================================================
   WHY CHOOSE US
================================================== */

.why-us-section {
  background: var(--bg);
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}


/* ==================================================
   REASON CARD
================================================== */

.why-us-card {
  position: relative;
  min-width: 0;
  /* min-height: 240px; */
  padding: 22px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  background: var(--surface);
  border: 1px solid var(--line);

  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.why-us-card:hover {
  background: var(--ink);
  border-color: var(--ink);
  box-shadow: 0 18px 38px rgba(17, 17, 17, 0.1);
  transform: translateY(-5px);
}


/* ==================================================
   NUMBER
================================================== */

.why-us-number {
  color: var(--muted);

  font-family: Georgia, serif;
  font-size: 0.75rem;
  line-height: 1;
  letter-spacing: 0.08em;

  transition: color 0.3s ease;
}


/* ==================================================
   CONTENT
================================================== */

.why-us-content {
  margin-top: 42px;
}

.why-us-content h3 {
  margin: 0;

  color: var(--ink);
  font-family: Georgia, serif;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.025em;

  transition: color 0.3s ease;
}

.why-us-content p {
  margin: 10px 0 0;

  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: 0;

  transition: color 0.3s ease;
}


/* ==================================================
   HOVER
================================================== */

.why-us-card:hover .why-us-number,
.why-us-card:hover .why-us-content h3 {
  color: var(--surface);
}

.why-us-card:hover .why-us-content p {
  color: rgba(255, 255, 255, 0.72);
}


/* ==================================================
   TABLET
================================================== */

@media (max-width: 950px) {
  .why-us-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 600px) {
  .why-us-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .why-us-card {
    /* min-height: 200px; */
    padding: 20px;
  }

  .why-us-content {
    margin-top: 34px;
  }

  .why-us-content h3 {
    font-size: 1.22rem;
  }

  .why-us-content p {
    margin-top: 8px;
    font-size: 0.9rem;
    line-height: 1.6;
  }
}

/* ==================================================
   WORK GALLERY SECTION
================================================== */

.work-gallery-section {
  background: var(--bg);
}


/* ==================================================
   GALLERY TABS
================================================== */

.work-gallery-tabs {
  width: fit-content;
  margin: 0 auto 28px;
  padding: 4px;

  display: flex;
  align-items: center;
  gap: 4px;

  background: var(--surface);
  border: 1px solid var(--line);
}

.work-gallery-tab {
  min-width: 140px;
  min-height: 46px;
  padding: 0 18px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  background: transparent;
  border: 0;
  color: var(--muted);

  font-size: 0.84rem;
  font-weight: 850;

  cursor: pointer;

  transition:
    background 0.25s ease,
    color 0.25s ease;
}

.work-gallery-tab span {
  min-width: 25px;
  height: 25px;
  padding: 0 6px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: var(--bg);
  border: 1px solid var(--line);
  color: var(--muted);

  font-size: 0.66rem;
  line-height: 1;
}

.work-gallery-tab:hover {
  color: var(--ink);
}

.work-gallery-tab.active {
  background: var(--ink);
  color: var(--surface);
}

.work-gallery-tab.active span {
  background: var(--surface);
  border-color: var(--surface);
  color: var(--ink);
}


/* ==================================================
   GALLERY PANELS
================================================== */

.work-gallery-panel {
  animation: galleryPanelFade 0.35s ease;
}

.work-gallery-panel[hidden] {
  display: none;
}

@keyframes galleryPanelFade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ==================================================
   GALLERY GRID
================================================== */

.work-gallery-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.work-gallery-card {
  position: relative;

  flex: 0 1 calc((100% - 48px) / 4);
  max-width: calc((100% - 48px) / 4);
  aspect-ratio: 4 / 3;
  padding: 0;

  overflow: hidden;

  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--surface);

  text-align: left;
  cursor: pointer;

  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.work-gallery-card:hover {
  border-color: var(--ink);
  box-shadow: 0 18px 40px rgba(17, 17, 17, 0.12);
  transform: translateY(-4px);
}

.work-gallery-card:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 3px;
}

.work-gallery-card img {
  width: 100%;
  height: 100%;

  display: block;
  object-fit: cover;
  object-position: center;


  transform: scale(1);

  transition:
    filter 0.4s ease,
    transform 0.7s ease;
}

.work-gallery-card:hover img {

  transform: scale(1.045);
}

.work-gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;

  pointer-events: none;

  background: linear-gradient(180deg,
      rgba(17, 17, 17, 0.02) 35%,
      rgba(17, 17, 17, 0.82) 100%);
}


/* ==================================================
   GALLERY ITEM CONTENT
================================================== */

.work-gallery-overlay {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 17px;
  z-index: 2;

  display: block;

  pointer-events: none;
}

.work-gallery-overlay small {
  display: block;
  margin-bottom: 5px;

  color: rgba(255, 255, 255, 0.72);
  font-size: 0.62rem;
  font-weight: 850;
  line-height: 1;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.work-gallery-overlay strong {
  display: block;

  color: #fff;
  font-family: Georgia, serif;
  font-size: clamp(1.1rem, 1.7vw, 1.55rem);
  font-weight: 500;
  line-height: 1.08;
}


/* ==================================================
   VIDEO PLAY ICON
================================================== */

.video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;

  width: 54px;
  height: 54px;

  display: grid;
  place-items: center;

  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: var(--ink);

  pointer-events: none;

  transform: translate(-50%, -50%);

  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.video-play::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 4px;

  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 11px solid currentColor;
}

.video-card:hover .video-play {
  background: var(--ink);
  color: var(--surface);
  transform: translate(-50%, -50%) scale(1.08);
}


/* ==================================================
   HIDDEN AND REVEALED ITEMS
================================================== */

.work-gallery-card.is-hidden {
  display: none;
}

.work-gallery-card.is-revealing {
  animation: galleryItemReveal 0.38s ease both;
}

.work-gallery-card.is-hiding {
  animation: galleryItemHide 0.24s ease both;
  pointer-events: none;
}

@keyframes galleryItemReveal {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.97);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes galleryItemHide {
  from {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  to {
    opacity: 0;
    transform: translateY(12px) scale(0.97);
  }
}


/* ==================================================
   MORE BUTTON
================================================== */

.work-gallery-more-wrap {
  margin-top: 30px;

  display: flex;
  justify-content: center;
}

.work-gallery-more {
  min-width: 164px;
  min-height: 48px;
  padding: 0 20px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;

  background: var(--ink);
  border: 1px solid var(--ink);
  color: var(--surface);

  font-size: 0.82rem;
  font-weight: 850;

  cursor: pointer;

  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.work-gallery-more:hover {
  background: transparent;
  color: var(--ink);
  transform: translateY(-2px);
}

.work-gallery-more i {
  position: relative;

  width: 12px;
  height: 12px;

  display: block;
}

.work-gallery-more i::before,
.work-gallery-more i::after {
  content: "";
  position: absolute;

  background: currentColor;
}

.work-gallery-more i::before {
  top: 5px;
  left: 0;

  width: 12px;
  height: 2px;
}

.work-gallery-more i::after {
  top: 0;
  left: 5px;

  width: 2px;
  height: 12px;

  transition: transform 0.25s ease;
}

.work-gallery-more[aria-expanded="true"] i::after {
  transform: rotate(90deg);
}


/* ==================================================
   LIGHTBOX
================================================== */

.media-lightbox {
  position: fixed;
  inset: 0;
  z-index: 5000;

  padding: 32px 82px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(17, 17, 17, 0.94);

  visibility: hidden;
  opacity: 0;
  pointer-events: none;

  transition:
    opacity 0.25s ease,
    visibility 0.25s ease;
}

.media-lightbox.active {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.lightbox-container {
  width: 100%;
  max-width: 1180px;
  max-height: calc(100vh - 64px);

  display: flex;
  flex-direction: column;

  transform: scale(0.97);

  transition: transform 0.3s ease;
}

.media-lightbox.active .lightbox-container {
  transform: scale(1);
}

.lightbox-content {
  min-height: 0;

  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content img,
.lightbox-content video {
  display: block;

  width: auto;
  max-width: 100%;
  max-height: calc(100vh - 145px);

  background: #000;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
}

.lightbox-content video {
  width: 100%;
}

.lightbox-footer {
  min-height: 52px;
  padding-top: 14px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;

  color: #fff;
}

.lightbox-caption {
  margin: 0;

  color: rgba(255, 255, 255, 0.85);
  font-size: 0.86rem;
  line-height: 1.5;
}

.lightbox-counter {
  flex-shrink: 0;

  color: rgba(255, 255, 255, 0.58);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}


/* ==================================================
   LIGHTBOX CONTROLS
================================================== */

.lightbox-close,
.lightbox-navigation {
  position: absolute;
  z-index: 3;

  padding: 0;

  display: grid;
  place-items: center;

  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;

  cursor: pointer;

  transition:
    background 0.25s ease,
    color 0.25s ease;
}

.lightbox-close:hover,
.lightbox-navigation:hover {
  background: #fff;
  color: var(--ink);
}

.lightbox-close {
  top: 20px;
  right: 20px;

  width: 46px;
  height: 46px;

  font-size: 2rem;
  font-weight: 300;
  line-height: 1;
}

.lightbox-navigation {
  top: 50%;

  width: 52px;
  height: 70px;

  font-family: Arial, sans-serif;
  font-size: 2.5rem;
  line-height: 1;

  transform: translateY(-50%);
}

.lightbox-previous {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

.lightbox-navigation[hidden] {
  display: none;
}

body.lightbox-open {
  overflow: hidden;
}


/* ==================================================
   TABLET
================================================== */

@media (max-width: 900px) {

  .work-gallery-card {
    flex-basis: calc((100% - 16px) / 2);
    max-width: calc((100% - 16px) / 2);
  }

  .work-gallery-overlay strong {
    font-size: 1.4rem;
  }

  .media-lightbox {
    padding: 70px 60px 28px;
  }

  .lightbox-content img,
  .lightbox-content video {
    max-height: calc(100vh - 170px);
  }

  .lightbox-navigation {
    width: 44px;
    height: 60px;
  }

  .lightbox-previous {
    left: 8px;
  }

  .lightbox-next {
    right: 8px;
  }
}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 560px) {

  .work-gallery-tabs {
    width: 100%;
    margin-bottom: 20px;
  }

  .work-gallery-tab {
    flex: 1;
    min-width: 0;
    padding: 0 12px;
  }

  .work-gallery-grid {
    gap: 12px;
  }

  .work-gallery-card {
    flex-basis: 100%;
    max-width: 100%;
    aspect-ratio: 4 / 3;
  }

  .work-gallery-overlay {
    left: 16px;
    right: 16px;
    bottom: 15px;
  }

  .work-gallery-overlay strong {
    font-size: 1.35rem;
  }

  .work-gallery-more-wrap {
    margin-top: 22px;
  }

  .work-gallery-more {
    width: 100%;
  }

  .media-lightbox {
    padding: 64px 12px 82px;
  }

  .lightbox-container {
    max-height: 100%;
  }

  .lightbox-content img,
  .lightbox-content video {
    width: 100%;
    max-height: calc(100vh - 180px);
    object-fit: contain;
  }

  .lightbox-footer {
    align-items: flex-start;
    min-height: 58px;
    padding: 12px 2px 0;
  }

  .lightbox-caption {
    font-size: 0.76rem;
  }

  .lightbox-counter {
    font-size: 0.65rem;
  }

  .lightbox-close {
    top: 10px;
    right: 10px;

    width: 42px;
    height: 42px;
  }

  .lightbox-navigation {
    top: auto;
    bottom: 14px;

    width: 48px;
    height: 48px;

    transform: none;
  }

  .lightbox-previous {
    left: calc(50% - 56px);
  }

  .lightbox-next {
    right: calc(50% - 56px);
  }
}

/* ==================================================
   BLOG SECTION
================================================== */

.blog-section {
  background: var(--bg);
}


/* ==================================================
   BLOG GRID
================================================== */

/*
 * Flexbox keeps one or two cards centered.
 * Three cards occupy one complete desktop row.
 */
.blog-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
}


/* ==================================================
   BLOG CARD
================================================== */

.blog-card {
  flex: 0 1 calc((100% - 40px) / 3);
  max-width: calc((100% - 40px) / 3);
  min-width: 0;

  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);

  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.blog-card:hover {
  border-color: var(--ink);
  box-shadow: 0 18px 42px rgba(17, 17, 17, 0.09);
  transform: translateY(-4px);
}


/* ==================================================
   BLOG IMAGE
================================================== */

.blog-card-image {
  position: relative;
  width: 100%;
  height: 230px;
  /* separate fixed image height */


  overflow: hidden;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}


/* Actual image */
.blog-card-image img {
  width: 100%;
  height: 100%;
  display: block;


  object-fit: cover;
  object-position: center;
}




.blog-card-image>span {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 2;

  min-height: 32px;
  padding: 0 11px;

  display: inline-flex;
  align-items: center;

  background: var(--ink);
  color: var(--surface);

  font-size: 0.61rem;
  font-weight: 850;
  line-height: 1;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}


/* ==================================================
   BLOG CONTENT
================================================== */

.blog-card-content {
  min-width: 0;
  padding: 21px;

  display: flex;
  flex-direction: column;
}

.blog-card-content time {
  display: block;
  margin-bottom: 12px;

  color: var(--muted);
  font-size: 0.63rem;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}


/* ==================================================
   BLOG TITLE
================================================== */

.blog-card h3 {
  min-height: 2.16em;
  margin: 0;

  display: -webkit-box;
  overflow: hidden;

  color: var(--ink);
  font-family: Georgia, serif;
  font-size: clamp(1.75rem, 2.3vw, 2.25rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.035em;

  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}


/* ==================================================
   EXPANDING DESCRIPTION
================================================== */

.blog-card-description {
  display: grid;
  grid-template-rows: 0fr;

  opacity: 0;

  transition:
    grid-template-rows 0.38s ease,
    opacity 0.3s ease,
    margin 0.38s ease;
}

.blog-card-description>div {
  min-height: 0;
  overflow: hidden;
}

.blog-card-description p {
  margin: 0 0 12px;

  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.7;
}

.blog-card-description p:last-child {
  margin-bottom: 0;
}

.blog-card.open .blog-card-description {
  grid-template-rows: 1fr;
  margin-top: 17px;
  opacity: 1;
}


/* ==================================================
   READ MORE BUTTON
================================================== */

.blog-read-more {
  width: fit-content;
  margin-top: 19px;
  padding: 0 0 5px;

  display: inline-flex;
  align-items: center;
  gap: 9px;

  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--ink);
  color: var(--ink);

  font-size: 0.74rem;
  font-weight: 850;
  line-height: 1;

  cursor: pointer;

  transition:
    gap 0.25s ease,
    opacity 0.25s ease;
}

.blog-read-more:hover {
  gap: 13px;
  opacity: 0.62;
}

.blog-read-more i {
  font-size: 0.65rem;

  transition: transform 0.3s ease;
}

.blog-card.open .blog-read-more i {
  transform: rotate(45deg);
}


/* ==================================================
   HIDDEN BLOGS
================================================== */

.blog-card.blog-hidden {
  display: none;
}

.blog-card.blog-revealing {
  animation: blogReveal 0.4s ease both;
}

.blog-card.blog-hiding {
  animation: blogHide 0.25s ease both;
  pointer-events: none;
}

@keyframes blogReveal {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes blogHide {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 0;
    transform: translateY(12px);
  }
}


/* ==================================================
   MORE BLOGS BUTTON
================================================== */

.blog-more-wrap {
  margin-top: 30px;

  display: flex;
  justify-content: center;
}

.blog-more-button {
  min-width: 160px;
  min-height: 48px;
  padding: 0 20px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  background: var(--ink);
  border: 1px solid var(--ink);
  color: var(--surface);

  font-size: 0.78rem;
  font-weight: 850;

  cursor: pointer;

  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.blog-more-button:hover {
  background: transparent;
  color: var(--ink);
  transform: translateY(-2px);
}

.blog-more-button i {
  font-size: 0.65rem;
  transition: transform 0.3s ease;
}

.blog-more-button[aria-expanded="true"] i {
  transform: rotate(45deg);
}


/* ==================================================
   TABLET
================================================== */

@media (max-width: 900px) {

  .blog-card {
    flex-basis: calc((100% - 18px) / 2);
    max-width: calc((100% - 18px) / 2);
  }
}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 600px) {

  .blog-grid {
    gap: 15px;
  }

  .blog-card {
    flex-basis: 100%;
    max-width: 100%;
  }

  .blog-card-content {
    padding: 19px;
  }

  .blog-card h3 {
    min-height: auto;
    font-size: 2rem;
  }

  .blog-card-description p {
    font-size: 0.84rem;
    line-height: 1.65;
  }

  .blog-read-more {
    margin-top: 17px;
  }

  .blog-more-wrap {
    margin-top: 22px;
  }

  .blog-more-button {
    width: 100%;
  }
}

/* ==================================================
   TEAM SECTION
================================================== */

.team-section {
  overflow: hidden;
  background: var(--bg);
}


/* ==================================================
   TEAM SLIDER HEADER
================================================== */

.team-slider-head {
  margin-bottom: 18px;
  padding-bottom: 14px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;

  border-bottom: 1px solid var(--line);
}

.team-slider-head p {
  margin: 0;

  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.5;
}


/* ==================================================
   TEAM NAVIGATION
================================================== */

.team-navigation {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-shrink: 0;
}

.team-nav-btn {
  width: 43px;
  height: 43px;
  padding: 0;

  display: grid;
  place-items: center;

  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--ink);

  cursor: pointer;

  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease,
    opacity 0.25s ease;
}

.team-nav-btn:hover:not(:disabled) {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--surface);
}

.team-nav-btn:disabled {
  cursor: default;
  opacity: 0.3;
}

.team-nav-btn i {
  font-size: 0.72rem;
}


/* ==================================================
   TEAM SWIPER
================================================== */

.local-team-swiper {
  width: 100%;
  overflow: hidden;
}

.local-team-swiper .swiper-wrapper {
  align-items: stretch;
}

.local-team-swiper .swiper-slide {
  height: auto;
}





/* ==================================================
   TEAM CARD
================================================== */

.team-member-card {
  height: 100%;
  min-width: 0;

  display: flex;
  flex-direction: column;

  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);

  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.team-member-card:hover {
  border-color: var(--ink);
  box-shadow: 0 18px 42px rgba(17, 17, 17, 0.09);
  transform: translateY(-4px);
}


/* ==================================================
   TEAM IMAGE
================================================== */

.team-member-image {
  position: relative;
  height: 285px;
  flex: 0 0 285px;

  overflow: hidden;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}

.team-member-image::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;

  pointer-events: none;

  background: linear-gradient(180deg,
      rgba(17, 17, 17, 0.01),
      rgba(17, 17, 17, 0.2));
}

.team-member-image img {
  width: 100%;
  height: 100%;

  display: block;
  object-fit: cover;
  object-position: center top;


  transform: scale(1);

  transition:
    filter 0.4s ease,
    transform 0.7s ease;
}

.team-member-card:hover .team-member-image img {
  filter: grayscale(20%);
  transform: scale(1.04);
}

.team-member-image>span {
  position: absolute;
  left: 13px;
  bottom: 13px;
  z-index: 2;

  min-height: 31px;
  padding: 0 10px;

  display: inline-flex;
  align-items: center;

  background: var(--ink);
  color: var(--surface);

  font-size: 0.59rem;
  font-weight: 850;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}


/* ==================================================
   TEAM CONTENT
================================================== */

.team-member-content {
  flex: 1;
  min-width: 0;
  padding: 19px;

  display: flex;
  flex-direction: column;
}

.team-member-role {
  display: block;
  margin-bottom: 9px;

  color: var(--muted);
  font-size: 0.61rem;
  font-weight: 850;
  line-height: 1.3;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.team-member-card h3 {
  margin: 0;

  color: var(--ink);
  font-family: Georgia, serif;
  font-size: 1.85rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.035em;
}

.team-member-content>p {
  min-height: 3.84em;
  margin: 13px 0 18px;

  display: -webkit-box;
  overflow: hidden;

  color: var(--muted);
  font-size: 0.79rem;
  line-height: 1.6;

  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}


/* ==================================================
   TEAM DETAILS
================================================== */

.team-member-details {
  margin-top: auto;
  padding-top: 14px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;

  border-top: 1px solid var(--line);
}

.team-member-details span {
  min-width: 0;

  display: inline-flex;
  align-items: center;
  gap: 6px;

  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 750;
  line-height: 1.3;
}

.team-member-details i {
  color: var(--ink);
  font-size: 0.65rem;
}


/* ==================================================
   TEAM PAGINATION
================================================== */

.team-slider-pagination {
  position: static;
  width: auto !important;
  margin-top: 20px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.team-slider-pagination .swiper-pagination-bullet {
  width: 22px;
  height: 2px;
  margin: 0 !important;

  background: var(--line);
  border-radius: 0;
  opacity: 1;

  transition:
    width 0.25s ease,
    background 0.25s ease;
}

.team-slider-pagination .swiper-pagination-bullet-active {
  width: 42px;
  background: var(--ink);
}


/* ==================================================
   TEAM TABLET
================================================== */

@media (max-width: 800px) {
  .team-member-image {
    height: 265px;
    flex-basis: 265px;
  }
}


/* ==================================================
   TEAM MOBILE
================================================== */

@media (max-width: 560px) {
  .team-slider-head {
    align-items: flex-start;
  }

  .team-slider-head p {
    max-width: 220px;
    font-size: 0.76rem;
  }

  .team-nav-btn {
    width: 39px;
    height: 39px;
  }

  .team-member-image {
    height: 280px;
    flex-basis: 280px;
  }

  .team-member-content {
    padding: 18px;
  }

  .team-member-card h3 {
    font-size: 1.8rem;
  }
}

/* ==================================================
   TESTIMONIALS SECTION
================================================== */

.testimonials-section {
  overflow: hidden;
  background: var(--surface);
}


/* ==================================================
   TESTIMONIALS LAYOUT
================================================== */

.testimonials-main {
  display: grid;
  grid-template-columns: minmax(230px, 0.34fr) minmax(0, 1fr);
  gap: 28px;
  align-items: stretch;
}


/* ==================================================
   TESTIMONIAL SUMMARY
================================================== */

.testimonial-summary {
  min-width: 0;
  padding: 30px;

  background: var(--ink);
  color: var(--surface);
}

.testimonial-summary-label {
  display: block;
  margin-bottom: 22px;

  color: var(--line);
  font-size: 0.65rem;
  font-weight: 850;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.testimonial-summary>strong {
  display: block;

  color: var(--surface);
  font-family: Georgia, serif;
  font-size: clamp(4.5rem, 7vw, 7rem);
  font-weight: 500;
  line-height: 0.82;
  letter-spacing: -0.05em;
}

.testimonial-summary-stars {
  margin-top: 18px;

  color: var(--surface);
  font-size: 0.9rem;
  line-height: 1;
  letter-spacing: 0.12em;
}

.testimonial-summary>p {
  margin: 20px 0 24px;

  color: var(--line);
  font-size: 0.84rem;
  line-height: 1.7;
}


/* ==================================================
   TESTIMONIAL SUMMARY POINTS
================================================== */

.testimonial-summary-points {
  padding-top: 20px;

  display: grid;
  gap: 10px;

  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonial-summary-points span {
  display: flex;
  align-items: center;
  gap: 9px;

  color: var(--line);
  font-size: 0.73rem;
  font-weight: 700;
}

.testimonial-summary-points i {
  color: var(--surface);
  font-size: 0.65rem;
}


/* ==================================================
   TESTIMONIAL NAVIGATION
================================================== */

.testimonial-navigation {
  margin-top: 30px;

  display: flex;
  align-items: center;
  gap: 7px;
}

.testimonial-nav-btn {
  width: 43px;
  height: 43px;
  padding: 0;

  display: grid;
  place-items: center;

  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: var(--surface);

  cursor: pointer;

  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease,
    opacity 0.25s ease;
}

.testimonial-nav-btn:hover:not(:disabled) {
  background: var(--surface);
  border-color: var(--surface);
  color: var(--ink);
}

.testimonial-nav-btn:disabled {
  cursor: default;
  opacity: 0.3;
}

.testimonial-nav-btn i {
  font-size: 0.72rem;
}


/* ==================================================
   TESTIMONIAL SLIDER
================================================== */

.testimonial-slider-area {
  min-width: 0;
  padding: 24px;

  background: var(--bg);
  border: 1px solid var(--line);
}

.local-testimonial-swiper {
  width: 100%;
  overflow: hidden;
}

.local-testimonial-swiper .swiper-wrapper {
  align-items: stretch;
}

.local-testimonial-swiper .swiper-slide {
  height: auto;
}





/* ==================================================
   TESTIMONIAL CARD
================================================== */

.testimonial-card {
  height: 100%;
  min-height: 350px;
  padding: 28px;

  display: flex;
  flex-direction: column;

  background: var(--surface);
  border: 1px solid var(--line);

  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.testimonial-card:hover {
  border-color: var(--ink);
  box-shadow: 0 18px 42px rgba(17, 17, 17, 0.08);
  transform: translateY(-4px);
}


/* ==================================================
   TESTIMONIAL CARD TOP
================================================== */

.testimonial-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.testimonial-card-stars {
  color: var(--ink);
  font-size: 0.75rem;
  line-height: 1;
  letter-spacing: 0.1em;
}

.testimonial-card-top>i {
  color: var(--line);
  font-size: 2.2rem;
}


/* ==================================================
   TESTIMONIAL QUOTE
================================================== */

.testimonial-card blockquote {
  flex: 1;
  margin: 32px 0;

  color: var(--ink);
  font-family: Georgia, serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.13;
  letter-spacing: -0.035em;
}


/* ==================================================
   CUSTOMER DETAILS
================================================== */

.testimonial-customer {
  padding-top: 18px;

  display: flex;
  align-items: center;
  gap: 12px;

  border-top: 1px solid var(--line);
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;

  display: grid;
  place-items: center;

  background: var(--ink);
  color: var(--surface);

  font-family: Georgia, serif;
  font-size: 0.9rem;
}

.testimonial-customer>div {
  min-width: 0;
}

.testimonial-customer strong {
  display: block;

  color: var(--ink);
  font-size: 0.79rem;
  font-weight: 850;
  line-height: 1.3;
}

.testimonial-customer div>span {
  display: block;
  margin-top: 3px;

  color: var(--muted);
  font-size: 0.67rem;
  line-height: 1.3;
}


/* ==================================================
   TESTIMONIAL PAGINATION
================================================== */

.testimonial-slider-pagination {
  position: static;
  width: auto !important;
  margin-top: 22px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.testimonial-slider-pagination .swiper-pagination-bullet {
  width: 22px;
  height: 2px;
  margin: 0 !important;

  background: var(--line);
  border-radius: 0;
  opacity: 1;

  transition:
    width 0.25s ease,
    background 0.25s ease;
}

.testimonial-slider-pagination .swiper-pagination-bullet-active {
  width: 42px;
  background: var(--ink);
}


/* ==================================================
   TESTIMONIAL TABLET
================================================== */

@media (max-width: 900px) {
  .testimonials-main {
    grid-template-columns: minmax(0, 1fr);
  }

  .testimonial-summary {
    padding: 27px;

    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 20px;
    align-items: center;
  }

  .testimonial-summary-label {
    display: none;
  }

  .testimonial-summary>strong {
    font-size: 5rem;
  }

  .testimonial-summary-stars {
    margin-top: 0;
  }

  .testimonial-summary>p {
    margin: 8px 0 0;
  }

  .testimonial-summary-points {
    display: none;
  }

  .testimonial-navigation {
    margin-top: 0;
  }
}


/* ==================================================
   TESTIMONIAL MOBILE
================================================== */

@media (max-width: 600px) {
  .testimonial-summary {
    padding: 22px;

    grid-template-columns: auto minmax(0, 1fr);
  }

  .testimonial-summary>strong {
    font-size: 4rem;
  }

  .testimonial-navigation {
    grid-column: 1 / -1;
  }

  .testimonial-slider-area {
    padding: 14px;
  }

  .testimonial-card {
    min-height: 330px;
    padding: 23px;
  }

  .testimonial-card blockquote {
    margin: 27px 0;

    font-size: 1.75rem;
  }
}

/* ==================================================
   FAQ
================================================== */

.faq-list {
  border-top: 1px solid var(--line);

  /* fixed height: approx 4 questions visible */
  height: 300px;
  padding-right: 10px;

  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;

  scrollbar-width: thin;
  scrollbar-color: var(--muted) transparent;
}

.faq-list::-webkit-scrollbar {
  width: 5px;
}

.faq-list::-webkit-scrollbar-track {
  background: transparent;
}

.faq-list::-webkit-scrollbar-thumb {
  background: var(--muted);
}

.faq-list::-webkit-scrollbar-thumb:hover {
  background: var(--ink);
}


/* ==================================================
   FAQ ITEM
================================================== */

.faq-item {
  background: transparent;
  border-bottom: 1px solid var(--line);
}

.faq-heading {
  margin: 0;
}


/* ==================================================
   QUESTION BUTTON
================================================== */

.faq-item button {
  width: 100%;
  padding: 22px 0;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;

  background: transparent;
  border: 0;
  color: var(--ink);

  font-family: Georgia, serif;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.35;
  text-align: left;

  box-shadow: none;
  cursor: pointer;
}

.faq-item button:hover {
  color: var(--muted);
}

.faq-item button:focus {
  outline: none;
  box-shadow: none;
}

.faq-item button>span:first-child {
  min-width: 0;
}


/* ==================================================
   PLUS / MINUS ICON
================================================== */

.faq-icon {
  position: relative;

  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: currentColor;

  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.faq-icon::before {
  top: 9px;
  left: 0;

  width: 20px;
  height: 1px;
}

.faq-icon::after {
  top: 0;
  left: 9px;

  width: 1px;
  height: 20px;
}

.faq-item button[aria-expanded="true"] .faq-icon::after {
  opacity: 0;
  transform: rotate(90deg);
}


/* ==================================================
   ANSWER
================================================== */

.answer {
  background: transparent;
}

.answer p {
  max-width: 850px;
  margin: 0;
  padding: 0 42px 22px 0;

  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.75;
}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 600px) {

  .faq-list {
    height: 300px;
    padding-right: 7px;
  }

  .faq-item button {
    padding: 18px 0;
    gap: 16px;

    font-size: 1.18rem;
    line-height: 1.35;
  }

  .faq-icon {
    width: 18px;
    height: 18px;
    flex-basis: 18px;
  }

  .faq-icon::before {
    top: 8px;
    width: 18px;
  }

  .faq-icon::after {
    left: 8px;
    height: 18px;
  }

  .answer p {
    padding: 0 28px 18px 0;

    font-size: 0.87rem;
    line-height: 1.68;
  }
}

/* ==================================================
   MAP & LOCATION
================================================== */

.location-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
}


/* ==================================================
   LOCATION CARDS
================================================== */

.map-card,
.hours-card {
  min-width: 0;
  padding: 28px;

  background: var(--surface);
  border: 1px solid var(--line);
  /* border-radius: 20px; */
}


/* ==================================================
   CARD TITLE
================================================== */

.location-title {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.location-icon {
  width: 55px;
  height: 55px;
  flex: 0 0 55px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: var(--ink);
  border: 1px solid var(--ink);
  /* border-radius: 14px; */
  color: var(--surface);
}

.location-icon i {
  color: var(--surface);
  font-size: 22px;
}

.location-title>div {
  min-width: 0;
}

.location-title h4 {
  margin: 0 0 4px;

  color: var(--ink);
  font-family: Georgia, serif;
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1.15;
}

.location-title small {
  display: block;

  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.4;
}


/* ==================================================
   MAP CARD CONTENT
================================================== */

.map-card p {
  margin: 14px 0;

  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.65;
}

.map-card p i {
  width: 18px;
  margin-right: 7px;

  color: var(--ink);
  text-align: center;
}


/* ==================================================
   MAP
================================================== */

.map-card iframe {
  width: 100%;
  height: 80%;

  display: block;

  border: 0;
  border-radius: 16px;


}


/* ==================================================
   BUSINESS HOURS
================================================== */

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hours-row {
  min-height: 50px;
  padding: 12px 14px;

  display: grid;
  grid-template-columns: 70px repeat(3, minmax(0, 1fr));
  gap: 12px;
  align-items: center;

  background: var(--bg);
  border: 1px solid var(--line);
  /* border-radius: 14px; */

  font-size: 0.76rem;
  line-height: 1.35;
}

.hours-head {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--surface);

  font-weight: 700;
  text-align: center;
}

.hours-head span {
  color: var(--surface);
}

.hours-row b {
  color: var(--ink);
  font-weight: 750;
  text-align: center;
}

.hours-row span {
  min-width: 0;

  /* color: var(--muted); */
  text-align: center;
}


/* ==================================================
   CLOSED DAY
================================================== */

.hours-row.closed {
  background: color-mix(in srgb,
      var(--ink) 5%,
      var(--surface));
}

.hours-row.closed b,
.hours-row.closed span {
  color: var(--ink);
  font-weight: 700;
}


/* ==================================================
   BOOKING ACTION
================================================== */

.hours-action {
  margin-top: 24px;

  display: flex;
  justify-content: center;
}

.book-btn {
  min-height: 48px;
  padding: 0 23px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  background: var(--ink);
  border: 1px solid var(--ink);
  /* border-radius: 999px; */
  color: var(--surface);

  font-size: 0.82rem;
  font-weight: 750;
  line-height: 1;
  text-decoration: none;

  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.book-btn i {
  color: var(--surface);
  font-size: 16px;
}

.book-btn:hover {
  background: transparent;
  color: var(--ink);
  transform: translateY(-2px);
}

.book-btn:hover i {
  color: var(--ink);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
  .location-grid {
    grid-template-columns: 1fr;
  }

  .map-card iframe {
    height: 320px;
  }
}

@media (max-width: 768px) {

  .map-card,
  .hours-card {
    padding: 18px 14px;
    border-radius: 24px;
  }

  .location-icon {
    width: 48px;
    height: 48px;
  }

  .map-card p {
    margin: 10px 0 14px;
    line-height: 1.45;
  }

  .map-card iframe {
    height: 260px;
    border-radius: 18px;
  }

  .hours-list {
    gap: 9px;
  }

  .hours-row b,
  .hours-row span {
    line-height: 1.2;
  }

  .hours-head {
    padding: 10px 7px;
  }
}

@media (max-width: 380px) {
  .map-card iframe {
    height: 230px;
  }
}

/* =========================
   BRANCHES SECTION
========================= */

.branches-section {
  position: relative;
  overflow: hidden;
}


.branches-wrap {
  position: relative;
}


/* =========================
   BRANCH CARD
========================= */

.branch-card {
  height: 100%;
  padding: 20px;

  background: var(--surface);
  border: 1px solid var(--line);
  /* border-radius: 20px; */

  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.branch-card:hover {
  transform: translateY(-6px);
  border-color: var(--ink);
  box-shadow: 0 18px 40px rgba(17, 17, 17, 0.08);
}

.branch-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}


/* =========================
   BADGE
========================= */

.branch-badge {
  min-height: 34px;
  padding: 8px 15px;

  display: inline-flex;
  align-items: center;

  background: var(--bg);
  border: 1px solid var(--line);
  /* border-radius: 999px; */
  color: var(--ink);

  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}


/* =========================
   ICON
========================= */

.branch-icon {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;

  display: grid;
  place-items: center;

  background: var(--ink);
  border: 1px solid var(--ink);
  /* border-radius: 16px; */
  color: var(--surface);

  font-size: 20px;
}

.branch-icon i {
  color: var(--surface);
}


/* =========================
   BRANCH CONTENT
========================= */

.branch-card h3 {
  margin: 0 0 14px;

  color: var(--ink);
  font-family: Georgia, serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.25;
}

.branch-card p {
  margin: 0;

  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}


/* =========================
   BRANCH ACTIONS
========================= */

.branch-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 26px;
}

.branch-btn {
  width: 47%;
  padding: 8px 19px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;

  /* border-radius: 999px; */

  font-size: 14px;
  font-weight: 600;
  text-decoration: none;

  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
}


/* =========================
   PRIMARY BUTTON
========================= */

.branch-btn.primary {
  background: var(--ink);
  border: 1px solid var(--ink);
  color: var(--surface);
}

.branch-btn.primary:hover {
  background: transparent;
  color: var(--ink);
  transform: translateY(-2px);
}


/* =========================
   SECONDARY BUTTON
========================= */

.branch-btn.secondary {
  background: var(--bg);
  border: 1px solid var(--line);
  color: var(--ink);
}

.branch-btn.secondary:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--surface);
  transform: translateY(-2px);
}

/* =========================
   AUTO: 1 BRANCH CENTER
========================= */

.branches-wrap.is-one .branchesSwiper {
  max-width: 620px;
  margin: 0 auto;
  overflow: visible;
}

.branches-wrap.is-one .swiper-wrapper {
  display: flex;
  justify-content: center;
}

.branches-wrap.is-one .swiper-slide {
  width: 100% !important;
  max-width: 620px;
}

/* =========================
   AUTO: 2 BRANCHES ONE ROW
========================= */

.branches-wrap.is-two .branchesSwiper {
  overflow: visible;
}

.branches-wrap.is-two .swiper-wrapper {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.branches-wrap.is-two .swiper-slide {
  width: auto !important;
}

/* =========================
   AUTO: 3+ SWIPER
========================= */

.branches-wrap.is-slider .branchesSwiper {
  padding: 8px 4px 22px;
  cursor: grab;
}

.branches-wrap.is-slider .branchesSwiper:active {
  cursor: grabbing;
}

.branches-wrap.is-slider .swiper-slide {
  height: auto;
}

/* Responsive */
@media (max-width: 991px) {
  .branches-wrap.is-two .swiper-wrapper {
    grid-template-columns: 1fr;
  }

  .branch-card {
    padding: 26px;
  }
}

@media (max-width: 575px) {
  .branch-card {
    padding: 24px;
    border-radius: 24px;
  }

  .branch-top {
    margin-bottom: 20px;
  }

  .branch-card h3 {
    font-size: 21px;
  }

  .branch-actions {
    gap: 10px;
  }

  .branch-btn {
    flex: 1;
    padding: 12px 14px;
  }
}

/* ==================================================
   FOOTER
================================================== */

.footer {
  margin-top: 60px;
  background: transparent;
}


/* ==================================================
   FOOTER MAIN
================================================== */

.footer-main {
  margin: 0 30px;
  padding: 42px;

  background: var(--ink);
  border: 1px solid var(--ink);
  /* border-radius: 28px; */
  color: var(--surface);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 28px;
  align-items: center;
}


/* ==================================================
   FOOTER CARDS
================================================== */

.footer-card,
.save-contact {
  padding: 22px;

  background: color-mix(in srgb,
      var(--surface) 7%,
      transparent);

  border: 1px solid color-mix(in srgb,
      var(--surface) 22%,
      transparent);

  /* border-radius: 22px; */
}

.footer-card {
  margin-bottom: 16px;
}

.footer h4 {
  margin: 0 0 16px;

  color: var(--surface);
  font-size: 20px;
  font-weight: 600;
}


/* ==================================================
   SOCIAL AND CONTACT ICONS
================================================== */

.icon-row,
.save-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.icon-row a,
.save-grid button,
.save-grid a {
  width: 46px;
  height: 46px;
  padding: 0;

  display: grid;
  place-items: center;

  background: color-mix(in srgb,
      var(--surface) 8%,
      transparent);

  border: 1px solid color-mix(in srgb,
      var(--surface) 28%,
      transparent);

  /* border-radius: 14px; */
  color: var(--surface) !important;
  text-decoration: none;

  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.icon-row a:hover,
.save-grid button:hover,
.save-grid a:hover {
  background: var(--surface);
  border-color: var(--surface);
  color: var(--ink) !important;
  transform: translateY(-3px);
}

.icon-row a:hover i,
.save-grid button:hover i,
.save-grid a:hover i {
  color: var(--ink);
}


/* ==================================================
   SAVE CONTACT GRID
================================================== */

.save-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.save-grid button,
.save-grid a {
  width: 100%;
  height: 82px;
  cursor: pointer;
}

.save-grid button i,
.save-grid a i {
  color: var(--surface);
  font-size: 42px;
}


/* ==================================================
   POWERED FOOTER
================================================== */

.footer-powered {
  width: 100%;
  margin-top: 28px;

  background: var(--ink);
  border-top: 1px solid color-mix(in srgb,
      var(--surface) 18%,
      transparent);
}

.powered {
  padding: 18px 0;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;

  color: color-mix(in srgb,
      var(--surface) 72%,
      transparent);

  font-size: 0.95rem;
}

.powered strong {
  color: var(--surface);
  font-weight: 700;
}

.powered-by {
  display: flex;
  align-items: center;
  justify-content: center;
  /* optional */
  gap: 6px;
  white-space: nowrap;
}

.powered-by img {
  height: 20px;
  /* adjust as needed */
  width: auto;
  display: block;
}

/* responsive */

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .powered {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  .footer-main {
    margin: 0;
    padding: 20px 15px;
    width: 100%;
  }

  .footer-grid {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .footer-left {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .footer-card,
  .save-contact {
    width: 100% !important;
    max-width: 100% !important;
    display: block;
    box-sizing: border-box;
    margin: 0;
  }

  .icon-row,
  .save-grid {
    justify-content: center;
  }

  .save-grid {
    flex-wrap: nowrap;
  }
}

/* ==================================================
   APPOINTMENT HERO
================================================== */

.appt-hero {
  position: relative;
  padding: 30px 0 25px;

  overflow: hidden;
  text-align: center;
}

/* ==================================================
   EYEBROW
================================================== */

.eyebrow {
  padding: 8px 15px;

  display: inline-flex;
  align-items: center;
  gap: 9px;

  background: var(--bg);
  border: 1px solid var(--line);
  /* border-radius: 999px; */
  color: var(--ink);

  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.appt-hero h1 {
  max-width: 880px;
  margin: 18px auto 0;

  color: var(--ink);
  font-size: 42px;
}

.appt-hero p {
  max-width: 680px;
  margin: 22px auto 0;

  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}


/* ==================================================
   APPOINTMENT SECTION
================================================== */

.appointment-section {
  padding: 35px 0 0px;
  background: transparent;
}

.booking-layout {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: 20px;
  align-items: start;
}




/* ==================================================
   VISIT TABS
================================================== */

.visit-tabs {
  margin-bottom: 16px;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.visit-tab {
  min-height: 80px;
  padding: 12px 10px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;

  background: var(--surface);
  border: 1px solid var(--line);
  /* border-radius: 18px; */

  text-align: center;
  cursor: pointer;

  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.visit-tab input {
  display: none;
}

.visit-tab i {
  width: 38px;
  height: 38px;

  display: grid;
  place-items: center;

  background: var(--bg);
  border: 1px solid var(--line);
  /* border-radius: 12px; */
  color: var(--ink);

  font-size: 16px;
}

.visit-tab span {
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.visit-tab.active,
.visit-tab:hover {
  background: var(--ink);
  border-color: var(--ink);
  transform: translateY(-3px);
}

.visit-tab.active i,
.visit-tab:hover i {
  background: color-mix(in srgb,
      var(--surface) 14%,
      transparent);

  border-color: color-mix(in srgb,
      var(--surface) 25%,
      transparent);

  color: var(--surface);
}

.visit-tab.active span,
.visit-tab:hover span {
  color: var(--surface);
}


/* ==================================================
   BOOKING CARDS
================================================== */

.booking-card,
.booking-form-card {
  position: relative;
  padding: 20px;

  overflow: hidden;

  background: var(--surface);
  border: 1px solid var(--line);
  /* border-radius: 24px; */
}

.booking-card::after,
.booking-form-card::after {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;

  height: 4px;
  background: var(--ink);
}

.booking-card h3,
.booking-form-card h3 {
  margin: 0 0 14px;

  color: var(--ink);
  font-size: 20px;
}


/* ==================================================
   DATE SCROLLER
================================================== */

.date-scroll-wrapper {
  width: 100%;
  overflow: hidden;
}

.date-scroll {
  width: 100%;
  max-width: 100%;
  padding-bottom: 10px;

  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 40px) / 6);
  gap: 8px;

  overflow-x: auto;
  overflow-y: hidden;

  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x;
}

.date-scroll::-webkit-scrollbar {
  display: none;
}

.date-card {
  width: 100%;
  min-width: 0;
  max-width: none !important;
  padding: 10px 8px;

  background: var(--bg);
  border: 1px solid var(--line);
  /* border-radius: 16px; */
  color: var(--ink);

  cursor: pointer;

  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.date-card small,
.date-card span {
  display: block;

  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.date-card strong {
  display: block;
  margin: 3px 0;

  color: var(--ink);
  font-size: 20px;
  line-height: 1.1;
}

.date-card.active,
.date-card:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--surface);
  transform: translateY(-2px);
}

.date-card.active small,
.date-card.active span,
.date-card.active strong,
.date-card:hover small,
.date-card:hover span,
.date-card:hover strong {
  color: var(--surface);
}


/* ==================================================
   TIME SLOT AREA
================================================== */

.slot-area {
  margin-top: 18px;

  display: grid;
  gap: 16px;
}

.slot-group {
  min-width: 0;
  margin-top: 10px;
  padding: 0;

  background: transparent;
  border: 0;
}

.slot-group h4 {
  margin: 0 0 8px;

  display: flex;
  align-items: center;
  gap: 8px;

  color: var(--ink);
  font-size: 15px;
  font-weight: 850;
}

.slot-group h4 i {
  color: var(--ink);
}

.time-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.time-grid button {
  min-width: 88px;
  padding: 8px 12px;

  background: var(--surface);
  border: 1px solid var(--line);
  /* border-radius: 10px; */
  color: var(--muted);

  font-size: 14px;
  font-weight: 700;
  cursor: pointer;

  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.time-grid button.active,
.time-grid button:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--surface);
  transform: translateY(-2px);
}


/* ==================================================
   BOOKING FORM CARD
================================================== */

.booking-form-card {
  padding: 24px;
  /* border-radius: 26px; */
}

.booking-form-card h3 {
  margin-bottom: 22px;
  font-size: 22px;
}


/* ==================================================
   FORM FIELDS
================================================== */

.form-group {
  position: relative;
  margin-bottom: 22px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 9px 0 11px;

  background: transparent;
  border: 0;
  border-bottom: 1.8px solid var(--line);
  border-radius: 0;
  color: var(--ink);
  outline: none;

  font-size: 15px;

  transition: border-color 0.25s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--muted);
}

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

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-bottom-color: var(--ink);
}


/* ==================================================
   FORM ICONS
================================================== */

.input-icon {
  position: relative;
}

.input-icon i {
  position: absolute;
  top: 50%;
  left: 16px;
  z-index: 2;

  color: var(--ink);
  font-size: 16px;

  transform: translateY(-50%);
}

.input-icon input,
.input-icon textarea,
.input-icon select {
  padding-left: 48px;
}

.textarea-icon i {
  top: 22px;
  transform: none;
}


/* ==================================================
   PAYMENT OPTIONS
================================================== */

.payment-options {
  margin: 26px 0 18px;

  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.payment-card {
  position: relative;
  min-height: 76px;
  padding: 15px 16px 14px 42px;

  background: linear-gradient(180deg,
      var(--surface),
      var(--bg));

  border: 1px solid var(--line);
  /* border-radius: 17px; */

  cursor: pointer;

  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.payment-card input {
  position: absolute;
  top: 18px;
  left: 16px;

  width: 15px;
  height: 15px;

  accent-color: var(--ink);
}

.payment-title {
  color: var(--ink);
  font-size: 15px;
  font-weight: 850;
  line-height: 1.2;
}

.payment-subtitle {
  margin-top: 7px;

  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.payment-card:hover,
.payment-card:has(input:checked) {
  background: var(--surface);
  border-color: var(--ink);
  transform: translateY(-2px);
}

.payment-card:has(input:checked) {
  box-shadow: 0 10px 24px rgba(17, 17, 17, 0.08);
}

.payment-card:has(input:checked)::after {
  content: "Selected";
  position: absolute;
  top: 12px;
  right: 12px;

  padding: 4px 8px;

  background: var(--ink);
  /* border-radius: 999px; */
  color: var(--surface);

  font-size: 10px;
  font-weight: 900;
}

.payment-card:has(input:checked) .payment-title {
  color: var(--ink);
}


/* ==================================================
   TERMS CHECKBOX
================================================== */

.terms-check {
  margin: 18px 0 22px;

  display: flex;
  align-items: flex-start;
  gap: 10px;

  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.terms-check input {
  width: 15px;
  height: 15px;
  margin-top: 2px;
  flex-shrink: 0;

  accent-color: var(--ink);
}


/* ==================================================
   SUBMIT BUTTON
================================================== */

.submit-booking {
  width: 100%;
  padding: 14px 22px;

  background: var(--ink);
  border: 1px solid var(--ink);
  /* border-radius: 999px; */
  color: var(--surface);

  font-size: 15px;
  font-weight: 900;
  cursor: pointer;

  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.submit-booking:hover {
  background: transparent;
  color: var(--ink);
  transform: translateY(-2px);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 992px) {
  .booking-layout {
    grid-template-columns: 1fr;
  }

  .nav-links {
    gap: 14px;
  }
}

@media (max-width: 768px) {
  .nav {
    min-height: 74px;
  }

  .hamburger {
    display: flex;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border: 1px solid var(--line);
    cursor: pointer;
  }

  .hamburger span {
    width: 20px;
    height: 2px;
    background: var(--black);
    border-radius: 99px;
  }

  .nav-links {
    position: absolute;
    top: 74px;
    left: 12px;
    right: 12px;
    display: none;
    padding: 18px;
    border-radius: 20px;
    background: #fff;

    border: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
  }

  .nav-toggle:checked~.nav-links {
    display: flex;
  }

  .nav-cta {
    text-align: center;
  }

  .appt-hero {
    padding: 42px 0 20px;
  }

  .appt-hero h1 {
    font-size: clamp(30px, 11vw, 54px) !important;
  }

  .appt-hero p {
    font-size: 15px;
  }

  .appointment-section {
    padding: 25px 0 70px;
  }

  .visit-tabs {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .visit-tab {
    min-height: 74px;
    padding: 10px 6px;
    border-radius: 16px;
  }

  .visit-tab i {
    width: 34px;
    height: 34px;
    font-size: 14px;
  }

  .visit-tab span {
    font-size: 11px;
  }

  .booking-card,
  .booking-form-card {
    padding: 18px 15px;
    border-radius: 22px;
  }

  .booking-card h3,
  .booking-form-card h3 {
    font-size: 19px;
    margin-bottom: 18px;
  }

  .date-scroll {
    grid-auto-columns: calc((100% - 16px) / 3);
  }

  .time-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .time-grid button {
    min-width: 0;
    font-size: 13px;
    padding: 9px 10px;
  }

  .form-group {
    margin-bottom: 16px;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    font-size: 13px;
    padding: 10px 0;
  }

  .form-group textarea {
    min-height: 80px;
  }

  .input-icon i {
    left: 10px;
    font-size: 14px;
  }

  .input-icon input,
  .input-icon textarea,
  .input-icon select {
    padding-left: 34px;
  }

  .textarea-icon i {
    top: 18px;
  }

  .payment-options {
    grid-template-columns: 1fr;
    gap: 10px;
    margin: 18px 0 14px;
  }

  .payment-card {
    min-height: 62px;
    padding: 12px 12px 12px 38px;
    border-radius: 14px;
  }

  .payment-card input {
    top: 16px;
    left: 12px;
    width: 14px;
    height: 14px;
  }

  .payment-title {
    font-size: 13px;
  }

  .payment-subtitle {
    font-size: 11px;
    margin-top: 4px;
  }

  .payment-card:has(input:checked)::after {
    font-size: 9px;
    padding: 3px 7px;
    top: 8px;
    right: 8px;
  }

  .terms-check {
    font-size: 11px;
    gap: 8px;
    margin: 14px 0 18px;
  }

  .terms-check input {
    width: 14px;
    height: 14px;
  }

  .submit-booking {
    padding: 13px 18px;
    font-size: 14px;
    border-radius: 16px;
  }
}


/* ==================================================
   SCROLL TO TOP BUTTON
================================================== */

.scroll-top-btn {
  position: fixed;
  right: 24px;
  bottom: 30px;
  z-index: 9999;

  width: 30px;
  height: 58px;

  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;

  overflow: hidden;

  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 20px;
  color: var(--surface);

  cursor: pointer;

  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
}

.scroll-top-btn.show {
  display: flex;
}

.scroll-top-btn span {
  position: absolute;

  color: var(--surface);
  font-size: 28px;
  font-weight: 700;
  line-height: 1;

  opacity: 0;
  transform: translateY(18px);

  animation: arrowRise 1.8s infinite ease-in-out;
}

.scroll-top-btn span:nth-child(1) {
  animation-delay: 0s;
}

.scroll-top-btn span:nth-child(2) {
  animation-delay: 0.18s;
}

.scroll-top-btn span:nth-child(3) {
  animation-delay: 0.36s;
}

.scroll-top-btn span:nth-child(4) {
  animation-delay: 0.54s;
}

@keyframes arrowRise {
  0% {
    opacity: 0;
    transform: translateY(18px) scale(0.8);
  }

  35% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  70% {
    opacity: 0.45;
    transform: translateY(-14px) scale(0.9);
  }

  100% {
    opacity: 0;
    transform: translateY(-26px) scale(0.75);
  }
}

.scroll-top-btn:hover {
  background: var(--surface);
  border-color: var(--ink);
  color: var(--ink);
  transform: translateY(-4px);
}

.scroll-top-btn:hover span {
  color: var(--ink);
}


.footer-policy-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 9px;
  text-align: center;
  padding: 18px 16px 8px;
  font-size: 13px;
  font-weight: 500;
  /* color: rgba(255, 255, 255, 0.65); */
  margin-bottom: -20px;
}

.footer-policy-links a {
  color: var(--black);
  text-decoration: none;
  transition: 0.25s ease;
}

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

.footer-policy-links span {
  color: rgba(17, 17, 17, 0.32);
}

/* ==================================================
   DYNAMIC BOOKINZ INTEGRATION
================================================== */
:root {
  --white: #fff;
  --soft-white: #f5f5f3;
  --black: #111;
  --black-2: #1b1b1b;
  --text: #222;
  --gold: #111;
  --gold-dark: #111;
  --gold-soft: rgba(17, 17, 17, .08);
  --border: #dcdcd7;
  --shadow: 0 24px 70px rgba(0, 0, 0, .14);
}

html.subscription-expired-lock,
body.subscription-expired-lock {
  overflow: hidden !important;
}

.brand-logo {
  overflow: hidden;
  padding: 0 !important;
  background: #fff !important;
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
}

.theme-go-back {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  margin-left: auto;
}

.quick-actions {
  position: fixed;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 990;
  display: grid;
  gap: 9px;
}

.quick-actions a {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #111;
  color: #fff;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .18);
  transition: .25s ease;
}

.quick-actions a:hover {
  transform: translateY(-2px);
  background: #fff;
  color: #111;
}

.service-category-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 24px;
}

.service-category-tab {
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--muted);
  /* border-radius: 999px; */
  padding: 9px 16px;
  font-size: 13px;
  font-weight: 700;
  transition: .25s ease;
}

.service-category-tab:hover,
.service-category-tab.active {
  background: var(--ink);
  color: var(--surface);
  border-color: var(--ink);
}

.service-action-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.service-price-pill {
  display: inline-flex !important;
  align-items: center;
  min-height: 44px;
  padding: 10px 18px;
  /* border-radius: 999px; */
  background: #f0f0ed;
  color: var(--ink) !important;
  border: 1px solid var(--line);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  margin: 0 !important;
}

.service-price-pill[style*="display:none"] {
  display: none !important;
}

.book-service-form {
  margin: 0;
}

.book-service-form .service-btn {
  border: 0;
  cursor: pointer;
}

.services-section.has-no-services .service-showcase {
  position: relative;
  min-height: 390px;
  overflow: hidden;
}

.services-section.has-no-services .service-list,
.services-section.has-no-services .service-detail,
.services-section.has-no-services .service-image {
  filter: blur(5px);
  opacity: .45;
  pointer-events: none;
  user-select: none;
}

.no-services-overlay {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(245, 245, 243, .54);
  backdrop-filter: blur(2px);
}

.no-services-box {
  width: min(390px, 100%);
  padding: 30px;
  text-align: center;
  border-radius: 22px;
  background: rgba(255, 255, 255, .96);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.no-services-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 14px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-size: 22px;
}

.no-services-box h3 {
  margin: 0;
  font-size: 22px;
}

.map-empty-state {
  min-height: 260px;
  border: 1px dashed var(--line);
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  color: var(--muted);
  background: var(--surface);
}

.map-empty-state i {
  font-size: 34px;
  color: var(--ink);
}

.blog-extra-card[hidden] {
  display: none !important;
}

.lightbox-content iframe {
  display: block;
  width: min(100%, 1180px);
  aspect-ratio: 16 / 9;
  max-height: calc(100vh - 145px);
  border: 0;
  background: #000;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
}

.booking-empty-note,
.slot-empty-state {
  margin-top: 18px;
  padding: 18px;
  border: 1px dashed var(--line);
  border-radius: 16px;
  text-align: center;
  color: var(--muted);
  background: var(--surface);
}

.slot-empty-state {
  display: grid;
  gap: 5px;
  place-items: center;
}

.slot-empty-state i {
  font-size: 24px;
  color: var(--ink);
}

.no-slot-text {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  color: var(--muted);
  font-size: 13px;
}

.date-card.is-empty {
  opacity: .48;
}

.visit-tab.disabled,
.disabled-payment {
  opacity: .45;
  cursor: not-allowed;
}

.submit-booking:disabled {
  opacity: .48;
  cursor: not-allowed;
}

/* Multi-service dropdown */
.service-dropdown-field {
  position: relative;
}

.service-dropdown {
  position: relative;
}

.service-dropdown-btn {
  width: 100%;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  padding: 10px 0;
  text-align: left;
  cursor: pointer;
}

.service-dropdown-left {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.service-dropdown-left>span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.service-dropdown-arrow {
  transition: transform .25s ease;
}

.service-dropdown.open .service-dropdown-arrow {
  transform: rotate(180deg);
}

.service-dropdown-panel {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 8px);
  z-index: 60;
  display: none;
  max-height: 280px;
  overflow: auto;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(0, 0, 0, .14);
}

.service-dropdown.open .service-dropdown-panel {
  display: block;
}

.service-checkbox-grid {
  display: grid;
  gap: 8px;
}

.service-checkbox-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px;
  border: 1px solid #eee;
  border-radius: 12px;
  cursor: pointer;
}

.service-checkbox-item:hover {
  background: #f7f7f5;
}

.service-checkbox-item input {
  margin-top: 4px;
}

.service-checkbox-content {
  display: grid;
  gap: 2px;
}

.service-checkbox-content strong {
  font-size: 13px;
  color: var(--ink);
}

.service-checkbox-content small {
  font-size: 11px;
  color: var(--muted);
}

.service-empty-msg,
.service-error-text {
  color: #b42318;
  font-size: 12px;
}

/* Shared overlays and footer utilities */
.lead-popup-overlay,
.policy-modal,
.footer-popup,
.processing-modal,
.success-modal,
.error-modal {
  position: fixed;
  inset: 0;
  z-index: 20000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, .62);
  backdrop-filter: blur(5px);
}

.lead-popup-overlay.active,
.policy-modal.active,
.footer-popup.active,
.processing-modal.active,
.success-modal.active,
.error-modal.active {
  display: flex;
}

.lead-popup-box,
.policy-modal-box,
.footer-popup-card,
.processing-modal-box,
.success-modal-box,
.error-modal-box {
  position: relative;
  width: min(520px, 100%);
  max-height: 88vh;
  overflow: auto;
  /* border-radius: 24px; */
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 28px 90px rgba(0, 0, 0, .24);
  padding: 28px;
}

.footer-popup-close,
.lead-close-btn,
.policy-close-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: #f0f0ed;
  color: #111;
  font-size: 23px;
}

.footer-popup-card h3 {
  margin: 0 0 8px;
  font-size: 20px;
}

.lead-popup-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #111;
  color: #fff;
  margin-bottom: 14px;
}

.lead-popup-box h3,
.footer-popup-card h3 {
  margin: 0 0 8px;
}

.lead-popup-box p,
.footer-popup-card p {
  color: var(--muted);
}

.lead-popup-box form {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.lead-popup-box input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
}

.lead-submit-btn {
  border: 0;
  border-radius: 12px;
  background: #111;
  color: #fff;
  padding: 13px 16px;
  font-weight: 700;
}

.lead-error {
  min-height: 18px;
  color: #b42318;
  font-size: 12px;
}

.qr-image-box {
  display: grid;
  place-items: center;
  margin-top: 18px;
}

.qr-image-box img {
  width: min(300px, 100%);
}

.share-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 18px;
}

.share-options a,
.share-options button {
  min-height: 72px;
  display: grid;
  place-items: center;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  color: #111;
}

.policy-modal-box {
  width: min(820px, 100%);
  padding: 0;
}

.policy-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 28px 16px;
}

.policy-modal-head h3 {
  margin: 0;
  font-family: Georgia, serif;
  font-size: clamp(24px, 3vw, 34px);
}

.policy-modal-head .policy-close-btn {
  position: static;
  flex: 0 0 auto;
}

.policy-modal-divider {
  height: 1px;
  margin: 0 28px;
  background: var(--line);
  position: relative;
}

.policy-modal-divider span {
  position: absolute;
  left: 0;
  top: -1px;
  width: 74px;
  height: 3px;
  background: #111;
}

.policy-modal-text {
  padding: 24px 28px 30px;
  color: #444;
  line-height: 1.75;
}

.vendor-policy-list {
  position: relative;
  display: grid;
  gap: 22px;
}

.vendor-policy-list::before {
  content: "";
  position: absolute;
  left: 21px;
  top: 22px;
  bottom: 22px;
  width: 1px;
  background: var(--line);
}

.vendor-policy-item {
  position: relative;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px;
}

.vendor-policy-number {
  position: relative;
  z-index: 1;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #111;
  color: #fff;
  font-weight: 800;
  font-size: 12px;
}

.vendor-policy-content h4 {
  margin: 3px 0 8px;
  color: #111;
  font-size: 17px;
}

.vendor-policy-content p {
  margin: 0;
}

.footer-missing-msg {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.bookinz-policy-menu-wrap {
  position: relative;
  display: inline-flex;
}

.powered-by {
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  padding: 0;
  cursor: pointer;
}

.bookinz-policy-dropdown {
  position: absolute;
  right: 0;
  bottom: calc(100% + 14px);
  z-index: 1000;
  width: min(310px, calc(100vw - 28px));
  padding: 12px;
  /* border-radius: 18px; */
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 20px 55px rgba(0, 0, 0, .18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px) scale(.98);
  transform-origin: bottom right;
  transition: .2s ease;
}

.bookinz-policy-dropdown::after {
  content: "";
  position: absolute;
  right: 28px;
  bottom: -8px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transform: rotate(45deg);
}

.bookinz-policy-dropdown.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.bookinz-policy-dropdown-title {
  padding: 6px 10px 10px;
  font-weight: 800;
  color: #111;
}

.bookinz-policy-dropdown-divider {
  height: 1px;
  background: var(--line);
  margin: 7px 0;
}

.bookinz-policy-dropdown>button,
.bookinz-policy-dropdown>a {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: #333;
  padding: 9px 10px;
  text-align: left;
  font-size: 13px;
}

.bookinz-policy-dropdown>button:hover,
.bookinz-policy-dropdown>a:hover {
  background: #f2f2ef;
  color: #111;
}

.bookinz-policy-dropdown>button i,
.bookinz-policy-dropdown>a i {
  font-size: 11px;
}

.processing-spinner {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  border: 4px solid #e7e7e2;
  border-top-color: #111;
  border-radius: 50%;
  animation: dynamicSpin .8s linear infinite;
}

@keyframes dynamicSpin {
  to {
    transform: rotate(360deg);
  }
}

.processing-modal-box,
.success-modal-box,
.error-modal-box {
  text-align: center;
}

.success-icon,
.error-icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 16px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #111;
  color: #fff;
  font-size: 27px;
}

.error-icon.warning {
  background: #f59e0b;
}

.error-icon.error {
  background: #b42318;
}

.success-modal-box button,
.error-modal-box button {
  margin-top: 16px;
  border: 0;
  border-radius: 12px;
  background: #111;
  color: #fff;
  padding: 12px 22px;
  font-weight: 700;
}

@media (max-width: 767px) {
  .quick-actions {
    right: 10px;
  }

  .quick-actions a {
    width: 38px;
    height: 38px;
  }

  .service-category-tabs {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .service-category-tab {
    flex: 0 0 auto;
  }

  .media-lightbox {
    padding: 14px;
  }

  .media-lightbox-prev {
    left: 8px;
  }

  .media-lightbox-next {
    right: 8px;
  }

  .media-lightbox-close {
    top: 8px;
    right: 8px;
  }

  .lead-popup-box,
  .policy-modal-box,
  .footer-popup-card {
    /* border-radius: 18px; */
  }

  .policy-modal-head {
    padding: 20px 18px 14px;
  }

  .policy-modal-divider {
    margin: 0 18px;
  }

  .policy-modal-text {
    padding: 20px 18px 24px;
  }

  .vendor-policy-item {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 10px;
  }

  .vendor-policy-list::before {
    left: 17px;
  }

  .vendor-policy-number {
    width: 34px;
    height: 34px;
  }

  .bookinz-policy-dropdown {
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: 72px;
    width: auto;
    transform-origin: bottom center;
  }

  .bookinz-policy-dropdown::after {
    right: 36px;
  }
}

.service-check-card {
  position: relative;
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: center;
  gap: 10px;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
  transition: .2s ease;
}

.service-check-card:hover {
  border-color: var(--ink);
  background: var(--bg);
}

.service-check-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.service-check-icon {
  width: 24px;
  height: 24px;
  border: 1px solid var(--line);
  border-radius: 7px;
  display: grid;
  place-items: center;
  color: transparent;
}

.service-check-card input:checked+.service-check-icon {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.service-check-content {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.service-check-content strong {
  font-size: 14px;
}

.service-check-content small {
  color: var(--muted);
  font-size: 12px;
}

.booking-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 20000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(10, 10, 10, .62);
  backdrop-filter: blur(8px);
}

.booking-modal-overlay.active {
  display: flex;
}

.booking-modal-card {
  position: relative;
  width: min(100%, 460px);
  padding: 30px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 28px 90px rgba(0, 0, 0, .28);
  text-align: center;
}

.booking-modal-card.small {
  width: min(100%, 390px);
}

.booking-modal-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 25px;
  background: #f0f0ed;
  color: #111;
}

.booking-modal-icon.success {
  background: #ecfdf3;
  color: #027a48;
}

.booking-modal-icon.error {
  background: #fef3f2;
  color: #b42318;
}

.booking-modal-icon.warning {
  background: #fffaeb;
  color: #b54708;
}

.booking-confirm-box {
  margin: 20px 0;
  padding: 14px;
  border-radius: 12px;
  background: var(--bg);
  display: grid;
  gap: 4px;
}

.booking-modal-btn {
  width: 100%;
  min-height: 48px;
  border: 0;
  /* border-radius: 999px; */
  background: var(--ink);
  color: #fff;
  font-weight: 700;
}

.booking-loader-wrap {
  position: relative;
  width: 72px;
  height: 72px;
  margin: 0 auto 16px;
  display: grid;
  place-items: center;
  color: #111;
}

.booking-loader {
  position: absolute;
  inset: 0;
  border: 4px solid #e7e7e2;
  border-top-color: #111;
  border-radius: 50%;
  animation: bookinzSpin .8s linear infinite;
}

@keyframes bookinzSpin {
  to {
    transform: rotate(360deg);
  }
}


/* ==================================================
   REFERENCE THEME BEHAVIOUR ALIGNMENT
   Call modal, QR modal, Bookinz dropdown and mobile
   floating controls match the completed reference themes.
================================================== */

.brand-initial {
  display: block;
  font-size: 18px;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.lead-popup-box {
  width: min(420px, 100%);
  padding: 32px 28px 28px;
  text-align: center;
}

.lead-popup-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  font-size: 24px;
}

.lead-popup-icon i {
  display: block;
  line-height: 1;
}

.lead-popup-box p {
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}

.qr-popup-card {
  width: min(360px, 100%);
  padding: 24px;
  overflow: hidden;
  text-align: center;
}

.qr-image-box {
  width: 220px;
  height: 220px;
  margin: 16px auto 0;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}

.qr-image-box img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.bookinz-policy-dropdown {
  pointer-events: none;
}

.bookinz-policy-dropdown.active {
  pointer-events: auto;
}

@media (max-width: 767px) {
  .brand-initial {
    font-size: 16px;
  }

  .quick-actions {
    right: 10px;
  }

  .quick-actions a {
    width: 40px;
    height: 40px;
  }

  .scroll-top-btn {
    right: 15px;
  }

  .lead-popup-box {
    padding: 28px 20px 24px;
  }

  .qr-popup-card {
    width: min(340px, 100%);
    padding: 22px 18px;
  }

  .qr-image-box {
    width: 205px;
    height: 205px;
  }

  .bookinz-policy-dropdown {
    position: absolute;
    left: auto;
    right: 50%;
    bottom: calc(100% + 13px);
    width: min(250px, calc(100vw - 32px));
    transform: translate(50%, 8px) scale(.98);
    transform-origin: bottom center;
  }

  .bookinz-policy-dropdown.active {
    transform: translate(50%, 0) scale(1);
  }

  .bookinz-policy-dropdown::after {
    right: 50%;
    margin-right: -7px;
  }
}

/* Align Select Services icon/text with other form fields */
.service-dropdown-btn {
  padding: 10px 0 10px 16px;
}

.service-dropdown-left {
  gap: 16px;
}

.service-dropdown-left>i {
  width: 16px;
  flex: 0 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  font-size: 16px;
  text-align: center;
}

@media (max-width: 768px) {
  .service-dropdown-btn {
    padding-left: 10px;
  }

  .service-dropdown-left {
    gap: 10px;
  }

  .service-dropdown-left>i {
    width: 14px;
    flex-basis: 14px;
    font-size: 14px;
  }
}