/* =============================================================
   GUR LAW THEME — main.css
   Author: efyuar.com | Version: 1.0.0
   ============================================================= */

/* ── Design Tokens ─────────────────────────────────────────── */
:root {
  --gold:        #AC835D;
  --gold-light:  #C49A72;
  --gold-dark:   #8A6645;
  --dark:        #111111;
  --dark2:       #1A1A1A;
  --dark-mid:    #1C1C1C;
  --dark-soft:   #2A2A2A;
  --grey:        #4A4A4A;
  --grey-light:  #9A9A9A;
  --cream:       #F0EDE8;
  --white:       #FFFFFF;
  --off-white:   #F5F3F0;
  --text:        #3A3A3A;
  --max-w:       1200px;

  --font-serif:  'Playfair Display', Georgia, serif;
  --font-sans:   'Inter', 'Helvetica Neue', Arial, sans-serif;

  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --transition:  0.35s cubic-bezier(0.4, 0, 0.2, 1);

  --header-h:    96px;
  --container:   1200px;
  --container-n: 860px;
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  overflow-y: scroll; /* prevents layout shift on desktop */
}
body {
  font-family: var(--font-sans);
  background: var(--white);
  color: var(--dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
  position: relative; /* iOS Safari: forces overflow-x: hidden to work */
}
img, video { display: block; max-width: 100%; }
svg { display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; }
ul, ol { list-style: none; }

/* ── Accessibility ─────────────────────────────────────────── */
.screen-reader-text {
  clip: rect(1px,1px,1px,1px);
  height: 1px; width: 1px;
  overflow: hidden;
  position: absolute;
  word-wrap: normal !important;
}
.screen-reader-text:focus {
  background: var(--gold); color: #fff;
  clip: auto; height: auto; width: auto;
  display: block; padding: 10px 20px;
  z-index: 99999; top: 8px; left: 8px;
  border-radius: 4px;
}
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ── Layout ────────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 60px;
}
.container--narrow {
  max-width: var(--container-n);
  margin-inline: auto;
  padding-inline: 60px;
}
.site { display: flex; flex-direction: column; min-height: 100vh; overflow-x: hidden; width: 100%; }
.site-main { flex: 1; overflow-x: hidden; }

/* ── Typography ────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.2;
  color: var(--dark);
}
h1 { font-size: clamp(2rem, 4vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.7rem); }
h4 { font-size: 1.2rem; }
p  { line-height: 1.78; color: var(--grey); }
em { font-style: italic; color: var(--gold); }

/* ── Buttons ───────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-sans); font-size: 12px;
  font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--dark); background: var(--gold);
  padding: 18px 40px; border: none; border-radius: 0;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  text-decoration: none; position: relative; overflow: hidden;
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0.12); transform: translateX(-100%);
  transition: transform 0.4s ease;
}
.btn-primary:hover::before { transform: translateX(0); }
.btn-primary:hover {
  background: var(--gold-light); transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(172,131,93,0.35);
}

.btn-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-sans); font-size: 12px;
  font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.72); background: transparent;
  border: none; padding: 0;
  transition: color var(--transition);
  text-decoration: none;
}
.btn-secondary svg { width: 18px; height: 18px; transition: transform var(--transition); flex-shrink: 0; }
.btn-secondary:hover { color: var(--gold); }
.btn-secondary:hover svg { transform: translateX(4px); }

.btn-consult {
  display: inline-flex; align-items: center;
  font-family: var(--font-sans); font-size: 12px;
  font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--dark) !important; background: var(--gold);
  padding: 12px 26px; border: none; border-radius: 0;
  transition: background var(--transition), transform var(--transition);
  text-decoration: none !important;
}
.btn-consult::after { display: none !important; }
.btn-consult:hover { background: var(--gold-light) !important; transform: translateY(-1px); }

/* ── Breadcrumb ────────────────────────────────────────────── */
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-sans); font-size: 12px;
  letter-spacing: 0.06em; color: rgba(255,255,255,0.5);
  margin-bottom: 28px;
}
.breadcrumb a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span[aria-current] { color: var(--gold); }

/* ── Site Header ───────────────────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--header-h);
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition), height var(--transition);
}
.site-header.scrolled {
  background: rgba(17,17,17,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(172,131,93,0.2);
  height: 76px;
}
.site-header__inner {
  max-width: 1440px; margin-inline: auto;
  padding-inline: 60px; height: 100%;
  display: flex; align-items: center; justify-content: space-between;
}

/* Logo */
.site-header__logo { display: flex; align-items: center; flex-shrink: 0; }

/* WordPress the_custom_logo() outputs <a class="custom-logo-link"><img class="custom-logo"></a> */
.site-header__logo .custom-logo-link {
  display: flex; align-items: center; text-decoration: none;
}
.site-header__logo .custom-logo-link img,
.site-header__logo .custom-logo {
  height: 80px;
  width: auto;
  max-width: 200px;
  filter: brightness(0) invert(1);
  transition: height var(--transition);
  display: block;
}
.site-header.scrolled .site-header__logo .custom-logo-link img,
.site-header.scrolled .site-header__logo .custom-logo { height: 64px; }

/* Fallback text logo */
.site-header__logo-text {
  font-family: var(--font-serif); font-size: 1.2rem;
  font-weight: 700; color: #fff; letter-spacing: 0.05em;
}

/* Nav */
.site-header__nav {
  display: flex; align-items: center; gap: 40px;
}
.nav-menu { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-menu a {
  font-family: var(--font-sans); font-size: 13px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.82); text-decoration: none;
  position: relative; transition: color var(--transition);
}
.nav-menu a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 100%;
  height: 1px; background: var(--gold); transition: right var(--transition);
}
.nav-menu a:hover { color: #fff; }
.nav-menu a:hover::after { right: 0; }
.nav-menu .current-menu-item > a,
.nav-menu .current_page_item > a { color: var(--gold); }

/* ── Desktop Dropdown Submenu ────────────────────────────────── */
.nav-menu .menu-item-has-children { position: relative; }

/* Invisible bridge that fills the gap between link and panel,
   keeps :hover active while the cursor travels into the submenu */
.nav-menu .menu-item-has-children::after {
  content: ''; position: absolute;
  bottom: -18px; left: -20px; right: -20px;
  height: 20px;
}

.nav-arrow {
  display: inline-block; margin-left: 5px; vertical-align: middle;
  line-height: 1; opacity: .65; transition: transform .25s ease, opacity .25s;
}
.nav-menu .menu-item-has-children:hover .nav-arrow,
.nav-menu .menu-item-has-children:focus-within .nav-arrow {
  transform: rotate(180deg); opacity: 1;
}

.nav-menu .sub-menu {
  position: absolute;
  top: calc(100% + 18px); left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 220px;
  background: rgba(10,10,18,0.97);
  backdrop-filter: blur(24px) saturate(1.6);
  border: 1px solid rgba(172,131,93,.22);
  border-radius: 12px;
  padding: 6px 0;
  list-style: none; margin: 0;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .22s ease, transform .22s ease, visibility 0s linear .22s;
  box-shadow: 0 28px 56px rgba(0,0,0,.55), 0 0 0 1px rgba(255,255,255,.03);
  z-index: 300;
}
/* Caret */
.nav-menu .sub-menu::before {
  content: ''; position: absolute;
  top: -5px; left: 50%; transform: translateX(-50%) rotate(45deg);
  width: 9px; height: 9px;
  background: rgba(10,10,18,0.97);
  border-left: 1px solid rgba(172,131,93,.22);
  border-top: 1px solid rgba(172,131,93,.22);
}
.nav-menu .menu-item-has-children:hover .sub-menu,
.nav-menu .menu-item-has-children:focus-within .sub-menu {
  opacity: 1; visibility: visible; pointer-events: all;
  transform: translateX(-50%) translateY(0);
  transition: opacity .22s ease, transform .22s ease, visibility 0s;
}
.nav-menu .sub-menu li { display: block; }
.nav-menu .sub-menu a {
  display: block; padding: 11px 22px;
  font-family: var(--font-sans); font-size: 11px; font-weight: 500;
  letter-spacing: .11em; text-transform: uppercase;
  color: rgba(255,255,255,.62);
  white-space: nowrap; transition: color .15s, background .15s, padding-left .15s;
}
.nav-menu .sub-menu a::after { display: none !important; }
.nav-menu .sub-menu a:hover { color: var(--gold); background: rgba(172,131,93,.07); padding-left: 28px; }
.nav-menu .sub-menu .current-menu-item > a { color: var(--gold); }
/* Gold left-border accent on first/last items */
.nav-menu .sub-menu li:first-child a { border-radius: 10px 10px 0 0; }
.nav-menu .sub-menu li:last-child  a { border-radius: 0 0 10px 10px; }

/* Mobile Toggle */
.site-header__toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 4px; cursor: pointer;
}
.site-header__toggle span {
  display: block; width: 24px; height: 1.5px;
  background: rgba(255,255,255,0.9);
  transition: transform 0.3s, opacity 0.3s;
}

/* ── Mobile Menu ───────────────────────────────────────────── */
.mobile-menu {
  display: flex; /* always flex so opacity transition works */
  visibility: hidden;
  position: fixed; inset: 0; z-index: 999;
  background: var(--dark-mid);
  flex-direction: column; align-items: center; justify-content: center;
  gap: 0;
  padding: 40px 32px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s var(--ease), visibility 0s linear 0.35s;
}
.mobile-menu.open {
  visibility: visible; opacity: 1; pointer-events: all;
  transition: opacity 0.35s var(--ease), visibility 0s;
}
/* Force any ul inside mobile menu (including .nav-menu fallback) to vertical */
.mobile-menu ul,
.mobile-menu .nav-menu,
.mobile-menu .mobile-nav-menu {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 0 !important;
  list-style: none !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}
.mobile-menu ul li,
.mobile-menu .nav-menu li,
.mobile-menu .mobile-nav-menu li {
  display: block !important;
  width: 100% !important;
  text-align: center !important;
}
/* All links inside mobile menu */
.mobile-menu ul a,
.mobile-menu .nav-menu a,
.mobile-menu .mobile-nav-menu a {
  display: block !important;
  text-align: center !important;
  font-family: var(--font-serif) !important;
  font-size: clamp(1.5rem, 5vw, 1.75rem) !important;
  font-weight: 400 !important;
  color: rgba(255,255,255,0.85) !important;
  letter-spacing: 0.02em !important;
  text-transform: none !important;
  padding: 14px 0 !important;
  transition: color 0.2s !important;
  background: none !important;
}
.mobile-menu ul a:hover,
.mobile-menu .nav-menu a:hover,
.mobile-menu .mobile-nav-menu a:hover,
.mobile-menu ul .current-menu-item > a,
.mobile-menu .nav-menu .current-menu-item > a,
.mobile-menu .mobile-nav-menu .current-menu-item > a { color: var(--gold) !important; }
/* Underline pseudo removed inside mobile menu */
.mobile-menu ul a::after,
.mobile-menu .nav-menu a::after { display: none !important; }
.mobile-menu .btn-consult {
  margin-top: 32px;
  font-size: 13px; padding: 14px 32px;
  width: auto; display: inline-block;
}

/* ── Mobile Sub-menu ─────────────────────────────────────────── */
.mobile-menu .menu-item-has-children { position: relative !important; }
.mobile-menu .menu-item-has-children > a { padding-right: 48px !important; }

/* Override the global flex rule for sub-menus: hide by height, not display */
.mobile-menu .sub-menu {
  display: flex !important; flex-direction: column !important;
  align-items: center !important; gap: 0 !important;
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease;
  border-top: none !important; padding: 0 !important;
}
.mobile-menu .sub-menu.is-open { max-height: 500px; padding-bottom: 8px !important; }

/* Sub-menu links: smaller than parent items */
.mobile-menu .sub-menu a {
  font-family: var(--font-sans) !important;
  font-size: 11px !important;
  font-weight: 500 !important;
  letter-spacing: .12em !important;
  text-transform: uppercase !important;
  padding: 10px 0 !important;
  color: rgba(255,255,255,.45) !important;
}
.mobile-menu .sub-menu a:hover { color: var(--gold) !important; }
.mobile-menu .sub-menu .current-menu-item > a { color: var(--gold) !important; }

/* Toggle button */
.mobile-sub-toggle {
  position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px;
  background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.35); transition: color .2s;
  z-index: 1;
}
.mobile-sub-toggle svg { transition: transform .3s ease; }
.mobile-sub-toggle.is-open { color: var(--gold); }
.mobile-sub-toggle.is-open svg { transform: rotate(180deg); }

/* ── Hero Section ──────────────────────────────────────────── */
.hero {
  position: relative; width: 100%;
  height: 88vh; min-height: 560px;
  display: flex; align-items: center;
  overflow: hidden; background-color: var(--dark);
}
.hero__video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.hero__video--mobile { display: none; }
.hero__overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.55); z-index: 1;
}
.hero__accent-line {
  position: absolute; left: 58px; top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent 0%, var(--gold) 30%, var(--gold) 70%, transparent 100%);
  opacity: 0.35; z-index: 2;
}
.hero__corner {
  position: absolute; bottom: 56px; right: 80px;
  width: 100px; height: 100px;
  border-right: 1px solid rgba(172,131,93,0.25);
  border-bottom: 1px solid rgba(172,131,93,0.25);
  z-index: 2;
}
.hero__content {
  position: relative; z-index: 3;
  width: 100%; max-width: 860px;
  padding: 0 0 0 120px;
}
.hero__eyebrow {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 32px;
  opacity: 0; transform: translateY(20px);
  animation: gur-fadeUp 0.8s var(--ease) 0.3s forwards;
}
.hero__eyebrow-line { width: 48px; height: 1px; background: var(--gold); flex-shrink: 0; }
.hero__eyebrow-text {
  font-size: 11px; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold);
}
.hero__heading {
  font-family: var(--font-serif);
  font-size: clamp(44px, 5.8vw, 80px);
  font-weight: 500; line-height: 1.1; color: var(--white);
  margin-bottom: 32px;
  opacity: 0; transform: translateY(24px);
  animation: gur-fadeUp 0.9s var(--ease) 0.5s forwards;
}
.hero__heading em { font-style: italic; color: var(--gold); }
.hero__divider {
  width: 64px; height: 2px; background: var(--gold);
  margin-bottom: 24px;
  opacity: 0; transform: scaleX(0); transform-origin: left;
  animation: gur-scaleIn 0.7s var(--ease) 0.8s forwards;
}
.hero__tagline {
  font-size: clamp(12px, 1.3vw, 15px); font-weight: 400;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: rgba(255,255,255,0.5); margin-bottom: 52px;
  opacity: 0; transform: translateY(20px);
  animation: gur-fadeUp 0.8s var(--ease) 1s forwards;
}
.hero__actions {
  display: flex; align-items: center; gap: 32px;
  opacity: 0; transform: translateY(20px);
  animation: gur-fadeUp 0.8s var(--ease) 1.2s forwards;
}
.hero__scroll {
  position: absolute; bottom: 72px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  z-index: 5; opacity: 0;
  animation: gur-fadeIn 1s ease 1.8s forwards;
}
.hero__scroll-label {
  font-size: 9px; font-weight: 600; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--gold);
}
.hero__scroll-track {
  width: 30px; height: 50px;
  border: 1.5px solid var(--gold); border-radius: 15px;
  position: relative; display: flex; justify-content: center;
  padding-top: 7px;
  box-shadow: 0 0 14px rgba(172,131,93,0.25), inset 0 0 8px rgba(172,131,93,0.08);
}
.hero__scroll-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--gold); box-shadow: 0 0 8px rgba(172,131,93,0.8);
  animation: gur-scrollDot 2s cubic-bezier(0.45,0.05,0.55,0.95) 2s infinite;
}

/* ── About Section ─────────────────────────────────────────── */
.about { background: var(--white); padding: 100px 60px 0; overflow: hidden; }
.about__inner {
  max-width: 1440px; margin: 0 auto;
  display: flex; align-items: center; gap: 64px;
}
.about__text { flex: 0 0 600px; max-width: 600px; }
.about__label {
  font-family: var(--font-serif); font-size: 15px; font-style: italic;
  color: var(--grey); margin-bottom: 24px; letter-spacing: 0.02em;
}
.about__heading {
  font-family: var(--font-serif); font-size: clamp(30px, 3.2vw, 46px);
  font-weight: 500; line-height: 1.18; color: var(--dark); margin-bottom: 28px;
}
.about__heading em { font-style: italic; font-weight: 600; color: var(--gold); }
.about__body {
  font-size: 16px; font-weight: 400; line-height: 1.8;
  color: var(--grey); margin-bottom: 40px; max-width: 520px;
}
.btn-about {
  display: inline-block; font-family: var(--font-sans); font-size: 12px;
  font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--dark); background: var(--gold);
  padding: 16px 36px; text-decoration: none;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  position: relative; overflow: hidden;
}
.btn-about::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0.12); transform: translateX(-100%);
  transition: transform 0.4s ease;
}
.btn-about:hover::before { transform: translateX(0); }
.btn-about:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(172,131,93,0.28); }
.about__image-wrap {
  flex: 1; min-width: 0; border-radius: 4px; overflow: hidden; line-height: 0;
}
.about__image {
  width: 100%; height: 560px; object-fit: cover; object-position: top center;
  display: block; transition: transform 0.6s ease;
}
.about__image-wrap:hover .about__image { transform: scale(1.02); }

