
:root {
  /* PRIMARY PALETTE — DEEP, RICH, AUTHORITATIVE */
  --ink: #0C0F12;           /* Absolute black with depth */
  --ivory: #F3F0EA;         /* Warm, textured white */
  --brass: #9A7B5F;         /* Antique, heritage, not shiny */
  --charcoal: #1E1E1E;      /* Surface depth */
  --ash: #E8E6E1;           /* Subtle grey */
  --pure-white: #FFFFFF;
  
  /* TYPOGRAPHY */
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* SPACING — ARCHITECTURAL SCALE */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --space-2xl: 8rem;
  
  /* TRANSITIONS — RESTRAINED */
  --transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  --transition-fast: all 0.2s ease;
  
  /* BORDERS — SUBTLE, PRECISE */
  --border-thin: 1px solid rgba(154, 123, 95, 0.15);
  --border-brass: 1px solid var(--brass);
  
  /* SHADOWS — DEEP, NOT HARSH */
  --shadow-subtle: 0 20px 35px -15px rgba(0,0,0,0.05);
  --shadow-deep: 0 30px 50px -20px rgba(0,0,0,0.15);
}

/* ---------- RESET — PERFECT CANVAS ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  background-color: var(--ivory);
}

body {
  font-family: var(--sans);
  background-color: var(--ivory);
  color: var(--ink);
  line-height: 1.6;
  font-weight: 350;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ---------- TYPOGRAPHY — SCULPTURAL ---------- */
h1, h2, h3, h4 {
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

h2 {
  font-size: 3.2rem;
  font-family: var(--serif);
  font-weight: 600;
  color: var(--ink);
}

h3 {
  font-size: 1.5rem;
  font-family: var(--serif);
  font-weight: 600;
  color: var(--ink);
}

a {
  text-decoration: none;
  color: inherit;
}

/* ---------- CONTAINER — GENEROUS BREATHING ---------- */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

@media (max-width: 900px) {
  .container {
    padding: 0 var(--space-md);
  }
}

/* ---------- SECTION HEADERS — ARCHITECTURAL RHYTHM ---------- */
.section-header {
  margin-bottom: var(--space-xl);
}

.section-header.left {
  text-align: left;
}

.section-header.centered {
  text-align: center;
}

.section-eyebrow {
  font-family: var(--sans);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--brass);
  font-weight: 500;
  display: block;
  margin-bottom: var(--space-xs);
}

.section-title {
  font-size: 3.5rem;
  font-family: var(--serif);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.05;
  margin-bottom: var(--space-sm);
}

.section-divider {
  width: 80px;
  height: 2px;
  background-color: var(--brass);
  margin-top: var(--space-sm);
}

.section-divider.left {
  margin-left: 0;
}

.section-divider.centered {
  margin-left: auto;
  margin-right: auto;
}

/* ---------- NAVBAR — INVISIBLE INTELLIGENCE ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.2rem 0;
  background: rgba(243, 240, 234, 0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: var(--border-thin);
  transition: var(--transition);
  opacity: 0.95;
}

.nav:hover {
  opacity: 1;
  background: rgba(243, 240, 234, 0.95);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-symbol {
  width: 48px;
  height: 48px;
  background-image: url('assets/logo.jpeg');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
}

.logo-text {
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--ink);
}

.logo-text span {
  font-weight: 350;
  color: var(--brass);
  display: block;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  margin-top: 0.2rem;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 2.8rem;
}

/* ---------- HAMBURGER MENU ---------- */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  transition: var(--transition-fast);
  border-radius: 4px;
}

.hamburger:hover {
  background: rgba(154, 123, 95, 0.1);
}

.hamburger-line {
  width: 24px;
  height: 2px;
  background-color: var(--ink);
  transition: var(--transition-fast);
  border-radius: 1px;
}

.hamburger.active .hamburger-line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* MOBILE MENU OVERLAY */
.nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(12, 15, 18, 0.4);
  z-index: 999;
  opacity: 0;
  transition: var(--transition);
}

