/* ==========================================================================
   CAMERON STRAND OFFICIAL COLOR PALETTE & DESIGN SYSTEM (STARK MINIMALIST WHITE)
   Exact replica of CameronStrand.com colors: Pure white canvas (#ffffff),
   charcoal text (#111111 / #222222), light gray accents (#e5e5e5 / #666666)
   ========================================================================== */

/* --------------------------------------------------------------------------
   01. VARIABLES & RESET
   -------------------------------------------------------------------------- */
:root {
  /* Cameron Strand Authentic White Palette */
  --bg-color: #ffffff;
  --sidebar-bg: #ffffff;
  --text-main: #111111;
  --text-dark: #222222;
  --text-muted: #666666;
  --text-light: #999999;
  --border-color: #eeeeee;
  --border-dark: #dddddd;
  --accent-color: #000000;
  
  --font-primary: 'Montserrat', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --sidebar-width: 270px;
  --meta-height: 65px;
}

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

html, body {
  width: 100%;
  height: 100%;
  background-color: var(--bg-color);
  color: var(--text-main);
  font-family: var(--font-primary);
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--text-main);
  text-decoration: none;
  transition: opacity 0.2s ease, color 0.2s ease;
}

a:hover {
  opacity: 0.6;
}

ul {
  list-style: none;
}

/* --------------------------------------------------------------------------
   02. SITE LAYOUT (FIXED LEFT SIDEBAR + RIGHT MAIN STAGE)
   -------------------------------------------------------------------------- */
#siteWrapper {
  display: flex;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background-color: var(--bg-color);
}

/* --------------------------------------------------------------------------
   03. LEFT SIDEBAR (HEADER & NAVIGATION - CAMERON WHITE STYLE)
   -------------------------------------------------------------------------- */
#header {
  width: var(--sidebar-width);
  height: 100vh;
  background-color: var(--sidebar-bg);
  border-right: 1px solid var(--border-color);
  padding: 3rem 2.2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 100;
  flex-shrink: 0;
  overflow-y: auto;
}

.header-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Brand Title */
#site-title {
  margin-bottom: 2.8rem;
}

#site-title a {
  display: flex;
  flex-direction: column;
}

.user-name-line1 {
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: 1.45rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--text-main);
  line-height: 1.0;
}

.user-name-line2 {
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: 1.45rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--text-main);
  line-height: 1.0;
}

.user-sub {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
}

/* Navigation List */
.main-nav {
  flex: 1;
}

.nav-list {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

/* Folders (Commissions / Specialty) */
.folder-collection .folder-title {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  padding-bottom: 0.4rem;
  transition: color 0.2s ease;
}

.folder-collection .folder-title:hover {
  color: var(--text-main);
}

.folder-arrow {
  font-size: 0.65rem;
  transition: transform 0.3s ease;
}

.folder.open .folder-arrow {
  transform: rotate(180deg);
}

/* Subnav List */
.subnav {
  display: none;
  padding-left: 0.5rem;
  margin-top: 0.6rem;
}

.folder.open .subnav {
  display: block;
}

.subnav ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  border-left: 1px solid var(--border-color);
  padding-left: 1rem;
}

.gallery-link {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-muted);
  display: block;
  transition: all 0.2s ease;
}

.gallery-link:hover, .gallery-link.active {
  color: var(--text-main);
  font-weight: 700;
}

.gallery-link.active::before {
  content: '• ';
  color: var(--text-main);
}

/* Direct Page Links (About / Contact) */
.page-collection .page-link {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-main);
  display: block;
}

