/* ============================================
   DRAKPANDEY.COM — Legal Professional Website
   Ivory · Charcoal · Oxblood · Cormorant
   ============================================ */

:root {
  --ivory:      #faf7f2;
  --cream:      #f3ede3;
  --parchment:  #e8dfd0;
  --charcoal:   #1c1c1c;
  --ink:        #2d2926;
  --slate:      #5a5550;
  --mist:       #8a857f;
  --rule:       #c8bfb0;
  --burgundy:   #6b1f2a;
  --gold:       #8b6914;
  --gold-lt:    #c4971f;
  --gold-bg:    rgba(139,105,20,0.08);
  --ff-display: 'Cormorant Garamond', 'Georgia', serif;
  --ff-fell:    'IM Fell English', 'Georgia', serif;
  --ff-body:    'Jost', system-ui, sans-serif;
  --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --max-w:      1160px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--ff-body);
  font-weight: 300;
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Subtle parchment texture */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.018'/%3E%3C/svg%3E");
  opacity: 1;
}

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--burgundy); border-radius: 2px; }

::selection { background: rgba(107,31,42,0.12); color: var(--burgundy); }

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

/* ── REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity:0; transform: translateY(20px); }
  to   { opacity:1; transform: none; }
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes scrollPulse {
  0%,100% { transform: scaleY(1); opacity:1; }
  50%      { transform: scaleY(0.6); opacity:0.5; }
}

/* ── NAV ── */
#navbar {
  position: fixed; top:0; left:0; right:0; z-index: 100;
  background: rgba(250,247,242,0.93);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--parchment);
  transition: box-shadow var(--transition);
}
#navbar.scrolled { box-shadow: 0 2px 24px rgba(28,28,28,0.08); }
.nav-inner {
  max-width: var(--max-w); margin:0 auto;
  padding: 0 2rem; height: 68px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 0.8rem; }
.logo-monogram {
  font-family: var(--ff-display);
  font-weight: 600; font-size: 1.3rem;
  color: var(--burgundy); letter-spacing: 2px;
}
.logo-divider {
  width: 1px; height: 22px;
  background: var(--rule);
}
.logo-text {
  font-family: var(--ff-body);
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--slate);
}
.nav-links { list-style: none; display: flex; gap: 2.2rem; align-items: center; }
.nav-links a {
  font-size: 0.8rem; font-weight: 500;
  letter-spacing: 0.8px; text-transform: uppercase;
  color: var(--slate); transition: color var(--transition);
}
.nav-links a:hover { color: var(--burgundy); }
.nav-cta {
  color: var(--burgundy) !important;
  border: 1px solid var(--burgundy);
  padding: 0.45rem 1.2rem;
  transition: background var(--transition), color var(--transition) !important;
}
.nav-cta:hover {
  background: var(--burgundy) !important;
  color: var(--ivory) !important;
}
.hamburger {
  display:none; flex-direction:column; gap:5px;
  background:none; border:none; cursor:pointer; padding:4px;
}
.hamburger span {
  display:block; width:22px; height:1px;
  background:var(--ink); transition: var(--transition);
}

/* ── MOBILE MENU ── */
.mobile-menu {
  display:none;
  position:fixed; top:68px; left:0; right:0; z-index:99;
  background:var(--ivory); border-bottom: 1px solid var(--parchment);
  padding: 1.5rem 2rem;
}
.mobile-menu ul { list-style:none; }
.mobile-menu li { padding: 0.8rem 0; border-bottom: 1px solid var(--parchment); }
.mobile-menu li:last-child { border:none; }
.mobile-menu a { font-size:0.95rem; font-weight:500; letter-spacing:1px; text-transform:uppercase; }
.mobile-menu.open { display:block; }

/* ── SECTION SHARED ── */
section {
  padding: 6rem 2rem;
  max-width: var(--max-w);
  margin: 0 auto;
}
.section-meta {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 2.5rem;
}
.section-num {
  font-family: var(--ff-display);
  font-style: italic; font-size: 1.1rem;
  color: var(--burgundy);
}
.section-label {
  font-family: var(--ff-body);
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--mist);
}
.section-title {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: clamp(1.9rem, 3.5vw, 2.9rem);
  line-height: 1.2;
  color: var(--charcoal);
  margin-bottom: 2rem;
}

/* ── BUTTONS ── */
.btn {
  display:inline-flex; align-items:center; gap:0.5rem;
  padding: 0.8rem 2rem;
  font-family: var(--ff-body);
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  transition: all var(--transition); cursor:pointer; border:none;
}
.btn-primary {
  background: var(--burgundy); color: var(--ivory);
}
.btn-primary:hover {
  background: #8a2836;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(107,31,42,0.2);
}
.btn-ghost {
  background: transparent; color: var(--charcoal);
  border: 1px solid var(--rule);
}
.btn-ghost:hover {
  border-color: var(--charcoal);
  transform: translateY(-2px);
}

