:root {
  --black: #0b0d0e;
  --black-soft: #16191b;
  --yellow: #ffc700;
  --yellow-dark: #e5ad00;
  --paper: #f5f4ef;
  --white: #ffffff;
  --ink: #151719;
  --muted: #65686c;
  --line: #deded9;
  --container: 1200px;
  --radius: 22px;
}

* { box-sizing: border-box; }
html { max-width: 100%; overflow-x: clip; scroll-behavior: smooth; scroll-padding-top: 92px; }
body { max-width: 100%; margin: 0; overflow-x: clip; color: var(--ink); background: var(--paper); font-family: Inter, Arial, sans-serif; line-height: 1.55; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 96px 0; }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { margin-bottom: 22px; color: var(--black); font-family: "Archivo Black", Impact, sans-serif; font-weight: 400; line-height: .98; letter-spacing: -.045em; }
h1 { max-width: 700px; font-size: clamp(3.4rem, 7.2vw, 7rem); }
h2 { font-size: clamp(2.5rem, 5vw, 4.8rem); }
h3 { margin-bottom: 10px; font-size: 1.08rem; line-height: 1.25; }
p { color: var(--muted); }
.skip-link { position: fixed; z-index: 1000; top: -80px; left: 12px; padding: 10px 14px; color: white; background: var(--black); border-radius: 8px; }
.skip-link:focus { top: 12px; }
.eyebrow { margin-bottom: 17px; color: var(--black); font-size: .72rem; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; }
.button { display: inline-flex; min-height: 54px; align-items: center; justify-content: center; gap: 10px; padding: 14px 24px; border: 2px solid var(--yellow); border-radius: 999px; color: var(--black); background: var(--yellow); box-shadow: 0 12px 24px rgba(199,151,0,.18); font-weight: 800; text-decoration: none; transition: transform .2s ease, background .2s ease, box-shadow .2s ease; }
.button:hover { transform: translateY(-3px); background: #ffd32a; box-shadow: 0 17px 32px rgba(199,151,0,.26); }
.button:focus-visible, a:focus-visible, button:focus-visible { outline: 3px solid rgba(255,199,0,.55); outline-offset: 3px; }
.button svg { width: 23px; fill: currentColor; }
.button-small { min-height: 46px; padding: 9px 19px; font-size: .9rem; }
.button-large { min-width: 250px; min-height: 60px; font-size: 1.03rem; }

.topbar { display: flex; height: 34px; align-items: center; justify-content: center; gap: 34px; padding: 0 28px; color: white; background: var(--black); font-size: .78rem; }
.topbar span { width: min(180px, 20vw); height: 1px; background: #777; }
.topbar em { color: var(--yellow); font-style: normal; }
.site-header { position: sticky; z-index: 100; top: 0; border-bottom: 1px solid transparent; background: rgba(255,255,255,.93); backdrop-filter: blur(12px); transition: box-shadow .2s ease, border-color .2s ease; }
.site-header.scrolled { border-color: var(--line); box-shadow: 0 10px 30px rgba(0,0,0,.07); }
.header-inner { display: flex; min-height: 84px; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.brand img { width: 58px; height: 58px; border-radius: 50%; object-fit: cover; }
.brand > span { display: flex; flex-direction: column; line-height: .85; }
.brand strong { font-family: "Archivo Black", Impact, sans-serif; font-size: 1.45rem; letter-spacing: -.06em; }
.brand small { margin-top: 7px; color: var(--yellow-dark); font-size: .7rem; letter-spacing: .28em; text-align: center; }
.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav > a:not(.button) { position: relative; font-size: .91rem; font-weight: 650; text-decoration: none; }
.main-nav > a:not(.button)::after { position: absolute; right: 0; bottom: -9px; left: 0; height: 3px; background: var(--yellow); content: ""; transform: scaleX(0); transition: transform .2s ease; }
.main-nav > a:not(.button):hover::after { transform: scaleX(1); }
.menu-toggle { display: none; width: 48px; height: 48px; padding: 12px; border: 0; border-radius: 50%; background: #eee; }
.menu-toggle span { display: block; height: 2px; margin: 5px 0; background: var(--black); transition: transform .2s ease, opacity .2s ease; }

.hero { position: relative; overflow: hidden; padding: 75px 0 0; background: var(--white); }
.hero::before { position: absolute; inset: 0; background-image: radial-gradient(#c9c9c4 1px, transparent 1px); background-size: 16px 16px; content: ""; opacity: .26; mask-image: linear-gradient(90deg, black, transparent 35%); pointer-events: none; }
.hero-grid { position: relative; display: grid; min-height: 620px; grid-template-columns: .92fr 1.08fr; align-items: center; gap: clamp(42px, 6vw, 90px); }
.hero-grid > *, .section-heading > *, .portfolio-heading > *, .about-grid > *, .contact-grid > * { min-width: 0; }
.hero h1 mark { color: inherit; background: none; }
.hero h1 mark::after { color: var(--yellow); content: "•"; }
.hero-text { max-width: 620px; margin-bottom: 31px; font-size: clamp(1.05rem, 1.6vw, 1.28rem); }
.hero-actions { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.secondary-link { display: inline-flex; align-items: center; gap: 9px; font-weight: 750; text-decoration: none; }
.secondary-link span { font-size: 1.25rem; transition: transform .2s ease; }
.secondary-link:hover span { transform: translate(3px,-3px); }
.hero-art { position: relative; min-height: 570px; }
.hero-photo { position: absolute; overflow: hidden; border: 7px solid white; border-radius: var(--radius); background: #ddd; box-shadow: 0 25px 55px rgba(0,0,0,.18); }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.photo-main { z-index: 2; inset: 18px 8% 28px 27%; transform: rotate(2deg); }
.photo-top { z-index: 1; top: 0; right: 0; width: 35%; height: 45%; transform: rotate(5deg); }
.photo-bottom { z-index: 3; bottom: 5px; left: 0; width: 40%; height: 46%; transform: rotate(-4deg); }
.no-minimum { position: absolute; z-index: 4; top: 42px; left: 5%; display: flex; width: 116px; aspect-ratio: 1; align-items: center; justify-content: center; border-radius: 50%; color: var(--black); background: var(--yellow); font-family: "Archivo Black", Impact, sans-serif; font-size: 1rem; line-height: 1.02; text-align: center; text-transform: uppercase; transform: rotate(-8deg); }
.shape { position: absolute; z-index: 0; display: block; background: var(--yellow); }
.shape-a { top: 10%; left: 10%; width: 4px; height: 90px; transform: rotate(38deg); }
.shape-b { right: 4%; bottom: 8%; width: 90px; height: 4px; transform: rotate(-18deg); }
.proof-strip { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 55px; border-top: 1px solid var(--line); }
.proof-strip div { display: flex; min-height: 105px; align-items: center; gap: 15px; padding: 20px; }
.proof-strip div + div { border-left: 1px solid var(--line); }
.proof-strip span { display: grid; width: 38px; height: 38px; place-items: center; border-radius: 50%; color: var(--black); background: var(--yellow); font-size: .72rem; font-weight: 800; }

.section-heading, .portfolio-heading { display: grid; grid-template-columns: 1.3fr .7fr; align-items: end; gap: 60px; margin-bottom: 45px; }
.section-heading h2, .section-heading p, .portfolio-heading h2, .portfolio-heading p { margin-bottom: 0; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.service-card { min-height: 235px; padding: 30px; border: 1px solid var(--line); border-radius: 16px; background: var(--white); transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease; }
.service-card:hover { transform: translateY(-6px); border-color: var(--yellow); box-shadow: 0 18px 40px rgba(0,0,0,.07); }
.service-icon { display: grid; width: 52px; height: 52px; margin-bottom: 28px; place-items: center; border-radius: 14px; color: var(--black); background: var(--yellow); font-size: 1.5rem; }
.service-card p { margin-bottom: 0; font-size: .91rem; }

.portfolio { color: white; background: var(--black); }
.portfolio h2, .portfolio .eyebrow { color: white; }
.portfolio .eyebrow::before, .contact .eyebrow::before { display: inline-block; width: 30px; height: 3px; margin-right: 10px; vertical-align: middle; background: var(--yellow); content: ""; }
.portfolio-heading > p { color: #aaa; }
.portfolio-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 430px; gap: 12px; }
.project { position: relative; overflow: hidden; margin: 0; border-radius: 14px; background: var(--black-soft); }
.project img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease, filter .45s ease; }
.project::after { position: absolute; inset: 40% 0 0; background: linear-gradient(transparent, rgba(0,0,0,.9)); content: ""; }
.project figcaption { position: absolute; z-index: 2; right: 20px; bottom: 20px; left: 20px; display: flex; align-items: end; justify-content: space-between; gap: 14px; }
.project figcaption strong { max-width: 70%; }
.project figcaption span { color: var(--yellow); font-size: .72rem; font-weight: 800; text-transform: uppercase; }
.project:hover img { transform: scale(1.045); filter: contrast(1.08); }
.instagram-link { display: flex; width: max-content; margin: 35px auto 0; align-items: center; gap: 10px; color: white; font-weight: 700; text-decoration: none; }
.instagram-link span { color: var(--yellow); }

.about { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(55px, 8vw, 110px); }
.about-photo { position: relative; }
.about-photo::before { position: absolute; z-index: 0; top: -22px; left: -22px; width: 55%; height: 58%; background: var(--yellow); content: ""; }
.about-photo img { position: relative; z-index: 1; width: 100%; aspect-ratio: 1 / 1.02; object-fit: cover; box-shadow: 0 26px 55px rgba(0,0,0,.14); }
.about-photo > span { position: absolute; z-index: 2; right: -18px; bottom: 24px; padding: 16px 20px; color: white; background: var(--black); font-size: .84rem; text-transform: uppercase; transform: rotate(-2deg); }
.about-photo > span strong { color: var(--yellow); }
.about-copy p:not(.eyebrow) { max-width: 570px; }
.about-points { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 33px; padding-top: 28px; border-top: 1px solid var(--line); }
.about-points div { display: flex; flex-direction: column; }
.about-points strong { margin-bottom: 5px; }
.about-points span { color: var(--muted); font-size: .84rem; }

.contact { padding: 84px 0; color: white; background: var(--black); }
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: 80px; }
.contact h2 { max-width: 650px; color: white; }
.contact-copy > p:not(.eyebrow) { max-width: 580px; color: #aaa; }
.contact-copy .button { margin-top: 15px; }
.contact-details { display: grid; gap: 26px; padding: 35px; border-left: 1px solid #444; }
.contact-details div { display: grid; grid-template-columns: 90px 1fr; gap: 20px; }
.contact-details span { color: var(--yellow); font-size: .7rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.contact-details strong, .contact-details a { color: white; font-size: .94rem; text-decoration: none; }
.site-footer { padding: 30px 0; border-top: 1px solid #ddd; background: white; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 25px; }
.footer-inner .brand img { width: 44px; height: 44px; }
.footer-inner .brand strong { font-size: 1.1rem; }
.footer-inner p { margin: 0; font-size: .77rem; }
.floating-whatsapp { position: fixed; z-index: 90; right: 20px; bottom: 20px; display: none; width: 58px; height: 58px; align-items: center; justify-content: center; border-radius: 50%; color: var(--black); background: var(--yellow); box-shadow: 0 15px 32px rgba(0,0,0,.25); }
.floating-whatsapp svg { width: 29px; fill: currentColor; }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 930px) {
  .section { padding: 78px 0; }
  .menu-toggle { display: block; }
  .main-nav { position: absolute; top: 100%; right: 0; left: 0; display: grid; gap: 0; padding: 16px 20px 28px; border-bottom: 1px solid var(--line); background: white; box-shadow: 0 24px 40px rgba(0,0,0,.12); opacity: 0; pointer-events: none; transform: translateY(-12px); transition: opacity .2s ease, transform .2s ease; }
  .main-nav.open { opacity: 1; pointer-events: auto; transform: none; }
  .main-nav > a:not(.button) { padding: 15px 4px; border-bottom: 1px solid var(--line); }
  .main-nav .button { margin-top: 18px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .hero-copy h1, .hero-text { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .hero-art { width: min(720px, 100%); margin-inline: auto; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .contact-details { border-top: 1px solid #444; border-left: 0; }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 62px 0; }
  .topbar { gap: 10px; padding-inline: 14px; font-size: .64rem; white-space: nowrap; }
  .topbar span { width: 34px; flex: 0 0 34px; }
  .topbar strong { overflow: hidden; text-overflow: ellipsis; }
  .header-inner { min-height: 74px; }
  .brand img { width: 48px; height: 48px; }
  .brand strong { font-size: 1.05rem; }
  h1 { max-width: 100%; font-size: clamp(2.55rem, 11.8vw, 3.25rem); overflow-wrap: normal; }
  h2 { font-size: clamp(2.35rem, 11vw, 3.3rem); }
  .hero { padding-top: 42px; }
  .hero-grid { min-height: auto; }
  .hero-copy { width: 100%; }
  .hero-copy .eyebrow { max-width: 290px; margin-right: auto; margin-left: auto; font-size: .61rem; letter-spacing: .13em; line-height: 1.6; }
  .hero h1 mark { display: block; }
  .hero-text { max-width: 100%; margin-bottom: 26px; font-size: .97rem; line-height: 1.55; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; padding-inline: 16px; font-size: .9rem; }
  .hero-actions .secondary-link { align-self: center; }
  .hero-art { width: 100%; min-height: 365px; margin-top: 4px; }
  .hero-photo { border-width: 5px; border-radius: 17px; }
  .no-minimum { top: 28px; left: 1%; width: 78px; font-size: .65rem; }
  .photo-main { inset: 28px 3% 12px 22%; }
  .photo-top { top: 7px; right: 1%; width: 36%; height: 36%; }
  .photo-bottom { bottom: 4px; left: 1%; width: 39%; height: 39%; }
  .shape { display: none; }
  .proof-strip { grid-template-columns: 1fr; margin-top: 35px; }
  .proof-strip div { min-height: 68px; padding: 12px 5px; }
  .proof-strip div + div { border-top: 1px solid var(--line); border-left: 0; }
  .section-heading, .portfolio-heading { grid-template-columns: 1fr; gap: 14px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 0; }
  .portfolio-grid { grid-template-columns: 1fr; grid-auto-rows: 390px; }
  .project figcaption { right: 12px; bottom: 13px; left: 12px; display: block; }
  .project figcaption strong { display: block; max-width: none; font-size: .8rem; }
  .project figcaption span { font-size: .61rem; }
  .about-photo { width: 100%; }
  .about-photo::before { top: -12px; left: -12px; }
  .about-photo > span { right: 10px; bottom: 14px; }
  .about-points { grid-template-columns: 1fr; }
  .contact { padding: 62px 0; }
  .contact-copy .button { width: 100%; }
  .contact-details { padding: 30px 0 0; }
  .contact-details div { grid-template-columns: 75px 1fr; }
  .footer-inner { align-items: flex-start; flex-direction: column; }
  .floating-whatsapp { display: flex; }
}

@media (max-width: 370px) {
  .container { width: min(calc(100% - 24px), var(--container)); }
  h1 { font-size: 2.42rem; }
  .hero-copy .eyebrow { max-width: 260px; font-size: .57rem; }
  .brand img { width: 44px; height: 44px; }
  .brand strong { font-size: .98rem; }
  .button { font-size: .86rem; }
  .hero-art { min-height: 330px; }
  .portfolio-grid { grid-auto-rows: 350px; }
  .contact-details div { grid-template-columns: 68px 1fr; gap: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
