:root {
    --ink: #08152f;
    --muted: #60708f;
    --paper: #f5f9ff;
    --white: #ffffff;
    --blue: #2864e8;
    --blue-light: #09b9db;
    --gradient: linear-gradient(135deg, #2f66e9 0%, #08b8d7 100%);
    --line: rgba(37, 91, 181, 0.14);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html { scroll-behavior: smooth; }

body {
    min-height: 100vh;
    color: var(--ink);
    background: radial-gradient(circle at 78% 12%, rgba(22, 185, 218, .13), transparent 29%), radial-gradient(circle at 8% 82%, rgba(47, 102, 233, .10), transparent 27%), var(--paper);
    font-family: "DM Sans", Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

.site-header {
    width: 100%;
    padding: 0 5vw;
    background: rgba(245, 249, 255, 0.86);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(14px);
    position: relative;
    z-index: 10;
}

.site-header.sticky-header {
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    max-width: 1400px;
    min-height: 88px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 36px;
}

.logo { display: flex; align-items: center; }
.logo img { width: 64px; height: 64px; display: block; object-fit: contain; }

.logo-mark {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    color: var(--white);
    background: var(--ink);
    border-radius: 50%;
    font-size: 13px;
    letter-spacing: -0.5px;
}

.logo-text { font-size: 16px; }

.nav-links { display: flex; align-items: center; gap: 34px; list-style: none; }
.nav-links a { color: var(--muted); font-size: 14px; font-weight: 600; transition: color .25s ease; }
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-links a.active::after { content: ""; display: block; width: 5px; height: 5px; margin: 5px auto -10px; background: var(--blue); border-radius: 50%; }

.nav-cta {
    padding: 13px 19px;
    color: var(--white);
    background: var(--gradient);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    transition: transform .25s ease, background .25s ease;
}

.nav-cta:hover { box-shadow: 0 10px 24px rgba(40, 100, 232, .25); transform: translateY(-2px); }

.mobile-menu { display: none; position: relative; }
.mobile-menu summary { width: 46px; height: 46px; display: grid; align-content: center; gap: 5px; padding: 0 12px; background: var(--white); border: 1px solid var(--line); border-radius: 50%; cursor: pointer; list-style: none; }
.mobile-menu summary::-webkit-details-marker { display: none; }
.mobile-menu summary span { width: 100%; height: 2px; display: block; background: var(--ink); border-radius: 2px; transition: transform .25s ease, opacity .25s ease; }
.mobile-menu[open] summary span:first-child { transform: translateY(7px) rotate(45deg); }
.mobile-menu[open] summary span:nth-child(2) { opacity: 0; }
.mobile-menu[open] summary span:last-child { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu-panel { width: min(320px, calc(100vw - 40px)); position: absolute; top: 58px; right: 0; padding: 12px; display: flex; flex-direction: column; gap: 4px; background: rgba(255,255,255,.97); border: 1px solid var(--line); border-radius: 20px; box-shadow: 0 20px 50px rgba(8,21,47,.14); backdrop-filter: blur(16px); }
.mobile-menu-panel a { padding: 13px 15px; color: var(--muted); border-radius: 12px; font-size: 15px; font-weight: 700; }
.mobile-menu-panel a:hover, .mobile-menu-panel a.active { color: var(--blue); background: #eff5ff; }
.mobile-menu-panel .mobile-contact { margin-top: 5px; color: var(--white); background: var(--gradient); text-align: center; }

/* Consistent wording for the desktop and responsive navigation. */
.site-header a[href*="realisations"] { font-size: 0; }
.site-header .nav-links a[href*="realisations"]::after,
.site-header .nav-links a[href*="realisations"].active::after {
    content: "Mes Projets";
    display: inline;
    width: auto;
    height: auto;
    margin: 0;
    background: none;
    border-radius: 0;
    font-size: 14px;
}
.site-header .mobile-menu-panel a[href*="realisations"]::after {
    content: "Mes Projets";
    font-size: 15px;
}

.hero {
    max-width: 1400px;
    min-height: calc(100vh - 150px);
    margin: auto;
    padding: 64px 5vw 42px;
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    align-items: center;
    gap: clamp(45px, 7vw, 120px);
    overflow: hidden;
}

.hero-content { position: relative; z-index: 2; animation: reveal .8s ease both; }

.eyebrow {
    margin-bottom: 26px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.eyebrow span { width: 9px; height: 9px; background: #24aa68; border-radius: 50%; box-shadow: 0 0 0 5px rgba(36,170,104,.12); }

h1 {
    max-width: 770px;
    font-family: "Manrope", sans-serif;
    font-size: clamp(48px, 6vw, 88px);
    line-height: .98;
    letter-spacing: -4.5px;
}

h1 em { color: var(--blue); background: var(--gradient); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; font-style: normal; }

.intro {
    max-width: 640px;
    margin: 30px 0 34px;
    color: var(--muted);
    font-size: clamp(16px, 1.3vw, 19px);
    line-height: 1.75;
}

.intro strong { color: var(--ink); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; }
.hero-socials { margin-top: 24px; display: flex; align-items: center; gap: 11px; }
.hero-socials a { width: 44px; height: 44px; display: grid; place-items: center; color: var(--muted); background: rgba(255,255,255,.72); border: 1px solid var(--line); border-radius: 50%; transition: color .25s ease, background .25s ease, border-color .25s ease, transform .25s ease; }
.hero-socials a:hover { color: var(--white); background: var(--gradient); border-color: transparent; transform: translateY(-4px); }
.hero-socials svg { width: 19px; height: 19px; display: block; fill: currentColor; }

.button {
    min-height: 54px;
    padding: 0 23px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    border: 1px solid var(--ink);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.button:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(17,17,20,.12); }
.button-primary { color: var(--white); background: var(--gradient); border-color: transparent; }
.button-primary:hover { box-shadow: 0 14px 32px rgba(40, 100, 232, .28); }
.button-secondary { background: transparent; }
.button-secondary:hover { color: var(--white); background: var(--ink); }

.hero-visual { min-height: 630px; position: relative; display: grid; place-items: center; animation: reveal .8s .15s ease both; }

.image-frame {
    width: min(100%, 510px);
    height: 610px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg, #dce8ff, #c5f5fb);
    border-radius: 260px 260px 24px 24px;
    box-shadow: 0 35px 70px rgba(24, 73, 158, .20);
}

.image-frame::after { content: ""; position: absolute; inset: 0; border: 1px solid rgba(255,255,255,.4); border-radius: inherit; pointer-events: none; }
.image-frame img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: 50% 35%; transition: transform .7s ease; }
.image-frame:hover img { transform: scale(1.025); }

.image-label {
    position: absolute;
    right: 18px;
    bottom: 18px;
    padding: 13px 18px;
    display: flex;
    flex-direction: column;
    color: var(--ink);
    background: rgba(255,255,255,.9);
    border-radius: 14px;
    backdrop-filter: blur(10px);
}

.image-label span { color: var(--muted); font-size: 10px; text-transform: uppercase; letter-spacing: 1px; }
.image-label strong { margin-top: 2px; font-size: 15px; }

.decorative-text {
    position: absolute;
    right: -22px;
    top: 50%;
    color: transparent;
    -webkit-text-stroke: 1px rgba(17,17,20,.14);
    font-family: "Manrope", sans-serif;
    font-size: 74px;
    font-weight: 800;
    letter-spacing: 8px;
    writing-mode: vertical-rl;
    transform: translateY(-50%);
    z-index: -1;
}

.spark { position: absolute; color: var(--blue); font-size: 34px; }
.spark-one { left: 0; top: 12%; }
.spark-two { right: 4%; bottom: 8%; color: var(--ink); font-size: 20px; }

.site-footer {
    width: min(1400px, calc(100% - 40px));
    margin: 0 auto;
    padding: clamp(18px, 3vw, 28px) 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--muted);
    border-top: 1px solid var(--line);
    font-size: clamp(10px, 1vw, 11px);
    line-height: 1.4;
    font-weight: 600;
    letter-spacing: clamp(.5px, .15vw, 1px);
    text-transform: uppercase;
}
.site-footer p { margin: 0; white-space: nowrap; }

@keyframes reveal { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 980px) {
    .nav-links { display: none; }
    .mobile-menu { display: block; }
    .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 55px; gap: 58px; }
    .hero-content { text-align: center; }
    .eyebrow, .hero-actions, .hero-socials { justify-content: center; }
    .intro { margin-left: auto; margin-right: auto; }
    .hero-visual { width: min(100%, 620px); min-height: auto; margin-inline: auto; }
    .image-frame { width: min(100%, 520px); height: min(660px, 105vw); }
    .decorative-text { right: 0; }
}

@media (max-width: 760px) {
    .nav-cta { display: none; }
    .navbar { min-height: 78px; }
    .hero { padding-top: 40px; }
    h1 { font-size: clamp(44px, 10vw, 66px); line-height: 1.02; letter-spacing: -3px; }
    .intro { max-width: 560px; }
}

@media (max-width: 600px) {
    .site-header { padding: 0 20px; }
    .navbar { min-height: 72px; }
    .logo img { width: 54px; height: 54px; }
    .hero { padding: 42px 20px 30px; gap: 50px; }
    h1 { font-size: clamp(43px, 13vw, 64px); letter-spacing: -3px; }
    .intro { line-height: 1.65; }
    .hero-actions .button { width: 100%; }
    .hero-socials { margin-top: 20px; gap: 9px; }
    .hero-socials a { width: 42px; height: 42px; }
    .image-frame { height: 118vw; max-height: 570px; border-radius: 180px 180px 20px 20px; }
    .image-label { right: 12px; bottom: 12px; }
    .decorative-text { display: none; }
    .spark-one { left: -8px; }
    .site-footer { margin: 0 20px; padding-left: 0; padding-right: 0; flex-direction: column; align-items: center; gap: 10px; text-align: center; }
}

/* Keep the home headline readable on every screen */
.hero h1,
.hero h1 em { overflow-wrap: normal; word-break: normal; hyphens: none; }
.hero h1 em { max-width: 100%; padding-right: .08em; display: inline-block; font-size: .9em; letter-spacing: -.045em; }

@media (max-width: 760px) {
    .hero h1 { max-width: 100%; font-size: clamp(39px, 10.5vw, 54px); line-height: 1.02; letter-spacing: -2.7px; }
    .hero h1 em { max-width: 100%; padding-right: .12em; display: inline-block; font-size: .84em; letter-spacing: -.04em; }
}

@media (max-width: 380px) {
    .hero h1 { font-size: clamp(35px, 10.5vw, 42px); letter-spacing: -2px; }
}

@media (max-width: 390px) {
    .logo img { width: 48px; height: 48px; }
    .mobile-menu summary { width: 42px; height: 42px; }
    .hero { padding-inline: 16px; }
    h1 { font-size: 40px; letter-spacing: -2.4px; }
    .intro { font-size: 15px; }
    .eyebrow { font-size: 10px; letter-spacing: .9px; }
    .button { min-height: 51px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* Projects page */
.projects-page { width: min(1400px, 100%); margin: 0 auto; padding: clamp(60px, 8vw, 110px) 5vw 75px; }
.projects-page { position: relative; isolation: isolate; }
.projects-page::before { content: ""; width: 380px; height: 380px; position: absolute; top: 70px; left: -230px; background: rgba(9,185,219,.14); border-radius: 50%; filter: blur(22px); pointer-events: none; }
.projects-page::after { content: ""; width: 300px; height: 300px; position: absolute; top: 48%; right: -190px; z-index: -1; background: rgba(40,100,232,.11); border-radius: 50%; filter: blur(15px); pointer-events: none; }
.projects-hero { margin-bottom: clamp(55px, 7vw, 95px); display: grid; grid-template-columns: 1.25fr .75fr; align-items: end; gap: clamp(35px, 7vw, 100px); animation: reveal .75s ease both; }
.projects-hero h1 { max-width: 850px; font-size: clamp(52px, 6.5vw, 92px); }
.projects-lead { max-width: 490px; padding-bottom: 8px; color: var(--muted); font-size: 17px; line-height: 1.75; }
.projects-intro-side { display: flex; flex-direction: column; align-items: flex-start; gap: 24px; }
.project-filters { width: 100%; display: flex; flex-wrap: wrap; align-items: center; gap: 10px 8px; }
.project-filters a { display: flex; flex: 0 0 auto; }
.project-filters span { padding: 8px 13px; display: block; color: var(--muted); background: rgba(255,255,255,.72); border: 1px solid var(--line); border-radius: 999px; font-size: 10px; font-weight: 800; letter-spacing: .7px; text-transform: uppercase; white-space: nowrap; transition: color .25s ease, background .25s ease, border-color .25s ease, box-shadow .25s ease, transform .25s ease; }
.project-filters .selected { color: var(--white); background: var(--gradient); border-color: transparent; box-shadow: 0 8px 20px rgba(40,100,232,.2); }
.project-filters a:hover span,
.project-filters a:focus-visible span { color: var(--white); background: var(--gradient); border-color: transparent; box-shadow: 0 8px 20px rgba(40,100,232,.2); transform: translateY(-2px); }
.project-filters:has(a:not(:first-child):hover) .selected,
.project-filters:has(a:not(:first-child):focus-visible) .selected { color: var(--muted); background: rgba(255,255,255,.72); border-color: var(--line); box-shadow: none; transform: none; }
.portfolio-strip { margin: clamp(95px, 11vw, 155px) auto 0; padding: clamp(27px, 4vw, 43px) clamp(20px, 4vw, 48px); position: relative; overflow: hidden; display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: center; gap: clamp(18px, 3vw, 42px); color: var(--white); background: linear-gradient(125deg, #0a1d46 0%, #143d8c 52%, #2467e8 100%); border: 1px solid rgba(255,255,255,.15); border-radius: 26px; box-shadow: 0 25px 65px rgba(18,60,143,.23); }
.portfolio-strip::before { content: ""; width: 220px; height: 220px; position: absolute; top: -145px; right: 5%; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; }
.portfolio-strip::after { content: ""; width: 150px; height: 150px; position: absolute; left: -70px; bottom: -105px; background: rgba(9,185,219,.18); border-radius: 50%; filter: blur(4px); }
.portfolio-strip div { display: flex; align-items: center; justify-content: center; gap: 12px; }
.portfolio-strip strong { color: var(--white); font-family: "Manrope", sans-serif; font-size: clamp(35px, 4vw, 55px); line-height: 1; letter-spacing: -2px; }
.portfolio-strip strong sup { color: #59dcf4; font-size: .48em; vertical-align: top; }
.portfolio-strip span { max-width: 125px; color: rgba(255,255,255,.7); font-size: 10px; font-weight: 800; line-height: 1.45; letter-spacing: 1px; text-transform: uppercase; }
.portfolio-strip i { width: 1px; height: 56px; display: block; background: rgba(255,255,255,.18); }
.project-grid { display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(0, .88fr); gap: clamp(45px, 6vw, 82px) clamp(25px, 5vw, 64px); align-items: start; }
.project-card { min-width: 0; animation: reveal .7s ease both; }
.project-card:nth-child(2) { margin-top: 135px; animation-delay: .08s; }
.project-card:nth-child(3) { animation-delay: .14s; }
.project-card-wide { grid-column: 1 / -1; width: 82%; margin: 5px auto 0; }
.project-image { height: 480px; position: relative; overflow: hidden; background: #dfeaff; border-radius: 24px; box-shadow: 0 24px 55px rgba(24,73,158,.13); }
.project-image::after { content: ""; position: absolute; inset: 45% 0 0; background: linear-gradient(to top, rgba(4,14,38,.5), transparent); opacity: .45; pointer-events: none; transition: opacity .3s ease; }
.project-card::before { content: attr(data-label); position: absolute; color: rgba(40,100,232,.055); font-family: "Manrope", sans-serif; font-size: clamp(65px, 8vw, 118px); font-weight: 800; letter-spacing: -6px; text-transform: uppercase; pointer-events: none; }
.project-card { position: relative; }
.project-card-tall::before { left: -35px; top: -70px; }
.project-card:nth-child(2)::before { right: -10px; top: -75px; }
.project-card-wide::before { left: -70px; top: -73px; }
.project-card-tall .project-image { height: 720px; }
.project-card-wide .project-image { height: 510px; }
.project-image img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform .75s cubic-bezier(.2,.7,.2,1); }
.project-card-tall .project-image img { object-position: center 28%; }
.project-card-wide .project-image img { object-position: center; }
.project-card a:hover .project-image img { transform: scale(1.035); }
.project-card a:hover .project-image::after { opacity: .75; }
.project-card-clean .project-image::after { display: none; }
.project-card-clean .project-image img { filter: none; opacity: 1; }
.image-category { position: absolute; left: 18px; bottom: 18px; z-index: 2; padding: 8px 12px; color: var(--white); background: rgba(8,21,47,.35); border: 1px solid rgba(255,255,255,.4); border-radius: 999px; font-size: 10px; font-weight: 800; letter-spacing: .7px; text-transform: uppercase; backdrop-filter: blur(12px); }
.project-arrow { display: none; }
.project-meta { margin: 0 10px; padding: 20px 3px 0; display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; border-top: 1px solid transparent; transition: padding .3s ease, border-color .3s ease; }
.project-card a:hover .project-meta { padding-left: 12px; border-color: var(--line); }
.project-meta div { min-width: 0; }
.project-meta span { color: var(--blue); font-size: 10px; font-weight: 800; letter-spacing: 1.2px; text-transform: uppercase; }
.project-meta h2 { margin-top: 6px; font-family: "Manrope", sans-serif; font-size: clamp(21px, 2.2vw, 30px); letter-spacing: -1px; }
.project-meta > strong { color: #aab8d0; font-size: 12px; letter-spacing: 1px; }
.projects-cta { margin-top: clamp(75px, 10vw, 140px); padding: clamp(34px, 5vw, 65px); display: flex; align-items: center; justify-content: space-between; gap: 35px; color: var(--white); background: linear-gradient(135deg, #102b68, #2864e8 55%, #09b9db); border-radius: 30px; box-shadow: 0 28px 65px rgba(25,78,176,.22); }
.projects-cta div > span { font-size: 11px; font-weight: 700; letter-spacing: 1.3px; text-transform: uppercase; opacity: .72; }
.projects-cta h2 { max-width: 660px; margin-top: 8px; font-family: "Manrope", sans-serif; font-size: clamp(28px, 4vw, 49px); line-height: 1.1; letter-spacing: -2px; }
.projects-cta > a { min-height: 54px; padding: 0 23px; flex: 0 0 auto; display: inline-flex; align-items: center; gap: 17px; color: var(--blue); background: var(--white); border-radius: 999px; font-size: 13px; font-weight: 800; transition: transform .25s ease; }
.projects-cta > a:hover { transform: translateY(-3px); }

@media (max-width: 900px) {
    .projects-hero { grid-template-columns: 1fr; align-items: start; }
    .projects-lead { max-width: 650px; }
    .project-card:nth-child(2) { margin-top: 70px; }
    .project-card-tall .project-image { height: 610px; }
    .project-image { height: 390px; }
    .project-card-wide { width: 88%; }
    .portfolio-strip { margin-bottom: 65px; }
}

@media (max-width: 650px) {
    .projects-page { padding: 48px 20px 55px; }
    .projects-hero { margin-bottom: 48px; gap: 25px; }
    .projects-hero h1 { font-size: clamp(43px, 13vw, 62px); letter-spacing: -3px; }
    .projects-lead { font-size: 15px; }
    .project-grid { grid-template-columns: 1fr; gap: 45px; }
    .portfolio-strip { margin-bottom: 55px; padding: 18px 12px; grid-template-columns: repeat(3, 1fr); gap: 8px; }
    .portfolio-strip i { display: none; }
    .portfolio-strip div { flex-direction: column; gap: 3px; text-align: center; }
    .portfolio-strip span { font-size: 8px; }
    .project-card:nth-child(2) { margin-top: 0; }
    .project-card-wide { grid-column: auto; width: 100%; }
    .project-card::before { display: none; }
    .project-image, .project-card-wide .project-image { height: 105vw; max-height: 540px; border-radius: 19px; }
    .project-card-tall .project-image { height: 125vw; max-height: 650px; }
    .project-arrow { width: 46px; height: 46px; opacity: 1; transform: none; }
    .image-category { left: 13px; bottom: 13px; }
    .project-meta { padding-top: 16px; }
    .projects-cta { padding: 30px 22px; flex-direction: column; align-items: flex-start; border-radius: 23px; }
    .projects-cta > a { width: 100%; justify-content: center; }
}

/* Blog article */
.article-page { width: min(1120px, 100%); margin: 0 auto; padding: clamp(20px, 3.5vw, 32px) 5vw 80px; }
.article-back { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 12px; color: var(--muted); font-size: 12px; font-weight: 800; transition: color .25s ease, transform .25s ease; }
.article-back:hover { color: var(--blue); transform: translateX(-4px); }
.article-header { max-width: 980px; margin: 12px auto 0; text-align: center; }
.article-header .blog-post-info { justify-content: center; }
.article-header h1 { max-width: 980px; margin: 24px auto 0; font-size: clamp(38px, 5.5vw, 72px); font-weight: 800; line-height: 1.08; letter-spacing: -3px; text-wrap: balance; }
.article-header h1 em { color: var(--blue); font-style: normal; }
.article-header > p { max-width: 720px; margin: 25px auto 0; color: var(--muted); font-size: clamp(16px, 1.5vw, 20px); line-height: 1.7; }
.article-cover { width: min(100%, 760px); margin: clamp(48px, 7vw, 85px) auto 0; }
.article-cover img { width: 100%; height: auto; display: block; border-radius: 28px; box-shadow: 0 30px 75px rgba(24,73,158,.16); }
.article-cover figcaption { margin-top: 14px; color: var(--muted); font-size: 11px; text-align: center; }
.article-body { max-width: 780px; margin: clamp(50px, 7vw, 85px) auto 0; }
.article-body p { color: #475d7e; font-size: clamp(17px, 1.5vw, 20px); line-height: 1.9; }
.article-body p + p { margin-top: 28px; }
.article-body .article-lead { color: var(--ink); font-size: clamp(20px, 2vw, 26px); line-height: 1.65; }
.article-body blockquote { margin: clamp(42px, 6vw, 70px) 0; padding: 15px 0 15px clamp(24px, 4vw, 45px); color: var(--ink); border-left: 4px solid var(--blue); font-family: "Manrope", sans-serif; font-size: clamp(27px, 4vw, 45px); font-weight: 700; line-height: 1.2; letter-spacing: -1.5px; }
.article-footer { max-width: 780px; margin: clamp(55px, 8vw, 90px) auto 0; padding-top: 28px; display: flex; align-items: center; justify-content: space-between; gap: 25px; border-top: 1px solid var(--line); }
.article-footer > div { display: flex; flex-wrap: wrap; gap: 7px; }
.article-footer > div span { padding: 7px 10px; color: var(--muted); background: var(--white); border: 1px solid var(--line); border-radius: 999px; font-size: 9px; font-weight: 800; text-transform: uppercase; }
.article-footer > a { display: inline-flex; align-items: center; gap: 14px; color: var(--blue); font-size: 13px; font-weight: 800; white-space: nowrap; }
.article-socials { max-width: 780px; margin: 32px auto 0; justify-content: center; }
.about-socials { margin: clamp(45px, 6vw, 75px) auto 0; justify-content: center; }

@media (max-width: 600px) {
    .article-page { padding: 38px 16px 65px; }
    .article-header h1 { font-size: clamp(32px, 9vw, 46px); line-height: 1.12; letter-spacing: -1.8px; overflow-wrap: anywhere; }
    .article-cover img { border-radius: 18px; }
    .article-body p { font-size: 17px; line-height: 1.78; }
    .article-footer { align-items: flex-start; flex-direction: column; }
}

/* Projects coherence */
.project-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(48px, 6vw, 78px) clamp(28px, 4vw, 52px); }
.project-card,
.project-card:nth-child(2),
.project-card-wide { width: 100%; margin: 0; grid-column: auto; }
.project-card::before { display: none; }
.project-image,
.project-card-tall .project-image,
.project-card-wide .project-image { height: auto; aspect-ratio: 4 / 5; border-radius: 24px; }
.project-card:nth-child(even) { transform: translateY(58px); }
.project-card:nth-child(even):hover { transform: translateY(52px); }
.project-card { transition: transform .35s ease; }
.project-meta {
    min-height: 88px;
    margin: 0;
    padding: 19px 4px 0;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
}
.project-meta div { width: 100%; }
.project-meta span,
.project-meta h2 { display: block; text-align: left; }
.project-card a:hover .project-meta { padding-right: 4px; padding-left: 4px; }
.project-meta h2 { line-height: 1.15; }
.portfolio-strip { max-width: 1180px; }
.projects-cta { margin-top: clamp(70px, 8vw, 110px); }

@media (max-width: 650px) {
    .project-grid { grid-template-columns: 1fr; gap: 48px; }
    .project-card:nth-child(even),
    .project-card:nth-child(even):hover { transform: none; }
    .project-image,
    .project-card-tall .project-image,
    .project-card-wide .project-image { height: auto; max-height: none; aspect-ratio: 4 / 5; }
    .project-meta { min-height: 0; }
    .projects-cta { margin-top: 78px; }
}

@media (max-width: 820px) {
    .projects-page { padding-left: 28px; padding-right: 28px; }
    .projects-hero { grid-template-columns: 1fr; gap: 28px; }
    .projects-intro-side, .projects-lead { max-width: 100%; }
    .project-grid { grid-template-columns: 1fr; gap: 54px; }
    .project-card:nth-child(even),
    .project-card:nth-child(even):hover { transform: none; }
    .project-image,
    .project-card-tall .project-image,
    .project-card-wide .project-image { width: 100%; height: auto; max-height: none; aspect-ratio: 4 / 5; }
    .projects-cta { margin-top: 88px; }
}

@media (max-width: 540px) {
    .projects-page { padding: 40px 18px 48px; }
    .projects-hero { margin-bottom: 36px; }
    .projects-hero h1 { font-size: clamp(42px, 13vw, 58px); line-height: 1; letter-spacing: -3px; }
    .project-filters { width: 100%; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 7px; }
    .project-filters span { flex: 0 0 auto; padding: 7px 11px; text-align: center; white-space: nowrap; }
    .portfolio-strip { margin-bottom: 46px; padding: 16px 8px; border-radius: 17px; }
    .portfolio-strip strong { font-size: 20px; }
    .portfolio-strip span { max-width: 90px; font-size: 7px; }
    .project-grid { gap: 42px; }
    .project-image,
    .project-card-tall .project-image,
    .project-card-wide .project-image { border-radius: 18px; }
    .project-meta { min-height: 0; padding-top: 15px; }
    .project-meta h2 { font-size: 21px; }
    .project-arrow { top: 12px; right: 12px; }
    .projects-cta { margin-top: 70px; padding: 27px 20px; }
    .projects-cta h2 { font-size: 29px; letter-spacing: -1.4px; }
}

@media (max-width: 480px) {
    .projects-page { width: 100%; overflow: hidden; }
    .projects-hero { width: 100%; }
    .projects-intro-side { align-items: stretch; }
    .portfolio-strip { grid-template-columns: 1fr; gap: 0; padding: 10px 18px; }
    .portfolio-strip div { min-height: 72px; flex-direction: row; justify-content: flex-start; gap: 16px; text-align: left; }
    .portfolio-strip div:not(:first-child) { border-top: 1px solid var(--line); }
    .portfolio-strip strong { width: 54px; flex: 0 0 auto; font-size: 22px; text-align: center; }
    .portfolio-strip span { max-width: none; font-size: 9px; }
    .project-card, .project-card a, .project-image { max-width: 100%; }
    .project-image,
    .project-card-tall .project-image,
    .project-card-wide .project-image { aspect-ratio: 4 / 5; }
    .project-meta { gap: 12px; }
    .project-meta h2 { font-size: 20px; overflow-wrap: anywhere; }
    .project-meta > strong { flex: 0 0 auto; }
    .projects-cta { width: 100%; }
    .projects-cta > a { padding-left: 16px; padding-right: 16px; text-align: center; }
}

@media (max-width: 360px) {
    .projects-page { padding-left: 14px; padding-right: 14px; }
    .projects-hero h1 { font-size: 38px; letter-spacing: -2px; }
    .projects-lead { font-size: 14px; }
    .portfolio-strip strong { font-size: 17px; }
    .portfolio-strip span { font-size: 6.5px; }
    .image-category { max-width: calc(100% - 75px); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
}

@media (hover: none) {
    .project-card:nth-child(even),
    .project-card:nth-child(even):hover,
    .project-card a:hover .project-image img { transform: none; }
}

/* Blog */
.blog-page { width: min(1400px, 100%); margin: 0 auto; padding: clamp(65px, 8vw, 110px) 5vw 80px; }
.blog-hero { padding-bottom: clamp(48px, 7vw, 90px); border-bottom: 1px solid var(--line); }
.blog-hero > div { margin-top: 22px; display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr); align-items: end; gap: clamp(35px, 8vw, 120px); }
.blog-hero h1 { max-width: 980px; font-size: clamp(48px, 7vw, 94px); line-height: .98; letter-spacing: -5px; text-wrap: balance; }
.blog-hero h1 em { display: inline-block; color: var(--blue); font-style: normal; white-space: nowrap; }
.blog-hero > div > p { max-width: 530px; color: var(--muted); font-size: clamp(15px, 1.4vw, 19px); line-height: 1.75; }
.blog-filters { margin-top: 38px; display: flex; flex-wrap: wrap; gap: 9px; }
.blog-filters a { padding: 10px 16px; color: var(--muted); background: rgba(255,255,255,.72); border: 1px solid var(--line); border-radius: 999px; font-size: 11px; font-weight: 800; letter-spacing: .6px; text-transform: uppercase; transition: .25s ease; }
.blog-filters a:hover, .blog-filters .active { color: var(--white); background: var(--gradient); border-color: transparent; transform: translateY(-2px); }
.blog-featured { margin-top: clamp(55px, 8vw, 105px); padding: clamp(18px, 2vw, 28px); display: grid; grid-template-columns: minmax(360px, .82fr) minmax(340px, 1.18fr); align-items: center; gap: clamp(32px, 6vw, 85px); background: rgba(255,255,255,.72); border: 1px solid rgba(255,255,255,.9); border-radius: 30px; box-shadow: 0 24px 65px rgba(24,73,158,.1); }
.blog-featured-image { width: 100%; height: auto; aspect-ratio: 4 / 5; overflow: hidden; border-radius: 22px; }
.blog-featured-image img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform .7s ease; }
.blog-featured-image:hover img { transform: scale(1.035); }
.blog-featured-copy { padding-right: clamp(10px, 3vw, 40px); }
.blog-post-info { display: flex; align-items: center; flex-wrap: wrap; gap: 10px 16px; color: var(--muted); font-size: 11px; }
.blog-post-info span { color: var(--blue); font-weight: 800; letter-spacing: 1px; text-transform: uppercase; }
.blog-featured-copy h2 { margin-top: 20px; font-family: "Manrope", sans-serif; font-size: clamp(32px, 4vw, 58px); line-height: 1.08; letter-spacing: -2.4px; }
.blog-featured-copy > p { margin-top: 22px; color: var(--muted); font-size: 16px; line-height: 1.75; }
.blog-read-more { margin-top: 26px; display: inline-flex; align-items: center; gap: 18px; color: var(--ink); font-size: 13px; font-weight: 800; }
.blog-read-more span { color: var(--blue); transition: transform .25s ease; }
.blog-read-more:hover span { transform: translateX(5px); }
.blog-story-link { min-height: 50px; padding: 0 21px; color: var(--white); background: var(--gradient); border-radius: 999px; box-shadow: 0 12px 28px rgba(40,100,232,.22); transition: transform .25s ease, box-shadow .25s ease; }
.blog-story-link span { color: var(--white); }
.blog-story-link:hover { transform: translateY(-3px); box-shadow: 0 18px 35px rgba(40,100,232,.3); }
.blog-grid { margin-top: clamp(65px, 9vw, 120px); display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(20px, 3vw, 38px); }
.blog-card { overflow: hidden; background: rgba(255,255,255,.78); border: 1px solid rgba(255,255,255,.92); border-radius: 24px; box-shadow: 0 18px 48px rgba(24,73,158,.09); transition: transform .35s ease, box-shadow .35s ease; }
.blog-card:hover { transform: translateY(-8px); box-shadow: 0 28px 58px rgba(24,73,158,.15); }
.blog-card-image { width: 100%; height: auto; aspect-ratio: 4 / 5; display: block; overflow: hidden; background: #edf4ff; }
.blog-card-image img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform .6s ease; }
.blog-card-image-portrait img { object-position: center 25%; }
.blog-card-image-contain { padding: clamp(10px, 1.5vw, 20px); background: #f5f8ff; }
.blog-card-image-contain img { object-fit: contain; }
.blog-card:hover .blog-card-image img { transform: scale(1.035); }
.blog-card-copy { padding: 26px; }
.blog-card-copy h2 { margin-top: 17px; font-family: "Manrope", sans-serif; font-size: clamp(21px, 2vw, 28px); line-height: 1.2; letter-spacing: -1px; }
.blog-card-copy > p { margin-top: 15px; color: var(--muted); font-size: 14px; line-height: 1.7; }
.blog-cta { margin-top: clamp(75px, 10vw, 140px); padding: clamp(35px, 6vw, 70px); display: flex; align-items: center; justify-content: space-between; gap: 35px; color: var(--white); background: linear-gradient(135deg, #102b68, #2864e8 55%, #09b9db); border-radius: 30px; }
.blog-cta span { font-size: 11px; font-weight: 800; letter-spacing: 1.2px; text-transform: uppercase; opacity: .75; }
.blog-cta h2 { max-width: 720px; margin-top: 8px; font-family: "Manrope", sans-serif; font-size: clamp(30px, 4.5vw, 56px); line-height: 1.08; letter-spacing: -2px; }
.blog-cta > a { min-height: 55px; padding: 0 24px; flex: 0 0 auto; display: inline-flex; align-items: center; gap: 18px; color: var(--blue); background: var(--white); border-radius: 999px; font-size: 13px; font-weight: 800; }

@media (max-width: 950px) {
    .blog-hero > div, .blog-featured { grid-template-columns: 1fr; }
    .blog-featured-image { width: min(100%, 560px); height: auto; max-height: none; justify-self: center; }
    .blog-featured-copy { padding: 5px 12px 20px; }
    .blog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 650px) {
    .blog-page { padding: 48px 16px 60px; }
    .blog-hero h1 { font-size: clamp(43px, 13vw, 62px); letter-spacing: -3px; }
    .blog-hero h1 em { white-space: normal; }
    .blog-filters { justify-content: center; }
    .blog-featured { padding: 12px; border-radius: 21px; }
    .blog-featured-image { width: 100%; height: auto; max-height: none; border-radius: 16px; }
    .blog-featured-copy h2 { font-size: 31px; letter-spacing: -1.4px; }
    .blog-grid { grid-template-columns: 1fr; }
    .blog-card-image { height: auto; max-height: none; }
    .blog-cta { padding: 34px 22px; flex-direction: column; align-items: flex-start; border-radius: 22px; }
    .blog-cta > a { width: 100%; justify-content: center; }
}

/* Studio gallery */
.studio-page { width: min(1400px, 100%); margin: 0 auto; padding: clamp(20px, 3.5vw, 32px) 5vw 80px; }
.back-projects { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 12px; color: var(--muted); font-size: 12px; font-weight: 700; transition: color .2s ease, transform .2s ease; }
.back-projects:hover { color: var(--blue); transform: translateX(-4px); }
.studio-hero { padding: clamp(14px, 2.5vw, 24px) 0 clamp(45px, 7vw, 90px); display: grid; grid-template-columns: 1.2fr .8fr; align-items: end; gap: clamp(40px, 8vw, 120px); }
.studio-hero h1 { font-size: clamp(58px, 8vw, 108px); }
.studio-intro { padding-bottom: 10px; }
.studio-intro > span { color: var(--blue); font-size: 10px; font-weight: 800; letter-spacing: 1.4px; text-transform: uppercase; }
.studio-intro p { max-width: 520px; margin-top: 13px; color: var(--muted); font-size: 17px; line-height: 1.75; }
.studio-gallery { margin-top: clamp(38px, 6vw, 75px); display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); grid-auto-flow: dense; gap: clamp(14px, 2vw, 26px); }
.studio-shot { min-width: 0; height: 520px; position: relative; overflow: hidden; grid-column: span 4; padding: 0; background: #dfe9fa; border: 0; border-radius: 22px; cursor: zoom-in; box-shadow: 0 20px 45px rgba(24,73,158,.1); }
.studio-shot::after { content: ""; position: absolute; inset: 50% 0 0; background: linear-gradient(to top, rgba(5,15,38,.7), transparent); opacity: .55; transition: opacity .35s ease; }
.studio-shot img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.studio-shot:hover img { transform: scale(1.04); }
.studio-shot:hover::after { opacity: .8; }
.natural-gallery .studio-shot::after { display: none; }
.natural-gallery .studio-shot img { filter: none; opacity: 1; }
.marriage-gallery { align-items: start; }
.marriage-gallery .marriage-shot { grid-column: span 4; width: 100%; height: auto; border-radius: 14px; }
.marriage-gallery .marriage-shot-portrait { aspect-ratio: 2 / 3; }
.marriage-gallery .marriage-shot-compact { aspect-ratio: 5 / 6; }
.marriage-gallery .marriage-shot-landscape { aspect-ratio: 3 / 2; }
.marriage-gallery .marriage-shot img { width: 100%; height: 100%; object-fit: cover; }
.event-gallery { align-items: start; }
.event-gallery .event-shot { grid-column: span 4; width: 100%; height: auto; border-radius: 14px; }
.event-gallery .event-shot-landscape { aspect-ratio: 3 / 2; }
.event-gallery .event-shot-wide { aspect-ratio: 5 / 3; }
.event-gallery .event-shot-portrait { aspect-ratio: 3 / 4; }
.event-gallery .event-shot img { width: 100%; height: 100%; object-fit: cover; }
.outdoor-gallery { align-items: start; }
.outdoor-gallery .outdoor-shot { grid-column: span 4; width: 100%; height: auto; border-radius: 14px; }
.outdoor-gallery .outdoor-shot-portrait { aspect-ratio: 2 / 3; }
.outdoor-gallery .outdoor-shot-compact { aspect-ratio: 4 / 5; }
.outdoor-gallery .outdoor-shot-wide { aspect-ratio: 1 / 1; }
.outdoor-gallery .outdoor-shot-landscape { aspect-ratio: 3 / 2; }
.outdoor-gallery .outdoor-shot img { width: 100%; height: 100%; object-fit: cover; }
.brand-gallery { align-items: start; }
.brand-gallery .brand-shot { grid-column: span 4; width: 100%; height: auto; background: var(--white); border-radius: 18px; }
.brand-gallery .brand-shot-square { aspect-ratio: 1; }
.brand-gallery .brand-shot-portrait { aspect-ratio: 874 / 1151; }
.brand-gallery .brand-shot img { width: 100%; height: 100%; object-fit: contain; }
.brand-showcase { margin-top: clamp(38px, 6vw, 75px); display: grid; gap: clamp(85px, 12vw, 170px); }
.brand-case { min-width: 0; }
.brand-case-header { margin-bottom: clamp(30px, 5vw, 60px); padding: 0 clamp(4px, 2vw, 24px) 28px; display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, .72fr); align-items: end; gap: clamp(28px, 7vw, 100px); border-bottom: 1px solid var(--line); }
.brand-case-header span { color: var(--blue); font-size: 10px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; }
.brand-case-header h1, .brand-case-header h2 { margin-top: 9px; font-family: "Manrope", sans-serif; font-size: clamp(38px, 5vw, 72px); line-height: 1; letter-spacing: -3px; }
.brand-case-header p { max-width: 580px; color: var(--muted); font-size: clamp(14px, 1.25vw, 17px); line-height: 1.75; }
.brand-case-fablomie { padding: clamp(30px, 5vw, 65px); background: linear-gradient(145deg, #fff8f0, #fff); border: 1px solid #f1dfcf; border-radius: 34px; }
.brand-gallery .brand-shot-featured { grid-column: span 8; aspect-ratio: 16 / 10; }
.brand-gallery .brand-shot-mockup { grid-column: span 6; aspect-ratio: 4 / 3; }
.brand-gallery .brand-shot-mockup-portrait { grid-column: span 6; aspect-ratio: 4 / 5; }
.brand-presentation { width: min(100%, 1100px); margin: 0 auto; padding: 0; display: block; overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: 26px; box-shadow: 0 24px 60px rgba(24,73,158,.12); cursor: zoom-in; transition: transform .35s ease, box-shadow .35s ease; }
.brand-presentation:hover { transform: translateY(-6px); box-shadow: 0 32px 70px rgba(24,73,158,.18); }
.brand-presentation img { width: 100%; height: auto; display: block; }
.brand-presentation-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: stretch; gap: clamp(18px, 3vw, 36px); }
.brand-presentation-grid .brand-presentation { width: 100%; height: 100%; aspect-ratio: 4 / 5; }
.brand-presentation-grid .brand-presentation img { width: 100%; height: 100%; }
.brand-presentation-square img { object-fit: contain; background: var(--white); }
.brand-presentation-tall img { object-fit: cover; object-position: center top; }
.brand-mockup-grid { margin-top: clamp(18px, 3vw, 36px); display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(18px, 3vw, 36px); }
.brand-mockup-grid .brand-presentation { width: 100%; height: 100%; aspect-ratio: 4 / 3; }
.brand-mockup-grid .brand-presentation img { width: 100%; height: 100%; object-fit: cover; }
.brand-mockup-grid-single { grid-template-columns: minmax(0, 1fr); }
.brand-mockup-grid-single .brand-presentation { width: min(100%, 1100px); }
.brand-case-delice { padding: clamp(35px, 6vw, 80px); background: #fff7ec; border-radius: 34px; }
.brand-case-kenley { padding: clamp(35px, 6vw, 80px); background: linear-gradient(145deg, #eafcff, #edf3ff); border-radius: 34px; }
.brand-kenley-logo { width: 100%; min-height: clamp(320px, 42vw, 620px); margin-bottom: clamp(18px, 3vw, 36px); padding: clamp(45px, 8vw, 110px); display: grid; place-items: center; overflow: hidden; background: linear-gradient(145deg, #dffbff, #fff); border: 1px solid rgba(40,100,232,.14); border-radius: 26px; box-shadow: 0 24px 60px rgba(24,73,158,.1); cursor: zoom-in; transition: transform .35s ease, box-shadow .35s ease; }
.brand-kenley-logo:hover { transform: translateY(-6px); box-shadow: 0 32px 70px rgba(24,73,158,.17); }
.brand-kenley-logo img { width: min(100%, 520px); max-height: 420px; display: block; object-fit: contain; }
.brand-delice-logo {
    width: min(100%, 650px);
    min-height: 0;
    margin: 0 auto clamp(18px, 3vw, 36px);
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
}
.brand-delice-logo:hover { box-shadow: none; }
.brand-delice-logo img { width: 100%; max-height: none; }
.branding-page .brand-showcase { width: 100%; }
.branding-page .brand-case, .branding-page .brand-presentation-grid { width: 100%; }
.studio-shot > span { position: absolute; right: 18px; bottom: 17px; left: 18px; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 15px; color: var(--white); font-family: "DM Sans", sans-serif; font-size: 13px; font-weight: 700; text-align: left; }
.studio-shot > span i { font-size: 10px; font-style: normal; letter-spacing: 1px; opacity: .7; }
.shot-large { grid-column: span 7; height: 720px; }
.shot-tall { grid-column: span 5; height: 720px; }
.shot-small { grid-column: span 4; height: 480px; }
.shot-wide { grid-column: span 8; height: 540px; }
.shot-medium { grid-column: span 6; height: 620px; }

@media (min-width: 851px) {
    .studio-page { width: 100%; max-width: none; padding-right: 2vw; padding-left: 2vw; }
    .studio-shot,
    .shot-large,
    .shot-tall,
    .shot-small,
    .shot-wide,
    .shot-medium { grid-column: span 4; align-self: start; width: 100%; height: auto; background: transparent; border-radius: 14px; box-shadow: 0 12px 32px rgba(24,73,158,.12); }
    .studio-shot img { width: 100%; height: auto; object-fit: initial; }
}

@media (min-width: 851px) and (max-width: 1100px) {
    .studio-shot,
    .shot-large,
    .shot-tall,
    .shot-small,
    .shot-wide,
    .shot-medium { grid-column: span 6; height: auto; }
    .marriage-gallery .marriage-shot { grid-column: span 6; }
    .event-gallery .event-shot { grid-column: span 6; }
    .outdoor-gallery .outdoor-shot { grid-column: span 6; }
    .brand-gallery .brand-shot { grid-column: span 6; }
}

.studio-cta { margin-top: clamp(70px, 10vw, 130px); padding: clamp(42px, 7vw, 82px); position: relative; overflow: hidden; color: var(--white); background: linear-gradient(135deg, #10285d, #2864e8 58%, #09b9db); border-radius: 30px; text-align: center; box-shadow: 0 28px 65px rgba(25,78,176,.22); }
.studio-cta::before, .studio-cta::after { content: ""; position: absolute; border: 1px solid rgba(255,255,255,.14); border-radius: 50%; }
.studio-cta::before { width: 270px; height: 270px; top: -150px; left: -80px; }
.studio-cta::after { width: 190px; height: 190px; right: -60px; bottom: -110px; }
.studio-cta p { margin-bottom: 9px; font-size: 11px; font-weight: 800; letter-spacing: 1.2px; text-transform: uppercase; opacity: .72; }
.studio-cta h2 { max-width: 790px; margin: 0 auto; font-family: "Manrope", sans-serif; font-size: clamp(32px, 5vw, 60px); line-height: 1.08; letter-spacing: -2.4px; }
.studio-cta a { min-height: 55px; margin-top: 30px; padding: 0 25px; display: inline-flex; align-items: center; gap: 18px; color: var(--blue); background: var(--white); border-radius: 999px; font-size: 13px; font-weight: 800; transition: transform .25s ease; }
.studio-cta a:hover { transform: translateY(-3px); }
.lightbox { width: min(92vw, 1100px); max-width: none; height: min(90vh, 900px); max-height: none; margin: auto; padding: 0; overflow: hidden; background: #081124; border: 0; border-radius: 18px; box-shadow: 0 35px 100px rgba(0,0,0,.45); }
.lightbox::backdrop { background: rgba(3,9,23,.88); backdrop-filter: blur(8px); }
.lightbox img { width: 100%; height: 100%; display: block; object-fit: contain; }
.lightbox button { width: 44px; height: 44px; position: absolute; top: 14px; right: 14px; z-index: 2; color: var(--ink); background: rgba(255,255,255,.9); border: 0; border-radius: 50%; font-size: 25px; cursor: pointer; }

/* Graphic design gallery */
.design-page { width: min(1500px, 100%); margin: 0 auto; padding: clamp(20px, 3.5vw, 32px) 4vw 90px; }
.design-hero { margin-top: 12px; padding: clamp(14px, 2.5vw, 24px) clamp(5px, 2vw, 24px) clamp(45px, 6vw, 80px); display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr); align-items: end; gap: clamp(35px, 8vw, 120px); border-bottom: 1px solid var(--line); }
.design-hero-kicker { margin-bottom: 22px; display: flex; align-items: center; gap: 12px; color: var(--blue); font-size: 11px; font-weight: 800; letter-spacing: 1.8px; text-transform: uppercase; }
.design-hero-kicker::before { content: ""; width: 36px; height: 2px; background: var(--gradient); border-radius: 99px; }
.design-hero h1 { max-width: 920px; font-size: clamp(50px, 7vw, 102px); line-height: .94; letter-spacing: -5px; }
.design-hero h1 em { color: var(--blue); background: var(--gradient); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; font-style: normal; }
.design-hero-description { max-width: 430px; padding-bottom: 8px; color: var(--muted); font-size: clamp(16px, 1.4vw, 20px); line-height: 1.7; }
.design-index { margin: 22px 0 clamp(70px, 9vw, 125px); padding: 10px; display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; background: rgba(255,255,255,.7); border: 1px solid var(--line); border-radius: 20px; box-shadow: 0 15px 40px rgba(24,73,158,.08); backdrop-filter: blur(12px); }
.design-index a { min-height: 62px; padding: 0 15px; display: flex; align-items: center; gap: 11px; color: var(--muted); border-radius: 13px; font-size: 13px; font-weight: 700; transition: color .25s ease, background .25s ease, transform .25s ease; }
.design-index a:hover { color: var(--blue); background: var(--white); transform: translateY(-2px); }
.design-group { padding: clamp(24px, 3vw, 42px); background: rgba(255,255,255,.54); border: 1px solid rgba(37,91,181,.11); border-radius: 30px; box-shadow: 0 18px 55px rgba(24,73,158,.07); }
.design-group-social-media { background: linear-gradient(145deg, rgba(229,241,255,.9), rgba(255,255,255,.66)); border-color: rgba(40,100,232,.18); }
.design-group-photo-manipulation { background: linear-gradient(145deg, rgba(225,248,252,.9), rgba(255,255,255,.66)); border-color: rgba(9,185,219,.2); }
.design-group-kenley { background: linear-gradient(145deg, rgba(242,235,255,.9), rgba(255,255,255,.66)); border-color: rgba(121,73,204,.18); }
.design-group-business-cards { background: linear-gradient(145deg, rgba(255,244,224,.92), rgba(255,255,255,.66)); border-color: rgba(228,154,45,.2); }
.design-group-brochures { background: linear-gradient(145deg, rgba(239,247,240,.94), rgba(255,255,255,.7)); border-color: rgba(54,143,83,.18); }
.design-group-brochures .design-card { aspect-ratio: 4 / 3; }
.design-group-brochures .design-card img { width: 100%; height: 100%; object-fit: cover; }
.design-group-logos { overflow: hidden; background: linear-gradient(145deg, #f8fbff 0%, #edf4ff 58%, #e9f8fb 100%); border-color: rgba(40,100,232,.12); box-shadow: 0 28px 75px rgba(24,73,158,.1); }
.design-group-logos .design-group-heading { border-color: rgba(40,100,232,.14); }
.design-group-logos .design-group-heading h2 { color: var(--ink); }
.design-group-logos .design-group-heading p { color: #60708d; }
.logo-group-heading > div { align-items: flex-start; flex-direction: column; }
.design-group-badge { padding: 7px 11px; color: #1760d8; background: rgba(40,100,232,.08); border: 1px solid rgba(40,100,232,.2); border-radius: 999px; font-size: 9px; font-weight: 800; letter-spacing: 1.2px; text-transform: uppercase; }
.logo-design-gallery { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); align-items: start; gap: clamp(16px, 2vw, 28px); }
.logo-brand-column { min-width: 0; display: grid; gap: clamp(16px, 2vw, 28px); }
.logo-design-card { overflow: hidden; background: rgba(255,255,255,.98); border: 1px solid rgba(255,255,255,.22); border-radius: 20px; text-align: left; }
.logo-design-card::after { display: none; }
.logo-card-visual { aspect-ratio: 1 / 1; display: grid; place-items: center; overflow: hidden; background: linear-gradient(145deg, #fff, #edf4ff); }
.logo-design-card-featured .logo-card-visual { aspect-ratio: 1 / 1; }
.logo-design-card-tall .logo-card-visual { aspect-ratio: 4 / 5; }
.logo-design-card .logo-card-visual img { width: 100%; height: 100%; padding: clamp(18px, 3vw, 42px); display: block; object-fit: contain; transition: transform .5s cubic-bezier(.2,.7,.2,1); }
.logo-design-card-presentation .logo-card-visual img,
.logo-design-card-tall .logo-card-visual img { padding: 0; object-fit: cover; }
.logo-card-info { display: none; }
.logo-card-info strong { color: var(--ink); font-family: "Manrope", sans-serif; font-size: clamp(15px, 1.4vw, 19px); }
.logo-card-info small { color: var(--blue); font-size: 9px; font-weight: 800; line-height: 1.4; letter-spacing: .7px; text-align: right; text-transform: uppercase; }
.design-group + .design-group { margin-top: clamp(70px, 9vw, 130px); }
.design-group-heading { margin-bottom: clamp(25px, 4vw, 46px); padding-bottom: 22px; display: flex; align-items: end; justify-content: space-between; gap: 30px; border-bottom: 1px solid var(--line); }
.design-group-heading > div { display: flex; align-items: center; gap: 15px; }
.design-group-heading h2 { font-family: "Manrope", sans-serif; font-size: clamp(30px, 3.7vw, 54px); line-height: 1; letter-spacing: -2.2px; }
.design-group-heading p { max-width: 420px; color: var(--muted); font-size: 13px; line-height: 1.55; text-align: right; }
.design-gallery { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); align-items: start; gap: clamp(16px, 2vw, 28px); }
.design-card { width: 100%; margin: 0; padding: 0; display: block; position: relative; overflow: hidden; align-self: start; background: var(--white); border: 1px solid rgba(255,255,255,.7); border-radius: 18px; box-shadow: 0 18px 45px rgba(24,73,158,.12); cursor: zoom-in; transition: transform .35s ease, box-shadow .35s ease; }
.design-card::after { display: none; }
.design-card img { width: 100%; height: auto; display: block; transition: transform .5s cubic-bezier(.2,.7,.2,1); }
.design-card-landscape { grid-column: 1 / -1; width: min(100%, 900px); justify-self: center; }
.design-card:hover { transform: translateY(-7px); box-shadow: 0 28px 60px rgba(24,73,158,.2); }
.design-card:hover img { transform: scale(1.02); }
.design-card:hover::after { opacity: 1; transform: translateY(0); }
.design-tools-section { margin-top: clamp(80px, 10vw, 145px); padding: clamp(38px, 5vw, 70px); color: var(--ink); background: linear-gradient(135deg, rgba(255,255,255,.96), rgba(239,247,255,.92)); border: 1px solid rgba(40,100,232,.13); border-radius: 36px; box-shadow: 0 25px 70px rgba(24,73,158,.12); }
.tools-intro { max-width: 900px; margin: 0 auto; text-align: center; }
.tools-intro > p { margin-bottom: 15px; color: var(--blue); font-size: 11px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; }
.tools-intro h2 { max-width: 780px; margin: 0 auto; font-family: "Manrope", sans-serif; font-size: clamp(36px, 4.6vw, 64px); line-height: 1.03; letter-spacing: -3.5px; }
.tools-intro > span { max-width: 680px; margin: 25px auto 0; display: block; color: var(--muted); font-size: clamp(14px, 1.15vw, 17px); line-height: 1.8; }
.tools-category-heading { margin: clamp(50px, 6vw, 75px) 0 28px; display: flex; align-items: center; gap: 22px; }
.tools-category-heading h3 { flex: 0 0 auto; color: var(--ink); font-family: "Manrope", sans-serif; font-size: clamp(16px, 1.6vw, 21px); letter-spacing: -.4px; text-transform: uppercase; }
.tools-category-heading span { height: 1px; flex: 1; background: var(--line); }
.tools-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(14px, 1.7vw, 24px); }
.tool-card { min-height: 230px; padding: clamp(24px, 2.5vw, 34px); display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--line); border-radius: 24px; box-shadow: 0 14px 35px rgba(24,73,158,.08); transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease; }
.tool-card:hover { border-color: rgba(40,100,232,.35); box-shadow: 0 22px 45px rgba(24,73,158,.15); transform: translateY(-7px); }
.tool-logo { width: 62px; height: 62px; display: grid; place-items: center; background: #f2f7ff; border: 1px solid var(--line); border-radius: 16px; font-family: "Manrope", sans-serif; font-size: 21px; font-weight: 800; box-shadow: 0 8px 20px rgba(24,73,158,.08); }
.tool-photoshop .tool-logo { color: #31a8ff; }
.tool-corel .tool-logo { color: #63d34e; }
.tool-lightroom .tool-logo { color: #6de7f7; }
.tool-pixelab .tool-logo { color: #a98cff; }
.tool-affinity .tool-logo { background: #a3ef70; border-color: #8ddd58; }
.tool-logo img { width: 100%; height: 100%; display: block; object-fit: cover; border-radius: inherit; }
.tool-level { margin-top: auto; padding-top: 38px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.tool-level h4 { font-family: "Manrope", sans-serif; font-size: clamp(14px, 1.2vw, 18px); letter-spacing: -.3px; text-transform: uppercase; }
.tool-level strong { color: var(--blue); font-family: "Manrope", sans-serif; font-size: 15px; }
.tool-progress { height: 5px; margin-top: 16px; overflow: hidden; background: #e8eef8; border-radius: 99px; }
.tool-progress span { width: var(--level); height: 100%; display: block; background: var(--gradient); border-radius: inherit; }
.design-cta { margin-top: clamp(65px, 9vw, 120px); padding: clamp(45px, 7vw, 85px); color: var(--white); background: linear-gradient(135deg, #08152f, #2864e8 62%, #09b9db); border-radius: 30px; text-align: center; box-shadow: 0 28px 65px rgba(25,78,176,.2); }
.design-cta p { margin-bottom: 10px; font-size: 11px; font-weight: 800; letter-spacing: 1.2px; text-transform: uppercase; opacity: .72; }
.design-cta h2 { max-width: 780px; margin: auto; font-family: "Manrope", sans-serif; font-size: clamp(32px, 5vw, 60px); line-height: 1.08; letter-spacing: -2.4px; }
.design-cta a { min-height: 55px; margin-top: 30px; padding: 0 25px; display: inline-flex; align-items: center; gap: 18px; color: var(--blue); background: var(--white); border-radius: 999px; font-size: 13px; font-weight: 800; transition: transform .25s ease; }
.design-cta a:hover { transform: translateY(-3px); }
.design-lightbox { width: min(94vw, 1200px); max-width: none; height: 92vh; max-height: none; margin: auto; padding: 20px; overflow: hidden; background: #071126; border: 0; border-radius: 20px; box-shadow: 0 35px 100px rgba(0,0,0,.48); }
.design-lightbox::backdrop { background: rgba(3,9,23,.9); backdrop-filter: blur(8px); }
.design-lightbox img { width: 100%; height: 100%; display: block; object-fit: contain; }
.design-lightbox button { width: 44px; height: 44px; position: absolute; top: 12px; right: 12px; z-index: 2; color: var(--ink); background: rgba(255,255,255,.94); border: 0; border-radius: 50%; font-size: 25px; cursor: pointer; box-shadow: 0 8px 24px rgba(0,0,0,.2); }

@media (max-width: 1100px) {
    .tools-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
    .design-index { grid-template-columns: repeat(2, 1fr); }
    .design-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .logo-design-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .logo-design-card-featured .logo-card-visual { aspect-ratio: 1 / 1; }
    .design-group-heading h2 { overflow-wrap: anywhere; }
    .design-tools-section { padding: clamp(32px, 6vw, 52px); border-radius: 28px; }
    .tools-intro h2 { max-width: 680px; font-size: clamp(34px, 7vw, 52px); letter-spacing: -2.5px; }
    .tools-intro > span { max-width: 600px; }
}

@media (max-width: 700px) {
    .tools-grid { grid-template-columns: 1fr; }
    .tool-card { min-height: 205px; }
    .tools-category-heading h3 { white-space: normal; }
}

@media (max-width: 560px) {
    .design-page { padding: 28px 16px 60px; }
    .design-hero { margin-top: 20px; padding: 45px 0; grid-template-columns: 1fr; align-items: start; gap: 25px; }
    .design-hero h1 { font-size: clamp(44px, 12vw, 60px); letter-spacing: -3.5px; }
    .design-hero-description { max-width: 500px; padding-bottom: 0; font-size: 15px; }
    .design-index { margin-bottom: 65px; grid-template-columns: 1fr; }
    .design-index a { min-height: 50px; justify-content: center; padding: 0 10px; font-size: 12px; }
    .design-group { padding: 20px 14px; border-radius: 22px; }
    .design-group-heading { align-items: flex-start; flex-direction: column; gap: 12px; }
    .design-group-heading h2 { font-size: 32px; letter-spacing: -1.5px; }
    .design-group-heading p { text-align: left; }
    .design-gallery { grid-template-columns: 1fr; }
    .logo-design-gallery { grid-template-columns: 1fr; }
    .logo-design-card,
    .logo-design-card-featured,
    .logo-design-card-tall { border-radius: 15px; }
    .logo-design-card-featured .logo-card-visual,
    .logo-design-card-tall .logo-card-visual { aspect-ratio: 1 / 1; }
    .logo-card-info { padding: 15px 16px 17px; }
    .logo-card-info small { max-width: 120px; }
    .design-card { border-radius: 14px; }
    .design-card::after { opacity: 1; transform: none; }
    .design-tools-section { padding: 38px 18px; border-radius: 22px; }
    .tools-intro { padding-left: 0; }
    .tools-intro > span { margin-top: 22px; }
    .tools-intro h2 { font-size: clamp(30px, 9vw, 40px); line-height: 1.08; letter-spacing: -1.8px; overflow-wrap: anywhere; }
    .tools-intro > span { font-size: 14px; line-height: 1.65; }
    .tools-category-heading { align-items: flex-start; flex-direction: column; gap: 13px; }
    .tools-category-heading span { width: 100%; flex: none; }
    .tools-grid { grid-template-columns: 1fr; }
    .tool-card { min-height: 220px; }
    .tool-logo { width: 62px; height: 62px; }
    .tool-level { padding-top: 42px; }
    .design-cta { padding: 40px 20px; border-radius: 22px; }
    .design-cta h2 { letter-spacing: -1.5px; }
    .design-cta a { width: 100%; justify-content: center; }
    .design-lightbox { width: 95vw; height: 86vh; padding: 10px; border-radius: 14px; }
}

@media (max-width: 380px) {
    .design-tools-section { padding: 30px 14px; border-radius: 18px; }
    .tools-intro h2 { font-size: 28px; }
    .tools-category-heading h3 { font-size: 14px; }
    .tool-card { min-height: 195px; padding: 22px; border-radius: 19px; }
}

@media (max-width: 380px) {
    .design-page { padding-right: 10px; padding-left: 10px; }
    .design-hero h1 { font-size: 42px; letter-spacing: -3px; }
    .design-group-heading h2 { font-size: 28px; }
    .tools-intro h2 { font-size: 32px; }
    .tool-level { align-items: flex-start; flex-direction: column; gap: 8px; }
}

@media (max-width: 850px) {
    .studio-hero { grid-template-columns: 1fr; gap: 28px; }
    .studio-intro p { max-width: 650px; }
    .studio-shot, .shot-large, .shot-tall, .shot-small, .shot-wide, .shot-medium { grid-column: span 6; width: 100%; height: auto; max-height: none; border-radius: 16px; }
    .studio-shot img { width: 100%; height: auto; object-fit: contain; }
    .marriage-gallery .marriage-shot { grid-column: span 6; height: auto; max-height: none; }
    .event-gallery .event-shot { grid-column: span 6; height: auto; max-height: none; }
    .outdoor-gallery .outdoor-shot { grid-column: span 6; height: auto; max-height: none; }
    .brand-gallery .brand-shot { grid-column: span 6; height: auto; max-height: none; }
    .brand-case-header { grid-template-columns: 1fr; align-items: start; gap: 18px; }
    .brand-case-header p { max-width: 680px; }
    .branding-page .brand-case { padding: clamp(24px, 5vw, 42px); }
    .branding-page .brand-mockup-grid { grid-template-columns: 1fr; }
    .branding-page .brand-mockup-grid .brand-presentation {
        height: auto;
        aspect-ratio: auto;
    }
    .branding-page .brand-mockup-grid .brand-presentation img {
        height: auto;
        object-fit: contain;
    }
}

@media (max-width: 700px) {
    .studio-page {
        width: 100%;
        padding: 24px 16px 48px;
    }
    .studio-gallery {
        width: 100%;
        margin-top: 32px;
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .studio-gallery > .studio-shot { grid-column: 1 / -1; }
    .marriage-gallery .marriage-shot {
        grid-column: 1 / -1;
        width: 100%;
        min-width: 0;
        height: auto;
        max-height: none;
    }
    .studio-cta {
        width: 100%;
        margin-top: 56px;
        padding: 34px 18px;
        border-radius: 20px;
    }
    .studio-cta p {
        max-width: 100%;
        line-height: 1.5;
        letter-spacing: .8px;
    }
    .studio-cta h2 {
        max-width: 100%;
        font-size: clamp(27px, 8.5vw, 40px);
        line-height: 1.12;
        letter-spacing: -1.3px;
        text-wrap: balance;
        overflow-wrap: normal;
    }
    .studio-cta a {
        width: 100%;
        min-width: 0;
        padding: 0 16px;
        justify-content: center;
        text-align: center;
    }
    .lightbox {
        width: calc(100vw - 20px);
        height: 82vh;
        height: 82dvh;
        border-radius: 12px;
    }
}

@media (max-width: 560px) {
    .studio-page { padding: 28px 18px 55px; }
    .studio-hero { padding: 46px 0 48px; }
    .studio-hero h1 { font-size: clamp(47px, 15vw, 68px); letter-spacing: -3px; }
    .studio-intro p { font-size: 15px; }
    .studio-gallery { grid-template-columns: 1fr; gap: 17px; }
    .studio-shot, .shot-large, .shot-tall, .shot-small, .shot-wide, .shot-medium { grid-column: 1 / -1; width: 100%; height: auto; max-height: none; border-radius: 14px; }
    .marriage-gallery .marriage-shot { grid-column: auto; height: auto; max-height: none; }
    .event-gallery .event-shot { grid-column: auto; height: auto; max-height: none; }
    .outdoor-gallery .outdoor-shot { grid-column: auto; height: auto; max-height: none; }
    .brand-gallery .brand-shot { grid-column: auto; height: auto; max-height: none; }
    .marriage-gallery .marriage-shot:nth-child(3n) { height: auto; }
    .event-gallery .event-shot:nth-child(3n) { height: auto; }
    .outdoor-gallery .outdoor-shot:nth-child(3n) { height: auto; }
    .brand-gallery .brand-shot:nth-child(3n) { height: auto; }
    .brand-showcase { gap: 75px; }
    .brand-case-fablomie, .brand-case-delice, .brand-case-kenley { padding: 24px 14px; border-radius: 22px; }
    .brand-case-header { margin-bottom: 24px; padding: 0 2px 20px; }
    .brand-case-header h1, .brand-case-header h2 { font-size: 36px; letter-spacing: -2px; }
    .brand-presentation { border-radius: 17px; }
    .brand-kenley-logo { min-height: 290px; padding: 45px 24px; border-radius: 17px; }
    .brand-presentation-grid { grid-template-columns: 1fr; }
    .brand-presentation-grid .brand-presentation { aspect-ratio: auto; }
    .brand-presentation-grid .brand-presentation img { height: auto; object-fit: contain; }
    .brand-mockup-grid { margin-top: 16px; grid-template-columns: 1fr; gap: 16px; }
    .brand-mockup-grid .brand-presentation { height: auto; aspect-ratio: auto; }
    .brand-mockup-grid .brand-presentation img { height: auto; object-fit: contain; }
    .branding-page .brand-showcase { gap: 58px; }
    .branding-page .brand-case-header p { font-size: 14px; line-height: 1.65; }
    .studio-cta { padding: 38px 20px; border-radius: 22px; }
    .studio-cta h2 { letter-spacing: -1.5px; }
    .studio-cta a { width: 100%; justify-content: center; }
    .lightbox { width: 94vw; height: 85vh; height: 85dvh; border-radius: 13px; }
}

/* Services page */
.services-page { width: min(1400px, 100%); margin: 0 auto; padding: clamp(65px, 8vw, 110px) 5vw 75px; }
.services-heading { max-width: 970px; margin: 0 auto clamp(55px, 7vw, 88px); text-align: center; animation: reveal .75s ease both; }
.services-heading .eyebrow { justify-content: center; }
.services-heading h1 { max-width: 970px; margin: 0 auto; font-size: clamp(48px, 6vw, 82px); }
.services-heading > p:last-child { max-width: 740px; margin: 28px auto 0; color: var(--muted); font-size: 17px; line-height: 1.75; }
.services-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.service-card { min-width: 0; min-height: 485px; padding: clamp(22px, 2.6vw, 30px); display: flex; flex-direction: column; background: rgba(255,255,255,.88); border: 1px solid rgba(255,255,255,.96); border-radius: 20px; box-shadow: 0 14px 38px rgba(24,73,158,.08); backdrop-filter: blur(12px); text-align: center; transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease; }
.service-card:hover { transform: translateY(-9px); border-color: rgba(40,100,232,.18); box-shadow: 0 24px 52px rgba(24,73,158,.15); }
.service-top { margin-bottom: 35px; display: flex; align-items: flex-start; justify-content: space-between; }
.service-icon { width: 58px; height: 58px; display: grid; place-items: center; color: var(--blue); background: linear-gradient(145deg, #edf3ff, #e7fbff); border: 1px solid rgba(40,100,232,.1); border-radius: 17px; transition: color .3s ease, background .3s ease, transform .3s ease; }
.service-icon svg { width: 27px; height: 27px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.service-card:hover .service-icon { color: var(--white); background: var(--gradient); transform: rotate(-5deg) scale(1.05); }
.service-number { color: #b8c4d8; font-size: 10px; font-weight: 800; letter-spacing: 1px; }
.service-visual { height: 215px; margin: -8px -8px 25px; overflow: hidden; display: grid; place-items: center; background: linear-gradient(145deg, #fff, #f4f8ff); border-radius: 15px; }
.service-visual img { width: 100%; height: 100%; display: block; object-fit: contain; mix-blend-mode: multiply; transition: transform .45s ease; }
.service-card:hover .service-visual img { transform: scale(1.045) translateY(-3px); }
.service-card h2 { min-height: 58px; font-family: "Manrope", sans-serif; font-size: clamp(21px, 2vw, 27px); line-height: 1.15; letter-spacing: -1px; text-align: center; }
.service-card > p { max-width: 360px; margin: 17px auto 27px; color: var(--muted); font-size: 14px; line-height: 1.7; text-align: center; }
.service-card > a { width: fit-content; margin-top: auto; display: inline-flex; align-items: center; gap: 12px; color: var(--ink); font-size: 12px; font-weight: 800; }
.service-card > a span { color: var(--blue); font-size: 18px; transition: transform .25s ease; }
.service-card > a:hover { color: var(--blue); }
.service-card > a:hover span { transform: translateX(5px); }
.services-cta { margin-top: clamp(70px, 9vw, 125px); padding: clamp(38px, 6vw, 72px); position: relative; overflow: hidden; display: flex; align-items: center; justify-content: space-between; gap: 45px; color: var(--white); background: linear-gradient(135deg, #0c2354, #2864e8 58%, #09b9db); border-radius: 28px; box-shadow: 0 28px 65px rgba(25,78,176,.22); }
.services-cta::after { content: ""; width: 230px; height: 230px; position: absolute; right: -70px; bottom: -140px; border: 1px solid rgba(255,255,255,.17); border-radius: 50%; }
.services-cta div { position: relative; z-index: 1; }
.services-cta p { margin-bottom: 9px; font-size: 11px; font-weight: 800; letter-spacing: 1.2px; text-transform: uppercase; opacity: .7; }
.services-cta h2 { max-width: 750px; font-family: "Manrope", sans-serif; font-size: clamp(29px, 4vw, 50px); line-height: 1.12; letter-spacing: -2px; }
.services-cta > a { min-height: 55px; padding: 0 25px; position: relative; z-index: 1; flex: 0 0 auto; display: inline-flex; align-items: center; gap: 17px; color: var(--blue); background: var(--white); border-radius: 999px; font-size: 13px; font-weight: 800; transition: transform .25s ease; }
.services-cta > a:hover { transform: translateY(-3px); }

@media (max-width: 1000px) {
    .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .service-card { min-height: 470px; }
    .service-visual { height: 225px; }
}

@media (max-width: 780px) {
    .services-page { width: 100%; max-width: 100%; padding-left: 24px; padding-right: 24px; overflow: hidden; }
    .services-heading h1 { font-size: clamp(44px, 9vw, 66px); }
    .services-grid { width: 100%; grid-template-columns: minmax(0, 1fr); gap: 20px; }
    .service-card { width: 100%; max-width: 620px; min-height: 0; margin-inline: auto; padding: 24px; }
    .service-visual { width: 100%; height: auto; aspect-ratio: 16 / 10; }
    .service-visual img { max-width: 100%; }
    .service-card h2, .service-card > p { overflow-wrap: anywhere; }
    .services-cta { flex-direction: column; align-items: flex-start; }
    .services-cta > a { width: 100%; justify-content: center; }
}

@media (max-width: 680px) {
    .services-page { padding: 48px 20px 55px; }
    .services-heading { margin-bottom: 45px; }
    .services-heading h1 { font-size: clamp(42px, 12vw, 60px); letter-spacing: -3px; }
    .services-heading > p:last-child { font-size: 15px; }
    .services-grid { grid-template-columns: 1fr; gap: 18px; }
    .service-card { min-height: 0; padding: 25px; border-radius: 18px; }
    .service-visual { height: min(64vw, 285px); }
    .service-top { margin-bottom: 27px; }
    .service-card h2 { min-height: 0; }
    .services-cta { padding: 35px 22px; flex-direction: column; align-items: flex-start; border-radius: 22px; }
    .services-cta > a { width: 100%; justify-content: center; }
}

@media (max-width: 430px) {
    .services-page { padding: 38px 15px 46px; }
    .services-heading { margin-bottom: 35px; }
    .services-heading h1 { font-size: clamp(38px, 12vw, 49px); line-height: 1.02; letter-spacing: -2.5px; }
    .services-heading > p:last-child { margin-top: 21px; font-size: 14px; line-height: 1.65; }
    .service-card { padding: 18px; border-radius: 16px; }
    .service-visual { height: 68vw; max-height: 265px; margin: -4px -4px 21px; border-radius: 13px; }
    .service-card h2 { font-size: 22px; }
    .service-card > p { margin-bottom: 7px; font-size: 13px; }
    .services-cta { margin-top: 55px; padding: 30px 18px; }
    .services-cta h2 { font-size: 28px; letter-spacing: -1.3px; }
}

@media (hover: none) {
    .service-card:hover { transform: none; }
    .service-card:hover .service-visual img { transform: none; }
}

/* About page */
.about-page { width: min(1400px, 100%); margin: 0 auto; padding: clamp(65px, 8vw, 110px) 5vw 75px; }
.about-layout { display: grid; grid-template-columns: minmax(360px, .88fr) minmax(480px, 1.12fr); align-items: center; gap: clamp(55px, 9vw, 135px); }
.about-visual { min-height: 670px; position: relative; display: grid; place-items: center; animation: reveal .75s ease both; }
.about-visual::before { content: ""; width: 82%; height: 82%; position: absolute; top: 9%; left: 9%; z-index: -1; background: linear-gradient(145deg, rgba(40,100,232,.18), rgba(9,185,219,.14)); border-radius: 42% 58% 55% 45% / 48% 42% 58% 52%; transform: rotate(-5deg); }
.about-photo { width: min(100%, 510px); height: 650px; position: relative; overflow: hidden; background: #dbe7fa; border: 1px solid rgba(255,255,255,.7); border-radius: 30px 190px 30px 30px; box-shadow: 0 35px 75px rgba(24,73,158,.19); }
.about-photo img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: center 34%; transition: transform .7s ease; }
.about-photo:hover img { transform: scale(1.025); }
.about-photo::after { content: ""; position: absolute; inset: 55% 0 0; background: linear-gradient(to top, rgba(5,20,52,.42), transparent); pointer-events: none; }
.about-photo-tag { position: absolute; right: 18px; bottom: 18px; left: 18px; z-index: 2; padding: 14px 17px; color: var(--white); background: rgba(8,21,47,.3); border: 1px solid rgba(255,255,255,.35); border-radius: 14px; font-size: 11px; font-weight: 800; letter-spacing: 1px; text-align: center; text-transform: uppercase; backdrop-filter: blur(12px); }
.about-experience { min-width: 155px; padding: 18px 21px; position: absolute; right: -5px; bottom: 50px; z-index: 3; display: flex; align-items: center; gap: 12px; background: rgba(255,255,255,.95); border: 1px solid var(--line); border-radius: 18px; box-shadow: 0 17px 38px rgba(24,73,158,.16); }
.about-experience strong { color: var(--blue); font-family: "Manrope", sans-serif; font-size: 35px; line-height: 1; letter-spacing: -2px; }
.about-experience sup { color: var(--blue-light); font-size: .5em; }
.about-experience span { color: var(--muted); font-size: 9px; font-weight: 800; line-height: 1.35; letter-spacing: .7px; text-transform: uppercase; }
.about-spark { position: absolute; top: 20px; left: 2%; color: var(--blue); font-size: 34px; }
.about-content { animation: reveal .75s .12s ease both; }
.about-content h1 { max-width: 720px; font-size: clamp(50px, 6vw, 82px); }
.about-lead { max-width: 720px; margin-top: 30px; color: var(--ink); font-size: clamp(17px, 1.4vw, 20px); line-height: 1.7; }
.about-text { max-width: 720px; margin-top: 18px; color: var(--muted); font-size: 15px; line-height: 1.78; }
.about-values { margin-top: 35px; display: grid; gap: 12px; }
.about-values > div { padding: 13px 16px; display: grid; grid-template-columns: 34px minmax(130px, .7fr) 1.3fr; align-items: center; gap: 11px; background: rgba(255,255,255,.65); border: 1px solid rgba(255,255,255,.92); border-radius: 14px; transition: background .25s ease, transform .25s ease; }
.about-values > div:hover { background: var(--white); transform: translateX(5px); }
.about-values div > span { width: 30px; height: 30px; display: grid; place-items: center; color: var(--white); background: var(--gradient); border-radius: 50%; font-size: 12px; font-weight: 800; }
.about-values strong { font-size: 13px; }
.about-values small { color: var(--muted); font-size: 11px; line-height: 1.4; }
.about-actions { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 12px; }
.about-quote { margin-top: clamp(85px, 10vw, 145px); padding: clamp(38px, 6vw, 70px); position: relative; overflow: hidden; color: var(--white); background: linear-gradient(125deg, #091d49, #1f54bd 62%, #09aeca); border-radius: 28px; text-align: center; box-shadow: 0 28px 65px rgba(25,78,176,.2); }
.about-quote > span { position: absolute; top: -40px; left: 5%; color: rgba(255,255,255,.1); font-family: Georgia, serif; font-size: 190px; line-height: 1; }
.about-quote p { max-width: 940px; margin: 0 auto; position: relative; font-family: "Manrope", sans-serif; font-size: clamp(25px, 4vw, 44px); font-weight: 700; line-height: 1.25; letter-spacing: -1.5px; }
.about-quote small { margin-top: 22px; display: block; font-size: 10px; font-weight: 800; letter-spacing: 1.2px; text-transform: uppercase; opacity: .68; }

@media (max-width: 980px) {
    .about-layout { grid-template-columns: 1fr; }
    .about-visual { width: min(100%, 620px); margin: 0 auto; }
    .about-content { max-width: 760px; margin: 0 auto; text-align: center; }
    .about-content .eyebrow, .about-actions { justify-content: center; }
    .about-content h1, .about-lead, .about-text { margin-left: auto; margin-right: auto; }
    .about-values { text-align: left; }
}

@media (max-width: 600px) {
    .about-page { padding: 45px 20px 55px; }
    .about-layout { gap: 48px; }
    .about-visual { min-height: auto; }
    .about-photo { height: 125vw; max-height: 620px; border-radius: 24px 140px 24px 24px; }
    .about-experience { right: 8px; bottom: 25px; }
    .about-spark { display: none; }
    .about-content h1 { font-size: clamp(43px, 13vw, 62px); letter-spacing: -3px; }
    .about-values > div { grid-template-columns: 34px 1fr; }
    .about-values small { grid-column: 2; }
    .about-actions .button { width: 100%; }
    .about-quote { padding: 38px 20px; border-radius: 22px; }
}

@media (max-width: 380px) {
    .about-page { padding-left: 14px; padding-right: 14px; }
    .about-experience { min-width: 135px; padding: 14px; }
    .about-experience strong { font-size: 29px; }
    .about-photo-tag { font-size: 9px; }
}

/* Global responsive safety layer */
img, video, canvas, svg { max-width: 100%; }
img { height: auto; }
main, section, article, div, form { min-width: 0; }
input, select, textarea, button { max-width: 100%; }

@media (max-width: 1024px) {
    .site-header { padding-inline: 32px; }
    .navbar { width: 100%; }
    .nav-links { display: none; }
    .mobile-menu { display: block; }
    .hero,
    .contact-page,
    .about-layout,
    .projects-hero { grid-template-columns: minmax(0, 1fr); }
    .hero { min-height: auto; }
    .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 850px) {
    .site-header { padding-inline: 24px; }
    .navbar { min-height: 76px; gap: 16px; }
    .nav-cta { display: none; }
    .logo img { width: 56px; height: 56px; }
    .hero,
    .contact-page,
    .projects-page,
    .services-page,
    .about-page { width: 100%; padding-left: 24px; padding-right: 24px; }
    .hero-content,
    .contact-intro,
    .services-heading,
    .about-content { text-align: center; }
    .hero-content .eyebrow,
    .contact-intro .eyebrow,
    .services-heading .eyebrow,
    .about-content .eyebrow,
    .hero-actions,
    .about-actions { justify-content: center; }
    .project-grid,
    .services-grid { grid-template-columns: minmax(0, 1fr); }
    .project-card,
    .service-card { width: min(100%, 650px); margin-inline: auto; }
    .project-card:nth-child(even),
    .project-card:nth-child(even):hover { transform: none; }
    .form-row { grid-template-columns: minmax(0, 1fr); }
    .projects-cta,
    .services-cta { flex-direction: column; align-items: flex-start; }
    .projects-cta > a,
    .services-cta > a { width: 100%; justify-content: center; }
}

@media (max-width: 600px) {
    .site-header { padding-inline: 16px; }
    .navbar { min-height: 68px; }
    .logo img { width: 48px; height: 48px; }
    .mobile-menu summary { width: 42px; height: 42px; }
    .mobile-menu-panel { width: calc(100vw - 32px); max-width: 320px; right: 0; }
    .hero,
    .contact-page,
    .projects-page,
    .services-page,
    .about-page,
    .studio-page { padding-left: 16px; padding-right: 16px; }
    h1,
    .projects-hero h1,
    .services-heading h1,
    .about-content h1 { max-width: 100%; font-size: clamp(38px, 12vw, 56px); line-height: 1.02; letter-spacing: -2.5px; overflow-wrap: anywhere; }
    .intro,
    .projects-lead,
    .services-heading > p:last-child,
    .about-lead,
    .about-text { font-size: 15px; }
    .hero-actions,
    .about-actions { width: 100%; flex-direction: column; }
    .hero-actions .button,
    .about-actions .button { width: 100%; }
    .image-frame,
    .about-photo { width: 100%; }
    .form-card { width: 100%; padding: 22px 16px; }
    .form-group input,
    .form-group select,
    .form-group textarea { font-size: 16px; }
    .portfolio-strip { width: 100%; }
    .projects-cta,
    .services-cta,
    .about-quote,
    .studio-cta { width: 100%; padding: 30px 18px; border-radius: 20px; }
    .site-footer { width: calc(100% - 32px); margin-inline: auto; padding-inline: 8px; }
}

@media (max-width: 360px) {
    .hero,
    .contact-page,
    .projects-page,
    .services-page,
    .about-page,
    .studio-page { padding-left: 12px; padding-right: 12px; }
    h1,
    .projects-hero h1,
    .services-heading h1,
    .about-content h1 { font-size: 36px; letter-spacing: -2px; }
    .eyebrow { font-size: 9px; letter-spacing: .7px; }
    .mobile-menu-panel { width: calc(100vw - 24px); }
}

/* Contact page */
.contact-page {
    width: min(1400px, 100%);
    min-height: calc(100vh - 170px);
    margin: 0 auto;
    padding: clamp(54px, 7vw, 100px) 5vw 70px;
    display: grid;
    grid-template-columns: minmax(280px, .78fr) minmax(500px, 1.22fr);
    align-items: start;
    column-gap: clamp(50px, 8vw, 130px);
    row-gap: 0;
    overflow: hidden;
}

.contact-intro { padding-top: 22px; animation: reveal .7s ease both; }
.contact-intro h1 { max-width: 620px; font-size: clamp(48px, 5vw, 75px); }
.contact-intro > p:not(.eyebrow) { max-width: 560px; margin: 28px 0 42px; color: var(--muted); font-size: 17px; line-height: 1.75; }
.contact-info { grid-column: 1; grid-row: 2; animation: reveal .7s .08s ease both; }
.form-card { grid-column: 2; grid-row: 1 / span 2; }
.contact-details { margin-top: 18px; display: flex; align-items: center; gap: 14px; }
.contact-detail-icon { width: 45px; height: 45px; flex: 0 0 auto; display: grid; place-items: center; color: var(--blue); background: var(--white); border: 1px solid var(--line); border-radius: 14px; font-size: 19px; }
.contact-details div:last-child { display: flex; flex-direction: column; gap: 3px; }
.contact-details span { color: var(--muted); font-size: 11px; font-weight: 700; letter-spacing: .8px; text-transform: uppercase; }
.contact-details strong { font-size: 14px; }
.contact-details strong a { transition: color .2s ease; }
.contact-details strong a:hover { color: var(--blue); }

.form-card { width: 100%; min-width: 0; padding: clamp(25px, 4vw, 48px); background: rgba(255,255,255,.88); border: 1px solid rgba(255,255,255,.9); border-radius: 30px; box-shadow: 0 30px 80px rgba(29,74,149,.12); backdrop-filter: blur(18px); animation: reveal .7s .12s ease both; }
.form-heading { margin-bottom: 35px; padding-bottom: 24px; display: flex; justify-content: space-between; align-items: flex-start; border-bottom: 1px solid var(--line); }
.form-heading div > span { color: var(--blue); font-size: 11px; font-weight: 800; letter-spacing: 1.3px; text-transform: uppercase; }
.form-heading h2 { margin-top: 7px; font-family: "Manrope", sans-serif; font-size: clamp(27px, 3vw, 38px); letter-spacing: -1.5px; }
.form-number { color: rgba(40,100,232,.18); font-family: "Manrope", sans-serif; font-size: 38px; font-weight: 800; }
.contact-form { display: flex; flex-direction: column; gap: 22px; }
.form-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.form-group { min-width: 0; display: flex; flex-direction: column; gap: 9px; }
.form-group label { font-size: 12px; font-weight: 800; letter-spacing: .25px; }
.form-group label span { color: var(--blue); }
.form-group input, .form-group select, .form-group textarea { width: 100%; color: var(--ink); background: #f6f9fe; border: 1px solid transparent; border-radius: 13px; outline: none; font: inherit; font-size: 14px; transition: border-color .2s ease, box-shadow .2s ease, background .2s ease; }
.form-group input, .form-group select { height: 53px; padding: 0 16px; }
.form-group textarea { min-height: 145px; padding: 15px 16px; resize: vertical; line-height: 1.55; }
.form-group input::placeholder, .form-group textarea::placeholder { color: #99a5bb; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { background: var(--white); border-color: rgba(40,100,232,.55); box-shadow: 0 0 0 4px rgba(40,100,232,.09); }
.form-submit-row { margin-top: 4px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.form-submit-row p { max-width: 310px; color: var(--muted); font-size: 10px; line-height: 1.5; }
.form-submit-row button { min-height: 54px; padding: 0 24px; display: inline-flex; align-items: center; justify-content: center; gap: 18px; color: var(--white); background: var(--gradient); border: 0; border-radius: 999px; font: inherit; font-size: 13px; font-weight: 800; cursor: pointer; box-shadow: 0 13px 28px rgba(40,100,232,.2); transition: transform .25s ease, box-shadow .25s ease; }
.form-submit-row button:hover { transform: translateY(-3px); box-shadow: 0 18px 34px rgba(40,100,232,.3); }
.direct-whatsapp { margin-top: 25px; padding: 16px 19px; display: flex; align-items: center; gap: 14px; color: var(--white); background: linear-gradient(135deg, #128c58, #25d366); border-radius: 17px; box-shadow: 0 15px 32px rgba(37,211,102,.18); transition: transform .25s ease, box-shadow .25s ease; }
.direct-whatsapp:hover { transform: translateY(-3px); box-shadow: 0 19px 38px rgba(37,211,102,.28); }
.direct-whatsapp > span:nth-child(2) { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.direct-whatsapp small { font-size: 10px; opacity: .8; }
.direct-whatsapp strong { font-size: 14px; }
.whatsapp-symbol { width: 40px; height: 40px; display: grid; place-items: center; background: rgba(255,255,255,.16); border-radius: 50%; font-size: 20px; }

@media (max-width: 980px) {
    .contact-page { width: min(760px, 100%); grid-template-columns: minmax(0, 1fr); gap: 48px; }
    .contact-intro { padding-top: 0; text-align: center; }
    .contact-intro .eyebrow { justify-content: center; }
    .contact-intro h1, .contact-intro > p:not(.eyebrow) { margin-left: auto; margin-right: auto; }
    .contact-intro { grid-column: 1; grid-row: 1; }
    .form-card { grid-column: 1; grid-row: 2; }
    .contact-info { grid-column: 1; grid-row: 3; width: min(100%, 600px); margin: 0 auto; padding: 26px; background: rgba(255,255,255,.62); border: 1px solid rgba(255,255,255,.85); border-radius: 24px; }
    .contact-details { justify-content: flex-start; }
}

@media (max-width: 760px) {
    .contact-page { padding-top: 48px; }
    .form-card { border-radius: 26px; }
    .form-heading { margin-bottom: 29px; }
}

@media (max-width: 600px) {
    .contact-page { padding: 42px 20px 50px; gap: 38px; }
    .contact-intro h1 { font-size: clamp(42px, 13vw, 60px); }
    .contact-intro > p:not(.eyebrow) { margin: 23px 0 32px; font-size: 15px; }
    .contact-details { width: 100%; justify-content: flex-start; text-align: left; }
    .contact-details div:last-child { min-width: 0; }
    .contact-details strong, .contact-details strong a { overflow-wrap: anywhere; }
    .form-card { padding: 25px 18px; border-radius: 22px; }
    .form-row { grid-template-columns: 1fr; }
    .form-submit-row { flex-direction: column; align-items: stretch; }
    .form-submit-row p { max-width: none; text-align: center; }
    .form-submit-row button { width: 100%; }
    .direct-whatsapp { padding: 14px; }
    .direct-whatsapp strong { font-size: 13px; }
}

@media (max-width: 390px) {
    .contact-page { padding: 34px 14px 42px; }
    .contact-intro h1 { font-size: 38px; letter-spacing: -2.2px; }
    .contact-intro .eyebrow { justify-content: center; }
    .contact-detail-icon { width: 41px; height: 41px; }
    .contact-details strong { font-size: 12px; }
    .form-card { padding: 22px 14px; border-radius: 19px; }
    .form-heading { gap: 10px; }
    .form-heading h2 { font-size: 25px; }
    .form-number { font-size: 30px; }
    .form-group input, .form-group select { height: 50px; }
    .form-group input, .form-group select, .form-group textarea { font-size: 16px; }
    .direct-whatsapp { gap: 10px; }
    .whatsapp-symbol { width: 36px; height: 36px; }
}

/* Final contact responsive overrides */
@media (max-width: 850px) {
    .contact-page { width: 100%; max-width: 760px; padding-left: 24px; padding-right: 24px; grid-template-columns: minmax(0, 1fr); }
    .form-card, .contact-intro, .contact-info { width: 100%; max-width: 100%; }
    .form-row { grid-template-columns: minmax(0, 1fr); }
}

@media (max-width: 600px) {
    .contact-page { padding: 40px 16px 48px; }
    .form-card { padding: 22px 16px; }
    .form-submit-row { flex-direction: column; align-items: stretch; }
    .form-submit-row button { width: 100%; }
}

@media (max-width: 360px) {
    .contact-page { padding-left: 12px; padding-right: 12px; }
    .form-card { padding: 20px 12px; }
}

/* Preserve complete project artwork on mobile */
.project-design .project-image,
.project-branding .project-image { height: auto; aspect-ratio: auto; background: #eef4ff; }
.project-card-tall { order: 1; }
.project-outdoor { order: 2; }
.project-event { order: 3; }
.project-design { order: 4; }
.project-branding { order: 5; }
.project-card:nth-child(even),
.project-card:nth-child(even):hover { transform: none; }
.project-design .project-image img,
.project-branding .project-image img { width: 100%; height: auto; object-fit: contain; object-position: center; }

/* Tarification */
.pricing-page { width: min(1400px, 100%); margin: 0 auto; padding: clamp(30px, 4vw, 54px) 5vw 64px; }
.pricing-hero { min-height: clamp(125px, 15vw, 190px); display: flex; align-items: center; }
.pricing-hero-copy { max-width: 830px; }
.pricing-hero h1 { font-size: clamp(64px, 9vw, 132px); line-height: .95; letter-spacing: -6px; }
.pricing-hero h1 em, .pricing-category-heading h2 em { color: var(--blue); font-style: normal; }
.pricing-hero-copy > p:last-child { max-width: 680px; margin-top: 30px; color: var(--muted); font-size: 17px; line-height: 1.8; }
.pricing-jump { display: flex; flex-direction: column; border-top: 1px solid var(--line); }
.pricing-jump a { min-height: 76px; display: flex; align-items: center; gap: 24px; color: var(--ink); border-bottom: 1px solid var(--line); font-family: "Manrope", sans-serif; font-size: 18px; font-weight: 800; transition: color .2s ease, padding-left .2s ease; }
.pricing-jump a:hover { padding-left: 8px; color: var(--blue); }
.pricing-jump span { color: var(--blue-light); font: 800 10px "DM Sans", sans-serif; letter-spacing: 1px; }
.pricing-category { padding-top: clamp(44px, 5vw, 70px); scroll-margin-top: 95px; }
.pricing-hero + .pricing-category { padding-top: 0; }
#graphic-design { padding-top: 24px; }
.pricing-category-heading { margin-bottom: 20px; }
.pricing-index { margin-bottom: 15px; color: var(--blue); font-size: 11px; font-weight: 800; letter-spacing: 1.2px; text-transform: uppercase; }
.pricing-category-heading h2 { max-width: 820px; font-family: "Manrope", sans-serif; font-size: clamp(38px, 4.7vw, 67px); line-height: 1.04; letter-spacing: -3px; }
.pricing-category-heading > p { padding-bottom: 5px; color: var(--muted); font-size: 15px; line-height: 1.75; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; align-items: stretch; }
.price-card { min-width: 0; overflow: hidden; display: flex; flex-direction: column; background: rgba(255,255,255,.92); border: 1px solid rgba(31,83,175,.12); border-radius: 25px; box-shadow: 0 18px 50px rgba(28,71,145,.09); transition: transform .28s ease, box-shadow .28s ease; }
.price-card:hover { transform: translateY(-6px); box-shadow: 0 27px 60px rgba(28,71,145,.15); }
.price-card > img { width: 100%; height: 220px; display: block; object-fit: cover; object-position: center; filter: saturate(.9); }
#mariage .price-card > img { object-position: center 24%; }
#graduation .price-card:nth-child(1) > img { object-position: center 22%; }
#graduation .price-card:nth-child(2) > img { object-position: center 38%; }
#graduation .price-card:nth-child(3) > img { object-position: center 26%; }
#studio .price-card:nth-child(1) > img { object-position: center 17%; }
#studio .price-card:nth-child(2) > img { object-position: center 30%; }
#studio .price-card:nth-child(3) > img { object-position: center 20%; }
.price-card-content { min-height: 415px; padding: 24px 24px 22px; display: flex; flex-direction: column; }
.price-card-kicker { margin-bottom: 10px; color: var(--blue); font-size: 10px; font-weight: 800; letter-spacing: 1.15px; text-transform: uppercase; }
.price-title-row { padding-bottom: 17px; display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 8px 15px; border-bottom: 1px solid var(--line); }
.price-title-row h3 { font-family: "Manrope", sans-serif; font-size: clamp(27px, 2.5vw, 37px); letter-spacing: -1.7px; }
.price-title-row strong { flex: 0 0 auto; color: var(--blue); font-family: "Manrope", sans-serif; font-size: 20px; white-space: nowrap; }
.price-title-stack { align-items: flex-start; flex-direction: column; gap: 4px; }
.price-card ul { margin: 19px 0 23px; display: flex; flex-direction: column; gap: 10px; list-style: none; }
.price-card li { position: relative; padding-left: 25px; color: #43526c; font-size: 14px; line-height: 1.45; }
.price-card li::before { content: "✓"; width: 17px; height: 17px; position: absolute; top: 1px; left: 0; display: grid; place-items: center; color: var(--white); background: var(--blue-light); border-radius: 50%; font-size: 10px; font-weight: 800; }
.price-card-content > a { min-height: 50px; margin-top: auto; padding: 0 19px; display: flex; align-items: center; justify-content: center; color: var(--white); background: var(--gradient); border-radius: 999px; box-shadow: 0 12px 25px rgba(40,100,232,.2); font-size: 13px; font-weight: 800; text-align: center; transition: transform .22s ease, box-shadow .22s ease, filter .22s ease; }
.price-card-content > a:hover { filter: saturate(1.15) brightness(.96); transform: translateY(-2px); box-shadow: 0 16px 30px rgba(40,100,232,.3); }
.price-card-content > a span,
.pricing-footer-cta a span { display: none; }
.compact-price-card > img { height: 220px; }
.design-price-card > img { object-fit: cover; padding: 0; background: #eef4ff; }
#graphic-design .price-card:nth-child(2) > img { object-fit: contain; object-position: center; padding: 14px; background: var(--white); }
.compact-price-card .price-card-content { min-height: 155px; }
.price-note { margin: 22px 0 28px; color: var(--muted); font-size: 14px; }
.pricing-footer-cta { margin-top: clamp(46px, 6vw, 75px); padding: clamp(36px, 5vw, 58px); overflow: hidden; position: relative; color: var(--white); background: linear-gradient(135deg, #0b1f48, #164599 60%, #087f9a); border-radius: 30px; }
.pricing-footer-cta::after { content: ""; width: 260px; height: 260px; position: absolute; right: -95px; bottom: -155px; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; }
.pricing-footer-cta p { margin-bottom: 10px; color: #72deef; font-size: 11px; font-weight: 800; letter-spacing: 1.2px; text-transform: uppercase; }
.pricing-footer-cta h2 { max-width: 850px; font-family: "Manrope", sans-serif; font-size: clamp(36px, 5vw, 65px); line-height: 1.07; letter-spacing: -3px; }
.pricing-footer-cta a { min-height: 54px; width: fit-content; margin-top: 30px; padding: 0 22px; position: relative; z-index: 1; display: inline-flex; align-items: center; gap: 17px; color: var(--ink); background: var(--white); border-radius: 999px; font-size: 13px; font-weight: 800; }

@media (max-width: 900px) {
    .pricing-hero { min-height: 145px; }
    .pricing-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .price-card:last-child { grid-column: 1 / -1; width: calc(50% - 12px); justify-self: center; }
}

@media (max-width: 820px) {
    .pricing-hero { min-height: 135px; }
    .pricing-category-heading { grid-template-columns: 1fr; gap: 20px; }
    .pricing-category-heading > p { max-width: 620px; }
    .pricing-hero h1 { letter-spacing: -3.5px; }
}

@media (max-width: 650px) {
    .pricing-page { padding: 26px 16px 48px; }
    .pricing-hero h1 { font-size: clamp(58px, 18vw, 86px); letter-spacing: -4px; }
    .pricing-hero-copy > p:last-child { margin-top: 23px; font-size: 15px; }
    .pricing-jump a { min-height: 65px; }
    .pricing-category { padding-top: 42px; }
    .pricing-hero + .pricing-category { padding-top: 0; }
    #graphic-design { padding-top: 20px; }
    .pricing-category-heading { margin-bottom: 18px; }
    .pricing-category-heading h2 { font-size: clamp(36px, 11vw, 50px); letter-spacing: -2.3px; }
    .pricing-grid { grid-template-columns: 1fr; gap: 18px; }
    .price-card:last-child { grid-column: auto; width: 100%; }
    .price-card > img, .compact-price-card > img { height: min(62vw, 280px); }
    .price-card-content, .compact-price-card .price-card-content { min-height: 0; padding: 21px 18px 18px; }
    .price-card ul { margin-bottom: 20px; }
    .price-card-content > a { margin-top: 8px; }
    .pricing-footer-cta { padding: 39px 23px; border-radius: 25px; }
    .pricing-footer-cta h2 { letter-spacing: -2px; }
}

@media (max-width: 390px) {
    .pricing-page { padding-inline: 12px; }
    .pricing-hero { min-height: 110px; }
    .pricing-hero h1 { font-size: 52px; letter-spacing: -3px; }
    .pricing-category-heading h2 { font-size: 34px; }
    .price-title-row { align-items: flex-start; flex-direction: column; }
    .price-title-row strong { font-size: 19px; }
    .price-card > img, .compact-price-card > img { height: 230px; }
}

@media (max-width: 600px) {
    .project-grid { width: 100%; }
    .project-card { width: 100%; max-width: 100%; }
    .project-card > a { width: 100%; display: block; }
    .project-image,
    .project-card-tall .project-image,
    .project-card-wide .project-image { width: 100%; height: auto; max-height: none; aspect-ratio: auto; display: block; background: #eef4ff; }
    .project-image img,
    .project-card-tall .project-image img,
    .project-card-wide .project-image img { width: 100%; height: auto; max-height: none; object-fit: contain; object-position: center; }
    .project-design .image-category,
    .project-branding .image-category { display: none; }
    .project-design .project-arrow,
    .project-branding .project-arrow { width: 40px; height: 40px; top: 10px; right: 10px; font-size: 17px; }
    .project-design .project-meta,
    .project-branding .project-meta { padding-top: 17px; }
}

/* Wedding contract */
.marriage-contract { width: min(980px, 100%); margin: 32px auto 0; padding: clamp(22px, 3vw, 30px); display: flex; align-items: center; justify-content: space-between; gap: 24px; color: var(--white); background: linear-gradient(135deg, #0b1f48, #164599 62%, #087f9a); border-radius: 22px; box-shadow: 0 17px 42px rgba(28,71,145,.16); }
.marriage-contract p { margin-bottom: 6px; color: #72deef; font-size: 10px; font-weight: 800; letter-spacing: 1.1px; text-transform: uppercase; }
.marriage-contract h2,
.marriage-contract h3 { max-width: 590px; font-family: "Manrope", sans-serif; font-size: clamp(24px, 2.7vw, 34px); line-height: 1.1; letter-spacing: -1.4px; }
.marriage-contract div > span { display: block; max-width: 590px; margin-top: 9px; color: rgba(255,255,255,.76); font-size: 13px; line-height: 1.55; }
.marriage-contract a { min-height: 48px; flex: 0 0 auto; padding: 0 19px; display: inline-flex; align-items: center; gap: 12px; color: var(--ink); background: var(--white); border-radius: 999px; font-size: 12px; font-weight: 800; transition: transform .2s ease, box-shadow .2s ease; }
.marriage-contract a:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(0,0,0,.2); }

@media (max-width: 720px) {
    .marriage-contract { width: 100%; margin-top: 26px; padding: 22px 18px; align-items: flex-start; flex-direction: column; gap: 18px; border-radius: 19px; }
    .marriage-contract h2,
    .marriage-contract h3 { font-size: clamp(23px, 7.5vw, 30px); letter-spacing: -1.1px; overflow-wrap: anywhere; }
    .marriage-contract a { width: 100%; min-height: 46px; justify-content: center; }
}

@media (max-width: 380px) {
    .marriage-contract { padding: 19px 14px; border-radius: 17px; }
    .marriage-contract h2,
    .marriage-contract h3 { font-size: 22px; }
}
