/* Layouts — hero, sections, grids, nav, footer */

/* --- Navigation --- */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem 4rem;
  background: linear-gradient(to bottom, rgba(15,14,12,0.95) 0%, transparent 100%);
  transition: background 0.4s;
}
nav.scrolled { background: rgba(15,14,12,0.97); border-bottom: 1px solid rgba(196,154,60,0.15); }
.nav-logo { font-family: var(--serif); font-size: 1.1rem; font-weight: 700; letter-spacing: 0.08em; }
.nav-logo span { color: var(--brass); }
.nav-links { display: flex; gap: 2.5rem; list-style: none; font-size: 0.76rem; letter-spacing: 0.18em; text-transform: uppercase; }
.nav-links a { color: var(--stone); transition: color 0.3s; }
.nav-links a:hover, .nav-links a.active { color: var(--cream); }
.nav-cta {
  font-size: 0.73rem; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 0.6rem 1.5rem; border: 1px solid var(--brass); color: var(--brass);
  transition: all 0.3s;
}
.nav-cta:hover { background: var(--brass); color: var(--ink); }

/* --- Homepage hero --- */
.hero { position: relative; height: 100vh; min-height: 680px; display: flex; align-items: flex-end; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center 20%; animation: heroZoom 14s ease-out forwards; }
@keyframes heroZoom { from { transform: scale(1.06); } to { transform: scale(1.0); } }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(160deg, rgba(15,14,12,0.55) 0%, rgba(15,14,12,0.7) 45%, rgba(15,14,12,0.96) 100%); }
.hero-content { position: relative; z-index: 2; padding: 0 4rem 7rem; max-width: 820px; animation: heroFade 1.2s ease-out 0.3s both; }
@keyframes heroFade { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
.hero-eyebrow { font-size: 0.7rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--brass); margin-bottom: 1.2rem; text-shadow: 0 1px 6px rgba(0,0,0,0.8); }
.hero h1 { font-family: var(--serif); font-size: clamp(3rem, 6vw, 5.5rem); font-weight: 700; line-height: 1.05; color: #ffffff; margin-bottom: 1.5rem; text-shadow: 0 2px 16px rgba(0,0,0,0.75); }
.hero h1 em { font-style: italic; font-weight: 400; color: var(--brass-lt); }
.hero-sub { font-size: 1.05rem; color: var(--cream-dk); max-width: 540px; line-height: 1.85; margin-bottom: 2.5rem; text-shadow: 0 1px 8px rgba(0,0,0,0.7); }
.hero-actions { display: flex; gap: 1.2rem; flex-wrap: wrap; align-items: center; }
.hero-scroll { position: absolute; bottom: 2.5rem; right: 4rem; z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 0.5rem; font-size: 0.63rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--stone); }
.hero-scroll::after { content: ''; width: 1px; height: 55px; background: linear-gradient(to bottom, var(--brass), transparent); animation: scrollpulse 2s ease-in-out infinite; }
@keyframes scrollpulse { 0%,100% { opacity: 0.4; } 50% { opacity: 1; } }

/* --- Mission band --- */
.mission-band { background: var(--brass); padding: 3.5rem 4rem; }
.mission-band blockquote { font-family: var(--serif2); font-size: clamp(1.15rem, 2.2vw, 1.6rem); font-style: italic; color: var(--ink); max-width: 860px; margin: 0 auto; text-align: center; line-height: 1.8; font-weight: 400; }
.mission-band cite { display: block; margin-top: 1rem; font-family: var(--sans); font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; font-style: normal; color: rgba(15,14,12,0.5); }

/* --- About image / badge --- */
.about-img-wrap { position: relative; }
.about-img-wrap img { height: 600px; }
.about-badge { position: absolute; bottom: -2rem; left: -2rem; background: var(--brass); color: var(--ink); padding: 1.5rem 2rem; font-family: var(--serif); font-size: 0.9rem; font-weight: 700; line-height: 1.4; max-width: 220px; }
.about-badge small { display: block; font-family: var(--sans); font-size: 0.6rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 400; margin-top: 0.3rem; color: rgba(15,14,12,0.5); }

