/* ==========================================================================
   Oficina Nerd - Faithful Static Reconstruction CSS
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Raleway:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
  --primary: #c39f76;
  --primary-hover: #b28e65;
  --dark: #222328;
  --dark-heading: #181818;
  --body-text: #818b92;
  --bg-light: #f5f5f5;
  --bg-white: #ffffff;
  --border-color: #e5e5e5;
  --transition: all 0.3s ease;
}

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

body {
  font-family: 'Raleway', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 14px;
  line-height: 24px;
  color: var(--body-text);
  background-color: var(--bg-white);
  overflow-x: hidden;
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  color: var(--dark-heading);
  font-weight: 600;
  line-height: 1.3;
}

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

a:hover {
  color: var(--primary-hover);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.site-header {
  position: relative;
  width: 100%;
  background: #ffffff;
  z-index: 1030;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  animation: slideDown 0.35s ease;
}

@keyframes slideDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

.site-navbar {
  padding: 1rem 0;
}

.navbar-brand img {
  height: 38px;
  width: auto;
  display: block;
}

.nav-link {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #333333 !important;
  padding: 0.5rem 1rem !important;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary) !important;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #1a1a1a;
  background-image: url('../img/home/hero-bg.webp');
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  color: #ffffff;
  padding: 6rem 1.5rem;
}

@media (min-width: 992px) {
  .hero-section {
    background-attachment: fixed;
  }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
}

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

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -1px;
  color: #ffffff;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-subtitle {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(0.75rem, 1.5vw, 0.85rem);
  font-weight: 600;
  letter-spacing: 4px;
  color: #ffffff;
  margin-bottom: 2.5rem;
  text-transform: uppercase;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  background: rgba(0, 0, 0, 0.75);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--transition);
}

.btn-hero:hover {
  background: #ffffff;
  color: #000000;
  border-color: #ffffff;
  transform: translateY(-2px);
}

/* ==========================================================================
   Section Dividers & Titles
   ========================================================================== */
.section-heading-wrap {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-title {
  font-size: 25px;
  font-weight: 400;
  color: #181818;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.section-subtitle {
  font-size: 15px;
  font-style: italic;
  color: #555555;
  margin-bottom: 1.5rem;
}

.separator-with-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 1rem auto 2.5rem;
  max-width: 400px;
}

.separator-with-icon::before,
.separator-with-icon::after {
  content: "";
  flex: 1;
  height: 1px;
  background-color: #e0e0e0;
}

.separator-with-icon i {
  color: var(--primary);
  font-size: 1.1rem;
}

/* ==========================================================================
   Services Section with Central Phone
   ========================================================================== */
.services-section {
  padding: 5rem 0 4rem;
  background: #ffffff;
}

.infobox {
  display: flex;
  margin-bottom: 2.5rem;
  gap: 1.25rem;
}

.infobox-left {
  flex-direction: row-reverse;
  text-align: right;
}

.infobox-right {
  flex-direction: row;
  text-align: left;
}

.infobox-icon-wrap {
  flex-shrink: 0;
}

.icon-round-outline {
  width: 58px;
  height: 58px;
  border: 1px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.4rem;
  transition: var(--transition);
  background: #ffffff;
}

.infobox:hover .icon-round-outline {
  background: var(--primary);
  color: #ffffff;
  transform: scale(1.05);
}

.infobox-content h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.infobox-content p {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--body-text);
  margin: 0;
}

.central-phone-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0;
  margin: 0 auto;
}

.central-phone-img {
  width: 100%;
  max-width: 360px;
  height: auto;
  display: block;
  margin: 0 auto;
  transition: transform 0.15s ease-out;
  filter: none;
}

@media (max-width: 991px) {
  .infobox-left {
    flex-direction: row;
    text-align: left;
  }
  .central-phone-wrap {
    margin-bottom: 3rem;
  }
}

/* ==========================================================================
   Artists / Social Media Management Section
   ========================================================================== */
.artists-section {
  padding: 5rem 0;
  background-color: var(--bg-light);
}

