/* =========================================
   FIRMA HUKUM BS&R — Elite Law Firm CSS
   ========================================= */

/* ---- CSS Variables ---- */
:root {
  --gold:        #8B7B2A;
  --gold-light:  #B09040;
  --gold-dark:   #5C4E10;
  --bg-deep:     #080808;
  --bg-dark:     #0E0E0E;
  --bg-panel:    #141414;
  --bg-card:     #1A1A1A;
  --border:      rgba(201,168,76,0.2);
  --border-hover:rgba(201,168,76,0.6);
  --text-white:  #F5F0E8;
  --text-muted:  #8A8A8A;
  --text-sub:    #C0BAB0;
  --transition:  0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.2s ease;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: 'Raleway', sans-serif;
  background: var(--bg-deep);
  color: var(--text-white);
  overflow-x: hidden;
  line-height: 1.7;
  cursor: default;
}

/* Custom Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* =========================================
   CURSOR CUSTOM
   ========================================= */
.cursor-dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, background 0.3s;
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1px solid rgba(201,168,76,0.5);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: transform 0.12s linear, width 0.3s, height 0.3s, border-color 0.3s;
}
body:has(a:hover) .cursor-dot,
body:has(button:hover) .cursor-dot { width: 12px; height: 12px; background: var(--gold-light); }
body:has(a:hover) .cursor-ring,
body:has(button:hover) .cursor-ring { width: 50px; height: 50px; border-color: var(--gold); }

/* =========================================
   NOISE TEXTURE OVERLAY
   ========================================= */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9998;
  opacity: 0.4;
}

/* =========================================
   PAGE TRANSITION OVERLAY
   ========================================= */
#page-overlay {
  position: fixed;
  inset: 0;
  background: var(--bg-deep);
  z-index: 9999;
  transform-origin: bottom;
  animation: overlayReveal 0.8s cubic-bezier(0.76, 0, 0.24, 1) forwards;
}
@keyframes overlayReveal {
  0%   { transform: scaleY(1); }
  100% { transform: scaleY(0); }
}

/* =========================================
   HEADER / NAVBAR
   ========================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  transition: background var(--transition), backdrop-filter var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  background: rgba(8, 8, 8, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
}

.site-header:not(.scrolled) {
  background: linear-gradient(to bottom, rgba(0,0,0,0.7), transparent);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

/* =========================================
   LOGO — REDESIGNED
   ========================================= */
.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  transition: opacity var(--transition-fast);
  text-decoration: none;
}
.logo:hover { opacity: 0.85; }

/* Gold-bordered circular emblem */
.logo-icon {
  width: 52px;
  height: 52px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  background: rgba(139, 123, 42, 0.12);
  box-shadow:
    0 0 0 4px rgba(139,123,42,0.08),
    inset 0 0 12px rgba(139,123,42,0.1);
  transition: box-shadow var(--transition), border-color var(--transition);
}
.logo:hover .logo-icon {
  border-color: var(--gold-light);
  box-shadow:
    0 0 0 6px rgba(139,123,42,0.12),
    inset 0 0 16px rgba(139,123,42,0.15);
}

/* Logo image — white, fills the circle */
.logo-img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: filter var(--transition), transform var(--transition);
}
.logo:hover .logo-img {
  filter: brightness(0) invert(1);
  transform: scale(1.08);
}

/* Logo text block */
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 2px;
}

.logo-text .firm-name {
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  color: var(--text-sub);
  text-transform: uppercase;
}

/* Large BS&R brand mark */
.logo-text .firm-brand {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 1.45rem;
  letter-spacing: 0.04em;
  color: var(--text-white);
  line-height: 1;
}
.logo-text .firm-brand em {
  font-style: italic;
  color: var(--gold);
}

.logo-text .firm-sub {
  font-family: 'Raleway', sans-serif;
  font-size: 0.55rem;
  letter-spacing: 0.14em;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 500;
}

/* Footer logo — slightly larger */
.footer-logo {
  margin-bottom: 20px;
}
.footer-logo .logo-icon {
  width: 56px;
  height: 56px;
}
.footer-logo .logo-img {
  width: 44px;
  height: 44px;
}
.footer-logo .firm-brand {
  font-size: 1.6rem;
}