.page-collection .page-link.active {
  color: var(--text-main);
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Header Footer */
.header-footer {
  margin-top: auto;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.social-icons {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 1rem;
}

.social-icons a {
  font-size: 1rem;
  color: var(--text-muted);
}

.social-icons a:hover {
  color: var(--text-main);
}

.site-copyright {
  font-size: 0.62rem;
  color: var(--text-light);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   04. RIGHT MAIN STAGE (FULLSCREEN GALLERY SHOWCASE)
   -------------------------------------------------------------------------- */
#pageWrapper {
  flex: 1;
  height: 100vh;
  position: relative;
  overflow: hidden;
  background-color: var(--bg-color);
}

/* Page Views */
.page-view {
  width: 100%;
  height: 100%;
  display: none;
  position: absolute;
  inset: 0;
  overflow-y: auto;
}

.page-view.active {
  display: flex;
  flex-direction: column;
}

/* --------------------------------------------------------------------------
   05. GALLERY SHOWVIEW & SLIDESHOW
   -------------------------------------------------------------------------- */
#slideshowWrapper {
  flex: 1;
  width: 100%;
  min-height: 450px;
  max-height: 72vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
}

.slideshow {
  width: 100%;
  height: 100%;
  position: relative;
}

.slide {
  position: absolute;
  inset: 0;
  display: flex;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.slide.active {
  opacity: 1;
  pointer-events: auto;
}

/* Diptych 2-up Side-by-Side Showcase (Exact Cameron Strand Signature Layout) */
.diptych-container {
  display: flex;
  width: 100%;
  height: 100%;
}

.diptych-half {
  flex: 1;
  height: 100%;
  position: relative;
  overflow: hidden;
  border-right: 1px solid #ffffff;
}

.diptych-half:last-child {
  border-right: none;
}

.diptych-half img, .diptych-half video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Single slide fallback */
.single-slide-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 2.5rem;
}

.single-slide-container img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

/* Overlay Navigation Controls (Click left = prev, Click right = next) */
.overlay-controls {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 10;
}

.left-control {
  left: 0;
  width: 35%;
  cursor: w-resize;
}

.center-control {
  left: 35%;
  width: 30%;
  cursor: pointer;
}

.right-control {
  right: 0;
  width: 35%;
  cursor: e-resize;
}

/* --------------------------------------------------------------------------
   06. GALLERY BOTTOM META BAR (CAMERON STRAND CONTROLS)
   -------------------------------------------------------------------------- */
.meta-bar {
  height: var(--meta-height);
  width: 100%;
  background-color: #ffffff;
  border-top: 1px solid var(--border-color);
  padding: 0 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 20;
}

.meta-info {
  display: flex;
  flex-direction: column;
}

.project-header-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.4rem;
}

.status-badge {
  font-family: var(--font-primary);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.instagram-project-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background-color: #111111;
  color: #ffffff !important;
  padding: 0.5rem 1.1rem;
  border-radius: 4px;
  font-family: var(--font-primary);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.instagram-project-link:hover {
  background-color: #e1306c;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(225, 48, 108, 0.4);
  color: #ffffff !important;
}

.instagram-project-link i {
  font-size: 1rem;
}

.project-title {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-main);
}

.project-category {
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.2rem;
}

.meta-controls {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.gallery-controls {
  color: var(--text-muted);
}

.gallery-controls .control {
  color: var(--text-main);
  cursor: pointer;
  transition: color 0.2s ease;
  font-weight: 600;
}

.gallery-controls .control:hover {
  color: var(--text-muted);
}

.thumbnail-toggle, .fit-toggle-btn {
  background: transparent;
  border: 1px solid var(--border-dark);
  color: var(--text-main);
  padding: 0.45rem 1rem;
  border-radius: 2px;
  font-family: var(--font-primary);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: lowercase;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.thumbnail-toggle:hover, .fit-toggle-btn:hover, .fit-toggle-btn.active {
  background-color: var(--text-main);
  color: #ffffff;
  border-color: var(--text-main);
}

/* Fit Mode (Ver Completa Sin Recorte) */
.slideshow.fit-mode .diptych-half img,
.slideshow.fit-mode .single-slide-container img {
  object-fit: contain !important;
  background-color: #f2f2f2;
}

.diptych-half img, .single-slide-container img {
  cursor: zoom-in;
}

/* Lightbox Modal Styles */
.lightbox-modal {
  position: fixed;
  inset: 0;
  background-color: rgba(10, 10, 10, 0.95);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  padding: 2rem;
}

.lightbox-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-img {
  max-width: 94vw;
  max-height: 86vh;
  object-fit: contain;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
  border-radius: 2px;
}

.lightbox-caption {
  color: #d1d1d1;
  font-family: var(--font-primary);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  margin-top: 1.2rem;
  text-transform: uppercase;
  text-align: center;
}

.lightbox-close-btn {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #ffffff;
  padding: 0.45rem 1rem;
  font-family: var(--font-primary);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.2s ease;
}

.lightbox-close-btn:hover {
  background-color: #ffffff;
  color: #000000;
}

/* --------------------------------------------------------------------------
   07. THUMBNAILS GRID OVERLAY (WHITE BACKGROUND)
   -------------------------------------------------------------------------- */
.thumbnails-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(15px);
  z-index: 50;
  padding: 3rem 4rem;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.thumbnails-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.thumbnails-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-color);
}

