/* ================================================
   MARVIZI COSMETIC DENTIST
   Complete CSS - Pixel-Perfect PDF Design
   ================================================ */

/* ----------------------------------------
   CSS CUSTOM PROPERTIES
   ---------------------------------------- */
:root {
  /* Colors */
  --gold: #d4a800;
  --gold-dark: #b89200;
  --gold-light: #e8c84d;
  --teal: #03a0b3;
  --navy: #1c2975;
  --page-bg: #fdf9ef;
  --cream: #f9f2e2;
  --cream-dark: #f0e8d4;
  --dark: #1a1a1a;
  --text: #333333;
  --text-muted: #777777;
  --white: #ffffff;
  --border: #e8e2d6;

  /* Typography */
  --font-body: 'Inter', sans-serif;
  --font-display: 'Poltawski Nowy', 'Playfair Display', serif;

  /* Layout */
  --container: 1200px;
  --gutter: 40px;
}

/* ----------------------------------------
   RESET & BASE
   ---------------------------------------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--page-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease;
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
}
.pt-0{
    padding-top: 0 !important;
}
.pb-0{
    padding-bottom: 0 !important;
}
/* ----------------------------------------
   UTILITY CLASSES
   ---------------------------------------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section {
  padding: 80px 0;
}

.text-center {
  text-align: center;
}

/* ----------------------------------------
   BUTTONS
   ---------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 120px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s;
  font-family: var(--font-body);
}

.btn-gold {
  background: var(--gold);
  color: white;
  border-color: var(--gold);
}

.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
}

.btn-outline {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: white;
}

.btn-dark {
  background: var(--gold);
  color: white;
  border-color: var(--gold);
}

.btn-outline-dark {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold);
}

.btn-lg {
  padding: 14px 36px;
  font-size: 15px;
}

.btn-block {
  width: 100%;
  justify-content: center;
}

.btn-white {
  background: white;
  color: var(--dark);
  border-color: white;
}

.btn-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ----------------------------------------
   TOP BAR
   ---------------------------------------- */
.top-bar {
  background: var(--gold);
  text-align: center;
  padding: 0;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  transition: transform 0.3s;
}

.top-bar.hidden {
  transform: translateY(-100%);
}

.top-bar a {
  color: white;
  text-decoration: underline;
  font-weight: 500;
}

/* ----------------------------------------
   MAIN NAV
   ---------------------------------------- */
.main-nav {
  position: fixed;
  top: var(--topbar-h, 36px);
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 60px 0;
  transition: top 0.3s ease, padding 0.3s ease;
}

.main-nav .nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 72px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: background 0.3s ease, box-shadow 0.3s ease, height 0.3s ease, border-radius 0.3s ease;
}

.main-nav.scrolled {
  top: 0;
  padding: 0;
}

.main-nav.scrolled .nav-inner {
  background: var(--cream);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
  border-radius: 0;
  border: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  max-width: 100%;
  height: 64px;
  padding: 0 60px;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1.2;
  flex-shrink: 0;
}

.logo-name {
  font-family: 'Playfair Display', var(--font-display), serif;
  font-size: 22px;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.01em;
  transition: color 0.3s;
}

.logo-tagline {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
  transition: color 0.3s;
}

.scrolled .logo-name {
  color: var(--dark);
}

.scrolled .logo-tagline {
  color: var(--gold);
}

/* Hide any old logo img if present */
.nav-logo img {
  /*display: none;*/
    width: 100%;
    max-width: 210px;
}
.main-nav img.dark-logo, .main-nav.scrolled img.white-logo {
    display: none;
}
.main-nav.scrolled img.dark-logo, .main-nav img.white-logo {
    display: block;
}
.nav-links {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-links > ul {
  display: flex;
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-links li > a {
  padding: 6px 0;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.01em;
  line-height: 1.15;
  text-decoration: none;
  transition: color 0.2s, opacity 0.2s;
  white-space: nowrap;
  display: inline-block;
}

.nav-links li > a {
  position: relative;
}

.nav-links li > a:not(.has-drop > a)::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: rgba(255, 255, 255, 0.7);
  transition: width 0.25s ease;
  border-radius: 2px;
}

.nav-links li > a:not(.has-drop > a):hover::before {
  width: 100%;
}

.nav-links li > a:hover {
  opacity: 1;
}

.scrolled .nav-links li > a {
  color: var(--text);
}

.scrolled .nav-links li > a:not(.has-drop > a)::before {
  background: var(--gold);
}

.scrolled .nav-links li > a:hover {
  color: var(--gold);
  opacity: 1;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-cta {
  background: var(--gold);
  color: white;
  padding: 10px 28px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-body);
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  border: none;
  display: inline-flex;
  align-items: center;
  height: 42px;
}

.nav-cta:hover {
  background: var(--gold-dark);
  color: white;
}

.scrolled .nav-cta {
  color: white;
}

/* Dropdown */
.has-drop {
  position: relative;
}

/* Invisible bridge covers the gap so hover is never lost */
.has-drop::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -10px;
  right: -10px;
  height: 16px;
  z-index: 99;
}

.drop {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease;
  transform: translateX(-50%) translateY(-6px);
  z-index: 100;
}