/* --- Stat row --- */
.stat-row { display: flex; gap: 3rem; margin-top: 3rem; padding-top: 3rem; border-top: 1px solid rgba(138,130,120,0.2); flex-wrap: wrap; }
.stat-num { font-family: var(--serif); font-size: 2.6rem; font-weight: 700; color: var(--brass); line-height: 1; }
.stat-label { font-size: 0.66rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--stone); margin-top: 0.3rem; }

/* --- Vanity feature --- */
.vanity-feature { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-top: 5rem; }
.vanity-img img { height: 520px; transition: transform 0.7s ease; }
.vanity-img:hover img { transform: scale(1.03); }
.vanity-caption { background: var(--ash); padding: 3rem; display: flex; flex-direction: column; justify-content: center; }
.vanity-caption h3 { font-family: var(--serif); font-size: 1.8rem; color: var(--white); margin-bottom: 1rem; line-height: 1.2; }
.vanity-caption h3 em { font-style: italic; font-weight: 400; color: var(--cream-dk); }
.vanity-caption p { font-size: 0.92rem; color: var(--stone); line-height: 1.85; }

/* --- Timeline --- */
.timeline-section { background: var(--charcoal); }
.timeline { margin-top: 4rem; position: relative; padding-left: 3rem; }
.timeline::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 1px; background: linear-gradient(to bottom, var(--brass), transparent); }
.timeline-item { position: relative; padding-bottom: 3rem; padding-left: 2rem; }
.timeline-item::before { content: ''; position: absolute; left: -3rem; top: 0.45rem; width: 7px; height: 7px; border-radius: 50%; background: var(--brass); border: 2px solid var(--charcoal); box-shadow: 0 0 0 3px rgba(196,154,60,0.2); }
.timeline-era { font-size: 0.63rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--brass); margin-bottom: 0.4rem; }
.timeline-item h3 { font-family: var(--serif); font-size: 1.2rem; color: var(--white); margin-bottom: 0.5rem; }
.timeline-item p { font-size: 0.9rem; color: var(--stone); line-height: 1.85; max-width: 620px; }

/* --- Before / After --- */
.before-after { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-top: 3rem; }
.ba-card { position: relative; overflow: hidden; }
.ba-card img { height: 360px; filter: brightness(0.82); transition: filter 0.4s; }
.ba-card:hover img { filter: brightness(0.65); }
.ba-label { position: absolute; top: 1.2rem; left: 1.2rem; font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; background: var(--brass); color: var(--ink); padding: 0.3rem 0.8rem; font-weight: 500; }
.ba-caption { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.5rem; background: linear-gradient(to top, rgba(15,14,12,0.88) 0%, transparent 100%); }
.ba-caption p { font-size: 0.82rem; color: var(--cream-dk); }

/* --- Film credits --- */
.credits-section { background: var(--ink); }
.credits-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-top: 4rem; }
.credit-card { background: var(--ash); padding: 2.5rem; position: relative; overflow: hidden; transition: background 0.3s; }
.credit-card:hover { background: #2f2d2a; }
.credit-card::after { content: ''; position: absolute; top: 0; left: 0; width: 2px; height: 100%; background: var(--brass); transform: scaleY(0); transform-origin: top; transition: transform 0.4s; }
.credit-card:hover::after { transform: scaleY(1); }
.credit-type { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--brass); margin-bottom: 0.8rem; }
.credit-card h3 { font-family: var(--serif); font-size: 1.35rem; color: var(--white); font-style: italic; margin-bottom: 0.3rem; }
.credit-card p { font-size: 0.85rem; color: var(--stone); }

/* --- Clients --- */
.clients-section { background: var(--charcoal); }
.client-columns { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0; margin-top: 4rem; border: 1px solid rgba(196,154,60,0.12); }
.client-col { padding: 2.5rem; border-right: 1px solid rgba(196,154,60,0.12); }
.client-col:last-child { border-right: none; }
.client-col-label { font-size: 0.6rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--brass); margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 1px solid rgba(196,154,60,0.15); }
.client-name { font-size: 0.9rem; color: var(--cream-dk); padding: 0.55rem 0; border-bottom: 1px solid rgba(138,130,120,0.1); line-height: 1.4; }
.client-name small { display: block; font-size: 0.72rem; color: var(--stone); margin-top: 0.1rem; }