.grid-title {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-main);
}

.close-grid-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-family: var(--font-primary);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
}

.close-grid-btn:hover {
  color: var(--text-main);
}

.thumbnails-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.8rem;
}

.thumb-item {
  aspect-ratio: 4 / 3;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--border-color);
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.thumb-item:hover {
  transform: scale(1.02);
  border-color: var(--text-main);
}

.thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumb-caption {
  position: absolute;
  bottom: 0;
  inset-x: 0;
  background: rgba(255, 255, 255, 0.9);
  color: var(--text-main);
  padding: 0.5rem;
  font-size: 0.7rem;
  font-weight: 600;
  text-align: center;
  border-top: 1px solid var(--border-color);
}

/* --------------------------------------------------------------------------
   08. ABOUT & CONTACT EDITORIAL VIEWS (STARK WHITE TYPOGRAPHY)
   -------------------------------------------------------------------------- */
#aboutView {
  overflow-y: auto;
  padding: 4rem 5rem;
  background-color: #ffffff;
}

#contactView {
  overflow-y: auto;
  padding: 4rem 5rem;
  background-color: #ffffff;
}

.editorial-container {
  max-width: 1080px;
  margin: 0 auto;
}

.editorial-header {
  text-align: center;
  margin-bottom: 3.5rem;
  padding-bottom: 1.8rem;
  border-bottom: 1px solid var(--border-color);
}

.editorial-kicker {
  font-family: var(--font-primary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-bottom: 0.6rem;
}

.editorial-headline {
  font-family: var(--font-primary);
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-main);
  margin-bottom: 0.4rem;
}

.editorial-subline {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-muted);
}

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

.about-text-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.editorial-bio p {
  font-family: var(--font-body);
  font-size: 1.12rem;
  line-height: 1.8;
  color: #222222;
  margin-bottom: 1.6rem;
}

.editorial-bio p:last-child {
  margin-bottom: 0;
  font-weight: 600;
  color: #111111;
  font-size: 1.15rem;
}

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

.portrait-image-wrapper {
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
}

.about-portrait-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.lead-text {
  font-size: 1.2rem;
  font-family: var(--font-body);
  line-height: 1.6;
  color: var(--text-main);
  margin-bottom: 1.8rem;
  font-weight: 500;
}

.bio-column p {
  font-family: var(--font-body);
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.editorial-section h3, .clients-column h3 {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 1.2rem;
  color: var(--text-main);
}

.clean-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.clean-list li {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.clean-list li strong {
  color: var(--text-main);
}

.clients-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  border-left: 2px solid var(--text-main);
  padding-left: 1.2rem;
}

.clients-list li {
  font-size: 0.9rem;
  color: var(--text-dark);
  font-weight: 600;
}

.margin-top {
  margin-top: 3rem;
}

.small-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   08.2 RATES & METHODOLOGY PAGE STYLES
   -------------------------------------------------------------------------- */
#ratesView {
  overflow-y: auto;
  padding: 4rem 5rem;
  background-color: #ffffff;
}

.rates-editorial-grid {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.workflow-section {
  width: 100%;
}

.workflow-heading {
  font-family: var(--font-primary);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #111111;
  margin-bottom: 2rem;
  padding-bottom: 0.8rem;
  border-bottom: 2px solid #111111;
}

.workflow-steps, ol.workflow-steps {
  list-style: none !important;
  list-style-type: none !important;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.workflow-steps li {
  list-style: none !important;
  list-style-type: none !important;
  display: flex;
  align-items: flex-start;
  gap: 1.8rem;
  padding: 1.5rem 1.8rem;
  background-color: #fafafa;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.workflow-steps li:hover {
  border-color: #111111;
  transform: translateX(4px);
}

.step-num {
  font-family: var(--font-primary);
  font-size: 1.6rem;
  font-weight: 900;
  color: #111111;
  line-height: 1;
  min-width: 2.2rem;
}

.step-content h4 {
  font-family: var(--font-primary);
  font-size: 1.05rem;
  font-weight: 700;
  color: #111111;
  margin-bottom: 0.4rem;
}

.step-content p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: #555555;
  line-height: 1.65;
  margin: 0;
}

/* Rates Call to Action Box & Buttons */
.rates-cta-box {
  background-color: #111111;
  color: #ffffff;
  padding: 3rem 3.5rem;
  border-radius: 8px;
  text-align: center;
  margin-top: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.rates-cta-box h3 {
  font-family: var(--font-primary);
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #ffffff;
  margin-bottom: 0.8rem;
}

.rates-cta-box p {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: #cccccc;
  max-width: 640px;
  margin: 0 auto 2.2rem auto;
  line-height: 1.6;
}

.cta-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 1.1rem 2.2rem;
  border-radius: 4px;
  font-family: var(--font-primary);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.25s ease;
  cursor: pointer;
}

.primary-cta {
  background-color: #25D366;
  color: #ffffff !important;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.primary-cta:hover {
  background-color: #1eb956;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
}

.secondary-cta {
  background-color: #ffffff;
  color: #111111 !important;
  border: 1px solid #ffffff;
}

.secondary-cta:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
  color: #000000 !important;
}

