/* ========================================================
   STYLE.CSS — Law Office of Alexander J. Cerbo, Esq.
   Colors: #0B243E (bg) | #F6C752 (gold) | #FADF9A (text)
   Fonts:  Playfair Display (headings) | Lato (body/nav)
   All font sizes in px per project rules.
======================================================== */


/* ========================================================
   RESET & BASE
======================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #0B243E;
  color: #FADF9A;
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

address {
  font-style: normal;
}

/* ========================================================
   SHARED SECTION UTILITIES
======================================================== */
.section-overline {
  display: block;
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 4px;
  line-height: 1.4;
  color: #F6C752;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.5px;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 18px;
}

.gold-rule {
  width: 60px;
  height: 3px;
  background-color: #F6C752;
  margin-bottom: 36px;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}


/* ========================================================
   HEADER SECTION
======================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(11, 36, 62, 0.97);
  border-bottom: 1px solid rgba(246, 199, 82, 0.15);
  transition: background-color 300ms ease, box-shadow 300ms ease, padding 300ms ease;
}

.site-header.header-scrolled {
  background-color: rgba(7, 22, 38, 0.99);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.header-inner.header-scrolled {
  height: 72px;
}

/* Logo */
.header-logo {
  flex-shrink: 0;
}

.logo-img {
  height: 100px;
  width: auto;
  display: block;
  transition: opacity 200ms ease;
}

.logo-img:hover {
  opacity: 0.88;
}

/* Navigation */
.main-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 2px;
  line-height: 1.4;
  color: #FADF9A;
  text-transform: uppercase;
  padding: 8px 14px;
  border-bottom: 2px solid transparent;
  transition: color 200ms ease, border-color 200ms ease;
}

.nav-link:hover,
.nav-link.active {
  color: #F6C752;
  border-bottom-color: #F6C752;
}

/* LinkedIn Icon in Header */
.header-linkedin {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FADF9A;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(250, 223, 154, 0.3);
  border-radius: 4px;
  transition: color 200ms ease, border-color 200ms ease, background-color 200ms ease;
}

.header-linkedin:hover {
  color: #F6C752;
  border-color: #F6C752;
  background-color: rgba(246, 199, 82, 0.08);
}

/* Hamburger Button (hidden on desktop) */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  width: 42px;
  height: 42px;
  order: 3;
}

.ham-bar {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #F6C752;
  border-radius: 2px;
  transition: transform 280ms ease, opacity 280ms ease;
}

.hamburger.ham-open .ham-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.ham-open .ham-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.ham-open .ham-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


/* ========================================================
   HERO SECTION
======================================================== */
.hero-section {
  position: relative;
  height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 90px;
}

/* Slideshow */
.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 2000ms ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(7, 22, 40, 0.65) 0%,
    rgba(7, 22, 40, 0.78) 50%,
    rgba(7, 22, 40, 0.85) 100%
  );
  z-index: 1;
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 860px;
}

.hero-pre-title {
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  font-weight: 300;
  font-style: normal;
  letter-spacing: 6px;
  line-height: 1.4;
  color: #FADF9A;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.hero-name {
  font-family: 'Playfair Display', serif;
  font-size: 58px;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 1px;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 22px;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
}

.hero-gold-rule {
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, transparent, #F6C752, transparent);
  margin: 0 auto 22px;
}

.hero-slogan {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.5px;
  line-height: 1.4;
  color: #F6C752;
  margin-bottom: 14px;
}

.hero-sub {
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  font-weight: 300;
  font-style: normal;
  letter-spacing: 1.2px;
  line-height: 1.6;
  color: #FADF9A;
  text-transform: uppercase;
  margin-bottom: 36px;
}

/* Hero CTA Button */
.btn-hero {
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 3px;
  line-height: 1.4;
  color: #0B243E;
  text-transform: uppercase;
  background-color: #F6C752;
  padding: 16px 44px;
  border: 2px solid #F6C752;
  border-radius: 2px;
  transition: background-color 220ms ease, color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.btn-hero:hover {
  background-color: transparent;
  color: #F6C752;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(246, 199, 82, 0.25);
}

/* Slideshow Dots */
.slide-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 10px;
  align-items: center;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(250, 223, 154, 0.4);
  border: 1px solid rgba(250, 223, 154, 0.6);
  cursor: pointer;
  padding: 0;
  transition: background-color 300ms ease, transform 300ms ease;
}

