/* ---------- Basic resets ---------- */
:root{
  --gold:#c88f57;
  --dark-overlay: rgba(10,10,10,0.45);
  --container-width: 1200px;
  --max-width: 1400px;
  --accent: var(--gold);
  --font-sans: "Helvetica Neue", Arial, sans-serif;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:var(--font-sans);
  color:#fff;
  background:#111;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

/* ---------- layout helpers ---------- */
.container{
  width: min(94%, var(--container-width));
  margin: 0 auto;
}

/* ---------- Header ---------- */
.site-header{
  position: absolute;
  left:0;right:0;
  top:0;
  z-index:40;
  padding:18px 0;
}
.header-inner{
  display:flex;
  align-items:center;
  gap:16px;
  justify-content:space-between;
}

/* logo */
.logo{
  display:flex;
  gap:10px;
  align-items:center;
  text-decoration:none;
  color:#fff;
}
.logo-icon{
  width:56px;height:56px;
  background:linear-gradient(135deg,#6f4b2f,#d5b07a);
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:6px;
  font-size:20px;
  box-shadow:0 4px 10px rgba(0,0,0,0.3);
}
.logo-text{
  font-size:20px;
  font-weight:600;
  letter-spacing:0.6px;
}

/* nav (desktop) */
.main-nav{
  margin-left:20px;
  flex:1;
}
.nav-list{
  display:flex;
  gap:22px;
  list-style:none;
  margin:0;
  padding:0;
  justify-content:center;
}
.nav-list a{
  color:#fff;
  text-decoration:none;
  font-size:15px;
  padding:6px 4px;
}
.nav-list a:hover{color:var(--accent);}

/* header actions */
.header-actions{
  display:flex;
  align-items:center;
  gap:12px;
}
.search-btn{
  background:rgba(0,0,0,0.45);
  border:0;
  color:#fff;
  padding:10px 12px;
  border-radius:6px;
  font-size:16px;
  cursor:pointer;
}

/* ---------- Hamburger toggle (hidden checkbox) ---------- */
.nav-toggle{
  display:none;
}
.nav-toggle-label{
  display:none; /* shown in mobile rules below */
  width:52px;
  height:44px;
  background:linear-gradient(135deg,#b88650,#8a5b30);
  border-radius:6px;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
}
.hamburger-line{
  display:block;
  width:20px;height:2px;
  background:#fff;
  margin:3px 0;
  transition:transform .25s ease, opacity .25s ease;
}

/* ---------- Hero ---------- */
.hero{
  min-height:720px;
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  background-image: url('assets/hero.jpg');
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
}
.hero-overlay{
  position:absolute;inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.5) 45%, rgba(0,0,0,0.4) 100%);
  z-index:1;
}

/* content inside hero */
.hero-inner{
  position:relative;
  z-index:2;
  text-align:center;
  padding:80px 20px;
  width:100%;
  max-width:980px;
}
.eyebrow{
  margin:0 0 18px;
  font-size:16px;
  color:rgba(255,255,255,0.87);
  letter-spacing:3px;
  text-transform:capitalize;
}

/* headline */
.hero-title{
  margin:0;
  font-size:64px;
  line-height:1.02;
  font-weight:800;
  letter-spacing:-1px;
  color:#fff;
  text-shadow:0 6px 20px rgba(0,0,0,0.5);
}
.hero-title .accent{
  color:var(--accent);
  font-style:italic;
  font-weight:600;
}

/* CTA */
.hero-cta{
  display:inline-block;
  margin-top:36px;
  background: linear-gradient(180deg, #d9a66c, #b97941);
  color:#fff;
  padding:16px 34px;
  border-radius:40px;
  text-decoration:none;
  font-weight:600;
  box-shadow:0 8px 22px rgba(0,0,0,0.35);
}

/* decorative arrows */
.hero-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:56px;height:56px;
  border-radius:50%;
  border:0;
  background:rgba(255,255,255,0.06);
  color:#fff;
  font-size:32px;
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:3;
  cursor:pointer;
}
.hero-arrow.left{ left:28px; }
.hero-arrow.right{ right:28px; }

/* ---------- Responsive behavior ---------- */
@media (max-width: 980px){
  .hero{ min-height:640px; }
  .hero-title{ font-size:44px; }
  .nav-list{ display:none; }              /* hide desktop menu */
  .nav-toggle-label{ display:flex; }     /* show hamburger */
  .header-actions .cta-compact{ display:none; }
  .header-actions .search-btn{ padding:8px 10px }
}

/* mobile nav overlay */
@media (max-width: 900px){
  /* show nav as right-side panel when toggled */
  .main-nav{
    position:fixed;
    inset:0  -100% 0 0;
    width:320px;
    max-width:80%;
    background:linear-gradient(180deg, rgba(12,12,12,0.98), rgba(8,8,8,0.98));
    z-index:60;
    padding-top:90px;
    transition:right .28s ease, transform .28s ease;
    transform:translateX(100%);
    display:block;
    box-shadow: -12px 0 30px rgba(0,0,0,0.6);
  }
  .main-nav .nav-list{
    flex-direction:column;
    gap:14px;
    padding:24px;
    align-items:flex-start;
  }
  .main-nav .nav-list a{
    font-size:18px;
    padding:10px 8px;
    display:block;
    width:100%;
  }

  /* when checked, slide in the panel */
  .nav-toggle:checked ~ .main-nav{
    transform:translateX(0);
    right:0;
    left:auto;
    inset:auto 0 0 auto;
  }

  /* animate hamburger into X */
  .nav-toggle:checked + .nav-toggle-label .hamburger-line:nth-child(1){
    transform: translateY(7px) rotate(45deg);
  }
  .nav-toggle:checked + .nav-toggle-label .hamburger-line:nth-child(2){
    opacity:0;
  }
  .nav-toggle:checked + .nav-toggle-label .hamburger-line:nth-child(3){
    transform: translateY(-7px) rotate(-45deg);
  }

  /* ensure header is above hero overlay */
  .site-header{ position:fixed; top:12px; left:0; right:0; padding:12px 0; background: #000;}
}

/* small screens */
@media (max-width:480px){
  .hero{ min-height:520px; background-position: center 20%; }
  .hero-title{ font-size:28px; line-height:1.08; }
  .eyebrow{ font-size:13px; }
  .hero-cta{ padding:12px 20px; font-size:15px; }
   .logo-icon{ width:44px;height:44px; font-size:18px }
  .header-inner{ gap:8px }
}


/* Hamburger Button */
.hamburger {
  display: none;
  flex-direction: column;
  width: 40px;
  height: 40px;
  justify-content: center;
  align-items: center;
  background: #b88650;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  z-index: 999;
}

.hamburger span {
  width: 22px;
  height: 2px;
  background: #fff;
  margin: 3px 0;
  transition: 0.3s;
}

/* Active hamburger -> X */
.hamburger.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}
/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  border: none;
  border-radius: 6px;
  background: #b88650;
  cursor: pointer;
  z-index: 3000;
}
.hamburger span {
  width: 22px;
  height: 3px;
  background: #fff;
  margin: 3px 0;
  transition: 0.3s;
}

