/* ============================================
   BUILDCRAFT — Construction Company Theme
   Modern, animated, interactive — portable to WP
   ============================================ */

:root {
  --bg: #ffffff;
  --surface: #f5f3ef;
  --surface-2: #ebe8e1;
  --ink: #0d0d0f;
  --ink-2: #1a1a1f;
  --muted: #6b6b6b;
  --accent: #ed5b2c;       /* VistaCrest orange */
  --accent-2: #f37125;     /* warm contrast */
  --accent-dark: #c2461b;
  --border: rgba(13, 13, 15, 0.1);
  --shadow-sm: 0 4px 16px rgba(0,0,0,.06);
  --shadow-md: 0 20px 50px -12px rgba(0,0,0,.22);
  --shadow-lg: 0 40px 80px -20px rgba(0,0,0,.35);
  --grad: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  --max: 1280px;
  --ease: cubic-bezier(.22,1,.36,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
ul { list-style: none; }
::selection { background: var(--accent); color: var(--ink); }

.container { max-width: var(--max); margin: 0 auto; padding: 0 2rem; position: relative; }
@media (max-width: 768px) { .container { padding: 0 1.25rem; } }

/* ---------- Cursor follower ---------- */
.cursor-blob {
  position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9999;
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--accent);
  mix-blend-mode: difference;
  transform: translate(-50%, -50%) scale(1);
  transition: width .35s var(--ease), height .35s var(--ease), opacity .25s ease;
  opacity: .85;
}
.cursor-blob.hover { width: 80px; height: 80px; opacity: .95; }
@media (max-width: 900px) { .cursor-blob { display: none; } }

/* ---------- Scroll progress ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad); z-index: 100; transform-origin: left;
  transform: scaleX(0); transition: transform .1s linear;
}

/* ---------- Typography ---------- */
.display, h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600; letter-spacing: -0.02em;
  line-height: 1.08; color: var(--ink);
}
h1 { font-size: clamp(2.75rem, 6.5vw, 5.5rem); font-weight: 700; }
h2 { font-size: clamp(2.1rem, 4.2vw, 3.5rem); }
h3 { font-size: 1.55rem; }
.gradient-text {
  background: var(--grad); -webkit-background-clip: text;
  background-clip: text; color: transparent;
}
.italic-em { font-style: italic; font-weight: 400; }
.eyebrow {
  font-size: .75rem; text-transform: uppercase; letter-spacing: .28em;
  font-weight: 600; color: var(--accent-dark); display: inline-flex;
  align-items: center; gap: .65rem; margin-bottom: 1.25rem;
}
.eyebrow::before {
  content: ''; width: 28px; height: 1px; background: var(--accent);
}
.section-head .eyebrow { justify-content: center; }
.section-head .eyebrow::before { display: none; }
.lead { color: var(--muted); font-size: 1.1rem; max-width: 38rem; line-height: 1.75; }

