@import url('https://fonts.googleapis.com/css2?family=Kalam:wght@300;400;700&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

/* ═══════════════════════════════════════════════════
   DESIGN TOKENS
═══════════════════════════════════════════════════ */
:root {
  /* Brand gold palette */
  --gold-50:   #FDF8F2;
  --gold-100:  #F5E8D4;
  --gold-200:  #E8CEAA;
  --gold-300:  #D4A876;
  --gold-400:  #C9A07A;
  --gold-500:  #AC7F5E;
  --gold-600:  #8A6245;
  --gold-700:  #6B4A32;
  --gold-800:  #4A3122;

  /* Dark surface palette */
  --dark-950:  #0C0A08;
  --dark-900:  #131008;
  --dark-800:  #1C1710;
  --dark-700:  #26200F;
  --dark-600:  #332C1A;
  --dark-500:  #4A4030;

  /* Semantic */
  --clr-primary:       var(--gold-500);
  --clr-primary-dark:  var(--gold-600);
  --clr-primary-light: var(--gold-400);
  --clr-primary-pale:  var(--gold-100);
  --clr-bg:            var(--dark-950);
  --clr-surface:       var(--dark-800);
  --clr-surface-2:     var(--dark-700);
  --clr-text:          #F0EBE3;
  --clr-text-muted:    #9C8F82;
  --clr-border:        rgba(172,127,94,0.18);
  --clr-border-bright: rgba(172,127,94,0.4);

  /* Radius scale */
  --r-xs:   6px;
  --r-sm:   12px;
  --r-md:   18px;
  --r-lg:   24px;
  --r-xl:   32px;
  --r-2xl:  48px;
  --r-pill: 999px;

  /* Layout */
  --container-w:  1280px;
  --container-px: 40px;
  --transition:   0.25s cubic-bezier(.4,0,.2,1);

  /* Glow */
  --glow-gold: 0 0 40px rgba(172,127,94,0.25);
  --glow-sm:   0 0 16px rgba(172,127,94,0.18);
}

/* ═══════════════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Montserrat", sans-serif;
  color: var(--clr-text);
  background: var(--dark-950);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
* { font-family: "Montserrat", sans-serif !important; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* Gold grain texture overlay on body */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.025;
  pointer-events: none;
  z-index: 9999;
}

.container {
  width: 100%;
  max-width: var(--container-w);
  margin: auto;
  padding: 0 var(--container-px);
}

/* ═══════════════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════════════ */
@keyframes fadeUp    { from { opacity:0; transform:translateY(28px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn    { from { opacity:0; } to { opacity:1; } }
@keyframes slideR    { from { opacity:0; transform:translateX(-32px); } to { opacity:1; transform:translateX(0); } }
@keyframes scaleIn   { from { opacity:0; transform:scale(0.93); } to { opacity:1; transform:scale(1); } }
@keyframes lineDraw  { from { width:0; } to { width:56px; } }
@keyframes shimmer   { 0%{background-position:-600px 0} 100%{background-position:600px 0} }
@keyframes floatY    { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
@keyframes rotateSlow{ from{transform:rotate(0)} to{transform:rotate(360deg)} }
@keyframes goldPulse { 0%,100%{opacity:.5} 50%{opacity:1} }
@keyframes rippleOut { to{transform:scale(55);opacity:0} }

.anim-fade-up  { animation: fadeUp  .65s cubic-bezier(.22,.68,0,1.2) both; }
.anim-fade-in  { animation: fadeIn  .55s ease both; }
.anim-slide-r  { animation: slideR  .6s  cubic-bezier(.22,.68,0,1.2) both; }
.anim-scale-in { animation: scaleIn .55s cubic-bezier(.22,.68,0,1.2) both; }

/* ═══════════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  border: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  transition: var(--transition);
}
.btn--outline {
  border-radius: var(--r-pill);
  padding: 10px 28px;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
  color: #fff;
  border: 1px solid var(--gold-400);
  box-shadow: 0 2px 20px rgba(172,127,94,0.3), inset 0 1px 0 rgba(255,255,255,0.12);
  position: relative;
  overflow: hidden;
}
.btn--outline::before {
  content:'';
  position:absolute; inset:0;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,0.15) 50%, transparent 70%);
  background-size: 200% 100%;
  background-position: -200% 0;
  transition: background-position .55s ease;
}
.btn--outline:hover::before { background-position: 200% 0; }
.btn--outline:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(172,127,94,0.45), inset 0 1px 0 rgba(255,255,255,0.18);
}
.btn--outline:active { transform: translateY(0); }

/* ═══════════════════════════════════════════════════
   HEADER
═══════════════════════════════════════════════════ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(12,10,8,0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--clr-border);
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.header.scrolled {
  background: rgba(19,16,8,0.95);
  border-bottom-color: var(--clr-border-bright);
  box-shadow: 0 4px 48px rgba(0,0,0,0.5), 0 1px 0 rgba(172,127,94,0.12);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 32px;
}
.header__theme-toggle {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--clr-border);
  background: rgba(172,127,94,0.06);
  color: var(--clr-text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), border-color var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.header__theme-toggle:hover {
  border-color: var(--gold-500);
  color: var(--gold-300);
  background: rgba(172,127,94,0.15);
  transform: translateY(-1px);
  box-shadow: var(--glow-sm);
}
.header__theme-icon {
  width: 20px;
  height: 20px;
}
.header__theme-icon--sun { display: none; }
[data-theme="light"] .header__theme-icon--moon { display: none; }
[data-theme="light"] .header__theme-icon--sun { display: block; }
.navandbtn {
  display: flex;
  align-items: center;
  gap: 44px;
  flex: 1;
  min-width: 0;
}
.header__nav {
  display: flex;
  align-items: center;
  gap: 36px;
  flex: 1;
  justify-content: center;
}
.header__link {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
  white-space: nowrap;
  position: relative;
  padding-bottom: 3px;
  transition: color var(--transition);
}
.header__link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 1.5px;
  background: linear-gradient(90deg, var(--gold-400), var(--gold-300));
  border-radius: 2px;
  transition: width var(--transition);
}
.header__link:hover { color: var(--gold-300); }
.header__link:hover::after { width: 100%; }

/* CTA wrap */
.header__cta-wrap {
  position: relative;
  flex-shrink: 0;
  padding-bottom: 16px;
  margin-bottom: -16px;
}
.header__cta-btn { font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; }

/* Dropdown */
.header__dropdown {
  position: absolute;
  top: 54px; right: 0;
  background: rgba(26,20,10,0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--clr-border-bright);
  border-radius: var(--r-lg);
  padding: 8px;
  min-width: 230px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.55), 0 0 0 1px rgba(172,127,94,0.07) inset;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px) scale(0.97);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  pointer-events: none;
}
.header__cta-wrap:hover .header__dropdown,
.header__cta-wrap.is-open .header__dropdown {
  opacity: 1; visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: all;
}
.header__dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  font-size: 14px;
  color: var(--clr-text);
  font-weight: 600;
  border-radius: var(--r-sm);
  transition: background var(--transition), color var(--transition);
}
.header__dropdown-item:hover {
  background: rgba(172,127,94,0.15);
  color: var(--gold-300);
}
.header__dropdown-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  object-fit: contain;
  flex-shrink: 0;
  border: 1px solid var(--clr-border);
}
.header__dropdown-consult {
  display: block;
  padding: 8px 14px;
  font-size: 12px;
  color: var(--gold-400);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition);
  border-top: 1px solid var(--clr-border);
  margin-top: 4px;
}
.header__dropdown-consult:hover { color: var(--gold-300); }