.has-drop:hover .drop {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.drop li a {
  display: block;
  padding: 10px 28px;
  font-size: 14px;
  color: var(--text);
  letter-spacing: normal;
  text-align: center;
  transition: background 0.2s, color 0.2s;
}

.drop li a:hover {
  background: var(--cream);
  color: var(--gold);
  opacity: 1;
}

/* Chevron arrow for dropdown trigger */
.has-drop > a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.has-drop > a::after {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 10px;
  height: 6px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 5'%3E%3Cpath d='M1 1l3 3 3-3' stroke='rgba(255,255,255,0.8)' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: contain;
  padding-left: 12px;
  
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.scrolled .has-drop > a::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 5'%3E%3Cpath d='M1 1l3 3 3-3' stroke='%23333333' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.has-drop:hover > a::after {
  transform: rotate(180deg) translateX(-2px);
}

.scrolled .has-drop:hover > a::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 5'%3E%3Cpath d='M1 1l3 3 3-3' stroke='%23d4a800' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

/* Nav Toggle (Hamburger) - hidden on desktop, visible on mobile */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 22px;
  height: 22px;
  padding: 0;
  cursor: pointer;
  background: none;
  border: none;
  z-index: 1001;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s;
}

.scrolled .nav-toggle span {
  background: var(--dark);
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.nav-toggle.open span {
  background: var(--dark);
}

/* ----------------------------------------
   HERO
   ---------------------------------------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 0;
}

.hero-bg {
  position: absolute;
  top: var(--topbar-h, 36px);
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.25) 0%,
    rgba(0, 0, 0, 0.15) 30%,
    rgba(0, 0, 0, 0.45) 65%,
    rgba(0, 0, 0, 0.72) 100%
  );
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px 80px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.hero-content {
  padding-left: 0;
}

.hero-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: white;
  background: rgba(212, 168, 0, 0.85);
  padding: 7px 18px;
  border-radius: 120px;
  margin-bottom: 20px;
}

.hero h1 {
  font-family: 'Poltawski Nowy', var(--font-display), serif;
  font-size: 56px;
  font-weight: 600;
  font-style: italic;
  line-height: 1.12;
  color: white;
  max-width: 620px;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-sub {
  font-size: 19px;
  font-weight: 400;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
  max-width: 580px;
  margin-bottom: 32px;
}

.btn-white {
  background: white;
  color: var(--gold);
  border-color: white;
  padding: 14px 28px;
  border-radius: 120px;
  font-size: 16px;
  font-weight: 600;
}

.btn-white:hover {
  background: var(--cream);
  border-color: var(--cream);
}

/* Premium button hover lift */
.btn,
.btn-gold,
.btn-white,
.btn-outline,
.nav-cta {
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-gold:hover,
.btn-white:hover,
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
}

.btn-outline:hover {
  transform: translateY(-2px);
}

.btn-lg {
  height: 46px;
  padding: 0 36px;
  font-size: 16px;
  border-radius: 120px;
  line-height: 1;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn-row-center {
  justify-content: center;
}

.btn-block {
  width: 100%;
  justify-content: center;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
  background: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-radius: 0;
}

.hero-stat {
  padding: 0;
  text-align: left;
  border-right: none;
}

.hero-stat strong {
  display: block;
  font-family: var(--font-body);
  font-size: 26px;
  font-weight: 700;
  color: white;
  line-height: 1.4;
}

.hero-stat span {
  display: block;
  font-size: 18px;
  font-weight: 400;
  color: white;
  margin-top: 0;
  letter-spacing: 0;
}

.hero-stat-divider {
  width: 2px;
  height: 61px;
  background: rgba(255, 255, 255, 0.4);
}

/* ----------------------------------------
   SERVICES
   ---------------------------------------- */
.services-section {
  padding: 80px 0 60px;
  background: var(--page-bg);
}

.sec-title {
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 48px;
  color: var(--dark);
  margin-bottom: 48px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.service-card {
  text-align: center;
  background: #f8f2e4;
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.service-card-num {
  display: block;
  font-size: 18px;
  color: #b38a00;
  font-weight: 700;
  margin-bottom: 6px;
}

.service-card h3 {
  font-size: 28px;
  font-weight: 400;
  color: #1e1e1e;
  margin-bottom: 6px;
  line-height: 1.2;
}

.service-card p {
  font-size: 18px;
  font-weight: 400;
  color: #1e1e1e;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 0;
}

.service-card-img {
  border-radius: 12px;
  overflow: hidden;
  height: 300px;
  margin-top: auto;
  padding-top: 21px;
}

.service-card-img img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s;
}

.service-card:hover .service-card-img img {
  transform: scale(1.03);
}

.services-btns {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 48px;
  padding-bottom: 20px;
}

/* ----------------------------------------
   TRUST
   ---------------------------------------- */
.trust-section {
  padding: 60px 0 20px;
}

.trust-heading {
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 48px;
  color: var(--dark);
  max-width: 700px;
  margin: 0 auto 32px;
}

.trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  max-width: 700px;
  margin: 0 auto;
}

.trust-quote {
  font-size: 15px;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.5;
  flex: 1;
}

.trust-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}
.trust-icon svg {
  width: 24px;
  height: 24px;
  color: #fff;
}

.trust-label {
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  flex: 1;
}

/* ----------------------------------------
   CATEGORIES
   ---------------------------------------- */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
}

.cat-cell {
  padding: 36px 32px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cat-cell:nth-child(3n) {
  border-right: none;
}

.cat-cell:nth-last-child(-n+3) {
  border-bottom: none;
}

.cat-cell h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.3;
}

.cat-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
}

.cat-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cat-list li {
  font-size: 14px;
  color: var(--text-muted);
  padding: 3px 0;
}

.cat-cell--cta {
  background: var(--cream);
  border-right: none;
}

.cat-cell--cta h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 26px;
  color: var(--gold);
}

.cat-cell--cta p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.cat-cell--cta .btn {
  border-color: var(--gold);
  color: var(--gold);
}
.cat-cell--cta .btn:hover {
  color: var(--white);
}
/* ----------------------------------------
   OUR PRACTICE
   ---------------------------------------- */
.practice-section {
  padding: 100px 0;
  background: #f9f2e2;
}