/* ---------- Buttons ---------- */
.btn {
  position: relative; display: inline-flex; align-items: center; gap: .65rem;
  padding: 1rem 1.9rem; font-size: .8rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .14em;
  border: 1px solid var(--ink); border-radius: 999px;
  transition: transform .35s var(--ease), background .3s ease, color .3s ease, border-color .3s ease, box-shadow .3s ease;
  cursor: pointer; overflow: hidden; isolation: isolate;
}
.btn::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: var(--grad); transform: translateY(101%);
  transition: transform .45s var(--ease);
}
.btn:hover::before { transform: translateY(0); }
.btn:hover { color: var(--ink); border-color: transparent; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-primary { background: var(--ink); color: #fff; }
.btn-outline { background: transparent; color: var(--ink); }
.btn-ghost { border-color: rgba(255,255,255,.4); color: #fff; background: transparent; }
.btn .arrow-ic {
  display: inline-flex; transition: transform .35s var(--ease);
}
.btn:hover .arrow-ic { transform: translateX(4px); }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--ink); color: #cfcfcf;
  font-size: .75rem; padding: .65rem 0;
  letter-spacing: .05em;
}
.topbar .container { display: flex; justify-content: space-between; gap: 1rem; }
.topbar a:hover { color: var(--accent); }
@media (max-width: 768px) { .topbar .topbar-right { display: none; } }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: padding .3s ease, background .3s ease;
}
.site-header.scrolled { background: rgba(255,255,255,.96); }
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.15rem 0;
}
.logo {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: 'Playfair Display', serif;
  font-weight: 700; font-size: 1.4rem;
  text-transform: lowercase;
  color: var(--accent);
  letter-spacing: -.01em;
}
.logo img {
  height: 44px; width: auto; display: block;
  transition: transform .4s var(--ease);
}
.logo:hover img { transform: scale(1.05); }
.footer .logo img { filter: brightness(1.1); }
.nav-links { display: flex; gap: 2.25rem; align-items: center; }
.nav-links a {
  font-size: .82rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: .14em;
  position: relative; padding: .5rem 0;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--accent); transform: scaleX(0);
  transform-origin: right; transition: transform .35s var(--ease);
}
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); transform-origin: left; }
.nav-links a:hover, .nav-links a.active { color: var(--accent-dark); }
.menu-toggle { display: none; background: none; border: 0; font-size: 1.5rem; cursor: pointer; }
@media (max-width: 900px) {
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--bg); flex-direction: column; padding: 1.5rem 2rem; gap: 1.25rem;
    border-bottom: 1px solid var(--border); }
  .nav-links.open { display: flex; animation: slideDown .35s var(--ease); }
  .menu-toggle { display: block; }
}
@keyframes slideDown { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 92vh;
  display: flex; align-items: center;
  color: #fff; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: -10% 0 0 0; z-index: 0;
  background: url('../images/hero.jpg') center/cover no-repeat;
  will-change: transform;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(circle at 80% 20%, rgba(240,169,59,.25), transparent 50%),
    linear-gradient(120deg, rgba(0,0,0,.78) 0%, rgba(0,0,0,.4) 60%, rgba(0,0,0,.2) 100%);
}
.hero .container { position: relative; z-index: 2; padding-top: 5rem; padding-bottom: 5rem; }
.hero h1 { color: #fff; max-width: 18ch; margin-bottom: 1.75rem; }
.hero h1 .word {
  display: inline-block; opacity: 0; transform: translateY(60%);
  animation: wordIn .9s var(--ease) forwards;
}
.hero h1 .word:nth-child(1) { animation-delay: .1s; }
.hero h1 .word:nth-child(2) { animation-delay: .2s; }
.hero h1 .word:nth-child(3) { animation-delay: .3s; }
.hero h1 .word:nth-child(4) { animation-delay: .4s; }
.hero h1 .word:nth-child(5) { animation-delay: .5s; }
.hero h1 .word:nth-child(6) { animation-delay: .6s; }
@keyframes wordIn { to { opacity: 1; transform: translateY(0); } }

.hero .lead { color: rgba(255,255,255,.85); font-size: 1.15rem; margin-bottom: 2.5rem; max-width: 36rem; opacity: 0; animation: fadeUp .8s var(--ease) .8s forwards; }
.hero .eyebrow { color: var(--accent); opacity: 0; animation: fadeUp .8s var(--ease) forwards; }
.hero .eyebrow::before { background: var(--accent); }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; opacity: 0; animation: fadeUp .8s var(--ease) 1s forwards; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 3; color: rgba(255,255,255,.7); font-size: .7rem;
  text-transform: uppercase; letter-spacing: .25em;
  display: flex; flex-direction: column; align-items: center; gap: .75rem;
}
.hero-scroll .line {
  width: 1px; height: 40px; background: rgba(255,255,255,.4); position: relative; overflow: hidden;
}
.hero-scroll .line::after {
  content: ''; position: absolute; top: -100%; left: 0; width: 100%; height: 50%;
  background: var(--accent); animation: scrollDown 1.8s ease-in-out infinite;
}
@keyframes scrollDown { 0% { top: -100%; } 100% { top: 200%; } }