/* ═══════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════ */
.hero {
  min-height: 88vh;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  position: relative;
}
/* Ambient glow behind hero */
.hero::before {
  content: '';
  position: absolute;
  top: -120px; left: -120px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(172,127,94,0.12) 0%, transparent 65%);
  pointer-events: none;
  animation: floatY 8s ease-in-out infinite;
}
.hero__text-col {
  flex: 1;
  display: flex;
  align-items: center;
  background: transparent;
  position: relative;
  z-index: 1;
}
.hero__text-col .container { width: 100%; }

.hero__title {
  font-family: "Playfair Display", serif !important;
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 500;
  line-height: 1.08;
  color: var(--clr-text);
  margin-bottom: 28px;
  animation: fadeUp .9s cubic-bezier(.22,.68,0,1.2) .15s both;
  background: linear-gradient(135deg, #F0EBE3 40%, var(--gold-400) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__subtitle {
  font-size: 17px;
  color: var(--clr-text-muted);
  line-height: 1.6;
  letter-spacing: 0.02em;
  animation: fadeUp .8s cubic-bezier(.22,.68,0,1.2) .4s both;
  position: relative;
  padding-left: 20px;
}
.hero__subtitle::before {
  content: '';
  position: absolute;
  left: 0; top: 2px; bottom: 2px;
  width: 2px;
  background: linear-gradient(180deg, var(--gold-400), transparent);
  border-radius: 2px;
  animation: fadeIn .5s .8s both;
}

.hero__image-wrap {
  flex: 1;
  min-height: 88vh;
  overflow: hidden;
  position: relative;
  border-radius: 0 0 0 var(--r-2xl);
}
/* Gradient overlay on photo */
.hero__image-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(12,10,8,0.45) 0%, transparent 40%),
              linear-gradient(180deg, transparent 60%, rgba(12,10,8,0.3) 100%);
  z-index: 1;
  pointer-events: none;
}
.hero__image {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 10s ease;
  transform: scale(1.06);
  filter: brightness(0.88) saturate(0.95);
}
.hero__image-wrap:hover .hero__image { transform: scale(1.01); }

@media (max-width: 768px) {
  .hero { flex-direction: column; min-height: unset; }
  .hero::before { display: none; }
  .hero__text-col { padding-block: 56px; }
  .hero__image-wrap { flex: unset; min-height: unset; aspect-ratio: 4/3; width: 100%; border-radius: 0 0 var(--r-xl) var(--r-xl); }
}

/* ═══════════════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════════════ */
.about {
  padding: 80px 0;
  position: relative;
}
.about::before {
  content: '';
  position: absolute;
  right: 5%; top: 10%;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(172,127,94,0.06) 0%, transparent 70%);
  pointer-events: none;
  animation: floatY 7s ease-in-out infinite 1s;
}
.about__inner {
  background: linear-gradient(135deg, var(--dark-800) 0%, var(--dark-700) 100%);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-xl);
  padding: 52px 56px;
  box-shadow: 0 8px 64px rgba(0,0,0,0.4), inset 0 1px 0 rgba(172,127,94,0.08);
  position: relative;
  overflow: hidden;
}
.about__inner::before {
  content: '';
  position: absolute;
  top: -1px; left: 32px; right: 32px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
}
.about__title {
  font-family: "Playfair Display", serif !important;
  display: inline-block;
  font-size: 38px;
  font-weight: 700;
  color: var(--clr-text);
  margin-bottom: 28px;
  position: relative;
}
.about__title::after {
  content: '';
  position: absolute;
  left: 0; bottom: -10px;
  height: 2px; width: 0;
  background: linear-gradient(90deg, var(--gold-400), transparent);
  border-radius: 2px;
  animation: lineDraw .8s cubic-bezier(.22,.68,0,1.2) .3s both;
}
.about__intro {
  margin-top: 24px;
  font-size: 16px;
  line-height: 1.75;
  color: var(--clr-text-muted);
  margin-bottom: 28px;
}
.about__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.about__list {
  counter-reset: about-counter;
}
.about__item {
  font-size: 14px;
  line-height: 1.72;
  color: var(--clr-text-muted);
  padding: 16px 18px 16px 52px;
  position: relative;
  background: rgba(172,127,94,0.05);
  border: 1px solid transparent;
  border-radius: var(--r-sm);
  transition: background var(--transition), border-color var(--transition), color var(--transition), transform var(--transition);
  counter-increment: about-counter;
}
.about__item::before {
  content: counter(about-counter, decimal-leading-zero);
  position: absolute;
  left: 16px; top: 17px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold-600);
  font-family: "Montserrat", sans-serif !important;
  transition: color var(--transition);
}
.about__item:hover {
  background: rgba(172,127,94,0.10);
  border-color: var(--clr-border-bright);
  color: var(--clr-text);
  transform: translateX(4px);
}
.about__item:hover::before { color: var(--gold-400); }

