:root {
  --amber: #D4891A;
  --amber-light: #F0A832;
  --dark: #141412;
  --dark2: #1e1e1b;
  --dark3: #2a2a26;
  --off-white: #F2EDE6;
  --grey: #8a8880;
  --light-grey: #c8c4bc;
}
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { background: var(--dark); color: var(--off-white); font-family: 'Crimson Pro', Georgia, serif; overflow-x: hidden; }

/* NAV */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 0 5vw; height: 64px; display: flex; align-items: center; justify-content: space-between; background: rgba(20,20,18,0); transition: background 0.4s ease, box-shadow 0.4s ease; }
nav.scrolled { background: rgba(20,20,18,0.97); box-shadow: 0 1px 0 rgba(212,137,26,0.3); }
nav.nav-solid { background: rgba(20,20,18,0.97); box-shadow: 0 1px 0 rgba(212,137,26,0.3); }
.nav-logo { font-family: 'Oswald', sans-serif; font-size: 16px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--off-white); text-decoration: none; }
.nav-logo span { color: var(--amber); }
.nav-links { display: flex; gap: 32px; list-style: none; align-items: center; }
.nav-links a { font-family: 'Oswald', sans-serif; font-size: 12px; font-weight: 400; letter-spacing: 0.18em; text-transform: uppercase; color: var(--light-grey); text-decoration: none; transition: color 0.2s; }
.nav-links a:hover { color: var(--amber); }
.nav-cta { font-family: 'Oswald', sans-serif; font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--dark) !important; background: var(--amber); padding: 8px 20px; text-decoration: none; transition: background 0.2s !important; }
.nav-cta:hover { background: var(--amber-light) !important; }

/* BUTTONS */
.btn-primary { font-family: 'Oswald', sans-serif; font-size: 13px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--dark); background: var(--amber); padding: 14px 32px; text-decoration: none; display: inline-block; transition: background 0.2s, transform 0.2s; }
.btn-primary:hover { background: var(--amber-light); transform: translateY(-2px); }
.btn-ghost { font-family: 'Oswald', sans-serif; font-size: 13px; font-weight: 400; letter-spacing: 0.14em; text-transform: uppercase; color: var(--off-white); border: 1px solid rgba(242,237,230,0.3); padding: 14px 32px; text-decoration: none; display: inline-block; transition: border-color 0.2s, color 0.2s, transform 0.2s; }
.btn-ghost:hover { border-color: var(--amber); color: var(--amber); transform: translateY(-2px); }
.btn-dark { font-family: 'Oswald', sans-serif; font-size: 14px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--off-white); background: var(--dark); padding: 16px 40px; text-decoration: none; display: inline-block; transition: background 0.2s, transform 0.2s; flex-shrink: 0; }
.btn-dark:hover { background: var(--dark3); transform: translateY(-2px); }

/* SECTION SHARED */
.section-label { font-family: 'Oswald', sans-serif; font-size: 10px; font-weight: 400; letter-spacing: 0.45em; text-transform: uppercase; color: var(--amber); margin-bottom: 14px; }
.section-title { font-family: 'Oswald', sans-serif; font-size: clamp(32px, 4vw, 52px); font-weight: 700; text-transform: uppercase; letter-spacing: -0.01em; color: var(--off-white); line-height: 1.05; margin-bottom: 20px; }
.section-body { font-family: 'Crimson Pro', serif; font-size: 18px; font-weight: 300; color: var(--light-grey); line-height: 1.75; max-width: 580px; }