.practice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.practice-img-wrap {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

.practice-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.practice-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-dark);
  border: 1px solid rgba(179, 138, 0, 0.35);
  border-radius: 120px;
  padding: 5px 16px;
  margin-bottom: 20px;
}

.practice-heading {
  font-family: 'Poltawski Nowy', var(--font-display), serif;
  font-size: 44px;
  font-weight: 500;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 20px;
}

.practice-heading em {
  font-style: italic;
  color: var(--gold);
}

.practice-desc {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.credentials-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.cred-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}

.cred-item:last-child {
  border-bottom: none;
}

.cred-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 6px;
}

.cred-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cred-text strong {
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
}

.cred-text span {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ----------------------------------------
   VIDEOS
   ---------------------------------------- */
.videos-section {
  padding: 40px 0 80px;
}

.videos-heading {
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 48px;
  margin-bottom: 36px;
}

.videos-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.video-card {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 3/4;
  background: #ddd;
}

.video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--dark);
}

/* ----------------------------------------
   WHAT MAKES US DIFFERENT
   ---------------------------------------- */
.different-section {
  padding: 80px 0;
}

.different-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.different-text h2 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 48px;
  color: var(--dark);
  margin-bottom: 20px;
  line-height: 1.15;
}

.different-text p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 28px;
}

.different-img {
  border-radius: 16px;
  overflow: hidden;
  height: 420px;
}

.different-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ----------------------------------------
   SMILE TRANSFORMATIONS
   ---------------------------------------- */
.transformations-section {
  background: var(--dark, #1a1a1a);
  padding: 100px 0;
}

.transform-header {
  margin-bottom: 60px;
}

.transform-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(212, 168, 0, 0.4);
  border-radius: 120px;
  padding: 5px 16px;
  margin-bottom: 20px;
}

.transform-heading {
  font-family: 'Poltawski Nowy', var(--font-display), serif;
  font-size: 44px;
  font-weight: 500;
  line-height: 1.15;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 12px;
}

.transform-heading em {
  font-style: italic;
  color: rgba(255, 255, 255, 0.45);
}

.transform-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
}

.ba-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ba-card {
  border: 1px solid rgba(212, 168, 0, 0.15);
  border-radius: 8px;
  overflow: hidden;
}

.ba-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(212, 168, 0, 0.1);
  height: 200px;
}

.ba-side {
  background: #2a2622;
  display: flex;
  align-items: flex-end;
  padding: 12px;
  position: relative;
}

.ba-after {
  background: #1e1c1a;
}

.ba-tag {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  background: rgba(0, 0, 0, 0.4);
  padding: 4px 10px;
  border-radius: 2px;
}

.ba-info {
  padding: 20px 24px;
  background: #1e1c1a;
}

.ba-procedure {
  font-family: 'Poltawski Nowy', var(--font-display), serif;
  font-size: 19px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 400;
  margin-bottom: 6px;
}

.ba-detail {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.05em;
}

.transform-cta {
  text-align: center;
  margin-top: 48px;
}

.transform-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid rgba(212, 168, 0, 0.4);
  padding-bottom: 3px;
  transition: border-color 0.2s;
}

.transform-link:hover {
  border-color: var(--gold);
}

@media (max-width: 768px) {
  .ba-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .transform-heading {
    font-size: 32px;
  }
}

/* ----------------------------------------
   COMPARISON TABLE
   ---------------------------------------- */
.compare-section {
  background: #fdf8ef;
  padding: 100px 0;
}

.compare-heading {
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 48px;
  margin-bottom: 48px;
}

.compare-table {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  border-collapse: separate;
  border-spacing: 0;
  background: #faf2e3;
  border-radius: 24px;
  overflow: hidden;
  table-layout: fixed;
}

.compare-table th {
  padding: 16px 20px;
  font-size: 14px;
  font-weight: 600;
}

.col-us {
  background: #b38a00;
  color: white;
  text-align: center;
  width: 220px;
  min-width: 220px;
  border-radius: 12px 12px 0 0;
  padding: 24px 24px;
}

.col-us img {
  display: none;
}

.compare-logo-name {
  display: block;
  font-family: 'Playfair Display', var(--font-display), serif;
  font-size: 20px;
  font-weight: 400;
  color: white;
  line-height: 1.2;
  white-space: nowrap;
}

.compare-logo-tagline {
  display: block;
  font-family: var(--font-body);
  font-size: 7px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 4px;
  white-space: nowrap;
}

.col-other {
  text-align: center;
  font-size: 16px !important;
  font-weight: 500;
  color: var(--text);
  width: 220px;
  min-width: 220px;
}

.compare-table td {
  padding: 18px 24px;
  font-size: 16px;
  border-bottom: 1px solid #d1c9bf;
  vertical-align: middle;
}

.compare-table td:first-child {
  color: var(--text);
  text-align: left;
}

.compare-table td:nth-child(2) {
  text-align: center;
  background: #b38a00;
  border-bottom-color: #cca72a;
}

.compare-table tbody tr:last-child td {
  border-bottom: none;
}

.compare-table tbody tr:last-child td:nth-child(2) {
  border-radius: 0 0 12px 12px;
}

.compare-table td:last-child {
  text-align: center;
  background: #faf2e3;
}

.compare-yes {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.6);
  color: white;
  font-size: 13px;
  font-weight: 700;
}

.compare-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid #c5bfb3;
  color: #b0a99d;
  font-size: 13px;
}

/* ----------------------------------------
   DOCTOR SLIDER
   ---------------------------------------- */
.doctor-section {
  padding: 80px 0;
  background: #f9f2e2;
}

.doctor-slider {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 60px;
}

.doctor-slider-inner {
  overflow: hidden;
}

.doctor-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.doctor-slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 60px;
  align-items: center;
}

.doctor-photo {
  border-radius: 16px;
  overflow: hidden;
  height: 525px;
}

