/* ============================================
   CADLEM CONSULTANTS — Sections (Bright Theme)
   ============================================ */

/* ── HERO ── */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('../assets/photos/living-dining.jpeg');
  background-size: cover;
  background-position: center top;
  transform: scale(1.08);
  transition: transform 8s ease;
  filter: brightness(0.55);
}
.hero-bg.loaded { transform: scale(1.0); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(26,22,16,0.92) 0%,
    rgba(26,22,16,0.30) 55%,
    rgba(26,22,16,0.10) 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  padding: 0 var(--section-pad-x) 7rem;
  max-width: 800px;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 1.2rem;
  font-size: 0.62rem; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--gold-pale, #f0e0a0); margin-bottom: 2rem;
  opacity: 0; animation: fadeUp 1s ease 0.3s forwards;
}
.hero-eyebrow span { display: block; width: 50px; height: 1px; background: var(--gold-light); }
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 5.5vw, 6rem);
  font-weight: 300; line-height: 1.05;
  color: #ffffff; margin-bottom: 2rem;
  opacity: 0; animation: fadeUp 1s ease 0.55s forwards;
}
.hero-title em { font-style: italic; color: var(--gold-light); }
.hero-sub {
  font-size: 0.88rem; font-weight: 300; line-height: 2;
  color: rgba(245,240,232,0.82);
  max-width: 500px; margin-bottom: 3.5rem;
  opacity: 0; animation: fadeUp 1s ease 0.8s forwards;
}
.hero-actions {
  display: flex; align-items: center; gap: 2.5rem;
  opacity: 0; animation: fadeUp 1s ease 1s forwards;
}
.hero-actions .btn-primary { background: var(--gold); color: var(--dark); }
.hero-actions .btn-primary:hover { background: #ffffff; color: var(--dark); }
.hero-actions .btn-ghost { color: #ffffff; border-bottom-color: rgba(255,255,255,0.5); }
.hero-actions .btn-ghost:hover { color: var(--gold-light); border-bottom-color: var(--gold-light); }

.hero-scroll {
  position: absolute; right: var(--section-pad-x); bottom: 4rem;
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 0.8rem;
  opacity: 0; animation: fadeIn 1s ease 1.5s forwards;
}
.hero-scroll span {
  font-size: 0.55rem; letter-spacing: 0.35em; text-transform: uppercase;
  color: rgba(245,240,232,0.6); writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px; height: 60px;
  background: rgba(245,240,232,0.3);
  position: relative; overflow: hidden;
}
.scroll-line::after {
  content: ''; position: absolute;
  top: -100%; left: 0;
  width: 100%; height: 100%;
  background: var(--gold-light);
  animation: scrollDown 2s ease infinite;
}
.hero-stats {
  position: absolute; right: var(--section-pad-x); top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: flex; flex-direction: column; gap: 2.5rem;
  opacity: 0; animation: fadeIn 1s ease 1.2s forwards;
}
.hero-stat { text-align: right; }
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem; font-weight: 300;
  color: var(--gold-light); line-height: 1;
}
.hero-stat-label {
  font-size: 0.58rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: rgba(245,240,232,0.55); margin-top: 0.3rem;
}
.hero-stat-line {
  width: 40px; height: 1px;
  background: rgba(212,175,55,0.4);
  margin: 2rem 0 0 auto;
}

/* ── MARQUEE ── */
.marquee-section {
  background: var(--gold-light);
  padding: 1rem 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  animation: marquee 28s linear infinite;
  width: max-content;
}
.marquee-item {
  font-family: var(--font-display);
  font-size: 0.75rem; font-style: italic; letter-spacing: 0.15em;
  color: var(--dark); white-space: nowrap;
  padding: 0 3rem;
  display: flex; align-items: center; gap: 3rem;
}
.marquee-dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: rgba(26,22,16,0.35); display: inline-block;
}

