/* ==========================================================================
   Panish Inspired Theme — Main Stylesheet
   Design inspired by panish.law
   ========================================================================== */

:root {
  --color-blue: #154d7d;
  --color-blue-dark: #0e3d65;
  --color-blue-accent: #2e4389;
  --color-orange: #cc5500;
  --color-orange-bright: #ea6a0f;
  --color-dark: #1b1a20;
  --color-gray: #717171;
  --color-gray-light: #d6d9dd;
  --color-bg-light: #f4f4f4;
  --color-white: #ffffff;
  --font-heading: "Khand", sans-serif;
  --font-body: "Open Sans", sans-serif;
  --max-width: 1495px;
  --header-height: 90px;
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  color: #000;
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--color-blue);
  text-decoration: underline;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--color-orange);
  text-decoration: none;
}

h1, h2, h3, h4 {
  font-style: normal;
  font-weight: 400;
  margin: 0 0 1rem;
}

.content {
  font-size: 15px;
  line-height: 25px;
  font-family: var(--font-body);
  color: #000;
  font-weight: 600;
}

@media (min-width: 768px) {
  .content { font-size: 16px; line-height: 30px; }
}

.content h2 {
  padding-bottom: 20px;
  font-size: 20px;
  line-height: 26px;
  color: var(--color-blue);
  font-weight: 800;
}

.content p { margin: 0 0 1.25rem; }

.button {
  display: inline-block;
  padding: 16px 32px;
  background: var(--color-orange-bright);
  color: var(--color-white) !important;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none !important;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
}

.button:hover {
  background: var(--color-orange);
  color: var(--color-white) !important;
}

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--color-white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 100%;
  padding: 12px 20px;
}

.header-desktop-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 20px;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.logo {
  text-decoration: none !important;
  display: block;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-blue);
  line-height: 1.2;
  max-width: 185px;
}

.logo-mobile { display: block; }
.logo-desktop { display: none; }

@media (min-width: 445px) {
  .logo-text { max-width: 275px; font-size: 20px; }
}

@media (min-width: 768px) {
  .logo-mobile { display: none; }
  .logo-desktop { display: block; }
  .logo-text { max-width: 245px; }
}

@media (min-width: 900px) {
  .logo-text { max-width: 275px; }
}

.translate-wrapper {
  display: none;
  gap: 8px;
}

.translate-wrapper a {
  font-size: 12px;
  font-weight: 700;
  color: var(--color-gray);
  text-decoration: none;
  text-transform: uppercase;
}

.translate-wrapper a:hover { color: var(--color-orange); }

@media (min-width: 1170px) {
  .translate-wrapper { display: flex; }
}

.header-right {
  display: none;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

@media (min-width: 1170px) {
  .header-right { display: flex; }
}

.free-consult-wrapper {
  text-align: right;
  font-size: 13px;
  line-height: 1.4;
}

.free-consult-wrapper a {
  color: var(--color-blue);
  font-weight: 800;
  text-decoration: none;
}

.free-consult-wrapper span:last-child {
  display: block;
  color: var(--color-gray);
  font-size: 12px;
}

.header-phone {
  display: flex;
  align-items: center;
  font-size: 24px;
  font-weight: 800;
  color: var(--color-orange-bright) !important;
  text-decoration: none !important;
}

.header-phone::before {
  content: "";
  display: inline-block;
  width: 36px;
  height: 36px;
  margin-right: 12px;
  border-radius: 50%;
  background: var(--color-orange-bright);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M6.6 10.8c1.4 2.8 3.8 5.1 6.6 6.6l2.2-2.2c.3-.3.7-.4 1-.2 1.1.4 2.3.6 3.6.6.6 0 1 .4 1 1V20c0 .6-.4 1-1 1-9.4 0-17-7.6-17-17 0-.6.4-1 1-1h3.5c.6 0 1 .4 1 1 0 1.3.2 2.5.6 3.6.1.3 0 .7-.2 1L6.6 10.8z'/%3E%3C/svg%3E");
  background-size: 18px;
  background-repeat: no-repeat;
  background-position: center;
}

/* Mobile menu toggle */
.menu-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}

@media (min-width: 1170px) {
  .menu-wrapper { margin-left: 0; }
}

