:root {
  --color-black: #050505;
  --color-deep-black: #0a0a0a;
  --color-slate-grey: #1f2937;
  --color-slate-light: #374151;
  --color-bronze: #C89B60; 
  --color-bronze-hover: #a87e4a;
  --color-white: #ffffff;
  --color-off-white: #f3f4f6;
  --color-text: #e5e7eb;
  --color-text-muted: #9ca3af;
  
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  
  --transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

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

body {
  background-color: var(--color-black);
  color: var(--color-text);
  font-family: var(--font-body);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.modal-open {
  overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-white);
  font-weight: 600;
  letter-spacing: 0.5px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Typography Enhancements */
.text-bronze { color: var(--color-bronze); }
.text-center { text-align: center; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-8 { margin-bottom: 4rem; }
.text-muted { color: var(--color-text-muted); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 1.1rem 2.8rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, #DFB983 0%, var(--color-bronze) 100%);
  color: var(--color-black);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(200, 155, 96, 0.25);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--color-bronze);
  color: var(--color-bronze);
}

.btn-outline:hover {
  background: rgba(200, 155, 96, 0.1);
  transform: translateY(-3px);
}

/* Header & Nav */
header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1.5rem 0;
  z-index: 1000;
  background: rgba(5, 5, 5, 0.92);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(255,255,255,0.03);
  transition: var(--transition);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.logo-image {
  height: 45px;
  width: auto;
  border-radius: 2px;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--color-white);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-link {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
  color: var(--color-text-muted);
  position: relative;
  cursor: pointer;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -6px;
  left: 0;
  background-color: var(--color-bronze);
  transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
  color: var(--color-white);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

/* Page Sections - Increased Whitespace by 25% */
.page-section {
  display: none;
  min-height: 100vh;
  padding-top: 125px; /* Increased from 100px */
  padding-bottom: 5rem;
  animation: fadeIn 0.6s ease-out forwards;
}

.page-section.active {
  display: block;
}

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

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at center, var(--color-slate-grey) 0%, var(--color-black) 80%);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('eb4d1c16-c8e5-49e5-927a-b7af080d3b7c.jfif') center/cover;
  opacity: 0.12;
  mix-blend-mode: overlay;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
}

.hero h1 {
  font-size: 4.8rem;
  line-height: 1.15;
  margin-bottom: 2rem;
  background: linear-gradient(to right, #ffffff, #d1d1d1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

.hero p.sub-headline {
  font-size: 1.6rem;
  color: var(--color-text-muted);
  margin-bottom: 3.5rem;
  max-width: 700px;
  line-height: 1.6;
}

/* Authority Bar (Impact Ribbon) */
.authority-bar {
  background: linear-gradient(90deg, var(--color-deep-black), var(--color-slate-grey), var(--color-deep-black));
  padding: 6rem 0;
  border-top: 1px solid rgba(200, 155, 96, 0.25);
  border-bottom: 1px solid rgba(200, 155, 96, 0.25);
  position: relative;
  z-index: 20;
}

.authority-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  text-align: center;
}

.stat-item h3 {
  font-size: 4.2rem;
  color: var(--color-bronze);
  margin-bottom: 1rem;
  font-weight: 700;
  letter-spacing: -1px;
}

.stat-item p {
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-text-muted);
  font-weight: 500;
}

/* Services */
.services-section {
  padding: 8rem 0; /* Increased whitespace */
}

/* Redesigned Engagement Models */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 5rem;
    align-items: stretch;
}

.pricing-card {
    background: rgba(31, 41, 55, 0.5);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-10px);
    background: rgba(31, 41, 55, 0.8);
    border-color: rgba(200, 155, 96, 0.3);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: transparent;
    transition: var(--transition);
}

.pricing-card:hover::before {
    background: var(--color-bronze);
}

.pricing-card.popular {
    border-color: rgba(200, 155, 96, 0.4);
    background: rgba(31, 41, 55, 0.7);
    transform: scale(1.05);
    z-index: 10;
}

.pricing-card.popular:hover {
    transform: scale(1.06) translateY(-10px);
}

.pricing-card.popular::before {
    background: var(--color-bronze);
}