/* ── ABOUT ── */
#about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 90vh;
}
.about-images { position: relative; overflow: hidden; }
.about-img-main {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.9) contrast(1.05);
  transition: transform 8s ease, filter 0.5s;
}
.about-images:hover .about-img-main {
  transform: scale(1.04);
  filter: brightness(1) contrast(1.05);
}
.about-img-inset {
  position: absolute; bottom: 3rem; right: -2rem;
  width: 200px; height: 260px; object-fit: cover;
  border: 4px solid var(--white);
  filter: brightness(0.95);
  box-shadow: 0 20px 50px rgba(26,22,16,0.25);
}
.about-year-badge {
  position: absolute; top: 3rem; left: 3rem;
  border: 1px solid var(--gold-light);
  padding: 1.2rem; text-align: center;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
}
.about-year-badge .num {
  font-family: var(--font-display);
  font-size: 2rem; color: var(--gold); font-weight: 300;
}
.about-year-badge .lbl {
  font-size: 0.55rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--muted); display: block; margin-top: 0.2rem;
}
.about-text {
  background: var(--off-white, #faf8f4);
  padding: 7rem var(--section-pad-x);
  display: flex; flex-direction: column; justify-content: center;
}
.about-founder {
  display: flex; align-items: center; gap: 1.2rem;
  margin-bottom: 2.5rem; padding-bottom: 2rem;
  border-bottom: 1px solid rgba(212,175,55,0.2);
}
.founder-avatar {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--warm-grey, #e8e3da);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.6rem;
  color: var(--gold); font-weight: 300; flex-shrink: 0;
  border: 2px solid var(--gold-light);
}
.founder-info .name {
  font-family: var(--font-display); font-size: 1.1rem;
  color: var(--dark); font-weight: 400;
}
.founder-info .role {
  font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-top: 0.2rem;
}
.founder-info .reg {
  font-size: 0.7rem; color: var(--muted); margin-top: 0.2rem;
}
.about-body {
  font-size: 0.875rem; font-weight: 300; line-height: 2;
  color: var(--muted); margin-bottom: 1.5rem;
}
.about-pillars {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; background: rgba(212,175,55,0.15);
  margin-top: 2.5rem;
}
.pillar {
  background: var(--cream, #f5f0e8); padding: 1.5rem;
  border-left: 2px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}
.pillar:hover { border-left-color: var(--gold); background: var(--cream2, #ede6d6); }
.pillar-title {
  font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.5rem;
}
.pillar-body { font-size: 0.78rem; color: var(--muted); line-height: 1.7; }

/* ── SERVICES ── */
#services { background: var(--cream, #f5f0e8); padding: var(--section-pad-y) var(--section-pad-x); }
.services-top {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 5rem;
}
.services-top-right {
  max-width: 340px; font-size: 0.82rem; font-weight: 300;
  line-height: 1.9; color: var(--muted);
}
.services-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 16px;
}
.service-card {
  position: relative; overflow: hidden; height: 380px;
  cursor: pointer; border-radius: 2px;
  box-shadow: 0 4px 20px rgba(26,22,16,0.08);
}
.service-card img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.65) saturate(0.8);
  transition: filter 0.6s ease, transform 0.8s ease;
}
.service-card:hover img { filter: brightness(0.78) saturate(1); transform: scale(1.06); }
.service-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,22,16,0.9) 0%, rgba(26,22,16,0.2) 60%, transparent 100%);
}
.service-card-content {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 2.5rem 2rem;
  transform: translateY(8px); transition: transform 0.4s ease;
}
.service-card:hover .service-card-content { transform: translateY(0); }
.service-num {
  font-family: var(--font-display);
  font-size: 0.65rem; letter-spacing: 0.3em;
  color: var(--gold-light); margin-bottom: 0.8rem; opacity: 0.8;
}
.service-name {
  font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 300; color: #ffffff; margin-bottom: 0.8rem;
}
.service-desc {
  font-size: 0.78rem; font-weight: 300; line-height: 1.8;
  color: rgba(245,240,232,0.8);
  max-height: 0; overflow: hidden;
  transition: max-height 0.5s ease, opacity 0.4s; opacity: 0;
}
.service-card:hover .service-desc { max-height: 80px; opacity: 1; }
.service-line {
  width: 0; height: 1px; background: var(--gold-light);
  margin-top: 1rem; transition: width 0.5s ease;
}
.service-card:hover .service-line { width: 40px; }

/* ── PORTFOLIO ── */
#portfolio { padding: var(--section-pad-y) var(--section-pad-x); background: var(--white); }
.portfolio-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 4rem;
}
.portfolio-strip {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 12px; height: 520px;
}
.portfolio-item { position: relative; overflow: hidden; border-radius: 2px; }
.portfolio-item img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.85);
  transition: filter 0.6s, transform 0.8s;
}
.portfolio-item:hover img { filter: brightness(1); transform: scale(1.04); }
.portfolio-label {
  position: absolute; bottom: 1.5rem; left: 1.5rem; right: 1.5rem;
  opacity: 0; transform: translateY(8px); transition: all 0.4s ease;
  background: rgba(26,22,16,0.75); backdrop-filter: blur(4px);
  padding: 0.8rem 1rem;
}
.portfolio-item:hover .portfolio-label { opacity: 1; transform: translateY(0); }
.portfolio-label-title {
  font-family: var(--font-display);
  font-size: 0.95rem; font-style: italic; color: #ffffff; margin-bottom: 0.2rem;
}
.portfolio-label-loc {
  font-size: 0.58rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold-light);
}