.nav-overlay.active {
  display: block;
  opacity: 1;
}

.nav-links {
  display: flex;
  gap: 2.8rem;
}

.nav-link {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 450;
  color: var(--ink);
  opacity: 0.7;
  transition: var(--transition-fast);
  position: relative;
  padding-bottom: 0.3rem;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background-color: var(--brass);
  transition: var(--transition);
}

.nav-link:hover {
  opacity: 1;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link.active {
  opacity: 1;
  font-weight: 500;
}

/* ---------- HERO — PHOTO AS ARCHITECTURE ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--ivory);
  padding: var(--space-2xl) 0 var(--space-xl);
  padding-top: calc(var(--space-2xl) + 80px);
}

/* ---------- FONT AWESOME ICON SPACING ---------- */
.btn i,
.concierge-email i,
.concierge-wa i,
.footer-contact-group i {
  margin-right: 0.4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: var(--space-xl);
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
  align-items: center;
}

.hero-suptitle {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 5px;
  color: var(--brass);
  font-weight: 500;
  margin-bottom: var(--space-sm);
}

.hero-title {
  margin-bottom: var(--space-md);
}

.hero-name {
  display: block;
  font-size: 2rem;
  font-family: var(--serif);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1;
}

.hero-name-large {
  display: block;
  font-size: 5.2rem;
  font-family: var(--serif);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 0.95;
  margin-top: 0.2rem;
}

.hero-qualifications {
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--brass);
  margin-bottom: var(--space-md);
  font-family: var(--serif);
  letter-spacing: 0.3px;
}

.hero-divider {
  width: 60px;
  height: 2px;
  background-color: var(--brass);
  margin: var(--space-md) 0;
}

.hero-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--charcoal);
  margin-bottom: var(--space-lg);
  max-width: 550px;
  font-weight: 350;
}

.hero-actions {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
  flex-wrap: wrap;
}

.hero-credentials {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-top: var(--space-md);
}

.credential-item {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--brass);
  font-weight: 450;
}

.credential-divider {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: var(--brass);
  opacity: 0.4;
}

/* ---------- HERO PHOTO — SCULPTURAL, DOMINANT ---------- */
.hero-photo {
  position: relative;
}

.photo-frame {
  position: relative;
  width: 100%;
  max-width: 480px;
  margin-left: auto;
  overflow: hidden;
}

.photo-image {
  aspect-ratio: 4/5;
  width: 100%;
  background-color: var(--charcoal);
  background-image: url('assets/d.jpeg');
  background-size: cover;
  background-position: center 30%;
  filter: grayscale(80%) contrast(1.1);
  transition: var(--transition);
  border: 1px solid rgba(154, 123, 95, 0.2);
}

.photo-frame:hover .photo-image {
  filter: grayscale(60%) contrast(1.05);
}

.photo-credit {
  position: absolute;
  bottom: 0;
  right: 0;
  background: var(--ink);
  color: var(--ivory);
  font-size: 0.7rem;
  padding: 0.6rem 1.2rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 400;
  border: none;
}

/* ---------- BUTTONS — CONCIERGE, NOT TACTICAL ---------- */
.btn {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  text-align: center;
  background: transparent;
  position: relative;
}

.btn-primary {
  background: var(--ink);
  color: var(--ivory);
  border: 1px solid var(--ink);
}

.btn-primary:hover {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--brass);
}

.btn-secondary:hover {
  background: var(--brass);
  color: var(--ivory);
  border: 1px solid var(--brass);
}

.btn-full {
  width: 100%;
}

/* ---------- EXPERTISE SECTION — 7 PILLARS, HEAVY ---------- */
.expertise {
  padding: var(--space-2xl) 0;
  background: var(--pure-white);
  border-top: var(--border-thin);
  border-bottom: var(--border-thin);
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-top: var(--space-xl);
}