/* =========================================
   NAV
   ========================================= */
.nav-right {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-family: 'Raleway', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-sub);
  position: relative;
  transition: color 0.3s ease, text-shadow 0.3s ease, letter-spacing 0.3s ease;
}
.nav-links a::before,
.nav-links a::after { display: none; }
.nav-links a:hover,
.nav-links a.active {
  color: var(--gold-light);
  letter-spacing: 0.22em;
  text-shadow:
    0 0 8px rgba(176,144,64,0.8),
    0 0 20px rgba(176,144,64,0.4),
    0 0 40px rgba(176,144,64,0.2);
}

.btn-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border: 1px solid var(--gold);
  border-radius: 2px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--gold);
  position: relative;
  overflow: hidden;
  transition: color 0.3s ease, box-shadow 0.3s ease, text-shadow 0.3s ease;
  background: transparent;
}
.btn-phone::before { display: none; }
.btn-phone:hover {
  color: var(--gold-light);
  box-shadow:
    0 0 0 1px rgba(176,144,64,0.6),
    0 0 12px rgba(176,144,64,0.4),
    0 0 30px rgba(176,144,64,0.15),
    inset 0 0 12px rgba(176,144,64,0.08);
  text-shadow: 0 0 8px rgba(176,144,64,0.6);
}
.btn-phone svg, .btn-phone span { position: relative; z-index: 1; }

/* Mobile Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--text-white);
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 80px 0 0 0;
  background: rgba(8,8,8,0.97);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
  display: flex;
}
.mobile-menu a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--text-white);
  transition: color var(--transition-fast);
}
.mobile-menu a:hover { color: var(--gold); }

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg-deep);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(8,8,8,0.65) 0%, rgba(8,8,8,0.35) 55%, rgba(8,8,8,0.15) 100%),
    url('images/hero-bg.jpg') center/cover no-repeat;
  transform: scale(1.05);
  animation: heroBgZoom 20s ease-in-out infinite alternate;
}
@keyframes heroBgZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.12); }
}

/* Animated gold lines */
.hero-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-line {
  position: absolute;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.3), transparent);
  height: 1px;
  animation: lineSweep 8s ease-in-out infinite;
}
.hero-line:nth-child(1) { top: 30%; width: 60%; left: 0; animation-delay: 0s; }
.hero-line:nth-child(2) { top: 60%; width: 40%; left: 20%; animation-delay: 2s; }
.hero-line:nth-child(3) { top: 80%; width: 50%; left: 10%; animation-delay: 4s; }
@keyframes lineSweep {
  0%, 100% { opacity: 0; transform: translateX(-100%); }
  50%       { opacity: 1; transform: translateX(200%); }
}

/* Gold particle dots */
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.particle {
  position: absolute;
  width: 2px; height: 2px;
  background: var(--gold);
  border-radius: 50%;
  animation: particleFloat linear infinite;
  opacity: 0;
}
@keyframes particleFloat {
  0%   { opacity: 0; transform: translateY(0) rotate(0deg); }
  10%  { opacity: 0.6; }
  90%  { opacity: 0.3; }
  100% { opacity: 0; transform: translateY(-100vh) rotate(360deg); }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 5%;
  max-width: 900px;
  padding-top: 80px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s 0.4s forwards;
}
.hero-eyebrow::before {
  content: '⚖';
  font-size: 14px;
  color: var(--gold);
}
.hero-eyebrow span {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 9vw, 8rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--text-white);
  margin-bottom: 12px;
  opacity: 0;
  animation: fadeUp 0.9s 0.6s forwards;
}
.hero-title .accent {
  color: var(--gold);
  font-style: italic;
  display: block;
}