/* ---------- Marquee strip ---------- */
.marquee {
  background: var(--ink); color: #fff;
  padding: 1.5rem 0; overflow: hidden; border-top: 1px solid rgba(255,255,255,.05);
}
.marquee-track {
  display: flex; gap: 3rem; white-space: nowrap;
  animation: scrollLeft 30s linear infinite;
  font-family: 'Playfair Display', serif; font-size: 1.6rem; font-style: italic;
}
.marquee-track span { display: inline-flex; align-items: center; gap: 3rem; }
.marquee-track .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); display: inline-block; }
@keyframes scrollLeft { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Hero stats ---------- */
.hero-stats { background: var(--surface); position: relative; z-index: 2; }
.hero-stats .container {
  display: grid; grid-template-columns: repeat(4, 1fr);
  padding: 3rem 2rem;
}
.hero-stats .stat {
  text-align: center; padding: 0 1rem; border-right: 1px solid var(--border);
  transition: transform .4s var(--ease);
}
.hero-stats .stat:hover { transform: translateY(-6px); }
.hero-stats .stat:last-child { border-right: 0; }
.hero-stats .num {
  font-family: 'Playfair Display', serif; font-weight: 700;
  font-size: clamp(2.25rem, 4.5vw, 3.5rem); line-height: 1;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-stats .label { font-size: .75rem; text-transform: uppercase; letter-spacing: .18em; margin-top: .65rem; font-weight: 600; color: var(--muted); }
@media (max-width: 768px) {
  .hero-stats .container { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .hero-stats .stat { border-right: 0; }
}

/* ---------- Section base ---------- */
.section { padding: 8rem 0; position: relative; }
.section.alt { background: var(--surface); }
.section-head { text-align: center; max-width: 44rem; margin: 0 auto 5rem; }
.section-head .lead { margin: 1.25rem auto 0; }
@media (max-width: 768px) { .section { padding: 5rem 0; } .section-head { margin-bottom: 3rem; } }

/* ---------- Services ---------- */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.service-card {
  background: var(--bg); border: 1px solid var(--border);
  padding: 2.75rem 2.25rem; transition: transform .5s var(--ease), box-shadow .5s var(--ease);
  position: relative; overflow: hidden; border-radius: 12px;
}
.service-card::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background: var(--grad); opacity: 0;
  transition: opacity .5s ease;
}
.service-card > * { position: relative; z-index: 1; }
.service-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.service-card:hover::before { opacity: .08; }
.service-card .num-tag {
  position: absolute; top: 1.5rem; right: 1.75rem;
  font-family: 'Playfair Display', serif; font-size: 2.5rem;
  color: var(--surface-2); font-weight: 700; line-height: 1;
  transition: color .4s ease;
}
.service-card:hover .num-tag { color: var(--accent); }
.service-icon {
  width: 60px; height: 60px; background: var(--surface);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.85rem; margin-bottom: 1.75rem; border-radius: 14px;
  transition: transform .5s var(--ease), background .4s ease;
}
.service-card:hover .service-icon { transform: rotate(-8deg) scale(1.08); background: var(--accent); }
.service-card h3 { margin-bottom: .85rem; }
.service-card p { color: var(--muted); font-size: .95rem; }
.service-card .more {
  display: inline-flex; align-items: center; gap: .5rem; margin-top: 1.5rem;
  font-size: .75rem; text-transform: uppercase; letter-spacing: .15em; font-weight: 600;
  color: var(--accent-dark);
}
.service-card .more .arrow-ic { transition: transform .35s var(--ease); }
.service-card:hover .more .arrow-ic { transform: translateX(6px); }
@media (max-width: 900px) { .services-grid { grid-template-columns: 1fr; } }

/* ---------- About ---------- */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.about-img { position: relative; }
.about-img img {
  width: 100%; border-radius: 8px;
  transition: transform .8s var(--ease); will-change: transform;
}
.about-img:hover img { transform: scale(1.03); }
.about-img::after {
  content: ''; position: absolute; bottom: -1.5rem; right: -1.5rem;
  width: 70%; height: 70%; border: 6px solid var(--accent); z-index: -1; border-radius: 8px;
}
.about-img .badge {
  position: absolute; bottom: 1.5rem; left: 1.5rem; background: #fff;
  padding: 1.25rem 1.5rem; border-radius: 8px; box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 1rem;
}
.about-img .badge .yrs {
  font-family: 'Playfair Display', serif; font-size: 2.25rem; font-weight: 700;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.about-img .badge .txt { font-size: .8rem; text-transform: uppercase; letter-spacing: .15em; color: var(--muted); font-weight: 600; line-height: 1.3; }
.about-text h2 { margin-bottom: 1.5rem; }
.about-text p { color: var(--muted); margin-bottom: 1rem; }
.about-features { margin: 2rem 0; display: grid; gap: 1rem; }
.about-feature { display: flex; gap: 1rem; align-items: flex-start; }
.about-feature .check {
  flex: 0 0 32px; height: 32px; background: var(--grad);
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%; font-weight: 800; color: var(--ink);
}
.about-feature strong { display: block; margin-bottom: .25rem; }
.about-feature span { color: var(--muted); font-size: .9rem; }
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; gap: 3rem; } .about-img::after { display: none; } }

/* ---------- Portfolio grid ---------- */
.portfolio-filters {
  display: flex; flex-wrap: wrap; gap: .65rem; justify-content: center; margin-bottom: 3.5rem;
}
.filter-btn {
  background: transparent; border: 1px solid var(--border);
  padding: .7rem 1.6rem; font-size: .78rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .14em; cursor: pointer;
  transition: all .3s var(--ease); border-radius: 999px;
}
.filter-btn:hover { border-color: var(--ink); transform: translateY(-2px); }
.filter-btn.active { background: var(--ink); color: var(--bg); border-color: var(--ink); }

.portfolio-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.portfolio-card {
  position: relative; overflow: hidden; aspect-ratio: 4/5;
  background: var(--surface); border-radius: 12px;
  transition: transform .5s var(--ease);
}
.portfolio-card:hover { transform: translateY(-8px); }
.portfolio-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1s var(--ease), filter .5s ease;
  filter: saturate(.9);
}
.portfolio-card:hover img { transform: scale(1.1); filter: saturate(1.1); }
.portfolio-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.92) 0%, rgba(0,0,0,.1) 55%, rgba(0,0,0,0) 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 2rem; color: #fff;
}
.portfolio-overlay .cat {
  font-size: .7rem; text-transform: uppercase; letter-spacing: .22em;
  color: var(--accent); margin-bottom: .65rem; font-weight: 700;
  transform: translateY(8px); opacity: 0; transition: all .4s var(--ease) .05s;
}
.portfolio-overlay h3 {
  color: #fff; font-size: 1.6rem;
  transform: translateY(8px); opacity: .85; transition: all .4s var(--ease) .1s;
}
.portfolio-card:hover .portfolio-overlay .cat,
.portfolio-card:hover .portfolio-overlay h3 { transform: translateY(0); opacity: 1; }
.portfolio-overlay .arrow {
  position: absolute; top: 1.5rem; right: 1.5rem;
  width: 48px; height: 48px; background: var(--accent); color: var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.25rem; opacity: 0; transform: translate(-12px, 12px) rotate(-45deg);
  transition: all .45s var(--ease); border-radius: 50%;
}
.portfolio-card:hover .arrow { opacity: 1; transform: translate(0,0) rotate(0deg); }
@media (max-width: 900px) { .portfolio-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .portfolio-grid { grid-template-columns: 1fr; } }