.expertise-card {
  background: var(--charcoal);
  color: var(--ivory);
  padding: 2.2rem 2rem 2.2rem;
  position: relative;
  transition: var(--transition);
  border: none;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.expertise-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-deep);
}

.card-brass {
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--brass);
  transition: var(--transition);
}

.expertise-card:hover .card-brass {
  height: 100%;
}

.card-title {
  font-size: 1.8rem;
  font-family: var(--serif);
  font-weight: 600;
  color: var(--ivory);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
  border-bottom: 1px solid rgba(243, 240, 234, 0.1);
  padding-bottom: 1rem;
}

.card-list {
  list-style: none;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.card-list li {
  padding: 0.4rem 0 0.4rem 1.2rem;
  position: relative;
  font-size: 0.95rem;
  color: rgba(243, 240, 234, 0.85);
  font-weight: 350;
}

.card-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--brass);
}

.card-concierge {
  display: flex;
  gap: 0.8rem;
  margin-top: 0.8rem;
  border-top: 1px solid rgba(243, 240, 234, 0.1);
  padding-top: 1.5rem;
}

.concierge-email,
.concierge-wa {
  padding: 0.6rem 1.2rem;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  background: transparent;
  border: 1px solid rgba(243, 240, 234, 0.2);
  color: var(--ivory);
  transition: var(--transition);
  flex: 1;
  text-align: center;
}

.concierge-email:hover {
  background: var(--brass);
  border-color: var(--brass);
  color: var(--ink);
}

.concierge-wa:hover {
  background: #1f3a4b;
  border-color: #1f3a4b;
  color: white;
}

/* ---------- ABOUT SECTION — CREDENTIALS, SECONDARY PHOTO ---------- */
.about {
  padding: var(--space-2xl) 0;
  background: var(--ivory);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--space-xl);
  align-items: start;
}

.about-signature {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin: var(--space-md) 0 var(--space-lg);
}

.about-portrait-small {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--brass);
}

.portrait-small-image {
  width: 100%;
  height: 100%;
  background-image: url('assets/d.jpeg');
  background-size: cover;
  background-position: center;
  filter: grayscale(80%);
}

.about-qualifications-compact {
  display: flex;
  flex-direction: column;
}

.about-degree {
  font-size: 1.2rem;
  font-weight: 600;
  font-family: var(--serif);
  color: var(--ink);
}

.about-candidacy {
  font-size: 0.9rem;
  color: var(--brass);
  font-weight: 500;
}

.about-admission {
  font-size: 0.85rem;
  margin-top: 0.3rem;
  color: var(--charcoal);
}

.about-lpc {
  font-size: 0.8rem;
  color: var(--brass);
  letter-spacing: 1px;
  margin-top: 0.2rem;
}

.about-qualifications-full {
  margin-top: var(--space-lg);
  border-top: var(--border-thin);
  padding-top: var(--space-lg);
}

.about-qualifications-full h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--brass);
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.about-qualifications-full p {
  margin-bottom: var(--space-md);
  color: var(--charcoal);
  font-size: 1rem;
  line-height: 1.7;
}

.about-heraldic {
  background: var(--pure-white);
  padding: var(--space-xl) var(--space-lg);
  border: var(--border-thin);
  text-align: center;
  box-shadow: var(--shadow-subtle);
}

/* HERALDIC LOGO — ACTUAL LOGO.JPEG */
.heraldic-logo {
  width: 80px;
  height: 80px;
  background-image: url('assets/logo.jpeg');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  margin: 0 auto 1.5rem;
}

.heraldic-quote {
  font-size: 1.2rem;
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink);
  margin-bottom: var(--space-lg);
  line-height: 1.6;
}

.heraldic-contact p {
  font-size: 0.95rem;
  color: var(--charcoal);
  margin-bottom: 0.3rem;
}

.heraldic-email,
.heraldic-web {
  font-size: 0.85rem;
  color: var(--brass);
  word-break: break-all;
}