/* ACTIVE (X) */
.hamburger.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* MOBILE NAV (hidden by default) */
.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  height: 100%;
  background: #111;
  padding-top: 100px;
  transform: translateX(100%);   /* <-- THIS HIDES THE MENU */
  transition: transform 0.3s ease;
  z-index: 2500;
}

.mobile-nav.open {
  transform: translateX(0);      /* <-- SHOW MENU WHEN OPEN */
}

.mobile-nav ul {
  list-style: none;
  padding-left: 25px;
}
.mobile-nav ul li {
  margin-bottom: 18px;
}
.mobile-nav ul li a {
  color: #fff;
  font-size: 18px;
  text-decoration: none;
}

/* SHOW HAMBURGER ON MOBILE */
@media (max-width: 900px) {
  .hamburger {
    display: flex;
  }
}
/* ---- Desktop nav (horizontal) ---- */
.main-nav {
  display: block;
}
.main-nav .nav-list {
  display:flex;
  gap:22px;
  list-style:none;
  margin:0;
  padding:0;
  align-items:center;
}
.main-nav .nav-list a {
  color:#fff;
  text-decoration:none;
  font-size:15px;
  padding:6px 4px;
}

/* ---- Mobile hamburger (hidden on desktop) ---- */
.hamburger {
  display: none;              /* hidden by default, shown on mobile via media query */
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  border: none;
  border-radius: 6px;
  background: #b88650;
  cursor: pointer;
  z-index: 3000;
}
.hamburger span {
  width: 22px;
  height: 3px;
  background: #fff;
  margin: 3px 0;
  transition: transform .25s ease, opacity .25s ease;
}
.hamburger.active span:nth-child(1){ transform: translateY(6px) rotate(45deg); }
.hamburger.active span:nth-child(2){ opacity: 0; }
.hamburger.active span:nth-child(3){ transform: translateY(-6px) rotate(-45deg); }