.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text-sub);
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 0.9s 0.8s forwards;
  letter-spacing: 0.05em;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 44px;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: 'Raleway', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: color 0.3s ease, box-shadow 0.3s ease, text-shadow 0.3s ease;
  opacity: 0;
  animation: fadeUp 0.9s 1.0s forwards;
}
.hero-cta::before { display: none; }
.hero-cta:hover {
  color: var(--gold-light);
  box-shadow:
    0 0 0 1px rgba(176,144,64,0.6),
    0 0 16px rgba(176,144,64,0.5),
    0 0 40px rgba(176,144,64,0.2),
    inset 0 0 16px rgba(176,144,64,0.08);
  text-shadow: 0 0 10px rgba(176,144,64,0.7);
}
.hero-cta svg,
.hero-cta span { position: relative; z-index: 1; }
.hero-cta .arrow { transition: transform var(--transition); }
.hero-cta:hover .arrow { transform: translateX(8px); }

/* Gold corner ornament */
.hero-ornament {
  position: absolute;
  right: 5%;
  bottom: 12%;
  width: 100px;
  height: 100px;
  opacity: 0.15;
  pointer-events: none;
}
.hero-ornament::before,
.hero-ornament::after {
  content: '';
  position: absolute;
  border-color: var(--gold);
  border-style: solid;
}
.hero-ornament::before {
  inset: 0;
  border-width: 1px 0 0 1px;
}
.hero-ornament::after {
  bottom: 0; right: 0;
  width: 60%; height: 60%;
  border-width: 0 1px 1px 0;
}

/* Hero scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  opacity: 0;
  animation: fadeIn 1s 1.6s forwards;
}
.scroll-indicator span {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.5); transform-origin: top; }
  50%       { opacity: 1; transform: scaleY(1); }
}

/* =========================================
   SECTION COMMONS
   ========================================= */
section { position: relative; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--text-white);
  margin-bottom: 20px;
}
.section-title em {
  font-style: italic;
  color: var(--gold);
}

/* Fade-up on scroll */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
/* Fallback: never leave content invisible */
.practice-card,
.about-image-wrap,
.about-content,
.contact-info-card,
.contact-wrapper > div {
  opacity: 1 !important;
  transform: none !important;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* =========================================
   PRACTICE AREAS
   ========================================= */
.practice {
  background: var(--bg-dark);
  padding: 100px 5%;
}

.practice-header {
  text-align: center;
  margin-bottom: 70px;
}

.practice-divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin: 24px auto 0;
}

.practice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: transparent;
  border: 1px solid var(--border);
  max-width: 1100px;
  margin: 0 auto;
  overflow: hidden;
}

.practice-card {
  background: var(--bg-dark);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: background var(--transition);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  /* Always visible — no reveal animation on cards */
  opacity: 1;
  transform: none;
}
.practice-card:nth-child(3),
.practice-card:nth-child(6) { border-right: none; }
.practice-card:nth-child(4),
.practice-card:nth-child(5),
.practice-card:nth-child(6) { border-bottom: none; }
.practice-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.practice-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0% 100%, rgba(201,168,76,0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}
.practice-card:hover {
  background: var(--bg-card);
}
.practice-card:hover::before { transform: scaleX(1); }
.practice-card:hover::after  { opacity: 1; }

.practice-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--gold-dark);
}

.practice-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  line-height: 1;
  color: #ffffff;
  opacity: 0.9;
  transition: opacity var(--transition), color var(--transition);
}
.practice-card:hover .practice-icon {
  color: var(--gold-light);
  opacity: 1;
}

.practice-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-white);
  line-height: 1.2;
  transition: color var(--transition-fast);
}
.practice-card:hover .practice-name { color: var(--gold-light); }

.practice-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* =========================================
   ABOUT STRIP / HOME TEASER
   ========================================= */
.about-strip {
  background: var(--bg-panel);
  padding: 100px 5%;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 80px;
  align-items: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about-image-wrap {
  position: relative;
  width: 420px;
  flex-shrink: 0;
}
.about-image-frame {
  position: relative;
  overflow: hidden;
  width: 340px;
  aspect-ratio: 3/4;
  margin-left: 20px;
}
.about-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: grayscale(15%) contrast(1.05);
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: block;
}
.about-image-wrap:hover .about-image-frame img { transform: scale(1.03); }