/* ---------- CONTACT SECTION — DIRECT CONSULTATION CARDS ---------- */
.contact {
  padding: var(--space-2xl) 0;
  background: var(--pure-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: var(--space-xl);
}

.contact-card {
  background: var(--ivory);
  padding: 2.5rem 2rem;
  text-align: center;
  border: var(--border-thin);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.contact-card:hover {
  border-color: var(--brass);
  box-shadow: var(--shadow-subtle);
}

.contact-icon {
  font-size: 2.5rem;
  color: var(--brass);
  margin-bottom: var(--space-sm);
}

.contact-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--ink);
}

.contact-primary {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.3rem;
  word-break: break-all;
}

.contact-primary a {
  color: var(--ink);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}

.contact-primary a:hover {
  border-bottom-color: var(--brass);
}

.contact-secondary {
  font-size: 0.85rem;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.contact-secondary a {
  color: var(--charcoal);
}

.contact-note {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--brass);
  margin: 1rem 0;
}

.contact-phone-large {
  font-size: 1.5rem;
  font-weight: 600;
  font-family: var(--serif);
  color: var(--ink);
  margin-bottom: 0.3rem;
}

.contact-phone-large a {
  color: var(--ink);
}

.contact-phone {
  font-size: 0.95rem;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.contact-address {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--charcoal);
  margin-bottom: 1rem;
}

.contact-lpc {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--brass);
  margin-top: 0.5rem;
}

.contact-micro {
  margin-top: 1rem;
  font-size: 0.7rem;
  color: var(--brass);
  opacity: 0.8;
}

/* ---------- PRIVATE CLERK CHAT — DISCREET, FLOATING ---------- */
.clerk-chat {
  position: fixed;
  bottom: 2.5rem;
  right: 2.5rem;
  z-index: 1000;
}

.clerk-button {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--brass);
  color: var(--ivory);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: var(--transition);
  border: none;
}

.clerk-button:hover {
  background: var(--ink);
  transform: scale(1.05);
}

/* CLERK ICON — ACTUAL LOGO.JPEG */
.clerk-icon {
  width: 30px;
  height: 30px;
  background-image: url('assets/logo.jpeg');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  margin-bottom: 2px;
}

.clerk-text {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 2px;
}

.clerk-panel {
  position: absolute;
  bottom: 75px;
  right: 0;
  width: 320px;
  background: var(--pure-white);
  border: var(--border-thin);
  box-shadow: var(--shadow-deep);
  display: none;
  transition: var(--transition);
}

.clerk-panel.active {
  display: block;
}