.pricing-header {
    text-align: left;
    padding: 0;
    margin-bottom: 3rem;
}

.pricing-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-white);
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.pricing-subtitle {
    font-size: 0.85rem;
    color: var(--color-bronze);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

.pricing-body {
    padding: 0;
    margin-bottom: 3.5rem;
    flex-grow: 1;
}

.pricing-desc {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    color: var(--color-text);
}

.pricing-features {
    list-style: none;
    margin: 0;
}

.pricing-features li {
    font-size: 0.95rem;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--color-text-muted);
}

.pricing-features li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--color-bronze);
    border-radius: 50%;
    flex-shrink: 0;
}

.pricing-footer {
    margin-top: auto;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-commitment-box {
    margin-bottom: 2rem;
}

.commitment-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-text-muted);
    margin-bottom: 0.5rem;
    display: block;
}

.commitment-value {
    font-size: 1.15rem;
    color: var(--color-white);
    font-weight: 600;
}

.investment-box {
    background: rgba(200, 155, 96, 0.05);
    padding: 1.5rem;
    border-radius: 2px;
    text-align: center;
}

.investment-value {
    font-size: 1.8rem;
    color: var(--color-bronze);
    font-family: var(--font-heading);
    font-weight: 700;
}


/* About Section */
.about-section {
  padding: 8rem 0; /* Increased whitespace */
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-image {
  width: 100%;
  height: auto;
  max-height: 700px;
  object-fit: contain;
  border-radius: 4px;
  border: 1px solid rgba(200, 155, 96, 0.2);
  box-shadow: 20px 20px 0 rgba(200, 155, 96, 0.05);
  background: rgba(0,0,0,0.2);
  cursor: zoom-in;
  transition: var(--transition);
}

.about-image:hover {
  transform: scale(1.02);
  box-shadow: 25px 25px 0 rgba(200, 155, 96, 0.08);
}

.credentials {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.credential-badge {
  background: rgba(255,255,255,0.03);
  border-left: 3px solid var(--color-bronze);
  color: var(--color-white);
  padding: 1.2rem 1.5rem;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: var(--transition);
}

.credential-badge:hover {
  background: rgba(200, 155, 96, 0.08);
  transform: translateX(5px);
}

/* About Section Specifics */
.about-narrative {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: var(--color-white);
  line-height: 1.8;
  font-weight: 400;
}

.specialties-container {
  margin: 3.5rem 0;
  text-align: left;
  display: inline-block;
  max-width: 650px;
  width: 100%;
}

.specialties-title {
  font-size: 1.4rem;
  color: var(--color-bronze);
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: var(--font-body);
  font-weight: 600;
}

.specialties-list {
  list-style: none;
  padding: 0;
}

.specialties-list li {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  font-size: 1.15rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.specialties-list li span {
  color: var(--color-bronze);
  font-size: 1.2rem;
}

.about-metrics {
  font-size: 1.15rem;
  margin-top: 2rem;
  margin-bottom: 3.5rem;
  color: var(--color-text-muted);
  line-height: 1.8;
}

.expertise-vault {
  margin-top: 6rem;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(200, 155, 96, 0.2);
  padding: 4rem;
}

.service-pillar h3 {
  color: var(--color-bronze) !important;
}

@media (max-width: 1200px) {
  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 3rem;
  }
}

@media (max-width: 768px) {
  .pillars-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem;
  }
}

/* Case Study Overhaul */
.case-study-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 4rem;
    align-items: flex-start;
}

.case-study-step {
    margin-bottom: 2.5rem;
}