.dot.active {
  background-color: #F6C752;
  border-color: #F6C752;
  transform: scale(1.25);
}

.dot:hover {
  background-color: rgba(246, 199, 82, 0.7);
}


/* ========================================================
   SECTION 1: PRACTICE AREAS
======================================================== */
.section-practice {
  background-color: #071626;
  padding: 90px 0 100px;
}

.section-heading-block {
  text-align: center;
  margin-bottom: 56px;
}

.section-heading-block .gold-rule {
  margin: 0 auto 0;
}

/* Practice Cards Grid */
.practice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.practice-card {
  background-color: #0d2540;
  border: 1px solid rgba(246, 199, 82, 0.12);
  border-radius: 4px;
  padding: 44px 36px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 280ms ease, box-shadow 280ms ease, border-color 280ms ease;
}

.practice-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(246, 199, 82, 0.25);
  border-color: rgba(246, 199, 82, 0.35);
}

/* Featured (center) card */
.practice-card--featured {
  background-color: #0f2d50;
  border-color: rgba(246, 199, 82, 0.3);
  position: relative;
}


.practice-card--featured:hover {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(246, 199, 82, 0.5);
  border-color: #F6C752;
}

/* Icon */
.practice-icon-wrap {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(246, 199, 82, 0.06);
  border: 1px solid rgba(246, 199, 82, 0.2);
  border-radius: 50%;
  margin-bottom: 24px;
  transition: background-color 280ms ease, border-color 280ms ease;
}

.practice-card:hover .practice-icon-wrap {
  background-color: rgba(246, 199, 82, 0.1);
  border-color: rgba(246, 199, 82, 0.4);
}

.practice-icon-wrap svg {
  width: 40px;
  height: 40px;
}

/* Card text */
.practice-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.3px;
  line-height: 1.25;
  color: #ffffff;
  margin-bottom: 14px;
}

.practice-card-rule {
  width: 36px;
  height: 2px;
  background-color: #F6C752;
  margin-bottom: 18px;
  transition: width 280ms ease;
}

.practice-card:hover .practice-card-rule {
  width: 56px;
}

.practice-card-text {
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.2px;
  line-height: 1.75;
  color: #FADF9A;
  margin-bottom: 28px;
  flex-grow: 1;
}

.practice-link {
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 2px;
  line-height: 1.4;
  color: #F6C752;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(246, 199, 82, 0.35);
  padding-bottom: 3px;
  transition: border-color 200ms ease, letter-spacing 200ms ease;
}

.practice-link:hover {
  border-bottom-color: #F6C752;
  letter-spacing: 2.5px;
}


/* ========================================================
   SECTION 2: FIRM INTRODUCTION
======================================================== */
.section-intro {
  background-color: #0B243E;
  padding: 100px 0;
}

.intro-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: center;
}

/* Text side */
.intro-text .section-title {
  font-size: 40px;
  line-height: 1.2;
}

.intro-body {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.2px;
  line-height: 1.85;
  color: #FADF9A;
  margin-bottom: 20px;
}

.intro-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 36px;
}

/* Outline button */
.btn-outline {
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 2.5px;
  line-height: 1.4;
  color: #FADF9A;
  text-transform: uppercase;
  padding: 14px 30px;
  border: 1px solid rgba(250, 223, 154, 0.4);
  border-radius: 2px;
  transition: color 220ms ease, border-color 220ms ease, background-color 220ms ease;
}

.btn-outline:hover {
  color: #F6C752;
  border-color: #F6C752;
  background-color: rgba(246, 199, 82, 0.06);
}

/* Gold filled button */
.btn-gold {
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 2.5px;
  line-height: 1.4;
  color: #0B243E;
  text-transform: uppercase;
  background-color: #F6C752;
  padding: 14px 30px;
  border: 2px solid #F6C752;
  border-radius: 2px;
  transition: background-color 220ms ease, color 220ms ease, transform 220ms ease;
}

.btn-gold:hover {
  background-color: #e6b83e;
  border-color: #e6b83e;
  transform: translateY(-2px);
}