/* ---- Mobile slide-in nav (hidden by default) ---- */
.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  height: 100%;
  background: #111;
  padding-top: 100px;
  transform: translateX(100%);   /* hidden */
  transition: transform 0.3s ease;
  z-index: 2500;
}
.mobile-nav.open {
  transform: translateX(0);      /* shown */
}
.mobile-nav ul { list-style:none; padding-left:25px; margin:0; }
.mobile-nav ul li { margin-bottom:18px; }
.mobile-nav ul li a { color:#fff; font-size:18px; text-decoration:none; }

/* ---- Responsive toggles ---- */
@media (max-width: 900px) {
  /* hide desktop nav on small screens */
  .main-nav { display: none !important; }

  /* show hamburger on mobile */
  .hamburger { display: flex; }

  /* allow mobile nav to show (we use .open class) */
  .mobile-nav { display:block; }
}

@media (min-width: 901px) {
  /* desktop: ensure mobile nav is off-screen and hamburger hidden */
  .mobile-nav { transform: translateX(100%); }
  .hamburger { display: none; }
}



:root{
  --bg: #0f0b0a;           /* dark background */
  --card-bg: rgba(255,255,255,0.02);
  --muted: #bfb6b0;
  --white: #fff;
  --gold: #caa06a;         /* primary gold */
  --gold-dark: #b07a44;
  --container-w: 1200px;
  --card-padding: 34px;
  --transition-fast: 220ms;
  --transition-medium: 320ms;
}

/* Section wrapper */
.features-section{
  background: var(--bg);
  padding: 64px 0;
  color: var(--white);
}
.features-container{
  width: min(94%, var(--container-w));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  align-items: stretch;
}

/* Card */
.feature-card{
  display: flex;
  gap: 22px;
  align-items: flex-start;
  background: var(--card-bg);
  padding: var(--card-padding);
  border: 2px solid transparent;
  border-radius: 6px;
  transition: transform var(--transition-medium) ease,
              box-shadow var(--transition-medium) ease,
              border-color var(--transition-fast) ease,
              background var(--transition-fast) ease;
  position: relative;
  overflow: visible;
  min-height: 170px;
}

/* icon box */
.icon-wrap{
  width: 72px;
  height: 72px;
  flex: 0 0 72px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(202,160,106,0.14), rgba(176,122,68,0.08));
  box-shadow: 0 6px 20px rgba(0,0,0,0.45);
  position: relative;
  transition: box-shadow var(--transition-medium) ease, transform var(--transition-medium) ease;
}

/* small icon images inside box */
.icon-wrap img{
  width: 36px;
  height: 36px;
  display:block;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.6));
}

/* Title + description */
.feature-title{
  margin: 4px 0 12px 0;
  font-size: 22px;
  line-height: 1.05;
  color: var(--white);
  font-weight: 700;
}
.feature-desc{
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
  font-size: 15px;
  max-width: 52ch;
}

/* Hover / Focus styles (desktop mouse + keyboard) */
.feature-card:hover,
.feature-card:focus-within{
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 24px 60px rgba(0,0,0,0.55);
  background: linear-gradient(180deg, rgba(255,255,255,0.015), rgba(255,255,255,0.008));
}

/* icon glow and pseudo frame */
.feature-card:hover .icon-wrap,
.feature-card:focus-within .icon-wrap{
  transform: translateX(0) translateZ(0);
  box-shadow:
    0 20px 40px rgba(0,0,0,0.6),
    0 8px 28px rgba(186,137,80,0.12),
    0 0 36px rgba(202,160,106,0.15);
}

/* golden inner frame lines on hover (top and bottom) */
 

/* show lines when hovered */
.feature-card:hover::before,
.feature-card:focus-within::before,
.feature-card:hover::after,
.feature-card:focus-within::after{
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  opacity: 1;
  transform: scaleX(1);
}

/* Make the leftmost card visually more framed (optional) */
.feature-card.highlight{
  border-color: transparent;
  box-shadow: none;
}

/* Accessibility: keyboard focus outline */
.feature-card a:focus,
.feature-card button:focus{
  outline: 2px solid rgba(202,160,106,0.22);
  outline-offset: 4px;
}