/* ── BADGE ── */
.badge {
  display:inline-block;
  padding: 0.3rem 0.8rem;
  background: rgba(107,31,42,0.06);
  border: 1px solid rgba(107,31,42,0.2);
  font-family: var(--ff-body);
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--burgundy);
}

/* ============================================
   HERO
   ============================================ */
#hero {
  max-width: 100%;
  min-height: 100vh;
  padding: 0;
  position: relative;
  display: flex; align-items: stretch;
  overflow: hidden;
}
.hero-texture {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    linear-gradient(135deg, rgba(107,31,42,0.03) 0%, transparent 60%),
    repeating-linear-gradient(0deg, transparent, transparent 79px, rgba(200,191,176,0.3) 80px),
    repeating-linear-gradient(90deg, transparent, transparent 79px, rgba(200,191,176,0.15) 80px);
}
.hero-layout {
  position: relative; z-index: 1;
  max-width: var(--max-w); margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 420px;
  gap: 4rem; align-items: center;
  padding: 9rem 2rem 5rem;
}
.hero-prelude {
  font-family: var(--ff-body);
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--burgundy); margin-bottom: 1.5rem;
}
.hero-name {
  font-family: var(--ff-display);
  font-weight: 300;
  font-size: clamp(3.2rem, 7vw, 6rem);
  line-height: 1;
  color: var(--charcoal);
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}
.hero-name em {
  font-style: italic;
  color: var(--burgundy);
  font-weight: 400;
}
.hero-designation {
  font-family: var(--ff-body);
  font-size: 0.85rem; font-weight: 500;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--slate); margin-bottom: 1.8rem;
}
.hero-rule {
  width: 80px; height: 1px;
  background: linear-gradient(90deg, var(--burgundy), transparent);
  margin-bottom: 1.8rem;
}
.hero-statement {
  font-family: var(--ff-display);
  font-size: 1.15rem; font-weight: 400;
  color: var(--slate); line-height: 1.8;
  max-width: 520px; margin-bottom: 2.5rem;
}
.hero-actions { display:flex; gap:1rem; flex-wrap:wrap; margin-bottom: 2rem; }
.hero-badges { display:flex; flex-wrap:wrap; gap:0.5rem; }

/* PHOTO FRAME */
.hero-right { display:flex; flex-direction:column; gap:1.5rem; align-items:center; }
.photo-frame {
  position: relative;
  width: 340px;
  aspect-ratio: 3/4;
  flex-shrink: 0;
}
.photo-frame img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  display: block;
  filter: sepia(8%) contrast(1.04);
}
.photo-ornament {
  position:absolute; width:24px; height:24px;
  border-color: var(--burgundy); border-style:solid;
}
.photo-ornament.tl { top:-8px; left:-8px; border-width: 2px 0 0 2px; }
.photo-ornament.tr { top:-8px; right:-8px; border-width: 2px 2px 0 0; }
.photo-ornament.bl { bottom:-8px; left:-8px; border-width: 0 0 2px 2px; }
.photo-ornament.br { bottom:-8px; right:-8px; border-width: 0 2px 2px 0; }

.hero-card {
  width: 100%;
  background: var(--cream);
  border: 1px solid var(--parchment);
  border-top: 2px solid var(--burgundy);
  padding: 1.2rem 1.5rem;
}
.hc-row {
  display:flex; justify-content:space-between; align-items:center;
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--parchment);
  font-size: 0.8rem;
}
.hc-row:last-child { border:none; }
.hc-label { color: var(--mist); font-weight:500; letter-spacing:0.5px; }
.hc-val { color: var(--ink); font-weight:500; text-align:right; }

/* SCROLL CUE */
.hero-scroll-cue {
  position:absolute; bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display:flex; flex-direction:column; align-items:center; gap:0.6rem; z-index:2;
}
.hsc-line {
  width:1px; height:52px;
  background: linear-gradient(to bottom, var(--burgundy), transparent);
  animation: scrollPulse 2.5s ease-in-out infinite;
}
.hsc-label {
  font-size:0.6rem; letter-spacing:3px; text-transform:uppercase;
  color:var(--mist); font-weight:600;
}

/* ============================================
   MARQUEE
   ============================================ */