/* Photo side */
.intro-photo-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.photo-frame {
  position: relative;
  border: 3px solid rgba(246, 199, 82, 0.3);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

.photo-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid rgba(246, 199, 82, 0.12);
  border-radius: 2px;
  pointer-events: none;
}

.attorney-photo {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: brightness(1.02) contrast(1.04);
}

.photo-caption {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}

.photo-name {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.5px;
  line-height: 1.3;
  color: #ffffff;
}

.photo-title {
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 2.5px;
  line-height: 1.4;
  color: #F6C752;
  text-transform: uppercase;
}


/* ========================================================
   FAT FOOTER SECTION
======================================================== */
.fat-footer {
  background-color: #061422;
  border-top: 1px solid rgba(246, 199, 82, 0.2);
  padding: 70px 0 60px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Footer Info Column */
.footer-logo-img {
  height: 52px;
  width: auto;
  margin-bottom: 16px;
  opacity: 0.92;
}

.footer-tagline {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.3px;
  line-height: 1.5;
  color: #F6C752;
  margin-bottom: 24px;
}

.footer-divider {
  width: 50px;
  height: 2px;
  background-color: rgba(246, 199, 82, 0.35);
  margin-bottom: 28px;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.footer-contact-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.footer-contact-label {
  font-family: 'Lato', sans-serif;
  font-size: 10px;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 2.5px;
  line-height: 1.4;
  color: #F6C752;
  text-transform: uppercase;
}

.footer-contact-value {
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.3px;
  line-height: 1.6;
  color: #FADF9A;
  transition: color 200ms ease;
}

a.footer-contact-value:hover {
  color: #F6C752;
}

.footer-address {
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.3px;
  line-height: 1.7;
  color: #FADF9A;
}

/* Footer LinkedIn */
.footer-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 1.5px;
  line-height: 1.4;
  color: #FADF9A;
  text-transform: uppercase;
  border: 1px solid rgba(250, 223, 154, 0.25);
  border-radius: 3px;
  padding: 9px 18px;
  transition: color 200ms ease, border-color 200ms ease, background-color 200ms ease;
}

.footer-linkedin:hover {
  color: #F6C752;
  border-color: #F6C752;
  background-color: rgba(246, 199, 82, 0.07);
}

/* Footer Map Column */
.footer-map-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.3px;
  line-height: 1.3;
  color: #ffffff;
  margin-bottom: 20px;
}

.map-wrapper {
  border: 1px solid rgba(246, 199, 82, 0.2);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 14px;
  line-height: 0;
}

.map-wrapper iframe {
  display: block;
  width: 100%;
  height: 280px;
}

.footer-map-address {
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.5px;
  line-height: 1.5;
  color: rgba(250, 223, 154, 0.7);
  text-align: center;
}


/* ========================================================
   COPYRIGHT BAR
======================================================== */
.copyright-bar {
  background-color: #040e18;
  border-top: 1px solid rgba(246, 199, 82, 0.1);
  padding: 16px 40px;
  text-align: center;
}

.copyright-text {
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.5px;
  line-height: 1.5;
  color: rgba(250, 223, 154, 0.55);
}

.copyright-link {
  color: #F6C752;
  font-weight: 700;
  border-bottom: 1px solid rgba(246, 199, 82, 0.3);
  transition: color 200ms ease, border-color 200ms ease;
}

.copyright-link:hover {
  color: #ffffff;
  border-bottom-color: #ffffff;
}


/* ========================================================
   MOBILE STICKY PHONE BAR
======================================================== */
.mobile-phone-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background-color: #F6C752;
  border-top: 2px solid #e6b83e;
}

.mobile-phone-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  font-weight: 900;
  font-style: normal;
  letter-spacing: 1.5px;
  line-height: 1.4;
  color: #0B243E;
  text-transform: uppercase;
  padding: 15px 20px;
  width: 100%;
}

.mobile-phone-link:hover {
  background-color: #e6b83e;
}


/* ========================================================
   RESPONSIVE — TABLET (max-width: 1024px)
======================================================== */
@media (max-width: 1024px) {

  .header-inner {
    padding: 0 24px;
  }

  .hero-name {
    font-size: 46px;
  }

  .hero-slogan {
    font-size: 24px;
  }

  .practice-grid {
    padding: 0 24px;
    gap: 20px;
  }

  .practice-card {
    padding: 36px 26px 32px;
  }

  .intro-inner {
    grid-template-columns: 1fr 360px;
    gap: 50px;
    padding: 0 24px;
  }

  .attorney-photo {
    height: 400px;
  }

  .footer-inner {
    padding: 0 24px;
    gap: 40px;
  }
}