.menu-bar {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--color-blue);
  transition: transform 0.3s ease;
}

.menu-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--color-blue);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Navigation overlay */
.primary-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: var(--color-blue);
  padding: 60px 30px 30px;
  transition: right 0.35s ease;
  overflow-y: auto;
  z-index: 1001;
}

.primary-nav.is-open { right: 0; }

.nav-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-close::before,
.nav-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--color-white);
}

.nav-close::before { transform: rotate(45deg); }
.nav-close::after { transform: rotate(-45deg); }

.primary-nav .menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.primary-nav .menu li {
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.primary-nav .menu a {
  display: block;
  padding: 16px 0;
  color: var(--color-white) !important;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 500;
  text-decoration: none;
  text-transform: uppercase;
}

.primary-nav .menu a:hover { color: var(--color-orange-bright) !important; }

.primary-nav .sub-menu {
  list-style: none;
  margin: 0;
  padding: 0 0 10px 16px;
}

.primary-nav .sub-menu a {
  font-size: 16px;
  padding: 10px 0;
  text-transform: none;
  font-family: var(--font-body);
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

.nav-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}

.page-container {
  padding-top: var(--header-height);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

#section-one {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--color-blue);
}

@media (min-width: 1170px) {
  #section-one { display: flex; flex-wrap: wrap; }
}

#sec-one-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 120px 25px 40px;
  overflow: hidden;
}

@media (min-width: 768px) {
  #sec-one-content { padding: 100px 40px 40px; }
}

@media (min-width: 1170px) {
  #sec-one-content {
    flex: 0 0 45%;
    text-align: left;
    padding: 180px 40px 60px 60px;
  }
}

#sec-one-content span { display: block; color: var(--color-white); }

#sec-one-subtitle {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 8px;
}

#sec-one-title {
  font-family: var(--font-heading);
  font-size: 52px;
  font-weight: 700;
  line-height: 0.95;
  text-transform: uppercase;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  #sec-one-subtitle { font-size: 40px; }
  #sec-one-title { font-size: 72px; }
}

@media (min-width: 1170px) {
  #sec-one-subtitle { font-size: 50px; }
  #sec-one-title { font-size: 90px; }
}

#sec-one-descrip {
  font-size: 15px;
  line-height: 1.6;
  font-weight: 600;
  max-width: 480px;
  margin: 0 auto 24px;
}

@media (min-width: 1170px) {
  #sec-one-descrip { margin: 0 0 24px; }
}

.free-consult-button { margin-bottom: 32px; }

.sec-one-languages { margin-top: 20px; }

.language-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.8) !important;
  margin-bottom: 12px;
}

.language-slider {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: none;
}

.language-slider::-webkit-scrollbar { display: none; }

.language-item {
  flex-shrink: 0;
  padding: 8px 16px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 4px;
}

.language {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-white);
  white-space: nowrap;
}

/* Hero image slider */
#hero-slider {
  position: relative;
  width: 100%;
  min-height: 300px;
}

@media (min-width: 1170px) {
  #hero-slider {
    flex: 0 0 55%;
    min-height: 600px;
  }
}

.hero-slide {
  display: none;
  height: 100%;
}

.hero-slide.is-active { display: block; }

.hero-slide-inner {
  height: 300px;
  position: relative;
}

@media (min-width: 768px) { .hero-slide-inner { height: 450px; } }
@media (min-width: 1170px) { .hero-slide-inner { height: 600px; } }
@media (min-width: 1380px) { .hero-slide-inner { height: 700px; } }

img.hero {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

/* Case results ticker */
#sec-one-cr-wrapper {
  width: 100%;
  background: var(--color-blue);
  min-height: 160px;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.case-results-track {
  display: flex;
  transition: transform 0.5s ease;
}

.case-result-slide {
  flex: 0 0 100%;
  padding: 24px 30px;
  text-align: center;
}

@media (min-width: 768px) {
  .case-result-slide { flex: 0 0 50%; }
}

@media (min-width: 1170px) {
  .case-result-slide { flex: 0 0 33.333%; }
}

.case-result-title {
  display: block;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-orange-bright);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.case-result-content {
  color: var(--color-white) !important;
  font-size: 14px;
  line-height: 1.5;
}

.case-result-content strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 4px;
}