/* ═══════════════════════════════════════════════════
   CERTS
═══════════════════════════════════════════════════ */
.certs {
  padding: 80px 0;
  background: var(--dark-900);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
}
.certs__title {
  font-family: "Playfair Display", serif !important;
  font-size: 38px;
  font-weight: 700;
  text-align: center;
  color: var(--clr-text);
  margin-bottom: 48px;
  position: relative;
  width: 100%;
}
.certs__title::after {
  content: '';
  position: absolute;
  left: 50%; bottom: -12px;
  transform: translateX(-50%);
  height: 2px; width: 48px;
  background: linear-gradient(90deg, transparent, var(--gold-400), transparent);
  border-radius: 2px;
}
.certs__slider-wrap {
  display: flex;
  align-items: center;
  gap: 24px;
}
.certs__swiper {
  flex: 1;
  overflow: hidden;
  border-radius: var(--r-md);
}
.certs__slide {
  height: 440px;
  border-radius: var(--r-md);
  overflow: hidden;
  /*border: 1px solid var(--clr-border);*/
  /*background: var(--dark-800);*/
  position: relative;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.certs__slide::after {
  content: '';
  position: absolute;
  inset: 0;
  /*background: linear-gradient(135deg, rgba(172,127,94,0.08), transparent);*/
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}
.certs__slide:hover {
  transform: translateY(-6px) scale(1.01);
  border-color: var(--clr-border-bright);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), var(--glow-gold);
}
.certs__slide:hover::after { opacity: 1; }
.certs__slide a {
  display: block;
  width: 100%;
  height: 100%;
  cursor: zoom-in;
}
.certs__slide img {
  width: 100%; height: 100%;
  object-fit: contain;
  display: block;
  filter: brightness(0.9);
  transition: filter var(--transition);
}
.certs__slide:hover img { filter: brightness(1); }

.certs__btn {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: var(--r-pill);
  background: var(--dark-700);
  border: 1px solid var(--clr-border);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.certs__btn:hover {
  background: var(--gold-600);
  border-color: var(--gold-400);
  transform: scale(1.1);
  box-shadow: var(--glow-sm);
}
.certs__btn img {
  width: 20px; height: 20px;
  object-fit: contain;
  filter: brightness(0) invert(.7);
  transition: filter var(--transition);
}
.certs__btn:hover img { filter: brightness(0) invert(1); }

/* ═══════════════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════════════ */
.services { padding-bottom: 80px; }
.services__title {
  font-family: "Playfair Display", serif !important;
  font-size: 38px;
  font-weight: 600;
  background: linear-gradient(135deg, var(--dark-800), var(--dark-700));
  text-align: center;
  color: var(--clr-text);
  padding: 56px 0;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}
.services__title::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(172,127,94,0.06) 50%, transparent 70%);
  background-size: 200% 100%;
  animation: shimmer 4s ease-in-out infinite;
}
.services__title::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  height: 1px; width: 100%;
  background: linear-gradient(90deg, transparent, var(--clr-border-bright), transparent);
}

.services__table {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0 var(--container-px);
  max-width: var(--container-w);
  margin: 0 auto 60px;
}
.services__group 
  border-bottom: 1px solid var(--clr-border);
}
.services__group:last-child { border-bottom: none; }
.services__group-header , .services__group-header .container{
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  border-bottom: none;
  padding: 32px 0 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-600);
  position: relative;
}
@media (max-width: 550px){
    .services__group-header, .services__group-header .container , .services__row{
        flex-direction: column;
    }
}
.services__group-header::before { display: none; }
.services__group-header span {
  font-family: "Playfair Display", serif !important;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  color: var(--clr-text);
}
.services__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 15px 0;
  background: transparent;
  gap: 12px;
  color: var(--clr-text-muted);
  border-top: 1px solid rgba(172,127,94,0.08);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: color var(--transition), padding-left var(--transition);
}
.services__row::before {
  content: '';
  position: absolute;
  left: -16px; top: 0; bottom: 0;
  width: 2px;
  background: var(--gold-500);
  opacity: 0;
  transition: opacity var(--transition);
}
.services__row:hover { color: var(--clr-text); padding-left: 10px; }
.services__row:hover::before { opacity: 1; }
.services__row:last-child { border-bottom: 1px solid rgba(172,127,94,0.08); }
.services__name {
  font-size: 14px;
  display: flex; align-items: baseline;
  flex: 1; gap: 0; min-width: 0;
}
.services__dots {
  flex: 1;
  border-bottom: 1px dashed rgba(172,127,94,0.18);
  margin: 0 10px; min-width: 32px;
  height: 1px; align-self: flex-end; margin-bottom: 4px;
}
.services__price {
  font-size: 14px; font-weight: 700;
  color: var(--gold-500);
  white-space: nowrap; flex-shrink: 0;
  transition: color var(--transition);
}
.services__row:hover .services__price { color: var(--gold-400); }