/* Strip Elementor wrapper padding & max-width for about + services */
.elementor-widget-gur_law_about > .elementor-widget-container,
.elementor-widget-gur_law_services > .elementor-widget-container { padding: 0 !important; }

.elementor-section:has(.elementor-widget-gur_law_about),
.elementor-section:has(.elementor-widget-gur_law_services) {
  padding: 0 !important;
}
.elementor-section:has(.elementor-widget-gur_law_about) .elementor-container,
.elementor-section:has(.elementor-widget-gur_law_services) .elementor-container {
  max-width: 100% !important; width: 100% !important; padding: 0 !important;
}
.elementor-section:has(.elementor-widget-gur_law_about) .elementor-column,
.elementor-section:has(.elementor-widget-gur_law_about) .elementor-column-wrap,
.elementor-section:has(.elementor-widget-gur_law_about) .elementor-widget-wrap,
.elementor-section:has(.elementor-widget-gur_law_services) .elementor-column,
.elementor-section:has(.elementor-widget-gur_law_services) .elementor-column-wrap,
.elementor-section:has(.elementor-widget-gur_law_services) .elementor-widget-wrap {
  padding: 0 !important; width: 100% !important;
}
.e-con:has(.elementor-widget-gur_law_about),
.e-con-inner:has(.elementor-widget-gur_law_about),
.e-con:has(.elementor-widget-gur_law_services),
.e-con-inner:has(.elementor-widget-gur_law_services) {
  padding: 0 !important; max-width: 100% !important; width: 100% !important;
}

/* ── Services Section ──────────────────────────────────────── */
.services { background: var(--white); padding: 0 60px 100px; overflow: hidden; }
.services__inner {
  max-width: 1440px; margin: 0 auto;
  display: flex; align-items: center; gap: 64px; padding-top: 48px;
}
.services__text {
  flex: 0 0 260px; display: flex; flex-direction: column; align-items: flex-start;
}
.services__eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 16px;
}
.services__heading {
  font-family: var(--font-serif); font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 700; line-height: 1.1; color: var(--dark); margin-bottom: 20px;
}
.services__heading em { font-style: italic; color: var(--gold); }
.services__body { font-size: 15px; line-height: 1.75; color: var(--grey); margin-bottom: 36px; }
.btn-dark {
  display: inline-block; font-family: var(--font-sans); font-size: 13px;
  font-weight: 500; letter-spacing: 0.08em;
  color: var(--white); background: var(--dark);
  padding: 14px 32px; border-radius: 100px; text-decoration: none;
  transition: background var(--transition), transform var(--transition);
}
.btn-dark:hover { background: var(--dark-soft); transform: translateY(-2px); }
.services__cards-wrap {
  flex: 1;
  min-width: 0;
  position: relative;
}
.services__cards {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding-bottom: 2px;
}
.services__cards::-webkit-scrollbar { display: none; }
.services__cards { cursor: grab; }
.services__cards:active { cursor: grabbing; user-select: none; }
.services__nav {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(172,131,93,0.4);
  background: rgba(255,255,255,0.85);
  color: var(--gold);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), border-color var(--transition), opacity var(--transition);
  opacity: 0.7;
  padding: 0;
}
.services__nav svg { width: 14px; height: 14px; flex-shrink: 0; }
.services__nav:hover { background: var(--gold); border-color: var(--gold); color: var(--white); opacity: 1; }
.services__nav:disabled { opacity: 0.2; pointer-events: none; }
.services__nav--prev { left: -16px; }
.services__nav--next { right: -16px; }
.has-scroll-nav .services__nav { display: flex; }
.scard {
  position: relative; border-radius: 12px; overflow: hidden;
  aspect-ratio: 3/4; cursor: pointer;
  flex: 0 0 calc((100% - 32px) / 3);
  min-width: 220px;
  scroll-snap-align: start;
}
.scard__img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.scard:hover .scard__img { transform: scale(1.06); }
.scard__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.04) 0%, rgba(0,0,0,0.15) 40%, rgba(0,0,0,0.72) 100%);
  transition: background var(--transition);
}
.scard:hover .scard__overlay {
  background: linear-gradient(to bottom, rgba(0,0,0,0.04) 0%, rgba(0,0,0,0.2) 40%, rgba(0,0,0,0.82) 100%);
}
.scard__body {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 24px 20px 20px; display: flex; flex-direction: column; gap: 8px;
}
.scard__tag {
  font-family: var(--font-sans); font-size: 10px; font-weight: 600;
  letter-spacing: 0.2em; color: var(--gold); text-transform: uppercase;
}
.scard__title {
  font-family: var(--font-serif); font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 600; color: var(--white); line-height: 1.2;
}
.scard__link {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border: 1px solid rgba(172,131,93,0.6); border-radius: 50%;
  color: var(--gold); text-decoration: none; margin-top: 4px;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.scard__link svg { width: 14px; height: 14px; }
.scard:hover .scard__link {
  background: var(--gold); border-color: var(--gold); color: var(--dark); transform: scale(1.1);
}

/* ── Responsive: About & Services ──────────────────────────── */
@media (max-width: 1024px) {
  .about__inner, .services__inner { gap: 40px; }
  .about__text { flex: 0 0 480px; max-width: 480px; }
}
@media (max-width: 768px) {
  .about { padding: 72px 24px 0; }
  .about__inner { flex-direction: column; }
  .about__text { flex: none; max-width: 100%; }
  .about__image { height: 380px; }
  .services { padding: 0 24px 72px; }
  .services__inner { flex-direction: column; align-items: flex-start; }
  .services__text { flex: none; }
  .services__cards-wrap { width: 100%; }
  .services__cards .scard { flex: 0 0 72vw; }
  .services__nav { display: none !important; }
}

/* Social icons in footer */
.site-footer__social {
  display: flex; align-items: center; gap: 14px;
}
.social-icon {
  display: inline-flex; width: 34px; height: 34px;
  align-items: center; justify-content: center;
  color: rgba(255,255,255,0.45);
  transition: color var(--transition), transform 0.2s;
}
.social-icon svg { width: 16px; height: 16px; }
.social-icon:hover { color: var(--gold); transform: translateY(-2px); }

/* ── Post Cards ────────────────────────────────────────────── */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-block: 56px;
}
.post-card {
  background: var(--white);
  border-radius: 2px; overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
}
.post-card:hover { transform: translateY(-6px); box-shadow: 0 14px 36px rgba(0,0,0,0.12); }
.post-card__img-wrap { aspect-ratio: 16/9; overflow: hidden; }
.post-card__img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.post-card:hover .post-card__img-wrap img { transform: scale(1.06); }
.post-card__body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.post-card__cat {
  font-family: var(--font-sans); font-size: 10px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold);
  display: block; margin-bottom: 10px;
}
.post-card__title {
  font-family: var(--font-serif); font-size: 1.1rem; font-weight: 600;
  color: var(--dark); line-height: 1.38; margin-bottom: 14px;
}
.post-card__title a { color: inherit; text-decoration: none; }
.post-card__title a:hover { color: var(--gold); }
.post-card__excerpt { font-size: 0.875rem; line-height: 1.72; color: #666; flex: 1; margin: 0; }
.post-card__foot {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 20px; padding-top: 16px;
  border-top: 1px solid rgba(0,0,0,0.07);
}
.post-card__date { font-size: 11px; color: #aaa; letter-spacing: 0.04em; }
.post-card__link {
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold); display: inline-flex; align-items: center; gap: 6px; transition: gap 0.22s;
}
.post-card__link svg { width: 13px; height: 13px; }
.post-card:hover .post-card__link { gap: 10px; }

/* ── Archive Hero ──────────────────────────────────────────── */
.archive-hero {
  position: relative; min-height: 380px;
  display: flex; align-items: flex-end;
  background: var(--dark); overflow: hidden;
  padding: 88px 60px 64px;
}
.archive-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(172,131,93,0.08) 0%, transparent 60%);
}
.archive-hero__title {
  font-family: var(--font-serif); font-size: clamp(2rem,4vw,3rem);
  font-weight: 600; color: #fff; position: relative; z-index: 2;
  margin-bottom: 12px;
}
.archive-hero__desc {
  font-size: 1rem; color: rgba(255,255,255,0.55); position: relative; z-index: 2;
}
.archive-content { padding: 72px 0 96px; background: var(--cream); }

/* ── Single Post Hero ──────────────────────────────────────── */
.post-hero {
  position: relative; min-height: 540px;
  display: flex; align-items: flex-end;
  background-size: cover; background-position: center 35%;
  overflow: hidden;
}
.post-hero::before {
  content: ''; position: absolute; inset: 0;
  transform: scale(1.04); background-size: cover;
  background-position: inherit; background-image: inherit;
  transition: transform 9s ease;
}
.post-hero:hover::before { transform: scale(1); }
.post-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(10,10,10,.85) 0%, rgba(10,10,10,.55) 55%, rgba(10,10,10,.28) 100%);
}
.post-hero__content { position: relative; z-index: 2; width: 100%; padding: 88px 60px 72px; }
.post-cat {
  font-family: var(--font-sans); font-size: 11px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 16px;
}
.post-hero__title {
  font-family: var(--font-serif); font-size: clamp(1.8rem,3.2vw,2.8rem);
  font-weight: 600; color: #fff; line-height: 1.22;
  margin-bottom: 18px; max-width: 780px;
}
.post-hero__meta { font-size: 13px; color: rgba(255,255,255,0.5); letter-spacing: 0.04em; }