/* ==========================================================================
   News Section
   ========================================================================== */

#section-two {
  background: var(--color-bg-light);
  padding: 50px 25px;
}

@media (min-width: 768px) {
  #section-two { padding: 70px 60px; }
}

#sec-two-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  gap: 40px;
}

@media (min-width: 1170px) {
  #sec-two-inner { grid-template-columns: 1fr 1.5fr; gap: 60px; align-items: start; }
}

.playbook-badge {
  display: inline-block;
  background: var(--color-blue);
  color: var(--color-white);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 16px;
  margin-bottom: 16px;
}

#sec-two-left-title {
  display: block;
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 600;
  color: var(--color-blue);
  margin-bottom: 12px;
}

#sec-two-descrip {
  display: block;
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-gray);
  font-weight: 600;
}

#sec-two-title {
  display: block;
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 600;
  color: var(--color-blue);
  margin-bottom: 24px;
  text-transform: uppercase;
}

#sec-two-slide-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

.sec-two-slide a {
  text-decoration: none;
  display: block;
}

.sec-two-image-wrapper {
  aspect-ratio: 1;
  overflow: hidden;
  margin-bottom: 12px;
}

.sec-two-image-wrapper img,
.sec-two-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sec-two-placeholder {
  background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-blue-accent) 100%);
}

.sec-two-slide-label {
  display: block;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-orange);
  margin-bottom: 6px;
}

.sec-two-slide-title {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1.4;
}

/* ==========================================================================
   Intro Section
   ========================================================================== */

#section-three {
  padding: 47px 25px;
}

@media (min-width: 768px) { #section-three { padding: 65px 60px 100px; } }
@media (min-width: 1170px) { #section-three { padding: 94px 60px 100px; } }

#sec-three-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

#sec-three-header-wrapper { text-align: center; margin-bottom: 40px; }

#sec-three-subtitle {
  display: block;
  margin-bottom: 20px;
  font-size: 14px;
  letter-spacing: 1.4px;
  color: var(--color-orange);
  font-weight: 800;
  text-transform: uppercase;
}

#sec-three-header {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 600;
  color: var(--color-blue);
  line-height: 1.1;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  #sec-three-header { font-size: 48px; }
}

@media (min-width: 1170px) {
  #sec-three-header { font-size: 60px; }
}

#sec-three-content {
  display: grid;
  gap: 40px;
}

@media (min-width: 1170px) {
  #sec-three-content { grid-template-columns: 1.2fr 1fr; gap: 60px; }
}

#sec-three-video-thumbnail {
  position: relative;
  margin-bottom: 16px;
  overflow: hidden;
}

#sec-three-video-thumbnail img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--color-orange-bright);
  border: 3px solid var(--color-white);
  cursor: pointer;
}

.video-play-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 12px 0 12px 20px;
  border-color: transparent transparent transparent var(--color-white);
}

#sec-three-video-descrip {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-gray);
  font-style: italic;
}

.award-card {
  background: var(--color-bg-light);
  padding: 30px;
  margin-bottom: 20px;
  border-left: 4px solid var(--color-orange);
}

.award-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--color-blue);
  margin-bottom: 12px;
}

.award-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-gray);
  margin: 0;
}

/* ==========================================================================
   Reasons Section
   ========================================================================== */

#section-four {
  background: var(--color-dark);
  padding: 55px 20px 45px;
}

@media (min-width: 768px) { #section-four { padding: 85px 40px 105px; } }
@media (min-width: 1170px) { #section-four { padding: 105px 65px 117px; } }

#sec-four-inner {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

#sec-four-subtitle {
  display: block;
  font-size: 13px;
  letter-spacing: 1.5px;
  color: var(--color-orange);
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 16px;
}

#sec-four-title {
  display: block;
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 600;
  color: var(--color-white);
  line-height: 1.2;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  #sec-four-title { font-size: 40px; }
}

#sec-four-descrip {
  max-width: 700px;
  margin: 0 auto 40px;
  color: rgba(255,255,255,0.8) !important;
}

#sec-four-slider-wrapper {
  position: relative;
  padding: 0 50px;
}

