    :root {
      --color-cream: #FAF8F5;
      --color-charcoal: #1A1A1A;
      --color-gold: #9E7A47;
      --color-gold-light: #C4A66A;
      --color-warm-gray: #6B6560;
      --color-light-gray: #E8E4DF;
      --font-heading: 'Cormorant Garamond', Georgia, serif;
      --font-body: 'Inter', -apple-system, sans-serif;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    img {
      display: block;
      max-width: 100%;
    }

    html {
      scroll-behavior: smooth;
    }

    section[id] {
      scroll-margin-top: 120px;
    }

    body {
      font-family: var(--font-body);
      background-color: var(--color-cream);
      color: var(--color-charcoal);
      line-height: 1.6;
      overflow-x: hidden;
    }

    /* Utility Classes */
    .container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 clamp(18px, 3vw, 24px);
    }

    /* Navigation */
    .nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      padding: 20px 0;
      transition: all 0.4s ease;
    }

    .nav.scrolled {
      background: rgba(250, 248, 245, 0.95);
      backdrop-filter: blur(10px);
      box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    }

    .nav-inner {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 24px;
    }

    .logo {
      display: inline-flex;
      align-items: center;
      text-decoration: none;
      line-height: 0;
    }

    .logo-mark {
      display: block;
      width: auto;
      height: 54px;
      max-width: min(220px, 32vw);
      object-fit: contain;
    }

    .footer-brand .logo-mark {
      height: 62px;
      max-width: min(240px, 56vw);
    }

    .nav-links {
      display: flex;
      flex-wrap: wrap;
      gap: 40px;
      list-style: none;
    }

    .nav-links a {
      font-size: 0.875rem;
      font-weight: 500;
      color: var(--color-charcoal);
      text-decoration: none;
      letter-spacing: 0.02em;
      text-transform: uppercase;
      position: relative;
      transition: color 0.3s ease;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 1px;
      background: var(--color-gold);
      transition: width 0.3s ease;
    }

    .nav-links a:hover::after {
      width: 100%;
    }

    .nav-links a:hover {
      color: var(--color-gold);
    }

    .nav-cta {
      padding: 12px 28px;
      background: var(--color-charcoal);
      color: var(--color-cream);
      font-size: 0.8rem;
      font-weight: 500;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      text-decoration: none;
      border: none;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .nav-cta:hover {
      background: var(--color-gold);
    }

    /* Mobile Menu */
    .mobile-toggle {
      display: none;
      flex-direction: column;
      gap: 6px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 4px;
    }

    .mobile-toggle span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--color-charcoal);
      transition: all 0.3s ease;
    }

    .mobile-toggle.active span:nth-child(1) {
      transform: rotate(45deg) translate(6px, 6px);
    }

    .mobile-toggle.active span:nth-child(2) {
      opacity: 0;
    }

    .mobile-toggle.active span:nth-child(3) {
      transform: rotate(-45deg) translate(6px, -6px);
    }

    .mobile-menu {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: var(--color-cream);
      z-index: 999;
      padding: 100px 24px 40px;
      opacity: 0;
      visibility: hidden;
      transition: all 0.4s ease;
      flex-direction: column;
      gap: 28px;
    }

    .mobile-menu.active {
      opacity: 1;
      visibility: visible;
    }

    .mobile-menu-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0;
      width: 100%;
      max-width: 360px;
    }

    .mobile-menu-links li {
      border-bottom: 1px solid rgba(33, 31, 29, 0.08);
    }

    .mobile-menu-links a {
      font-family: var(--font-heading);
      font-size: 1.55rem;
      color: var(--color-charcoal);
      text-decoration: none;
      display: block;
      padding: 18px 0;
      transition: color 0.3s ease, transform 0.3s ease;
    }

    .mobile-menu-links a:hover {
      color: var(--color-gold);
      transform: translateX(4px);
    }

    .mobile-menu-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      max-width: 360px;
      padding: 16px 24px;
      margin-top: 8px;
      background: linear-gradient(135deg, #1f1d1b 0%, #34302c 100%);
      color: var(--color-cream);
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      text-decoration: none;
      border-radius: 999px;
      box-shadow: 0 14px 30px rgba(33, 31, 29, 0.16);
      align-self: center;
      transition: all 0.3s ease;
    }

    .mobile-menu-cta:hover {
      background: var(--color-gold);
      transform: translateY(-1px);
      box-shadow: 0 18px 34px rgba(158, 122, 71, 0.22);
    }

    /* Hero Section */
    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      position: relative;
      padding-top: 100px;
      overflow: hidden;
    }

    .hero-bg {
      position: absolute;
      top: 0;
      right: 0;
      width: 50%;
      height: 100%;
      background: linear-gradient(135deg, var(--color-light-gray) 0%, var(--color-cream) 100%);
      z-index: -1;
    }

    .hero-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .hero-text,
    .hero-visual,
    .about-text,
    .about-image,
    .why-content,
    .why-image,
    .contact-info,
    .contact-form-wrapper,
    .footer-brand,
    .footer-column {
      min-width: 0;
    }

    .hero-text {
      max-width: 560px;
    }

    .hero-label {
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--color-gold);
      margin-bottom: 24px;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .hero-label::before {
      content: '';
      width: 40px;
      height: 1px;
      background: var(--color-gold);
    }

    .hero-title {
      font-family: var(--font-heading);
      font-size: clamp(3rem, 5vw, 4.5rem);
      font-weight: 500;
      line-height: 1.1;
      color: var(--color-charcoal);
      margin-bottom: 28px;
      letter-spacing: -0.02em;
    }

    .hero-title em {
      font-style: italic;
      color: var(--color-gold);
    }

    .hero-desc {
      font-size: 1.1rem;
      color: var(--color-warm-gray);
      margin-bottom: 40px;
      line-height: 1.8;
    }

    .hero-buttons {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 16px 32px;
      font-size: 0.85rem;
      font-weight: 500;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      text-decoration: none;
      border: none;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .btn-primary {
      background: var(--color-charcoal);
      color: var(--color-cream);
    }

    .btn-primary:hover {
      background: var(--color-gold);
      transform: translateY(-2px);
    }

    .btn-secondary {
      background: transparent;
      color: var(--color-charcoal);
      border: 1px solid var(--color-charcoal);
    }

    .btn-secondary:hover {
      background: var(--color-charcoal);
      color: var(--color-cream);
    }

    .hero-visual {
      position: relative;
      height: clamp(420px, 52vw, 600px);
    }

    .hero-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 4px;
    }

    .hero-stats {
      position: absolute;
      bottom: 40px;
      left: -60px;
      background: var(--color-cream);
      padding: 32px 40px;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
      display: flex;
      flex-wrap: wrap;
      gap: 48px;
    }

    .stat {
      text-align: center;
      min-width: 0;
    }

    .stat-number {
      font-family: var(--font-heading);
      font-size: 2.5rem;
      font-weight: 600;
      color: var(--color-gold);
      display: block;
    }

    .stat-label {
      font-size: 0.75rem;
      color: var(--color-warm-gray);
      display: block;
      overflow-wrap: anywhere;
      text-transform: uppercase;
      letter-spacing: 0.1em;
    }

    /* About Section */
    .about {
      padding: 140px 0;
      background: var(--color-cream);
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 100px;
      align-items: center;
    }

    .about-image {
      position: relative;
    }

    .about-image img {
      width: 100%;
      height: clamp(360px, 42vw, 500px);
      object-fit: cover;
      border-radius: 4px;
    }

    .about-image::before {
      content: '';
      position: absolute;
      top: -20px;
      left: -20px;
      width: 100%;
      height: 100%;
      border: 2px solid var(--color-gold);
      z-index: -1;
      border-radius: 4px;
    }

    .section-label {
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--color-gold);
      margin-bottom: 20px;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .section-label::before {
      content: '';
      width: 40px;
      height: 1px;
      background: var(--color-gold);
    }

    .section-title {
      font-family: var(--font-heading);
      font-size: clamp(2.5rem, 4vw, 3.5rem);
      font-weight: 500;
      line-height: 1.15;
      color: var(--color-charcoal);
      margin-bottom: 28px;
    }

    .about-text p {
      color: var(--color-warm-gray);
      margin-bottom: 20px;
      line-height: 1.8;
    }

    .about-features {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      margin-top: 40px;
    }

    .about-feature {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .about-feature svg {
      width: 20px;
      height: 20px;
      color: var(--color-gold);
      flex-shrink: 0;
    }

    .about-feature span {
      font-size: 0.9rem;
      color: var(--color-charcoal);
    }

    /* Get To Know Us */
    .get-to-know {
      padding: 140px 0;
      background: var(--color-light-gray);
    }

    .get-to-know .container {
      max-width: 1880px;
    }

    .get-to-know-header {
      text-align: center;
      max-width: 760px;
      margin: 0 auto 72px;
    }

    .get-to-know-header .section-label {
      justify-content: center;
    }

    .get-to-know-header p {
      color: var(--color-warm-gray);
      line-height: 1.8;
    }

    .get-to-know-grid {
      display: grid;
      grid-template-columns: repeat(5, minmax(260px, 1fr));
      gap: 16px;
    }

    .get-to-know-card {
      display: flex;
      flex-direction: column;
      width: 100%;
      background: rgba(250, 248, 245, 0.92);
      border: 1px solid rgba(158, 122, 71, 0.12);
      overflow: hidden;
      box-shadow: 0 14px 32px rgba(0, 0, 0, 0.045);
      border-radius: 12px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .get-to-know-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 24px 50px rgba(0, 0, 0, 0.08);
    }

    .get-to-know-image {
      width: auto;
      max-width: 100%;
      height: 185px;
      display: block;
      object-fit: contain;
      margin: 14px auto 0;
    }

    .get-to-know-content {
      padding: 18px 20px 20px;
      display: flex;
      flex-direction: column;
      gap: 9px;
      height: 100%;
    }

    .get-to-know-role {
      display: inline-block;
      margin-bottom: 6px;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--color-gold);
    }

    .get-to-know-card h3 {
      font-family: var(--font-heading);
      font-size: 1.12rem;
      font-weight: 500;
      color: var(--color-charcoal);
      margin-bottom: 6px;
    }

    .get-to-know-card p {
      color: var(--color-warm-gray);
      font-size: 0.8rem;
      line-height: 1.45;
      margin: 0;
    }

    .get-to-know-note {
      margin-top: auto;
      padding-top: 12px;
      border-top: 1px solid rgba(158, 122, 71, 0.14);
      font-size: 0.74rem;
      color: var(--color-charcoal);
    }

    /* Practice Areas */
    .practice-areas {
      padding: 140px 0;
      background: var(--color-charcoal);
    }

    .practice-areas .section-label {
      color: var(--color-gold-light);
    }

    .practice-areas .section-label::before {
      background: var(--color-gold-light);
    }

    .practice-areas .section-title {
      color: var(--color-cream);
    }

    .practice-header {
      text-align: center;
      max-width: 700px;
      margin: 0 auto 80px;
    }

    .practice-header p {
      color: rgba(255, 255, 255, 0.7);
      margin-top: 20px;
    }

    .practice-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 24px;
    }

    .practice-card {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.08);
      padding: 48px 36px;
      transition: all 0.4s ease;
      position: relative;
      overflow: hidden;
    }

    .practice-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 3px;
      background: var(--color-gold);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.4s ease;
    }

    .practice-card:hover::before {
      transform: scaleX(1);
    }

    .practice-card:hover {
      background: rgba(255, 255, 255, 0.06);
      transform: translateY(-8px);
    }

    .practice-icon {
      width: 56px;
      height: 56px;
      border: 1px solid var(--color-gold);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 28px;
      color: var(--color-gold);
    }

    .practice-icon svg {
      width: 24px;
      height: 24px;
    }

    .practice-card h3 {
      font-family: var(--font-heading);
      font-size: 1.5rem;
      font-weight: 500;
      color: var(--color-cream);
      margin-bottom: 16px;
    }

    .practice-card p {
      color: rgba(255, 255, 255, 0.6);
      font-size: 0.95rem;
      line-height: 1.7;
    }

    .practice-card-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-top: 24px;
      color: var(--color-gold);
      font-size: 0.85rem;
      font-weight: 500;
      text-decoration: none;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      transition: gap 0.3s ease;
    }

    .practice-card:hover .practice-card-link {
      gap: 14px;
    }

    /* Why Choose Us */
    .why-us {
      padding: 140px 0;
      background: var(--color-cream);
    }

    .why-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .why-content {
      max-width: 520px;
    }

    .why-list {
      margin-top: 48px;
    }

    .why-item {
      display: flex;
      gap: 20px;
      padding: 28px 0;
      border-bottom: 1px solid var(--color-light-gray);
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .why-item:first-child {
      border-top: 1px solid var(--color-light-gray);
    }

    .why-item:hover {
      padding-left: 12px;
    }

    .why-number {
      font-family: var(--font-heading);
      font-size: 1.5rem;
      color: var(--color-gold);
      font-weight: 600;
      line-height: 1;
    }

    .why-item-content h4 {
      font-family: var(--font-heading);
      font-size: 1.25rem;
      color: var(--color-charcoal);
      margin-bottom: 8px;
    }

    .why-item-content p {
      color: var(--color-warm-gray);
      font-size: 0.9rem;
      line-height: 1.6;
    }

    .why-image {
      position: relative;
    }

    .why-image img {
      width: 100%;
      height: clamp(420px, 50vw, 600px);
      object-fit: cover;
      border-radius: 4px;
    }

    .why-badge {
      position: absolute;
      bottom: 40px;
      right: -40px;
      background: var(--color-gold);
      color: var(--color-cream);
      padding: 32px;
      text-align: center;
    }

    .why-badge-number {
      font-family: var(--font-heading);
      font-size: 3rem;
      font-weight: 600;
      display: block;
    }

    .why-badge-text {
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
    }

    /* Values Section */
    .values-section {
      padding: 140px 0;
      background: var(--color-charcoal);
    }

    .values-header {
      text-align: center;
      max-width: 700px;
      margin: 0 auto 80px;
    }

    .values-header .section-label {
      color: var(--color-gold-light);
    }

    .values-header .section-label::before {
      background: var(--color-gold-light);
    }

    .values-header .section-title {
      color: var(--color-cream);
    }

    .values-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 32px;
    }

    .value-card {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.08);
      padding: 48px 36px;
      text-align: center;
      transition: all 0.4s ease;
    }

    .value-card:hover {
      background: rgba(255, 255, 255, 0.06);
      transform: translateY(-4px);
    }

    .value-icon {
      width: 64px;
      height: 64px;
      border: 1px solid var(--color-gold);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 24px;
      color: var(--color-gold);
    }

    .value-icon svg {
      width: 28px;
      height: 28px;
    }

    .value-card h3 {
      font-family: var(--font-heading);
      font-size: 1.5rem;
      font-weight: 500;
      color: var(--color-cream);
      margin-bottom: 16px;
    }

    .value-card p {
      color: rgba(255, 255, 255, 0.6);
      font-size: 0.95rem;
      line-height: 1.7;
    }

    @media (max-width: 1024px) {
      .values-grid {
        grid-template-columns: 1fr;
        gap: 24px;
      }
    }

    /* Google Reviews */
    .testimonials {
      padding: 60px 0;
      background: var(--color-light-gray);
    }

    .testimonials-header {
      text-align: center;
      max-width: 600px;
      margin: 0 auto 20px;
    }

    .google-reviews-widget {
      max-width: 1100px;
      margin: 0 auto;
    }

    .review-cta {
      max-width: 760px;
      margin: 16px auto 0;
      padding: clamp(18px, 2.5vw, 24px);
      text-align: center;
      background:
        radial-gradient(circle at top left, rgba(196, 166, 106, 0.22), transparent 34%),
        var(--color-cream);
      border: 1px solid rgba(158, 122, 71, 0.24);
      border-radius: 28px;
      box-shadow: 0 24px 60px rgba(24, 22, 20, 0.08);
    }

    .review-cta-stars {
      display: inline-block;
      margin-bottom: 12px;
      color: var(--color-gold);
      font-size: 1.35rem;
      letter-spacing: 0.18em;
    }

    .review-cta p {
      max-width: 520px;
      margin: 0 auto 24px;
      color: var(--color-warm-gray);
      font-size: 1rem;
    }

    .review-cta-button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 15px 28px;
      background: var(--color-charcoal);
      color: var(--color-cream);
      border-radius: 999px;
      font-size: 0.82rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-decoration: none;
      text-transform: uppercase;
      box-shadow: 0 16px 32px rgba(26, 26, 26, 0.18);
      transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
    }

    .review-cta-button:hover {
      background: var(--color-gold);
      transform: translateY(-3px);
      box-shadow: 0 18px 36px rgba(158, 122, 71, 0.24);
    }

    /* Contact Section */
    .contact {
      padding: 140px 0;
      background: var(--color-cream);
    }

    .contact-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
      gap: 80px;
      align-items: start;
    }

    .contact-info h2 {
      font-family: var(--font-heading);
      font-size: 2.5rem;
      color: var(--color-charcoal);
      margin-bottom: 20px;
    }

    .contact-info > p {
      color: var(--color-warm-gray);
      margin-bottom: 40px;
      line-height: 1.8;
    }

    .contact-details {
      margin-bottom: 40px;
    }

    .contact-item {
      display: flex;
      gap: 16px;
      margin-bottom: 24px;
    }

    .contact-item-icon {
      width: 48px;
      height: 48px;
      background: var(--color-light-gray);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .contact-item-icon svg {
      width: 20px;
      height: 20px;
      color: var(--color-gold);
    }

    .contact-item-content h4 {
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--color-warm-gray);
      margin-bottom: 4px;
    }

    .contact-item-content p,
    .contact-item-content a {
      color: var(--color-charcoal);
      text-decoration: none;
      font-weight: 500;
      overflow-wrap: anywhere;
      transition: color 0.3s ease;
    }

    .contact-item-content a:hover {
      color: var(--color-gold);
    }

    .contact-hours {
      background: var(--color-light-gray);
      padding: 28px;
      border-radius: 4px;
    }

    .contact-hours h4 {
      font-family: var(--font-heading);
      font-size: 1.25rem;
      color: var(--color-charcoal);
      margin-bottom: 16px;
    }

    .contact-hours p {
      color: var(--color-warm-gray);
      font-size: 0.9rem;
      line-height: 1.8;
    }

    .contact-form-wrapper {
      background: var(--color-charcoal);
      padding: 34px 36px;
      border-radius: 18px;
      max-width: 520px;
      justify-self: start;
      box-shadow: 0 24px 60px rgba(15, 15, 15, 0.14);
    }

    .contact-form-wrapper h3 {
      font-family: var(--font-heading);
      font-size: 1.45rem;
      color: var(--color-cream);
      margin-bottom: 10px;
    }

    .contact-form-wrapper > p {
      color: rgba(255, 255, 255, 0.6);
      margin-bottom: 22px;
      max-width: 28ch;
    }

    .form-group {
      margin-bottom: 24px;
    }

    .form-row {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 20px;
    }

    .form-group label {
      display: block;
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: rgba(255, 255, 255, 0.6);
      margin-bottom: 8px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      padding: 16px 20px;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      color: var(--color-cream);
      font-family: var(--font-body);
      font-size: 1rem;
      border-radius: 4px;
      transition: all 0.3s ease;
    }

    .form-group input::placeholder,
    .form-group textarea::placeholder {
      color: rgba(255, 255, 255, 0.3);
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      outline: none;
      border-color: var(--color-gold);
      background: rgba(255, 255, 255, 0.08);
    }

    .form-group select {
      appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%239E7A47' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 16px center;
      cursor: pointer;
    }

    .form-group select option {
      background: var(--color-charcoal);
      color: var(--color-cream);
    }

    .form-group textarea {
      min-height: 140px;
      resize: vertical;
    }

    .form-submit {
      width: auto;
      min-width: 240px;
      padding: 14px 24px;
      background: var(--color-gold);
      color: var(--color-cream);
      display: inline-block;
      font-family: var(--font-body);
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      border: none;
      cursor: pointer;
      transition: all 0.3s ease;
      border-radius: 999px;
      text-align: center;
      text-decoration: none;
    }

    .form-submit:hover {
      background: var(--color-gold-light);
      transform: translateY(-2px);
    }

    .form-note {
      margin-top: 20px;
      font-size: 0.8rem;
      color: rgba(255, 255, 255, 0.4);
      text-align: center;
    }

    /* Footer */
    .footer {
      background: var(--color-charcoal);
      padding: 80px 0 40px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: minmax(0, 2fr) repeat(3, minmax(0, 1fr));
      gap: 60px;
      padding-bottom: 60px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-brand .logo {
      color: var(--color-cream);
      margin-bottom: 20px;
      display: inline-block;
    }

    .footer-brand p {
      color: rgba(255, 255, 255, 0.6);
      font-size: 0.9rem;
      line-height: 1.8;
      max-width: 300px;
    }

    .footer-social {
      display: flex;
      gap: 12px;
      margin-top: 24px;
    }

    .footer-social a {
      width: 40px;
      height: 40px;
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255, 255, 255, 0.6);
      transition: all 0.3s ease;
    }

    .footer-social a:hover {
      background: var(--color-gold);
      border-color: var(--color-gold);
      color: var(--color-cream);
    }

    .footer-social a.is-disabled,
    .footer-links a.is-disabled {
      opacity: 0.45;
      pointer-events: none;
      cursor: default;
    }

    .footer-column h4 {
      font-family: var(--font-heading);
      font-size: 1.125rem;
      color: var(--color-cream);
      margin-bottom: 24px;
    }

    .footer-column ul {
      list-style: none;
    }

    .footer-column li {
      margin-bottom: 12px;
    }

    .footer-column a {
      color: rgba(255, 255, 255, 0.6);
      text-decoration: none;
      font-size: 0.9rem;
      transition: color 0.3s ease;
    }

    .footer-column a:hover {
      color: var(--color-gold);
    }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 40px;
    }

    .footer-bottom p {
      color: rgba(255, 255, 255, 0.4);
      font-size: 0.85rem;
      overflow-wrap: anywhere;
    }

    .footer-links {
      display: flex;
      gap: 24px;
    }

    .footer-links a {
      color: rgba(255, 255, 255, 0.4);
      text-decoration: none;
      font-size: 0.85rem;
      transition: color 0.3s ease;
    }

    .footer-links a:hover {
      color: var(--color-gold);
    }

    /* Scroll to Top */
    .scroll-top {
      position: fixed;
      bottom: 30px;
      right: 30px;
      width: 50px;
      height: 50px;
      background: var(--color-gold);
      color: var(--color-cream);
      border: none;
      border-radius: 50%;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
      z-index: 100;
    }

    .scroll-top.visible {
      opacity: 1;
      visibility: visible;
    }

    .scroll-top:hover {
      background: var(--color-charcoal);
      transform: translateY(-4px);
    }

    /* Animations */
    .fade-up {
      opacity: 0;
      transform: translateY(40px);
      transition: all 0.8s ease;
    }

    .fade-up.visible {
      opacity: 1;
      transform: translateY(0);
    }

    @media (max-width: 1200px) {
      .nav-links {
        gap: 24px;
      }

      .hero-content,
      .about-grid,
      .why-grid,
      .contact-grid {
        gap: 56px;
      }

      .practice-card,
      .value-card,
      .contact-form-wrapper {
        padding-left: 28px;
        padding-right: 28px;
      }

      .footer-grid {
        gap: 40px;
      }
    }

    /* Responsive */
    @media (max-width: 1024px) {
      .about,
      .get-to-know,
      .practice-areas,
      .why-us,
      .values-section,
      .testimonials,
      .contact {
        padding: 110px 0;
      }

      .hero-content {
        grid-template-columns: 1fr;
        gap: 60px;
      }

      .hero-visual {
        height: 400px;
      }

      .hero-stats {
        left: 20px;
        bottom: 20px;
        padding: 24px 28px;
        gap: 28px;
      }

      .about-grid,
      .why-grid,
      .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
      }

      .get-to-know-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .contact-form-wrapper {
        max-width: 100%;
      }

      .practice-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
      }
    }

    @media (max-width: 768px) {
      .about,
      .get-to-know,
      .practice-areas,
      .why-us,
      .values-section,
      .testimonials,
      .contact {
        padding: 84px 0;
      }

      .nav {
        padding: 16px 0;
      }

      .nav-inner {
        gap: 16px;
      }

      .logo {
        max-width: 170px;
      }

      .logo-mark {
        height: 42px;
        max-width: 100%;
      }

      .nav-links,
      .nav-cta {
        display: none;
      }

      .mobile-toggle {
        display: flex;
      }

      .mobile-menu {
        display: block;
        padding: 92px 20px 36px;
      }

      .hero {
        padding-top: 80px;
        min-height: auto;
      }

      .hero-visual {
        position: relative;
        height: 340px;
        opacity: 1;
        transform: none;
      }

      .hero-bg {
        width: 100%;
        height: 50%;
        top: auto;
        bottom: 0;
      }

      .hero-stats {
        position: absolute;
        left: 16px;
        right: 16px;
        bottom: 16px;
        z-index: 2;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: auto;
        padding: 14px;
        gap: 12px;
        background: rgba(250, 248, 245, 0.94);
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
      }

      .stat {
        padding: 14px 10px;
        background: rgba(232, 228, 223, 0.45);
      }

      .hero-title {
        font-size: clamp(2.4rem, 11vw, 3.25rem);
      }

      .hero-desc {
        font-size: 1rem;
        line-height: 1.75;
      }

      .hero-buttons {
        flex-direction: column;
      }

      .btn {
        width: 100%;
        justify-content: center;
        padding: 15px 24px;
      }

      .hero-image {
        height: 340px;
      }

      .practice-grid {
        grid-template-columns: 1fr;
      }

      .about-features {
        grid-template-columns: 1fr;
      }

      .get-to-know-grid {
        grid-template-columns: 1fr;
      }

      .get-to-know-header {
        margin-bottom: 48px;
      }

      .get-to-know-card {
        max-width: 420px;
        margin: 0 auto;
      }

      .get-to-know-image {
        min-height: 0;
        height: 320px;
        aspect-ratio: 2 / 3;
      }

      .get-to-know-content {
        padding: 24px 22px 28px;
      }

      .contact-form-wrapper {
        padding: 28px 22px;
      }

      .form-submit {
        width: 100%;
        min-width: 0;
      }

      .testimonial-text {
        font-size: 1.2rem;
      }

      .why-item {
        gap: 14px;
        padding: 22px 0;
      }

      .form-row {
        grid-template-columns: 1fr;
      }

      .footer-grid {
        grid-template-columns: 1fr;
      }

      .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
      }

      .why-badge {
        right: 20px;
        bottom: 20px;
        padding: 20px 18px;
      }

      .about-image::before {
        display: none;
      }

      .scroll-top {
        right: 16px;
        bottom: 16px;
        width: 44px;
        height: 44px;
      }
    }

    @media (max-width: 520px) {
      .section-label,
      .hero-label {
        gap: 8px;
        letter-spacing: 0.14em;
      }

      .section-label::before,
      .hero-label::before {
        width: 24px;
      }

      .mobile-menu-links a {
        font-size: 1.65rem;
      }

      .about-image img,
      .why-image img {
        height: 300px;
      }

      .hero-visual {
        height: 300px;
      }

      .hero-image {
        height: 300px;
      }

      .contact-hours {
        padding: 18px;
      }

      .hero-stats {
        left: 12px;
        right: 12px;
        bottom: 12px;
        padding: 10px;
        gap: 10px;
      }

      .stat {
        padding: 12px 8px;
      }

      .stat-label {
        font-size: 0.68rem;
        letter-spacing: 0.08em;
      }

      .stat-number,
      .why-badge-number {
        font-size: 2.1rem;
      }

      .testimonial-card {
        padding: 28px 20px;
      }

      .contact-item {
        align-items: flex-start;
      }

      .footer {
        padding: 64px 0 32px;
      }
    }