.artist-card {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.artist-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.artist-thumb {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.artist-card:hover .artist-thumb {
  transform: scale(1.05);
}

.artist-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(18, 18, 18, 0.88);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 1.5rem;
  opacity: 0;
  transition: var(--transition);
}

.artist-card:hover .artist-overlay,
.artist-card:focus-within .artist-overlay {
  opacity: 1;
}

.artist-title {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.artist-desc {
  font-size: 13px;
  color: #cccccc;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.artist-social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.artist-social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  font-size: 0.9rem;
  transition: var(--transition);
}

.artist-social-links a:hover {
  background: var(--primary);
  transform: scale(1.1);
}

.artist-static-info {
  padding: 1rem;
  text-align: center;
  background: #ffffff;
}

.artist-static-title {
  font-size: 15px;
  font-weight: 600;
  margin: 0;
  color: var(--dark);
}

@media (max-width: 768px) {
  /* On mobile touch devices, keep overlay accessible */
  .artist-overlay {
    position: static;
    opacity: 1;
    background: #ffffff;
    color: var(--body-text);
    padding: 1rem;
  }
  .artist-overlay .artist-title {
    color: var(--dark);
  }
  .artist-overlay .artist-desc {
    color: var(--body-text);
  }
  .artist-overlay .artist-social-links a {
    background: var(--bg-light);
    color: var(--dark);
  }
  .artist-overlay .artist-social-links a:hover {
    background: var(--primary);
    color: #ffffff;
  }
  .artist-static-info {
    display: none;
  }
}

/* ==========================================================================
   Counters Section
   ========================================================================== */
.counters-section {
  padding: 4.5rem 0 5rem;
  background: #ffffff;
}

.counter-box {
  text-align: center;
  padding: 1rem;
}

.counter-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.counter-number {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.2rem, 3.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1;
  color: #2d3c48;
  margin-bottom: 0.5rem;
}

.counter-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--primary);
  text-transform: uppercase;
}

/* ==========================================================================
   Projects / Portfolio Section
   ========================================================================== */
.portfolio-section {
  padding: 5rem 0;
  background: #ffffff;
}

.portfolio-card {
  position: relative;
  display: block;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  background: #000000;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
}

.portfolio-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.portfolio-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease, opacity 0.3s ease;
}

.portfolio-card:hover .portfolio-img {
  transform: scale(1.06);
  opacity: 0.85;
}

.portfolio-title-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.25rem 1rem;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0) 100%);
  color: #ffffff;
  text-align: center;
  transition: var(--transition);
}

.portfolio-card-title {
  font-size: 15px;
  font-weight: 600;
  margin: 0;
  color: #ffffff;
}

/* ==========================================================================
   Testimonial Section
   ========================================================================== */
.testimonial-section {
  padding: 6rem 0;
  background-color: var(--bg-light);
  text-align: center;
}

.testimonial-quote {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  font-style: italic;
  line-height: 1.8;
  color: #333333;
  max-width: 780px;
  margin: 0 auto 2rem;
}

.testimonial-author {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--dark-heading);
  margin-bottom: 0.25rem;
}

.testimonial-role {
  font-size: 13px;
  color: var(--primary);
  margin-bottom: 2.5rem;
}

.btn-outline-custom {
  display: inline-block;
  padding: 0.6rem 2.2rem;
  border: 1.5px solid #181818;
  color: #181818;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 2px;
  transition: var(--transition);
}

.btn-outline-custom:hover {
  background: #181818;
  color: #ffffff;
}

/* ==========================================================================
   Closing Value Pillars Section
   ========================================================================== */
.closing-section {
  padding: 6rem 0 5rem;
  background: #1e2024;
  color: #ffffff;
  text-align: center;
}

.closing-logo {
  max-height: 48px;
  width: auto;
  margin-bottom: 4rem;
}

.pillar-box {
  padding: 1.5rem;
}

.pillar-icon-wrap {
  margin-bottom: 1.5rem;
}

.pillar-icon-circle {
  width: 72px;
  height: 72px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.8rem;
  transition: var(--transition);
}

.pillar-box:hover .pillar-icon-circle {
  border-color: var(--primary);
  color: var(--primary);
  transform: scale(1.08);
}

.pillar-title {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1rem;
}