/* --- Services section (homepage) --- */
.services-section { background: var(--ink); }

/* --- Projects gallery --- */
.projects-section { background: var(--charcoal); }
.projects-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 4rem; }
.projects-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; grid-template-rows: auto auto; gap: 2px; }
.project-card { position: relative; overflow: hidden; }
.project-card.featured { grid-row: span 2; }
.project-card img { height: 100%; min-height: 300px; transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94); filter: brightness(0.78); }
.project-card.featured img { min-height: 660px; }
.project-card:hover img { transform: scale(1.04); filter: brightness(0.55); }
.project-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 2rem; background: linear-gradient(to top, rgba(15,14,12,0.92) 0%, transparent 100%); }
.project-loc { font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--brass); margin-bottom: 0.4rem; }
.project-card h3 { font-family: var(--serif); font-size: 1.2rem; font-weight: 700; color: var(--white); line-height: 1.2; }
.project-card.featured h3 { font-size: 1.7rem; }
.project-type { font-size: 0.7rem; color: var(--stone); margin-top: 0.3rem; }

/* --- Testimonial --- */
.testimonial-section { background: var(--ash); text-align: center; }
.stars { display: flex; justify-content: center; gap: 0.3rem; margin-bottom: 2rem; color: var(--brass); font-size: 1rem; }
.testimonial-quote { font-family: var(--serif2); font-size: clamp(1.2rem, 2.4vw, 1.8rem); font-style: italic; color: var(--cream); line-height: 1.75; max-width: 820px; margin: 0 auto 2rem; font-weight: 300; }
.testimonial-attr { font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--stone); }
.testimonial-attr span { color: var(--brass); }

/* --- Service area (homepage) --- */
.area-section { background: var(--charcoal); }
.area-grid-home { display: grid; grid-template-columns: 1fr 1.5fr; gap: 6rem; align-items: start; margin-top: 4rem; }
.area-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; }
.area-list li { padding: 0.75rem 0; border-bottom: 1px solid rgba(138,130,120,0.12); font-size: 0.88rem; color: var(--stone); display: flex; align-items: center; gap: 0.6rem; }
.area-list li::before { content: ''; width: 4px; height: 4px; background: var(--brass); border-radius: 50%; flex-shrink: 0; }

/* --- Page hero --- */
.page-hero { position: relative; height: 70vh; min-height: 500px; display: flex; align-items: flex-end; overflow: hidden; }
.page-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center 35%; }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(160deg, rgba(15,14,12,0.45) 0%, rgba(15,14,12,0.65) 45%, rgba(15,14,12,0.95) 100%); }
.page-hero-content { position: relative; z-index: 2; padding: 0 4rem 6rem; max-width: 820px; }
.breadcrumb { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--stone); margin-bottom: 1.2rem; }
.breadcrumb a { color: var(--brass); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { margin: 0 0.5rem; }
.page-hero h1 { font-family: var(--serif); font-size: clamp(2.4rem, 5vw, 4.5rem); font-weight: 700; line-height: 1.05; color: #ffffff; margin-bottom: 1.2rem; text-shadow: 0 2px 16px rgba(0,0,0,0.75); }
.page-hero h1 em { font-style: italic; font-weight: 400; color: var(--brass-lt); }
.page-hero-sub { font-size: 1rem; color: var(--cream-dk); max-width: 520px; line-height: 1.85; text-shadow: 0 1px 8px rgba(0,0,0,0.7); }

/* --- Service banner --- */
.service-banner { background: var(--ash); border-top: 1px solid rgba(196,154,60,0.2); border-bottom: 1px solid rgba(196,154,60,0.2); padding: 0.9rem 4rem; display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; }
.banner-label { font-size: 0.63rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--brass); white-space: nowrap; }
.banner-div { width: 1px; height: 0.9rem; background: var(--stone); opacity: 0.3; flex-shrink: 0; }
.banner-locations { font-size: 0.72rem; color: var(--stone); }
.banner-locations span { color: var(--cream-dk); }

/* --- Section spacing --- */
.section { padding: 8rem 4rem; }
.section-sm { padding: 5rem 4rem; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }

/* --- Process section --- */
.process-section { background: var(--ink); border-top: 1px solid rgba(196,154,60,0.12); }
.process-steps { display: grid; grid-template-columns: repeat(4,1fr); margin-top: 4rem; }
.step { padding: 0 2rem; text-align: center; }
.step-num { width: 3.5rem; height: 3.5rem; border: 1px solid var(--brass); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; font-family: var(--serif); color: var(--brass); background: var(--ink); position: relative; z-index: 1; }
.step h3 { font-family: var(--serif); font-size: 1rem; color: var(--white); margin-bottom: 0.6rem; }
.step p { font-size: 0.84rem; color: var(--stone); line-height: 1.75; }

/* --- CTA section --- */
.cta-section { position: relative; overflow: hidden; min-height: 560px; display: flex; align-items: center; }
.cta-bg { position: absolute; inset: 0; background-size: cover; background-position: center top; filter: brightness(0.28); }
.cta-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(15,14,12,0.9) 0%, rgba(196,154,60,0.05) 100%); }
.cta-content { position: relative; z-index: 2; padding: 0 4rem; max-width: 700px; }
.cta-content h2 { font-family: var(--serif); font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 700; color: var(--white); line-height: 1.1; margin-bottom: 1rem; }
.cta-content h2 em { font-style: italic; color: var(--brass); font-weight: 400; }
.cta-content p { color: var(--stone); font-size: 1rem; margin-bottom: 2.5rem; max-width: 440px; line-height: 1.85; }
.cta-actions { display: flex; gap: 1.5rem; flex-wrap: wrap; align-items: center; }
.cta-phone { font-family: var(--serif); font-size: 1.4rem; color: var(--brass); display: block; margin-top: 2rem; text-decoration: none; }