/* ── Post Article ──────────────────────────────────────────── */
.post-article { background: var(--white); padding: 88px 0; }
.post-back {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-sans); font-size: 12px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 48px; transition: gap 0.22s;
}
.post-back:hover { gap: 12px; }
.post-back svg { width: 15px; height: 15px; }
.entry-content p {
  font-family: var(--font-sans); font-size: 1rem; line-height: 1.9;
  color: #3c3c3c; margin-bottom: 28px;
}
.entry-content p:first-of-type { font-size: 1.07rem; color: #222; }
.entry-content h2, .entry-content h3 {
  font-family: var(--font-serif); color: var(--dark);
  margin: 40px 0 20px;
}
.entry-content a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.entry-content ul, .entry-content ol {
  padding-left: 24px; margin-bottom: 24px; list-style: initial;
}
.entry-content li { margin-bottom: 8px; line-height: 1.7; color: #3c3c3c; }
.entry-content blockquote {
  border-left: 3px solid var(--gold); padding-left: 24px;
  margin: 32px 0; font-style: italic; color: #555;
}

/* ── Post CTA ──────────────────────────────────────────────── */
.post-cta { background: var(--cream); padding: 72px 60px; }
.post-cta__inner {
  max-width: var(--container-n); margin-inline: auto;
  display: flex; gap: 48px; align-items: center;
}
.post-cta__line { width: 3px; min-height: 100px; background: var(--gold); flex-shrink: 0; }
.post-cta__label {
  font-family: var(--font-sans); font-size: 10px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold);
  display: block; margin-bottom: 12px;
}
.post-cta__heading {
  font-family: var(--font-serif); font-size: 1.35rem; font-weight: 600;
  color: var(--dark); line-height: 1.4; margin-bottom: 20px;
}
.post-cta__heading em { font-style: italic; color: var(--gold); }
.post-cta__actions { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.post-cta__more {
  font-family: var(--font-sans); font-size: 12px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--dark);
  display: inline-flex; align-items: center; gap: 6px; transition: color 0.2s, gap 0.2s;
}
.post-cta__more:hover { color: var(--gold); gap: 10px; }
.post-cta__more svg { width: 14px; height: 14px; }

/* ── 404 ───────────────────────────────────────────────────── */
.error-404 { padding: 120px 0; }
.error-404__inner { text-align: center; max-width: 560px; margin-inline: auto; }
.error-404__code {
  font-family: var(--font-serif); font-size: 10rem; font-weight: 700;
  color: rgba(172,131,93,0.12); line-height: 1; display: block; margin-bottom: 0;
}
.error-404__title {
  font-family: var(--font-serif); font-size: 2rem;
  color: var(--dark); margin-bottom: 20px; margin-top: -40px;
}
.error-404__desc { color: var(--grey); margin-bottom: 36px; }
.error-404__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── No Results ────────────────────────────────────────────── */
.no-results { text-align: center; padding: 80px 0; }
.no-results h2 { margin-bottom: 16px; }

/* ── Post Navigation ───────────────────────────────────────── */
.post-navigation {
  display: flex; justify-content: space-between; gap: 32px;
  padding-top: 48px; border-top: 1px solid rgba(172,131,93,0.15);
  margin-top: 48px;
}
.nav-direction {
  display: block; font-family: var(--font-sans); font-size: 10px;
  font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 6px;
}
.nav-title {
  font-family: var(--font-serif); font-size: 1rem;
  font-weight: 600; color: var(--dark); display: block;
  transition: color 0.22s;
}
.nav-links a:hover .nav-title { color: var(--gold); }

/* ── Site Footer ───────────────────────────────────────────── */
.site-footer {
  background: var(--dark);
  padding: 56px 60px 36px;
  overflow-x: hidden;
  width: 100%;
}
.site-footer__inner {
  max-width: 1440px; margin-inline: auto;
  display: flex; flex-direction: column; align-items: center; gap: 32px;
  text-align: center;
}
.site-footer__brand { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.site-footer__brand .custom-logo-link { display: flex; align-items: center; }
.site-footer__brand .custom-logo-link img,
.site-footer__brand .custom-logo {
  height: 56px; width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.85;
  display: block;
}
.site-footer__logo-text {
  font-family: var(--font-serif); font-size: 1.1rem;
  font-weight: 700; color: #fff; letter-spacing: 0.05em;
}
.site-footer__tagline {
  font-size: 13px; color: rgba(255,255,255,0.45); letter-spacing: 0.04em;
}
.footer-nav-menu {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 32px; list-style: none;
}
.footer-nav-menu a {
  font-family: var(--font-sans); font-size: 12px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.5); transition: color 0.2s;
}
.footer-nav-menu a:hover { color: var(--gold); }
.site-footer__policy {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap; justify-content: center;
  border-top: 1px solid rgba(255,255,255,0.06); padding-top: 20px; width: 100%;
}
.site-footer__policy a {
  font-family: var(--font-sans); font-size: 11px; color: rgba(255,255,255,0.32); transition: color 0.2s;
}
.site-footer__policy a:hover { color: var(--gold); }
.site-footer__policy span { color: rgba(255,255,255,0.15); font-size: 11px; }
.site-footer__copy {
  font-size: 11px; color: rgba(255,255,255,0.18); letter-spacing: 0.02em;
  width: 100%; text-align: center; padding-top: 12px;
}

/* ── Floating Action Buttons ───────────────────────────────── */
.fab {
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.fab:hover { transform: scale(1.1); box-shadow: 0 8px 24px rgba(0,0,0,0.3); }
.fab svg { width: 22px; height: 22px; flex-shrink: 0; }
.fab--call { background: var(--dark); color: var(--gold); }
.fab--whatsapp { background: #25D366; color: #fff; }
.fab--whatsapp svg { width: 24px; height: 24px; }

/* ── Page Header (breadcrumb + title for non-Elementor pages) ─ */
.page-header {
  background: var(--dark); padding: 100px 60px 60px;
}
.page-title {
  font-family: var(--font-serif); font-size: clamp(2rem,4vw,3rem);
  font-weight: 700; color: #fff; margin-top: 20px;
}

/* ── Elementor overrides ───────────────────────────────────── */
.elementor-full-width { overflow: hidden; }
body.elementor-page .site-header { background: transparent; }

/* ── Global overflow containment ──────────────────────────────
   Elementor's JS stretch sets left:-Xpx; width:100vw on sections.
   Override to keep everything inside the viewport on all devices. */
.elementor,
.elementor-section-wrap,
.elementor-inner,
.e-con-full,
.entry-content {
  overflow-x: hidden;
  max-width: 100%;
}

/* Neutralise the JS-applied negative left + 100vw width */
.elementor-section.elementor-section-stretched,
.elementor-section-boxed.elementor-section-stretched {
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
}

/* Fix .alignfull — 100vw + negative margin causes overflow */
.alignfull {
  width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* Hero page: header transparent over video */
.home .site-header { background: transparent; }
.home .site-header.scrolled { background: rgba(17,17,17,0.97); }

/* Strip all Elementor wrapper padding around the hero widget */
.elementor-widget-gur_law_hero > .elementor-widget-container { padding: 0 !important; }
.elementor-section:has(.elementor-widget-gur_law_hero) { padding: 0 !important; margin: 0 !important; }
.elementor-section:has(.elementor-widget-gur_law_hero) .elementor-container {
  max-width: 100% !important; width: 100% !important; padding: 0 !important;
}
.elementor-section:has(.elementor-widget-gur_law_hero) .elementor-row,
.elementor-section:has(.elementor-widget-gur_law_hero) .elementor-column,
.elementor-section:has(.elementor-widget-gur_law_hero) .elementor-column-wrap,
.elementor-section:has(.elementor-widget-gur_law_hero) .elementor-widget-wrap {
  padding: 0 !important; width: 100% !important;
}
/* Also handle Elementor 3.x .e-con (container) structure */
.e-con:has(.elementor-widget-gur_law_hero),
.e-con-inner:has(.elementor-widget-gur_law_hero) {
  padding: 0 !important; max-width: 100% !important; width: 100% !important;
}
/* Make the hero section itself break out of any residual max-width constraint */
.hero.elementor-hero { width: 100%; left: 0; right: 0; }

/* ── WordPress Core Classes ────────────────────────────────── */
.alignwide  { max-width: calc(var(--container) + 200px); margin-inline: auto; }
.alignfull  { width: 100vw; margin-left: calc(-50vw + 50%); }
.wp-block-image img { border-radius: 2px; }
.wp-caption { font-size: 0.8rem; color: var(--grey-light); margin-top: 8px; }

/* ── Pagination ────────────────────────────────────────────── */
.posts-navigation, .post-navigation, .posts-pagination {
  padding: 40px 0; display: flex; justify-content: center; gap: 8px;
}
.nav-links { display: flex; gap: 8px; align-items: center; }
.page-numbers {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 2px;
  font-family: var(--font-sans); font-size: 13px; font-weight: 500;
  color: var(--dark); border: 1px solid rgba(0,0,0,0.1); transition: all 0.22s;
}
.page-numbers:hover, .page-numbers.current {
  background: var(--gold); color: #fff; border-color: var(--gold);
}

/* ── Partners Marquee ───────────────────────────────────────── */
.partners { background: var(--white); padding: 44px 0; border-top: 1px solid rgba(172,131,93,0.15); border-bottom: 1px solid rgba(172,131,93,0.15); overflow: hidden; }
.partners__track-wrap { mask-image: linear-gradient(to right,transparent 0%,black 10%,black 90%,transparent 100%); -webkit-mask-image: linear-gradient(to right,transparent 0%,black 10%,black 90%,transparent 100%); }
.partners__track { display: flex; align-items: center; gap: 96px; width: max-content; animation: marqueeSlide 22s linear infinite; }
.partners__track:hover { animation-play-state: paused; }
.partners__logo { display: flex; align-items: center; flex-shrink: 0; }
.partners__logo img { height: 52px !important; max-height: 52px !important; width: auto !important; max-width: none; object-fit: contain; filter: grayscale(100%) opacity(0.45); transition: filter 0.4s ease; }
.partners__logo:hover img { filter: grayscale(0%) opacity(1); }
@keyframes marqueeSlide { 0%{transform:translateX(0)} 100%{transform:translateX(-33.333%)} }

/* Strip Elementor wrappers for partners/clients/team/contact */
.elementor-widget-gur_law_partners > .elementor-widget-container,
.elementor-widget-gur_law_clients  > .elementor-widget-container,
.elementor-widget-gur_law_team     > .elementor-widget-container,
.elementor-widget-gur_law_contact  > .elementor-widget-container { padding: 0 !important; }
.elementor-section:has(.elementor-widget-gur_law_partners) .elementor-container,
.elementor-section:has(.elementor-widget-gur_law_clients)  .elementor-container,
.elementor-section:has(.elementor-widget-gur_law_team)     .elementor-container,
.elementor-section:has(.elementor-widget-gur_law_contact)  .elementor-container { max-width:100% !important; width:100% !important; padding:0 !important; }
.elementor-section:has(.elementor-widget-gur_law_partners),
.elementor-section:has(.elementor-widget-gur_law_clients),
.elementor-section:has(.elementor-widget-gur_law_team),
.elementor-section:has(.elementor-widget-gur_law_contact) { padding: 0 !important; }
.elementor-section:has(.elementor-widget-gur_law_partners) .elementor-column,
.elementor-section:has(.elementor-widget-gur_law_partners) .elementor-column-wrap,
.elementor-section:has(.elementor-widget-gur_law_partners) .elementor-widget-wrap,
.elementor-section:has(.elementor-widget-gur_law_clients)  .elementor-column,
.elementor-section:has(.elementor-widget-gur_law_clients)  .elementor-column-wrap,
.elementor-section:has(.elementor-widget-gur_law_clients)  .elementor-widget-wrap,
.elementor-section:has(.elementor-widget-gur_law_team)     .elementor-column,
.elementor-section:has(.elementor-widget-gur_law_team)     .elementor-column-wrap,
.elementor-section:has(.elementor-widget-gur_law_team)     .elementor-widget-wrap,
.elementor-section:has(.elementor-widget-gur_law_contact)  .elementor-column,
.elementor-section:has(.elementor-widget-gur_law_contact)  .elementor-column-wrap,
.elementor-section:has(.elementor-widget-gur_law_contact)  .elementor-widget-wrap { padding: 0 !important; width: 100% !important; }

/* ── Clients / Testimonials ─────────────────────────────────── */
.clients { background: #F0EDE8; padding: 96px 60px; overflow: hidden; }
.clients__inner { max-width: 1440px; margin: 0 auto; }
.clients__heading { font-family: var(--font-serif); font-size: clamp(28px,3vw,44px); font-weight: 600; color: var(--dark); text-align: center; margin-bottom: 56px; line-height: 1.15; }
.clients__heading em { font-style: italic; color: var(--gold); }
.clients__layout { display: flex; gap: 32px; align-items: stretch; margin-bottom: 32px; }
.clients__google-fixed { flex-shrink: 0; width: 280px; }
.clients__reviews-area { flex: 1; min-width: 0; display: flex; align-items: stretch; gap: 0; }
.clients__carousel { display: flex; gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; -ms-overflow-style: none; scrollbar-width: none; flex: 1; min-width: 0; padding: 8px 4px 16px; cursor: grab; align-items: stretch; }
.clients__carousel .ccard { height: 100%; box-sizing: border-box; }
.clients__carousel:active { cursor: grabbing; user-select: none; }
.clients__carousel::-webkit-scrollbar { display: none; }
.clients__carousel .ccard { scroll-snap-align: start; flex: 0 0 calc(50% - 12px); min-width: 260px; }
.clients__nav { flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%; background: var(--white); border: 1px solid rgba(172,131,93,0.3); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.22s, border-color 0.22s; z-index: 2; padding: 0; }
.clients__nav:hover { background: var(--gold); border-color: var(--gold); }
.clients__nav:hover svg { stroke: #fff; }
.clients__nav svg { width: 18px; height: 18px; stroke: var(--dark); transition: stroke 0.22s; }
.clients__nav--prev { margin-right: 12px; }
.clients__nav--next { margin-left: 12px; }
.clients__dots { display: flex; justify-content: center; gap: 8px; margin-bottom: 40px; }
.clients__dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(172,131,93,0.25); border: none; cursor: pointer; padding: 0; transition: background 0.22s, transform 0.22s; }
.clients__dot--active { background: var(--gold); transform: scale(1.3); }
.ccard { background: var(--white); border-radius: 16px; padding: 28px 28px; display: flex; flex-direction: column; box-shadow: 0 2px 16px rgba(0,0,0,0.05); }
.ccard--google .gmaps-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.ccard--google .gmaps-logo svg { width: 32px; height: 32px; flex-shrink: 0; }
.ccard--google .gmaps-logo span { font-size: 18px; font-weight: 500; color: #202124; letter-spacing: -0.01em; }
.ccard--google .gmaps-tagline { font-size: 13px; color: var(--grey-light); margin-bottom: 20px; }
.ccard--google .gmaps-divider { height: 1px; background: #E8E8E8; margin-bottom: 20px; }
.ccard--google .rating-row { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.ccard--google .rating-score { font-family: var(--font-serif); font-size: 52px; font-weight: 700; color: var(--dark); line-height: 1; }
.ccard--google .rating-stars { display: flex; flex-direction: column; gap: 4px; }
.ccard--google .stars { color: #F9AB00; font-size: 20px; letter-spacing: 2px; }
.ccard--google .review-count { font-size: 13px; color: #1A73E8; font-weight: 500; }
.ccard--google .badges { display: flex; justify-content: space-between; gap: 8px; padding-top: 20px; border-top: 1px solid #E8E8E8; margin-top: auto; }
.ccard--google .badge { display: flex; flex-direction: column; align-items: center; gap: 8px; flex: 1; text-align: center; }
.ccard--google .badge svg { width: 28px; height: 28px; color: #1A73E8; }
.ccard--google .badge-label { font-size: 11px; color: var(--grey); font-weight: 500; line-height: 1.3; }
a.ccard--google { text-decoration: none; color: inherit; transition: box-shadow 0.2s, transform 0.2s; }
a.ccard--google:hover { box-shadow: 0 6px 28px rgba(0,0,0,0.10); transform: translateY(-2px); }
.ccard--review { justify-content: flex-start; gap: 0; color: var(--dark); }
.ccard--review .rev-stars { color: var(--gold); font-size: 16px; letter-spacing: 3px; margin-bottom: 14px; }
.ccard--review .rev-text { font-size: 13px; line-height: 1.65; color: #5A5A5A; flex: 1; margin-bottom: 20px; }
.ccard--review .rev-author { font-family: var(--font-serif); font-size: 14px; font-weight: 600; color: var(--dark); letter-spacing: 0.02em; }
.clients__tagline { text-align: center; font-size: 15px; font-style: italic; color: var(--grey); padding-top: 40px; border-top: 1px solid rgba(172,131,93,0.2); }
.clients__tagline strong { font-weight: 700; color: var(--dark); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: rgba(172,131,93,0.5); font-style: normal; }

/* ── Team Section ───────────────────────────────────────────── */
.team { background: var(--white); padding: 96px 60px; overflow: hidden; }
.team__inner { max-width: 1440px; margin: 0 auto; }
.team__header { text-align: center; margin-bottom: 60px; }
.team__eyebrow { font-size: 11px; font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.team__heading { font-family: var(--font-serif); font-size: clamp(32px,3.5vw,48px); font-weight: 600; color: var(--dark); line-height: 1.1; }
.team__heading em { font-style: italic; color: var(--gold); }
.team__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 28px; }
.tcard { display: flex; flex-direction: column; align-items: center; text-align: center; }
.tcard__photo-wrap { width: 100%; border-radius: 12px; overflow: hidden; margin-bottom: 22px; position: relative; aspect-ratio: 3/4; }
.tcard__photo { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94); }
.tcard:hover .tcard__photo { transform: scale(1.04); }
.tcard__photo-wrap::after { content:''; position: absolute; inset: 0; background: linear-gradient(to bottom,transparent 55%,rgba(0,0,0,0.3) 100%); pointer-events: none; }
.tcard__name { font-family: var(--font-sans); font-size: 14px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--dark); margin-bottom: 8px; line-height: 1.3; }
.tcard__title { font-size: 13px; color: var(--grey-light); line-height: 1.5; margin-bottom: 14px; max-width: 200px; }
.tcard__link { font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); text-decoration: none; border-bottom: 1px solid rgba(172,131,93,0.4); padding-bottom: 2px; transition: color var(--transition), border-color var(--transition); }
.tcard__link:hover { color: var(--gold-dark); border-color: var(--gold-dark); }

/* ── Contact Section ────────────────────────────────────────── */
.contact { background: #F0EDE8; padding: 96px 60px; position: relative; overflow: hidden; }
.contact__inner { max-width: 1440px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: center; }
.contact__heading { font-family: var(--font-serif); font-size: clamp(32px,3.5vw,52px); font-weight: 600; color: var(--dark); line-height: 1.1; margin-bottom: 20px; }
.contact__heading em { font-style: italic; color: var(--gold); }
.contact__desc { font-size: 15px; line-height: 1.8; color: var(--grey); margin-bottom: 36px; max-width: 440px; }
.contact__list { list-style: none; display: flex; flex-direction: column; gap: 18px; }
.contact__list li { display: flex; align-items: center; gap: 16px; font-size: 15px; color: var(--dark); }
.contact__list a { color: inherit; }
.contact__icon { width: 44px; height: 44px; background: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact__icon svg { width: 18px; height: 18px; color: var(--white); }
.contact__form-wrap { background: var(--white); border-radius: 20px; padding: 48px 44px; box-shadow: 0 4px 40px rgba(0,0,0,0.07); position: relative; overflow: hidden; }
.contact__form-wrap::before { content:''; position: absolute; top: 0; left: 44px; right: 44px; height: 3px; background: linear-gradient(to right,var(--gold-dark),var(--gold-light)); border-radius: 0 0 4px 4px; }
.contact__form { display: flex; flex-direction: column; gap: 20px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form__group { display: flex; flex-direction: column; gap: 8px; }
.form__label { font-size: 13px; font-weight: 600; color: var(--dark); letter-spacing: 0.02em; }
.form__input,.form__textarea { font-family: var(--font-sans); font-size: 14px; color: var(--dark); background: #FAFAFA; border: 1.5px solid #E8E4E0; border-radius: 10px; padding: 14px 18px; width: 100%; outline: none; transition: border-color var(--transition), box-shadow var(--transition); }
.form__input::placeholder,.form__textarea::placeholder { color: #B0A89E; }
.form__input:focus,.form__textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(172,131,93,0.12); }
.form__textarea { resize: vertical; min-height: 130px; }
.form__footer { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.btn-send { font-family: var(--font-sans); font-size: 14px; font-weight: 600; letter-spacing: 0.08em; color: var(--white); background: var(--gold); border: none; padding: 16px 44px; cursor: pointer; border-radius: 6px; transition: background var(--transition), transform var(--transition), box-shadow var(--transition); }
.btn-send:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(172,131,93,0.3); }
.form__privacy { font-size: 12px; color: var(--grey-light); }
.form__notice { margin-top: 12px; padding: 12px 16px; border-radius: 8px; font-size: 14px; }
.form__notice--success { background: #dcfce7; color: #166534; }
.form__notice--error   { background: #fee2e2; color: #991b1b; }

/* ── Floating Action Buttons ────────────────────────────────── */
.fab-wrap { position: fixed; bottom: 32px; left: 28px; display: flex; flex-direction: column; gap: 12px; z-index: 500; }
.fab { width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; text-decoration: none; box-shadow: 0 4px 16px rgba(0,0,0,0.2); transition: transform var(--transition), box-shadow var(--transition); }
.fab:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(0,0,0,0.25); }
.fab--call { background: var(--gold); }
.fab--whatsapp { background: #25D366; }
.fab svg { width: 22px; height: 22px; color: var(--white); }

/* ── Responsive: new sections ───────────────────────────────── */
@media (max-width: 1024px) {
  .team__grid { grid-template-columns: repeat(2,1fr); }
  .clients__google-fixed { width: 220px; }
  .clients__carousel .ccard { flex: 0 0 calc(80% - 12px); }
}
@media (max-width: 768px) {
  .clients { padding: 72px 24px; }
  .clients__layout { flex-direction: column; }
  .clients__google-fixed { width: 100%; }
  .clients__reviews-area { width: 100%; }
  .clients__carousel .ccard { flex: 0 0 82vw; }
  .clients__nav { display: none; }
  .team { padding: 72px 24px; }
  .team__grid { grid-template-columns: repeat(2,1fr); gap: 20px; }
  .contact { padding: 72px 24px; }
  .contact__inner { grid-template-columns: 1fr; gap: 48px; }
  .form__row { grid-template-columns: 1fr; }
  .contact__form-wrap { padding: 32px 24px; }
  .partners__track { gap: 56px; }
}

/* ── Keyframe Animations ────────────────────────────────────── */
@keyframes gur-fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes gur-fadeIn {
  to { opacity: 1; }
}
@keyframes gur-scaleIn {
  to { opacity: 1; transform: scaleX(1); }
}
@keyframes gur-scrollDot {
  0%   { transform: translateY(0);    opacity: 1; }
  60%  { transform: translateY(18px); opacity: 0.3; }
  61%  { transform: translateY(0);    opacity: 0; }
  100% { transform: translateY(0);    opacity: 1; }
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .container, .container--narrow { padding-inline: 40px; }
  .site-header__inner { padding-inline: 40px; }
  .hero__content { padding-left: 80px; }
  .hero__accent-line { left: 36px; }
}

@media (max-width: 768px) {
  :root { --header-h: 80px; }
  .site-header { height: 80px; }
  .site-header__nav { display: none; }
  .site-header__toggle { display: flex; }
  .site-header__inner { padding-inline: 24px; }
  .site-header__logo .custom-logo-link img,
  .site-header__logo .custom-logo { height: 60px; }
  .site-header.scrolled .site-header__logo .custom-logo-link img,
  .site-header.scrolled .site-header__logo .custom-logo { height: 50px; }
  .container, .container--narrow { padding-inline: 24px; }
  .posts-grid { grid-template-columns: 1fr; }
  .post-hero__content { padding: 60px 24px 48px; }
  .post-article { padding: 56px 0; }
  .post-cta { padding: 48px 24px; }
  .post-cta__inner { flex-direction: column; gap: 24px; }
  .post-cta__line { width: 48px; height: 3px; min-height: unset; }
  .site-footer { padding: 48px 24px 24px; }
  .page-header { padding: 96px 24px 48px; }
  .archive-hero { padding: 96px 24px 48px; min-height: 260px; }
  /* Hero mobile */
  .hero__video--desktop { display: none; }
  .hero__video--mobile  { display: block; }
  .hero__content        { padding: 0 28px; }
  .hero__accent-line    { display: none; }
  .hero__corner         { display: none; }
  .hero__actions        { flex-direction: column; align-items: flex-start; gap: 20px; }
  .hero__heading        { font-size: clamp(36px, 8vw, 56px); }
}

@media (max-width: 480px) {
  :root { --header-h: 72px; }
  .site-header { height: 72px; }
  .site-header__logo .custom-logo-link img,
  .site-header__logo .custom-logo { height: 52px; }
  .site-header.scrolled { height: 64px; }
  .error-404__code { font-size: 7rem; }
  .error-404 { padding: 80px 0; }
  .hero__content { padding: 0 20px; }
  .hero__heading { font-size: clamp(32px, 9vw, 48px); }
}

/* ═══════════════════════════════════════════════════════════════
   ABOUT PAGE
   ═══════════════════════════════════════════════════════════════ */
.ap-label { font-family: var(--font-sans); font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin: 0 0 14px; }
.ap-heading { font-family: var(--font-serif); font-size: clamp(1.75rem,3vw,2.5rem); font-weight: 600; color: var(--dark); line-height: 1.22; margin: 0 0 20px; }
.ap-heading em { font-style: italic; color: var(--gold); }
.ap-heading--light { color: var(--white); }
.ap-heading--light em { color: var(--gold); }
.ap-body { font-family: var(--font-sans); font-size: 1rem; font-weight: 400; line-height: 1.78; color: #444; margin: 0 0 18px; }
.ap-body:last-of-type { margin-bottom: 0; }
.ap-body--light { color: rgba(255,255,255,0.82); }
.ap-body--center { text-align: center; }

/* Hero */
.ap-hero { position: relative; min-height: 560px; display: flex; align-items: flex-end; overflow: hidden; }
.ap-hero__img { position: absolute; inset: 0; background-size: cover; background-position: center 30%; transform: scale(1.03); transition: transform 8s ease; }
.ap-hero:hover .ap-hero__img { transform: scale(1); }
.ap-hero__overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(10,10,10,0.78) 0%, rgba(10,10,10,0.52) 60%, rgba(10,10,10,0.28) 100%); }
.ap-hero__content { position: relative; z-index: 2; width: 100%; padding: 88px 80px 72px; }
.ap-hero__inner { max-width: var(--container); margin: 0 auto; }
.ap-breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 28px; font-family: var(--font-sans); font-size: 12px; letter-spacing: 0.06em; color: rgba(255,255,255,0.55); }
.ap-breadcrumb a { color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.2s; }
.ap-breadcrumb a:hover { color: var(--gold); }
.ap-breadcrumb span[aria-current] { color: var(--gold); }
.ap-hero__eyebrow { font-family: var(--font-sans); font-size: 11px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin: 0 0 16px; }
.ap-hero__heading { font-family: var(--font-serif); font-size: clamp(2rem,4vw,3.2rem); font-weight: 600; color: var(--white); line-height: 1.18; margin: 0 0 20px; max-width: 640px; }
.ap-hero__heading em { font-style: italic; color: var(--gold); }
.ap-hero__sub { font-family: var(--font-sans); font-size: 1rem; font-weight: 300; color: rgba(255,255,255,0.7); letter-spacing: 0.06em; margin: 0; }

/* Intro */
.ap-intro { padding: 96px 80px; background: var(--white); overflow: hidden; width: 100%; }
.ap-intro__inner { max-width: var(--container); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.ap-intro__stats { display: flex; gap: 40px; margin-top: 40px; padding-top: 36px; border-top: 1px solid rgba(172,131,93,0.2); }
.ap-stat__num { display: block; font-family: var(--font-serif); font-size: 2.4rem; font-weight: 600; color: var(--gold); line-height: 1; margin-bottom: 6px; }
.ap-stat__txt { font-family: var(--font-sans); font-size: 12px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: #888; }
.ap-intro__image { position: relative; border-radius: 2px; overflow: hidden; }
.ap-intro__image img { width: 100%; height: 480px; object-fit: cover; object-position: center top; display: block; }
.ap-intro__badge { position: absolute; bottom: 24px; left: 24px; background: rgba(10,10,10,0.72); backdrop-filter: blur(8px); border: 1px solid rgba(172,131,93,0.3); border-radius: 2px; padding: 12px 16px; display: flex; align-items: center; gap: 10px; font-family: var(--font-sans); font-size: 13px; font-weight: 500; color: var(--white); }

/* Mission */
.ap-mission { padding: 96px 80px; background: var(--cream); overflow: hidden; width: 100%; }
.ap-mission__inner { max-width: var(--container); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.ap-mission__image { border-radius: 2px; overflow: hidden; }
.ap-mission__image img { width: 100%; height: 460px; object-fit: cover; display: block; }
.ap-mission__line { width: 48px; height: 2px; background: var(--gold); margin: 28px 0 22px; }
.ap-mission__quote { font-family: var(--font-serif); font-style: italic; font-size: 1.12rem; color: var(--dark); line-height: 1.55; margin: 0; }

/* Values */
.ap-values { padding: 96px 80px; background: #1A1A1A; overflow: hidden; width: 100%; }
.ap-values__inner { max-width: var(--container); margin: 0 auto; }
.ap-values__header { text-align: center; margin-bottom: 64px; }
.ap-values__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 32px; }
.ap-value { background: rgba(255,255,255,0.04); border: 1px solid rgba(172,131,93,0.18); border-radius: 2px; padding: 36px 28px; transition: border-color 0.3s, transform 0.3s; }
.ap-value:hover { border-color: rgba(172,131,93,0.45); transform: translateY(-4px); }
.ap-value__icon { width: 48px; height: 48px; margin-bottom: 22px; color: var(--gold); }
.ap-value__icon svg { width: 100%; height: 100%; }
.ap-value h3 { font-family: var(--font-serif); font-size: 1.15rem; font-weight: 600; color: var(--white); margin: 0 0 12px; }
.ap-value p { font-family: var(--font-sans); font-size: 0.9rem; line-height: 1.72; color: rgba(255,255,255,0.62); margin: 0; }

/* Toronto */
.ap-toronto { display: grid; grid-template-columns: 1fr 1fr; min-height: 560px; overflow: hidden; width: 100%; }
.ap-toronto__img-wrap { position: relative; overflow: hidden; }
.ap-toronto__img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ap-toronto__overlay { position: absolute; inset: 0; background: rgba(10,10,10,0.22); }
.ap-toronto__text { background: var(--dark); display: flex; align-items: center; padding: 72px 72px 72px 80px; }
.ap-toronto__text-inner { max-width: 480px; }
.ap-toronto__detail { display: flex; align-items: flex-start; gap: 12px; margin-top: 28px; font-family: var(--font-sans); font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.5; }

/* Team section (about page) */
.ap-team { padding: 96px 80px; background: var(--white); overflow: hidden; width: 100%; }
.ap-team__inner { max-width: var(--container); margin: 0 auto; }
.ap-team__header { text-align: center; max-width: 600px; margin: 0 auto 56px; }
.ap-team__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.ap-tcard { display: block; text-decoration: none; background: #1A1A1A; border-radius: 2px; overflow: hidden; transition: transform 0.3s; }
.ap-tcard:hover { transform: translateY(-6px); }
.ap-tcard__img { width: 100%; aspect-ratio: 3/4; overflow: hidden; }
.ap-tcard__img img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; filter: grayscale(0.3); transition: filter 0.4s, transform 0.5s; }
.ap-tcard:hover .ap-tcard__img img { filter: grayscale(0); transform: scale(1.04); }
.ap-tcard__body { padding: 20px 20px 24px; }
.ap-tcard__area { font-family: var(--font-sans); font-size: 10px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin: 0 0 6px; }
.ap-tcard__name { font-family: var(--font-serif); font-size: 1.1rem; font-weight: 600; color: var(--white); margin: 0 0 6px; }
.ap-tcard__role { font-family: var(--font-sans); font-size: 12px; color: rgba(255,255,255,0.5); margin: 0 0 14px; line-height: 1.5; }
.ap-tcard__link { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-sans); font-size: 12px; font-weight: 500; letter-spacing: 0.06em; color: var(--gold); transition: gap 0.2s; }
.ap-tcard:hover .ap-tcard__link { gap: 10px; }
.ap-team__footer { text-align: center; margin-top: 48px; }
.btn-dark { display: inline-block; padding: 14px 36px; background: #1A1A1A; color: var(--white); font-family: var(--font-sans); font-size: 13px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none; border: 1px solid rgba(172,131,93,0.3); border-radius: 2px; transition: background 0.25s, border-color 0.25s; }
.btn-dark:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }

/* CTA */
.ap-cta { background: var(--gold); padding: 80px; overflow: hidden; width: 100%; }
.ap-cta__inner { max-width: var(--container); margin: 0 auto; text-align: center; }
.ap-cta__inner h2 { font-family: var(--font-serif); font-size: clamp(1.8rem,3vw,2.6rem); font-weight: 600; color: var(--white); margin: 0 0 16px; }
.ap-cta__inner h2 em { font-style: italic; }
.ap-cta__inner p { font-family: var(--font-sans); font-size: 1rem; color: rgba(255,255,255,0.85); margin: 0 0 36px; }
.ap-cta__actions { display: flex; justify-content: center; align-items: center; gap: 24px; flex-wrap: wrap; }
.ap-cta__actions .btn-primary { background: var(--white); color: var(--gold); border-color: var(--white); }
.ap-cta__actions .btn-primary:hover { background: var(--dark); border-color: var(--dark); color: var(--white); }
.ap-cta__phone { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-sans); font-size: 15px; font-weight: 500; color: rgba(255,255,255,0.9); text-decoration: none; transition: color 0.2s; }
.ap-cta__phone:hover { color: var(--white); }

/* Elementor strip for about/contact pages */
.elementor-section:has(.elementor-widget-gur_law_about_page),
.elementor-section:has(.elementor-widget-gur_law_contact_page) { padding: 0 !important; }
.elementor-section:has(.elementor-widget-gur_law_about_page) .elementor-container,
.elementor-section:has(.elementor-widget-gur_law_contact_page) .elementor-container { max-width: 100% !important; width: 100% !important; padding: 0 !important; }
.elementor-section:has(.elementor-widget-gur_law_about_page) .elementor-column,
.elementor-section:has(.elementor-widget-gur_law_about_page) .elementor-column-wrap,
.elementor-section:has(.elementor-widget-gur_law_about_page) .elementor-widget-wrap,
.elementor-section:has(.elementor-widget-gur_law_contact_page) .elementor-column,
.elementor-section:has(.elementor-widget-gur_law_contact_page) .elementor-column-wrap,
.elementor-section:has(.elementor-widget-gur_law_contact_page) .elementor-widget-wrap { padding: 0 !important; width: 100% !important; }
.elementor-widget-gur_law_about_page > .elementor-widget-container,
.elementor-widget-gur_law_contact_page > .elementor-widget-container { padding: 0 !important; }

/* About page responsive */
@media (max-width: 1100px) {
  .ap-values__grid { grid-template-columns: repeat(2,1fr); }
  .ap-team__grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 900px) {
  .ap-hero { min-height: 480px; }
  .ap-hero__content { padding: 72px 40px 60px; }
  .ap-intro { padding: 72px 40px; }
  .ap-intro__inner { grid-template-columns: 1fr; gap: 40px; }
  .ap-intro__image img { height: 360px; }
  .ap-mission { padding: 72px 40px; }
  .ap-mission__inner { grid-template-columns: 1fr; gap: 40px; }
  .ap-mission__image img { height: 340px; }
  .ap-values { padding: 72px 40px; }
  .ap-toronto { grid-template-columns: 1fr; }
  .ap-toronto__img-wrap { height: 320px; }
  .ap-toronto__text { padding: 56px 40px; }
  .ap-toronto__text-inner { max-width: 100%; }
  .ap-team { padding: 72px 40px; }
  .ap-cta { padding: 64px 40px; }
}
@media (max-width: 600px) {
  .ap-hero__content { padding: 56px 24px 48px; }
  .ap-hero__heading { font-size: 1.8rem; }
  .ap-intro { padding: 56px 24px; }
  .ap-intro__stats { flex-direction: column; gap: 24px; }
  .ap-mission { padding: 56px 24px; }
  .ap-values { padding: 56px 24px; }
  .ap-values__grid { grid-template-columns: 1fr; }
  .ap-toronto__text { padding: 48px 24px; }
  .ap-team { padding: 56px 24px; }
  .ap-team__grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .ap-cta { padding: 56px 24px; }
  .ap-cta__actions { flex-direction: column; }
}

/* ═══════════════════════════════════════════════════════════════
   CONTACT PAGE
   ═══════════════════════════════════════════════════════════════ */
.cp-hero { position: relative; height: 360px; display: flex; align-items: center; background: var(--dark); overflow: hidden; }
.cp-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 80% 50%, rgba(172,131,93,0.1) 0%, transparent 55%); }
.cp-hero__overlay { position: absolute; inset: 0; background-image: repeating-linear-gradient(0deg, transparent, transparent 79px, rgba(172,131,93,0.04) 79px, rgba(172,131,93,0.04) 80px), repeating-linear-gradient(90deg, transparent, transparent 79px, rgba(172,131,93,0.04) 79px, rgba(172,131,93,0.04) 80px); }
.cp-hero__content { position: relative; z-index: 2; width: 100%; padding: 88px 80px 0; }
.cp-hero__inner { max-width: var(--container); margin: 0 auto; }
.cp-breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 28px; font-family: var(--font-sans); font-size: 13px; color: rgba(255,255,255,0.4); }
.cp-breadcrumb a { color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; }
.cp-breadcrumb a:hover { color: var(--gold); }
.cp-breadcrumb span[aria-current] { color: var(--gold); }
.cp-hero__eyebrow { font-family: var(--font-sans); font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.cp-hero__heading { font-family: var(--font-serif); font-size: clamp(2.6rem,5vw,4rem); font-weight: 700; color: #fff; line-height: 1.08; margin: 0 0 16px; }
.cp-hero__heading em { font-style: italic; color: var(--gold); }
.cp-hero__sub { font-family: var(--font-sans); font-size: 16px; font-weight: 300; color: rgba(255,255,255,0.55); max-width: 480px; }

.cp-main { background: var(--cream); padding: 80px 80px 100px; overflow: hidden; width: 100%; }
.cp-main__inner { max-width: var(--container); margin: 0 auto; display: grid; grid-template-columns: 1fr 1.5fr; gap: 64px; align-items: start; }

.cp-info { display: flex; flex-direction: column; gap: 36px; }
.cp-info__block { display: flex; flex-direction: column; gap: 10px; padding-bottom: 36px; border-bottom: 1px solid rgba(172,131,93,0.2); }
.cp-info__block:last-of-type { border-bottom: none; padding-bottom: 0; }
.cp-info__label { font-family: var(--font-sans); font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); }
.cp-info__value { font-family: var(--font-serif); font-size: 1.1rem; font-weight: 500; color: var(--dark); line-height: 1.6; }
.cp-info__value--link { display: inline-flex; align-items: flex-start; gap: 10px; text-decoration: none; color: var(--dark); transition: color 0.2s; }
.cp-info__value--link:hover { color: var(--gold); }
.cp-info__value--link svg { flex-shrink: 0; margin-top: 3px; color: var(--gold); }

.cp-socials { display: flex; flex-direction: column; gap: 14px; }
.cp-social { display: flex; align-items: center; gap: 14px; text-decoration: none; padding: 14px 18px; background: #fff; border: 1px solid rgba(172,131,93,0.2); border-radius: 4px; transition: border-color 0.25s, transform 0.25s; }
.cp-social:hover { border-color: var(--gold); transform: translateX(4px); }
.cp-social svg { flex-shrink: 0; color: var(--gold); }
.cp-social__platform { display: block; font-family: var(--font-sans); font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(58,58,58,0.5); line-height: 1; margin-bottom: 2px; }
.cp-social__handle { display: block; font-family: var(--font-serif); font-size: 1rem; font-weight: 500; color: var(--dark); line-height: 1; }

.cp-booking-cta { display: flex; flex-direction: column; gap: 12px; padding: 28px 24px; background: var(--dark); border-radius: 4px; }
.cp-booking-btn { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-sans); font-size: 13px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--dark); background: var(--gold); text-decoration: none; padding: 14px 22px; border-radius: 3px; transition: background 0.25s, gap 0.25s; width: 100%; justify-content: center; }
.cp-booking-btn:hover { background: var(--gold-dark); gap: 14px; }
.cp-booking-btn svg { flex-shrink: 0; }
.cp-booking-note { font-family: var(--font-sans); font-size: 12px; font-weight: 300; color: rgba(255,255,255,0.45); text-align: center; margin: 0; }

.cp-form-wrap { position: sticky; top: 108px; }
.cp-form-card { background: #fff; border: 1px solid rgba(172,131,93,0.2); border-radius: 4px; padding: 48px 44px 44px; box-shadow: 0 8px 40px rgba(0,0,0,0.07); }
.cp-form-title { font-family: var(--font-serif); font-size: 1.9rem; font-weight: 700; color: var(--dark); margin: 0 0 12px; line-height: 1.2; }
.cp-form-title em { font-style: italic; color: var(--gold); }
.cp-form-desc { font-family: var(--font-sans); font-size: 14px; font-weight: 300; line-height: 1.7; color: rgba(58,58,58,0.7); margin: 0 0 36px; }
.cp-form { display: flex; flex-direction: column; gap: 16px; }
.cp-form__group { display: flex; flex-direction: column; }
.cp-form__input, .cp-form__textarea { font-family: var(--font-sans); font-size: 15px; font-weight: 300; color: var(--dark); background: #faf9f7; border: 1px solid rgba(172,131,93,0.2); border-radius: 3px; padding: 14px 18px; outline: none; transition: border-color 0.2s, background 0.2s; width: 100%; box-sizing: border-box; }
.cp-form__input::placeholder, .cp-form__textarea::placeholder { color: rgba(58,58,58,0.4); }
.cp-form__input:focus, .cp-form__textarea:focus { border-color: var(--gold); background: #fff; }
.cp-form__textarea { resize: vertical; min-height: 130px; }
.cp-form__btn { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 8px; padding: 16px 32px; background: var(--gold); color: #fff; font-family: var(--font-sans); font-size: 12px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; border: none; border-radius: 3px; cursor: pointer; transition: background 0.25s, gap 0.25s; width: 100%; }
.cp-form__btn:hover { background: var(--gold-dark); gap: 14px; }
.cp-form__btn svg { transition: transform 0.25s; }
.cp-form__btn:hover svg { transform: translateX(4px); }

.cp-map-full { position: relative; width: 100%; height: 520px; overflow: hidden; }
.cp-map-full iframe { display: block; width: 100%; height: 100%; border: 0; }
.cp-map-full__label { position: absolute; top: 24px; left: 50%; transform: translateX(-50%); z-index: 10; background: var(--dark); color: #fff; font-family: var(--font-sans); font-size: 13px; font-weight: 500; letter-spacing: 0.04em; padding: 10px 20px; border-radius: 40px; display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; pointer-events: none; box-shadow: 0 4px 20px rgba(0,0,0,0.3); }
.cp-map-full__label svg { color: var(--gold); flex-shrink: 0; }

/* Contact page responsive */
@media (max-width: 1024px) {
  .cp-main { padding: 64px 40px 80px; }
  .cp-hero__content { padding: 88px 40px 0; }
  .cp-main__inner { gap: 40px; }
  .cp-form-card { padding: 36px 32px; }
}
@media (max-width: 840px) {
  .cp-main__inner { grid-template-columns: 1fr; }
  .cp-form-wrap { position: static; }
  .cp-info { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
  .cp-info__block { padding-bottom: 24px; }
}
@media (max-width: 768px) {
  .cp-hero { min-height: 320px; height: auto; }
  .cp-hero__content { padding: 88px 24px 48px; }
  .cp-main { padding: 48px 24px 64px; }
  .cp-info { grid-template-columns: 1fr; }
  .cp-form-card { padding: 28px 24px; }
  .cp-map-full { height: 400px; }
}
@media (max-width: 480px) {
  .cp-hero { min-height: 280px; height: auto; }
  .cp-form-title { font-size: 1.5rem; }
  .cp-map-full { height: 320px; }
  .cp-map-full__label { font-size: 11px; padding: 8px 14px; }
}

/* ── Contact Form 7 Integration — Contact Page ──────────────────────────── */
.cp-cf7-wrap .wpcf7 { margin: 0; }
.cp-cf7-wrap .wpcf7-form { display: flex; flex-direction: column; gap: 16px; }

/* ── Contact Form 7 Integration — Home Page ─────────────────────────────── */
.contact__cf7-wrap .wpcf7 { margin: 0; }
.contact__cf7-wrap .wpcf7-form { display: flex; flex-direction: column; gap: 20px; }
.contact__cf7-wrap .wpcf7-form p { margin: 0; }
.contact__cf7-wrap .wpcf7-form br { display: none; }
.contact__cf7-wrap .form__input,
.contact__cf7-wrap .form__textarea { box-sizing: border-box; }
.contact__cf7-wrap .btn-send { border: none; cursor: pointer; }
.contact__cf7-wrap .wpcf7-spinner { display: none !important; }
.contact__cf7-wrap .wpcf7-not-valid-tip { color: #c0392b; font-size: 12px; margin-top: 4px; display: block; }
.contact__cf7-wrap .form__input.wpcf7-not-valid,
.contact__cf7-wrap .form__textarea.wpcf7-not-valid { border-color: #c0392b; box-shadow: 0 0 0 3px rgba(192,57,43,0.1); }
.contact__cf7-wrap .wpcf7-response-output { margin: 0; padding: 12px 16px; border-radius: 8px; font-size: 14px; font-family: var(--font-sans); border: none !important; }
.contact__cf7-wrap .wpcf7-mail-sent-ok { background: #eaf6ec; color: #27643a; }
.contact__cf7-wrap .wpcf7-mail-sent-ng,
.contact__cf7-wrap .wpcf7-aborted,
.contact__cf7-wrap .wpcf7-spam-blocked { background: #fdf0f0; color: #c0392b; }
.contact__cf7-wrap .wpcf7-validation-errors { background: #fff8e6; color: #8a6d00; }
.cp-cf7-wrap .wpcf7-form .cp-form__group { display: flex; flex-direction: column; }
.cp-cf7-wrap .wpcf7-form p { margin: 0; }
.cp-cf7-wrap .wpcf7-form br { display: none; }
.cp-cf7-wrap .cp-form__input,
.cp-cf7-wrap .cp-form__textarea { width: 100%; box-sizing: border-box; }
.cp-cf7-wrap .cp-form__btn { width: 100%; border: none; cursor: pointer; }
/* Spinner */
.cp-cf7-wrap .wpcf7-spinner { display: none !important; }
/* Validation errors */
.cp-cf7-wrap .wpcf7-not-valid-tip { color: #c0392b; font-size: 12px; margin-top: 4px; display: block; }
.cp-cf7-wrap .cp-form__input.wpcf7-not-valid,
.cp-cf7-wrap .cp-form__textarea.wpcf7-not-valid { border-color: #c0392b; }
/* Response output */
.cp-cf7-wrap .wpcf7-response-output { margin: 8px 0 0; padding: 12px 16px; border-radius: 3px; font-size: 14px; font-family: var(--font-sans); border: none !important; }
.cp-cf7-wrap .wpcf7-mail-sent-ok { background: #eaf6ec; color: #27643a; }
.cp-cf7-wrap .wpcf7-mail-sent-ng,
.cp-cf7-wrap .wpcf7-aborted,
.cp-cf7-wrap .wpcf7-spam-blocked { background: #fdf0f0; color: #c0392b; }
.cp-cf7-wrap .wpcf7-validation-errors { background: #fff8e6; color: #8a6d00; }

/* Elementor section strip for team page widget */
.elementor-section:has(.elementor-widget-gur_law_team_page) { padding: 0 !important; }
.elementor-section:has(.elementor-widget-gur_law_team_page) .elementor-container,
.elementor-section:has(.elementor-widget-gur_law_team_page) .elementor-column,
.elementor-section:has(.elementor-widget-gur_law_team_page) .elementor-column-wrap,
.elementor-section:has(.elementor-widget-gur_law_team_page) .elementor-widget-wrap { padding: 0 !important; }
.elementor-widget-gur_law_team_page,
.elementor-widget-gur_law_team_page > .elementor-widget-container { padding: 0 !important; width: 100%; }

/* ================================================================
   TEAM PAGE  (tp-*)
   ================================================================ */
.tp-hero { position: relative; height: 400px; display: flex; align-items: center; background: var(--dark); overflow: hidden; width: 100%; }
.tp-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 75% 50%, rgba(172,131,93,0.1) 0%, transparent 55%), radial-gradient(ellipse at 20% 80%, rgba(172,131,93,0.06) 0%, transparent 40%); }
.tp-hero__overlay { position: absolute; inset: 0; background-image: repeating-linear-gradient(0deg, transparent, transparent 79px, rgba(172,131,93,0.04) 79px, rgba(172,131,93,0.04) 80px), repeating-linear-gradient(90deg, transparent, transparent 79px, rgba(172,131,93,0.04) 79px, rgba(172,131,93,0.04) 80px); }
.tp-hero__content { position: relative; z-index: 2; width: 100%; padding: 88px 80px 0; }
.tp-hero__inner { max-width: var(--max-w); margin: 0 auto; }
.tp-breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 28px; font-family: var(--font-sans); font-size: 13px; color: rgba(255,255,255,0.4); }
.tp-breadcrumb a { color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; }
.tp-breadcrumb a:hover { color: var(--gold); }
.tp-breadcrumb span[aria-current] { color: var(--gold); }
.tp-hero__eyebrow { font-family: var(--font-sans); font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.tp-hero__heading { font-family: var(--font-serif); font-size: clamp(2.8rem, 5vw, 4.2rem); font-weight: 700; color: #fff; line-height: 1.08; margin: 0 0 18px; }
.tp-hero__heading em { font-style: italic; color: var(--gold); }
.tp-hero__sub { font-family: var(--font-sans); font-size: 16px; font-weight: 300; color: rgba(255,255,255,0.55); max-width: 580px; }
.tp-section { background: var(--cream); padding: 80px 80px 96px; overflow: hidden; width: 100%; }
.tp-inner { max-width: var(--max-w); margin: 0 auto; }
.tp-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.tp-card { display: flex; flex-direction: column; background: var(--dark); border: 1px solid rgba(172,131,93,0.18); border-radius: 4px; overflow: hidden; text-decoration: none; box-shadow: 0 4px 20px rgba(0,0,0,0.1); transition: border-color 0.35s, transform 0.35s, box-shadow 0.35s; }
.tp-card:hover { border-color: rgba(172,131,93,0.6); transform: translateY(-8px); box-shadow: 0 16px 48px rgba(0,0,0,0.18); }
.tp-card__img-wrap { position: relative; width: 100%; aspect-ratio: 3 / 4; overflow: hidden; }
.tp-card__img-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; filter: grayscale(15%); transition: transform 0.55s ease, filter 0.35s; }
.tp-card:hover .tp-card__img-wrap img { transform: scale(1.06); filter: grayscale(0%); }
.tp-card__img-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(17,17,17,0.65) 100%); }
.tp-card__body { padding: 20px 22px 22px; display: flex; flex-direction: column; gap: 4px; flex: 1; }
.tp-card__area { font-family: var(--font-sans); font-size: 10px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin: 0; }
.tp-card__name { font-family: var(--font-serif); font-size: 1.2rem; font-weight: 700; color: #fff; margin: 4px 0 6px; line-height: 1.2; }
.tp-card__role { font-family: var(--font-sans); font-size: 12px; font-weight: 300; line-height: 1.55; color: rgba(255,255,255,0.5); margin: 0 0 auto; flex: 1; }
.tp-card__link { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; padding-top: 14px; border-top: 1px solid rgba(172,131,93,0.15); font-family: var(--font-sans); font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); transition: gap 0.25s; }
.tp-card__link svg { width: 14px; height: 14px; transition: transform 0.25s; }
.tp-card:hover .tp-card__link { gap: 10px; }
.tp-card:hover .tp-card__link svg { transform: translateX(4px); }
.tp-cta { background: var(--dark2); padding: 72px 80px; border-top: 1px solid rgba(172,131,93,0.12); overflow: hidden; width: 100%; }
.tp-cta__inner { max-width: var(--max-w); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.tp-cta__text h2 { font-family: var(--font-serif); font-size: clamp(1.5rem, 2.5vw, 2.1rem); font-weight: 700; color: #fff; margin: 0 0 10px; }
.tp-cta__text h2 em { font-style: italic; color: var(--gold); }
.tp-cta__text p { font-family: var(--font-sans); font-size: 15px; font-weight: 300; color: rgba(255,255,255,0.55); margin: 0; }

@media (max-width: 1024px) {
  .tp-section { padding: 64px 40px 80px; }
  .tp-hero__content { padding: 88px 40px 0; }
  .tp-cta { padding: 56px 40px; }
  .tp-grid { gap: 18px; }
}
@media (max-width: 900px) {
  .tp-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .tp-hero { min-height: 340px; height: auto; }
  .tp-hero__content { padding: 88px 24px 48px; }
  .tp-section { padding: 48px 24px 64px; }
  .tp-cta { padding: 48px 24px; }
  .tp-cta__inner { flex-direction: column; text-align: center; gap: 28px; }
  .tp-grid { gap: 16px; }
}
@media (max-width: 480px) {
  .tp-hero { min-height: 300px; height: auto; }
  .tp-card__name { font-size: 1.05rem; }
}

/* ================================================================
   TEAM DETAIL  (td-*)
   ================================================================ */
.td-hero { position: relative; min-height: 520px; display: flex; align-items: flex-end; background: var(--dark); overflow: hidden; width: 100%; }
.td-hero__bg { position: absolute; inset: 0; background: radial-gradient(ellipse at 30% 60%, rgba(172,131,93,0.13) 0%, transparent 60%); }
.td-hero__overlay { position: absolute; inset: 0; background-image: repeating-linear-gradient(0deg, transparent, transparent 79px, rgba(172,131,93,0.04) 79px, rgba(172,131,93,0.04) 80px), repeating-linear-gradient(90deg, transparent, transparent 79px, rgba(172,131,93,0.04) 79px, rgba(172,131,93,0.04) 80px); }
.td-hero__content { position: relative; z-index: 2; width: 100%; padding: 0 80px 72px; }
.td-hero__inner { max-width: 1160px; margin: 0 auto; }
.td-breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 48px; padding-top: 108px; font-family: var(--font-sans); font-size: 13px; color: rgba(255,255,255,0.4); }
.td-breadcrumb a { color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; }
.td-breadcrumb a:hover { color: var(--gold); }
.td-breadcrumb span[aria-current] { color: var(--gold); }
.td-hero__profile { display: flex; align-items: flex-end; gap: 52px; }
.td-hero__photo-wrap { flex-shrink: 0; width: 220px; height: 280px; border-radius: 3px; overflow: hidden; border: 2px solid rgba(172,131,93,0.35); box-shadow: 0 20px 60px rgba(0,0,0,0.4); }
.td-hero__photo { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; }
.td-hero__meta { flex: 1; min-width: 0; padding-bottom: 8px; }
.td-hero__area { font-family: var(--font-sans); font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin: 0 0 12px; }
.td-hero__name { font-family: var(--font-serif); font-size: clamp(2.4rem, 4.5vw, 3.6rem); font-weight: 700; color: #fff; line-height: 1.08; margin: 0 0 10px; }
.td-hero__name em { font-style: italic; color: var(--gold); }
.td-hero__title { font-family: var(--font-sans); font-size: 15px; font-weight: 300; color: rgba(255,255,255,0.6); margin: 0; letter-spacing: 0.02em; }
.td-hero__divider { width: 48px; height: 1px; background: rgba(172,131,93,0.5); margin: 24px 0; }
.td-hero__actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.td-hero__btn { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-sans); font-size: 14px; font-weight: 400; color: rgba(255,255,255,0.7); text-decoration: none; border-bottom: 1px solid rgba(172,131,93,0.3); padding-bottom: 2px; transition: color 0.2s, border-color 0.2s; }
.td-hero__btn svg { width: 16px; height: 16px; color: var(--gold); }
.td-hero__btn:hover { color: var(--gold); border-color: var(--gold); }
.td-hero__btn-cta { display: inline-block; font-family: var(--font-sans); font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--dark); background: var(--gold); padding: 11px 24px; border-radius: 2px; text-decoration: none; transition: background 0.25s; }
.td-hero__btn-cta:hover { background: #9a7250; }
.td-bio { background: #fff; padding: 88px 80px 96px; overflow: hidden; width: 100%; }
.td-bio__inner { max-width: 1160px; margin: 0 auto; display: grid; grid-template-columns: 1fr 340px; gap: 64px; align-items: start; }
.td-label { display: block; font-family: var(--font-sans); font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.td-label--gold { color: var(--gold); }
.td-heading { font-family: var(--font-serif); font-size: clamp(1.7rem, 2.8vw, 2.3rem); font-weight: 700; color: var(--dark); line-height: 1.2; margin: 0 0 28px; }
.td-heading em { font-style: italic; color: var(--gold); }
.td-heading--light { color: #fff; }
.td-body { font-family: var(--font-sans); font-size: 16px; font-weight: 300; line-height: 1.85; color: var(--text); margin: 0 0 20px; }
.td-memberships { margin-top: 36px; padding-top: 32px; border-top: 1px solid rgba(172,131,93,0.15); }
.td-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.td-list li { font-family: var(--font-sans); font-size: 15px; font-weight: 400; color: var(--text); padding-left: 22px; position: relative; }
.td-list li::before { content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 7px; height: 7px; border-radius: 50%; background: var(--gold); opacity: 0.7; }
.td-sidebar { display: flex; flex-direction: column; gap: 20px; position: sticky; top: 108px; }
.td-sidebar__card { background: var(--cream); border: 1px solid rgba(172,131,93,0.18); border-radius: 3px; padding: 24px 24px 20px; }
.td-sidebar__label { font-family: var(--font-sans); font-size: 10px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(58,58,58,0.5); margin-bottom: 14px; }
.td-sidebar__area-link { display: flex; align-items: center; justify-content: space-between; text-decoration: none; font-family: var(--font-serif); font-size: 1.15rem; font-weight: 600; color: var(--dark); transition: color 0.2s; }
.td-sidebar__area-link svg { width: 18px; height: 18px; color: var(--gold); transition: transform 0.2s; }
.td-sidebar__area-link:hover { color: var(--gold); }
.td-sidebar__area-link:hover svg { transform: translateX(4px); }
.td-sidebar__edu { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 16px; }
.td-sidebar__edu li { display: flex; flex-direction: column; gap: 3px; padding-left: 14px; border-left: 2px solid rgba(172,131,93,0.35); }
.td-sidebar__edu-degree { font-family: var(--font-serif); font-size: 0.95rem; font-weight: 600; color: var(--dark); }
.td-sidebar__edu-school { font-family: var(--font-sans); font-size: 13px; font-weight: 300; color: rgba(58,58,58,0.65); }
.td-sidebar__tags { display: flex; flex-wrap: wrap; gap: 8px; }
.td-sidebar__tags span { font-family: var(--font-sans); font-size: 12px; font-weight: 400; color: var(--text); background: #fff; border: 1px solid rgba(172,131,93,0.25); border-radius: 2px; padding: 5px 12px; }
.td-sidebar__card--contact { background: var(--dark); border-color: rgba(172,131,93,0.2); }
.td-sidebar__card--contact .td-sidebar__label { color: rgba(255,255,255,0.35); }
.td-sidebar__contact-link { display: flex; align-items: center; gap: 10px; font-family: var(--font-sans); font-size: 14px; font-weight: 400; color: rgba(255,255,255,0.7); text-decoration: none; margin-bottom: 16px; transition: color 0.2s; }
.td-sidebar__contact-link svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; }
.td-sidebar__contact-link:hover { color: var(--gold); }
.td-sidebar__cta { display: block; text-align: center; font-family: var(--font-sans); font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--dark); background: var(--gold); padding: 12px 20px; border-radius: 2px; text-decoration: none; transition: background 0.25s; }
.td-sidebar__cta:hover { background: #9a7250; }
.td-team { background: var(--dark2); padding: 88px 80px 96px; overflow: hidden; width: 100%; }
.td-team__inner { max-width: 1160px; margin: 0 auto; }
.td-team__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.td-tcard { text-decoration: none; display: flex; flex-direction: column; border: 1px solid rgba(172,131,93,0.15); border-radius: 3px; overflow: hidden; transition: border-color 0.3s, transform 0.3s; }
.td-tcard:hover { border-color: rgba(172,131,93,0.5); transform: translateY(-4px); }
.td-tcard__img { width: 100%; aspect-ratio: 3 / 4; overflow: hidden; }
.td-tcard__img img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; filter: grayscale(20%); transition: transform 0.5s, filter 0.3s; }
.td-tcard:hover .td-tcard__img img { transform: scale(1.04); filter: grayscale(0%); }
.td-tcard h3 { font-family: var(--font-serif); font-size: 1.05rem; font-weight: 600; color: #fff; margin: 0; padding: 20px 20px 6px; }
.td-tcard p { font-family: var(--font-sans); font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.5); margin: 0; padding: 0 20px 20px; line-height: 1.5; }

@media (max-width: 1024px) {
  .td-hero__content { padding: 0 40px 64px; }
  .td-bio { padding: 72px 40px 80px; }
  .td-team { padding: 72px 40px 80px; }
  .td-bio__inner { gap: 40px; }
}
@media (max-width: 860px) {
  .td-bio__inner { grid-template-columns: 1fr; }
  .td-sidebar { position: static; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .td-sidebar__card--contact { grid-column: span 2; }
  .td-team__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .td-hero__profile { flex-direction: column; align-items: flex-start; gap: 28px; }
  .td-hero__photo-wrap { width: 160px; height: 200px; }
  .td-hero__content { padding: 0 24px 56px; }
  .td-bio { padding: 56px 24px 64px; }
  .td-team { padding: 56px 24px 64px; }
  .td-sidebar { grid-template-columns: 1fr; }
  .td-sidebar__card--contact { grid-column: span 1; }
}
@media (max-width: 560px) {
  .td-team__grid { grid-template-columns: 1fr; max-width: 320px; }
  .td-hero__actions { flex-direction: column; align-items: flex-start; gap: 14px; }
}

/* ================================================================
   PRACTICE AREAS PAGE  (sp-*)
   ================================================================ */
.sp-hero { position: relative; height: 400px; display: flex; align-items: center; background: var(--dark); overflow: hidden; width: 100%; }
.sp-hero__bg { position: absolute; inset: 0; background-position: center; background-size: cover; background-repeat: no-repeat; opacity: 0.28; }
.sp-hero__overlay { position: absolute; inset: 0; background: linear-gradient(110deg, rgba(17,17,17,0.97) 35%, rgba(17,17,17,0.6) 100%); }
.sp-hero__content { position: relative; z-index: 2; width: 100%; padding: 88px 80px 0; }
.sp-hero__inner { max-width: var(--max-w); margin: 0 auto; }
.sp-breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 28px; font-family: var(--font-sans); font-size: 13px; color: rgba(255,255,255,0.4); }
.sp-breadcrumb a { color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; }
.sp-breadcrumb a:hover { color: var(--gold); }
.sp-breadcrumb span[aria-current] { color: var(--gold); }
.sp-hero__eyebrow { font-family: var(--font-sans); font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.sp-hero__heading { font-family: var(--font-serif); font-size: clamp(2.8rem, 5vw, 4.2rem); font-weight: 700; color: #fff; line-height: 1.08; margin: 0 0 18px; }
.sp-hero__heading em { font-style: italic; color: var(--gold); }
.sp-hero__sub { font-family: var(--font-sans); font-size: 16px; font-weight: 300; color: rgba(255,255,255,0.55); max-width: 560px; }
.sp-section { background: var(--cream); padding: 80px 80px 96px; overflow: hidden; width: 100%; }
.sp-inner { max-width: var(--max-w); margin: 0 auto; }
.sp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.sp-card { display: flex; flex-direction: column; background: #111; border: 1px solid rgba(172,131,93,0.25); border-radius: 4px; overflow: hidden; text-decoration: none; box-shadow: 0 4px 24px rgba(0,0,0,0.12); transition: border-color 0.35s, transform 0.35s, box-shadow 0.35s; }
.sp-card:hover { border-color: rgba(172,131,93,0.65); transform: translateY(-8px); box-shadow: 0 16px 48px rgba(0,0,0,0.18); }
.sp-card__img-wrap { position: relative; width: 100%; aspect-ratio: 16/10; overflow: hidden; }
.sp-card__img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s ease; }
.sp-card:hover .sp-card__img-wrap img { transform: scale(1.05); }
.sp-card__img-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 30%, rgba(17,17,17,0.7) 100%); }
.sp-card__body { display: flex; flex-direction: column; flex: 1; padding: 32px 28px 28px; gap: 0; }
.sp-card__num { display: block; font-family: var(--font-serif); font-size: 2rem; font-weight: 700; color: rgba(172,131,93,0.2); line-height: 1; margin-bottom: 12px; }
.sp-card__title { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 700; color: #fff; line-height: 1.2; margin: 0 0 16px; }
.sp-card__title em { font-style: italic; color: var(--gold); }
.sp-card__desc { font-family: var(--font-sans); font-size: 14px; font-weight: 300; line-height: 1.75; color: rgba(255,255,255,0.55); margin: 0 0 24px; flex: 1; }
.sp-card__tags { list-style: none; padding: 0; margin: 0 0 28px; display: flex; flex-wrap: wrap; gap: 8px; }
.sp-card__tags li { font-family: var(--font-sans); font-size: 11px; font-weight: 500; letter-spacing: 0.06em; color: rgba(172,131,93,0.85); background: rgba(172,131,93,0.08); border: 1px solid rgba(172,131,93,0.2); border-radius: 2px; padding: 4px 10px; }
.sp-card__cta { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-sans); font-size: 13px; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gold); border-top: 1px solid rgba(172,131,93,0.15); padding-top: 20px; transition: gap 0.25s; }
.sp-card__cta svg { width: 16px; height: 16px; transition: transform 0.25s; }
.sp-card:hover .sp-card__cta { gap: 12px; }
.sp-card:hover .sp-card__cta svg { transform: translateX(4px); }
.sp-cta { background: #9F8C76; padding: 64px 80px; overflow: hidden; width: 100%; }
.sp-cta__inner { max-width: var(--max-w); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.sp-cta__text h2 { font-family: var(--font-serif); font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 700; color: #fff; margin: 0 0 8px; }
.sp-cta__text p { font-family: var(--font-sans); font-size: 15px; font-weight: 300; color: rgba(255,255,255,0.8); margin: 0; }
.sp-cta .btn-primary { background: var(--dark); border-color: var(--dark); color: #fff; white-space: nowrap; flex-shrink: 0; }
.sp-cta .btn-primary:hover { background: #000; }
/* Elementor strip */
.elementor-section:has(.elementor-widget-gur_law_services_page) { padding: 0 !important; }
.elementor-section:has(.elementor-widget-gur_law_services_page) .elementor-container,
.elementor-section:has(.elementor-widget-gur_law_services_page) .elementor-column,
.elementor-section:has(.elementor-widget-gur_law_services_page) .elementor-column-wrap,
.elementor-section:has(.elementor-widget-gur_law_services_page) .elementor-widget-wrap { padding: 0 !important; }
.elementor-widget-gur_law_services_page,
.elementor-widget-gur_law_services_page > .elementor-widget-container { padding: 0 !important; width: 100%; }
@media (max-width: 1024px) {
  .sp-section { padding: 64px 40px 80px; }
  .sp-hero__content { padding: 88px 40px 0; }
  .sp-cta { padding: 56px 40px; }
}
@media (max-width: 900px) {
  .sp-grid { grid-template-columns: 1fr; max-width: 540px; margin: 0 auto; }
  .sp-card__img-wrap { aspect-ratio: 16/8; }
  .sp-cta__inner { flex-direction: column; text-align: center; gap: 28px; }
}
@media (max-width: 768px) {
  .sp-hero { min-height: 340px; height: auto; }
  .sp-hero__content { padding: 88px 24px 48px; }
  .sp-section { padding: 48px 24px 64px; }
  .sp-cta { padding: 48px 24px; }
  .sp-grid { max-width: 100%; }
}
@media (max-width: 480px) {
  .sp-hero { min-height: 300px; height: auto; }
  .sp-card__body { padding: 24px 20px 20px; }
}

/* ================================================================
   SERVICE DETAIL PAGE  (detail-hero, dl-*)
   ================================================================ */
.detail-hero { position: relative; height: 440px; display: flex; align-items: center; overflow: hidden; background: var(--dark); width: 100%; }
.detail-hero__bg { position: absolute; inset: 0; background-position: center; background-size: cover; background-repeat: no-repeat; opacity: 0.25; }
.detail-hero__overlay { position: absolute; inset: 0; background: linear-gradient(105deg, rgba(17,17,17,0.97) 35%, rgba(17,17,17,0.55) 100%); }
.detail-hero__content { position: relative; z-index: 2; width: 100%; padding: 88px 80px 0; }
.detail-hero__inner { max-width: var(--max-w); margin: 0 auto; }
.detail-breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 28px; font-family: var(--font-sans); font-size: 13px; color: rgba(255,255,255,0.45); }
.detail-breadcrumb a { color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.2s; }
.detail-breadcrumb a:hover { color: var(--gold); }
.detail-breadcrumb span[aria-current] { color: var(--gold); }
.detail-hero__eyebrow { font-family: var(--font-sans); font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.detail-hero__heading { font-family: var(--font-serif); font-size: clamp(2.8rem, 5vw, 4.2rem); font-weight: 700; color: #fff; line-height: 1.08; margin: 0 0 18px; }
.detail-hero__heading em { font-style: italic; color: var(--gold); }
.detail-hero__sub { font-family: var(--font-sans); font-size: 16px; font-weight: 300; color: rgba(255,255,255,0.6); letter-spacing: 0.03em; max-width: 500px; }
.dl-page { width: 100%; }
.dl-label { display: block; font-family: var(--font-sans); font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.dl-label--gold { color: var(--gold); }
.dl-heading { font-family: var(--font-serif); font-size: clamp(1.85rem, 3vw, 2.5rem); font-weight: 700; color: var(--dark); line-height: 1.2; margin: 0 0 22px; }
.dl-heading em { font-style: italic; color: var(--gold); }
.dl-heading--light { color: #fff; }
.dl-body { font-family: var(--font-sans); font-size: 16px; font-weight: 300; line-height: 1.85; color: var(--text); margin: 0 0 20px; }
.dl-body--light { color: rgba(255,255,255,0.75); }
.dl-block { padding: 64px 80px; overflow: hidden; width: 100%; }
.dl-block--white { background: #fff; }
.dl-block--cream { background: var(--cream); }
.dl-block--dark  { background: var(--dark2); }
.dl-block__inner { max-width: var(--max-w); margin: 0 auto; }
.dl-block__inner--narrow { max-width: 740px; }
.dl-block__inner--split { display: flex; align-items: center; gap: 80px; }
.dl-lead { padding: 64px 80px; background: #fff; overflow: hidden; width: 100%; }
.dl-lead__inner { max-width: var(--max-w); margin: 0 auto; display: flex; align-items: center; gap: 80px; }
.dl-lead__text { flex: 0 0 500px; max-width: 500px; }
.dl-lead__image { flex: 1; min-width: 0; }
.dl-lead__image img { width: 100%; height: 480px; object-fit: cover; display: block; border-radius: 4px; }
.dl-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 32px; }
.dl-pills span { font-family: var(--font-sans); font-size: 13px; font-weight: 400; color: var(--text); background: #fff; border: 1px solid rgba(172,131,93,0.3); border-radius: 2px; padding: 8px 16px; transition: border-color 0.2s, color 0.2s; cursor: default; }
.dl-pills span:hover { border-color: var(--gold); color: var(--gold); }
.dl-split__text { flex: 1; }
.dl-split__aside { flex: 0 0 320px; max-width: 320px; }
.dl-aside-card { background: var(--dark); border: 1px solid rgba(172,131,93,0.2); border-radius: 4px; padding: 40px 36px; display: flex; flex-direction: column; align-items: flex-start; gap: 4px; }
.dl-aside-card h3 { font-family: var(--font-serif); font-size: 1.1rem; font-weight: 600; color: #fff; margin: 0 0 20px; }
.dl-aside-card ul, .dl-aside-card__list--light { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; width: 100%; }
.dl-aside-card ul li, .dl-aside-card__list--light li { font-family: var(--font-sans); font-size: 14px; font-weight: 300; color: rgba(255,255,255,0.6); padding-left: 18px; position: relative; }
.dl-aside-card ul li::before, .dl-aside-card__list--light li::before { content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 6px; height: 6px; border-radius: 50%; background: var(--gold); opacity: 0.7; }
.dl-aside-card--dark { background: #232323; border-color: rgba(172,131,93,0.15); }
.dl-aside-card__title--light { font-family: var(--font-serif); font-size: 1.1rem; font-weight: 600; color: #fff; margin: 0 0 20px; }
.dl-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 48px; }
.dl-two-col__item { padding: 36px 32px; background: #fff; border: 1px solid rgba(172,131,93,0.2); border-radius: 4px; transition: border-color 0.3s; }
.dl-two-col__item:hover { border-color: rgba(172,131,93,0.5); }
.dl-two-col__num { font-family: var(--font-serif); font-size: 2.2rem; font-weight: 700; color: rgba(172,131,93,0.2); line-height: 1; margin-bottom: 16px; }
.dl-two-col__item h3 { font-family: var(--font-serif); font-size: 1.05rem; font-weight: 600; color: var(--dark); margin: 0 0 12px; }
.dl-two-col__item p { font-family: var(--font-sans); font-size: 14px; font-weight: 300; line-height: 1.75; color: var(--text); margin: 0; }
/* Elementor strip — zero all wrapper padding for full-bleed page widgets */
.elementor-section:has(.elementor-widget-gur_law_service_detail) { padding: 0 !important; }
.elementor-section:has(.elementor-widget-gur_law_service_detail) .elementor-container,
.elementor-section:has(.elementor-widget-gur_law_service_detail) .elementor-column,
.elementor-section:has(.elementor-widget-gur_law_service_detail) .elementor-column-wrap,
.elementor-section:has(.elementor-widget-gur_law_service_detail) .elementor-widget-wrap { padding: 0 !important; }
.elementor-widget-gur_law_service_detail,
.elementor-widget-gur_law_service_detail > .elementor-widget-container { padding: 0 !important; width: 100%; }
@media (max-width: 1100px) {
  .dl-lead__text { flex: 0 0 440px; max-width: 440px; }
}
@media (max-width: 960px) {
  .detail-hero__content { padding: 88px 40px 0; }
  .dl-block { padding: 72px 40px; }
  .dl-lead { padding: 72px 40px; }
  .dl-lead__inner, .dl-block__inner--split { flex-direction: column; gap: 48px; }
  .dl-lead__text { flex: none; max-width: 100%; }
  .dl-lead__image img { height: 360px; }
  .dl-split__aside { flex: none; max-width: 100%; width: 100%; }
  .dl-aside-card { flex-direction: row; flex-wrap: wrap; align-items: flex-start; }
  .dl-aside-card ul, .dl-aside-card__list--light { flex-direction: row; flex-wrap: wrap; gap: 8px; }
}
@media (max-width: 768px) {
  .detail-hero { min-height: 360px; height: auto; }
  .detail-hero__content { padding: 88px 24px 48px; }
  .dl-block__inner--narrow { max-width: 100%; }
  .dl-block { padding: 56px 24px; }
  .dl-lead { padding: 56px 24px; }
  .dl-two-col { grid-template-columns: 1fr; }
  .dl-lead__image img { height: 280px; }
}
@media (max-width: 480px) {
  .detail-hero { min-height: 320px; height: auto; }
  .detail-breadcrumb { font-size: 12px; flex-wrap: wrap; }
  .dl-pills { gap: 8px; }
  .dl-aside-card { padding: 28px 24px; }
}

/* ================================================================
   INSIGHTS PAGE  (bl-*, ins-*, qa-*)
   ================================================================ */
/* Elementor strip */
.elementor-section:has(.elementor-widget-gur_law_insights_page) { padding: 0 !important; }
.elementor-section:has(.elementor-widget-gur_law_insights_page) .elementor-container,
.elementor-section:has(.elementor-widget-gur_law_insights_page) .elementor-column,
.elementor-section:has(.elementor-widget-gur_law_insights_page) .elementor-column-wrap,
.elementor-section:has(.elementor-widget-gur_law_insights_page) .elementor-widget-wrap { padding: 0 !important; }
.elementor-widget-gur_law_insights_page,
.elementor-widget-gur_law_insights_page > .elementor-widget-container { padding: 0 !important; width: 100%; }

/* Shared helpers */
.bl-label { font-family: var(--font-sans); font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); display: block; margin: 0 0 14px; }
.bl-heading { font-family: var(--font-serif); font-size: clamp(1.6rem, 2.6vw, 2.2rem); font-weight: 600; color: var(--dark); line-height: 1.22; margin: 0 0 14px; }
.bl-heading em { font-style: italic; color: var(--gold); }

/* Hero */
.bl-hero { position: relative; height: 400px; display: flex; align-items: center; background: var(--dark); overflow: hidden; width: 100%; }
.bl-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 75% 50%, rgba(172,131,93,0.1) 0%, transparent 55%); }
.bl-hero__bg { display: none; }
.bl-hero__overlay { position: absolute; inset: 0; background-image: repeating-linear-gradient(0deg, transparent, transparent 79px, rgba(172,131,93,0.04) 79px, rgba(172,131,93,0.04) 80px), repeating-linear-gradient(90deg, transparent, transparent 79px, rgba(172,131,93,0.04) 79px, rgba(172,131,93,0.04) 80px); }
.bl-hero__content { position: relative; z-index: 2; width: 100%; padding: 88px 80px 0; }
.bl-hero__inner { max-width: var(--max-w); margin: 0 auto; }
.bl-breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 28px; font-family: var(--font-sans); font-size: 12px; letter-spacing: 0.06em; color: rgba(255,255,255,0.52); }
.bl-breadcrumb a { color: rgba(255,255,255,0.52); text-decoration: none; transition: color 0.2s; }
.bl-breadcrumb a:hover { color: var(--gold); }
.bl-breadcrumb span[aria-current] { color: var(--gold); }
.bl-hero__eyebrow { font-family: var(--font-sans); font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.bl-hero__heading { font-family: var(--font-serif); font-size: clamp(2.8rem, 5vw, 4.2rem); font-weight: 700; color: #fff; line-height: 1.08; margin: 0 0 18px; }
.bl-hero__heading em { font-style: italic; color: var(--gold); }
.bl-hero__sub { font-family: var(--font-sans); font-size: 16px; font-weight: 300; color: rgba(255,255,255,0.55); max-width: 560px; }

/* Insights section */
.ins-section { padding: 96px 80px; background: var(--cream); overflow: hidden; width: 100%; }
.ins-inner { max-width: var(--max-w); margin: 0 auto; }
.ins-header { margin-bottom: 32px; }

/* Stacked content blocks (Q&A / Blog / News) */
.ins-block { margin-bottom: 80px; }
.ins-block:last-child { margin-bottom: 0; }
.ins-block__hd { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; margin-bottom: 40px; }
.ins-block__hd-left { }
.ins-block__title { font-family: var(--font-serif); font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; color: var(--dark); margin: 0 0 6px; line-height: 1.15; }
.ins-block__sub { font-family: var(--font-sans); font-size: 0.875rem; color: #888; margin: 0; }
.ins-view-all { font-family: var(--font-sans); font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); text-decoration: none; display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; padding-top: 6px; transition: gap 0.22s; }
.ins-view-all:hover { gap: 10px; }
.ins-header__desc { font-family: var(--font-sans); font-size: 1rem; line-height: 1.72; color: #666; margin: 0; max-width: 620px; }
.ins-tabs-wrap { display: flex; justify-content: center; margin-bottom: 48px; }

/* Tabs */
.ins-tabs { display: flex; align-items: center; gap: 6px; background: rgba(0,0,0,0.05); border-radius: 40px; padding: 5px; flex-shrink: 0; }
.ins-tab { font-family: var(--font-sans); font-size: 13px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: #888; background: none; border: none; cursor: pointer; padding: 12px 32px; border-radius: 36px; transition: color 0.22s, background 0.22s; white-space: nowrap; }
.ins-tab:hover { color: var(--dark); }
.ins-tab--active { background: #fff; color: var(--dark); box-shadow: 0 2px 8px rgba(0,0,0,0.1); }
.ins-panel { display: none; }
.ins-panel--active { display: block; }

/* Empty state */
.ins-empty { padding: 60px 32px; background: #fff; border-radius: 2px; border: 1px dashed rgba(172,131,93,0.3); text-align: center; }
.ins-empty__desc { font-family: var(--font-sans); font-size: 1rem; line-height: 1.76; color: #666; margin: 0; }

/* Card grid */
.bl-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.bl-grid--2 { grid-template-columns: repeat(2, 1fr); }
.bl-card { background: #fff; border-radius: 2px; overflow: hidden; display: flex; flex-direction: column; text-decoration: none; box-shadow: 0 2px 12px rgba(0,0,0,0.06); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.bl-card:hover { transform: translateY(-7px); box-shadow: 0 14px 36px rgba(0,0,0,0.12); }
.bl-card__img-wrap { width: 100%; aspect-ratio: 16/9; overflow: hidden; }
.bl-card__img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.55s ease; }
.bl-card:hover .bl-card__img-wrap img { transform: scale(1.06); }
.bl-card__body { padding: 28px 28px 24px; flex: 1; display: flex; flex-direction: column; }
.bl-card__cat { font-family: var(--font-sans); font-size: 10px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin: 0 0 10px; display: block; }
.bl-card__title { font-family: var(--font-serif); font-size: 1.1rem; font-weight: 600; color: var(--dark); line-height: 1.38; margin: 0 0 14px; }
.bl-card__excerpt { font-family: var(--font-sans); font-size: 0.875rem; line-height: 1.72; color: #666; margin: 0; flex: 1; }
.bl-card__foot { display: flex; align-items: center; justify-content: space-between; margin-top: 22px; padding-top: 18px; border-top: 1px solid rgba(0,0,0,0.07); }
.bl-card__date { font-family: var(--font-sans); font-size: 11px; color: #aaa; letter-spacing: 0.04em; }
.bl-card__link { font-family: var(--font-sans); font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); display: inline-flex; align-items: center; gap: 6px; transition: gap 0.22s; }
.bl-card:hover .bl-card__link { gap: 10px; }
.bl-card__link svg { width: 13px; height: 13px; }

/* Q&A accordion */
.qa-list { display: flex; flex-direction: column; gap: 0; }
.qa-item { background: #fff; border: 1px solid rgba(172,131,93,0.15); border-bottom: none; }
.qa-item:first-child { border-radius: 2px 2px 0 0; }
.qa-item:last-child  { border-bottom: 1px solid rgba(172,131,93,0.15); border-radius: 0 0 2px 2px; }
.qa-list .qa-item:only-child { border-radius: 2px; border-bottom: 1px solid rgba(172,131,93,0.15); }
.qa-item__header { width: 100%; display: flex; align-items: center; gap: 20px; padding: 28px 32px; background: none; border: none; cursor: pointer; text-align: left; transition: background 0.22s; }
.qa-item__header:hover { background: rgba(172,131,93,0.04); }
.qa-item--open > .qa-item__header { background: rgba(172,131,93,0.06); }
.qa-item__num { font-family: var(--font-serif); font-size: 13px; font-weight: 600; color: var(--gold); letter-spacing: 0.06em; flex-shrink: 0; opacity: 0.7; }
.qa-item__q { font-family: var(--font-serif); font-size: 1.15rem; font-weight: 600; color: var(--dark); line-height: 1.35; flex: 1; }
.qa-item__icon { flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%; border: 1px solid rgba(172,131,93,0.3); display: flex; align-items: center; justify-content: center; transition: background 0.22s, border-color 0.22s; }
.qa-item__icon svg { width: 14px; height: 14px; color: var(--gold); transition: transform 0.3s; }
.qa-item--open .qa-item__icon { background: var(--gold); border-color: var(--gold); }
.qa-item--open .qa-item__icon svg { color: #fff; transform: rotate(180deg); }
.qa-item__body { overflow: hidden; max-height: 0; transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1); }
.qa-item--open .qa-item__body { max-height: 900px; }
.qa-item__content { display: grid; grid-template-columns: 1fr 320px; gap: 48px; padding: 0 32px 36px; align-items: start; }
.qa-item__content--no-img { grid-template-columns: 1fr; }
.qa-item__text { display: flex; flex-direction: column; gap: 18px; }
.qa-item__text p { font-family: var(--font-sans); font-size: 0.975rem; line-height: 1.82; color: #4a4a4a; margin: 0; }
.qa-item__text p:first-child { font-size: 1.025rem; color: #2e2e2e; }
.qa-item__img-wrap { border-radius: 2px; overflow: hidden; aspect-ratio: 16/10; }
.qa-item__img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.55s ease; }
.qa-item:hover .qa-item__img-wrap img { transform: scale(1.04); }

/* Responsive */
@media (max-width: 1024px) {
  .bl-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .bl-hero__content { padding: 72px 40px 0; }
  .ins-section { padding: 72px 40px; }
  .ins-block { margin-bottom: 60px; }
  .ins-block__hd { flex-wrap: wrap; gap: 12px; }
  .qa-item__content { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 640px) {
  .bl-hero { min-height: 320px; height: auto; }
  .bl-hero__content { padding: 32px 24px 48px; }
  .ins-block { margin-bottom: 48px; }
  .ins-block__title { font-size: 1.4rem; }
  .ins-section { padding: 56px 24px; }
  .bl-grid, .bl-grid--2 { grid-template-columns: 1fr; }
  .ins-tabs { width: 100%; justify-content: center; }
  .ins-tab { padding: 9px 14px; font-size: 11px; }
  .qa-item__header { padding: 20px; gap: 12px; }
  .qa-item__q { font-size: 1rem; }
  .qa-item__content { padding: 0 20px 28px; }
}

/* ================================================================
   BOOKING PAGE  (bk-*)
   ================================================================ */
.elementor-section:has(.elementor-widget-gur_law_booking_page) { padding: 0 !important; }
.elementor-section:has(.elementor-widget-gur_law_booking_page) .elementor-container,
.elementor-section:has(.elementor-widget-gur_law_booking_page) .elementor-column,
.elementor-section:has(.elementor-widget-gur_law_booking_page) .elementor-column-wrap,
.elementor-section:has(.elementor-widget-gur_law_booking_page) .elementor-widget-wrap { padding: 0 !important; }
.elementor-widget-gur_law_booking_page,
.elementor-widget-gur_law_booking_page > .elementor-widget-container { padding: 0 !important; width: 100%; }

.bk-outer { background: #0C0C0C; min-height: calc(100vh - 72px); display: flex; align-items: center; justify-content: center; padding: 56px 24px; }
@media (min-width: 841px) { .bk-outer { padding-top: 100px; } }
.bk-card { width: 100%; max-width: 960px; display: grid; grid-template-columns: 290px 1fr; border-radius: 4px; overflow: hidden; box-shadow: 0 48px 120px rgba(0,0,0,0.65), 0 0 0 1px rgba(255,255,255,0.04); min-height: 640px; }

/* Sidebar */
.bk-sidebar { background: var(--dark); padding: 44px 32px; display: flex; flex-direction: column; border-right: 1px solid rgba(255,255,255,0.06); }
.bk-sidebar__logo { display: block; width: 100px; margin-bottom: 36px; opacity: 0.92; }
.bk-sidebar__eyebrow { font-family: var(--font-sans); font-size: 10px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 10px; }
.bk-sidebar__title { font-family: var(--font-serif); font-size: 1.45rem; font-weight: 600; color: #fff; line-height: 1.3; margin: 0 0 28px; }
.bk-sidebar__title em { font-style: italic; color: var(--gold); }
.bk-sidebar__rule { width: 32px; height: 2px; background: var(--gold); margin-bottom: 28px; flex-shrink: 0; }
.bk-sb__row { display: flex; flex-direction: column; gap: 3px; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.bk-sb__row:first-child { border-top: 1px solid rgba(255,255,255,0.06); }
.bk-sb__key { font-family: var(--font-sans); font-size: 9px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.35); }
.bk-sb__val { font-family: var(--font-sans); font-size: 13px; color: rgba(255,255,255,0.82); }
.bk-sidebar__spacer { flex: 1; }
.bk-sidebar__contact { margin-top: 32px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.06); }
.bk-sidebar__contact-label { font-family: var(--font-sans); font-size: 9px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.28); display: block; margin-bottom: 6px; }
.bk-sidebar__contact-val { font-family: var(--font-sans); font-size: 12px; color: rgba(255,255,255,0.5); display: block; text-decoration: none; line-height: 1.9; transition: color 0.2s; }
.bk-sidebar__contact-val:hover { color: var(--gold); }

/* Content pane */
.bk-content { background: #fff; padding: 44px 44px 36px; display: flex; flex-direction: column; }

/* Progress */
.bk-prog { display: flex; align-items: flex-start; gap: 0; margin-bottom: 44px; }
.bk-prog__item { display: flex; flex-direction: column; align-items: center; gap: 8px; flex: 1; }
.bk-prog__item:last-child { flex: 0 0 auto; }
.bk-prog__dot { width: 28px; height: 28px; border-radius: 50%; border: 2px solid #E2DDD8; background: #fff; display: flex; align-items: center; justify-content: center; transition: background 0.25s, border-color 0.25s; position: relative; z-index: 1; }
.bk-prog__dot .bk-prog__num { font-family: var(--font-sans); font-size: 11px; font-weight: 600; color: #C8C2BB; }
.bk-prog__dot svg { display: none; width: 13px; height: 13px; color: #fff; }
.bk-prog__dot.is-active { border-color: var(--gold); background: var(--gold); }
.bk-prog__dot.is-active .bk-prog__num { color: #fff; }
.bk-prog__dot.is-done { border-color: var(--gold); background: var(--gold); }
.bk-prog__dot.is-done .bk-prog__num { display: none; }
.bk-prog__dot.is-done svg { display: block; }
.bk-prog__label { font-family: var(--font-sans); font-size: 10px; font-weight: 500; letter-spacing: 0.06em; color: #C0BAB4; text-align: center; white-space: nowrap; }
.bk-prog__label.is-active { color: var(--dark); font-weight: 600; }
.bk-prog__connector { flex: 1; height: 2px; background: #E8E4DF; margin-top: 13px; min-width: 20px; transition: background 0.3s; }
.bk-prog__connector.is-done { background: var(--gold); }

/* Steps */
.bk-steps { flex: 1; position: relative; overflow: hidden; display: flex; flex-direction: column; }
.bk-step { display: none; flex-direction: column; flex: 1; }
.bk-step.bk-step--active { display: flex; animation: bkAppear 0.3s ease forwards; }
.bk-step.bk-step--exit-l { display: flex; animation: bkExitL 0.22s ease forwards; }
.bk-step.bk-step--exit-r { display: flex; animation: bkExitR 0.22s ease forwards; }
.bk-step.bk-step--enter-r { display: flex; animation: bkEnterR 0.3s ease forwards; }
.bk-step.bk-step--enter-l { display: flex; animation: bkEnterL 0.3s ease forwards; }
@keyframes bkAppear  { from { opacity:0; transform:translateY(10px); } to { opacity:1; transform:translateY(0); } }
@keyframes bkExitL   { to   { opacity:0; transform:translateX(-28px); } }
@keyframes bkExitR   { to   { opacity:0; transform:translateX(28px); } }
@keyframes bkEnterR  { from { opacity:0; transform:translateX(28px);  } to { opacity:1; transform:translateX(0); } }
@keyframes bkEnterL  { from { opacity:0; transform:translateX(-28px); } to { opacity:1; transform:translateX(0); } }

.bk-step__head { margin-bottom: 28px; }
.bk-step__eyebrow { font-family: var(--font-sans); font-size: 10px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 8px; }
.bk-step__title { font-family: var(--font-serif); font-size: 1.55rem; font-weight: 600; color: var(--dark); line-height: 1.2; margin: 0 0 8px; }
.bk-step__title em { font-style: italic; color: var(--gold); }
.bk-step__sub { font-family: var(--font-sans); font-size: 0.875rem; color: #888; line-height: 1.6; margin: 0; }
.bk-step__nav { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 28px; }

/* Buttons */
.bk-btn { font-family: var(--font-sans); font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; border: none; cursor: pointer; display: inline-flex; align-items: center; gap: 8px; padding: 12px 24px; border-radius: 2px; transition: background 0.2s, color 0.2s, gap 0.2s, opacity 0.2s; text-decoration: none; }
.bk-btn--primary { background: var(--gold); color: #fff; }
.bk-btn--primary:hover { background: #9a7350; }
.bk-btn--primary:disabled { opacity: 0.45; cursor: not-allowed; pointer-events: none; }
.bk-btn--ghost { background: transparent; color: #999; padding-left: 0; }
.bk-btn--ghost:hover { color: var(--dark); }
.bk-btn svg { width: 14px; height: 14px; flex-shrink: 0; }
.bk-req { color: var(--gold); }

/* Service cards */
.bk-svc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.bk-svc { background: #fff; border: 2px solid #EAE6E0; border-radius: 3px; padding: 22px 20px; text-align: left; cursor: pointer; transition: border-color 0.2s, background 0.2s, box-shadow 0.2s; position: relative; }
.bk-svc:hover { border-color: rgba(172,131,93,0.5); box-shadow: 0 4px 20px rgba(172,131,93,0.1); }
.bk-svc.is-on { border-color: var(--gold); background: rgba(172,131,93,0.04); }
.bk-svc__icon { width: 40px; height: 40px; border-radius: 50%; background: rgba(172,131,93,0.1); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.bk-svc__icon svg { width: 18px; height: 18px; color: var(--gold); }
.bk-svc__badge { position: absolute; top: 14px; right: 14px; font-family: var(--font-sans); font-size: 9px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); border: 1.5px solid rgba(172,131,93,0.35); border-radius: 99px; padding: 3px 10px; }
.bk-svc__duration { font-family: var(--font-sans); font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: #AAA; display: block; margin-bottom: 5px; }
.bk-svc__title { font-family: var(--font-serif); font-size: 1rem; font-weight: 600; color: var(--dark); margin: 0 0 8px; }
.bk-svc__desc { font-family: var(--font-sans); font-size: 0.82rem; line-height: 1.6; color: #888; margin: 0; }

/* Calendar */
.bk-schedule { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; flex: 1; }
.bk-cal__legend { display: flex; gap: 12px; margin-bottom: 10px; flex-wrap: wrap; }
.bk-cal__leg { font-family: var(--font-sans); font-size: 10px; color: #888; display: inline-flex; align-items: center; gap: 4px; }
.bk-cal__leg-dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }
.bk-cal__leg-dot--avail { background: #22c55e; }
.bk-cal__leg-dot--busy  { background: #ef4444; }
.bk-cal__leg-dot--off   { background: #D8D4CF; }
.bk-cal__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.bk-cal__nav { width: 30px; height: 30px; border: 1.5px solid #E8E4DF; border-radius: 50%; background: none; cursor: pointer; display: flex; align-items: center; justify-content: center; color: #888; font-size: 18px; transition: border-color 0.2s, color 0.2s; line-height: 1; }
.bk-cal__nav:hover:not(:disabled) { border-color: var(--gold); color: var(--gold); }
.bk-cal__nav:disabled { opacity: 0.3; cursor: not-allowed; }
.bk-cal__month-year { font-family: var(--font-serif); font-size: 1rem; font-weight: 600; color: var(--dark); }
.bk-cal__wkdays { display: grid; grid-template-columns: repeat(7,1fr); margin-bottom: 6px; }
.bk-cal__wkday { font-family: var(--font-sans); font-size: 9px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: #C0BAB4; text-align: center; padding: 4px 0; }
.bk-cal__grid { display: grid; grid-template-columns: repeat(7,1fr); gap: 2px; }
.bk-cal__cell { aspect-ratio: 1; border-radius: 50%; background: none; border: none; font-family: var(--font-sans); font-size: 12px; cursor: pointer; transition: background 0.15s, color 0.15s; display: flex; align-items: center; justify-content: center; }
.bk-cal__day.is-avail { color: var(--dark); }
.bk-cal__day.is-avail:hover { background: rgba(172,131,93,0.12); }
.bk-cal__day.is-low { color: #f59e0b; }
.bk-cal__day.is-low:hover { background: rgba(245,158,11,0.1); }
.bk-cal__day.is-busy { color: #ef4444; opacity: 0.5; cursor: not-allowed; }
.bk-cal__day.is-today { border: 1.5px solid rgba(172,131,93,0.4); }
.bk-cal__day.is-sel { background: var(--gold) !important; color: #fff !important; }
.bk-cal__day.is-off { color: #D8D4CF; cursor: not-allowed; }

/* Time slots */
.bk-slots-wrap { display: flex; flex-direction: column; overflow: hidden; }
.bk-slots__date { font-family: var(--font-serif); font-size: 0.95rem; font-weight: 600; color: var(--dark); margin-bottom: 16px; min-height: 1.4em; }
.bk-slots__empty { font-family: var(--font-sans); font-size: 0.82rem; color: #BBB; font-style: italic; }
#bkSlots { overflow-y: auto; flex: 1; }
.bk-slots__group { margin-bottom: 16px; }
.bk-slots__label { font-family: var(--font-sans); font-size: 9px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: #C0BAB4; margin-bottom: 8px; }
.bk-slots__pills { display: flex; flex-wrap: wrap; gap: 6px; }
.bk-slot { font-family: var(--font-sans); font-size: 12px; font-weight: 500; color: var(--dark); border: 1.5px solid #E8E4DF; border-radius: 2px; padding: 7px 12px; background: none; cursor: pointer; transition: border-color 0.15s, background 0.15s, color 0.15s; }
.bk-slot:hover:not(.is-busy) { border-color: var(--gold); color: var(--gold); }
.bk-slot.is-on { background: var(--gold); border-color: var(--gold); color: #fff; }
.bk-slot.is-busy { color: #ddd; border-color: #f0ede8; cursor: not-allowed; text-decoration: line-through; }

/* Form */
.bk-form { display: flex; flex-direction: column; gap: 16px; }
.bk-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.bk-form__field { display: flex; flex-direction: column; gap: 6px; }
.bk-form__label { font-family: var(--font-sans); font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #777; }
.bk-form__input, .bk-form__textarea { font-family: var(--font-sans); font-size: 14px; color: var(--dark); background: #fff; border: 1.5px solid #E8E4DF; border-radius: 2px; padding: 11px 14px; outline: none; transition: border-color 0.2s, box-shadow 0.2s; width: 100%; box-sizing: border-box; }
.bk-form__input:focus, .bk-form__textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(172,131,93,0.1); }
.bk-form__textarea { resize: vertical; min-height: 96px; line-height: 1.6; }
.bk-form__error { background: #fee2e2; color: #dc2626; font-family: var(--font-sans); font-size: 13px; padding: 12px 16px; border-radius: 2px; border: 1px solid #fecaca; }

/* Confirmation */
.bk-confirm { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 16px 0; }
.bk-confirm__ring { width: 72px; height: 72px; border-radius: 50%; background: rgba(172,131,93,0.1); border: 2px solid rgba(172,131,93,0.25); display: flex; align-items: center; justify-content: center; margin-bottom: 22px; animation: bkRingIn 0.5s cubic-bezier(0.34,1.56,0.64,1) both; }
@keyframes bkRingIn { from { transform:scale(0.4); opacity:0; } to { transform:scale(1); opacity:1; } }
.bk-confirm__ring svg { width: 30px; height: 30px; color: var(--gold); }
.bk-confirm__title { font-family: var(--font-serif); font-size: 1.55rem; font-weight: 600; color: var(--dark); margin: 0 0 10px; }
.bk-confirm__sub { font-family: var(--font-sans); font-size: 0.875rem; color: #888; line-height: 1.6; margin: 0 0 28px; max-width: 340px; }
.bk-confirm__card { width: 100%; background: #F7F4F0; border-radius: 3px; padding: 0 24px; margin-bottom: 28px; text-align: left; }
.bk-cfm-row { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; border-bottom: 1px solid rgba(0,0,0,0.06); }
.bk-cfm-row:last-child { border-bottom: none; }
.bk-cfm-row__key { font-family: var(--font-sans); font-size: 10px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: #AAA; }
.bk-cfm-row__val { font-family: var(--font-sans); font-size: 13px; font-weight: 500; color: var(--dark); text-align: right; max-width: 62%; }

/* Responsive */
@media (max-width: 840px) {
  .bk-outer { padding: 0; align-items: stretch; min-height: 100vh; }
  .bk-card { grid-template-columns: 1fr; border-radius: 0; min-height: 100vh; box-shadow: none; }
  .bk-sidebar { display: none; }
  .bk-content { padding: 32px 24px 28px; }
}
@media (max-width: 600px) {
  .bk-svc-grid { grid-template-columns: 1fr; }
  .bk-schedule { grid-template-columns: 1fr; gap: 20px; }
  .bk-form__row { grid-template-columns: 1fr; }
  .bk-prog__label { display: none; }
  .bk-prog__dot { width: 24px; height: 24px; }
}
@media (max-width: 380px) {
  .bk-content { padding: 24px 18px; }
  .bk-step__title { font-size: 1.3rem; }
}

/* ── Policy Pages (Privacy Policy / Cookie Policy / Disclaimer) ── */
.pl-hero {
  background: var(--dark); padding: 96px 80px 72px;
  position: relative; overflow: hidden;
}
.pl-hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(172,131,93,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.pl-hero__inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
.pl-breadcrumb {
  display: flex; align-items: center; gap: 8px; margin-bottom: 28px;
  font-family: var(--font-sans); font-size: 12px; letter-spacing: 0.06em;
  color: rgba(255,255,255,0.4);
}
.pl-breadcrumb a { color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; }
.pl-breadcrumb a:hover { color: var(--gold); }
.pl-breadcrumb span[aria-current] { color: var(--gold); }
.pl-hero__eyebrow {
  font-family: var(--font-sans); font-size: 10px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); display: block; margin-bottom: 14px;
}
.pl-hero__title {
  font-family: var(--font-serif); font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 600; color: #fff; line-height: 1.2; margin: 0 0 16px;
}
.pl-hero__title em { font-style: italic; color: var(--gold); }
.pl-hero__date { font-family: var(--font-sans); font-size: 12px; color: rgba(255,255,255,0.36); letter-spacing: 0.06em; }

.pl-body { background: #fff; padding: 80px 80px 96px; }
.pl-body__inner { max-width: 860px; margin: 0 auto; }

.pl-content h2 {
  font-family: var(--font-serif); font-size: 1.25rem; font-weight: 600;
  color: var(--dark); line-height: 1.3; margin: 48px 0 14px;
  padding-bottom: 10px; border-bottom: 1px solid rgba(172,131,93,0.2);
}
.pl-content h2:first-child { margin-top: 0; }
.pl-content p { font-family: var(--font-sans); font-size: 0.9375rem; line-height: 1.9; color: #444; margin: 0 0 18px; }
.pl-content p:last-child { margin-bottom: 0; }
.pl-content ul { margin: 0 0 18px; padding-left: 0; list-style: none; }
.pl-content ul li {
  font-family: var(--font-sans); font-size: 0.9375rem; line-height: 1.8;
  color: #444; padding: 3px 0 3px 20px; position: relative;
}
.pl-content ul li::before {
  content: ''; position: absolute; left: 0; top: 13px;
  width: 5px; height: 5px; border-radius: 50%; background: var(--gold);
}
.pl-content a { color: var(--gold); }
.pl-content a:hover { text-decoration: underline; }

.pl-contact {
  margin-top: 52px; padding: 28px 32px;
  background: var(--cream, #F0EDE8);
  border-left: 3px solid var(--gold); border-radius: 2px;
}
.pl-contact__label {
  font-family: var(--font-sans); font-size: 10px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); display: block; margin-bottom: 12px;
}
.pl-contact p { font-family: var(--font-sans); font-size: 0.9rem; line-height: 1.8; color: #555; margin: 0; }
.pl-contact a { color: var(--dark); text-decoration: none; font-weight: 500; transition: color 0.2s; }
.pl-contact a:hover { color: var(--gold); }

/* Elementor wrapper strip for policy pages */
.elementor-section:has(.elementor-widget-gur_law_policy_page) .elementor-container,
.elementor-section:has(.elementor-widget-gur_law_policy_page) .elementor-column,
.elementor-section:has(.elementor-widget-gur_law_policy_page) .elementor-column-wrap,
.elementor-section:has(.elementor-widget-gur_law_policy_page) .elementor-widget-wrap { padding: 0 !important; margin: 0 !important; }
.elementor-widget-gur_law_policy_page,
.elementor-widget-gur_law_policy_page > .elementor-widget-container { padding: 0 !important; width: 100%; }

@media (max-width: 900px) { .pl-hero { padding: 72px 40px 56px; } .pl-body { padding: 60px 40px 72px; } }
@media (max-width: 640px) { .pl-hero { padding: 48px 24px 40px; } .pl-body { padding: 44px 24px 56px; } .pl-content h2 { font-size: 1.1rem; } }