/* REVEAL */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* MARQUEE */
.marquee-strip { background: var(--amber); overflow: hidden; }
.marquee-track { display: flex; white-space: nowrap; animation: marquee 22s linear infinite; width: max-content; }
.marquee-item { font-family: 'Oswald', sans-serif; font-size: 13px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--dark); padding: 13px 40px; border-right: 1px solid rgba(20,20,18,0.2); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* CTA BAND */
.cta-band { background: var(--amber); padding: 72px 5vw; display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-band-title { font-family: 'Oswald', sans-serif; font-size: clamp(28px, 3.5vw, 46px); font-weight: 700; text-transform: uppercase; color: var(--dark); line-height: 1.05; margin-bottom: 6px; }
.cta-band-sub { font-family: 'Crimson Pro', serif; font-size: 18px; font-style: italic; font-weight: 300; color: rgba(20,20,18,0.65); }

/* FOOTER */
footer { background: var(--dark2); padding: 28px 5vw; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid rgba(212,137,26,0.2); flex-wrap: wrap; gap: 16px; }
.footer-logo { font-family: 'Oswald', sans-serif; font-size: 14px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--off-white); text-decoration: none; }
.footer-logo span { color: var(--amber); }
.footer-copy { font-family: 'Crimson Pro', serif; font-size: 14px; font-weight: 300; color: var(--grey); }

/* HERO */
.hero { position: relative; height: 100vh; min-height: 600px; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.08); transition: transform 8s ease-out; }
.hero-bg.loaded { transform: scale(1); }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(105deg, rgba(20,20,18,0.92) 45%, rgba(20,20,18,0.5) 100%); }
.hero-grain { position: absolute; inset: 0; opacity: 0.04; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E"); background-size: 200px 200px; pointer-events: none; }
.hero-content { position: relative; z-index: 2; padding: 0 5vw; max-width: 780px; }
.hero-eyebrow { font-family: 'Oswald', sans-serif; font-size: 11px; font-weight: 400; letter-spacing: 0.4em; text-transform: uppercase; color: var(--amber); margin-bottom: 20px; opacity: 0; transform: translateY(20px); animation: fadeUp 0.7s ease 0.2s forwards; }
.hero-title { font-family: 'Oswald', sans-serif; font-size: clamp(48px, 7vw, 88px); font-weight: 700; line-height: 0.95; text-transform: uppercase; letter-spacing: -0.01em; color: var(--off-white); margin-bottom: 28px; }
.hero-title .line { display: block; opacity: 0; transform: translateY(30px); }
.hero-title .line:nth-child(1) { animation: fadeUp 0.7s ease 0.4s forwards; }
.hero-title .line:nth-child(2) { animation: fadeUp 0.7s ease 0.55s forwards; color: var(--amber); }
.hero-title .line:nth-child(3) { animation: fadeUp 0.7s ease 0.7s forwards; }
.hero-sub { font-family: 'Crimson Pro', serif; font-size: 19px; font-weight: 300; font-style: italic; color: var(--light-grey); line-height: 1.65; max-width: 480px; margin-bottom: 40px; opacity: 0; transform: translateY(20px); animation: fadeUp 0.7s ease 0.9s forwards; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; opacity: 0; transform: translateY(20px); animation: fadeUp 0.7s ease 1.05s forwards; }
.hero-stats { position: absolute; bottom: 0; left: 0; right: 0; z-index: 2; display: flex; border-top: 1px solid rgba(212,137,26,0.25); }
.stat-item { flex: 1; padding: 20px 5vw; border-right: 1px solid rgba(212,137,26,0.15); background: rgba(20,20,18,0.75); backdrop-filter: blur(8px); opacity: 0; animation: fadeUp 0.6s ease 1.3s forwards; }
.stat-item:last-child { border-right: none; }
.stat-item:nth-child(2) { animation-delay: 1.4s; }
.stat-item:nth-child(3) { animation-delay: 1.5s; }
.stat-number { font-family: 'Oswald', sans-serif; font-size: 30px; font-weight: 700; color: var(--amber); line-height: 1; margin-bottom: 4px; }
.stat-label { font-family: 'Crimson Pro', serif; font-size: 13px; font-weight: 300; color: var(--grey); }

/* ABOUT */
.about { background: var(--dark2); display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; padding: 96px 5vw; }
.about-image-wrap { position: relative; }
.about-img { width: 100%; aspect-ratio: 4/5; object-fit: cover; display: block; }
.about-img-accent { position: absolute; bottom: -20px; right: -20px; width: 55%; aspect-ratio: 1; object-fit: cover; border: 6px solid var(--dark2); }
.about-badge { position: absolute; top: 24px; left: -20px; background: var(--amber); padding: 16px 20px; text-align: center; z-index: 2; }
.about-badge-num { font-family: 'Oswald', sans-serif; font-size: 36px; font-weight: 700; color: var(--dark); line-height: 1; }
.about-badge-text { font-family: 'Crimson Pro', serif; font-size: 11px; color: var(--dark); letter-spacing: 0.1em; line-height: 1.4; }

/* SERVICES */
.services { background: var(--dark); padding: 96px 5vw; }
.services-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 56px; flex-wrap: wrap; gap: 24px; }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(212,137,26,0.15); }
.service-card { background: var(--dark2); padding: 32px 28px; transition: background 0.3s, transform 0.3s; position: relative; overflow: hidden; text-decoration: none; display: block; color: inherit; }
.service-card::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--amber); transition: width 0.3s ease; }
.service-card:hover { background: var(--dark3); transform: translateY(-3px); }
.service-card:hover::after { width: 100%; }
.service-icon { width: 36px; height: 36px; margin-bottom: 18px; color: var(--amber); }
.service-name { font-family: 'Oswald', sans-serif; font-size: 15px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--off-white); margin-bottom: 10px; }
.service-desc { font-family: 'Crimson Pro', serif; font-size: 15px; font-weight: 300; color: var(--grey); line-height: 1.6; }
.service-card-arrow { margin-top: 16px; font-family: 'Oswald', sans-serif; font-size: 10px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--amber); opacity: 0; transition: opacity 0.2s, transform 0.2s; display: flex; align-items: center; gap: 6px; }
.service-card:hover .service-card-arrow { opacity: 1; transform: translateX(4px); }