/* ---------- Process steps ---------- */
.process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin-top: 3rem;
  position: relative;
}
.process-grid::before {
  content: ''; position: absolute; top: 32px; left: 5%; right: 5%; height: 1px;
  background: repeating-linear-gradient(90deg, var(--border) 0 8px, transparent 8px 16px);
  z-index: 0;
}
.process-step { position: relative; z-index: 1; text-align: left; }
.process-step .step-num {
  width: 64px; height: 64px; border-radius: 50%; background: var(--bg);
  border: 1px solid var(--border); display: inline-flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700;
  margin-bottom: 1.25rem; transition: all .4s var(--ease);
}
.process-step:hover .step-num { background: var(--grad); border-color: transparent; transform: scale(1.08) rotate(8deg); }
.process-step h4 { font-family: 'Playfair Display', serif; font-size: 1.2rem; margin-bottom: .5rem; }
.process-step p { color: var(--muted); font-size: .9rem; }
@media (max-width: 900px) { .process-grid { grid-template-columns: repeat(2, 1fr); } .process-grid::before { display: none; } }
@media (max-width: 600px) { .process-grid { grid-template-columns: 1fr; } }

/* ---------- Page header (inner pages) ---------- */
.page-header {
  background: var(--ink); color: #fff;
  padding: 9rem 0 6rem; text-align: center;
  position: relative; overflow: hidden;
}
.page-header::before {
  content: ''; position: absolute; inset: 0;
  background: url('../images/hero.jpg') center/cover no-repeat;
  opacity: .22; transform: scale(1.05);
}
.page-header::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(240,169,59,.18), transparent 60%);
}
.page-header .container { position: relative; z-index: 1; }
.page-header h1 { color: #fff; }
.breadcrumb {
  margin-top: 1rem; font-size: .8rem; text-transform: uppercase; letter-spacing: .15em;
  color: rgba(255,255,255,.7);
}
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .sep { margin: 0 .5rem; color: var(--accent); }

/* ---------- Portfolio detail ---------- */
.detail-cover {
  width: 100%; aspect-ratio: 21/9; overflow: hidden; background: var(--surface);
}
.detail-cover img { width: 100%; height: 100%; object-fit: cover; transition: transform 12s linear; }
.detail-cover:hover img { transform: scale(1.08); }
.detail-meta {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
  padding: 3rem 0; border-bottom: 1px solid var(--border);
}
.detail-meta .meta-item .eyebrow { color: var(--muted); margin-bottom: .35rem; font-size: .7rem; }
.detail-meta .meta-item .eyebrow::before { background: var(--muted); }
.detail-meta .meta-item strong { font-size: 1.05rem; font-weight: 600; }
@media (max-width: 768px) { .detail-meta { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; } }

.detail-content {
  display: grid; grid-template-columns: 1fr 2fr; gap: 5rem; padding: 5rem 0;
}
.detail-content h2 { margin-bottom: 1.5rem; }
.detail-content p { color: var(--muted); margin-bottom: 1.25rem; }
.detail-content .sidebar h4 {
  font-family: 'Inter', sans-serif; font-size: .8rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .15em; margin-bottom: 1rem; color: var(--accent-dark);
}
.detail-content .sidebar ul li {
  padding: .85rem 0; border-bottom: 1px solid var(--border);
  display: flex; justify-content: space-between; gap: 1rem; font-size: .95rem;
}
.detail-content .sidebar ul li span:first-child { color: var(--muted); }
.detail-content .sidebar ul li span:last-child { font-weight: 500; }
@media (max-width: 900px) { .detail-content { grid-template-columns: 1fr; gap: 2.5rem; padding: 3rem 0; } }

.detail-gallery {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; padding-bottom: 5rem;
}
.detail-gallery img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 8px; transition: transform .6s var(--ease); }
.detail-gallery img:hover { transform: scale(1.03); }
@media (max-width: 768px) { .detail-gallery { grid-template-columns: 1fr; } }

