:root {
    color-scheme: dark;
    --bg: #070b0f;
    --bg-soft: #0b1117;
    --surface: #0f161e;
    --surface-2: #121c25;
    --ink: #f3f6f8;
    --muted: #91a0ad;
    --muted-2: #677684;
    --line: rgba(174, 203, 220, .14);
    --line-strong: rgba(174, 203, 220, .25);
    --accent: #05a9db;
    --accent-bright: #37d2ff;
    --accent-dark: #007aa5;
    --max: 1220px;
    --radius: 3px;
    --shadow: 0 30px 80px rgba(0, 0, 0, .32);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background:
        radial-gradient(circle at 88% 6%, rgba(5, 169, 219, .08), transparent 26rem),
        var(--bg);
    color: var(--ink);
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
img { max-width: 100%; display: block; }
button, input, textarea { color: inherit; }
::selection { background: var(--accent); color: #00141c; }
.container { width: min(calc(100% - 44px), var(--max)); margin: 0 auto; }
.narrow { max-width: 800px; }
.skip-link { position: absolute; left: -9999px; top: 8px; z-index: 999; background: var(--ink); color: var(--bg); padding: 8px 12px; }
.skip-link:focus { left: 8px; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(7, 11, 15, .82);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}
.nav-wrap { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: flex; align-items: center; text-decoration: none; min-width: 170px; }
.brand-logo { width: 190px; height: 54px; object-fit: contain; object-position: left center; filter: drop-shadow(0 0 16px rgba(5, 169, 219, .06)); }
.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav > a { position: relative; text-decoration: none; font-size: 13px; font-weight: 650; letter-spacing: .04em; color: #c8d1d8; transition: color .2s ease; }
.main-nav > a:hover { color: var(--ink); }
.main-nav > a.active:not(.button) { color: var(--ink); }
.main-nav > a.active:not(.button)::after { content: ""; position: absolute; left: 0; right: 0; bottom: -11px; height: 1px; background: var(--accent-bright); box-shadow: 0 0 12px rgba(55, 210, 255, .6); }
.menu-toggle { display: none; background: transparent; color: var(--ink); border: 1px solid var(--line-strong); padding: 9px 13px; font: inherit; border-radius: var(--radius); }

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--accent);
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: #001018;
    text-decoration: none;
    padding: 13px 21px;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: .035em;
    cursor: pointer;
    border-radius: var(--radius);
    box-shadow: 0 10px 30px rgba(5, 169, 219, .12);
    transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.button:hover { transform: translateY(-1px); filter: brightness(1.08); box-shadow: 0 15px 34px rgba(5, 169, 219, .2); }
.button-small { padding: 10px 16px; }
.button-light { background: var(--ink); border-color: var(--ink); color: var(--bg); box-shadow: none; }
.text-link { display: inline-flex; gap: 8px; align-items: center; color: var(--ink); font-weight: 750; font-size: 13px; letter-spacing: .03em; text-decoration: none; border-bottom: 1px solid var(--line-strong); padding-bottom: 4px; }
.text-link span { color: var(--accent-bright); }
.text-link:hover { border-color: var(--accent-bright); }

.hero { position: relative; padding: 86px 0 100px; overflow: clip; }
.hero-glow { position: absolute; width: 620px; height: 620px; right: -220px; top: -210px; border-radius: 50%; background: radial-gradient(circle, rgba(0, 171, 225, .13), rgba(0, 171, 225, 0) 67%); pointer-events: none; }
.hero-grid { display: grid; grid-template-columns: 1.04fr .96fr; gap: 78px; align-items: center; }
.hero-copy { position: relative; z-index: 2; }
.hero h1, .page-hero h1 { font-family: Georgia, "Times New Roman", serif; font-weight: 400; line-height: .96; letter-spacing: -.05em; margin: 0; }
.hero h1 { font-size: clamp(58px, 7.7vw, 108px); max-width: 900px; }
.hero h1 span { color: #7e8b96; }
.lead { font-size: clamp(18px, 2vw, 23px); color: #a5b2bc; max-width: 650px; margin: 28px 0 0; }
.lead-small { font-size: 18px; color: #a5b2bc; }
.eyebrow { margin: 0 0 18px; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .2em; color: var(--accent-bright); }
.hero-actions { display: flex; align-items: center; gap: 24px; margin-top: 34px; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 7px 22px; margin-top: 40px; color: var(--muted-2); font-size: 11px; text-transform: uppercase; letter-spacing: .12em; }
.hero-meta span + span::before { content: "/"; color: var(--accent-dark); margin-right: 22px; }

.hero-frame { position: relative; min-height: 630px; border: 1px solid var(--line-strong); background: linear-gradient(155deg, rgba(21, 35, 46, .75), rgba(4, 8, 12, .98)); box-shadow: var(--shadow); }
.hero-frame::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 68% 34%, rgba(0, 169, 219, .16), transparent 23%), linear-gradient(132deg, transparent 0 49.5%, rgba(255,255,255,.035) 49.7% 50.3%, transparent 50.5%); }
.hero-frame::after { content: ""; position: absolute; width: 180px; height: 180px; right: 15%; top: 23%; border: 1px solid rgba(55, 210, 255, .28); border-radius: 50%; box-shadow: inset 0 0 0 26px rgba(5, 169, 219, .025), inset 0 0 0 52px rgba(5, 169, 219, .025); }
.frame-corner { position: absolute; width: 45px; height: 45px; z-index: 2; }
.frame-corner::before, .frame-corner::after { content: ""; position: absolute; background: var(--accent-bright); opacity: .65; }
.frame-corner::before { width: 45px; height: 1px; }
.frame-corner::after { width: 1px; height: 45px; }
.top-left { top: 24px; left: 24px; }
.top-right { top: 24px; right: 24px; transform: rotate(90deg); }
.bottom-left { bottom: 24px; left: 24px; transform: rotate(-90deg); }
.bottom-right { bottom: 24px; right: 24px; transform: rotate(180deg); }
.placeholder-copy { position: absolute; z-index: 3; left: 34px; right: 34px; bottom: 34px; padding: 22px 24px; border: 1px solid var(--line); background: rgba(7, 11, 15, .7); backdrop-filter: blur(10px); }
.placeholder-copy small { display: block; margin-bottom: 7px; color: var(--accent-bright); text-transform: uppercase; font-size: 10px; letter-spacing: .18em; }
.placeholder-copy strong { display: block; font-family: Georgia, serif; font-size: 25px; font-weight: 400; }
.placeholder-copy span { display: block; margin-top: 7px; color: var(--muted); font-size: 12px; line-height: 1.5; }

.brand-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #080d12; }
.brand-strip-inner { min-height: 70px; display: flex; align-items: center; justify-content: space-between; gap: 16px; color: #81909b; text-transform: uppercase; font-size: 10px; letter-spacing: .19em; }
.brand-strip i { width: 4px; height: 4px; border-radius: 50%; background: var(--accent-dark); box-shadow: 0 0 10px rgba(55, 210, 255, .6); }

.section { padding: 104px 0; }
.section-deep { background: #05090d; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-heading { margin-bottom: 48px; max-width: 820px; }
.split-heading { max-width: none; display: grid; grid-template-columns: 1.25fr .75fr; gap: 90px; align-items: end; }
.section-intro { color: var(--muted); margin: 0 0 8px; max-width: 480px; }
.section-heading h2, .split h2, .cta-box h2, .package h2, .prose h2 { font-family: Georgia, "Times New Roman", serif; font-weight: 400; line-height: 1.06; letter-spacing: -.035em; }
.section-heading h2, .split h2, .cta-box h2 { font-size: clamp(37px, 5.2vw, 64px); margin: 0; }

.card-grid.three { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card { position: relative; overflow: hidden; background: linear-gradient(155deg, rgba(18, 28, 37, .84), rgba(10, 15, 21, .94)); border: 1px solid var(--line); padding: 30px; min-height: 360px; display: flex; flex-direction: column; transition: transform .25s ease, border-color .25s ease; }
.service-card::before { content: ""; position: absolute; height: 2px; left: 30px; right: 76%; top: 0; background: var(--accent); transition: right .25s ease; }
.service-card:hover { transform: translateY(-4px); border-color: var(--line-strong); }
.service-card:hover::before { right: 30px; }
.service-card .index { color: var(--muted-2); font-size: 11px; letter-spacing: .12em; }
.card-icon { margin-top: 36px; color: var(--accent-bright); font-size: 32px; line-height: 1; opacity: .85; }
.service-card h3 { font-family: Georgia, serif; font-size: 33px; margin: auto 0 10px; font-weight: 400; letter-spacing: -.02em; }
.service-card p { color: var(--muted); margin: 0; }
.service-card a { display: inline-flex; gap: 8px; align-items: center; margin-top: 22px; color: #dce5eb; font-weight: 750; font-size: 12px; letter-spacing: .04em; text-decoration: none; }
.service-card a span { color: var(--accent-bright); }
.featured-card { background: radial-gradient(circle at 85% 10%, rgba(5,169,219,.13), transparent 14rem), linear-gradient(155deg, #121d25, #0a1016); }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 78px; align-items: start; }
.approach-grid h2 { max-width: 610px; }
.approach-copy { padding-top: 40px; }
.approach-points { margin: 34px 0 34px; border-top: 1px solid var(--line); }
.approach-points > div { display: grid; grid-template-columns: 55px 1fr; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.approach-points strong { color: var(--accent-bright); font-size: 10px; letter-spacing: .14em; }
.approach-points span { color: #c1cbd2; font-size: 13px; }

.portfolio-heading { max-width: none; display: flex; justify-content: space-between; align-items: end; gap: 30px; }
.gallery-preview { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; }
.photo-placeholder { position: relative; min-height: 320px; overflow: hidden; border: 1px solid var(--line); background: linear-gradient(145deg, #101923, #070b0f 70%); display: grid; place-items: center; }
.photo-placeholder:not(.hero-frame)::before { content: ""; position: absolute; width: 260px; height: 260px; border-radius: 50%; background: radial-gradient(circle, rgba(5,169,219,.11), transparent 67%); transform: translate(35%, -12%); }
.photo-placeholder:not(.hero-frame)::after { content: ""; position: absolute; inset: 12px; border: 1px solid rgba(255,255,255,.025); }
.photo-placeholder > span:not(.frame-corner) { position: relative; z-index: 2; background: rgba(6, 10, 14, .78); border: 1px solid var(--line); color: #82909b; padding: 7px 10px; font-size: 9px; text-transform: uppercase; letter-spacing: .16em; }
.photo-placeholder.large { min-height: 630px; }
.photo-placeholder.tall { min-height: 535px; }
.photo-placeholder.wide { grid-column: span 2; }
.photo-placeholder.portrait { min-height: 560px; }

.cta-section { padding-top: 16px; }
.cta-box { position: relative; overflow: hidden; background: linear-gradient(120deg, #0c151d, #071018); border: 1px solid var(--line-strong); padding: 60px; display: flex; align-items: center; justify-content: space-between; gap: 42px; }
.cta-box::after { content: ""; position: absolute; width: 350px; height: 350px; right: 10%; top: -210px; border-radius: 50%; background: radial-gradient(circle, rgba(5,169,219,.2), transparent 65%); pointer-events: none; }
.cta-box p:not(.eyebrow) { color: var(--muted); margin-bottom: 0; max-width: 620px; }
.cta-box .button { position: relative; z-index: 2; white-space: nowrap; }

.page-hero { padding: 92px 0 58px; }
.page-hero h1 { font-size: clamp(50px, 7vw, 90px); }
.page-hero .lead { max-width: 720px; }
.masonry-grid { columns: 3 300px; column-gap: 14px; }
.masonry-grid figure { break-inside: avoid; margin: 0 0 14px; }

.package-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
.package { position: relative; background: linear-gradient(155deg, rgba(18,28,37,.86), rgba(9,14,19,.94)); border: 1px solid var(--line); padding: 34px; }
.package.featured { border-color: rgba(55, 210, 255, .45); box-shadow: inset 0 1px 0 rgba(55,210,255,.1), 0 20px 70px rgba(0,0,0,.2); }
.package.featured::before { content: ""; position: absolute; height: 2px; left: 34px; right: 34px; top: -1px; background: var(--accent-bright); box-shadow: 0 0 15px rgba(55,210,255,.5); }
.package h2 { font-size: 34px; margin: 8px 0; }
.package .price { font-size: 23px; font-weight: 800; color: var(--accent-bright); }
.package ul { padding-left: 19px; margin: 28px 0 32px; color: var(--muted); }
.package li { margin-bottom: 7px; }
.section-muted { background: #05090d; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.about-grid, .contact-grid { display: grid; grid-template-columns: 1fr .76fr; gap: 84px; align-items: start; }
.prose { font-size: 17px; color: #b5c0c8; }
.prose h1 { color: var(--ink); }
.prose h2 { color: var(--ink); font-size: 35px; margin-top: 46px; }
.prose a { color: var(--accent-bright); }
.contact-details { display: flex; flex-direction: column; gap: 5px; margin-top: 30px; color: var(--muted); }
.contact-details a { color: var(--ink); }
.contact-form { background: linear-gradient(155deg, rgba(18,28,37,.9), rgba(8,13,18,.96)); border: 1px solid var(--line); padding: 32px; box-shadow: var(--shadow); }
.contact-form label { display: flex; flex-direction: column; gap: 8px; font-weight: 750; font-size: 12px; letter-spacing: .025em; margin-bottom: 18px; color: #cbd4da; }
.contact-form input, .contact-form textarea { width: 100%; border: 1px solid var(--line-strong); background: #070c11; color: var(--ink); padding: 13px 14px; font: inherit; border-radius: 0; }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: #52616d; }
.contact-form input:focus, .contact-form textarea:focus { outline: 1px solid var(--accent-bright); border-color: var(--accent-bright); box-shadow: 0 0 0 3px rgba(55,210,255,.06); }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.form-note { font-size: 11px; color: var(--muted-2); }
.hp { position: absolute !important; left: -9999px !important; }
.notice { padding: 14px; margin-bottom: 18px; font-size: 13px; border: 1px solid var(--line); }
.notice.success { background: rgba(70, 160, 122, .1); border-color: rgba(70, 160, 122, .3); }
.notice.error { background: rgba(190, 73, 73, .1); border-color: rgba(190, 73, 73, .3); }

.site-footer { border-top: 1px solid var(--line); padding: 52px 0; background: #05080c; }
.footer-grid { display: grid; grid-template-columns: 1.45fr .85fr 1fr; gap: 38px; align-items: start; }
.footer-brand strong { font-family: Georgia, serif; font-size: 20px; font-weight: 400; }
.site-footer p { margin: 4px 0 8px; color: var(--muted); }
.handle { color: var(--accent-bright); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }
.social-links, .footer-meta { display: flex; flex-direction: column; gap: 8px; }
.site-footer a { color: #aeb9c2; text-decoration: none; font-size: 13px; }
.site-footer a:hover { color: var(--ink); }
.footer-meta { color: var(--muted-2); font-size: 12px; }

@media (max-width: 900px) {
    .menu-toggle { display: block; }
    .main-nav { display: none; position: absolute; left: 22px; right: 22px; top: 73px; background: rgba(10,16,22,.98); border: 1px solid var(--line-strong); padding: 20px; flex-direction: column; align-items: stretch; box-shadow: var(--shadow); }
    .main-nav.open { display: flex; }
    .main-nav > a.active:not(.button)::after { display: none; }
    .hero-grid, .split, .about-grid, .contact-grid, .package-grid, .card-grid.three, .split-heading { grid-template-columns: 1fr; }
    .hero { padding-top: 55px; }
    .hero-grid { gap: 54px; }
    .hero-frame, .photo-placeholder.large { min-height: 520px; }
    .split-heading { gap: 18px; }
    .section-intro { max-width: 650px; }
    .gallery-preview { grid-template-columns: 1fr 1fr; }
    .cta-box { flex-direction: column; align-items: flex-start; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
    .container { width: min(calc(100% - 28px), var(--max)); }
    .nav-wrap { min-height: 70px; }
    .brand-logo { width: 155px; height: 46px; }
    .main-nav { top: 65px; left: 14px; right: 14px; }
    .hero { padding: 45px 0 72px; }
    .hero h1 { font-size: clamp(49px, 16vw, 68px); }
    .hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
    .hero-meta { display: grid; gap: 8px; }
    .hero-meta span + span::before { display: none; }
    .hero-frame, .photo-placeholder.large { min-height: 420px; }
    .placeholder-copy { left: 20px; right: 20px; bottom: 20px; padding: 18px; }
    .brand-strip-inner { justify-content: flex-start; overflow: hidden; white-space: nowrap; }
    .brand-strip-inner span:nth-of-type(4), .brand-strip-inner i:nth-of-type(3) { display: none; }
    .section { padding: 74px 0; }
    .gallery-preview, .field-grid { grid-template-columns: 1fr; }
    .photo-placeholder.wide { grid-column: auto; }
    .portfolio-heading { align-items: flex-start; flex-direction: column; }
    .cta-box, .contact-form { padding: 26px; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-brand { grid-column: auto; }
}