.marquee-strip {
  background: var(--burgundy);
  overflow: hidden; padding: 0.85rem 0;
  border-top: 1px solid rgba(0,0,0,0.1);
  border-bottom: 1px solid rgba(0,0,0,0.1);
}
.marquee-track {
  display: flex; gap: 0; white-space: nowrap;
  animation: marqueeScroll 35s linear infinite;
}
.marquee-track span {
  font-family: var(--ff-body);
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: rgba(250,247,242,0.85);
  padding: 0 1.5rem;
}
.marquee-track .sep { color: rgba(250,247,242,0.3); padding: 0; }

/* ============================================
   ABOUT
   ============================================ */
#about { border-top: 1px solid var(--parchment); }
.about-grid {
  display: grid; grid-template-columns: 1fr 320px; gap: 4rem;
}
.about-text p {
  color: var(--slate); font-size: 1rem; line-height: 1.85;
  margin-bottom: 1.3rem;
}
.about-text strong { color: var(--charcoal); font-weight: 600; }
.pull-quote {
  margin: 2rem 0 0;
  padding: 1.5rem 2rem;
  border-left: 3px solid var(--burgundy);
  background: var(--cream);
}
.pull-quote p {
  font-family: var(--ff-display);
  font-style: italic; font-size: 1.2rem;
  color: var(--charcoal) !important; line-height: 1.6; margin: 0 !important;
}

.sidebar-card {
  background: var(--cream);
  border: 1px solid var(--parchment);
  border-top: 2px solid var(--burgundy);
  padding: 1.5rem;
  margin-bottom: 1.2rem;
}
.sidebar-card h4 {
  font-family: var(--ff-body);
  font-size: 0.7rem; font-weight:700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--burgundy); margin-bottom: 1rem;
}
.sidebar-list { list-style: none; }
.sidebar-list li {
  font-size: 0.88rem; color: var(--slate);
  padding: 0.45rem 0; border-bottom: 1px solid var(--parchment);
  padding-left: 1rem; position:relative;
}
.sidebar-list li:last-child { border:none; }
.sidebar-list li::before {
  content: '—';
  position:absolute; left:0;
  color: var(--burgundy); font-size: 0.7rem;
}
.accent-card { background: var(--burgundy); border-color: var(--burgundy); }
.accent-card .ac-label {
  font-size: 0.65rem; font-weight:700;
  letter-spacing:2px; text-transform:uppercase;
  color: rgba(250,247,242,0.6); margin-bottom:0.3rem;
}
.accent-card .ac-val {
  font-family: var(--ff-display);
  font-size: 1.4rem; font-weight:600;
  color: var(--ivory); line-height:1.2;
}
.accent-card .ac-sub {
  font-size: 0.78rem; color: rgba(250,247,242,0.6); margin-top:0.2rem;
}

/* ============================================
   PRACTICE AREAS
   ============================================ */
#practice {
  background: var(--cream);
  max-width:100%; padding: 6rem 2rem;
  border-top: 1px solid var(--parchment);
}
#practice > .section-meta,
#practice > h2 { max-width: var(--max-w); margin-left:auto; margin-right:auto; }
#practice > h2 { margin-bottom: 3rem; }
.practice-grid {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem;
}
.practice-card {
  background: var(--ivory);
  border: 1px solid var(--parchment);
  border-top: 2px solid transparent;
  padding: 1.8rem 1.5rem;
  position:relative; overflow:hidden;
  transition: border-top-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.practice-card:hover {
  border-top-color: var(--burgundy);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(28,28,28,0.08);
}
.pc-num {
  font-family: var(--ff-display);
  font-size: 2.5rem; font-weight:300; font-style:italic;
  color: var(--parchment); line-height:1;
  position:absolute; top:1rem; right:1.2rem;
}
.pc-icon { font-size: 1.5rem; margin-bottom: 0.8rem; }
.practice-card h3 {
  font-family: var(--ff-display);
  font-weight: 600; font-size: 1.1rem;
  color: var(--charcoal); margin-bottom: 0.7rem;
  line-height: 1.3;
}
.practice-card p {
  font-size: 0.83rem; color: var(--slate);
  line-height: 1.7; margin-bottom: 1rem;
}
.pc-tags { list-style:none; display:flex; flex-wrap:wrap; gap:0.4rem; }
.pc-tags li {
  font-size: 0.65rem; font-weight:600;
  letter-spacing: 0.8px; text-transform:uppercase;
  padding: 0.2rem 0.6rem;
  background: rgba(107,31,42,0.06);
  border: 1px solid rgba(107,31,42,0.15);
  color: var(--burgundy);
}

/* ============================================
   COURTS
   ============================================ */
#courts { border-top: 1px solid var(--parchment); }
.courts-layout { display:flex; flex-direction:column; gap:2.5rem; }
.courts-text p { font-size: 1rem; color: var(--slate); max-width: 640px; }
.courts-grid {
  display:grid; grid-template-columns: repeat(4,1fr); gap:1.2rem;
}
.court-card {
  background: var(--cream);
  border: 1px solid var(--parchment);
  padding: 1.8rem 1.5rem;
  position: relative;
  transition: box-shadow var(--transition), transform var(--transition);
}
.court-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(28,28,28,0.07);
}
.primary-court {
  border-top: 3px solid var(--burgundy);
}
.court-seal { font-size: 1.6rem; margin-bottom: 0.8rem; }
.court-card h3 {
  font-family: var(--ff-display);
  font-weight:600; font-size: 1.05rem;
  color: var(--charcoal); margin-bottom: 0.3rem;
}
.court-location {
  font-size: 0.72rem; font-weight:600;
  letter-spacing: 1.5px; text-transform:uppercase;
  color: var(--mist); margin-bottom: 0.8rem;
}
.court-card p {
  font-size: 0.83rem; color: var(--slate);
  line-height: 1.7; margin-bottom: 1rem;
}
.court-tag {
  display:inline-block;
  font-size: 0.65rem; font-weight:700;
  letter-spacing: 1.5px; text-transform:uppercase;
  color: var(--burgundy); padding: 0.2rem 0;
  border-bottom: 1px solid var(--burgundy);
}