/* ========================================================
   RESPONSIVE — MOBILE (max-width: 768px)
======================================================== */
@media (max-width: 768px) {

  /* Header */
  .header-inner {
    height: 70px;
    padding: 0 20px;
  }

  .logo-img {
    height: 46px;
  }

  .hamburger {
    display: flex;
  }

  .main-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    position: absolute;
    top: 70px;
    right: 0;
    left: 0;
    background-color: rgba(6, 20, 36, 0.98);
    border-top: 1px solid rgba(246, 199, 82, 0.15);
    border-bottom: 1px solid rgba(246, 199, 82, 0.15);
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 320ms ease, padding 320ms ease;
  }

  .main-nav.nav-open {
    max-height: 340px;
    padding: 16px 0;
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 0;
  }

  .nav-list li {
    width: 100%;
  }

  .nav-link {
    display: block;
    font-size: 13px;
    padding: 14px 24px;
    border-bottom: none;
    border-left: 3px solid transparent;
  }

  .nav-link:hover,
  .nav-link.active {
    border-bottom: none;
    border-left-color: #F6C752;
    background-color: rgba(246, 199, 82, 0.06);
  }

  .header-linkedin {
    margin: 12px 24px;
    width: auto;
    padding: 8px 18px;
    border-radius: 3px;
    gap: 8px;
  }

  .header-linkedin::after {
    content: 'LinkedIn';
    font-family: 'Lato', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
  }

  /* Hero */
  .hero-section {
    height: 700px;
    margin-top: 70px;
  }

  .hero-name {
    font-size: 34px;
    letter-spacing: 0.5px;
  }

  .hero-pre-title {
    font-size: 12px;
    letter-spacing: 4px;
  }

  .hero-slogan {
    font-size: 20px;
  }

  .hero-sub {
    font-size: 11px;
    letter-spacing: 0.8px;
  }

  .btn-hero {
    font-size: 12px;
    padding: 14px 36px;
    letter-spacing: 2.5px;
  }

  /* Practice Areas */
  .section-practice {
    padding: 70px 0 80px;
  }

  .practice-grid {
    grid-template-columns: 1fr;
    padding: 0 20px;
    gap: 20px;
  }

  .practice-card--featured::before {
    display: none;
  }

  .section-title {
    font-size: 30px;
  }

  /* Intro */
  .section-intro {
    padding: 70px 0;
  }

  .intro-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 0 20px;
  }

  .intro-text .section-title {
    font-size: 30px;
  }

  .intro-photo-col {
    order: -1;
  }

  .attorney-photo {
    height: 360px;
  }

  /* Footer */
  .fat-footer {
    padding: 56px 0 50px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 0 20px;
  }

  /* Copyright */
  .copyright-bar {
    padding: 14px 20px;
    padding-bottom: 80px;
  }

  /* Mobile phone bar */
  .mobile-phone-bar {
    display: block;
  }
}


/* ========================================================
   RESPONSIVE — SMALL MOBILE (max-width: 480px)
======================================================== */
@media (max-width: 480px) {

  .hero-name {
    font-size: 28px;
  }

  .hero-slogan {
    font-size: 18px;
  }

  .hero-content {
    padding: 0 16px;
  }

  .intro-cta-row {
    flex-direction: column;
  }

  .btn-outline,
  .btn-gold {
    width: 100%;
    text-align: center;
  }
}


/* ========================================================
   PAGE TITLE BAR (about.html + future inner pages)
======================================================== */
.page-title-bar {
  background-color: #061422;
  border-bottom: 1px solid rgba(246, 199, 82, 0.18);
  padding: 72px 40px 64px;
  text-align: center;
  margin-top: 90px;
}

.page-title-inner {
  max-width: 800px;
  margin: 0 auto;
}

.page-title-bar .section-overline {
  margin-bottom: 14px;
}

.page-title-heading {
  font-family: 'Playfair Display', serif;
  font-size: 50px;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.5px;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 20px;
}