.cta-btn i {
  font-size: 1.1rem;
}

/* --------------------------------------------------------------------------
   08.3 CONTACT EDITORIAL VIEW STYLES (MATCHING RATES STYLE)
   -------------------------------------------------------------------------- */
#contactView {
  overflow-y: auto;
  padding: 4rem 5rem;
  background-color: #ffffff;
}

.contact-editorial-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4.5rem;
  align-items: flex-start;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-lead-text {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.7;
  color: #333333;
  margin-bottom: 2rem;
}

.contact-cards-container {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.2rem 1.5rem;
  background-color: #fafafa;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.contact-card:hover {
  border-color: #111111;
  transform: translateX(4px);
}

.card-icon {
  width: 42px;
  height: 42px;
  background-color: #111111;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.card-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  text-align: left;
}

.card-label {
  font-family: var(--font-primary);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #888888;
}

.card-value {
  font-family: var(--font-primary);
  font-size: 0.98rem;
  font-weight: 700;
  color: #111111;
  text-decoration: none;
  transition: color 0.2s ease;
}

.card-value:hover {
  color: #25D366;
}

/* Contact Form Card (Matching Rates CTA Dark Card) */
.contact-form-card {
  background-color: #111111;
  color: #ffffff;
  padding: 2.8rem 2.5rem;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  text-align: left;
}

.contact-form-card h3 {
  font-family: var(--font-primary);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #ffffff;
  margin-bottom: 0.4rem;
}

.form-subtext {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: #aaaaaa;
  margin-bottom: 2rem;
  line-height: 1.5;
}

.editorial-form .form-group {
  margin-bottom: 1.4rem;
  text-align: left;
}

.editorial-form label {
  font-family: var(--font-primary);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #cccccc;
  display: block;
  margin-bottom: 0.5rem;
}

.editorial-form input,
.editorial-form select,
.editorial-form textarea {
  width: 100%;
  background-color: #222222;
  border: 1px solid #333333;
  border-radius: 4px;
  padding: 0.9rem 1.1rem;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 0.92rem;
  transition: border-color 0.25s ease, background-color 0.25s ease;
}

.editorial-form input:focus,
.editorial-form select:focus,
.editorial-form textarea:focus {
  outline: none;
  border-color: #25D366;
  background-color: #1a1a1a;
}

.editorial-form select option {
  background-color: #222222;
  color: #ffffff;
}

.form-submit-btn {
}

/* --------------------------------------------------------------------------
   08.4 REELS & VIDEO SHOWCASE STYLES
   -------------------------------------------------------------------------- */
#reelsView {
  overflow-y: auto;
  padding: 4rem 5rem;
  background-color: #ffffff;
}

.reels-grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

.reel-card {
  display: flex;
  flex-direction: column;
  background-color: #fafafa;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.reel-card:hover {
  transform: translateY(-6px);
  border-color: #111111;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.reel-video-wrapper {
  position: relative;
  width: 100%;
  background-color: #0a0a0a;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reel-video-wrapper video {
  width: 100%;
  height: auto;
  max-height: 70vh;
  object-fit: contain;
  display: block;
}

.reel-play-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 2rem;
  opacity: 0.85;
  transition: opacity 0.25s ease, background-color 0.25s ease;
}

.reel-video-wrapper:hover .reel-play-overlay {
  opacity: 1;
  background-color: rgba(0, 0, 0, 0.1);
}

.reel-play-overlay.playing {
  opacity: 0;
}