/* ============================================
   CREDENTIALS
   ============================================ */
#credentials { border-top: 1px solid var(--parchment); }
.credentials-layout {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 3rem;
  margin-bottom: 4rem;
}
.cred-heading {
  font-family: var(--ff-body);
  font-size: 0.7rem; font-weight:700;
  letter-spacing: 2.5px; text-transform:uppercase;
  color: var(--burgundy);
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--parchment);
  margin-bottom: 1.5rem;
}
.cred-item {
  display:flex; gap: 1.5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--parchment);
}
.cred-item:last-child { border:none; margin-bottom:0; }
.ci-year {
  font-family: var(--ff-display);
  font-style:italic; font-size:0.8rem;
  color: var(--mist); white-space:nowrap;
  padding-top: 2px;
  min-width: 70px;
}
.ci-body h4 {
  font-family: var(--ff-display);
  font-weight:600; font-size: 1rem;
  color: var(--charcoal); margin-bottom: 0.2rem;
}
.ci-body p { font-size: 0.83rem; color: var(--slate); }
.ci-note { font-style:italic; font-size: 0.78rem !important; color: var(--mist) !important; margin-top:0.3rem; }

/* ADVANTAGE STRIP */
.advantage-strip {
  background: var(--ink);
  padding: 3rem;
  border-top: 3px solid var(--gold);
}
.adv-heading {
  font-family: var(--ff-display);
  font-weight:600; font-size: 1.5rem;
  color: var(--ivory); margin-bottom: 0.5rem;
}
.adv-sub {
  font-size: 0.9rem; color: rgba(250,247,242,0.6);
  margin-bottom: 2.5rem; max-width: 640px;
}
.adv-grid {
  display:grid; grid-template-columns: repeat(4,1fr); gap: 2rem;
}
.adv-item .adv-icon { font-size: 1.4rem; margin-bottom: 0.6rem; display:block; }
.adv-item h4 {
  font-family: var(--ff-display);
  font-size: 0.95rem; font-weight:600;
  color: var(--gold-lt); margin-bottom: 0.4rem;
}
.adv-item p { font-size: 0.82rem; color: rgba(250,247,242,0.55); line-height: 1.6; }

/* ============================================
   CONTACT
   ============================================ */
#contact {
  border-top: 1px solid var(--parchment);
  background: var(--cream);
  max-width:100%; padding: 6rem 2rem;
}
#contact > .section-meta { max-width: var(--max-w); margin: 0 auto 0; }
.contact-layout {
  max-width: var(--max-w); margin: 0 auto;
  display:grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items:start;
}
.contact-left .section-title { margin-bottom: 1rem; }
.contact-left > p { font-size: 0.95rem; color: var(--slate); line-height:1.8; margin-bottom: 2rem; }
.contact-details { margin-bottom: 2rem; }
.cd-item {
  display:flex; align-items: baseline; gap:1.5rem;
  padding: 0.7rem 0; border-bottom: 1px solid var(--parchment);
}
.cd-item:last-child { border:none; }
.cd-label {
  font-size: 0.68rem; font-weight:700;
  letter-spacing: 2px; text-transform:uppercase;
  color: var(--mist); min-width: 90px;
}
.cd-val {
  font-size: 0.9rem; color: var(--charcoal); font-weight:400;
  transition: color var(--transition);
}
a.cd-val:hover { color: var(--burgundy); }
.disclaimer {
  font-size: 0.73rem; color: var(--mist); font-style:italic;
  line-height: 1.5;
}