.clerk-header {
  background: var(--ink);
  color: var(--ivory);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

/* CLERK HEADER ICON — ACTUAL LOGO.JPEG */
.clerk-header-icon {
  width: 24px;
  height: 24px;
  background-image: url('assets/logo.jpeg');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.clerk-header-title {
  font-weight: 500;
  letter-spacing: 1px;
  flex-grow: 1;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.clerk-close {
  cursor: pointer;
  font-size: 1rem;
  opacity: 0.7;
  transition: var(--transition-fast);
}

.clerk-close:hover {
  opacity: 1;
}

.clerk-body {
  padding: 1.8rem;
}

.clerk-greeting {
  font-size: 0.95rem;
  margin-bottom: 1.2rem;
  color: var(--ink);
  font-weight: 450;
}

.clerk-questions {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

.clerk-question {
  background: transparent;
  border: 1px solid var(--brass);
  padding: 0.7rem 1rem;
  font-size: 0.85rem;
  color: var(--ink);
  cursor: pointer;
  transition: var(--transition-fast);
  text-align: left;
  border-radius: 0;
}

.clerk-question:hover {
  background: var(--brass);
  color: var(--ivory);
}

.clerk-response {
  margin-bottom: 1.2rem;
}

.clerk-answer {
  background: var(--ash);
  padding: 1rem;
  font-size: 0.85rem;
  color: var(--ink);
  border-left: 3px solid var(--brass);
}

.clerk-direct {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--brass);
  margin-top: 1rem;
  text-align: center;
}

/* ---------- FOOTER — DARK, AUTHORITATIVE ---------- */
.footer {
  background: var(--ink);
  color: var(--ivory);
  padding: var(--space-xl) 0 var(--space-lg);
  border-top: 2px solid var(--brass);
}

.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.footer-identity {
  display: flex;
  flex-direction: column;
}

/* FOOTER LOGO — ACTUAL LOGO.JPEG */
.footer-logo {
  width: 60px;
  height: 60px;
  background-image: url('assets/logo.jpeg');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  margin-bottom: 1rem;
}

.footer-name {
  font-size: 1.8rem;
  font-family: var(--serif);
  font-weight: 600;
  color: var(--ivory);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.footer-title {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--brass);
  margin-bottom: 0.3rem;
}

.footer-lpc {
  font-size: 0.75rem;
  color: rgba(243, 240, 234, 0.5);
}

.footer-contact {
  display: flex;
  gap: var(--space-xl);
  flex-wrap: wrap;
}

.footer-contact-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-contact-group p {
  font-size: 0.9rem;
  color: rgba(243, 240, 234, 0.85);
}

.footer-bottom {
  border-top: 1px solid rgba(243, 240, 234, 0.1);
  padding-top: var(--space-lg);
  text-align: center;
  font-size: 0.8rem;
  color: rgba(243, 240, 234, 0.5);
  letter-spacing: 1px;
}

/* ---------- RESPONSIVE — FLAWLESS ADAPTATION ---------- */
@media (max-width: 1200px) {
  .container {
    padding: 0 var(--space-md);
  }
  
  .hero-grid {
    gap: var(--space-lg);
    padding: 0 var(--space-md);
  }
  
  .section-title {
    font-size: 3rem;
  }
  
  .nav-container {
    padding: 0 var(--space-md);
  }
}

@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  
  .hero-photo {
    order: -1;
    max-width: 480px;
    margin: 0 auto;
  }
  
  .photo-frame {
    margin: 0 auto;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  
  .nav-links {
    gap: 1.8rem;
  }
}

@media (max-width: 900px) {
  .hero-name-large {
    font-size: 4rem;
  }
  
  .section-title {
    font-size: 2.8rem;
  }
  
  .nav-container {
    padding: 0 var(--space-md);
  }
  
  /* SHOW HAMBURGER, HIDE DESKTOP NAV */
  .hamburger {
    display: flex;
    z-index: 1001;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 280px;
    background: var(--ivory);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: var(--transition);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-left: var(--border-thin);
    z-index: 1000;
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .nav-link {
    font-size: 1.1rem;
    letter-spacing: 2px;
    padding: 1rem 2rem;
    border-radius: 2px;
    transition: var(--transition-fast);
  }
  
  .nav-link:hover {
    background: rgba(154, 123, 95, 0.1);
  }
  
  .logo-text {
    display: none;
  }
  
  .expertise-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-main {
    flex-direction: column;
  }
  
  .footer-contact {
    gap: var(--space-md);
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .container {
    padding: 0 var(--space-md);
  }
  
  .hero {
    padding: var(--space-xl) 0;
  }
  
  .hero-name-large {
    font-size: 3.2rem;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .hero-actions {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
  }
  
  /* SMALLER MOBILE NAV ADJUSTMENTS */
  .nav-links {
    width: 100%;
    right: -100%;
  }
  
  .nav-link {
    font-size: 1rem;
    letter-spacing: 1.5px;
    width: 100%;
    text-align: center;
  }
  
  .card-concierge {
    flex-direction: column;
  }
  
  .clerk-chat {
    bottom: 1.5rem;
    right: 1.5rem;
  }
  
  .clerk-panel {
    width: 280px;
    right: 0;
  }
}

/* ========== END OF CSS — 100/10, FUTURE LAW, ARCHITECTURAL ========== */