.reel-video-wrapper:hover .reel-play-overlay.playing {
  opacity: 0.6;
}

.reel-info {
  padding: 1.2rem;
  text-align: left;
}

.reel-badge {
  font-family: var(--font-primary);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #888888;
  display: block;
  margin-bottom: 0.3rem;
}

.reel-title {
  font-family: var(--font-primary);
  font-size: 0.92rem;
  font-weight: 700;
  color: #111111;
  margin: 0;
  line-height: 1.4;
}

/* --------------------------------------------------------------------------
   08.1 BILINGUAL LANGUAGE SWITCHER & VISIBILITY RULES
   -------------------------------------------------------------------------- */
body.lang-es .lang-en {
  display: none !important;
}

body.lang-en .lang-es {
  display: none !important;
}

.brand-header-group {
  margin-bottom: 2.8rem;
}

.brand-header-group #site-title {
  margin-bottom: 0.8rem;
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.lang-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-family: var(--font-primary);
  font-size: 0.72rem;
  font-weight: 600;
  cursor: pointer;
  padding: 2px 4px;
  transition: color 0.2s ease;
}

.lang-btn:hover, .lang-btn.active {
  color: var(--text-main);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.lang-divider {
  color: var(--border-dark);
  font-size: 0.7rem;
}

/* --------------------------------------------------------------------------
   08.2 RATES & PACKAGES PAGE STYLES
   -------------------------------------------------------------------------- */
#ratesView {
  overflow-y: auto;
  padding: 4rem 5rem;
  background-color: #ffffff;
}

.rates-intro {
  margin-bottom: 2.5rem;
}

.rates-section-title {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-main);
  margin-bottom: 1.2rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 0.6rem;
}

.rates-subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.2rem;
  font-family: var(--font-body);
}

/* Desktop Rates Table */
.rates-table-wrapper {
  width: 100%;
}

.rates-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
  margin-bottom: 1rem;
  font-family: var(--font-body);
}

.rates-table th {
  text-align: left;
  font-family: var(--font-primary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 1rem;
  border-bottom: 2px solid var(--text-main);
}

.rates-table td {
  padding: 1.2rem 1rem;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.9rem;
  color: var(--text-muted);
  vertical-align: top;
  line-height: 1.6;
}

.rates-table tr:hover td {
  background-color: #fafafa;
}

.rates-table .tier-name {
  font-family: var(--font-primary);
  font-weight: 700;
  color: var(--text-main);
  font-size: 0.95rem;
  width: 22%;
}

.rates-table .tier-price {
  font-family: var(--font-primary);
  font-weight: 800;
  color: var(--text-main);
  font-size: 1.05rem;
  width: 22%;
  white-space: nowrap;
}

.featured-tier td {
  background-color: #fbfbfb;
}

.tier-badge {
  display: inline-block;
  background-color: #111111;
  color: #ffffff;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 2px 6px;
  border-radius: 2px;
  margin-left: 0.4rem;
  vertical-align: middle;
}

/* Clarification Note */
.rates-note {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 1rem;
  margin-bottom: 2rem;
  line-height: 1.5;
}

/* Mobile Rate Cards (Hidden on Desktop) */
.rates-cards-mobile {
  display: none;
}

/* Lists in Rates View */
.rates-list li {
  font-size: 0.92rem;
  line-height: 1.7;
}

.how-work-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  list-style: none;
}

.how-work-list li {
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  padding-left: 0.5rem;
  border-left: 2px solid var(--border-color);
}

.how-work-list li strong {
  color: var(--text-main);
}

/* Rates CTAs Container */
.rates-cta-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 1rem;
}

.rates-whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  background-color: #111111;
  color: #ffffff !important;
  font-family: var(--font-primary);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 1.2rem 2rem;
  border-radius: 2px;
  text-align: center;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.rates-whatsapp-btn:hover {
  background-color: #25D366; /* WhatsApp brand green hover */
  color: #ffffff !important;
  opacity: 1;
}

.rates-pdf-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  background-color: #ffffff;
  color: var(--text-main) !important;
  border: 1px solid var(--text-main);
  font-family: var(--font-primary);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 1rem 2rem;
  border-radius: 2px;
  text-align: center;
  transition: all 0.2s ease;
}

.rates-pdf-btn:hover {
  background-color: #f4f4f4;
  opacity: 1;
}