/* --- Footer --- */
footer { background: var(--ink); border-top: 1px solid rgba(196,154,60,0.14); padding: 4rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 4rem; margin-bottom: 4rem; }
.footer-brand-title { font-family: var(--serif); font-size: 1.25rem; font-weight: 700; color: var(--white); margin-bottom: 0.8rem; }
.footer-brand p { font-size: 0.84rem; color: var(--stone); line-height: 1.85; max-width: 280px; }
.footer-col-title { font-size: 0.63rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--brass); margin-bottom: 1.2rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { font-size: 0.84rem; color: var(--stone); margin-bottom: 0.6rem; }
.footer-col ul li a, .footer-col a { color: var(--stone); transition: color 0.3s; }
.footer-col ul li a:hover, .footer-col a:hover { color: var(--cream); }
.footer-bottom { border-top: 1px solid rgba(138,130,120,0.1); padding-top: 2rem; display: flex; justify-content: space-between; font-size: 0.74rem; color: var(--stone); }

/* --- Hamburger menu --- */
.hamburger { display: none; flex-direction: column; justify-content: center; gap: 5px; background: none; border: none; cursor: pointer; padding: 0.5rem; z-index: 201; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--cream); transition: all 0.3s; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
.mobile-menu { display: none; position: fixed; inset: 0; z-index: 200; background: rgba(15,14,12,0.98); padding: 6rem 2rem 2rem; overflow-y: auto; }
.mobile-menu.active { display: block; }
.mobile-menu ul { list-style: none; margin-bottom: 2rem; }
.mobile-menu li { border-bottom: 1px solid rgba(138,130,120,0.12); }
.mobile-menu li a { display: block; padding: 1rem 0; font-size: 1rem; letter-spacing: 0.08em; color: var(--cream); text-transform: uppercase; font-family: var(--sans); text-decoration: none; }
.mobile-menu li a:hover { color: var(--brass); }
.mobile-menu-cta { display: flex; flex-direction: column; gap: 1rem; margin-top: 1rem; }
.mobile-menu-cta a.btn-mobile-primary { display: block; text-align: center; padding: 1rem; background: var(--brass); color: var(--ink); font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 500; text-decoration: none; }
.mobile-menu-cta a.btn-mobile-phone { display: block; text-align: center; padding: 1rem; border: 1px solid var(--brass); color: var(--brass); font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase; text-decoration: none; }