.doctor-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.doctor-info h2 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 36px;
  color: var(--dark);
  margin-bottom: 8px;
}

.doctor-info .credentials {
  font-size: 15px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 16px;
  line-height: 1.5;
  font-style: italic;
}

.doctor-info p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.doctor-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 120px;
  background: var(--gold);
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  z-index: 2;
  transition: background 0.2s;
  flex-shrink: 0;
}

.doctor-nav:hover {
  background: var(--gold-dark);
}

.doctor-nav--prev {
  left: 0;
}

.doctor-nav--next {
  right: 0;
}

.doctor-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 24px;
}

.doctor-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s;
}

.doctor-dot.active {
  background: var(--gold);
}

/* Legacy grid fallback (unused but harmless) */
.doctor-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

/* ----------------------------------------
   PRICING
   ---------------------------------------- */
.pricing-section {
  padding: 80px 0;
}

.pricing-heading {
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 48px;
  margin-bottom: 12px;
}

.pricing-sub {
  text-align: center;
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 48px;
}

.pricing-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 48px;
  max-width: 900px;
  margin: 0 auto;
}

.pricing-card-header {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
}

.pricing-badge {
  display: inline-block;
  font-size: 11px;
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.pricing-plan-name {
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.pricing-price {
  font-family: var(--font-display);
  font-size: 60px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 8px;
}

.pricing-price span {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-muted);
}

.pricing-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
}

.pricing-feature .check {
  display: inline-flex;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gold);
  color: white;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
}

/* ----------------------------------------
   TESTIMONIALS SLIDER
   ---------------------------------------- */
.testimonials-section {
  padding: 100px 0;
}

.testi-heading {
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 48px;
  margin-bottom: 48px;
}

.testi-slider {
  position: relative;
  padding: 0 60px;
}

.testi-overflow {
  overflow: hidden;
}

.testi-track {
  display: flex;
  gap: 24px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.testi-slide {
  flex-shrink: 0;
}

.testi-card {
  background: #fef9ef;
  border-radius: 12px;
  padding: 24px;
  border: 1px solid #d1c9bf;
  box-shadow: 0 0 32px rgba(0, 0, 0, 0.06);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.testi-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.testi-name {
  font-size: 18px;
  font-weight: 600;
  color: var(--gold);
}

.testi-stars {
  display: flex;
  gap: 4px;
  align-items: center;
}

.testi-text {
  font-size: 15px;
  color: #1e1e1e;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 16px;
  flex: none;
}

.testi-text.expanded {
  display: block;
  -webkit-line-clamp: unset;
  max-height: 120px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) transparent;
}

.testi-text.expanded::-webkit-scrollbar {
  width: 4px;
}

.testi-text.expanded::-webkit-scrollbar-track {
  background: transparent;
}

.testi-text.expanded::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 4px;
}

.testi-read-more-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  color: rgba(30, 30, 30, 0.6);
  padding: 0;
  font-family: var(--font-body);
  text-align: left;
  margin-top: auto;
  text-decoration: none;
}

.testi-read-more-btn:hover {
  text-decoration: underline;
}

.testi-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #b38a00;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  z-index: 2;
  transition: background 0.2s;
  flex-shrink: 0;
}

.testi-nav svg path {
  stroke: white;
}

.testi-nav:hover {
  background: #8a6b00;
}

.testi-nav--prev {
  left: 0;
}

.testi-nav--next {
  right: 0;
}

/* ----------------------------------------
   FINAL CTA
   ---------------------------------------- */
.final-cta {
  background: var(--cream);
  padding: 100px 0;
  text-align: center;
}

.final-cta h2 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 48px;
  color: var(--dark);
  margin-bottom: 16px;
}

.final-cta p {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 36px;
}

/* ----------------------------------------
   LIFE IS SHORT CTA
   ---------------------------------------- */
.life-cta-section {
  background: #faf2e3;
  padding: 100px 0 60px;
  text-align: center;
}

.life-cta-heading {
  font-family: 'Poltawski Nowy', var(--font-display), serif;
  font-style: italic;
  font-size: 48px;
  font-weight: 500;
  color: #1e1e1e;
  margin-bottom: 16px;
}

.life-cta-sub {
  font-size: 18px;
  color: #1e1e1e;
  margin-bottom: 32px;
}

.life-cta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.life-cta-btns .btn-outline-gold {
  display: inline-flex;
  align-items: center;
  height: 48px;
  padding: 0 28px;
  border: 1.5px solid var(--gold);
  border-radius: 120px;
  color: var(--gold);
  background: transparent;
  font-size: 16px;
  font-weight: 600;
  white-space: nowrap;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.life-cta-btns .btn-outline-gold:hover {
  background: var(--gold);
  color: white;
}

/* ----------------------------------------
   FOOTER
   ---------------------------------------- */
.site-footer {
  background: #faf2e3;
  padding: 48px 0 42px;
}

/* On homepage, life-cta-section sits above footer — no extra top padding needed */
.home .site-footer {
  padding-top: 0;
}

.footer-card {
  background: #fef9ef;
  border-radius: 24px;
  padding: 48px 42px;
  max-width: 1440px;
  margin: 0 auto;
  box-shadow: 0 0 32px rgba(0, 0, 0, 0.06);
}

.footer-logo {
  text-align: left;
  margin-bottom: 48px;
}

.footer-logo img {
  /*display: none;*/
    width: 100%;
    max-width: 210px;
}

.footer-logo-link {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
}

.footer-logo-name {
  font-family: 'Playfair Display', var(--font-display), serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--dark);
  letter-spacing: 0.01em;
}

.footer-logo-tagline {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 3px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.5fr 0.5fr;
  gap: 40px;
}