#sec-four-slider {
  display: flex;
  gap: 20px;
  overflow: hidden;
}

.sec-four-slide {
  flex: 0 0 100%;
  transition: transform 0.4s ease;
}

@media (min-width: 768px) {
  .sec-four-slide { flex: 0 0 calc(50% - 10px); }
}

@media (min-width: 1170px) {
  .sec-four-slide { flex: 0 0 calc(33.333% - 14px); }
}

.sec-four-slide-reg {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 30px 24px;
  text-align: left;
  min-height: 220px;
}

.sec-four-slide-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  color: var(--color-orange);
  line-height: 1;
  margin-bottom: 12px;
}

.sec-four-slide-title {
  display: block;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  color: var(--color-white);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.sec-four-slide-excerpt {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.7);
  margin: 0;
}

.sec-four-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: var(--color-orange);
  border: none;
  cursor: pointer;
  z-index: 2;
}

.sec-four-arrow::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--color-white);
  border-bottom: 2px solid var(--color-white);
  margin: 12px auto;
}

.sec-four-arrow-left { left: 0; }
.sec-four-arrow-left::after { transform: rotate(135deg); margin-left: 16px; }
.sec-four-arrow-right { right: 0; }
.sec-four-arrow-right::after { transform: rotate(-45deg); margin-left: 10px; }

/* ==========================================================================
   Attorneys Section
   ========================================================================== */

#section-five {
  padding: 60px 25px;
  background: var(--color-white);
}

@media (min-width: 768px) { #section-five { padding: 80px 60px; } }

#sec-five-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  gap: 40px;
}

@media (min-width: 1170px) {
  #sec-five-inner { grid-template-columns: 1fr 1.5fr; gap: 60px; }
}

#sec-five-subtitle {
  display: block;
  font-size: 13px;
  letter-spacing: 1.5px;
  color: var(--color-orange);
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 16px;
}

#sec-five-title {
  display: block;
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 600;
  color: var(--color-blue);
  line-height: 1.15;
  text-transform: uppercase;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  #sec-five-title { font-size: 42px; }
}

.attorneys-grid h2 {
  font-family: var(--font-heading);
  font-size: 28px;
  color: var(--color-blue);
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.attorney-card {
  text-align: center;
  margin-bottom: 40px;
}

.attorney-photo {
  width: 200px;
  height: 240px;
  object-fit: cover;
  margin: 0 auto 16px;
}

.attorney-photo-placeholder {
  background: var(--color-bg-light);
}

.attorney-card h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--color-blue);
  margin-bottom: 12px;
}

/* ==========================================================================
   Testimonials
   ========================================================================== */

#section-six {
  background: var(--color-bg-light);
  padding: 60px 25px;
}

@media (min-width: 768px) { #section-six { padding: 80px 60px; } }

#sec-six-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

#sec-six-inner h2 {
  font-family: var(--font-heading);
  font-size: 32px;
  color: var(--color-blue);
  text-transform: uppercase;
  margin-bottom: 40px;
}

.testimonial-slide {
  margin: 0;
  padding: 30px;
}

.testimonial-slide p {
  font-size: 18px;
  line-height: 1.7;
  font-style: italic;
  color: var(--color-dark);
  margin-bottom: 20px;
}

.testimonial-slide cite {
  font-style: normal;
  font-weight: 800;
  color: var(--color-orange);
  font-size: 14px;
}

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

#section-seven {
  padding: 60px 25px;
}

@media (min-width: 768px) { #section-seven { padding: 80px 60px; } }

#sec-seven-inner {
  max-width: 900px;
  margin: 0 auto;
}

#sec-seven-inner h2 {
  font-family: var(--font-heading);
  font-size: 28px;
  color: var(--color-blue);
  text-align: center;
  margin-bottom: 32px;
}

.faq-item {
  border-bottom: 1px solid var(--color-gray-light);
  padding: 16px 0;
}

.faq-item summary {
  font-weight: 800;
  color: var(--color-blue);
  cursor: pointer;
  font-size: 16px;
  list-style: none;
  padding-right: 30px;
  position: relative;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 20px;
  color: var(--color-orange);
}

.faq-item[open] summary::after { content: "−"; }

.faq-item .content { padding-top: 12px; }