.pillar-desc {
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: #16171a;
  color: #777777;
  padding: 2rem 0;
  font-size: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-social-link {
  color: #aaaaaa;
  font-size: 1.1rem;
  margin-left: 1rem;
  transition: var(--transition);
}

.footer-social-link:hover {
  color: var(--primary);
}

.back-to-top {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 42px;
  height: 42px;
  background: var(--dark);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--primary);
  color: #ffffff;
  transform: translateY(-3px);
}

/* ==========================================================================
   Editorial Interior Pages (Artist Profiles & Production Projects)
   ========================================================================== */

/* Navigation return link */
.editorial-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--body-text);
  margin-bottom: 2rem;
  transition: var(--transition);
}

.editorial-back-link:hover {
  color: var(--primary);
  transform: translateX(-3px);
}

.editorial-tag {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1rem;
}

/* Family A: Artist Profile */
.artist-profile-header {
  padding: 4.5rem 0 3.5rem;
  background-color: var(--bg-white);
  border-bottom: 1px solid #f0f0f0;
}

.artist-profile-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.1;
  color: var(--dark-heading);
  margin-bottom: 1.5rem;
}

.artist-profile-lead {
  font-size: 18px;
  line-height: 1.7;
  color: #444444;
  margin-bottom: 2.5rem;
}

.artist-portrait-wrap {
  position: relative;
  overflow: hidden;
  max-width: 480px;
  margin: 0 auto;
}

.artist-portrait-img {
  width: 100%;
  height: auto;
  display: block;
}

.artist-metric-card {
  border-left: 3px solid var(--primary);
  padding: 1.25rem 0 1.25rem 1.5rem;
  margin-bottom: 2.5rem;
  background: transparent;
}

.artist-metric-number {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1;
  color: var(--dark-heading);
  margin-bottom: 0.35rem;
}

.artist-metric-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--primary);
}

.artist-social-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn-editorial-social {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.4rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--dark);
  background: transparent;
  border: 1px solid #d0d0d0;
  border-radius: 2px;
  transition: var(--transition);
}

.btn-editorial-social:hover {
  background: var(--dark);
  color: #ffffff;
  border-color: var(--dark);
}

.artist-stats-section {
  padding: 4.5rem 0;
  background-color: var(--bg-light);
}

.stats-feature-img {
  width: 100%;
  height: auto;
  display: block;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

/* Family B: Project Case Study / Production Presentation */
.project-case-header {
  padding: 5rem 0 3rem;
  background: #ffffff;
}

.project-case-title {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.1;
  color: var(--dark-heading);
  margin-bottom: 1.5rem;
}

.project-case-lead {
  font-size: 19px;
  line-height: 1.7;
  color: #3a3a3a;
  max-width: 860px;
}

.project-wide-visual {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 4.5rem;
}

.project-wide-visual--contained {
  max-width: 850px;
}

.project-wide-img {
  width: 100%;
  height: auto;
  display: block;
}

/* Hero Media Semantic Classes */
.hero-media--natural {
  width: 100%;
  height: auto;
  display: block;
}

.hero-media--contained {
  max-width: 850px;
  margin: 0 auto;
}

.project-narrative-section {
  padding-bottom: 5rem;
}

.project-text-block {
  font-size: 16px;
  line-height: 1.8;
  color: #444444;
  margin-bottom: 2.5rem;
}

.project-gallery-slot {
  margin-bottom: 2rem;
}

.project-gallery-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.project-quote-callout {
  border-left: 2px solid var(--primary);
  padding: 1.5rem 0 1.5rem 2rem;
  margin: 3rem 0;
  font-size: 18px;
  font-style: italic;
  color: #222222;
  line-height: 1.6;
}

.project-bottom-cta {
  padding: 5rem 0;
  background: var(--dark);
  color: #ffffff;
  text-align: center;
}

.project-bottom-cta h3 {
  color: #ffffff;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 1rem;
}

.project-bottom-cta p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

.btn-editorial-cta {
  display: inline-block;
  padding: 0.85rem 2.5rem;
  background: var(--primary);
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 2px;
  transition: var(--transition);
  border: none;
}

.btn-editorial-cta:hover {
  background: var(--primary-hover);
  color: #ffffff;
  transform: translateY(-2px);
}