.footer-col h4 {
  font-size: 16px;
  font-weight: 600;
  color: #1e1e1e;
  margin-bottom: 25px;
  letter-spacing: 0.02em;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin-bottom: 12px;
  font-size: 16px;
  color: #1e1e1e;
}

.footer-col a {
  font-size: 16px;
  color: #1e1e1e;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--gold);
}

.footer-col address {
  font-style: normal;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.footer-col address a {
  color: var(--text-muted);
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid #d1c9bf;
  color: #1e1e1e;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer-bottom {
  text-align: center;
  padding: 24px 0 0;
  margin-top: 0;
  font-size: 16px;
  color: #1e1e1e;
}

.footer-legal {
  display: inline-flex;
  gap: 16px;
  margin-left: 12px;
}

.footer-legal a {
  color: var(--gold);
  text-decoration: none;
  font-size: 14px;
}

.footer-legal a:hover {
  text-decoration: underline;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 13px;
  color: var(--text-muted);
}

.hours-row:last-child {
  border-bottom: none;
}

/* ----------------------------------------
   INNER PAGES
   ---------------------------------------- */
.page-hero {
  background: var(--cream);
  padding: 140px 0 60px;
  text-align: center;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 44px;
  margin-bottom: 16px;
}

.page-hero-img {
  max-width: 700px;
  margin: 16px auto 0;
  border-radius: 16px;
  overflow: hidden;
}

.page-hero-img img {
  width: 100%;
  display: block;
}

.with-sidebar {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  padding: 60px 0;
}

.content-body h2 {
  font-family: var(--font-display);
  font-size: 26px;
  margin: 28px 0 14px;
  color: var(--dark);
}

.content-body h2:first-child {
  margin-top: 0;
}

.content-body h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 24px 0 10px;
}

.content-body p {
  margin-bottom: 16px;
  line-height: 1.75;
  color: var(--text);
}

.content-body ul,
.content-body ol {
  margin: 0 0 16px 20px;
}

.content-body li {
  margin-bottom: 6px;
  line-height: 1.6;
}

.content-body a {
  color: var(--gold);
  font-weight: 600;
}

.content-body img {
  border-radius: 12px;
  margin: 20px 0;
  max-width: 100%;
}

.sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sw {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px;
}

.sw h3 {
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.sw p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 8px;
}

.sw-gold {
  background: var(--gold);
  border-color: var(--gold);
}

.sw-gold h3,
.sw-gold p {
  color: white;
}

.sw-gold p {
  color: rgba(255, 255, 255, 0.8);
}

.sw img {
  max-width: 100%;
  border-radius: 8px;
  margin-top: 6px;
}

/* ----------------------------------------
   RESPONSIVE - 1024px
   ---------------------------------------- */
@media (max-width: 1440px) {
  .main-nav {
    padding: 12px 32px 0;
  }
  .main-nav.scrolled .nav-inner {
    padding: 0 40px;
  }
}

@media (max-width: 1024px) {
  .main-nav {
    padding: 8px 16px 0;
  }

  .main-nav .nav-inner {
    padding: 0 20px;
    height: 60px;
  }

  .main-nav.scrolled .nav-inner {
    padding: 0 24px;
    height: 56px;
  }

  .nav-links > ul {
    gap: 10px;
  }

  .nav-links li > a {
    font-size: 13px;
  }

  .logo-name {
    font-size: 18px;
  }

  .logo-tagline {
    font-size: 8px;
  }

  .nav-cta {
    padding: 8px 16px;
    font-size: 13px;
    height: 36px;
  }

  .hero {
    height: 100svh;
    min-height: 600px;
  }

  .hero-inner {
    flex-direction: column;
    padding: 160px 24px 40px;
    gap: 40px;
  }

  .container {
    padding: 0 24px;
  }

  .section {
    padding: 80px 0;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .different-grid,
  .doctor-grid {
    grid-template-columns: 1fr;
  }

  .videos-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .practice-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .practice-img-wrap {
    aspect-ratio: 16 / 9;
    max-height: 400px;
  }

  .pricing-card-header {
    grid-template-columns: 1fr;
  }
}

/* ----------------------------------------
   RESPONSIVE - 768px (nav hides)
   ---------------------------------------- */
@media (max-width: 768px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  /* Mobile nav overlay */
  .nav-links.mobile-open {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: var(--white);
    padding: 80px 24px 24px;
    z-index: 998;
    overflow-y: auto;
    flex: none;
  }

  .nav-links.mobile-open > ul {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .nav-links.mobile-open li > a {
    padding: 14px 0;
    font-size: 17px;
    color: var(--text);
    border-bottom: 1px solid var(--border);
  }

  .nav-links.mobile-open .drop {
    position: static;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    padding: 0 0 0 16px;
    display: none;
    pointer-events: auto;
    background: transparent;
  }

  .nav-links.mobile-open .drop.open {
    display: block;
  }

  .nav-links.mobile-open .drop li a {
    padding: 10px 0;
    border-bottom: none;
    font-size: 15px;
  }
}

/* ----------------------------------------
   RESPONSIVE - 768px continued (layout)
   ---------------------------------------- */
@media (max-width: 768px) {
  .hero {
    height: 100svh;
    min-height: 600px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero-sub {
    font-size: 16px;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 20px;
    text-align: center;
    justify-items: center;
  }

  .hero-stat {
    text-align: left;
  }

  .hero-stat-divider {
    display: none;
  }

  .hero-stat strong {
    font-size: 22px;
  }

  .hero-stat span {
    font-size: 14px;
    white-space: nowrap;
  }

  /* First stat gets right border as divider */
  .hero-stats > :first-child {
    border-right: 1px solid rgba(255, 255, 255, 0.35);
    padding: 0 24px;
    justify-self: stretch;
  }

  /* Second visible stat (3rd child) */
  .hero-stats > :nth-child(3) {
    padding: 0 24px;
    justify-self: stretch;
  }

  /* Third stat (5th child) spans full width, centered */
  .hero-stats > :nth-child(5) {
    grid-column: 1 / -1;
    text-align: left;
    padding: 0 24px;
  }

  .services-grid,
  .cat-grid,
  .videos-row {
    grid-template-columns: 1fr;
  }

  .practice-heading {
    font-size: 32px;
  }

  .cat-cell {
    border-right: none !important;
  }

  .different-grid,
  .doctor-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .compare-table {
    font-size: 13px;
  }

  .col-us,
  .col-other {
    width: auto;
  }

  .with-sidebar {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .testi-slider {
    padding: 0 48px;
  }

  .pricing-features {
    grid-template-columns: 1fr;
  }
}

/* ----------------------------------------
   RESPONSIVE - 480px
   ---------------------------------------- */
@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 28px;
  }

  .footer-card {
    padding: 32px 24px 24px;
    border-radius: 16px;
  }

  .pricing-card {
    padding: 28px;
  }

  .btn-row {
    flex-direction: column;
    align-items: center;
  }

  .services-btns {
    flex-direction: column;
    align-items: center;
  }
}

/* ----------------------------------------
   DOCTOR SLIDER RESPONSIVE
   ---------------------------------------- */
@media (max-width: 1024px) {
  .doctor-slide {
    grid-template-columns: 340px 1fr;
    gap: 40px;
  }

  .doctor-photo {
    height: 430px;
  }
}

@media (max-width: 768px) {
  .doctor-slide {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .doctor-photo {
    height: 340px;
  }

  .doctor-info h2 {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .doctor-photo {
    height: 280px;
  }
}

/* ----------------------------------------
   TESTIMONIAL SLIDER RESPONSIVE
   ---------------------------------------- */
@media (max-width: 480px) {
  .testi-slider {
    padding: 0 40px;
  }

  .testi-nav {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
}

/* ============================================
   SERVICE PAGES v2 — Function Health Style
   ============================================ */

/* --- Hero Split --- */
.sp-hero {
  padding: 160px 0 80px;
  background: var(--page-bg);
}

.sp-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.sp-hero-img {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/5;
  max-height: 560px;
}

.sp-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sp-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 20px;
}

.sp-hero-content h1 {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 20px;
}

.sp-hero-content > p {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 520px;
}

.sp-hero-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sp-hero-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text);
  line-height: 1.5;
}

.sp-hero-bullets li .sp-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--gold);
}