/* ── PROCESS ── */
#process {
  background: var(--cream, #f5f0e8);
  padding: var(--section-pad-y) var(--section-pad-x);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 8rem; align-items: center;
}
.process-image { position: relative; height: 600px; }
.process-image img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.88) contrast(1.05);
  border-radius: 2px;
}
.process-image-accent {
  position: absolute; top: -2rem; right: -2rem;
  width: 180px; height: 180px;
  border: 1px solid rgba(212,175,55,0.4);
  z-index: -1;
}
.process-steps { margin-top: 3rem; }
.process-step {
  display: flex; gap: 2rem; align-items: flex-start;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(26,22,16,0.08);
  transition: border-color 0.3s;
}
.process-step:hover { border-bottom-color: rgba(212,175,55,0.4); }
.process-step:last-child { border-bottom: none; }
.step-num {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 300;
  color: rgba(212,175,55,0.35); line-height: 1; min-width: 50px;
}
.step-title {
  font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 400; color: var(--dark); margin-bottom: 0.5rem;
}
.step-desc { font-size: 0.8rem; font-weight: 300; line-height: 1.8; color: var(--muted); }

/* ── TESTIMONIALS ── */
#testimonials { background: var(--white); padding: var(--section-pad-y) var(--section-pad-x); }
.testimonials-header {
  display: grid; grid-template-columns: 1fr 2fr;
  gap: 4rem; align-items: flex-start; margin-bottom: 5rem;
}
.testimonials-header p {
  font-size: 0.82rem; font-weight: 300; line-height: 1.9; color: var(--muted);
}
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 16px;
}
.testimonial-card {
  background: var(--cream, #f5f0e8); padding: 3rem 2.5rem;
  position: relative; overflow: hidden; transition: background 0.4s;
  border-radius: 2px;
}
.testimonial-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 0; height: 3px; background: var(--gold);
  transition: width 0.5s ease;
}
.testimonial-card:hover { background: var(--cream2, #ede6d6); }
.testimonial-card:hover::before { width: 100%; }
.t-quote {
  font-family: var(--font-display);
  font-size: 4rem; line-height: 0.7;
  color: rgba(212,175,55,0.25);
  margin-bottom: 1.5rem; display: block;
}
.t-text {
  font-family: var(--font-display);
  font-size: 0.98rem; font-style: italic;
  color: var(--dark); line-height: 1.8; margin-bottom: 2rem;
}
.t-author-row { display: flex; align-items: center; gap: 1rem; }
.t-avatar-initials {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gold-pale, #f0e0a0);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1rem;
  color: var(--gold-dark, #a07928); font-weight: 500;
  flex-shrink: 0;
}
.t-name {
  font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold);
}
.t-role { font-size: 0.68rem; color: var(--muted); margin-top: 0.25rem; }

/* ── CONTACT ── */
#contact { display: grid; grid-template-columns: 1fr 1fr; min-height: 90vh; }
.contact-image { position: relative; overflow: hidden; }
.contact-image img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.7);
  transition: transform 8s ease;
}
.contact-image:hover img { transform: scale(1.03); }
.contact-image-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, transparent 50%, var(--off-white, #faf8f4) 100%);
}
.contact-image-content {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 4rem;
}
.contact-image-quote {
  font-family: var(--font-display);
  font-size: 1.6rem; font-weight: 300; font-style: italic;
  color: #ffffff; line-height: 1.4; max-width: 360px;
}
.contact-image-quote em {
  display: block; margin-top: 1.5rem;
  font-style: normal; font-size: 0.65rem;
  letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold-light);
}
.contact-form-section {
  background: var(--cream, #f5f0e8);
  padding: 6rem var(--section-pad-x);
  display: flex; flex-direction: column; justify-content: center;
}

/* ── FOOTER ── */
footer {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 4rem var(--section-pad-x) 3rem;
}
.footer-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 2rem;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.8rem; font-weight: 300; letter-spacing: 0.2em;
  color: var(--gold-light); text-transform: uppercase;
}
.footer-tagline {
  font-size: 0.7rem; font-weight: 300; color: rgba(200,192,176,0.5);
  letter-spacing: 0.15em; margin-top: 0.4rem;
}
.footer-nav { display: flex; gap: 4rem; }
.footer-nav-col h4 {
  font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 1.2rem;
}
.footer-nav-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-nav-col a {
  font-size: 0.75rem; font-weight: 300; color: rgba(200,192,176,0.5);
  letter-spacing: 0.05em; transition: color 0.3s;
}
.footer-nav-col a:hover { color: var(--gold-light); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; }
.footer-copy { font-size: 0.65rem; color: rgba(122,117,112,0.45); letter-spacing: 0.1em; }
.footer-social { display: flex; gap: 1.5rem; }
.footer-social a {
  font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(200,192,176,0.5); transition: color 0.3s;
}
.footer-social a:hover { color: var(--gold-light); }