/* Gold corner frame — top-left and bottom-right brackets */
.about-image-border {
  position: absolute;
  top: -12px;
  left: 20px;
  width: 340px;
  height: calc(100% + 24px);
  pointer-events: none;
}
.about-image-border::before,
.about-image-border::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 40px;
  border-color: var(--gold);
  border-style: solid;
  transition: width 0.4s ease, height 0.4s ease;
}
.about-image-border::before {
  top: 0; left: 0;
  border-width: 1px 0 0 1px;
}
.about-image-border::after {
  bottom: 0; right: 0;
  border-width: 0 1px 1px 0;
}
.about-image-wrap:hover .about-image-border::before,
.about-image-wrap:hover .about-image-border::after {
  width: 64px;
  height: 64px;
}

.about-content { padding-right: 20px; }
.about-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 4px;
}
.about-role {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.about-text {
  font-size: 0.95rem;
  color: var(--text-sub);
  line-height: 1.85;
  margin-bottom: 36px;
}
.about-divider {
  width: 40px; height: 1px;
  background: var(--gold);
  margin-bottom: 36px;
}

/* =========================================
   CONTACT SECTION
   ========================================= */
.contact {
  background: var(--bg-deep);
  padding: 100px 5%;
}
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 48px;
  position: relative;
  overflow: hidden;
}
.contact-info-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

.contact-info-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 36px;
  color: var(--text-white);
}

.contact-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}
.contact-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.contact-item-icon {
  width: 40px; height: 40px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 14px;
  transition: background var(--transition), color var(--transition);
}
.contact-item:hover .contact-item-icon {
  background: var(--gold);
  color: var(--bg-deep);
}

.contact-item-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.contact-item-value {
  font-size: 0.9rem;
  color: var(--text-sub);
  line-height: 1.6;
}

/* =========================================
   CONSULTATION FORM
   ========================================= */
.form-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.form-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 40px;
  line-height: 1.15;
}

.form-group {
  margin-bottom: 24px;
  position: relative;
}
.form-group label {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
  transition: color var(--transition-fast);
}
.form-group:focus-within label { color: var(--gold); }

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

input, select, textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  padding: 12px 0;
  color: var(--text-white);
  font-family: 'Raleway', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition-fast);
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
}
input:focus, select:focus, textarea:focus {
  border-bottom-color: var(--gold);
}
input::placeholder, textarea::placeholder { color: var(--text-muted); font-size: 0.85rem; }

select { cursor: pointer; background: var(--bg-deep); }
select option { background: var(--bg-panel); }

textarea {
  resize: vertical;
  min-height: 100px;
  border: 1px solid rgba(255,255,255,0.12);
  padding: 16px;
  margin-top: 6px;
  background: rgba(255,255,255,0.03);
  transition: border-color var(--transition-fast), background var(--transition-fast);
}
textarea:focus {
  border-color: var(--gold);
  background: rgba(201,168,76,0.03);
}

/* Underline animation on input */
.input-wrap { position: relative; }
.input-wrap::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.input-wrap:focus-within::after { width: 100%; }

.time-row { display: grid; grid-template-columns: 1fr 1fr 140px; gap: 16px; }

.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 48px;
  background: var(--gold);
  color: var(--bg-deep);
  font-family: 'Raleway', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  cursor: pointer;
  position: relative;
  transition: color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease, text-shadow 0.3s ease;
  margin-top: 12px;
}
.btn-submit::before,
.btn-submit::after { display: none; }
.btn-submit:hover {
  background: transparent;
  color: var(--gold-light);
  box-shadow:
    0 0 0 1px rgba(176,144,64,0.7),
    0 0 16px rgba(176,144,64,0.5),
    0 0 40px rgba(176,144,64,0.25),
    inset 0 0 16px rgba(176,144,64,0.08);
  text-shadow: 0 0 10px rgba(176,144,64,0.7);
}
.btn-submit span, .btn-submit svg { position: relative; z-index: 1; }
.btn-submit .btn-arrow { transition: transform var(--transition); }
.btn-submit:hover .btn-arrow { transform: translateX(6px); }