.sp-hero-bullets li .sp-check svg {
  width: 11px;
  height: 11px;
}

.sp-hero-bullets li strong {
  color: var(--dark);
  font-weight: 600;
}

/* --- Feature intro (Function Health icon columns style) --- */
.sp-features-intro {
  padding: 80px 0;
  background: var(--cream);
}

.sp-features-intro-head {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 56px;
}

.sp-features-intro-head h2 {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 16px;
}

.sp-features-intro-head h2 em {
  font-style: italic;
  color: var(--gold);
}

.sp-features-intro-head p {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
}

.sp-features-intro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.sp-feat-col {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.sp-feat-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--page-bg);
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.sp-feat-col h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin: 0;
}

.sp-feat-col p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
  max-width: 320px;
}

@media (max-width: 768px) {
  .sp-features-intro-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

/* --- Stats bar --- */
.sp-stats-bar {
  background: var(--teal);
  padding: 48px 0;
}

.sp-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.sp-stat-item {
  text-align: center;
  padding: 0 32px;
  border-right: 1px solid rgba(255,255,255,0.15);
}

.sp-stat-item:last-child {
  border-right: none;
}

.sp-stat-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: white;
  line-height: 1;
  margin-bottom: 8px;
}

.sp-stat-item span {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  line-height: 1.4;
}

/* --- General section --- */
.sp-section {
  padding: 100px 0;
  background: var(--page-bg);
}

.sp-section--alt {
  background: var(--cream);
}

.sp-section-title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 40px;
  color: var(--dark);
  text-align: center;
  margin-bottom: 12px;
  line-height: 1.2;
}

.sp-section-sub {
  text-align: center;
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* --- Two column --- */
.sp-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.sp-two-col.sp-reverse {
  direction: rtl;
}

.sp-two-col.sp-reverse > * {
  direction: ltr;
}

.sp-text h2 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 36px;
  color: var(--dark);
  margin-bottom: 20px;
  line-height: 1.2;
}

.sp-text p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.sp-text .sp-text-link {
  color: var(--gold);
  font-weight: 600;
  text-decoration: none;
}

.sp-text .sp-text-link:hover {
  text-decoration: underline;
}

.sp-text ul {
  list-style: none;
  padding-left: 0;
  margin: 16px 0 20px;
}

.sp-text ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.7;
}

.sp-text ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 5px;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d4a800' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

.sp-col-img {
  border-radius: 20px;
  overflow: hidden;
}

.sp-col-img img {
  width: 100%;
  display: block;
}

/* --- Steps --- */
.sp-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.sp-step {
  background: var(--page-bg);
  border-radius: 16px;
  padding: 28px 24px;
  border: 1px solid var(--border);
  position: relative;
}

.sp-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold);
  color: white;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
}

.sp-step h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.3;
}

.sp-step p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --- Benefits grid --- */
.sp-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.sp-benefit {
  background: var(--page-bg);
  border-radius: 16px;
  padding: 28px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sp-benefit-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(212, 168, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.sp-benefit h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
}

.sp-benefit p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --- Services grid (cosmetic & general pages) --- */
.sp-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.sp-service-card {
  display: block;
  background: var(--page-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px 20px;
  text-decoration: none;
  color: var(--dark);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.sp-service-card:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(212,168,0,0.12);
  transform: translateY(-2px);
}

.sp-service-card h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}

.sp-service-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 1024px) {
  .sp-services-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .sp-services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .sp-services-grid { grid-template-columns: 1fr; }
}