/* FORM */
.contact-form {
  background: var(--ivory);
  border: 1px solid var(--parchment);
  border-top: 3px solid var(--burgundy);
  padding: 2.5rem;
}
.contact-form h3 {
  font-family: var(--ff-display);
  font-weight:600; font-size: 1.4rem;
  color: var(--charcoal); margin-bottom: 1.8rem;
}
.form-group { margin-bottom: 1.3rem; }
.form-group label {
  display:block; font-size: 0.7rem; font-weight:700;
  letter-spacing: 1.5px; text-transform:uppercase;
  color: var(--mist); margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width:100%; padding: 0.75rem 1rem;
  background: var(--cream);
  border: 1px solid var(--parchment);
  color: var(--ink);
  font-family: var(--ff-body); font-size: 0.88rem; font-weight:300;
  outline: none;
  transition: border-color var(--transition);
  -webkit-appearance: none;
}
.form-group select { cursor:pointer; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--burgundy); }
.form-group textarea { resize: vertical; min-height: 110px; }
.contact-form .btn { width:100%; justify-content:center; }
.form-success {
  margin-top: 1rem; padding: 0.8rem 1rem;
  background: rgba(107,31,42,0.08);
  border-left: 3px solid var(--burgundy);
  font-size: 0.85rem; color: var(--burgundy);
  line-height: 1.6;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--charcoal);
  color: rgba(250,247,242,0.7);
}
.footer-top {
  max-width: var(--max-w); margin: 0 auto;
  padding: 3rem 2rem;
  display:grid; grid-template-columns: 1fr auto 1fr;
  gap: 3rem; align-items: start;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand { display:flex; align-items:center; gap:1rem; }
.footer-monogram {
  font-family: var(--ff-display);
  font-weight:600; font-size: 2rem;
  color: var(--gold-lt); letter-spacing: 3px;
}
.footer-name {
  font-family: var(--ff-display);
  font-size: 1.1rem; font-weight:600;
  color: var(--ivory);
}
.footer-title { font-size: 0.75rem; color: rgba(250,247,242,0.4); letter-spacing:1px; }
.footer-links {
  display:flex; flex-direction:column; gap:0.5rem; align-items:center;
}
.footer-links a {
  font-size: 0.72rem; font-weight:600;
  letter-spacing:1.5px; text-transform:uppercase;
  color: rgba(250,247,242,0.5);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--ivory); }
.footer-contact-mini { text-align:right; }
.footer-contact-mini p { font-size: 0.8rem; color: rgba(250,247,242,0.45); line-height:1.9; }
.footer-bottom {
  max-width: var(--max-w); margin: 0 auto;
  padding: 1.5rem 2rem;
  display:flex; justify-content:space-between; align-items:center;
  gap:2rem; flex-wrap:wrap;
}
.footer-bottom p { font-size: 0.75rem; color: rgba(250,247,242,0.3); }
.footer-disc { font-style:italic; max-width: 500px; text-align:right; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
  .practice-grid { grid-template-columns: repeat(2,1fr); }
  .courts-grid { grid-template-columns: repeat(2,1fr); }
  .adv-grid { grid-template-columns: repeat(2,1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-contact-mini { display:none; }
}

@media (max-width: 900px) {
  .hero-layout { grid-template-columns: 1fr; padding-top: 7rem; }
  .hero-right { order:-1; align-items:flex-start; }
  .photo-frame { width: 280px; }
  .hero-card { max-width: 340px; }
  .about-grid { grid-template-columns: 1fr; }
  .credentials-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display:none; }
  .hamburger { display:flex; }
  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
  .practice-grid { grid-template-columns: 1fr; }
  .courts-grid { grid-template-columns: 1fr 1fr; }
  section { padding: 4rem 1.5rem; }
  #practice, #contact { padding: 4rem 1.5rem; }
  .footer-bottom { flex-direction:column; text-align:center; }
  .footer-disc { text-align:center; }
}

@media (max-width: 500px) {
  .courts-grid { grid-template-columns: 1fr; }
  .adv-grid { grid-template-columns: 1fr; }
  .hero-name { font-size: 3rem; }
  .hero-actions { flex-direction:column; }
  .hero-actions .btn { width:100%; justify-content:center; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-links { align-items: flex-start; }
}
