/* Luxe Coat — dark editorial / metallic-gold epoxy / glossy sheen */
:root {
  --bg: #0c0a10;
  --bg-2: #110d15;
  --surface: #18121d;
  --line: rgba(255, 255, 255, 0.1);
  --text: #f3ece2;
  --dim: #b6ab9c;
  --faint: #837a6d;
  --gold: #cfa05a;
  --gold-2: #f0cd87;
  --glow: rgba(207, 160, 90, 0.4);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Inter", system-ui, sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); background: var(--bg); color: var(--text); line-height: 1.65; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
h1, h2, h3, .brand { font-family: var(--serif); font-weight: 600; line-height: 1.12; }
a { color: inherit; text-decoration: none; }
.grad { background: linear-gradient(100deg, var(--gold-2), var(--gold) 50%, #fff0d2); background-size: 220% 100%; -webkit-background-clip: text; background-clip: text; color: transparent; font-style: italic; animation: shimmer 6s ease-in-out infinite; }
@keyframes shimmer { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }

.reveal { opacity: 0; }
.reveal.in { animation: rise 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) both; }
@keyframes rise { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .reveal, .grad, .ph::after { animation: none !important; opacity: 1 !important; } html { scroll-behavior: auto; } }

/* ---- Epoxy floor placeholders: glossy METALLIC texture + sheen sweep ---- */
.ph { position: relative; overflow: hidden; display: grid; place-items: center; aspect-ratio: 4/3; border-radius: 4px; border: 1px solid var(--line); color: rgba(255,255,255,0.5); font-size: 0.78rem; letter-spacing: 0.04em;
  background:
    radial-gradient(120% 90% at 25% 15%, rgba(240,205,135,0.28), transparent 55%),
    radial-gradient(100% 90% at 85% 95%, rgba(207,160,90,0.32), transparent 55%),
    conic-gradient(from 210deg at 60% 40%, #16121c, #271d2e, #3a2c1d, #18131f, #2a2130, #16121c);
}
.ph span { position: relative; z-index: 2; text-shadow: 0 1px 8px rgba(0,0,0,0.6); }
.ph span::before { content: "◈  "; color: var(--gold-2); }
.ph::after { content: ""; position: absolute; inset: -20%; background: linear-gradient(115deg, transparent 38%, rgba(255,255,255,0.16) 48%, rgba(255,255,255,0.04) 54%, transparent 62%); transform: translateX(-120%); animation: sheen 7s ease-in-out infinite; }
@keyframes sheen { 0%, 65% { transform: translateX(-120%); } 100% { transform: translateX(120%); } }
.ph.flake { background: #14101a; background-image: radial-gradient(var(--gold) 1.4px, transparent 1.6px), radial-gradient(rgba(255,255,255,0.35) 1px, transparent 1.2px), radial-gradient(rgba(0,0,0,0.5) 1.6px, transparent 1.8px); background-size: 18px 18px, 24px 24px, 14px 14px; background-position: 0 0, 7px 9px, 3px 12px; }

/* buttons */
.btn-ink, .btn-line, .btn-text { display: inline-flex; align-items: center; justify-content: center; font-family: inherit; font-weight: 600; cursor: pointer; transition: transform 0.2s, background 0.2s, color 0.2s, box-shadow 0.2s; }
.btn-ink { background: linear-gradient(135deg, var(--gold-2), var(--gold)); color: #251703; border: 0; border-radius: 3px; padding: 13px 26px; font-size: 0.92rem; box-shadow: 0 10px 30px -10px var(--glow); }
.btn-ink:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -12px var(--glow); }
.btn-line { border: 1px solid var(--gold); color: var(--gold-2); border-radius: 3px; padding: 13px 26px; }
.btn-line:hover { background: rgba(207, 160, 90, 0.12); }
.btn-text { color: var(--gold-2); font-weight: 600; padding: 13px 6px; }
.btn-text:hover { color: var(--text); }
.btn-lg { padding: 16px 32px; font-size: 0.98rem; }

/* Nav */
.nav { position: fixed; inset: 0 0 auto 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 20px clamp(20px, 6vw, 64px); transition: background 0.35s, border-color 0.35s, padding 0.35s; border-bottom: 1px solid transparent; }
.nav.scrolled { background: rgba(12, 10, 16, 0.85); backdrop-filter: blur(16px); border-color: var(--line); padding-top: 14px; padding-bottom: 14px; }
.brand { font-size: 1.5rem; }
.brand .accent { color: var(--gold); font-style: italic; }
.nav-links { display: flex; gap: 30px; font-size: 0.9rem; }
.nav-links a { color: var(--dim); }
.nav-links a:hover { color: var(--text); }
.nav-right { display: flex; align-items: center; gap: 16px; }
.lang { display: inline-flex; border: 1px solid var(--line); border-radius: 999px; overflow: hidden; }
.lang-btn { background: none; border: 0; color: var(--faint); font-family: inherit; font-weight: 700; font-size: 0.7rem; padding: 5px 9px; cursor: pointer; }
.lang-btn.on { background: linear-gradient(135deg, var(--gold-2), var(--gold)); color: #251703; }
.burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: 6px; cursor: pointer; }
.burger span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: transform 0.25s, opacity 0.25s; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu { position: fixed; inset: 0; z-index: 90; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 24px; background: rgba(12, 10, 16, 0.97); backdrop-filter: blur(10px); transform: translateY(-100%); transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1); }
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a { font-family: var(--serif); font-size: 1.7rem; color: var(--text); }
.mobile-menu a.btn-ink { font-size: 1rem; color: #251703; }
body.no-scroll { overflow: hidden; }

/* Hero */
.hero { position: relative; text-align: center; max-width: 900px; margin: 0 auto; padding: clamp(150px, 20vh, 220px) 24px clamp(40px, 6vw, 70px); overflow: visible; }
.hero::before { content: ""; position: absolute; top: 4%; left: 50%; width: 760px; height: 520px; transform: translateX(-50%); background: radial-gradient(circle, var(--glow), transparent 62%); filter: blur(20px); z-index: -1; animation: float 16s ease-in-out infinite; }
@keyframes float { 50% { transform: translateX(-50%) translateY(26px) scale(1.06); } }
.eyebrow { color: var(--gold); text-transform: uppercase; letter-spacing: 0.26em; font-size: 0.72rem; font-weight: 700; font-family: var(--sans); }
.hero h1 { font-size: clamp(2.8rem, 8vw, 5.4rem); margin: 22px 0 22px; letter-spacing: -0.01em; }
.lead { color: var(--dim); font-size: 1.18rem; max-width: 46ch; margin: 0 auto; }
.hero-cta { display: flex; gap: 18px; justify-content: center; align-items: center; margin-top: 34px; flex-wrap: wrap; }

/* Filmstrip of jobs */
.filmstrip { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(240px, 1fr); gap: 6px; overflow-x: auto; padding: 0 6px; scrollbar-width: none; }
.filmstrip::-webkit-scrollbar { display: none; }
.filmstrip .ph { aspect-ratio: 3/4; border-radius: 4px; }

/* Sections */
.section { max-width: 1100px; margin: 0 auto; padding: clamp(64px, 9vw, 110px) clamp(20px, 6vw, 64px); }
.section-cream { background: var(--bg-2); max-width: none; border-block: 1px solid var(--line); }
.section-cream > * { max-width: 1100px; margin-left: auto; margin-right: auto; }
.sec-eyebrow { color: var(--gold); text-transform: uppercase; letter-spacing: 0.2em; font-size: 0.74rem; font-weight: 700; font-family: var(--sans); }
.section-title { font-size: clamp(2rem, 4.5vw, 3rem); margin-top: 12px; max-width: 18ch; }

/* Editorial rows */
.rows { margin-top: 56px; display: flex; flex-direction: column; gap: 64px; }
.row { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.row.reverse { direction: rtl; }
.row.reverse > * { direction: ltr; }
.row-img { aspect-ratio: 5/4; border-radius: 6px; }
.row-no { font-family: var(--serif); font-size: 1.1rem; color: var(--gold); }
.row-txt h3 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin: 6px 0 12px; }
.row-txt p { color: var(--dim); font-size: 1.05rem; max-width: 38ch; }

/* Points */
.points { margin-top: 56px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
.point { border-top: 2px solid var(--gold); padding-top: 18px; }
.point h3 { font-size: 1.3rem; }
.point p { color: var(--dim); font-size: 0.95rem; margin-top: 8px; }

/* Horizontal steps */
.hsteps { margin-top: 56px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.hnum { font-family: var(--serif); font-size: 2.4rem; color: var(--gold-2); }
.hstep h3 { font-size: 1.25rem; margin: 4px 0 8px; }
.hstep p { color: var(--dim); font-size: 0.92rem; }

/* Pull quote */
.pull { text-align: center; max-width: 900px; margin: 0 auto; padding: clamp(70px, 10vw, 120px) 24px; }
.pull blockquote { font-family: var(--serif); font-size: clamp(1.8rem, 4vw, 2.8rem); font-style: italic; line-height: 1.3; }
.pull cite { display: block; margin-top: 24px; color: var(--faint); font-style: normal; letter-spacing: 0.06em; font-size: 0.85rem; }

/* FAQ */
.faq2 { margin-top: 48px; columns: 2; column-gap: 48px; }
.faq2 details { break-inside: avoid; border-bottom: 1px solid var(--line); padding: 18px 0; }
.faq2 summary { cursor: pointer; list-style: none; font-family: var(--serif); font-size: 1.2rem; display: flex; justify-content: space-between; gap: 12px; }
.faq2 summary::after { content: "+"; color: var(--gold); }
.faq2 details[open] summary::after { content: "–"; }
.faq2 details p { color: var(--dim); margin-top: 10px; font-size: 0.95rem; }

/* Book */
.book { position: relative; overflow: hidden; text-align: center; padding: clamp(70px, 10vw, 120px) 24px; background: radial-gradient(700px 340px at 50% 0%, var(--glow), transparent 60%), var(--bg-2); border-top: 1px solid var(--line); }
.book h2 { font-size: clamp(2.2rem, 5vw, 3.2rem); }
.book p { color: var(--dim); margin: 14px auto 18px; }
.phone-big { display: block; color: var(--gold-2); font-family: var(--serif); font-size: 2.2rem; }
.book-actions { display: flex; gap: 14px; justify-content: center; margin-top: 26px; flex-wrap: wrap; }

/* Footer */
.site-footer { padding: clamp(44px, 6vw, 64px) clamp(20px, 6vw, 64px); border-top: 1px solid var(--line); }
.foot-cols { display: grid; grid-template-columns: repeat(3, auto); gap: 44px; margin: 22px 0; }
.foot-cols strong { display: block; font-family: var(--sans); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--faint); margin-bottom: 6px; }
.copyright { color: var(--faint); font-size: 0.82rem; }

/* Responsive */
@media (max-width: 900px) {
  .nav-links, .nav-quote { display: none; }
  .burger { display: flex; }
  .row, .row.reverse { grid-template-columns: 1fr; direction: ltr; gap: 20px; }
  .points, .hsteps { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 560px) {
  .points, .hsteps, .foot-cols { grid-template-columns: 1fr; }
  .faq2 { columns: 1; }
}

/* Real photos fill the metallic frame (sheen ::after stays on top) */
.ph img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; display: block; }
.ph::after { z-index: 3; }
.ph span { z-index: 2; }