/* --- Trust logos strip --- */
.sp-trust-strip {
  padding: 80px 0;
  background: var(--page-bg);
}

.sp-trust-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: start;
  border-top: 1px solid var(--border);
  padding-top: 64px;
}

.sp-trust-heading {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 48px;
  font-weight: 400;
  color: var(--dark);
  line-height: 1.1;
  padding-top: 8px;
  padding-bottom: 20px;
  position: relative;
}

.sp-trust-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50%;
  height: 1.5px;
  background: var(--dark);
  opacity: 0.25;
}

.sp-trust-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.sp-trust-card {
  background: var(--cream);
  border-radius: 12px;
  padding: 32px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
}

.sp-trust-card img {
  max-height: 60px;
  max-width: 100%;
  object-fit: contain;
  opacity: 0.65;
  filter: grayscale(100%) contrast(1.2);
  transition: opacity 0.2s, filter 0.2s;
}

.sp-trust-card:hover img {
  opacity: 0.9;
  filter: grayscale(100%) contrast(1.4);
}

/* legacy – keep for any other pages still using old markup */
.sp-trust-label {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.sp-trust-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.sp-trust-logos img {
  height: 40px;
  opacity: 0.55;
  filter: grayscale(100%);
  transition: opacity 0.2s;
}

.sp-trust-logos img:hover {
  opacity: 0.8;
}

/* --- CTA banner --- */
.sp-cta-banner {
  background: #1a1a1a;
  padding: 0;
  position: relative;
  z-index: 2;
  margin-bottom: 0;
}

.sp-cta-card {
  background: transparent;
  border-radius: 0;
  padding: 56px 0;
  display: flex;
  align-items: center;
  gap: 36px;
  box-shadow: none;
}

.sp-cta-icon {
  flex-shrink: 0;
  width: 68px;
  height: 68px;
  background: rgba(212,168,0,0.15);
  border: 1.5px solid rgba(212,168,0,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.sp-cta-icon svg {
  width: 32px;
  height: 32px;
}

.sp-cta-body {
  flex: 1;
}

.sp-cta-body h2 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 28px;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.25;
}

.sp-cta-body p {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin: 0;
}

.sp-cta-action {
  flex-shrink: 0;
}

.sp-cta-action .btn-outline-gold {
  display: inline-flex;
  align-items: center;
  height: 50px;
  padding: 0 32px;
  background: var(--gold);
  border: none;
  border-radius: 999px;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
  text-decoration: none;
  transition: background 0.25s, transform 0.25s;
}

.sp-cta-action .btn-outline-gold:hover {
  background: #b38a00;
  color: #fff;
  transform: translateY(-1px);
}

/* --- Responsive service pages --- */
@media (max-width: 1024px) {
  .sp-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .sp-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .sp-hero {
    padding: 120px 0 60px;
  }

  .sp-hero-grid,
  .sp-two-col {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .sp-two-col.sp-reverse {
    direction: ltr;
  }

  .sp-hero-img {
    aspect-ratio: 16/9;
    max-height: 300px;
  }

  .sp-hero-content h1 {
    font-size: 32px;
  }

  .sp-section-title {
    font-size: 30px;
  }

  .sp-steps {
    grid-template-columns: 1fr;
  }

  .sp-benefits-grid {
    grid-template-columns: 1fr;
  }

  .sp-stats-row {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .sp-stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    padding-bottom: 32px;
  }

  .sp-stat-item:last-child {
    border-bottom: none;
  }

  .sp-trust-logos {
    gap: 24px;
  }

  .sp-trust-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .sp-trust-heading {
    font-size: 36px;
  }

  .sp-trust-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .sp-hero-content h1 {
    font-size: 28px;
  }

  .sp-cta-body h2 {
    font-size: 24px;
  }

  .sp-cta-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 24px;
    gap: 24px;
  }

  .sp-cta-action {
    width: 100%;
  }

  .sp-cta-action .btn-outline-gold {
    width: 100%;
    justify-content: center;
  }
}

/* ----------------------------------------
   REVIEWS PAGE
   ---------------------------------------- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.review-card {
  background: var(--cream);
  border-radius: 16px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.review-stars {
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 2px;
}

.review-text {
  font-size: 15px;
  color: var(--text);
  line-height: 1.7;
  flex: 1;
  font-style: italic;
}

.review-author {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
}

/* ----------------------------------------
   CONTACT PAGE
   ---------------------------------------- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-form-block h2,
.contact-info-block h2 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 32px;
  color: var(--dark);
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 15px;
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--page-bg);
  transition: border-color 0.2s;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-info-block .info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.contact-info-block .info-item:last-child {
  border-bottom: none;
}

.info-icon {
  width: 40px;
  height: 40px;
  background: rgba(212,168,0,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}

.info-content h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.info-content p,
.info-content a {
  font-size: 16px;
  color: var(--dark);
  text-decoration: none;
  line-height: 1.5;
}

.info-content a:hover { color: var(--gold); }

.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 8px;
}

.hours-table tr td {
  padding: 6px 0;
  font-size: 15px;
  color: var(--dark);
}

.hours-table tr td:last-child {
  text-align: right;
  color: var(--text-muted);
  padding-left: 5px;
}

.contact-map {
  /*margin-top: 64px;*/
  border-radius: 16px;
  overflow: hidden;
  height: 400px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

@media (max-width: 991px) {
  .reviews-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-map { height: 280px; }
}

@media (max-width: 480px) {
  .reviews-grid { grid-template-columns: 1fr; }
}

/* ----------------------------------------
   TEAM / ABOUT PAGE
   ---------------------------------------- */
.team-bio-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 12px;
}

/* ----------------------------------------
   PRINT
   ---------------------------------------- */
@media print {
  .main-nav,
  .top-bar,
  .final-cta,
  .site-footer,
  .nav-toggle {
    display: none;
  }
}

/* ----------------------------------------
   BLOG LISTING
   ---------------------------------------- */
.hero--short {
  height: 50vh;
  min-height: 360px;
}

.blog-listing {
  padding: 80px 0;
  background: var(--page-bg);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.blog-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
}

.blog-card__img {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.blog-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-card__img img {
  transform: scale(1.05);
}

.blog-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 13px;
}

.blog-card__date {
  color: var(--text-muted);
}

.blog-card__cat {
  background: var(--cream);
  color: var(--gold);
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.blog-card__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.3;
}

.blog-card__excerpt {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
  flex: 1;
}

.blog-card__link {
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ----------------------------------------
   BLOG DETAIL / SINGLE POST
   ---------------------------------------- */
.blog-article {
  padding: 60px 0 40px;
  background: var(--page-bg);
}

.blog-article__inner {
  max-width: 760px;
  margin: 0 auto;
}

.blog-article__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  font-size: 14px;
}

.blog-article__author {
  font-weight: 600;
  color: var(--dark);
}

.blog-article__date {
  color: var(--text-muted);
}

.blog-article__cat {
  background: var(--cream);
  color: var(--gold);
  padding: 3px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.blog-article__content h2 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--dark);
  margin: 40px 0 16px;
  line-height: 1.3;
}