/* ═══════════════════════════════════════════════════
   PRACTICE
═══════════════════════════════════════════════════ */
.practice {
  background: var(--dark-950);
  padding-bottom: 80px;
  border-top: 1px solid var(--clr-border);
}
.practice__header {
  background: linear-gradient(135deg, var(--dark-800), var(--dark-700));
  border-bottom: 1px solid var(--clr-border);
  padding: 56px 0;
  margin-bottom: 52px;
  position: relative;
  overflow: hidden;
}
.practice__header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(172,127,94,0.05) 50%, transparent 70%);
  background-size: 300% 100%;
  animation: shimmer 5s ease-in-out infinite;
}
.practice__header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
}
.practice__title {
  font-family: "Playfair Display", serif !important;
  font-size: 38px;
  font-weight: 600;
  color: var(--clr-text);
  position: relative;
}
.practice__title::before {
  content: '§';
  position: absolute;
  left: -36px; top: 2px;
  font-size: 22px;
  color: var(--gold-600);
  font-family: "Playfair Display", serif !important;
}

.practice__slider-wrap {
  position: relative;
  padding: 0 60px;
}
.practice__swiper { overflow: hidden; }
.practice__nav {
  display: contents;
}
.practice__pagination {
  display: none;
}
.practice__slide {
  font-size: 14px;
  line-height: 1.8;
  color: var(--clr-text-muted);
  padding: 32px 28px 48px;
  background: var(--dark-800);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-lg);
  position: relative;
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.practice__slide::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: linear-gradient(180deg, var(--gold-400), var(--gold-700));
  transition: height .4s ease;
  border-radius: 0 0 3px 0;
}
.practice__slide::after {
  content: '';
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-500), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.practice__slide:hover::before { height: 100%; }
.practice__slide:hover::after { opacity: 1; }
.practice__slide:hover {
  box-shadow: 0 12px 48px rgba(0,0,0,0.5), var(--glow-gold);
  transform: translateY(-6px);
  border-color: var(--clr-border-bright);
  color: var(--clr-text);
}
.practice__slide-title {
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 14px;
  color: var(--gold-400);
  font-family: "Playfair Display", serif !important;
  letter-spacing: 0.02em;
  display: block;
}
.practice__slide-text { color: inherit; }

.practice__btn {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: var(--r-pill);
  background: var(--dark-700);
  border: 1px solid var(--clr-border);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.practice__btn:hover {
  background: var(--gold-600);
  border-color: var(--gold-400);
  transform: translateY(-50%) scale(1.12);
  box-shadow: var(--glow-sm);
}
.practice__btn--prev { left: 0; }
.practice__btn--next { right: 0; }
.practice__btn img {
  width: 20px; height: 20px;
  object-fit: contain;
  filter: brightness(0) invert(.7);
  transition: filter var(--transition);
}
.practice__btn:hover img { filter: brightness(0) invert(1); }

/* ═══════════════════════════════════════════════════
   REVIEWS
═══════════════════════════════════════════════════ */
.reviews {
  padding: 80px 0;
  background: var(--dark-900);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
}
.reviews__title {
  font-family: "Playfair Display", serif !important;
  font-size: 38px;
  font-weight: 600;
  text-align: center;
  color: var(--clr-text);
  margin-bottom: 48px;
  position: relative;
}
.reviews__title::after {
  content: '';
  position: absolute;
  bottom: -14px; left: 50%;
  transform: translateX(-50%);
  width: 48px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-400), transparent);
  border-radius: 2px;
}
.reviews__swiper { overflow: hidden; padding-bottom: 48px; }
.reviews__slide { display: flex; justify-content: center; }
.reviews__card {
  background: var(--dark-900);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-lg);
  padding: 48px 52px;
  display: flex;
  align-items: flex-start;
  gap: 40px;
  max-width: 780px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.25);
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
/* Böyük dekorativ sitat — sol yuxarı */
.reviews__card::before {
  content: '\201C';
  position: absolute;
  top: 16px; left: 36px;
  font-size: 120px;
  font-family: "Playfair Display", serif;
  color: rgba(172,127,94,0.09);
  line-height: 1;
  pointer-events: none;
}
.reviews__card::after {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--gold-500), transparent);
  border-radius: 2px;
}
.reviews__card:hover {
  border-color: var(--clr-border-bright);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
  transform: translateY(-4px);
}
.reviews__card-left {
  display: flex; align-items: flex-start;
  gap: 0; flex: 1;
  padding-top: 20px;
}
.reviews__icon { display: none; }
.reviews__text {
  font-size: 15px;
  line-height: 1.82;
  color: var(--clr-text-muted);
  font-style: italic;
}
.reviews__card-right {
  display: flex; flex-direction: column;
  align-items: flex-end;
  gap: 5px; flex-shrink: 0;
  min-width: 130px;
  padding-top: 20px;
  border-left: 1px solid var(--clr-border);
  padding-left: 32px;
}
.reviews__author {
  font-size: 14px; font-weight: 700;
  color: var(--clr-text);
}
.reviews__city {
  font-size: 12px;
  color: var(--clr-text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.reviews__pagination {
  display: flex; justify-content: center;
  gap: 8px; margin-top: 32px;
}
.reviews__pagination .swiper-pagination-bullet {
  width: 7px; height: 7px;
  background: var(--dark-600);
  border: 1px solid var(--clr-border);
  opacity: 1; border-radius: var(--r-pill);
  transition: width var(--transition), background var(--transition);
}
.reviews__pagination .swiper-pagination-bullet-active {
  background: var(--gold-500);
  border-color: var(--gold-400);
  width: 22px;
}

/* ═══════════════════════════════════════════════════
   ARTICLES
═══════════════════════════════════════════════════ */
.articles {
  padding: 80px 0;
  background: var(--dark-950);
  border-top: 1px solid var(--clr-border);
}
.articles__title {
  font-family: "Playfair Display", serif !important;
  font-size: 38px;
  font-weight: 700;
  color: var(--clr-text);
  margin-bottom: 48px;
  position: relative;
  display: inline-block;
}
.articles__title::after {
  content: '';
  position: absolute;
  left: 0; bottom: -12px;
  height: 2px; width: 0;
  background: linear-gradient(90deg, var(--gold-400), transparent);
  border-radius: 2px;
  animation: lineDraw .8s cubic-bezier(.22,.68,0,1.2) .3s both;
}
.articles__swiper { overflow: hidden; }
.articles__slide { width: 300px; }
.articles__card {
  display: flex;
  flex-direction: column;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--dark-900);
  border: 1px solid var(--clr-border);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.articles__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
  border-color: var(--clr-border-bright);
}
.articles__img-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--dark-700);
  position: relative;
}
.articles__img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(12,10,8,0.6) 100%);
  opacity: 0;
  transition: opacity var(--transition);
}
.articles__card:hover .articles__img-wrap::after { opacity: 1; }
.articles__img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.85) saturate(0.9);
  transition: transform .45s ease, filter .45s ease;
}
.articles__card:hover .articles__img-wrap img {
  transform: scale(1.06);
  filter: brightness(0.95) saturate(1.05);
}
.articles__body {
  padding: 18px 18px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.articles__caption {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--clr-text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color var(--transition);
}
.articles__card:hover .articles__caption { color: var(--gold-300); }
.articles__btn {
  display: block;
  text-align: center;
  background: rgba(172,127,94,0.12);
  border: 1px solid var(--clr-border);
  color: var(--gold-400);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 10px 0;
  border-radius: var(--r-xs);
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}
.articles__btn::before { display: none; }
.articles__btn:hover {
  background: var(--gold-600);
  border-color: var(--gold-500);
  color: #F0EBE3;
}

/* ═══════════════════════════════════════════════════
   BLOG POST
═══════════════════════════════════════════════════ */
.blog-post {
  padding: 40px 0 80px;
  background: var(--dark-950);
  min-height: 60vh;
}
.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  color: var(--clr-text-muted);
  margin-bottom: 36px;
}
.breadcrumb a {
  color: var(--clr-text-muted);
  transition: color var(--transition);
}
.breadcrumb a:hover { color: var(--gold-400); }
.breadcrumb__sep { opacity: 0.45; user-select: none; }
.breadcrumb__current { color: var(--gold-400); }