/* --------------------------------------------------------------------------
   09. RESPONSIVE MOBILE ADJUSTMENTS
   -------------------------------------------------------------------------- */
@media (max-width: 900px) {
  #siteWrapper {
    flex-direction: column;
  }

  #header {
    width: 100%;
    height: auto;
    border-right: none;
    border-bottom: 1px solid var(--border-color);
    padding: 1.5rem 1.8rem;
    position: relative;
  }

  .header-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .brand-header-group {
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }

  #site-title {
    margin-bottom: 0;
  }

  .mobile-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
  }

  .mobile-toggle .bar {
    width: 22px;
    height: 2px;
    background-color: var(--text-main);
  }

  .main-nav, .header-footer {
    display: none;
  }

  #header.mobile-expanded .main-nav,
  #header.mobile-expanded .header-footer {
    display: block;
    width: 100%;
    margin-top: 1.5rem;
  }

  #header.mobile-expanded .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  #pageWrapper {
    height: calc(100vh - 70px);
  }

  .editorial-grid, .contact-editorial-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  #aboutView, #contactView, #ratesView {
    padding: 2.5rem 1.8rem;
  }

  /* Mobile Rates Cards */
  .rates-table {
    display: none;
  }

  .rates-cards-mobile {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-top: 1rem;
  }

  .rate-card {
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 1.4rem;
    background-color: #fafafa;
  }

  .rate-card.featured {
    border-color: #111111;
    background-color: #ffffff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
  }

  .rate-card-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.8rem;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid var(--border-color);
  }

  .rate-card-header .tier-name {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-main);
  }

  .rate-card-header .tier-price {
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--text-main);
  }

  .rate-card-header .tier-price small {
    font-size: 0.65rem;
    font-weight: 500;
    color: var(--text-muted);
  }

  .rate-card-body {
    font-family: var(--font-body);
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
  }
}

/* --------------------------------------------------------------------------
   10. CASE STUDY BREAKDOWN & PROJECT HEADER STYLES
   -------------------------------------------------------------------------- */
.project-header-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.4rem;
}

.status-badge {
  font-family: var(--font-primary);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background-color: #111111;
  color: #ffffff;
  padding: 3px 8px;
  border-radius: 2px;
}

.instagram-project-link {
  font-family: var(--font-primary);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-main);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.instagram-project-link:hover {
  opacity: 0.7;
}

.case-breakdown-container {
  padding: 1.5rem 2.5rem 2.5rem 2.5rem;
  background-color: #ffffff;
  border-top: 1px solid var(--border-color);
  max-height: 280px;
  overflow-y: auto;
}

.case-intro-block {
  margin-bottom: 1rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--border-color);
}

.case-intro-text {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-main);
  line-height: 1.6;
}

.case-study-card {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.8rem;
}

.case-block {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.case-label {
  font-family: var(--font-primary);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-main);
  border-bottom: 1px solid var(--text-main);
  padding-bottom: 0.2rem;
}

.case-block p {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.case-result-text {
  font-style: italic;
  color: var(--text-main) !important;
}

/* Skills Badges Row */
.skills-highlight-container {
  border-top: 1px solid var(--border-color);
  padding-top: 1.5rem;
}

.skills-highlight-container h3 {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin-bottom: 0.8rem;
}

.skills-badges-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.skill-tag {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  background-color: #f4f4f4;
  color: var(--text-main);
  padding: 0.4rem 0.8rem;
  border-radius: 2px;
  border: 1px solid var(--border-color);
}

/* Contact Actions & Rates Prompt */
.contact-direct-actions {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.action-btn {
  width: 100%;
}

.inline-rates-link {
  font-weight: 700;
  color: var(--text-main);
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

  .case-breakdown-container {
    padding: 1.2rem 1.5rem;
    max-height: none;
  }

  .project-header-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
  }
}

/* --------------------------------------------------------------------------
   11. ABOUT ME PORTRAIT PHOTO STYLES (CAMERON STRAND EDITORIAL STYLE)
   -------------------------------------------------------------------------- */
.about-editorial-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3.5rem;
  align-items: start;
}

.about-portrait-column {
  display: flex;
  flex-direction: column;
}

.portrait-image-wrapper {
  width: 100%;
  overflow: hidden;
  border-radius: 2px;
  margin-bottom: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--border-color);
}

.about-portrait-img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
}

@media (max-width: 900px) {
  .about-editorial-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}