.step-label {
    color: var(--color-bronze);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.case-study-results {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.result-metric {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(200, 155, 96, 0.2);
}

.metric-number {
    display: block;
    font-size: 5.5rem;
    font-weight: 700;
    color: var(--color-bronze);
    font-family: var(--font-heading);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.metric-text {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-top: 0.5rem;
}

.case-study-quote {
    background: rgba(200, 155, 96, 0.04);
    padding: 3rem;
    border-left: 4px solid var(--color-bronze);
    font-style: italic;
    font-size: 1.25rem;
    line-height: 1.8;
    margin-top: 2rem;
    color: var(--color-white);
}

@media (max-width: 900px) {
    .case-study-grid {
        grid-template-columns: 1fr;
    }
}

/* Modals */
.modal-overlay {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(5, 5, 5, 0.95);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: var(--color-slate-grey);
  width: 100%;
  max-width: 800px;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 4px;
  border: 1px solid rgba(200, 155, 96, 0.2);
  position: relative;
  transform: translateY(20px);
  transition: var(--transition);
  box-shadow: 0 40px 80px rgba(0,0,0,0.8);
}

.modal-overlay.active .modal-content {
  transform: translateY(0);
}

.modal-header {
  padding: 3rem 4rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  position: relative;
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: transparent;
  border: none;
  color: var(--color-text-muted);
  font-size: 2rem;
  cursor: pointer;
  transition: var(--transition);
}

.modal-close:hover {
  color: var(--color-white);
  transform: scale(1.1);
}

.modal-body {
  padding: 2.5rem 4rem 4rem;
}

.modal-step {
  display: none;
  animation: fadeIn 0.4s ease forwards;
}

.modal-step.active {
  display: block;
}

/* Image Lightbox Modal */
#imageModal .modal-content {
  background: transparent;
  border: none;
  box-shadow: none;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  max-width: 95vw;
}

#imageModal img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.8);
}

#imageModal .modal-close {
  color: var(--color-white);
  top: 0;
  right: 0;
  font-size: 3rem;
}

/* Forms inside Modal */
.form-group {
  margin-bottom: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

label {
  display: block;
  margin-bottom: 0.8rem;
  color: var(--color-white);
  font-weight: 500;
  letter-spacing: 0.5px;
  font-size: 0.95rem;
}

input[type="text"],
input[type="email"],
input[type="number"],
select,
textarea {
  width: 100%;
  padding: 1.2rem;
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 2px;
  color: var(--color-white);
  font-family: var(--font-body);
  transition: var(--transition);
  font-size: 1rem;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--color-bronze);
  background: rgba(0,0,0,0.6);
  box-shadow: 0 0 0 1px var(--color-bronze);
}

.radio-group {
  display: flex;
  gap: 2rem;
  margin-top: 0.5rem;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-weight: normal;
  color: var(--color-text-muted);
}

input[type="radio"] {
  accent-color: var(--color-bronze);
  width: 20px;
  height: 20px;
}

.privacy-note {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  text-align: center;
  margin-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 1.5rem;
}

/* Scheduling Embed Placeholder */
.calendar-placeholder {
  background: rgba(0,0,0,0.3);
  border: 1px dashed rgba(200, 155, 96, 0.4);
  padding: 4rem 2rem;
  text-align: center;
  border-radius: 4px;
}

/* Footer */
footer {
  background: var(--color-deep-black);
  padding: 6rem 0 3rem;
  border-top: 1px solid rgba(255,255,255,0.03);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 4rem;
}

.footer-brand h4 {
  font-size: 1.2rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  color: var(--color-white);
  text-transform: uppercase;
}

.footer-brand p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 3rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  color: var(--color-text-muted);
  font-size: 0.9rem;
  letter-spacing: 1px;
}

/* Responsive Overrides */
@media (max-width: 1200px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .hero h1 { font-size: 4rem; }
  .authority-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
}

@media (max-width: 768px) {
  .nav-container { flex-direction: column; gap: 1rem; text-align: center; }
  .nav-links { flex-wrap: wrap; justify-content: center; gap: 1rem; }
  .nav-link { font-size: 0.75rem; }
  .authority-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .pricing-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero h1 { font-size: 3rem; }
  .hero p.sub-headline { font-size: 1.2rem; }
  .modal-header { padding: 2rem 2rem 1rem; }
  .modal-body { padding: 1.5rem 2rem 3rem; }
  .footer-content { flex-direction: column; gap: 2rem; }
  
  .hero { height: auto; padding: 150px 0 4rem; }
  .authority-bar { padding: 3rem 0; }
}

@keyframes pulse {
  0% { opacity: 1; }
  50% { opacity: 0.5; }
  100% { opacity: 1; }
}