/* ==========================================================================
   Practice Areas
   ========================================================================== */

#section-eight {
  background: var(--color-blue);
  padding: 60px 25px;
  text-align: center;
}

@media (min-width: 768px) { #section-eight { padding: 80px 60px; } }

#sec-eight-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

#section-eight h2 {
  font-family: var(--font-heading);
  font-size: 32px;
  color: var(--color-white);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.practice-intro {
  color: rgba(255,255,255,0.85);
  max-width: 700px;
  margin: 0 auto 32px;
  font-weight: 600;
}

.practice-grid {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}

.practice-grid a {
  display: block;
  padding: 16px 20px;
  background: rgba(255,255,255,0.1);
  color: var(--color-white) !important;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.2s ease;
}

.practice-grid a:hover {
  background: var(--color-orange);
  color: var(--color-white) !important;
}

/* ==========================================================================
   Location
   ========================================================================== */

#section-nine {
  padding: 60px 25px;
}

@media (min-width: 768px) { #section-nine { padding: 80px 60px; } }

#sec-nine-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
}

#sec-nine-inner h2 {
  font-family: var(--font-heading);
  font-size: 32px;
  color: var(--color-blue);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.location-map {
  margin-top: 32px;
  aspect-ratio: 16/7;
  overflow: hidden;
}

.location-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ==========================================================================
   Footer / Consultation Form
   ========================================================================== */

.site-footer {
  background: var(--color-dark);
  color: var(--color-white);
}

.footer-top {
  padding: 60px 25px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

@media (min-width: 768px) { .footer-top { padding: 80px 40px; } }

.footer-form-title {
  display: block;
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 600;
  color: var(--color-white);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.footer-form-descrip {
  display: block;
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 32px;
  line-height: 1.5;
}

.form-success {
  background: rgba(46, 125, 50, 0.3);
  border: 1px solid #4caf50;
  padding: 16px;
  margin-bottom: 24px;
  border-radius: 4px;
}

.consultation-form {
  text-align: left;
}

.form-row {
  display: grid;
  gap: 16px;
  margin-bottom: 16px;
}

@media (min-width: 600px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}

.form-field label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
  margin-bottom: 6px;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.05);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 15px;
  border-radius: 0;
  -webkit-appearance: none;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(255,255,255,0.4);
}

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

.form-field-full { margin-bottom: 16px; }

.button-submit {
  width: 100%;
  margin-top: 8px;
  padding: 18px;
  font-size: 15px;
}

.form-note {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin-top: 12px;
  text-align: center;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 40px 25px;
}

.footer-bottom-col-wrapper {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  gap: 30px;
}

@media (min-width: 768px) {
  .footer-bottom-col-wrapper { grid-template-columns: 1fr 1fr; }
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--color-white);
  margin-bottom: 12px;
}

.footer-col p,
.footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}

.footer-col a { color: var(--color-orange-bright) !important; text-decoration: none; }

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

.footer-menu a {
  display: block;
  padding: 6px 0;
  color: rgba(255,255,255,0.7) !important;
  text-decoration: none;
  font-size: 14px;
}

.footer-menu a:hover { color: var(--color-orange) !important; }

.footer-copyright {
  max-width: var(--max-width);
  margin: 30px auto 0;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

/* ==========================================================================
   Internal Pages
   ========================================================================== */

.internal-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 25px 80px;
}

.internal-banner {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 3px solid var(--color-orange);
}

.internal-banner h1 {
  font-family: var(--font-heading);
  font-size: 36px;
  color: var(--color-blue);
  text-transform: uppercase;
}

.post-label {
  display: block;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-orange);
  margin-bottom: 8px;
}

.archive-grid {
  display: grid;
  gap: 24px;
}

@media (min-width: 600px) {
  .archive-grid { grid-template-columns: repeat(2, 1fr); }
}

.archive-card {
  border: 1px solid var(--color-gray-light);
  overflow: hidden;
}

.archive-card a {
  text-decoration: none;
  color: inherit;
  display: block;
}

.archive-card h2 {
  font-size: 18px;
  padding: 16px;
  color: var(--color-blue);
}

.archive-card img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

/* Sticky header state */
.site-header.is-scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}