/* ===== Responsive ===== */
@media (max-width: 1100px){
  .features-container{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px){
  .features-container{
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .feature-card{
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 26px;
    min-height: auto;
  }
  .icon-wrap{
    width: 84px;
    height: 84px;
    margin-bottom: 14px;
    flex: 0 0 auto;
  }
  .feature-body{ width:100%; }
  .feature-title{ font-size: 20px; }
  .feature-desc{ max-width: none; font-size: 15px; color: var(--muted); }
  /* Put the golden lines closer for mobile to avoid overflow */
  
}




/* About section ----------------------------------------------------------- */
:root{
  --white: #ffffff;
  --muted: #8f8a87;
  --gold: #caa06a;
  --gold-dark: #b07a44;
  --bg-white: #faf8f6;
  --container-w: 1200px;
  --section-gap: 56px;
  --max-side-width: 520px;
}

/* wrapper */
.about-section{
  background: #fff;
  padding: 64px 0;
  color: #111;
}
.about-grid{
  width: min(94%, var(--container-w));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px; /* left flexible, right fixed */
  align-items: start;
  gap: 42px;
  position: relative;
}

/* LEFT: content */
.about-content { padding-right: 12px; }

/* small kicker */
.kicker{
  color: var(--gold);
  margin: 0 0 14px 0;
  letter-spacing: 2px;
  font-size: 13px;
}

/* title */
.about-title{
  margin: 0 0 18px 0;
  font-size: 38px;
  line-height: 1.02;
  font-weight: 800;
  color: #111;
}
.about-title .accent{
  color: var(--gold);
  font-style: italic;
  font-weight: 700;
}

/* paragraphs */
.about-intro p{
  color: #444;
  font-size: 16px;
  line-height: 1.8;
  margin: 0 0 16px 0;
}

/* bullet-like list */
.about-list{
  list-style: disc;
  padding: 0;
  margin: 18px 0 22px 0;
  display: grid;
  /*grid-template-columns: 1fr 1fr;*/
  gap: 10px 28px;
  color: #222;
  font-weight: 600;
}
.about-list li{ color: #333; font-weight:600; }

/* contact line */
.about-contact{
  margin-top: 6px;
  font-size: 16px;
  color: #111;
}
.about-contact .phones{
  display:inline-block;
  margin-left: 10px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.6px;
}
.about-contact .or{ font-weight:400; margin: 0 8px; color:#666; }

/* signature area */
.signature{
  display:flex;
  align-items:center;
  gap:14px;
  margin-top: 24px;
}
.sig-img{ width:88px; height:auto; display:block; }
.sig-text .name{ font-weight:700; }
.sig-text .title{ color: var(--muted); font-size:14px; }

/* RIGHT: visual */
.about-visual{
  position: relative;
  height: 520px;  /* controls visual height on desktop */
}

/* background photo (right column) */
.visual-bg{
  position: absolute;
  inset: 0;
  right: -40px;       /* slight overlap to right like the design */
  background-size: cover;
  background-position: center;
  border-left: 0;
  filter: saturate(0.9) brightness(0.9);
  box-shadow: inset 0 0 0 0 rgba(0,0,0,0.1);
  border-radius: 2px;
}

/* years framed card overlay */
.years-card{
  position: absolute;
  left: -40px;   /* place it overlapping the left edge of the image area */
  top: 60px;
  width: 220px;
  height: 420px;
  background: rgba(255,255,255,0.95);
  border: 6px solid rgba(186,137,80,0.98);
  box-shadow: 0 12px 30px rgba(0,0,0,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateZ(0);
  z-index: 2;
}

/* inner content */
.years-inner{
  text-align: center;
  padding: 18px;
}
.years-number{
  font-size: 92px;
  font-weight:900;
  color: rgba(38,28,22,0.9);
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.years-text{
  margin-top: 6px;
  font-size: 16px;
  color: #222;
}

/* decorative thin border shadow (top-right highlight) */
.years-card::after{
  content: "";
  position: absolute;
  right: -6px;
  top: -6px;
  width: 14px;
  height: 14px;
  background: linear-gradient(180deg, rgba(255,255,255,0.6), rgba(255,255,255,0));
  transform: rotate(30deg);
  opacity: 0.15;
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px){
  .about-grid{ grid-template-columns: 1fr 360px; gap: 28px; }
  .about-visual{ height: 460px; }
  .years-card{ left: -28px; width: 200px; height: 380px; top: 48px; }
  .about-title{ font-size: 34px; }
}

@media (max-width: 820px){
  .about-grid{
    grid-template-columns: 1fr;    /* stack */
  }

  /* place visual below text */
  .about-visual{
    order: 2;
    height: 420px;
    margin-top: 26px;
  }
  .visual-bg{ right: 0; left: 0; border-radius: 4px; }

  .years-card{
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    top: -60px;
    width: 260px;
    height: 340px;
    margin-bottom: -40px; /* overlap with photo */
  }

  .about-content{ order: 1; padding-right: 0; }
  .about-title{ font-size: 28px; }
  .about-intro p{ font-size: 15px; line-height:1.7; }
   .sig-img{ width:72px; }
}

@media (max-width: 480px){
  .about-section{ padding: 32px 0; }
  .about-title{ font-size: 22px; line-height:1.08; }
  .years-card{ width: 220px; height: 300px; top: -48px; }
  .about-visual{ height: 320px; }
  .about-list li{ font-size: 14px; }
  .about-contact .phones{ display:block; margin-top:8px; font-size:16px; }
}



:root{
  --bg: #0b0b0b;
  --card-bg: rgba(255,255,255,0.02);
  --muted: #a7a1a0;
  --white: #ffffff;
  --gold: #caa06a;
  --gold-strong: #b07a44;
  --container-w: 1200px;
  --gap: 28px;
}

/* Section wrapper */
.practices-section{
  background: var(--bg);
  color: var(--white);
  padding: 64px 0 96px;
}
.container{
  width: min(94%, var(--container-w));
  margin: 0 auto;
}

/* heading */
.section-kicker{
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 2px;
  margin: 0 0 12px;
  text-transform: capitalize;
}
.section-title{
  margin: 0 0 36px;
  font-size: 36px;
  line-height: 1.05;
  font-weight: 800;
}
.section-title .accent{ color: var(--gold); font-style: italic; }

/* grid */
.practices-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 columns on desktop */
  gap: var(--gap);
}

/* card */
.practice-card{
  background: transparent;
  border: 2px dashed rgba(255,255,255,0.08);  /* dotted/dashed border look */
  padding: 36px 22px;
  text-align: center;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  transition: transform 260ms ease, background 200ms ease, border-color 220ms ease;
  position: relative;
  overflow: hidden;
}

/* icon */
.practice-card .icon{
  width: 68px;
  height: 68px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(202,160,106,0.06), rgba(176,122,68,0.04));
  box-shadow: 0 8px 22px rgba(0,0,0,0.6);
  margin-bottom: 18px;
  transition: box-shadow 260ms ease, transform 260ms ease;
}
.practice-card .icon img{
  width: 34px;
  height: 34px;
  display:block;
  filter: drop-shadow(0 6px 18px rgba(0,0,0,0.6));
}

/* title / text */
.pc-title{
  margin: 6px 0 10px;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
}
.pc-desc{
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  max-width: 36ch;
  margin: 0 auto;
}

/* hover/focus effect */
.practice-card:hover,
.practice-card:focus-within{
  transform: translateY(-8px);
  border-color: rgba(202,160,106,0.9);
  background: linear-gradient(180deg, rgba(255,255,255,0.01), rgba(255,255,255,0.005));
}
.practice-card:hover .icon,
.practice-card:focus-within .icon{
  box-shadow:
    0 26px 50px rgba(0,0,0,0.6),
    0 8px 26px rgba(186,137,80,0.12),
    0 0 32px rgba(202,160,106,0.12);
  transform: translateY(-4px);
}

/* dashed corners subtle */
.practice-card::before{
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px dashed rgba(255,255,255,0.04);
  pointer-events: none;
  border-radius: 2px;
}

/* Responsive */
@media (max-width: 1100px){
  .practices-grid{ grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .section-title{ font-size: 32px; }
}

@media (max-width: 700px){
  .practices-grid{ grid-template-columns: 1fr; gap: 18px; }
  .practice-card{ padding: 26px; min-height: auto; text-align: left; flex-direction: row; gap: 16px; align-items: center; }
  .practice-card .icon{ width:56px; height:56px; margin-bottom:0; flex: 0 0 56px; border-radius:8px; }
  .pc-title{ text-align: left; font-size:16px; margin:0; }
  .pc-desc{ text-align: left; margin:6px 0 0; max-width: none; font-size:14px; }
}

/* small screen tweaks */
@media (max-width: 420px){
  .container{ width: 94%; }
  .section-title{ font-size: 22px; }
  .practice-card{ padding:18px; }
  .practice-card .icon{ width:48px; height:48px; }
  .pc-title{ font-size:15px; }
  .pc-desc{ font-size:13px; }
}


/* ---------------- FS (FunStat) Scoped Styles ---------------- */
:root{
  --fs-bg: #ffffff;
  --fs-dark: #0f0b0a;
  --fs-gold: #caa06a;
  --fs-gold-2: #b07a44;
  --fs-muted: #7b7776;
  --fs-container: 1200px;
}

/* container wrapper (use unique names) */
.fs-section{
  background: var(--fs-bg);
  padding: 64px 0 88px;
  position: relative;
  overflow: visible;
  color: #111;
  font-family: "Helvetica Neue", Arial, sans-serif;
}
.fs-inner{
  width: min(94%, var(--fs-container));
  margin: 0 auto;
}

/* top grid */
.fs-topgrid{
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 36px;
  align-items: start;
}

/* left heading block */

.fs-kicker{
  color: var(--fs-gold);
  letter-spacing: 2px;
  font-size: 13px;
  margin: 0 0 14px;
  text-transform: capitalize;
}
.fs-title{
  margin: 0 0 18px;
  font-size: 36px;
  line-height: 1.02;
  font-weight: 800;
}
.fs-accent{ color: var(--fs-gold); font-style: italic; font-weight:700; }
.fs-decorbar{
  width: 56px; height: 6px;
  background: linear-gradient(90deg,var(--fs-gold-2),var(--fs-gold));
  margin: 18px 0 6px; border-radius:3px;
}

/* right columns */
.fs-textcols{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  color: #333;
  font-size: 15px;
  line-height: 1.9;
}
.fs-col{ margin:0; }

/* stats row - full width */
.fs-stats{
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  align-items: stretch;
}

/* individual stat card */
.fs-stat{
  height: 120px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 18px;
  border-radius: 4px;
  box-shadow: 0 10px 18px rgba(20,20,20,0.06);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
  position: relative;
  overflow: visible;
}

/* alternate color scheme */
.fs-stat:nth-child(odd){
  background: linear-gradient(90deg, var(--fs-gold), var(--fs-gold-2));
  color: #fff;
}
.fs-stat:nth-child(even){
  background: var(--fs-dark);
  color: #fff;
}

/* stat inner */
.fs-stat-inner{ text-align:center; width:100%; }
.fs-number{ font-size:32px; font-weight:900; line-height:1; }
.fs-label{ margin-top:6px; font-size:16px; font-weight:600; color:rgba(255,255,255,0.95); }

/* hover */
.fs-stat:hover{ transform: translateY(-8px); box-shadow: 0 26px 50px rgba(22,22,22,0.16); }

/* decorative art */
.fs-decor-left, .fs-decor-right{ position:absolute; pointer-events:none; opacity:0.12; }
.fs-decor-left{ left:0; bottom:10px; width:220px; transform:translateX(-40px); }
.fs-decor-right{ right:0; top:18px; width:160px; transform:translateX(40px); }

/* ---------------- Responsive ---------------- */
@media (max-width:1100px){
  .fs-topgrid{ grid-template-columns: 1fr 1fr; gap:20px; }
  .fs-textcols{ grid-template-columns: 1fr; font-size:15px; }
  .fs-stats{ grid-template-columns: repeat(2, 1fr); gap:18px; margin-top:36px; }
  .fs-title{ font-size:32px; }
}

@media (max-width:700px){
  .fs-topgrid{ grid-template-columns: 1fr; }
  .fs-textcols{ display:block; margin-top:18px; }
  .fs-textcols p{ margin:0 0 12px; color:#444; }
  .fs-stats{ grid-template-columns: 1fr; gap:14px; margin-top:28px; }
  .fs-stat{ height:110px; padding:14px; }
  .fs-number{ font-size:28px; }
  .fs-title{ font-size:26px; }
  .fs-decor-left, .fs-decor-right{ display:none; }
}

@media (max-width:420px){
  .fs-section{ padding:36px 0 56px; }
  .fs-title{ font-size:22px; }
  .fs-number{ font-size:22px; }
  .fs-label{ font-size:14px; }
}



/* ---------------- ATTORNEYS SLIDER (att- namespace) ---------------- */
:root{
  --att-dark: #13100f;
  --att-white: #fff;
  --att-muted: #9a9796;
  --att-gold: #caa06a;
  --att-container: 1200px;
}

/* Section */
.att-section{ background: var(--att-dark); padding: 68px 0; color: var(--att-white); }
.att-inner{ width: min(94%, var(--att-container)); margin: 0 auto; font-family: "Helvetica Neue", Arial, sans-serif; }

/* Top row */
.att-top{ display: grid; grid-template-columns: 1fr 420px; gap: 36px; margin-bottom: 28px; align-items:start; }
.att-kicker{ color: var(--att-gold); letter-spacing:2px; margin:0 0 12px; font-size:13px; text-transform:capitalize; }
.att-title{ font-size:34px; line-height:1.06; margin:0; font-weight:800; }
.att-accent{ color: var(--att-gold); font-style:italic; }
.att-decorbar{ width:56px; height:6px; background: linear-gradient(90deg,var(--att-gold), #b07a44); margin-top:16px; border-radius:3px; }
.att-desc{ color:#d6d4d3; font-size:15px; line-height:1.85; }

/* Slider container */
.att-slider-wrap{ position: relative; display:flex; align-items:center; gap:12px; margin-top:10px; }

/* Prev/Next buttons */
.att-btn{
  background: transparent;
  color: var(--att-white);
  border: 0;
  font-size: 34px;
  width:56px; height:56px;
  display:flex; align-items:center; justify-content:center;
  cursor:pointer;
}
.att-prev{ margin-left: -6px; }
.att-next{ margin-right: -6px; }

/* viewport & slider */
.att-slider-viewport{
  overflow: hidden;
  flex:1 1 auto;
}
.att-slider{
  display:flex;
  gap: 24px;
  transition: transform 320ms cubic-bezier(.22,.9,.36,1);
  will-change: transform;
  padding: 6px 0;
}

/* each slide */
.att-slide{
  flex: 0 0 auto; /* width set in JS or via CSS percentage */
  width: 25%;     /* default for 4 per view (desktop) */
  box-sizing: border-box;
}

/* card visual */
.att-card{
  position: relative;
  background: transparent;
  border-radius:6px;
  overflow: visible;
  transition: transform 260ms ease, box-shadow 260ms ease;
}
.att-card:hover{ transform: translateY(-8px); }

/* photo */
.att-photo{ width:100%; height:300px; object-fit:cover; display:block; border-radius:2px; }

/* info overlay box */
.att-info{
  position: relative;
  background: var(--att-white);
  color:#111;
  margin-top: 14px;
  border-radius:6px;
  padding: 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}
.att-name{ margin:0 0 6px; font-size:18px; font-weight:800; }
.att-role{ color: var(--att-muted); font-weight:600; font-size:14px; margin-left:6px; }
.att-short{ color:#444; margin: 6px 0 10px; font-size:14px; line-height:1.6; }

/* read more & bio */
.att-readmore{
  display:inline-block;
  background: transparent;
  border: none;
  color: var(--att-gold);
  font-weight:700;
  cursor:pointer;
  padding: 6px 0;
}
.att-bio{ margin-top:10px; color:#444; font-size:14px; line-height:1.7; }

/* When bio is hidden (hidden attribute applies) it won't show; when toggled we set attribute removed via JS */

/* Responsive breakpoints - change slide width for counts */
@media (max-width:1100px){
  .att-top{ grid-template-columns: 1fr 1fr; }
  .att-title{ font-size:28px; }
  .att-slide{ width:50%; } /* 2 slides per view */
  .att-photo{ height:260px; }
}

@media (max-width:760px){
  .att-top{ grid-template-columns: 1fr; }
  .att-slide{ width:100%; } /* 1 slide per view */
  .att-photo{ height:320px; }
  .att-info{ margin-top:10px; }
  .att-btn{ display: none; } /* hide arrows on small phones - swipe will work */
}

/* accessibility focus ring for buttons */
.att-btn:focus, .att-readmore:focus { outline: 3px solid rgba(202,160,106,0.18); outline-offset:2px; border-radius:3px; }



/* ---------------- Blog Section (blog- namespace) ---------------- */
:root{
  --blog-container: 1200px;
  --blog-dark: #111;
  --blog-muted: #7d7774;
  --blog-gold: #caa06a;
  --blog-white: #fff;
  --blog-shadow: 0 18px 40px rgba(17,17,17,0.08);
  --blog-radius: 6px;
  --blog-gap: 28px;
  --blog-font: "Helvetica Neue", Arial, sans-serif;
}

.blog-section{
  padding: 64px 0;
  background: #fff;
  color: #111;
  font-family: var(--blog-font);
}
.blog-inner{
  width: min(94%, var(--blog-container));
  margin: 0 auto;
}

/* top area */
.blog-top{
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 36px;
  align-items: start;
  margin-bottom: 36px;
}
.blog-kicker{
  color: var(--blog-gold);
  letter-spacing: 2px;
  margin: 0 0 12px;
  font-size: 13px;
  text-transform: capitalize;
}
.blog-title{
  margin:0 0 14px;
  font-size: 36px;
  line-height: 1.02;
  font-weight: 800;
}
.blog-accent{ color: var(--blog-gold); font-style: italic; }
.blog-decor{
  width: 56px;
  height: 6px;
  background: linear-gradient(90deg, #b07a44, var(--blog-gold));
  border-radius: 3px;
  margin-top: 16px;
}
.blog-intro{
  color: #444;
  font-size: 15px;
  line-height: 1.9;
}

/* cards grid */
.blog-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--blog-gap);
}

/* single card */
.blog-card{
  background: #fff;
  border-radius: var(--blog-radius);
  box-shadow: var(--blog-shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .26s ease, box-shadow .26s ease;
}
.blog-card:hover{ transform: translateY(-8px); box-shadow: 0 28px 70px rgba(17,17,17,0.12); }

/* media area */
.blog-media{
  position: relative;
  height: 220px;
  background:#eee;
}
.blog-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

/* overlay + plus button (optional) */
.blog-overlay{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  pointer-events:none; /* button uses pointer-events:auto if needed */
}
.blog-plus{
  pointer-events:auto;
  width:56px;height:56px;border-radius:50%;
  background: linear-gradient(180deg, var(--blog-gold), #b07a44);
  border: none;
  color:#fff;
  font-size:22px;
  box-shadow: 0 8px 28px rgba(176,122,68,0.18);
  cursor: pointer;
}

/* body */
.blog-body{
  padding: 20px 20px 28px;
}
.blog-meta{
  display:flex;
  gap:12px;
  align-items:center;
  color: var(--blog-muted);
  font-size: 13px;
  margin-bottom: 12px;
}
.blog-meta .meta-date::before{ content: "📅"; margin-right:6px; opacity:0.6; }
.blog-meta .meta-author::before{ content:"👤"; margin-right:6px; opacity:0.6; }

.blog-post-title{
  margin:0 0 16px;
  font-size: 20px;
  line-height: 1.12;
  color: #111;
  font-weight: 700;
}

/* CTA */
.blog-cta{
  display: inline-block;
  background: #111;
  color: #fff;
  padding: 10px 18px;
  border-radius: 28px;
  text-decoration:none;
  font-weight:700;
  box-shadow: 0 10px 30px rgba(17,17,17,0.08);
}

/* responsive */
@media (max-width:1100px){
  .blog-top{ grid-template-columns: 1fr 1fr; gap:20px; }
  .blog-grid{ grid-template-columns: repeat(2, 1fr); gap:22px; }
  .blog-media{ height: 200px; }
}

@media (max-width:700px){
  .blog-top{ grid-template-columns: 1fr; }
  .blog-grid{ grid-template-columns: 1fr; gap:18px; }
  .blog-media{ height: 260px; }
  .blog-title{ font-size: 26px; }
}

/* small phones */
@media (max-width:420px){
  .blog-inner{ width:94%; }
  .blog-title{ font-size:22px; }
  .blog-post-title{ font-size:18px; }
  .blog-cta{ padding:8px 14px; }
}


/* ------------------ Footer (ft- namespace) ------------------ */
:root{
  --ft-bg: #121010;
  --ft-text: #e6e2df;
  --ft-muted: #9b9593;
  --ft-accent: #caa06a;
  --ft-container: 1200px;
  --ft-gap: 28px;
  --ft-radius: 6px;
  --ft-font: "Helvetica Neue", Arial, sans-serif;
}

.ft-footer{
  background: var(--ft-bg);
  color: var(--ft-text);
  padding: 56px 0 20px;
  font-family: var(--ft-font);
}

/* inner three-column container */
.ft-inner{
  width: min(94%, var(--ft-container));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 260px 260px; /* left flexible, right two narrow columns */
  gap: var(--ft-gap);
  align-items: start;
}

/* Column 1: about */
.ft-col-about .ft-logo{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
  color:var(--ft-text);
  margin-bottom:18px;
}
.ft-logo-mark{
  display:inline-block;
  width:44px;height:44px;
  border-radius:8px;
  background: linear-gradient(135deg, var(--ft-accent), #b07a44);
  display:flex;align-items:center;justify-content:center;
  color:#fff;font-weight:700;font-size:18px;
  box-shadow: 0 8px 18px rgba(0,0,0,0.35);
}
.ft-logo-text{ font-size:20px; font-weight:600; font-style:italic; }

/* about paragraph */
.ft-about{
  margin: 0 0 18px;
  color: var(--ft-text);
  line-height:1.9;
  max-width: 46ch;
}

/* contact list */
.ft-contact{
  list-style:none;
  padding:0;
  margin: 6px 0 0;
}
.ft-contact li{
  display:flex;
  gap:10px;
  align-items:center;
  color:var(--ft-muted);
  margin-bottom:10px;
  font-size:15px;
}
.ft-contact a{ color:var(--ft-text); text-decoration:none; }
.ft-contact address{ font-style:normal; color:var(--ft-muted); }

/* Column headings and lists (cols 2 & 3) */
.ft-col{ padding-top:6px; }
.ft-heading{
  margin:0 0 16px;
  font-size:20px;
  letter-spacing:1px;
  color: var(--ft-text);
  font-weight:800;
}
.ft-list{
  list-style:none;
  padding:0;
  margin:0;
}
.ft-list li{
  margin-bottom:12px;
}
.ft-list a{
  color: var(--ft-muted);
  text-decoration:none;
  font-size:15px;
  transition: color 180ms ease;
}
.ft-list a:hover{ color: var(--ft-text); }

/* bottom bar */
.ft-bottom{
  width: min(94%, var(--ft-container));
  margin: 26px auto 0;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding-top:18px;
  border-top: 1px solid rgba(255,255,255,0.03);
}
.ft-copyright{ color: var(--ft-muted); font-size:14px; }
.ft-social a{
  color: var(--ft-muted);
  text-decoration:none;
  margin-left:14px;
  font-weight:700;
  font-size:14px;
}
.ft-social a:hover{ color: var(--ft-text); }

/* Responsive */
@media (max-width: 980px){
  .ft-inner{
    grid-template-columns: 1fr 1fr; /* two columns: about + stacked links/support */
  }
  /* move support below links by changing visual order (they remain separate semantically) */
  .ft-col-support{ order: 3; }
  .ft-col-links{ order: 2; }
  .ft-col-about{ order: 1; }
}

@media (max-width: 640px){
  .ft-inner{
    grid-template-columns: 1fr; /* stack */
    gap: 18px;
  }
  .ft-bottom{
    flex-direction: column;
    align-items:flex-start;
    gap:10px;
    padding-top:12px;
  }
  .ft-social a{ margin-left:0; margin-right:10px; }
}

/* Small tweaks for accessibility */
.ft-footer a:focus{ outline: 3px solid rgba(202,160,106,0.14); outline-offset: 4px; border-radius:4px; }


.attorneys-section {
  padding: 60px 0;
  background: #111;
  color: #fff;
}

.attorneys-section .subheading {
  font-size: 16px;
  letter-spacing: 1px;
  color: var(--gold);
  margin-bottom: 8px;
}

.section-title {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 40px;
}

.attorney-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* CARD */
.attorney-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  padding: 20px;
  gap: 25px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.25);
}

.attorney-card img {
  width: 130px;
  height: 130px;
  border-radius: 10px;
  object-fit: cover;
}

.attorney-card .info h3 {
  font-size: 20px;
  color: #000;
  margin: 0 0 6px;
}

.attorney-card .role {
  font-size: 15px;
  color: #666;
  font-weight: 400;
}

.attorney-card .bio {
  margin-top: 10px;
  color: #444;
  font-size: 15px;
  line-height: 1.55;
}

/* Mobile */
@media(max-width: 600px) {
  .attorney-card {
    flex-direction: column;
    text-align: center;
  }

  .attorney-card img {
    width: 160px;
    height: 160px;
  }

  .attorney-card .bio {
    text-align: center;
  }
}