.page-title-rule {
  width: 70px;
  height: 3px;
  background: linear-gradient(to right, transparent, #F6C752, transparent);
  margin: 0 auto 20px;
}

.page-title-sub {
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  font-weight: 300;
  font-style: normal;
  letter-spacing: 2.5px;
  line-height: 1.6;
  color: #FADF9A;
  text-transform: uppercase;
}


/* ========================================================
   SECTION 1: ATTORNEY BIO (about.html)
======================================================== */
.bio-section {
  background-color: #0B243E;
  padding: 80px 0 100px;
}

.bio-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 64px;
  align-items: start;
}

/* Left: Bio Text Column */
.bio-text-col {
  min-width: 0;
}

.bio-pull-quote {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.3px;
  line-height: 1.65;
  color: #F6C752;
  border-left: 3px solid #F6C752;
  padding: 6px 0 6px 28px;
  margin-bottom: 36px;
}

.bio-divider {
  width: 50px;
  height: 2px;
  background-color: rgba(246, 199, 82, 0.3);
  margin-bottom: 36px;
}

.bio-section-heading {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.3px;
  line-height: 1.3;
  color: #ffffff;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(246, 199, 82, 0.15);
}

.bio-para {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.2px;
  line-height: 1.9;
  color: #FADF9A;
  margin-bottom: 22px;
}

.bio-strong {
  color: #F6C752;
  font-weight: 700;
}

.bio-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 44px;
  padding-top: 36px;
  border-top: 1px solid rgba(246, 199, 82, 0.12);
}

/* Right: Sidebar Column */
.bio-sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.bio-photo-frame {
  width: 100%;
  margin-bottom: 0;
}

.bio-attorney-photo {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center top;
}

.bio-sidebar .photo-caption {
  width: 100%;
  background-color: rgba(6, 20, 34, 0.7);
  border: 1px solid rgba(246, 199, 82, 0.2);
  border-top: none;
  padding: 14px 20px;
  margin-bottom: 32px;
  text-align: center;
}

/* Credential Cards */
.credentials-block {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.credential-card {
  background-color: #071626;
  border: 1px solid rgba(246, 199, 82, 0.12);
  border-radius: 3px;
  padding: 20px 22px;
  transition: border-color 250ms ease;
}

.credential-card:hover {
  border-color: rgba(246, 199, 82, 0.3);
}

.credential-heading {
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  font-weight: 900;
  font-style: normal;
  letter-spacing: 2.5px;
  line-height: 1.4;
  color: #F6C752;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.credential-icon {
  display: inline-flex;
  align-items: center;
  color: #F6C752;
  flex-shrink: 0;
}

.credential-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.credential-list li {
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.2px;
  line-height: 1.5;
  color: #FADF9A;
  padding-left: 14px;
  position: relative;
}

.credential-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #F6C752;
  flex-shrink: 0;
}


/* ========================================================
   ABOUT PAGE — RESPONSIVE (max-width: 1024px)
======================================================== */
@media (max-width: 1024px) {

  .page-title-heading {
    font-size: 42px;
  }

  .bio-grid {
    grid-template-columns: 1fr 320px;
    gap: 44px;
    padding: 0 24px;
  }

  .bio-attorney-photo {
    height: 360px;
  }
}


/* ========================================================
   ABOUT PAGE — RESPONSIVE (max-width: 768px)
======================================================== */
@media (max-width: 768px) {

  .page-title-bar {
    padding: 56px 20px 48px;
    margin-top: 70px;
  }

  .page-title-heading {
    font-size: 32px;
  }

  .page-title-sub {
    font-size: 11px;
    letter-spacing: 1.5px;
  }

  .bio-section {
    padding: 60px 0 80px;
  }

  .bio-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 0 20px;
  }

  .bio-sidebar {
    order: -1;
  }

  .bio-attorney-photo {
    height: 340px;
  }

  .bio-pull-quote {
    font-size: 19px;
    padding-left: 20px;
  }

  .bio-cta {
    flex-direction: column;
  }

  .bio-cta .btn-outline,
  .bio-cta .btn-gold {
    width: 100%;
    text-align: center;
  }
}


/* ========================================================
   PRACTICE AREAS PAGE — SHARED SECTION STYLES
======================================================== */
.pa-section {
  padding: 88px 0 96px;
}