/* Form success */
.form-success {
  display: none;
  text-align: center;
  padding: 40px;
  border: 1px solid var(--gold);
  background: rgba(201,168,76,0.05);
}
.form-success.show { display: block; }
.form-success h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 12px;
}
.form-success p { color: var(--text-sub); font-size: 0.9rem; }

/* =========================================
   FOOTER
   ========================================= */
.site-footer {
  background: var(--bg-panel);
  border-top: 1px solid var(--border);
  padding: 70px 5% 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border);
}

.footer-address {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.social-btn {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 14px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.social-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  border-radius: 50%;
  transform: scale(0);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.social-btn svg { position: relative; z-index: 1; }
.social-btn:hover {
  border-color: var(--gold);
  color: var(--bg-deep);
  transform: translateY(-4px) rotate(8deg);
}
.social-btn:hover::before { transform: scale(1); }

.footer-col-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}
.footer-hours {
  font-size: 0.85rem;
  color: var(--text-sub);
  line-height: 1.8;
}
.footer-hours strong {
  color: var(--gold);
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  transition: color 0.25s ease, gap 0.3s ease, padding-left 0.3s ease;
  padding-left: 0;
}
.footer-links a::before {
  content: '';
  display: block;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
  flex-shrink: 0;
}
.footer-links a:hover {
  color: var(--gold);
  gap: 12px;
}
.footer-links a:hover::before { width: 16px; }

.footer-bottom {
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-powered {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-powered span {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}
.powered-logo {
  height: 22px;
  width: auto;
  opacity: 0.7;
  transition: opacity var(--transition-fast);
  filter: brightness(0) invert(1);
}
.powered-logo:hover { opacity: 1; }

/* Desktop: center the powered-by block */
@media (min-width: 769px) {
  .footer-bottom {
    flex-wrap: wrap;
  }
  .footer-powered {
    width: 100%;
    justify-content: center;
    padding-top: 12px;
    border-top: 1px solid var(--border);
    margin-top: 4px;
  }
}
.footer-copy {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}
.footer-copy a { color: var(--gold); transition: opacity var(--transition-fast); }
.footer-copy a:hover { opacity: 0.7; }

/* =========================================
   ABOUT PAGE HERO
   ========================================= */
.page-hero {
  padding: 160px 5% 80px;
  background: var(--bg-deep);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border), transparent);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(8,8,8,0.7), rgba(8,8,8,1)),
    url('images/hero-bg.jpg') center/cover no-repeat;
  opacity: 0.4;
}

.page-hero-content { position: relative; z-index: 1; }
.page-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  font-weight: 700;
  color: var(--text-white);
  letter-spacing: -0.02em;
  line-height: 1.0;
}
.page-hero-title span { color: var(--gold); }

/* =========================================
   MANAGING PARTNER SECTION
   ========================================= */
.partners {
  background: var(--bg-dark);
  padding: 100px 5%;
}
.partner-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 80px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

.partner-card {
  position: relative;
}
.partner-photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  margin-bottom: 28px;
}
.partner-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(15%);
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.partner-card:hover .partner-photo img { transform: scale(1.04); }
.partner-photo-border {
  position: absolute;
  top: -12px;
  left: -12px;
  right: -12px;
  bottom: -12px;
  pointer-events: none;
  z-index: 1;
}
.partner-photo-border::before,
.partner-photo-border::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 40px;
  border-color: var(--gold);
  border-style: solid;
  transition: width 0.4s ease, height 0.4s ease;
}
.partner-photo-border::before {
  top: 0; left: 0;
  border-width: 1px 0 0 1px;
}
.partner-photo-border::after {
  bottom: 0; right: 0;
  border-width: 0 1px 1px 0;
}
.partner-card:hover .partner-photo-border::before,
.partner-card:hover .partner-photo-border::after {
  width: 64px;
  height: 64px;
}
.partner-photo::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(8,8,8,0.8), transparent);
}

.partner-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 6px;
}
.partner-title {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.partner-social {
  display: flex;
  gap: 10px;
}

.partner-bio-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 36px;
  line-height: 1.15;
}
.partner-bio-section p {
  font-size: 0.95rem;
  color: var(--text-sub);
  line-height: 1.9;
  margin-bottom: 24px;
}