.blog-post__layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: start;
}
.blog-sidebar {
  position: sticky;
  top: 96px;
}
.blog-sidebar__title {
  font-family: "Playfair Display", serif !important;
  font-size: 20px;
  font-weight: 700;
  color: var(--clr-text);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--clr-border);
}
.blog-sidebar__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.blog-card--sm {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 10px;
  background: var(--dark-800);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-sm);
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}
.blog-card--sm:hover {
  border-color: var(--clr-border-bright);
  background: rgba(172,127,94,0.08);
  transform: translateX(3px);
}
.blog-card--sm.is-active {
  border-color: var(--gold-500);
  background: rgba(172,127,94,0.1);
  pointer-events: none;
}
.blog-card--sm img {
  width: 64px;
  height: 48px;
  object-fit: cover;
  border-radius: var(--r-xs);
  flex-shrink: 0;
}
.blog-card--sm span {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.45;
  color: var(--clr-text-muted);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color var(--transition);
}
.blog-card--sm:hover span { color: var(--clr-text); }
.blog-card--sm.is-active span { color: var(--gold-300); }

.blog-article {
  background: var(--dark-800);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.blog-article__head {
  padding: 40px 44px 0;
}
.blog-article__title {
  font-family: "Playfair Display", serif !important;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--clr-text);
  margin-bottom: 12px;
}
.blog-article__date {
  display: block;
  font-size: 13px;
  color: var(--clr-text-muted);
  letter-spacing: 0.04em;
  margin-bottom: 28px;
}
.blog-article__cover {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
}
.blog-article__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-article__content {
  padding: 36px 44px 48px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--clr-text-muted);
}
.blog-article__content h2 {
  font-family: "Playfair Display", serif !important;
  font-size: 24px;
  font-weight: 700;
  color: var(--clr-text);
  margin: 32px 0 16px;
}
.blog-article__content h2:first-child { margin-top: 0; }
.blog-article__content p { margin-bottom: 18px; }
.blog-article__content p:last-child { margin-bottom: 0; }
.blog-article__content ul {
  margin: 0 0 18px;
  padding-left: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.blog-article__content li { line-height: 1.7; }
.blog-article__content strong { color: var(--clr-text); font-weight: 600; }

/* ═══════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════ */
.footer {
  background: var(--dark-900);
  border-top: 1px solid var(--clr-border);
  padding: 56px 0 32px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer__brand-title {
  font-family: "Playfair Display", serif !important;
  font-size: 22px;
  font-weight: 700;
  color: var(--clr-text);
  margin-bottom: 12px;
}
.footer__brand-text {
  font-size: 14px;
  line-height: 1.65;
  color: var(--clr-text-muted);
  max-width: 280px;
}
.footer__heading {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 16px;
}
.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__link {
  font-size: 14px;
  color: var(--clr-text-muted);
  transition: color var(--transition);
}
.footer__link:hover { color: var(--gold-300); }
.footer__contacts {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__contact {
  font-size: 14px;
  color: var(--clr-text-muted);
  transition: color var(--transition);
}
.footer__contact:hover { color: var(--gold-300); }
.footer__bottom {
  padding-top: 28px;
  border-top: 1px solid var(--clr-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__copy {
  font-size: 13px;
  color: var(--clr-text-muted);
}
.footer__socials {
  display: flex;
  gap: 12px;
}
.footer__social {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--clr-border);
  border-radius: 50%;
  background: rgba(172,127,94,0.06);
  transition: border-color var(--transition), background var(--transition);
}
.footer__social:hover {
  border-color: var(--gold-500);
  background: rgba(172,127,94,0.15);
}
.footer__social img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

@media (max-width: 900px) {
  .blog-post__layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .blog-sidebar {
    position: static;
    order: 2;
  }
  .blog-article { order: 1; }
  .blog-sidebar__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}
@media (max-width: 768px) {
  .blog-post { padding: 28px 0 56px; }
  .blog-article__head { padding: 28px 24px 0; }
  .blog-article__content { padding: 28px 24px 36px; }
  .blog-sidebar__list { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}

/* ═══════════════════════════════════════════════════
   CONTACTS
═══════════════════════════════════════════════════ */
.contacts {
  padding: 80px 0;
  background: var(--dark-900);
  border-top: 1px solid var(--clr-border);
}
.contacts__title {
  font-family: "Playfair Display", serif !important;
  font-size: 38px;
  font-weight: 700;
  text-align: center;
  color: var(--clr-text);
  margin-bottom: 60px;
  position: relative;
}
.contacts__title::after {
  content: '';
  position: absolute;
  bottom: -16px; left: 50%;
  transform: translateX(-50%);
  width: 48px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-400), transparent);
  border-radius: 2px;
}
.contacts__row {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.contacts__item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  color: var(--clr-text-muted);
  text-decoration: none;
  max-width: 380px;
  font-weight: 600;
  padding: 18px 24px;
  background: var(--dark-800);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-md);
  transition: background var(--transition), border-color var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
  flex: 1;
  min-width: 220px;
}
.contacts__item--address {
  text-transform: uppercase;
  font-size: 12px;
  line-height: 1.7;
  font-weight: 600;
  text-align: left;
  align-items: flex-start;
}
.contacts__item:hover {
  background: rgba(172,127,94,0.08);
  border-color: var(--clr-border-bright);
  color: var(--clr-text);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.35), var(--glow-sm);
}
.contacts__icon {
  width: 28px; height: 28px;
  object-fit: contain;
  flex-shrink: 0;
  opacity: 0.7;
  transition: opacity var(--transition), transform var(--transition);
  filter: brightness(0) invert(.7) sepia(.3) hue-rotate(10deg) saturate(2);
}
.contacts__item:hover .contacts__icon {
  opacity: 1;
  transform: scale(1.15) rotate(-5deg);
}
.contacts__underline { text-decoration: underline; text-underline-offset: 3px; }

.contacts__socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.contacts__social {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 600;
  color: var(--clr-text-muted);
  text-decoration: none;
  padding: 14px 32px;
  border-radius: var(--r-pill);
  background: var(--dark-800);
  border: 1px solid var(--clr-border);
  position: relative;
  overflow: hidden;
  transition: color var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition), background var(--transition);
}
.contacts__social::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(172,127,94,0.12), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.contacts__social:hover {
  color: var(--gold-300);
  border-color: var(--gold-500);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4), var(--glow-gold);
}
.contacts__social:hover::before { opacity: 1; }
.contacts__social-icon {
  width: 32px; height: 32px;
  object-fit: contain;
  border-radius: 50%;
  border: 1px solid var(--clr-border);
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .header__nav { gap: 18px; }
  .header__link { font-size: 12px; }
  :root { --container-px: 24px; }
}
@media (max-width: 768px) {
  :root { --container-px: 20px; }
  .header__nav { display: none; }
  .about__inner { padding: 32px 24px; }
  [data-theme="light"] .about__inner { padding: 28px 22px; }
  [data-theme="light"] .services__group-header,
  [data-theme="light"] .services__row {
    padding-left: 22px;
    padding-right: 22px;
  }
  [data-theme="light"] .services__row:hover { padding-left: 22px; }

  .practice {
    padding-bottom: 48px;
  }
  .practice__header {
    padding: 36px 0;
    margin-bottom: 28px;
  }
  .practice__title {
    font-size: 28px;
    text-align: center;
  }
  .practice__title::before { display: none; }
  .practice__slider-wrap {
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .practice__swiper {
    width: 100%;
  }
  .practice__nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    order: 2;
  }
  .practice__pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    order: 3;
    margin-top: -4px;
  }
  .practice__pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: var(--dark-600);
    border: 1px solid var(--clr-border);
    opacity: 1;
    border-radius: var(--r-pill);
    transition: width var(--transition), background var(--transition);
  }
  .practice__pagination .swiper-pagination-bullet-active {
    background: var(--gold-500);
    border-color: var(--gold-400);
    width: 22px;
  }
  .practice__btn {
    position: static;
    transform: none;
    width: 48px;
    height: 48px;
    flex-shrink: 0;
  }
  .practice__btn:hover {
    transform: scale(1.08);
  }
  .practice__slide {
    padding: 24px 20px 36px;
    height: auto;
  }
  .practice__slide:hover {
    transform: none;
    box-shadow: none;
  }
  .practice__slide-title {
    font-size: 17px;
    line-height: 1.35;
    margin-bottom: 12px;
    word-break: break-word;
  }
  .practice__slide-text {
    font-size: 14px;
    line-height: 1.65;
  }

  .reviews__card { flex-direction: column; gap: 20px; padding: 28px 24px; }
  .reviews__card-right { align-items: flex-start; }
  .contacts__row { flex-direction: column; align-items: stretch; }
  .contacts__item { max-width: 100%; }
}