.pa-section--dark {
  background-color: #071626;
}

.pa-section--mid {
  background-color: #0B243E;
  border-top: 1px solid rgba(246, 199, 82, 0.1);
  border-bottom: 1px solid rgba(246, 199, 82, 0.1);
}

/* Two-column inner layout: number label col + content col */
.pa-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 48px;
  align-items: start;
}

/* Number label column */
.pa-label-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 6px;
  gap: 16px;
}

.pa-number {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  font-weight: 700;
  font-style: normal;
  letter-spacing: -1px;
  line-height: 1;
  color: rgba(246, 199, 82, 0.18);
  display: block;
}

.pa-label-rule {
  width: 2px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(246, 199, 82, 0.35), transparent);
}

/* Content column */
.pa-heading {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.3px;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 18px;
}

.pa-body {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.2px;
  line-height: 1.9;
  color: #FADF9A;
  margin-bottom: 22px;
}

.pa-subheading {
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  font-weight: 900;
  font-style: normal;
  letter-spacing: 3px;
  line-height: 1.4;
  color: #F6C752;
  text-transform: uppercase;
  margin-bottom: 24px;
  margin-top: 36px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(246, 199, 82, 0.15);
}

/* CTA row */
.pa-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(246, 199, 82, 0.1);
}

/* "Not exhaustive" disclaimer */
.pa-disclaimer {
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.3px;
  line-height: 1.6;
  color: rgba(250, 223, 154, 0.55);
  margin-top: 20px;
  margin-bottom: 0;
}


/* ========================================================
   SECTION 1: CRIMINAL DEFENSE — CHARGE GRID
======================================================== */
.pa-charge-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}

.pa-charge-item {
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.2px;
  line-height: 1.5;
  color: #FADF9A;
  padding: 13px 16px 13px 0;
  border-bottom: 1px solid rgba(246, 199, 82, 0.1);
  display: flex;
  align-items: center;
  gap: 12px;
  transition: color 200ms ease, padding-left 200ms ease;
}

.pa-charge-item:nth-last-child(-n+2) {
  border-bottom: none;
}

.pa-charge-item::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #F6C752;
  flex-shrink: 0;
  transition: transform 200ms ease;
}

.pa-charge-item:hover {
  color: #ffffff;
  padding-left: 4px;
}

.pa-charge-item:hover::before {
  transform: scale(1.4);
}


/* ========================================================
   SECTION 2: LANDLORD — FEATURE LIST
======================================================== */
.pa-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 8px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}

.pa-feature-item {
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.2px;
  line-height: 1.5;
  color: #FADF9A;
  padding: 13px 16px 13px 0;
  border-bottom: 1px solid rgba(246, 199, 82, 0.1);
  display: flex;
  align-items: center;
  gap: 12px;
}

.pa-feature-item:nth-last-child(-n+2) {
  border-bottom: none;
}

.pa-feature-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #F6C752;
  flex-shrink: 0;
}


/* ========================================================
   SECTION 3: ANCILLARY AREAS
======================================================== */
.pa-inner--ancillary {
  display: block;
}

.pa-ancillary-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}

.pa-ancillary-header .gold-rule {
  margin: 0 auto 28px;
}

.pa-heading--ancillary {
  font-size: 36px;
  margin-bottom: 18px;
}

.pa-body--ancillary {
  font-size: 15px;
  color: rgba(250, 223, 154, 0.8);
  margin-bottom: 0;
}

/* 3-column card grid */
.pa-ancillary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pa-ancillary-card {
  background-color: #0d2540;
  border: 1px solid rgba(246, 199, 82, 0.12);
  border-radius: 4px;
  padding: 36px 30px 32px;
  text-align: center;
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.pa-ancillary-card:hover {
  transform: translateY(-6px);
  border-color: rgba(246, 199, 82, 0.3);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.3);
}

.pa-ancillary-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(246, 199, 82, 0.07);
  border: 1px solid rgba(246, 199, 82, 0.18);
  border-radius: 50%;
  margin: 0 auto 20px;
  transition: background-color 260ms ease;
}

.pa-ancillary-icon svg {
  width: 26px;
  height: 26px;
}

.pa-ancillary-card:hover .pa-ancillary-icon {
  background-color: rgba(246, 199, 82, 0.12);
}