/* Timeline / credential items */
.credentials {
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}
.credentials-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}
.credential-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 16px;
  padding: 16px;
  border: 1px solid transparent;
  transition: border-color var(--transition), background var(--transition);
}
.credential-item:hover {
  border-color: var(--border);
  background: rgba(201,168,76,0.03);
}
.credential-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 8px;
  flex-shrink: 0;
}
.credential-text {
  font-size: 0.88rem;
  color: var(--text-sub);
  line-height: 1.6;
}

/* =========================================
   ALERT MESSAGES
   ========================================= */
.alert {
  padding: 16px 20px;
  border-left: 3px solid var(--gold);
  background: rgba(201,168,76,0.08);
  font-size: 0.85rem;
  color: var(--text-sub);
  margin-bottom: 24px;
}
.alert.error {
  border-left-color: #e05555;
  background: rgba(224,85,85,0.08);
  color: #e8a0a0;
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
  .practice-grid { grid-template-columns: repeat(2, 1fr); }
  .about-strip { grid-template-columns: 1fr; gap: 48px; }
  .about-image-wrap { width: 100%; }
  .about-image-frame { width: 100%; max-width: 340px; margin-left: 0; }
  .contact-wrapper, .partner-layout { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-image-wrap { max-width: 400px; }
}

@media (max-width: 768px) {

  /* ---- GLOBAL ---- */
  .nav-links, .btn-phone { display: none; }
  .hamburger { display: flex; }
  .cursor-dot, .cursor-ring { display: none; }

  /* ---- HEADER ---- */
  .site-header {
    height: 64px;
    padding: 0 4%;
  }
  /* FIX 1: Restore full logo text like desktop, scaled down for mobile */
  .logo-text .firm-name { font-size: 0.46rem; letter-spacing: 0.22em; }
  .logo-text .firm-sub  { font-size: 0.4rem; letter-spacing: 0.1em; }
  .logo-text .firm-brand { font-size: 1.05rem; }
  .logo-icon { width: 40px; height: 40px; }
  .logo-img  { width: 28px; height: 28px; }
  .logo { gap: 10px; }

  /* ---- MOBILE MENU ---- */
  .mobile-menu {
    inset: 64px 0 0 0;
    gap: 28px;
    padding: 40px 8%;
    justify-content: flex-start;
    padding-top: 60px;
  }
  .mobile-menu a {
    font-size: 2.4rem;
    letter-spacing: 0.06em;
  }

  /* ---- HERO ---- */
  /* FIX 2: Shift hero-bg right + darken overlay for text clarity on mobile */
  .hero-bg {
    background-position: 72% center;
    background-image:
      linear-gradient(105deg, rgba(8,8,8,0.82) 0%, rgba(8,8,8,0.65) 55%, rgba(8,8,8,0.50) 100%),
      url('images/hero-bg.jpg');
  }
  .hero-content {
    padding: 0 5%;
    padding-top: 64px;
    max-width: 100%;
  }
  .hero-title {
    font-size: clamp(3rem, 13vw, 5rem);
    line-height: 1;
  }
  .hero-eyebrow {
    margin-bottom: 16px;
  }
  .hero-eyebrow span {
    font-size: 0.62rem;
    letter-spacing: 0.22em;
  }
  .hero-subtitle {
    font-size: clamp(0.9rem, 3.5vw, 1.2rem);
    margin-bottom: 32px;
  }
  .hero-cta {
    padding: 14px 28px;
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    position: relative;
    z-index: 0;
    overflow: hidden;
    border-color: transparent !important;
    box-shadow: 0 0 10px rgba(201,168,76,0.4), 0 0 24px rgba(201,168,76,0.2);
  }

  /* Rotating gradient that creates a travelling border glow */
  .hero-cta::before {
    content: '';
    position: absolute;
    inset: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
      from 0deg,
      transparent 0deg,
      transparent 300deg,
      rgba(255,230,80,1) 330deg,
      rgba(201,168,76,0.8) 345deg,
      transparent 360deg
    );
    animation: rotateBorder 2s linear infinite;
    z-index: -1;
  }

  /* Mask to show only the border edge */
  .hero-cta::after {
    content: '';
    position: absolute;
    inset: 1.5px;
    background: var(--bg-deep);
    z-index: -1;
    border-radius: 1px;
  }

  @keyframes rotateBorder {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
  }

  .hero-cta:hover::before {
    animation-duration: 0.7s;
    background: conic-gradient(
      from 0deg,
      transparent 0deg,
      transparent 270deg,
      rgba(255,245,100,1) 310deg,
      rgba(201,168,76,0.9) 335deg,
      transparent 360deg
    );
  }

  .hero-cta:hover {
    box-shadow: 0 0 16px rgba(201,168,76,0.7), 0 0 36px rgba(201,168,76,0.35);
  }
  .scroll-indicator { display: none; }
  .hero-ornament { display: none; }

  /* ---- SECTION LABELS & TITLES ---- */
  .section-label {
    font-size: 0.6rem;
    letter-spacing: 0.28em;
  }
  .section-title {
    font-size: clamp(1.8rem, 7vw, 2.8rem);
  }

  /* ---- PRACTICE AREAS ---- */
  .practice {
    padding: 64px 4%;
  }
  .practice-header { margin-bottom: 40px; }
  /* Mobile carousel */
  .practice-grid {
    grid-template-columns: 1fr;
    border: none;
    overflow: visible;
    position: relative;
  }
  .practice-card {
    display: none;
    padding: 32px 28px;
    gap: 14px;
    border: 1px solid var(--border);
    border-radius: 4px;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    animation: carouselFade 0.5s ease;
  }
  .practice-card.active-slide {
    display: flex;
  }
  .practice-card:nth-child(3),
  .practice-card:nth-child(6) { border-right: 1px solid var(--border); }
  .practice-card:nth-child(4),
  .practice-card:nth-child(5),
  .practice-card:nth-child(6) { border-bottom: 1px solid var(--border); }
  @keyframes carouselFade {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  /* Dot indicators */
  .carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
  }
  .carousel-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--border);
    border: 1px solid var(--gold-dark);
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
  }
  .carousel-dot.active {
    background: var(--gold);
    transform: scale(1.3);
  }
  .practice-number { font-size: 0.65rem; }
  .practice-name { font-size: 1.15rem; }
  .practice-desc { font-size: 0.78rem; }

  /* ---- ABOUT STRIP ---- */
  .about-strip {
    padding: 64px 4%;
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .about-image-wrap {
    width: 100%;
    max-width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
  }
  /* FIX 3a: Smaller Bintomawi photo on home about-strip */
  .about-image-frame {
    width: 160px;
    max-width: 160px;
    margin-left: 0;
    position: relative;
    border: 1px solid rgba(201,168,76,0.5);
    border-radius: 4px;
    box-shadow:
      0 0 0 3px rgba(139,123,42,0.08),
      0 0 16px rgba(201,168,76,0.25),
      0 0 40px rgba(201,168,76,0.10);
  }
  /* Hide the mispositioned border element; use frame ::before/::after for gold corners */
  .about-image-border {
    display: none;
  }
  .about-image-frame::before,
  .about-image-frame::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    border-color: var(--gold);
    border-style: solid;
    z-index: 2;
    pointer-events: none;
  }
  .about-image-frame::before {
    top: -6px;
    left: -6px;
    border-width: 1px 0 0 1px;
  }
  .about-image-frame::after {
    bottom: -6px;
    right: -6px;
    border-width: 0 1px 1px 0;
  }
  .about-content {
    padding-right: 0;
    text-align: left;
  }
  .about-name { font-size: 1.7rem; }
  .about-role { font-size: 0.65rem; letter-spacing: 0.22em; }
  .about-text { font-size: 0.88rem; line-height: 1.75; margin-bottom: 24px; }
  .hero-cta {
    padding: 14px 28px;
    font-size: 0.7rem;
  }

  /* ---- CONTACT SECTION ---- */
  .contact {
    padding: 64px 4%;
  }
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-info-card {
    padding: 28px 24px;
  }
  .contact-info-title { font-size: 1.5rem; margin-bottom: 24px; }
  .contact-item { gap: 14px; margin-bottom: 20px; padding-bottom: 20px; }
  .contact-item-icon { width: 34px; height: 34px; flex-shrink: 0; }
  .contact-item-label { font-size: 0.6rem; }
  .contact-item-value { font-size: 0.82rem; }
  .form-title { font-size: 0.6rem; }
  .form-heading { font-size: 1.7rem; margin-bottom: 28px; }
  .form-row, .time-row { grid-template-columns: 1fr; }
  .time-row { gap: 12px; }
  .btn-submit {
    width: 100%;
    justify-content: center;
    padding: 16px 24px;
    font-size: 0.72rem;
  }

  /* ---- FOOTER ---- */
  .site-footer { padding: 48px 4% 0; }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 40px;
  }
  .footer-logo .logo-icon { width: 44px; height: 44px; }
  .footer-logo .logo-img  { width: 32px; height: 32px; }
  .footer-logo .firm-brand { font-size: 1.3rem; }
  .footer-address { font-size: 0.8rem; margin-top: 12px; margin-bottom: 16px; }
  .footer-col-title { font-size: 1rem; margin-bottom: 16px; }
  .footer-hours { font-size: 0.82rem; }
  .footer-links { gap: 10px; }
  .footer-links a { font-size: 0.82rem; }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
    padding: 20px 0;
  }
  .footer-copy { font-size: 0.7rem; }
  .footer-powered span { font-size: 0.7rem; }
  .powered-logo { height: 16px; }

  /* ---- ABOUT PAGE (tentang.php) ---- */
  .page-hero {
    padding: 110px 4% 48px;
  }
  .page-hero-title {
    font-size: clamp(2rem, 10vw, 3.5rem);
  }
  .partners { padding: 56px 4%; }
  .partner-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  /* FIX 3b: Smaller Bintomawi photo on tentang.php partners section */
  .partner-photo {
    aspect-ratio: 4/5;
    max-width: 200px;
    margin: 0 auto 20px;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(201,168,76,0.5);
    box-shadow:
      0 0 0 3px rgba(139,123,42,0.08),
      0 0 16px rgba(201,168,76,0.25),
      0 0 40px rgba(201,168,76,0.10);
  }
  /* FIX 4: Realign gold border so it sits neatly around the photo on mobile */
  .partner-photo-border {
    top: 8px;
    right: -8px;
    bottom: -8px;
    left: 8px;
    border-radius: 6px;
  }
  /* FIX 5: Center the partner card name/title/social block on mobile */
  .partner-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .partner-social {
    justify-content: center;
  }
  .partner-name { font-size: 1.3rem; }
  .partner-bio-section h2 { font-size: 1.7rem; margin-bottom: 24px; }
  .partner-bio-section p { font-size: 0.88rem; line-height: 1.8; }
  .credentials { margin-top: 32px; padding-top: 32px; }
  .credentials-title { font-size: 1rem; }
  .credential-item { padding: 12px; gap: 12px; }
  .credential-text { font-size: 0.82rem; }
}

/* ---- Extra small screens ---- */
@media (max-width: 400px) {
  .hero-title { font-size: clamp(2.4rem, 14vw, 3.5rem); }
  .site-header { height: 58px; }
  .mobile-menu { inset: 58px 0 0 0; }
  .logo-icon { width: 36px; height: 36px; }
  .logo-img  { width: 24px; height: 24px; }
  .logo-text .firm-brand { font-size: 1rem; }
  .about-image-frame { width: 180px; max-width: 180px; }
  .about-image-border { width: 180px; }
}

/* =========================================
   GOLD SHIMMER EFFECT
   ========================================= */
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}
.shimmer-text {
  background: linear-gradient(90deg, var(--gold-dark) 0%, var(--gold-light) 40%, var(--gold) 60%, var(--gold-dark) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}

/* Floating gold badge */
.gold-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border: 1px solid var(--gold);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}