.blog-article__content h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--dark);
  margin: 32px 0 12px;
  line-height: 1.3;
}

.blog-article__content p {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 20px;
}

.blog-article__content ul,
.blog-article__content ol {
  margin: 0 0 24px 24px;
  font-size: 16px;
  line-height: 1.8;
  color: #333;
}

.blog-article__content li {
  margin-bottom: 8px;
}

.blog-article__content strong {
  color: var(--dark);
}

.blog-article__cta {
  margin-top: 48px;
  padding: 32px;
  background: var(--cream);
  border-radius: 16px;
  text-align: center;
}

.blog-article__cta h3 {
  font-family: var(--font-display);
  font-size: 24px;
  margin-bottom: 12px;
  color: var(--dark);
}

.blog-article__cta p {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.blog-article__cta .btn-row {
  justify-content: center;
}

/* Related Posts */
.blog-related {
  padding: 60px 0 80px;
  background: var(--page-bg);
}

.blog-related__heading {
  font-family: var(--font-display);
  font-size: 32px;
  text-align: center;
  margin-bottom: 40px;
  color: var(--dark);
}

.blog-related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-card--small .blog-card__img {
  height: 180px;
}

.blog-card--small .blog-card__title {
  font-size: 18px;
}

.blog-card--small .blog-card__body {
  padding: 16px;
}

/* ----------------------------------------
   LEGAL PAGES (Privacy / Terms)
   ---------------------------------------- */
.legal-content {
  padding: 60px 0 80px;
  background: var(--page-bg);
}

.legal-content__inner {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  border-radius: 16px;
  padding: 48px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.legal-content__inner h2 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--dark);
  margin: 40px 0 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(0,0,0,0.06);
  line-height: 1.3;
}

.legal-content__inner h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.legal-content__inner h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--dark);
  margin: 28px 0 12px;
  line-height: 1.3;
}

.legal-content__inner p {
  font-size: 15px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 16px;
}

.legal-content__inner ul {
  margin: 0 0 20px 24px;
  font-size: 15px;
  line-height: 1.8;
  color: #444;
}

.legal-content__inner li {
  margin-bottom: 6px;
}

.legal-content__inner strong {
  color: var(--dark);
}

.legal-content__inner a {
  color: var(--gold);
  text-decoration: underline;
}

/* ----------------------------------------
   BLOG + LEGAL RESPONSIVE
   ---------------------------------------- */
@media (max-width: 768px) {
  .hero--short {
    height: 40vh;
    min-height: 280px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .blog-related__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .blog-card__img {
    height: 200px;
  }

  .blog-card__title {
    font-size: 20px;
  }

  .blog-article__inner {
    padding: 0 16px;
  }

  .blog-article__content h2 {
    font-size: 24px;
  }

  .legal-content__inner {
    padding: 28px 20px;
  }

  .legal-content__inner h2 {
    font-size: 22px;
  }
}
/* disclaimer msg */
.disclaimer-msg {
    display: inline-block;
    vertical-align: top;
    width: 100%;
}
.disclaimer-msg p,
.disclaimer-msg a,
.disclaimer-msg label {
    margin: 0;
    font-size: 12px;
    color: #888;
}
a {
    transition: all 0.3s ease 0s;
}
.disclaimer-msg a {
    color: #d4a800;
    text-decoration: none;
}
.disclaimer-msg a:hover {
    color: #373843;
    text-decoration: none;
}
.form-checkbox {
    display: flex;
    flex-wrap: nowrap;
    position: relative;
}
.form-checkbox input {
    margin: 0px 8px 0 0;
    height: 20px !important;
    width: 18px !important;
}
.form-checkbox label,
.disclaimer-msg p {
    max-width: calc(100% - 26px);
    width: 100%;
    margin-left: auto;
    margin-bottom: 0;
}
.form-checkbox label.label1 {
    bottom: -18px;
}
@media only screen and (max-width: 1199.99px) {
    .disclaimer-msg {
        margin: 0 0 15px;
    }
}
@media only screen and (min-width: 1200px) {
    .disclaimer-msg {
        margin: 30px 0 0;
    }
    .disclaimer-msg:not(:first-child) {
        margin: 22px 0 0;
    }
}