.pa-ancillary-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.2px;
  line-height: 1.3;
  color: #ffffff;
  margin-bottom: 14px;
}

.pa-ancillary-text {
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.2px;
  line-height: 1.8;
  color: rgba(250, 223, 154, 0.8);
}


/* ========================================================
   PRACTICE AREAS PAGE — RESPONSIVE (max-width: 1024px)
======================================================== */
@media (max-width: 1024px) {

  .pa-inner {
    padding: 0 24px;
    grid-template-columns: 56px 1fr;
    gap: 32px;
  }

  .pa-heading {
    font-size: 36px;
  }

  .pa-number {
    font-size: 40px;
  }
}


/* ========================================================
   PRACTICE AREAS PAGE — RESPONSIVE (max-width: 768px)
======================================================== */
@media (max-width: 768px) {

  .pa-section {
    padding: 64px 0 72px;
  }

  .pa-inner {
    grid-template-columns: 1fr;
    padding: 0 20px;
    gap: 0;
  }

  .pa-label-col {
    flex-direction: row;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
  }

  .pa-label-rule {
    width: 40px;
    height: 2px;
    background: linear-gradient(to right, rgba(246, 199, 82, 0.35), transparent);
  }

  .pa-number {
    font-size: 36px;
  }

  .pa-heading {
    font-size: 30px;
  }

  .pa-charge-grid,
  .pa-feature-list {
    grid-template-columns: 1fr;
  }

  .pa-charge-item:nth-last-child(-n+2),
  .pa-feature-item:nth-last-child(-n+2) {
    border-bottom: 1px solid rgba(246, 199, 82, 0.1);
  }

  .pa-charge-item:last-child,
  .pa-feature-item:last-child {
    border-bottom: none;
  }

  .pa-cta-row {
    flex-direction: column;
  }

  .pa-cta-row .btn-gold,
  .pa-cta-row .btn-outline {
    width: 100%;
    text-align: center;
  }

  .pa-ancillary-grid {
    grid-template-columns: 1fr;
  }

  .pa-heading--ancillary {
    font-size: 28px;
  }

  .pa-inner--ancillary {
    padding: 0 20px;
  }
}


/* ========================================================
   CONTACT PAGE — HERO IMAGE SECTION
======================================================== */
.contact-hero-section {
  position: relative;
  height: 400px;
  margin-top: 90px;
  background-image: url('images/building.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(7, 22, 40, 0.55) 0%,
    rgba(7, 22, 40, 0.70) 50%,
    rgba(7, 22, 40, 0.82) 100%
  );
  z-index: 0;
}

.contact-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 24px;
}

.contact-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 64px;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 1px;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 20px;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.4);
}

.contact-hero-rule {
  width: 70px;
  height: 3px;
  background: linear-gradient(to right, transparent, #F6C752, transparent);
  margin: 0 auto 20px;
}

.contact-hero-tagline {
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  font-weight: 300;
  font-style: normal;
  letter-spacing: 1.2px;
  line-height: 1.6;
  color: #FADF9A;
}


/* ========================================================
   CONTACT PAGE — MAIN CONTENT SECTION
======================================================== */
.contact-section {
  background-color: #0B243E;
  padding: 90px 0 100px;
}

.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 72px;
  align-items: start;
}

/* Left: Info Column */
.contact-heading {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.3px;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 18px;
}

.contact-intro {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.2px;
  line-height: 1.85;
  color: #FADF9A;
  margin-bottom: 44px;
}

/* Contact Cards */
.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 36px;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px 22px;
  background-color: #071626;
  border: 1px solid rgba(246, 199, 82, 0.1);
  border-radius: 3px;
  transition: border-color 240ms ease;
}

.contact-card:hover {
  border-color: rgba(246, 199, 82, 0.28);
}

.contact-card-icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(246, 199, 82, 0.08);
  border: 1px solid rgba(246, 199, 82, 0.2);
  border-radius: 50%;
  color: #F6C752;
  flex-shrink: 0;
}

.contact-card-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.contact-card-label {
  font-family: 'Lato', sans-serif;
  font-size: 10px;
  font-weight: 900;
  font-style: normal;
  letter-spacing: 2.5px;
  line-height: 1.4;
  color: #F6C752;
  text-transform: uppercase;
}