.next-prev {
  display: flex; justify-content: space-between; gap: 2rem;
  padding: 3rem 0; border-top: 1px solid var(--border);
}
.next-prev a:hover { color: var(--accent-dark); }
.next-prev .label { font-size: .75rem; text-transform: uppercase; letter-spacing: .15em; color: var(--muted); display: block; margin-bottom: .35rem; }
.next-prev .title { font-family: 'Playfair Display', serif; font-size: 1.25rem; }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: var(--ink); color: #fff;
  padding: 6rem 0; text-align: center;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; top: -50%; left: -10%; width: 60%; height: 200%;
  background: radial-gradient(circle, rgba(240,169,59,.25), transparent 60%);
  animation: float 14s ease-in-out infinite;
}
.cta-banner::after {
  content: ''; position: absolute; top: -30%; right: -10%; width: 60%; height: 200%;
  background: radial-gradient(circle, rgba(255,106,61,.18), transparent 60%);
  animation: float 18s ease-in-out infinite reverse;
}
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-30px); } }
.cta-banner .container { position: relative; z-index: 1; }
.cta-banner h2 { color: #fff; max-width: 30ch; margin: 0 auto 1.5rem; }
.cta-banner .lead { color: rgba(255,255,255,.85); margin: 0 auto 2.5rem; }

/* ---------- Contact ---------- */
.contact-info-block {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem;
  margin-top: 3rem;
}
.contact-card {
  background: var(--bg); border: 1px solid var(--border);
  padding: 2.25rem; border-radius: 12px;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.contact-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.contact-card .ic {
  width: 56px; height: 56px; background: var(--grad); color: var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.35rem; flex-shrink: 0; border-radius: 14px; margin-bottom: 1.25rem;
}
.contact-card strong { display: block; font-size: 1.05rem; margin-bottom: .35rem; }
.contact-card span, .contact-card a { color: var(--muted); font-size: .95rem; line-height: 1.6; display: block; }
.contact-card a:hover { color: var(--accent-dark); }
@media (max-width: 700px) { .contact-info-block { grid-template-columns: 1fr; } }

.contact-cta {
  text-align: center; padding-top: 2rem;
}
.contact-email {
  display: inline-block; margin-top: 1.5rem;
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: clamp(1.75rem, 4vw, 3rem);
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
  position: relative;
}
.contact-email::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px;
  background: var(--grad); transform: scaleX(.3); transform-origin: left;
  transition: transform .5s var(--ease);
}
.contact-email:hover::after { transform: scaleX(1); }

.map-wrap {
  margin-top: 4rem; border-radius: 12px; overflow: hidden;
  height: 380px; background: var(--surface); position: relative;
  border: 1px solid var(--border);
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; filter: grayscale(.3) contrast(1.05); }

/* ---------- Footer ---------- */
.footer {
  background: #0a0a0a; color: #b5b5b5;
  padding: 5rem 0 0; position: relative; overflow: hidden;
}
.footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: var(--grad);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 3rem;
  padding-bottom: 4rem;
}
.footer h4 {
  color: #fff; font-family: 'Inter', sans-serif; font-size: .85rem;
  text-transform: uppercase; letter-spacing: .15em; margin-bottom: 1.5rem; font-weight: 600;
}
.footer .logo { color: #fff; margin-bottom: 1.25rem; }
.footer-about p { font-size: .9rem; line-height: 1.7; max-width: 24rem; }
.footer ul li { margin-bottom: .75rem; font-size: .9rem; }
.footer ul li a { transition: padding-left .25s ease, color .25s ease; }
.footer ul li a:hover { color: var(--accent); padding-left: 6px; }
.footer-contact p { font-size: .9rem; margin-bottom: .65rem; }
.footer-contact strong { color: #fff; display: block; margin-bottom: .25rem; font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.75rem 0; display: flex; justify-content: space-between; gap: 1rem;
  font-size: .8rem;
}
.socials { display: flex; gap: .65rem; }
.socials a {
  width: 38px; height: 38px; border: 1px solid rgba(255,255,255,.15);
  display: inline-flex; align-items: center; justify-content: center;
  transition: all .3s var(--ease); border-radius: 50%; font-size: .8rem;
}
.socials a:hover { background: var(--grad); color: var(--ink); border-color: transparent; transform: translateY(-3px) rotate(-8deg); }
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal-left.in { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal-right.in { opacity: 1; transform: translateX(0); }
.reveal-scale { opacity: 0; transform: scale(.92); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal-scale.in { opacity: 1; transform: scale(1); }
[data-stagger] > * { transition-delay: calc(var(--i, 0) * 80ms); }

/* ============ Directors ============ */
.directors-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-top: 2rem;
}
.director-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 18px;
  overflow: hidden;
  transition: transform .5s cubic-bezier(.22,1,.36,1), box-shadow .5s ease;
  display: flex;
  flex-direction: column;
}
.director-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px -25px rgba(0,0,0,0.25);
}
.director-photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: #f4f4f4;
}
.director-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: transform .9s cubic-bezier(.22,1,.36,1), filter .6s ease;
}
.director-card:hover .director-photo img {
  transform: scale(1.06);
  filter: grayscale(0%);
}
.director-info {
  padding: 2rem 2rem 2.25rem;
  text-align: left;
}
.director-info .role {
  display: inline-block;
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .25em;
  font-weight: 600;
  color: var(--accent, #e8a33d);
  margin-bottom: .85rem;
}
.director-info h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.1;
  margin-bottom: .9rem;
}
.director-info p {
  color: #555;
  line-height: 1.7;
  font-size: .98rem;
  margin: 0;
}
@media (max-width: 768px) {
  .directors-grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .director-info { padding: 1.5rem 1.5rem 1.75rem; }
  .director-info h3 { font-size: 1.6rem; }
}