/* PHOTO STRIP */
.photo-strip { padding: 0; display: flex; height: 360px; overflow: hidden; }
.strip-img { flex: 1; overflow: hidden; position: relative; }
.strip-img img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(20%); transition: transform 0.6s ease, filter 0.6s ease; display: block; }
.strip-img:hover img { transform: scale(1.06); filter: grayscale(0%); }
.strip-img-overlay { position: absolute; inset: 0; background: rgba(20,20,18,0.4); transition: background 0.4s ease; }
.strip-img:hover .strip-img-overlay { background: rgba(20,20,18,0.1); }
.strip-img-label { position: absolute; bottom: 16px; left: 16px; font-family: 'Oswald', sans-serif; font-size: 11px; font-weight: 400; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(242,237,230,0.7); transition: color 0.3s; }
.strip-img:hover .strip-img-label { color: var(--amber); }

/* WHY */
.why { background: var(--dark2); display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; padding: 96px 5vw; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.why-card { padding: 28px 24px; border: 1px solid rgba(212,137,26,0.15); transition: border-color 0.3s, background 0.3s; }
.why-card:hover { border-color: var(--amber); background: rgba(212,137,26,0.04); }
.why-num { font-family: 'Oswald', sans-serif; font-size: 42px; font-weight: 700; color: rgba(212,137,26,0.2); line-height: 1; margin-bottom: 12px; }
.why-title { font-family: 'Oswald', sans-serif; font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--off-white); margin-bottom: 10px; }
.why-text { font-family: 'Crimson Pro', serif; font-size: 15px; font-weight: 300; color: var(--grey); line-height: 1.65; }

/* CONTACT */
.contact { background: var(--dark); padding: 96px 5vw; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-detail { display: flex; gap: 20px; margin-bottom: 36px; align-items: flex-start; }
.contact-icon-wrap { width: 44px; height: 44px; border: 1px solid rgba(212,137,26,0.35); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--amber); }
.contact-label { font-family: 'Oswald', sans-serif; font-size: 10px; font-weight: 400; letter-spacing: 0.3em; text-transform: uppercase; color: var(--grey); margin-bottom: 4px; }
.contact-value { font-family: 'Oswald', sans-serif; font-size: 20px; font-weight: 600; color: var(--off-white); text-decoration: none; transition: color 0.2s; display: block; }
a.contact-value:hover { color: var(--amber); }
.contact-img { width: 100%; aspect-ratio: 16/10; object-fit: cover; display: block; }