.contact-card-value {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.2px;
  line-height: 1.5;
  color: #ffffff;
  transition: color 200ms ease;
}

a.contact-card-value:hover {
  color: #F6C752;
}

.contact-card-address {
  font-style: normal;
  line-height: 1.65;
}

/* Disclaimer */
.contact-disclaimer {
  padding: 18px 22px;
  border-left: 3px solid rgba(246, 199, 82, 0.3);
  background-color: rgba(246, 199, 82, 0.04);
}

.contact-disclaimer-text {
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.3px;
  line-height: 1.6;
  color: rgba(250, 223, 154, 0.7);
  margin: 0;
}


/* ========================================================
   CONTACT PAGE — FORM
======================================================== */
.contact-form-wrap {
  background-color: #071626;
  border: 1px solid rgba(246, 199, 82, 0.15);
  border-radius: 4px;
  padding: 48px 44px 44px;
}

.contact-form-heading {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.3px;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 8px;
}

.contact-form-sub {
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.2px;
  line-height: 1.6;
  color: rgba(250, 223, 154, 0.65);
  margin-bottom: 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(246, 199, 82, 0.1);
}

/* Form Groups */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 0;
}

.form-row .form-group {
  margin-bottom: 24px;
}

.form-label {
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 2px;
  line-height: 1.4;
  color: #FADF9A;
  text-transform: uppercase;
}

.form-required {
  color: #F6C752;
  margin-left: 2px;
}

.form-input,
.form-textarea {
  background-color: #0d2540;
  border: 1px solid rgba(246, 199, 82, 0.18);
  border-radius: 3px;
  padding: 14px 18px;
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.2px;
  line-height: 1.5;
  color: #ffffff;
  width: 100%;
  transition: border-color 220ms ease, background-color 220ms ease, box-shadow 220ms ease;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(250, 223, 154, 0.3);
  font-weight: 300;
}

.form-input:hover,
.form-textarea:hover {
  border-color: rgba(246, 199, 82, 0.32);
}

.form-input:focus,
.form-textarea:focus {
  border-color: #F6C752;
  background-color: #0f2d50;
  box-shadow: 0 0 0 3px rgba(246, 199, 82, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 150px;
}

/* Submit row */
.form-footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.form-privacy-note {
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.3px;
  line-height: 1.5;
  color: rgba(250, 223, 154, 0.45);
  margin: 0;
  flex: 1;
  min-width: 140px;
}

.form-secure-note {
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.3px;
  line-height: 1.5;
  color: rgba(250, 223, 154, 0.38);
  text-align: center;
  margin: 20px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(246, 199, 82, 0.08);
}

.form-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 2.5px;
  line-height: 1.4;
  color: #0B243E;
  text-transform: uppercase;
  background-color: #F6C752;
  border: 2px solid #F6C752;
  border-radius: 2px;
  padding: 15px 32px;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 220ms ease, color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.form-submit:hover {
  background-color: transparent;
  color: #F6C752;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(246, 199, 82, 0.2);
}

.form-submit:active {
  transform: translateY(0);
}


/* ========================================================
   CONTACT PAGE — RESPONSIVE (max-width: 1024px)
======================================================== */
@media (max-width: 1024px) {

  .contact-inner {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    padding: 0 24px;
  }

  .contact-heading {
    font-size: 34px;
  }

  .contact-form-wrap {
    padding: 36px 32px 36px;
  }
}


/* ========================================================
   CONTACT PAGE — RESPONSIVE (max-width: 768px)
======================================================== */
@media (max-width: 768px) {

  .contact-hero-section {
    margin-top: 70px;
    height: 380px;
  }

  .contact-hero-title {
    font-size: 42px;
  }

  .contact-hero-tagline {
    font-size: 13px;
    letter-spacing: 0.8px;
  }

  .contact-section {
    padding: 64px 0 80px;
  }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 0 20px;
  }

  .contact-heading {
    font-size: 30px;
  }

  .contact-form-wrap {
    padding: 30px 24px 30px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-footer-row {
    flex-direction: column;
    align-items: stretch;
  }

  .form-submit {
    width: 100%;
    justify-content: center;
  }

  .form-privacy-note {
    text-align: center;
  }
}
