:root {
  --bg: #0b0c0e;
  --bg-soft: #111316;
  --surface: #17191d;
  --line: rgba(255,255,255,.12);
  --text: #f5f3ee;
  --muted: #9a9ca2;
  --accent: #db8b33;
  --accent-bright: #f5a84c;
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--bg); color: var(--text); font-family: "Manrope", sans-serif; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; }
button, input, textarea { font: inherit; }

.concept-bar { height: 30px; display: grid; place-items: center; background: var(--accent); color: #14100a; font-size: 10px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.site-header { height: 86px; width: 100%; padding: 0 max(28px, calc((100vw - var(--max)) / 2)); display: flex; align-items: center; justify-content: space-between; position: absolute; top: 30px; z-index: 20; border-bottom: 1px solid rgba(255,255,255,.16); }
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.7); font-family: "Unbounded", sans-serif; font-size: 13px; letter-spacing: -.08em; }
.brand-copy { display: grid; line-height: 1; gap: 6px; }
.brand-copy b { font-family: "Unbounded", sans-serif; font-size: 14px; text-transform: uppercase; letter-spacing: .02em; }
.brand-copy small { color: var(--muted); font-size: 8px; text-transform: uppercase; letter-spacing: .28em; }
.desktop-nav { display: flex; gap: 34px; font-size: 12px; font-weight: 600; }
.desktop-nav a { color: #c7c7c8; transition: color .2s; }
.desktop-nav a:hover { color: white; }
.header-cta { padding: 12px 0 12px 22px; border-left: 1px solid var(--line); font-size: 12px; font-weight: 700; }
.header-cta span, .service-card a span, .text-link span, .instagram-link span { color: var(--accent-bright); margin-left: 8px; }
.menu-toggle { display: none; width: 42px; height: 42px; border: 1px solid var(--line); background: transparent; padding: 13px 10px; }
.menu-toggle span { display: block; height: 1px; background: white; margin: 5px 0; }

.hero { min-height: 850px; height: 100vh; max-height: 980px; position: relative; overflow: hidden; display: flex; align-items: center; }
.hero-media { position: absolute; inset: 0; background: #0a0b0d url("assets/hero-detailing.webp") center/cover no-repeat; transform: scale(1.015); animation: heroIn 1.3s ease-out both; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(6,7,8,.98) 0%, rgba(6,7,8,.82) 35%, rgba(6,7,8,.2) 69%, rgba(6,7,8,.52) 100%), linear-gradient(0deg, rgba(6,7,8,.75), transparent 48%); }
.hero-content { position: relative; z-index: 2; width: min(var(--max), calc(100% - 56px)); margin: 80px auto 0; }
.eyebrow, .section-kicker { color: var(--accent-bright); font-size: 10px; font-weight: 800; letter-spacing: .22em; text-transform: uppercase; }
.eyebrow { display: flex; align-items: center; gap: 12px; }
.eyebrow span { width: 34px; height: 1px; background: var(--accent); }
.hero h1 { max-width: 760px; margin: 24px 0 22px; font: 600 clamp(54px, 6.5vw, 96px)/.98 "Unbounded", sans-serif; letter-spacing: -.06em; text-transform: uppercase; }
.hero h1 em { color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.72); font-style: normal; }
.hero-content > p { max-width: 500px; color: #c7c8ca; font-size: 16px; line-height: 1.65; }
.hero-actions { display: flex; gap: 12px; margin-top: 36px; }
.button { min-height: 52px; padding: 0 24px; display: inline-flex; justify-content: center; align-items: center; gap: 18px; border: 1px solid var(--line); color: white; cursor: pointer; font-size: 12px; font-weight: 800; letter-spacing: .03em; transition: transform .2s, background .2s; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--accent); border-color: var(--accent); color: #140f09; }
.button-primary:hover { background: var(--accent-bright); }
.button-ghost { background: rgba(15,16,18,.38); backdrop-filter: blur(8px); }
.play { width: 24px; height: 24px; display: grid; place-items: center; border: 1px solid #64666b; border-radius: 50%; font-size: 7px; }
.hero-stats { position: absolute; z-index: 2; bottom: 0; right: max(28px, calc((100vw - var(--max)) / 2)); display: flex; background: rgba(10,11,13,.82); backdrop-filter: blur(12px); border: 1px solid var(--line); border-bottom: 0; }
.hero-stats div { min-width: 154px; padding: 24px 28px; border-right: 1px solid var(--line); }
.hero-stats div:last-child { border-right: 0; }
.hero-stats strong { display: block; font: 600 18px "Unbounded", sans-serif; color: var(--accent-bright); }
.hero-stats span { display: block; margin-top: 6px; color: var(--muted); font-size: 9px; text-transform: uppercase; letter-spacing: .1em; }
.scroll-cue { position: absolute; z-index: 2; bottom: 32px; left: max(28px, calc((100vw - var(--max)) / 2)); color: #9d9fa3; font-size: 9px; letter-spacing: .16em; text-transform: uppercase; display: flex; align-items: center; gap: 14px; }
.scroll-cue i { width: 34px; height: 34px; border: 1px solid var(--line); border-radius: 50%; display: grid; place-items: center; color: white; font-style: normal; }

.section { padding: 120px max(28px, calc((100vw - var(--max)) / 2)); }
.intro { background: #f1efea; color: #111215; }
.intro .section-kicker { color: #a76018; }
.intro-heading, .works-head { margin-top: 28px; display: grid; grid-template-columns: 1.6fr .7fr; gap: 60px; align-items: end; }
.intro-heading h2, .works h2, .process h2, .contact h2 { margin: 0; font: 600 clamp(40px, 5vw, 68px)/1.05 "Unbounded", sans-serif; letter-spacing: -.055em; text-transform: uppercase; }
.intro-heading h2 span, .works h2 span, .process h2 span { color: #a9a7a1; }
.intro-heading p, .works-head > p, .process-copy > p { margin: 0; color: #62646a; font-size: 14px; line-height: 1.75; }
.service-grid { margin-top: 72px; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid #cac7c0; border-bottom: 1px solid #cac7c0; }
.service-card { min-height: 350px; padding: 26px 24px 28px; border-right: 1px solid #cac7c0; display: flex; flex-direction: column; transition: background .25s, color .25s; }
.service-card:last-child { border-right: 0; }
.service-card:hover, .service-card.featured { background: #17191c; color: white; }
.service-num { color: #8a8b8f; font: 500 10px "Unbounded", sans-serif; }
.service-icon { margin-top: 34px; font-size: 34px; color: var(--accent); }
.service-card h3 { margin: 36px 0 14px; font: 600 17px/1.35 "Unbounded", sans-serif; text-transform: uppercase; }
.service-card p { color: #777980; font-size: 12px; line-height: 1.7; }
.service-card:hover p, .service-card.featured p { color: #aeb0b5; }
.service-card a { margin-top: auto; font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }

.works { background: var(--bg); }
.works-head > p { color: var(--muted); }
.work-grid { margin-top: 64px; display: grid; grid-template-columns: 1.45fr .75fr; grid-template-rows: 310px 280px; gap: 14px; }
.work-card { position: relative; overflow: hidden; background: #16181b; }
.work-large { grid-row: 1 / 3; }
.work-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.work-card:hover img { transform: scale(1.035); }
.work-overlay { position: absolute; inset: auto 0 0; padding: 46px 28px 26px; background: linear-gradient(transparent, rgba(5,6,7,.85)); }
.work-overlay span { display: block; color: var(--accent-bright); font-size: 9px; letter-spacing: .15em; text-transform: uppercase; }
.work-overlay b { display: block; margin-top: 8px; font: 500 17px "Unbounded", sans-serif; text-transform: uppercase; }
.work-quote { background: var(--accent); color: #18110a; padding: 24px 28px; display: flex; flex-direction: column; }
.quote-mark { font: 700 46px Georgia, serif; line-height: 1; }
.work-quote p { margin: 6px 0; font: 600 15px/1.5 "Unbounded", sans-serif; }
.work-quote div { margin-top: auto; display: flex; gap: 12px; align-items: center; font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }
.work-quote i { width: 24px; height: 1px; background: #18110a; }

.process { background: #eeece7; color: #111215; }
.process .section-kicker { color: #a76018; }
.process-layout { margin-top: 30px; display: grid; grid-template-columns: .9fr 1.1fr; gap: 100px; }
.process-copy { position: sticky; top: 40px; align-self: start; }
.process-copy > p { margin-top: 28px; max-width: 440px; }
.text-link { display: inline-block; margin-top: 32px; padding-bottom: 8px; border-bottom: 1px solid #aaa79f; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.steps { list-style: none; margin: 0; padding: 0; border-top: 1px solid #c8c5be; }
.steps li { min-height: 142px; padding: 26px 8px; display: grid; grid-template-columns: 74px 1fr; border-bottom: 1px solid #c8c5be; }
.steps > li > span { color: #a76018; font: 600 10px "Unbounded", sans-serif; }
.steps h3 { margin: 0 0 12px; font: 600 18px "Unbounded", sans-serif; text-transform: uppercase; }
.steps p { margin: 0; color: #73757a; font-size: 12px; line-height: 1.65; }

.contact { position: relative; overflow: hidden; display: grid; grid-template-columns: 1fr .72fr; gap: 100px; background: #111316; }
.contact::before { content: "RG"; position: absolute; left: -4vw; bottom: -6vw; color: rgba(255,255,255,.018); font: 700 32vw/1 "Unbounded", sans-serif; }
.contact-glow { position: absolute; width: 420px; height: 420px; right: 20%; top: -260px; background: var(--accent); filter: blur(160px); opacity: .12; }
.contact-copy, .contact-form { position: relative; z-index: 1; }
.section-kicker.light { color: var(--accent-bright); }
.contact h2 { margin-top: 28px; }
.contact h2 span { color: var(--accent-bright); }
.contact-copy > p { max-width: 500px; color: var(--muted); line-height: 1.7; }
.instagram-link { display: inline-block; margin-top: 26px; font-size: 12px; font-weight: 700; }
.contact-form { padding: 30px; border: 1px solid var(--line); background: rgba(255,255,255,.025); }
.contact-form label { display: block; margin-bottom: 20px; color: #999ba0; font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }
.contact-form input, .contact-form textarea { width: 100%; margin-top: 8px; padding: 12px 0; border: 0; border-bottom: 1px solid #3a3c40; outline: 0; resize: vertical; background: transparent; color: white; font-size: 13px; text-transform: none; letter-spacing: 0; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--accent); }
.contact-form .button { width: 100%; border: 0; }
.contact-form small { display: block; margin-top: 12px; color: #67696e; font-size: 9px; text-align: center; }

footer { min-height: 120px; padding: 30px max(28px, calc((100vw - var(--max)) / 2)); display: flex; align-items: center; justify-content: space-between; gap: 24px; border-top: 1px solid var(--line); color: #77797e; font-size: 10px; }
.footer-brand { color: white; }
footer p { text-align: center; }
footer > a:last-child { color: #b6b7ba; }
.toast { position: fixed; z-index: 50; right: 24px; bottom: 24px; width: min(340px, calc(100% - 48px)); padding: 18px 20px; background: #f1efea; color: #151618; box-shadow: 0 18px 60px rgba(0,0,0,.4); display: grid; gap: 4px; transform: translateY(140%); transition: transform .35s ease; }
.toast.show { transform: translateY(0); }
.toast b { font-size: 12px; }
.toast span { color: #6c6e72; font-size: 10px; }

@keyframes heroIn { from { transform: scale(1.08); opacity: .2; } to { transform: scale(1.015); opacity: 1; } }

@media (max-width: 920px) {
  .desktop-nav, .header-cta { display: none; }
  .menu-toggle { display: block; }
  .site-header.open .desktop-nav { display: flex; position: absolute; top: 86px; left: 0; right: 0; padding: 26px 28px; flex-direction: column; gap: 22px; background: #0c0d0f; border-bottom: 1px solid var(--line); }
  .hero { min-height: 780px; }
  .hero-stats div { min-width: 130px; padding: 20px; }
  .intro-heading, .works-head, .process-layout, .contact { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card:nth-child(2) { border-right: 0; }
  .service-card:nth-child(-n+2) { border-bottom: 1px solid #cac7c0; }
  .process-copy { position: static; }
  .contact { gap: 54px; }
}

@media (max-width: 620px) {
  .concept-bar { font-size: 8px; letter-spacing: .1em; }
  .site-header { height: 74px; padding-inline: 18px; }
  .brand-mark { width: 36px; height: 36px; }
  .brand-copy b { font-size: 11px; }
  .hero { height: auto; min-height: 760px; align-items: flex-start; padding-top: 170px; }
  .hero-media { background-position: 62% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(5,6,7,.96), rgba(5,6,7,.36)), linear-gradient(0deg, rgba(5,6,7,.93), transparent 66%); }
  .hero-content { width: calc(100% - 36px); margin: 0 auto; }
  .hero h1 { font-size: clamp(42px, 13vw, 60px); }
  .hero-content > p { font-size: 13px; max-width: 90%; }
  .hero-actions { flex-direction: column; align-items: stretch; max-width: 310px; }
  .hero-stats { left: 18px; right: 18px; bottom: 22px; }
  .hero-stats div { flex: 1; min-width: 0; padding: 15px 12px; }
  .hero-stats div:last-child { display: none; }
  .scroll-cue { display: none; }
  .section { padding: 82px 18px; }
  .intro-heading, .works-head { gap: 24px; }
  .intro-heading h2, .works h2, .process h2, .contact h2 { font-size: 38px; }
  .service-grid { grid-template-columns: 1fr; margin-top: 48px; }
  .service-card { min-height: 310px; border-right: 0; border-bottom: 1px solid #cac7c0; }
  .work-grid { grid-template-columns: 1fr; grid-template-rows: 420px 300px auto; }
  .work-large { grid-row: auto; }
  .work-quote { min-height: 250px; }
  .process-layout { gap: 50px; }
  .steps li { grid-template-columns: 50px 1fr; }
  .contact { gap: 42px; }
  .contact-form { padding: 24px 18px; }
  footer { flex-direction: column; text-align: center; padding-block: 40px; }
}

@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { animation: none !important; transition: none !important; } }