/* ═══════════════════════════════════════════════════
   SCROLL REVEAL (IntersectionObserver ile JS tərəfdən)
═══════════════════════════════════════════════════ */
.about__title, .about__intro, .about__item,
.certs__title, .certs__slide,
.services__title, .services__group,
.practice__title, .practice__slide,
.reviews__title, .reviews__card,
.articles__title,
.contacts__title, .contacts__item, .contacts__social {
  animation-fill-mode: forwards;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}

/* ═══════════════════════════════════════════════════
   LIGHT THEME (figmadvkt.netlify.app)
═══════════════════════════════════════════════════ */
[data-theme="light"] {
  --clr-bg:            #FFFFFF;
  --clr-surface:       #FFFFFF;
  --clr-surface-2:     #F8F4EF;
  --clr-text:          #000000;
  --clr-text-muted:    #5A5A5A;
  --clr-border:        #E5D8CB;
  --clr-border-bright: rgba(172, 127, 94, 0.45);
  --clr-primary-pale:  #F0E6DA;
  --dark-950:          #FFFFFF;
  --dark-900:          #FFFFFF;
  --dark-800:          #FFFFFF;
  --dark-700:          #F5F0EB;
  --dark-600:          #E5D8CB;
  --glow-gold:         0 0 40px rgba(172, 127, 94, 0.15);
  --glow-sm:           0 0 16px rgba(172, 127, 94, 0.1);
  --r-xs:              0;
  --r-sm:              0;
  --r-md:              0;
  --r-lg:              0;
  --r-xl:              0;
  --r-2xl:             0;
  --r-pill:            0;
}