/* SERVICE PAGE HERO */
.service-hero { position: relative; height: 60vh; min-height: 420px; display: flex; align-items: flex-end; overflow: hidden; }
.service-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.05); transition: transform 8s ease-out; }
.service-hero-bg.loaded { transform: scale(1); }
.service-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(20,20,18,1) 0%, rgba(20,20,18,0.55) 50%, rgba(20,20,18,0.2) 100%); }
.service-hero-content { position: relative; z-index: 2; padding: 0 5vw 56px; width: 100%; }
.service-hero-breadcrumb { font-family: 'Oswald', sans-serif; font-size: 10px; font-weight: 400; letter-spacing: 0.3em; text-transform: uppercase; color: var(--amber); margin-bottom: 14px; }
.service-hero-breadcrumb a { color: var(--grey); text-decoration: none; transition: color 0.2s; }
.service-hero-breadcrumb a:hover { color: var(--amber); }
.service-hero-title { font-family: 'Oswald', sans-serif; font-size: clamp(42px, 6vw, 76px); font-weight: 700; text-transform: uppercase; color: var(--off-white); line-height: 0.95; letter-spacing: -0.01em; }

/* SERVICE DETAIL */
.service-detail { padding: 80px 5vw; display: grid; grid-template-columns: 1.4fr 1fr; gap: 80px; background: var(--dark); align-items: start; }
.service-detail-body { font-family: 'Crimson Pro', serif; font-size: 19px; font-weight: 300; color: var(--light-grey); line-height: 1.75; margin-bottom: 32px; }
.service-includes-title { font-family: 'Oswald', sans-serif; font-size: 11px; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase; color: var(--amber); margin-bottom: 18px; padding-bottom: 10px; border-bottom: 1px solid rgba(212,137,26,0.25); }
.service-includes-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 36px; }
.service-includes-list li { font-family: 'Crimson Pro', serif; font-size: 17px; font-weight: 400; color: var(--off-white); padding-left: 20px; position: relative; line-height: 1.5; }
.service-includes-list li::before { content: '—'; position: absolute; left: 0; color: var(--amber); font-size: 13px; }
.service-side-panel { position: sticky; top: 84px; display: flex; flex-direction: column; gap: 20px; }
.side-card { background: var(--dark2); padding: 28px 24px; border-top: 2px solid var(--amber); }
.side-card-title { font-family: 'Oswald', sans-serif; font-size: 13px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--off-white); margin-bottom: 14px; }
.side-contact-value { font-family: 'Oswald', sans-serif; font-size: 22px; font-weight: 700; color: var(--amber); text-decoration: none; display: block; margin-bottom: 6px; transition: color 0.2s; }
.side-contact-value:hover { color: var(--amber-light); }
.side-contact-sub { font-family: 'Crimson Pro', serif; font-size: 15px; font-weight: 300; color: var(--grey); line-height: 1.5; }
.services-nav-list { list-style: none; display: flex; flex-direction: column; }
.services-nav-list a { font-family: 'Oswald', sans-serif; font-size: 12px; font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase; color: var(--light-grey); text-decoration: none; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: space-between; transition: color 0.2s, padding-left 0.2s; }
.services-nav-list a:hover { color: var(--amber); padding-left: 6px; }
.services-nav-list a.active { color: var(--amber); }
.services-nav-list .arrow { font-size: 10px; opacity: 0.5; }
.services-nav-list a.active .arrow { opacity: 1; }

/* ANIMATIONS */
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

/* RESPONSIVE */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .about, .why, .contact, .service-detail { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .service-side-panel { position: static; }
  .photo-strip { height: 200px; }
}
@media (max-width: 560px) {
  .services-grid { grid-template-columns: 1fr; }
  .services, .about, .why, .contact, .service-detail { padding: 64px 6vw; }
  .photo-strip { height: 160px; }
}
