* { box-sizing: border-box; }
:root { --paper: #0e0d0c; --paper-deep: #191715; --ink: #f7f1e8; --muted: #b2a79b; --accent: #d6b85a; --line: rgba(247, 241, 232, .16); --display: "Playfair Display", Georgia, serif; --body: "DM Sans", Arial, sans-serif; font-family: var(--body); color: var(--ink); background: var(--paper); line-height: 1.5; }
html { scroll-behavior: smooth; }
body { margin: 0; min-width: 320px; background: radial-gradient(circle at 82% 0%, #252019 0, transparent 34rem), var(--paper); }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
.hero, .intro, .services, footer { width: calc(100% - 64px); margin: 0 auto; }
.page-main { width: calc(100% - 64px); min-height: calc(100vh - 82px); margin: 0 auto; padding: 90px 0 140px; }
.page-main center { width: min(760px, 100%); padding: 42px 0 0; border-top: 1px solid var(--line); text-align: left; }
.page-main h1 { max-width: none; margin-bottom: 24px; font-size: clamp(4rem, 8vw, 7.4rem); }
.page-main p { max-width: 440px; color: var(--muted); font-size: 1.05rem; }
.hero { position: relative; min-height: min(680px, calc(100vh - 82px)); display: grid; grid-template-columns: minmax(320px, .82fr) minmax(420px, 1.18fr); align-items: center; gap: clamp(40px, 7vw, 120px); padding: 70px 0 95px; }
.hero-content { position: relative; z-index: 1; animation: rise-in .8s ease both; }
.eyebrow { margin: 0 0 24px; color: var(--accent); font-size: .68rem; font-weight: 700; letter-spacing: .24em; text-transform: uppercase; }
h1, h2, h3 { margin-top: 0; font-family: var(--display); font-weight: 600; line-height: .97; letter-spacing: -.045em; }
h1 { max-width: 580px; margin-bottom: 28px; font-size: clamp(4rem, 7vw, 7.4rem); }
h1 em, h2 em, h3 em { color: var(--accent); font-weight: 500; }
.hero-copy { max-width: 405px; margin-bottom: 34px; color: var(--muted); font-size: 1rem; line-height: 1.75; }
.hero-actions { display: flex; align-items: center; gap: 25px; }
.button { display: inline-flex; align-items: center; gap: 22px; padding: 16px 19px; border-radius: 8px; font-size: .73rem; font-weight: 700; letter-spacing: .04em; }
.button-primary { background: var(--accent); color: #18140d; transition: background .2s ease, transform .2s ease, box-shadow .2s ease; }
.button-primary:hover { background: #ead17e; box-shadow: 0 12px 28px rgba(214, 184, 90, .18); transform: translateY(-2px); }
.text-link { color: var(--ink); font-size: .73rem; font-weight: 700; }
.text-link span { margin-left: 8px; color: var(--accent); font-size: 1rem; }
.hero-visual { position: relative; width: 100%; aspect-ratio: 1 / 1; overflow: hidden; border: 1px solid rgba(214, 184, 90, .32); border-radius: 24px; background: #050505; animation: reveal-image 1s .15s ease both; }
.hero-visual::after { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(5, 5, 5, .38)); content: ""; pointer-events: none; }
.hero-visual img { width: 100%; height: 100%; object-fit: contain; object-position: center; }
.image-note { position: absolute; right: 22px; bottom: 20px; z-index: 1; display: flex; align-items: flex-start; gap: 13px; color: #fffaf5; font-size: .68rem; letter-spacing: .08em; line-height: 1.35; text-transform: uppercase; }
.image-note span:first-child { color: var(--accent); font-weight: 700; }
.hero-scroll { position: absolute; bottom: 25px; left: 0; display: flex; align-items: center; gap: 12px; color: var(--muted); font-size: .62rem; letter-spacing: .13em; text-transform: uppercase; }
.scroll-line { display: block; width: 42px; height: 1px; background: var(--accent); }
.intro { display: grid; grid-template-columns: 1fr 1fr; gap: 8vw; padding: 120px 0 100px; border-top: 1px solid var(--line); }
h2 { margin-bottom: 0; font-size: clamp(2.8rem, 5vw, 5.2rem); }
.intro-copy { align-self: end; max-width: 400px; margin-bottom: 5px; color: var(--muted); font-size: 1.05rem; }
.services { display: grid; grid-template-columns: repeat(3, 1fr); overflow: hidden; border: 1px solid var(--line); border-radius: 16px; }
.service-item { position: relative; min-height: 260px; padding: 24px; border-right: 1px solid var(--line); transition: background .25s ease; }
.service-item:last-child { border-right: 0; }
.service-item:hover { background: var(--paper-deep); }
.service-number { color: var(--accent); font-size: .7rem; font-weight: 700; letter-spacing: .1em; }
.service-item h3 { margin: 73px 0 0; font-size: 2.65rem; }
.service-item > a { position: absolute; right: 24px; bottom: 23px; display: grid; place-items: center; width: 40px; height: 40px; border: 1px solid var(--line); border-radius: 50%; font-size: 1.15rem; transition: background .2s ease, color .2s ease; }
.service-item > a:hover { background: var(--accent); color: #fffaf5; }
footer { display: flex; justify-content: space-between; padding: 25px 0; color: var(--muted); font-size: .68rem; letter-spacing: .05em; }
footer span:first-child { color: var(--ink); font-family: var(--display); font-size: 1rem; }
@keyframes rise-in { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
@keyframes reveal-image { from { opacity: 0; clip-path: inset(0 0 0 12%); } to { opacity: 1; clip-path: inset(0); } }
@media (max-width: 900px) { .navbar { width: min(100% - 40px, 1240px); } .nav-links { gap: 16px; } .nav-cta { display: none; } .hero { gap: 35px; } }
@media (max-width: 680px) { .hero, .intro, .services, footer, .page-main { width: min(100% - 36px, 1240px); margin-left: 18px; } .navbar { width: calc(100% - 36px); min-height: 70px; } .nav-links { display: none; } .hero { display: flex; flex-direction: column; align-items: stretch; padding: 54px 0 75px; } h1 { font-size: clamp(3.8rem, 18vw, 6rem); } .hero-visual { min-height: 390px; height: 62vh; } .hero-scroll { bottom: 19px; } .intro { display: block; padding: 80px 0 65px; } .intro-copy { margin-top: 35px; } .services { display: block; } .service-item { min-height: 220px; border-right: 0; border-bottom: 1px solid var(--line); } .service-item:last-child { border-bottom: 0; } .service-item h3 { margin-top: 54px; } .page-main { padding-top: 65px; } footer { flex-wrap: wrap; gap: 12px; } }