[data-theme="light"] body {
  background: var(--clr-bg);
  color: var(--clr-text);
}
[data-theme="light"] body::before { opacity: 0.01; }

[data-theme="light"] .header {
  background: #fff;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom-color: var(--clr-border);
}
[data-theme="light"] .header.scrolled {
  background: #fff;
  box-shadow: 0 2px 32px rgba(0, 0, 0, 0.12);
}
[data-theme="light"] .header__link {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  color: var(--clr-text);
}
[data-theme="light"] .header__link::after {
  left: 0;
  transform: none;
  background: var(--clr-primary);
}
[data-theme="light"] .header__link:hover { color: var(--clr-primary); }
[data-theme="light"] .header__theme-toggle {
  background: #fff;
  color: var(--clr-primary-dark);
}
[data-theme="light"] .header__dropdown {
  background: rgba(172, 127, 94, 0.92);
  border-color: var(--clr-border);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}
[data-theme="light"] .header__dropdown-item { color: #fff; }
[data-theme="light"] .header__dropdown-item:hover {
  background: var(--clr-primary-pale);
  color: var(--clr-primary-dark);
}
[data-theme="light"] .header__dropdown-consult { color: #fff; }

[data-theme="light"] .hero::before { display: none; }
[data-theme="light"] .hero__text-col { background: #fff; }
[data-theme="light"] .hero__title {
  color: #000;
  background: none;
  -webkit-text-fill-color: currentColor;
}
[data-theme="light"] .hero__subtitle { color: #333; }
[data-theme="light"] .hero__subtitle::before { display: none; }
[data-theme="light"] .hero__image-wrap {
  background: #C2A98A;
  border-radius: 0;
}
[data-theme="light"] .hero__image-wrap::before { display: none; }
[data-theme="light"] .hero__image {
  filter: none;
  transform: scale(1);
}

[data-theme="light"] .about {
  padding: 40px 0;
}
[data-theme="light"] .about__inner {
  background: #fff;
  border-color: var(--clr-border);
  box-shadow: none;
  padding: 36px 32px;
}
[data-theme="light"] .about__inner::before { display: none; }
[data-theme="light"] .about::before { display: none; }
[data-theme="light"] .about__title {
  display: inline;
  color: #000;
  border-bottom: 1px solid rgba(172, 127, 94, 0.36);
}
[data-theme="light"] .about__title::after { display: none; }
[data-theme="light"] .about__intro,
[data-theme="light"] .about__item { color: var(--clr-text); }
[data-theme="light"] .about__item {
  background: transparent;
  border-color: transparent;
  padding: 10px 0 10px 28px;
}
[data-theme="light"] .about__item::before {
  content: '✓';
  left: 0;
  top: 16px;
  font-size: 15px;
  color: var(--clr-text);
}
[data-theme="light"] .about__item:hover {
  background: transparent;
  border-color: transparent;
  transform: none;
}

[data-theme="light"] .certs {
  background: #AC7F5E1F;
  border-color: transparent;
}
[data-theme="light"] .certs__slide {
  background: transparent;
  border: none;
  box-shadow: none;
}
[data-theme="light"] .certs__slide::after { display: none; }
[data-theme="light"] .certs__slide:hover {
  transform: none;
  border-color: transparent;
  box-shadow: none;
}
[data-theme="light"] .certs__slide img { filter: none; }
[data-theme="light"] .certs__btn {
  background: none;
  border: none;
  box-shadow: none;
}
[data-theme="light"] .certs__btn:hover {
  background: none;
  transform: none;
  box-shadow: none;
}
[data-theme="light"] .certs__btn img { filter: none; }

[data-theme="light"] .services__title {
  background: #AC7F5E5C;
  padding: 40px 0;
}
[data-theme="light"] .services__title::before,
[data-theme="light"] .services__title::after { display: none; }
[data-theme="light"] .services__table {
  padding: 0;
  max-width: none;
}
[data-theme="light"] .services__group-header {
  background: #52250480;
  padding: 16px 24px;
  font-size: 18px;
  letter-spacing: 0;
  text-transform: none;
  color: #000;
}
[data-theme="light"] .services__group-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}
[data-theme="light"] .services__group-header span {
  font-size: 18px;
  color: #000;
}
[data-theme="light"] .services__row {
  background: #fff;
  color: #000;
  border-top-color: var(--clr-border);
  padding: 18px 24px;
}
[data-theme="light"] .services__row::before { display: none; }
[data-theme="light"] .services__row:hover { padding-left: 24px; }
[data-theme="light"] .services__dots { border-bottom-color: #B0A090; }
[data-theme="light"] .services__price { color: var(--clr-text); font-weight: 500; }
[data-theme="light"] .services__row:hover .services__price { color: var(--clr-text); }

[data-theme="light"] .practice {
  background: #fff;
  border-top-color: transparent;
}
[data-theme="light"] .practice__header {
  background: #AC7F5E5C;
  border-bottom: none;
  padding: 40px 0;
  margin-bottom: 48px;
}
[data-theme="light"] .practice__header::before,
[data-theme="light"] .practice__header::after { display: none; }
[data-theme="light"] .practice__title { color: #000; }
[data-theme="light"] .practice__title::before { display: none; }
[data-theme="light"] .practice__slide {
  background: transparent;
  border: none;
  padding: 0;
  box-shadow: none;
}
[data-theme="light"] .practice__slide::before,
[data-theme="light"] .practice__slide::after { display: none; }
[data-theme="light"] .practice__slide:hover {
  transform: none;
  box-shadow: none;
  border-color: transparent;
}
[data-theme="light"] .practice__slide-title { color: var(--clr-text); }
[data-theme="light"] .practice__btn {
  background: none;
  border: none;
  box-shadow: none;
}
[data-theme="light"] .practice__btn:hover {
  background: none;
  transform: translateY(-50%);
  box-shadow: none;
}
[data-theme="light"] .practice__btn img { filter: none; }
[data-theme="light"] .practice__pagination .swiper-pagination-bullet {
  background: #C4B5A5;
  border: none;
}
[data-theme="light"] .practice__pagination .swiper-pagination-bullet-active {
  background: var(--clr-primary-dark);
  border: none;
}

[data-theme="light"] .reviews {
  background: #fff;
  border-color: transparent;
}
[data-theme="light"] .reviews__title::after { display: none; }
[data-theme="light"] .reviews__card {
  background: #AC7F5E5C;
  border: none;
  box-shadow: none;
  align-items: center;
}
[data-theme="light"] .reviews__card::before,
[data-theme="light"] .reviews__card::after { display: none; }
[data-theme="light"] .reviews__card:hover {
  transform: none;
  box-shadow: none;
  border-color: transparent;
}
[data-theme="light"] .reviews__icon {
  display: block;
  color: var(--clr-primary-dark);
}
[data-theme="light"] .reviews__text {
  color: var(--clr-text);
  font-style: normal;
}
[data-theme="light"] .reviews__card-right {
  border-left: none;
  padding-left: 0;
  padding-top: 0;
}
[data-theme="light"] .reviews__pagination .swiper-pagination-bullet {
  background: #C4B5A5;
  border: none;
}
[data-theme="light"] .reviews__pagination .swiper-pagination-bullet-active {
  background: var(--clr-primary-dark);
  border: none;
}

[data-theme="light"] .articles {
  background: #fff;
  border-top-color: transparent;
}
[data-theme="light"] .articles__title::after { display: none; }
[data-theme="light"] .articles__card {
  background: transparent;
  border: none;
  box-shadow: none;
}
[data-theme="light"] .articles__card:hover {
  transform: none;
  box-shadow: none;
  border-color: transparent;
}
[data-theme="light"] .articles__img-wrap {
  background: #D9C9B8;
}
[data-theme="light"] .articles__img-wrap::after { display: none; }
[data-theme="light"] .articles__img-wrap img { filter: none; }
[data-theme="light"] .articles__caption {
  font-size: 22px;
  color: #000;
}
[data-theme="light"] .articles__card:hover .articles__caption { color: #000; }
[data-theme="light"] .articles__btn {
  background: #AC7F5EB2;
  border: none;
  color: #fff;
  font-size: 13px;
  letter-spacing: 0;
  text-transform: none;
}
[data-theme="light"] .articles__btn:hover {
  background: var(--clr-primary);
  color: #fff;
}

[data-theme="light"] .blog-post { background: #fff; }
[data-theme="light"] .blog-card--sm {
  background: #fff;
  border-color: var(--clr-border);
}
[data-theme="light"] .blog-card--sm:hover { background: var(--clr-primary-pale); }
[data-theme="light"] .blog-card--sm.is-active {
  background: #AC7F5E1F;
  border-color: var(--clr-primary);
}
[data-theme="light"] .blog-card--sm.is-active span { color: #000; }
[data-theme="light"] .blog-article {
  background: #fff;
  border-color: var(--clr-border);
}
[data-theme="light"] .blog-article__content h2,
[data-theme="light"] .blog-article__content strong { color: #000; }
[data-theme="light"] .footer {
  background: #F8F4EF;
  border-top-color: var(--clr-border);
}
[data-theme="light"] .footer__brand-title { color: #000; }
[data-theme="light"] .footer__brand-text,
[data-theme="light"] .footer__link,
[data-theme="light"] .footer__contact,
[data-theme="light"] .footer__copy { color: var(--clr-text-muted); }
[data-theme="light"] .footer__link:hover,
[data-theme="light"] .footer__contact:hover { color: var(--clr-primary-dark); }

[data-theme="light"] .contacts {
  background: #fff;
  border-top-color: transparent;
}
[data-theme="light"] .contacts__title::after { display: none; }
[data-theme="light"] .contacts__item {
  background: transparent;
  border: none;
  padding: 0;
  color: #000;
  box-shadow: none;
}
[data-theme="light"] .contacts__item:hover {
  background: transparent;
  transform: none;
  box-shadow: none;
  color: #000;
}
[data-theme="light"] .contacts__icon {
  filter: none;
  opacity: 1;
}
[data-theme="light"] .contacts__social {
  background: transparent;
  border: none;
  padding: 0;
  color: #000;
  box-shadow: none;
}
[data-theme="light"] .contacts__social::before { display: none; }
[data-theme="light"] .contacts__social:hover {
  opacity: 0.7;
  transform: none;
  box-shadow: none;
  color: #000;
}
[data-theme="light"] .contacts__social-icon { border: none; }

[data-theme="light"] .btn,
[data-theme="light"] .header__theme-toggle,
[data-theme="light"] .header__social,
[data-theme="light"] .header__dropdown,
[data-theme="light"] .header__dropdown-icon,
[data-theme="light"] .contacts__social-icon,
[data-theme="light"] .practice__pagination .swiper-pagination-bullet,
[data-theme="light"] .reviews__pagination .swiper-pagination-bullet {
  border-radius: 0;
}

@media (max-width: 900px) {
  [data-theme="light"] .header__link { font-size: 14px; }
}

@media (max-width: 768px) {
  [data-theme="light"] .hero__image-wrap { border-radius: 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}