@font-face {
  font-family: Barlow;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(/assets/fonts/barlow-condensed-latin-ext.woff2) format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: Barlow;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(/assets/fonts/barlow-condensed-latin.woff2) format("woff2");
  unicode-range: U+0-FF, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url(/assets/fonts/manrope-latin-ext.woff2) format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url(/assets/fonts/manrope-latin.woff2) format("woff2");
  unicode-range: U+0-FF, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* Sirius — bright white, graphite and electric lemon. */
:root {
  color-scheme:light;
  --bg:#ffffff; --panel:#f3f5f5; --surface:#fafbfb;
  --ink:#181c20; --ink-hover:#323a40; --muted:#626a70; --line:#e0e4e5; --line-strong:#aab2b7;
  --accent:#dfff4f; --accent-hover:#c9ee37; --accent-text:#181c20; --accent-soft:#f5f9e8;
  --font:Manrope,Arial,sans-serif; --display:Manrope,Arial,sans-serif;
  --max:1320px; --gutter:48px; --header-height:92px;
}
* { box-sizing:border-box; }
html { scroll-behavior:smooth; scroll-padding-top:calc(var(--header-height) + 24px); }
body { margin:0; background:var(--bg); color:var(--ink); font-family:var(--font); font-size:16px; line-height:1.7; -webkit-font-smoothing:antialiased; }
body.menu-open,body.dialog-open { overflow:hidden; }
[hidden] { display:none!important; }
a { color:inherit; text-decoration:none; }
button,input,select,textarea { font:inherit; }
button { cursor:pointer; color:inherit; }
a,button { touch-action:manipulation; }
button,a,input,select,textarea,summary { -webkit-tap-highlight-color:transparent; }
img { display:block; max-width:100%; height:auto; }
svg,.icon { flex-shrink:0; }
.icon { width:22px; height:22px; vertical-align:middle; }
.icon-whatsapp { display:inline-block; object-fit:contain; flex-shrink:0; }
a:focus-visible,button:focus-visible,summary:focus-visible,input:focus-visible,select:focus-visible,textarea:focus-visible { outline:2px solid var(--accent-text); outline-offset:5px; }
::selection { background:var(--accent); color:var(--ink); }
h1,h2,h3,h4,p,figure { margin:0; }
h1,h2,h3,h4 { line-height:1.12; letter-spacing:-.045em; }
h1,h2 { font-family:var(--display); font-weight:650; }
h2 { font-size:clamp(2.25rem,3.7vw,3.45rem); }
h3,h4 { font-family:var(--font); font-weight:650; }
p { color:var(--muted); }
p+p { margin-top:18px; }
.container { width:min(var(--max),calc(100% - var(--gutter)*2)); margin-inline:auto; }
.section { padding-block:110px; }
.text-muted { color:var(--muted); }
.eyebrow { display:inline-flex; align-items:center; gap:12px; margin-bottom:19px; font-size:.75rem; line-height:1.5; letter-spacing:.12em; font-weight:650; color:var(--accent-text); text-transform:uppercase; }
.eyebrow i { display:block; width:18px; height:8px; border-radius:2px; background:var(--accent); }
.eyebrow.muted { color:var(--muted); }
.text-link { display:inline-flex; align-items:center; gap:18px; min-height:44px; font-size:.875rem; font-weight:650; line-height:1.5; }
.text-link .icon { width:19px; height:19px; transition:transform .2s; }
.text-link:hover .icon { transform:translateX(3px); }
.text-link:hover { color:var(--accent-text); }
.button { display:inline-flex; justify-content:center; align-items:center; gap:25px; padding:17px 23px; min-height:56px; border:1px solid var(--ink); border-radius:8px; background:var(--ink); color:#fff; font-size:.875rem; line-height:1.4; font-weight:650; transition:background .2s,border-color .2s,transform .2s; }
.button .icon { width:19px; height:19px; }
.button:hover { background:var(--ink-hover); border-color:var(--ink-hover); transform:translateY(-2px); }
.button-small { min-height:46px; padding:12px 18px; }
.button-light { background:var(--accent); border-color:var(--accent); color:var(--ink); }
.button-light:hover { background:var(--accent-hover); border-color:var(--accent-hover); }
.button-outline { background:transparent; border-color:var(--line-strong); color:var(--ink); }
.button-outline:hover { background:var(--accent-soft); border-color:var(--accent-text); }
.button .icon-whatsapp { width:24px; height:24px; }
.circle-arrow { display:inline-flex; align-items:center; justify-content:center; width:42px; height:42px; border:1px solid var(--line-strong); border-radius:50%; background:var(--bg); color:var(--ink); flex-shrink:0; transition:background .2s,border-color .2s; }
.circle-arrow .icon { width:19px; height:19px; }
.skip-link { position:fixed; top:-100px; left:20px; z-index:1000; padding:12px 20px; background:var(--accent); color:var(--ink); }
.skip-link:focus { top:16px; }
/* Clear navigation and a compact brand signature. */
.site-header { position:sticky; top:0; z-index:50; background:rgba(255,255,255,.98); border-bottom:1px solid var(--line); }
.header-inner { display:flex; align-items:center; justify-content:space-between; gap:28px; height:var(--header-height); }
.brand { display:inline-flex; align-items:center; gap:14px; flex-shrink:0; }
.brand-mark { display:flex; align-items:flex-end; gap:4px; transform:skew(-18deg); width:36px; }
.brand-mark i { width:8px; height:31px; background:var(--ink); }
.brand-mark i:first-child { height:19px; }
.brand-mark i:nth-child(2) { height:25px; }
.brand-mark i:last-child { background:var(--accent); }
.brand-name { font-size:1.05rem; font-weight:800; letter-spacing:-.045em; line-height:1.05; }
.brand-name b { font-weight:800; }
.brand-name small { display:block; margin-top:8px; color:var(--muted); font-size:.75rem; font-weight:600; letter-spacing:.23em; }
.main-nav { display:flex; align-items:center; gap:32px; font-size:.875rem; font-weight:550; }
.main-nav>a:not(.button) { padding:16px 0; position:relative; }
.main-nav>a:not(.button)::after { content:""; position:absolute; bottom:8px; left:0; width:0; height:3px; background:var(--ink); transition:width .2s; }
.main-nav>a[aria-current]::after,.main-nav>a:hover::after { width:100%; }
.nav-cta { margin-left:6px; border-radius:8px; }
.nav-cta .icon { color:var(--accent); }
.menu-toggle { display:none; justify-content:center; align-items:center; width:44px; height:44px; border:1px solid var(--line); border-radius:50%; background:#fff; }

.expertise-strip { margin-top:25px; border-block:1px solid var(--line); }
.expertise-inner { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); align-items:center; gap:22px; min-height:85px; }
.expertise-inner>span,.expertise-inner>a { display:flex; align-items:center; justify-content:center; gap:10px; font-size:.8125rem; color:var(--muted); }
.expertise-inner>span:first-child { justify-content:flex-start; }
.expertise-inner>a { justify-content:flex-end; }
.expertise-inner .icon { width:18px; height:18px; color:var(--accent-text); }
.expertise-inner>a .icon:last-child { width:14px; height:14px; }
/* Shared service and gallery presentation. */
.section-heading { display:flex; align-items:flex-end; justify-content:space-between; gap:32px; margin-bottom:40px; }
.section-heading>div { max-width:760px; }
.section-heading .text-link { flex-shrink:0; margin-bottom:3px; }
.service-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:28px; }
.service-card { min-width:0; }
.service-card-link { display:block; height:100%; }
.service-image { position:relative; aspect-ratio:1.24; overflow:hidden; background:var(--panel); border-radius:12px; }
.service-image>img { width:100%; height:100%; object-fit:cover; object-position:50% 48%; transition:transform .65s; }
.service-image>.circle-arrow { position:absolute; right:17px; bottom:17px; border-color:#fff; }
.service-card-link:hover img,.work-tile:hover img,.gallery-button:hover img { transform:scale(1.035); }
.service-card-link:hover .circle-arrow,.work-tile:hover .circle-arrow,.gallery-button:hover .circle-arrow { background:var(--accent); border-color:var(--accent); color:var(--ink); }
.service-copy { padding:24px 0 0; }
.service-copy .eyebrow { font-size:.75rem; letter-spacing:.06em; margin-bottom:9px; }
.service-copy h3 { font-size:1.6rem; margin-bottom:12px; font-weight:650; }
.service-copy p { font-size:1rem; line-height:1.8; max-width:360px; }
.more-services { display:flex; align-items:center; justify-content:space-between; gap:22px; margin-top:42px; padding-top:26px; border-top:1px solid var(--line); font-size:.875rem; }
.more-services>span { color:var(--muted); }
.more-services>a { display:inline-flex; align-items:center; gap:18px; min-height:44px; }
.more-services>a:hover { color:var(--accent-text); }
.more-services .icon { width:17px; height:17px; }
.story-section { background:var(--panel); border-block:1px solid var(--line); }
.story-grid { display:grid; grid-template-columns:minmax(0,1fr) minmax(0,1.05fr); align-items:center; gap:90px; }
.story-visual { min-width:0; position:relative; }
.story-visual>img { width:100%; height:565px; object-fit:cover; object-position:50% 50%; border-radius:14px; }
.image-label { display:flex; align-items:center; justify-content:space-between; gap:20px; padding:20px 22px; position:absolute; left:20px; right:20px; bottom:20px; background:var(--bg); border-radius:8px; border-left:4px solid var(--accent); }
.image-label>span { font-size:1.2rem; font-weight:750; letter-spacing:.025em; }
.image-label>small { font-size:.75rem; letter-spacing:.08em; line-height:1.6; color:var(--muted); margin-right:auto; }
.image-label>.icon { width:21px; height:21px; }
.story-copy h2 { margin-bottom:26px; }
.story-copy>p { font-size:1rem; }
.story-copy .lead-copy { color:var(--ink); font-size:1.125rem; }
.story-points { margin:30px 0 24px; }
.story-points>div { border-top:1px solid var(--line-strong); padding:19px 0; }
.story-points p { font-size:1rem; color:var(--ink); font-weight:600; }
.story-points small { display:block; margin-top:5px; color:var(--muted); font-size:.875rem; font-weight:400; }
.home-work-grid { display:grid; grid-template-columns:1.3fr 1fr 1fr; gap:26px; align-items:start; }
.work-tile { display:block; min-width:0; }
.work-tile>img { width:100%; height:370px; object-fit:cover; border-radius:12px; transition:transform .65s; }
.work-tile:first-child>img { height:450px; }
.work-tile:nth-child(2) { margin-top:60px; }
.work-tile-caption { display:flex; align-items:center; justify-content:space-between; gap:15px; padding-top:22px; }
.work-tile-caption .eyebrow { font-size:.75rem; margin-bottom:8px; color:var(--muted); }
.work-tile-caption h3 { font-size:1.0625rem; letter-spacing:-.025em; line-height:1.45; }
.work-tile-caption .circle-arrow { width:34px; height:34px; }
.instagram-line { display:flex; align-items:center; gap:14px; padding:27px 0; margin-top:30px; border-block:1px solid var(--line); }
.instagram-line>p { font-size:.875rem; }
.instagram-line>p a { color:var(--ink); font-weight:600; }
.instagram-line>.text-link { margin-left:auto; }
.faq-section { padding-top:0; }
.faq-grid { display:grid; grid-template-columns:minmax(0,1fr) minmax(0,1.25fr); gap:95px; }
.faq-grid h2 { margin-bottom:22px; }
.faq-grid>div>p { margin-bottom:17px; }
.faq-list details { border-top:1px solid var(--line); }
.faq-list details:last-child { border-bottom:1px solid var(--line); }
.faq-list summary { display:flex; align-items:center; justify-content:space-between; gap:24px; padding:24px 0; font-size:1rem; font-weight:600; line-height:1.6; list-style:none; cursor:pointer; }
.faq-list summary::-webkit-details-marker { display:none; }
.faq-list summary .icon { width:19px; height:19px; color:var(--muted); transition:transform .2s; }
.faq-list details[open] summary .icon { transform:rotate(45deg); }
.faq-list details>p { margin:0; padding:0 30px 24px 0; font-size:1rem; line-height:1.85; }
.guide-section { padding-top:0; }
.article-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:24px; }
.article-card { display:flex; flex-direction:column; align-items:flex-start; min-width:0; padding:30px; border-radius:12px; background:var(--panel); transition:background .2s; }
.article-card:hover { background:var(--accent-soft); }
.article-card .eyebrow { margin-bottom:30px; font-size:.75rem; }
.article-card h3 { font-size:1.5rem; font-weight:600; line-height:1.4; margin-bottom:27px; }
.article-card .text-link { margin-top:auto; }
/* Shared closing section and footer. */
.contact-band { padding-block:75px; background:var(--panel); color:var(--ink); border-block:1px solid var(--line); }
.contact-band-inner { display:flex; align-items:center; justify-content:space-between; gap:45px; }
.contact-band h2 { font-size:clamp(2.5rem,4.5vw,4.2rem); line-height:1.12; }
.contact-band h2 em { font-style:normal; font-weight:inherit; color:var(--ink); }
.contact-band .eyebrow { color:var(--accent-text); }
.contact-band-actions { display:flex; align-items:flex-start; flex-direction:column; gap:19px; }
.contact-band .button-light { background:var(--accent); border-color:var(--accent); color:var(--ink); }
.contact-band .button-light .icon { color:currentColor; }
.contact-band .button-light:hover { background:var(--accent-hover); border-color:var(--accent-hover); }
.contact-band :focus-visible { outline-color:var(--accent-text); }
.contact-band .button-light:focus-visible { outline-color:var(--accent-text); }
.contact-band-phone { display:flex; align-items:center; gap:12px; font-size:1.125rem; font-weight:600; }
.contact-band-phone .icon { width:18px; height:18px; }
.site-footer { padding:78px 0 0; background:#fff; }
.footer-grid { display:grid; grid-template-columns:1.35fr .9fr .75fr 1.25fr; gap:45px; padding-bottom:55px; }
.footer-grid>div { min-width:0; }
.footer-about>p { margin:23px 0; font-size:.875rem; }
.social-links { display:flex; gap:9px; }
.social-links>a { display:grid; place-items:center; width:38px; height:38px; border:1px solid var(--line); border-radius:50%; }
.social-links>a:hover { background:var(--accent-soft); border-color:var(--line-strong); }
.social-links .icon { width:17px; height:17px; }
.social-links .icon-whatsapp { width:23px; height:23px; }
.footer-grid h3 { font-size:.9375rem; margin-bottom:25px; letter-spacing:-.01em; }
.footer-grid ul { margin:0; padding:0; list-style:none; }
.footer-grid li { font-size:.875rem; line-height:1.5; color:var(--muted); margin-bottom:13px; }
.footer-grid li .icon { width:13px; height:13px; }
.footer-grid li a:hover { color:var(--ink); text-decoration:underline; text-underline-offset:4px; }
.footer-phone { font-size:1.45rem; font-weight:650; letter-spacing:-.04em; line-height:1.5; }
.footer-contact p { margin:16px 0; font-size:.875rem; }
.footer-contact>span { display:block; font-size:.75rem; color:var(--muted); }
.footer-bottom { display:flex; align-items:center; flex-wrap:wrap; gap:26px; min-height:80px; border-top:1px solid var(--line); color:var(--muted); font-size:.75rem; padding-block:20px; }
.footer-bottom>a:first-of-type { margin-left:auto; }
.footer-bottom .back-top { margin-left:24px; }
/* Interior routes share the same quiet, generous structure. */
.page-intro { padding:38px 0 64px; background:var(--surface); border-bottom:1px solid var(--line); }
.breadcrumb { display:flex; align-items:center; flex-wrap:wrap; gap:12px; color:var(--muted); font-size:.75rem; margin-bottom:42px; }
.breadcrumb span[aria-current] { color:var(--ink); }
.breadcrumb a:hover { color:var(--accent-text); }
.page-intro h1 { font-size:clamp(2.8rem,5.2vw,4.8rem); max-width:1050px; margin-bottom:25px; line-height:1.1; }
.page-intro p { max-width:670px; font-size:1.0625rem; line-height:1.85; }
.page-intro .eyebrow { margin-bottom:18px; }
.all-services { row-gap:52px; }
.service-detail-grid { display:grid; grid-template-columns:minmax(0,.95fr) minmax(0,1.05fr); gap:75px; align-items:start; }
.detail-photo { width:100%; height:640px; object-fit:cover; border-radius:12px; }
.photo-note,.service-hint { font-size:.75rem; margin-top:14px; }
.detail-body h2 { font-size:2.5rem; margin-bottom:23px; }
.detail-body>p { font-size:1rem; line-height:1.9; }
.detail-list { list-style:none; padding:0; margin:26px 0 30px; }
.detail-list li { display:flex; align-items:flex-start; gap:13px; border-bottom:1px solid var(--line); padding:13px 0; font-size:.9375rem; color:var(--muted); }
.detail-list .icon { width:18px; height:18px; color:var(--accent-text); margin-top:4px; }
.service-detail .faq-list { margin-top:40px; }
.service-faq h2 { font-size:1.35rem; margin-bottom:18px; }
.service-guide-section { padding-top:0; }
.service-reading-grid { display:grid; grid-template-columns:minmax(0,1.55fr) minmax(0,1fr); gap:75px; align-items:start; }
.service-reading { min-width:0; }
.service-reading>section+section { margin-top:34px; }
.service-reading h2 { font-size:clamp(1.5rem,2.4vw,2rem); line-height:1.3; margin-bottom:17px; }
.service-reading p { font-size:1rem; line-height:1.9; }
.service-reading-links { margin-top:34px; padding-top:27px; border-top:1px solid var(--line); }
.service-reading-links>a { display:flex; align-items:center; justify-content:space-between; gap:20px; padding:14px 0; border-bottom:1px solid var(--line); font-size:.9375rem; line-height:1.6; font-weight:600; }
.service-reading-links .icon { width:18px; height:18px; }
.service-quote { padding:32px; background:var(--panel); border-radius:12px; border-top:4px solid var(--accent); min-width:0; }
.service-quote h2 { font-size:1.65rem; line-height:1.3; }
.service-quote ul { list-style:none; margin:23px 0; padding:0; }
.service-quote li { padding:12px 0; border-bottom:1px solid var(--line-strong); font-size:.9375rem; }
.service-quote p { font-size:1rem; line-height:1.85; }
.service-quote .text-link { margin-top:15px; }
.service-visit { margin-top:30px; padding-top:26px; border-top:1px solid var(--line-strong); }
.service-visit h3 { font-size:1.1rem; margin-bottom:14px; letter-spacing:-.025em; }
.article-body .article-author { font-size:.875rem; margin-bottom:20px; }
.article-author a { color:var(--ink); text-decoration:underline; text-underline-offset:4px; }
.comparison-scroll { overflow:auto; margin-bottom:23px; border:1px solid var(--line); border-radius:10px; }
.comparison-scroll:focus-visible { outline:2px solid var(--ink); outline-offset:4px; }
.comparison-table { border-collapse:collapse; width:100%; min-width:540px; font-size:1rem; line-height:1.7; }
.comparison-table caption { text-align:left; font-weight:650; padding:20px; background:var(--panel); }
.comparison-table th,.comparison-table td { padding:15px 18px; border-top:1px solid var(--line); text-align:left; vertical-align:top; }
.comparison-table thead th { background:var(--surface); }
.comparison-table tbody th { font-weight:600; width:22%; }
.comparison-table td { color:var(--muted); width:39%; }
@media(max-width:900px) { .service-reading-grid { gap:35px; } .service-quote { padding:25px; } }
@media(max-width:760px) { .service-reading-grid { grid-template-columns:1fr; gap:35px; } .service-guide-section { padding-top:0; } .service-reading h2 { font-size:1.6rem; } }
.related-section { padding-top:0; }
.gallery-topline { display:flex; justify-content:space-between; align-items:center; gap:25px; margin-bottom:35px; }
.filter-buttons { display:flex; flex-wrap:wrap; gap:9px; }
.filter-button { border:1px solid var(--line); background:#fff; min-height:44px; padding:10px 20px; border-radius:30px; color:var(--muted); font-size:.875rem; }
.filter-button:hover,.filter-button[aria-pressed=true] { background:var(--ink); color:#fff; border-color:var(--ink); }
.gallery-count { font-size:.875rem; color:var(--muted); }
.gallery-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:40px 26px; }
.gallery-item { min-width:0; scroll-margin-top:calc(var(--header-height) + 24px); }
.gallery-button { display:block; width:100%; height:430px; position:relative; overflow:hidden; padding:0; border:0; background:var(--panel); border-radius:10px; }
.gallery-button img { width:100%; height:100%; object-fit:cover; transition:transform .6s; }
.gallery-button .circle-arrow { position:absolute; right:16px; bottom:16px; }
.gallery-item figcaption { padding-top:18px; }
.gallery-item figcaption>span { font-size:.75rem; letter-spacing:.09em; text-transform:uppercase; color:var(--muted); }
.gallery-item h2 { font-family:var(--font); font-weight:600; font-size:1.0625rem; line-height:1.5; margin-top:6px; }
.gallery-dialog { position:fixed; padding:0; border:1px solid var(--line); border-radius:12px; background:#fff; color:var(--ink); max-width:min(94vw,1080px); width:100%; max-height:92dvh; overflow:auto; }
.gallery-dialog::backdrop { background:#292326b3; backdrop-filter:blur(5px); }
.dialog-image { width:100%; height:72dvh; object-fit:contain; background:var(--panel); }
.dialog-close { position:absolute; z-index:2; top:14px; right:14px; display:grid; place-items:center; width:44px; height:44px; border:1px solid var(--line); background:#fff; border-radius:50%; }
.dialog-caption { display:flex; align-items:center; gap:20px; padding:18px 23px; }
.dialog-caption p { color:var(--ink); font-size:.9375rem; }
.dialog-source { font-size:.8125rem; text-decoration:underline; text-underline-offset:4px; margin-left:auto; }
.dialog-nav { display:flex; gap:7px; }
.dialog-nav button { width:44px; height:44px; border:1px solid var(--line); border-radius:50%; background:#fff; }
.dialog-nav button:hover { background:var(--accent-soft); }
.about-intro { display:grid; grid-template-columns:minmax(0,1fr) minmax(0,1fr); gap:100px; }
.about-intro p { line-height:1.9; }
.sirius-signature { width:185px; margin-top:32px; filter:brightness(0); opacity:.85; }
.about-image { width:100%; height:590px; object-fit:cover; object-position:50% 45%; border-radius:12px; margin-top:60px; }
.values-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:50px; }
.value { border-top:1px solid var(--line-strong); padding-top:25px; }
.value h3 { font-size:1.7rem; margin:0 0 17px; }
.value p { font-size:1rem; line-height:1.85; }
.contact-grid { display:grid; grid-template-columns:minmax(0,1fr) minmax(0,1.1fr); gap:90px; align-items:start; }
.contact-intro h2 { font-size:2.7rem; }
.contact-details { display:grid; gap:30px; margin-top:40px; }
.contact-detail { display:flex; align-items:flex-start; gap:18px; }
.contact-detail>div { min-width:0; }
.contact-detail>.icon { width:21px; height:21px; color:var(--accent-text); margin-top:5px; }
.contact-detail h3 { font-size:.75rem; font-weight:550; letter-spacing:.08em; text-transform:uppercase; color:var(--muted); margin-bottom:9px; }
.contact-detail p { font-size:1rem; overflow-wrap:anywhere; }
.contact-detail .text-link { margin-top:5px; }
.contact-phone { font-size:2rem; letter-spacing:-.04em; font-weight:650; line-height:1.4; }
.contact-form { padding:38px; background:var(--panel); border:1px solid var(--line); border-radius:12px; min-width:0; }
.contact-form h2 { font-size:2rem; margin-bottom:16px; }
.contact-form>p { font-size:.9375rem; margin-bottom:30px; }
.field { margin-bottom:23px; }
.field label { display:block; margin-bottom:9px; font-size:.875rem; font-weight:600; }
.field label span { font-weight:400; color:var(--muted); }
.field input,.field select,.field textarea { display:block; width:100%; min-height:51px; padding:13px 15px; border:1px solid var(--line-strong); border-radius:6px; background:#fff; color:var(--ink); font-size:1rem; }
.field textarea { resize:vertical; min-height:128px; }
.field input::placeholder,.field textarea::placeholder { color:var(--muted); opacity:1; }
.field select { color-scheme:light; }
.field [aria-invalid=true] { border-color:#af4535; }
.field .field-error { color:#a6382b; font-size:.8125rem; margin-top:6px; }
.form-alert { margin-bottom:25px; padding:15px; border-left:3px solid #af4535; background:#fff0eb; color:#8e3026; font-size:.875rem; }
.contact-form>.button { width:100%; }
.contact-form .form-note { margin:17px 0 0; font-size:.75rem; line-height:1.8; }
.form-note a { text-decoration:underline; text-underline-offset:3px; }
.map-section { padding-top:0; }
.map-card { display:grid; grid-template-columns:minmax(0,1fr) minmax(0,1fr); align-items:center; gap:50px; padding:25px; border-radius:12px; background:var(--panel); }
.map-card>img { width:100%; height:375px; object-fit:cover; border-radius:8px; }
.map-card-content { padding:15px 20px 15px 0; }
.map-card h2 { font-size:2.65rem; margin-bottom:20px; }
.map-card p { font-size:1rem; }
.map-links { display:flex; flex-wrap:wrap; gap:12px; margin-top:25px; }
.map-card .map-load-note { font-size:.75rem; margin-top:16px; }
.map-frame { display:block; width:100%; height:460px; border:1px solid var(--line); border-radius:12px; }
.article-list .article-card { padding:0 0 30px; overflow:hidden; }
.article-list .article-card>img { width:100%; height:265px; object-fit:cover; margin-bottom:27px; }
.article-list .article-card>.eyebrow,.article-list .article-card>h2,.article-list .article-card>p,.article-list .article-card>.text-link { margin-left:27px; margin-right:27px; }
.article-list .article-card>.eyebrow { margin-bottom:15px; }
.article-list h2 { font-size:1.5rem; line-height:1.4; margin-bottom:15px; }
.article-list p { font-size:1rem; margin-bottom:22px; }
.article-layout { display:grid; grid-template-columns:minmax(0,1fr) 330px; gap:75px; align-items:start; }
.article-body>img { width:100%; height:500px; object-fit:cover; border-radius:10px; margin-bottom:45px; }
.article-body h2 { font-size:1.9rem; margin:32px 0 18px; }
.article-body p { font-size:1.0625rem; line-height:1.95; margin-bottom:30px; }
.article-sidebar { position:sticky; top:calc(var(--header-height) + 24px); background:var(--panel); padding:30px; border-radius:10px; }
.article-sidebar .eyebrow { font-size:.75rem; }
.article-sidebar h2 { font-size:2rem; margin-bottom:22px; }
.article-sidebar p { font-size:1rem; margin-bottom:24px; }
.article-sidebar .button { width:100%; padding-inline:17px; gap:15px; }
.article-sidebar ul { padding:0; margin:26px 0 0; list-style:none; }
.article-sidebar li { padding:12px 0; border-top:1px solid var(--line); font-size:.875rem; }
.prose { max-width:850px; }
.prose h2 { font-size:1.8rem; margin:32px 0 19px; }
.prose h2:first-child { margin-top:0; }
.prose p { font-size:1rem; line-height:1.95; margin-bottom:25px; }
.prose a { text-decoration:underline; text-underline-offset:3px; overflow-wrap:anywhere; }
.not-found { padding-block:110px; text-align:center; }
.not-found>span { display:block; color:var(--accent-text); font-size:8rem; line-height:1; letter-spacing:-.08em; margin-bottom:30px; }
.not-found h1 { font-size:3.2rem; margin-bottom:25px; }
.not-found p { margin-bottom:30px; }
/* WhatsApp remains on the left; the official icon keeps its original colour. */
.floating-whatsapp { position:fixed; left:24px; right:auto; bottom:24px; z-index:65; display:flex; align-items:center; gap:11px; padding:10px 20px 10px 12px; min-height:64px; border:1px solid var(--line); border-radius:40px; background:#fff; color:var(--ink); box-shadow:0 6px 25px #29232618; font-size:.9375rem; font-weight:650; }
.floating-whatsapp:hover,.floating-whatsapp[aria-expanded=true] { border-color:var(--line-strong); box-shadow:0 8px 28px #29232625; }
.whatsapp-launch-icon { display:flex; align-items:center; justify-content:center; width:40px; height:40px; flex-shrink:0; }
.floating-whatsapp .icon-whatsapp { width:40px; height:40px; }
.floating-whatsapp>span:last-child { line-height:1.35; }
.floating-whatsapp small { display:block; margin-top:3px; color:var(--muted); font-size:.75rem; font-weight:400; }
.whatsapp-panel { position:fixed; left:24px; right:auto; bottom:calc(100px + var(--wa-keyboard-offset,0px)); z-index:66; width:min(390px,calc(100% - 48px)); max-height:calc(100vh - 124px); max-height:calc(var(--wa-viewport-height,100dvh) - 124px); overflow:auto; overscroll-behavior:contain; border:1px solid var(--line-strong); border-radius:16px; background:#fff; box-shadow:0 20px 65px #29232625; scrollbar-width:thin; scrollbar-color:var(--line-strong) var(--panel); }
.whatsapp-panel-header { display:flex; align-items:center; gap:12px; padding:20px; background:var(--panel); border-bottom:1px solid var(--line); }
.whatsapp-avatar { display:flex; align-items:center; justify-content:center; width:40px; height:40px; flex-shrink:0; }
.whatsapp-avatar .icon-whatsapp { width:39px; height:39px; }
.whatsapp-brand { flex:1; min-width:0; line-height:1.5; }
.whatsapp-brand strong { display:block; font-size:1rem; font-weight:700; letter-spacing:-.03em; }
.whatsapp-brand>span { display:block; font-size:.75rem; color:var(--muted); }
.whatsapp-close { display:grid; place-items:center; width:36px; height:36px; flex-shrink:0; border:1px solid var(--line); border-radius:50%; background:#fff; }
.whatsapp-close .icon { width:18px; height:18px; }
.whatsapp-close:hover { background:var(--accent-soft); }
.whatsapp-panel-body { padding:23px; }
.whatsapp-panel h2 { font-family:var(--font); font-size:1.25rem; font-weight:700; letter-spacing:-.035em; line-height:1.45; margin-bottom:10px; }
.whatsapp-panel h2:focus { outline:none; }
.whatsapp-welcome { font-size:.9375rem; line-height:1.75; margin-bottom:18px; }
.whatsapp-quick { display:flex; flex-wrap:wrap; gap:7px; margin-bottom:20px; }
.whatsapp-quick button { min-height:42px; padding:9px 11px; border:1px solid var(--line-strong); border-radius:6px; background:#fff; color:var(--ink); font-size:.875rem; line-height:1.4; }
.whatsapp-quick button:hover,.whatsapp-quick button[aria-pressed=true] { background:var(--accent-soft); border-color:var(--accent-text); }
.whatsapp-message-label { display:block; font-size:.8125rem; font-weight:650; margin-bottom:8px; }
.whatsapp-message-hint { font-size:.8125rem; line-height:1.65; margin-bottom:11px; }
#whatsapp-message { display:block; width:100%; min-height:108px; max-height:220px; resize:vertical; padding:12px 13px; border:1px solid var(--line-strong); border-radius:7px; background:var(--surface); color:var(--ink); font:inherit; font-size:1rem; line-height:1.6; }
#whatsapp-message:focus { border-color:var(--accent-text); outline:2px solid var(--accent-text); outline-offset:2px; background:#fff; }
#whatsapp-message::placeholder { color:var(--muted); opacity:1; }
.whatsapp-send { width:100%; min-height:52px; justify-content:space-between; margin-top:16px; padding:15px 17px; }
.whatsapp-note { font-size:.75rem; line-height:1.65; text-align:center; margin-top:11px; }
.whatsapp-panel-footer { display:flex; align-items:flex-start; gap:11px; padding:16px 23px; border-top:1px solid var(--line); background:var(--panel); }
.whatsapp-panel-footer>.icon { width:17px; height:17px; margin-top:2px; color:var(--accent-text); }
.whatsapp-panel-footer>div { min-width:0; }
.whatsapp-panel-footer span { display:block; font-size:.75rem; line-height:1.6; color:var(--muted); }
.whatsapp-panel-footer a { display:inline-block; font-size:.875rem; font-weight:650; margin-top:5px; }
.whatsapp-panel-footer a:hover { text-decoration:underline; text-underline-offset:3px; }
.mobile-contact { display:none; }
/* Tablet and mobile layouts. The 760px menu breakpoint matches site.js. */
@media(min-width:1600px) {   }
@media(max-width:1150px) {
  :root { --gutter:32px; --header-height:82px; }
  .header-inner { gap:20px; } .main-nav { gap:22px; } .brand-name { font-size:.9375rem; }

  .story-grid { gap:50px; } .story-visual>img { height:525px; }
  .faq-grid { gap:55px; } .service-detail-grid { gap:45px; }
  .footer-grid { gap:30px; } .contact-grid { gap:45px; } .about-intro { gap:55px; }
  .article-layout { gap:45px; grid-template-columns:minmax(0,1fr) 300px; }
  .article-sidebar { padding:24px; } .map-card { gap:32px; }
}
@media(max-width:900px) {
  :root { --gutter:26px; --header-height:78px; }
  .main-nav { gap:17px; font-size:.8125rem; } .brand { gap:10px; }
  .brand-mark { width:28px; gap:3px; } .brand-mark i { width:6px; }
  .brand-name { font-size:.875rem; } .brand-name small { font-size:.75rem; letter-spacing:.18em; }
  .nav-cta { margin-left:0; padding:11px 14px; gap:10px; }
  .section { padding-block:80px; } .faq-section,.guide-section,.related-section,.map-section { padding-top:0; }

  .expertise-inner { grid-template-columns:1fr 1fr; padding-block:23px; gap:20px; }
  .expertise-inner>span,.expertise-inner>span:first-child,.expertise-inner>a { justify-content:flex-start; }
  .service-grid { gap:22px; } .service-copy h3 { font-size:1.35rem; }
  .service-copy p { font-size:.9375rem; } .service-image { aspect-ratio:.95; }
  .more-services { flex-wrap:wrap; gap:13px 20px; } .more-services>span { width:100%; }
  .story-grid { gap:35px; } .story-visual>img { height:560px; }
  .story-copy h2 { font-size:2.35rem; } .image-label { left:12px; right:12px; bottom:12px; padding:17px 15px; gap:13px; }
  .image-label>span { font-size:1.0625rem; } .image-label>small { font-size:.75rem; }
  .home-work-grid { grid-template-columns:1fr 1fr 1fr; gap:20px; }
  .work-tile>img,.work-tile:first-child>img { height:320px; } .work-tile:nth-child(2) { margin-top:35px; }
  .work-tile-caption .circle-arrow { display:none; } .work-tile-caption h3 { font-size:1rem; }
  .article-grid { gap:18px; } .article-card { padding:24px; } .article-card h3 { font-size:1.3rem; }
  .footer-grid { grid-template-columns:1.3fr .9fr .8fr; gap:35px; }
  .footer-contact { grid-column:1/-1; display:grid; grid-template-columns:1.2fr 1.5fr 1fr; gap:12px 30px; }
  .footer-contact h3 { grid-column:1/-1; margin-bottom:0; } .footer-contact p { margin:0; grid-row:2/4; grid-column:2; }
  .footer-contact>span:last-child { grid-column:3; } .footer-phone { grid-column:1; grid-row:2/4; }
  .contact-grid,.article-layout { grid-template-columns:1fr; }
  .contact-details { grid-template-columns:1fr 1fr; } .article-sidebar { position:static; }
  .service-detail-grid { gap:35px; } .detail-body h2 { font-size:2rem; } .detail-photo { height:570px; }
  .map-card { padding:21px; gap:25px; } .map-card h2 { font-size:2.1rem; }
  .map-card>img { height:420px; } .map-card-content { padding:10px 0; }
  .gallery-button { height:340px; } .about-intro { gap:35px; } .about-image { height:440px; }
  .values-grid { gap:30px; }
}
@media(max-width:760px) {
  :root { --gutter:22px; --header-height:74px; }
  body { padding-bottom:calc(62px + env(safe-area-inset-bottom,0px)); }
  .header-inner { gap:15px; } .brand-name { font-size:1rem; } .brand-name small { font-size:.75rem; letter-spacing:.2em; }
  .brand-mark { width:29px; } .menu-toggle { display:flex; }
  .main-nav { display:none; position:absolute; top:100%; left:0; right:0; flex-direction:column; align-items:stretch; gap:0; padding:13px var(--gutter) 26px; background:#fff; border-bottom:1px solid var(--line); box-shadow:0 12px 25px #2923260d; max-height:calc(100dvh - var(--header-height) - 62px - env(safe-area-inset-bottom,0px)); overflow:auto; }
  .main-nav.is-open { display:flex; } .main-nav>a:not(.button) { padding:17px 0; font-size:1rem; border-bottom:1px solid var(--line); }
  .main-nav>a:not(.button)::after { display:none; } .main-nav>a[aria-current] { color:var(--accent-text); }
  .nav-cta { margin-top:20px; border-radius:8px; min-height:52px; justify-content:space-between; font-size:.9375rem; }
  .section { padding-block:64px; } h2 { font-size:2.15rem; }
  .eyebrow { font-size:.75rem; margin-bottom:16px; }

  .expertise-strip { margin-top:28px; } .expertise-inner { gap:18px 14px; padding-block:22px; }
  .expertise-inner>span,.expertise-inner>a { font-size:.75rem; gap:8px; }
  .expertise-inner .icon { width:16px; height:16px; } .expertise-inner>a .icon:last-child { display:none; }
  .section-heading { align-items:flex-start; flex-direction:column; gap:17px; margin-bottom:30px; }
  .section-heading .text-link { margin:0; min-height:35px; }
  .service-grid { grid-template-columns:1fr; gap:35px; } .service-image { aspect-ratio:1.4; }
  .service-copy { padding-top:20px; } .service-copy h3 { font-size:1.55rem; } .service-copy p { font-size:1rem; max-width:none; }
  .more-services { margin-top:30px; padding-top:20px; display:grid; gap:0; }
  .more-services>span { padding-bottom:14px; } .more-services>a { justify-content:space-between; padding:13px 0; border-bottom:1px solid var(--line); }
  .story-grid { grid-template-columns:1fr; gap:38px; } .story-copy { grid-row:1; }
  .story-copy h2 { font-size:2.2rem; } .story-copy .lead-copy { font-size:1.0625rem; }
  .story-visual>img { height:auto; aspect-ratio:1.08; } .story-points { margin:24px 0 15px; }
  .story-points>div { padding:17px 0; } .image-label { left:15px; right:15px; bottom:15px; padding:17px; }
  .home-work-grid { grid-template-columns:1fr; gap:35px; }
  .work-tile>img,.work-tile:first-child>img { height:auto; aspect-ratio:.95; }
  .work-tile:nth-child(2) { margin-top:0; } .work-tile-caption { padding-top:18px; }
  .work-tile-caption h3 { font-size:1.1rem; } .work-tile-caption .circle-arrow { display:inline-flex; }
  .instagram-line { flex-wrap:wrap; gap:12px; padding-block:22px; }
  .instagram-line>p { flex:1; font-size:.8125rem; } .instagram-line>.text-link { width:100%; margin:0 0 0 34px; }
  .faq-section,.guide-section,.related-section,.map-section { padding-top:0; }
  .faq-grid { grid-template-columns:1fr; gap:25px; } .faq-list summary { font-size:.9375rem; padding:21px 0; }
  .faq-list details>p { padding-right:15px; }
  .article-grid { grid-template-columns:1fr; gap:17px; } .article-card { padding:27px; }
  .article-card h3 { font-size:1.4rem; } .article-card .eyebrow { margin-bottom:20px; }
  .contact-band { padding-block:45px; } .contact-band-inner { flex-direction:column; align-items:flex-start; gap:30px; }
  .contact-band h2 { font-size:2.65rem; } .contact-band-actions { gap:18px; }
  .site-footer { padding-top:55px; } .footer-grid { grid-template-columns:1fr 1fr; gap:38px 22px; padding-bottom:35px; }
  .footer-about { grid-column:1/-1; } .footer-grid h3 { margin-bottom:20px; }
  .footer-contact { display:block; grid-column:1/-1; } .footer-contact h3 { margin-bottom:16px; }
  .footer-contact p { margin:15px 0; } .footer-phone { font-size:1.7rem; }
  .footer-bottom { gap:14px; min-height:90px; } .footer-bottom>span { width:100%; }
  .footer-bottom>a:first-of-type { margin-left:0; } .footer-bottom .back-top { margin-left:auto; }
  .page-intro { padding:27px 0 43px; } .breadcrumb { font-size:.75rem; margin-bottom:28px; gap:8px; }
  .page-intro h1 { font-size:2.45rem; margin-bottom:20px; } .page-intro p { font-size:1rem; }
  .all-services { row-gap:35px; } .service-detail-grid { grid-template-columns:1fr; gap:35px; }
  .detail-photo { height:auto; aspect-ratio:1; } .detail-body h2 { font-size:2.1rem; }
  .detail-list li { font-size:.9375rem; } .service-detail .faq-list { margin-top:32px; }
  .gallery-topline { align-items:flex-start; flex-direction:column; gap:19px; }
  .filter-buttons { gap:7px; } .filter-button { font-size:.8125rem; padding:9px 16px; }
  .gallery-grid { grid-template-columns:1fr; gap:30px; } .gallery-button { height:auto; aspect-ratio:3/4; }
  .gallery-item h2 { font-size:1.1rem; } .gallery-dialog { max-width:95vw; max-height:90dvh; }
  .dialog-image { height:60dvh; } .dialog-caption { flex-wrap:wrap; padding:16px; gap:13px; }
  .dialog-caption p { width:100%; } .dialog-source { margin-left:0; } .dialog-nav { margin-left:auto; }
  .about-intro { grid-template-columns:1fr; gap:32px; } .about-image { height:330px; margin-top:35px; }
  .values-grid { grid-template-columns:1fr; gap:35px; } .value h3 { font-size:1.65rem; }
  .contact-grid { gap:36px; } .contact-intro h2 { font-size:2.2rem; }
  .contact-details { grid-template-columns:1fr; gap:29px; margin-top:30px; } .contact-phone { font-size:1.8rem; }
  .contact-form { padding:27px 22px; } .contact-form h2 { font-size:1.8rem; } .contact-form>p { font-size:1rem; }
  .map-card { grid-template-columns:1fr; gap:23px; padding:17px; } .map-card>img { height:245px; }
  .map-card-content { padding:0 5px 10px; } .map-card h2 { font-size:2rem; } .map-frame { height:380px; }
  .article-list .article-card>img { height:280px; } .article-layout { gap:38px; }
  .article-body>img { height:330px; margin-bottom:32px; } .article-body h2 { font-size:1.75rem; }
  .article-body p { font-size:1rem; } .article-sidebar { padding:26px; }
  .prose h2 { font-size:1.65rem; } .not-found { padding-block:75px; } .not-found h1 { font-size:2.4rem; }
  .floating-whatsapp { display:none; }
  .mobile-contact { display:flex; position:fixed; left:0; right:0; bottom:0; z-index:65; background:#fff; border-top:1px solid var(--line); padding-bottom:env(safe-area-inset-bottom,0px); }
  .mobile-contact>a { display:flex; align-items:center; justify-content:center; flex:1; gap:9px; min-height:62px; font-size:.8125rem; font-weight:650; }
  .mobile-contact>a[data-whatsapp-toggle] { background:var(--panel); border-right:1px solid var(--line); }
  .mobile-contact>a[aria-expanded=true] { background:var(--accent-soft); }
  .mobile-contact .icon { width:18px; height:18px; } .mobile-contact .icon-whatsapp { width:26px; height:26px; }
  .whatsapp-panel { left:16px; bottom:calc(78px + env(safe-area-inset-bottom,0px) + var(--wa-keyboard-offset,0px)); width:calc(100% - 32px); max-width:390px; max-height:calc(100vh - 96px - env(safe-area-inset-bottom,0px)); max-height:calc(var(--wa-viewport-height,100dvh) - 96px - env(safe-area-inset-bottom,0px)); }
  .whatsapp-panel-header { padding:17px 18px; } .whatsapp-panel-body { padding:20px; } .whatsapp-panel-footer { padding:15px 20px; }
}
@media(max-width:380px) {
  :root { --gutter:17px; }
  .brand-name { font-size:.9375rem; } .brand-name small { letter-spacing:.16em; }

  .expertise-inner { gap:16px 11px; } .expertise-inner>span,.expertise-inner>a { font-size:.75rem; }
  .whatsapp-panel { left:12px; width:calc(100% - 24px); } .whatsapp-panel-header { padding:15px; gap:10px; }
  .whatsapp-brand strong { font-size:.9375rem; } .whatsapp-panel-body { padding:18px 17px; }
  .whatsapp-panel h2 { font-size:1.125rem; } .whatsapp-quick { gap:6px; } .whatsapp-quick button { padding:9px; font-size:.8125rem; }
  .whatsapp-panel-footer { padding:14px 17px; }
}
@media(prefers-reduced-motion:reduce) {
  html { scroll-behavior:auto; }
  *,*::before,*::after { transition:none!important; animation:none!important; }
  .button:hover,.service-card-link:hover img,.work-tile:hover img,.gallery-button:hover img,.text-link:hover .icon { transform:none; }
}

/* Bold typography and a close workmanship detail set the opening's pace. */
.atelier-hero { padding:32px 0 0; }
.atelier-hero-layout { display:grid; grid-template-columns:minmax(0,.96fr) minmax(0,1.04fr); gap:54px; background:var(--bg); }
.atelier-hero-copy { padding:28px 0 50px; display:flex; flex-direction:column; align-items:flex-start; justify-content:center; min-width:0; }
.atelier-hero-copy .eyebrow { font-size:.75rem; letter-spacing:.1em; margin-bottom:29px; color:var(--muted); }
.atelier-hero-copy .eyebrow i { width:23px; height:10px; border-radius:2px; background:var(--accent); }
.atelier-hero h1 { font-size:clamp(3.25rem,5.65vw,5rem); font-weight:650; letter-spacing:-.055em; line-height:1.12; margin-bottom:28px; }
.atelier-hero h1 em { font-style:normal; font-weight:inherit; color:var(--ink); background:linear-gradient(transparent 62%,var(--accent) 62%,var(--accent) 94%,transparent 94%); }
.atelier-hero-description { max-width:380px; font-size:1rem; line-height:1.85; }
.atelier-hero-actions { display:flex; align-items:center; flex-wrap:wrap; gap:16px 24px; margin-top:29px; }
.atelier-hero-actions .button { background:var(--accent); border-color:var(--accent); color:var(--ink); border-radius:8px; padding-inline:22px; gap:24px; }
.atelier-hero-actions .button:hover { background:var(--accent-hover); border-color:var(--accent-hover); }
.atelier-hero-actions .button .icon { color:currentColor; }
.atelier-hero-actions .text-link { font-size:.8125rem; gap:10px; }
.atelier-hero-contact { display:flex; align-items:center; gap:13px; margin-top:35px; padding-top:24px; border-top:1px solid var(--line); width:100%; }
.atelier-hero-contact>.icon { width:22px; height:22px; color:var(--accent-text); }
.atelier-hero-contact>span { display:block; min-width:0; }
.atelier-hero-contact small { display:block; font-size:.75rem; font-weight:400; color:var(--muted); margin-bottom:2px; }
.atelier-hero-contact strong { font-size:1.05rem; font-weight:650; letter-spacing:-.02em; }
.atelier-hero-media { display:flex; flex-direction:column; min-width:0; min-height:610px; }
.atelier-hero-image { position:relative; flex:1; min-height:540px; overflow:hidden; border-radius:18px; background:var(--panel); }
.atelier-hero-photo { width:100%; height:100%; position:absolute; inset:0; object-fit:cover; object-position:50% 43%; }
.atelier-detail { position:absolute; right:20px; bottom:20px; width:176px; padding:6px; border-radius:12px; background:var(--bg); box-shadow:0 5px 24px #181c2024; }
.atelier-detail img { width:100%; height:133px; object-fit:cover; border-radius:7px; }
.atelier-detail span { display:block; padding:8px 5px 4px; font-size:.75rem; line-height:1.4; font-weight:650; color:var(--ink); }
.atelier-photo-label { display:flex; align-items:center; justify-content:space-between; gap:24px; padding:19px 0; border-bottom:1px solid var(--line); }
.atelier-photo-label>span { max-width:180px; color:var(--muted); font-size:.75rem; line-height:1.65; letter-spacing:.09em; }
.atelier-photo-label>strong { font-family:var(--font); font-size:.9375rem; font-weight:600; color:var(--ink); line-height:1.5; }
.atelier-photo-label .icon { color:var(--accent-text); width:20px; height:20px; }
.atelier-hero-footnote { display:flex; align-items:center; justify-content:space-between; gap:20px; padding:18px 1px 0; color:var(--muted); font-size:.75rem; }
.atelier-hero-footnote>span,.atelier-hero-footnote>a { display:flex; align-items:center; gap:8px; }
.atelier-hero-footnote .icon { width:15px; height:15px; }
/* A single flagship application and two supporting service rows. */
.signature-services { display:grid; grid-template-columns:minmax(0,1.08fr) minmax(0,1fr); gap:36px; align-items:stretch; }
.signature-feature { display:flex; flex-direction:column; }
.signature-feature-photo { position:relative; overflow:hidden; border-radius:12px; }
.signature-feature-photo>img { display:block; width:100%; height:333px; object-fit:cover; object-position:50% 43%; transition:transform .6s; }
.signature-feature-photo>span { position:absolute; top:20px; left:20px; padding:8px 13px; border:1px solid #ffffff80; border-radius:4px; background:#fffffff0; font-size:.75rem; font-weight:600; color:var(--ink); }
.signature-feature-body { display:flex; align-items:center; justify-content:space-between; flex:1; gap:25px; padding:27px 0; border-bottom:1px solid var(--line); }
.signature-feature-body h3 { font-size:1.8rem; margin-bottom:10px; }
.signature-feature-body p { max-width:420px; font-size:1rem; line-height:1.8; }
.signature-feature-body .circle-arrow { width:48px; height:48px; background:var(--accent); border-color:var(--accent); color:var(--ink); }
.signature-feature:hover img,.signature-service:hover img { transform:scale(1.035); }
.signature-feature:hover .circle-arrow { background:var(--accent-hover); border-color:var(--accent-hover); }
.signature-service-list { display:grid; grid-template-rows:1fr 1fr; gap:24px; }
.signature-service { display:grid; grid-template-columns:170px minmax(0,1fr); align-items:center; gap:25px; padding:20px 0; border-top:1px solid var(--line); transition:border-color .2s,background .2s; }
.signature-service:last-child { border-bottom:1px solid var(--line); }
.signature-service:hover { border-color:var(--ink); background:var(--surface); }
.signature-service-photo { height:100%; min-height:190px; overflow:hidden; border-radius:10px; }
.signature-service img { width:100%; height:100%; object-fit:cover; transition:transform .6s; }
.signature-service .eyebrow { font-size:.75rem; letter-spacing:.045em; margin-bottom:10px; }
.signature-service h3 { font-size:1.5rem; margin-bottom:12px; }
.signature-service p { font-size:.9375rem; line-height:1.8; }
.signature-service .text-link { margin-top:12px; min-height:35px; font-size:.8125rem; }
/* Controlled shifts in scale make the longer page easier to read. */
.page-home .story-copy h2 { font-size:clamp(2.15rem,3.5vw,3.2rem); }
.page-home .story-copy h2 .text-muted { color:var(--muted); font-style:normal; font-weight:inherit; }
.page-home .story-copy .eyebrow { margin-bottom:22px; }
.page-home .home-work-grid { grid-template-columns:1.2fr 1fr; gap:30px 36px; }
.page-home .home-work-grid .work-tile:first-child { grid-row:span 2; }
.page-home .home-work-grid .work-tile:first-child>img { height:627px; }
.page-home .home-work-grid .work-tile:nth-child(2) { margin-top:0; }
.page-home .home-work-grid .work-tile:not(:first-child)>img { height:250px; }
.page-home .home-work-grid .work-tile:first-child .work-tile-caption h3 { font-size:1.3rem; }
.page-home .faq-grid h2 { font-size:clamp(2.1rem,3.3vw,3.1rem); }
.page-home .guide-section .section-heading h2 { font-size:clamp(2.1rem,3.3vw,3.1rem); }
.page-home .article-card { border:1px solid var(--line); background:var(--surface); padding-top:30px; }
.page-home .article-card:hover { background:var(--accent-soft); border-color:var(--line-strong); }
.page-home .article-card::before { content:''; width:32px; height:8px; border-radius:2px; display:block; background:var(--accent); margin-bottom:25px; }
.page-home .article-card .eyebrow { margin-bottom:17px; }
/* Small colour details tie the interior pages and conversation panel together. */
.page-intro { border-bottom-color:var(--line-strong); }
.contact-form { border-top:3px solid var(--accent); }
.whatsapp-panel { border-top:3px solid var(--accent); }
.whatsapp-panel-header { background:var(--surface); }
.whatsapp-panel-footer { background:var(--panel); }
@media(max-width:1150px) {
  .atelier-hero-layout { gap:32px; }
  .atelier-hero-copy { padding:42px 0 35px; }
  .atelier-hero h1 { font-size:clamp(3.25rem,5.65vw,4.1rem); }
  .atelier-hero-media { min-height:600px; }
  .atelier-hero-actions { gap:12px 17px; }
  .atelier-hero-actions .button { font-size:.8125rem; padding-inline:17px; gap:15px; }
  .atelier-hero-actions .text-link { font-size:.75rem; }
  .atelier-photo-label { gap:18px; padding:18px 0; }
  .atelier-photo-label>strong { font-size:.875rem; }
  .signature-services { gap:26px; }
  .signature-feature-photo>img { height:315px; }
  .signature-feature-body { padding:25px 0; }
  .signature-service { grid-template-columns:130px minmax(0,1fr); padding:17px 0; gap:21px; }
  .signature-service h3 { font-size:1.35rem; }
  .signature-service p { font-size:.9375rem; }
  .page-home .home-work-grid { gap:28px; }
}
@media(max-width:900px) {
  .atelier-hero-layout { gap:26px; }
  .atelier-hero-copy { padding:35px 0; }
  .atelier-hero h1 { font-size:clamp(2.85rem,5.4vw,3.25rem); }
  .atelier-hero-copy .eyebrow { font-size:.75rem; letter-spacing:.025em; margin-bottom:24px; }
  .atelier-hero-copy .eyebrow i { width:16px; }
  .atelier-hero-description { font-size:1rem; }
  .atelier-hero-actions { flex-direction:column; align-items:flex-start; gap:7px; margin-top:24px; }
  .atelier-hero-contact { margin-top:23px; padding-top:19px; }
  .atelier-hero-contact strong { font-size:1rem; }
  .atelier-hero-media { min-height:585px; }
  .atelier-photo-label { gap:14px; padding:16px 0; }
  .atelier-photo-label>span { font-size:.75rem; letter-spacing:.045em; }
  .atelier-photo-label>strong { font-size:.875rem; }
  .atelier-detail { display:none; }
  .signature-services { grid-template-columns:1fr; gap:24px; }
  .signature-feature { display:grid; grid-template-columns:minmax(0,1fr) minmax(0,1fr); }
  .signature-feature-photo>img { height:340px; }
  .signature-feature-body { align-items:flex-start; justify-content:center; flex-direction:column; padding:32px; }
  .signature-service-list { grid-template-rows:auto; grid-template-columns:1fr 1fr; }
  .signature-service { display:flex; flex-direction:column; align-items:stretch; padding:18px; gap:22px; }
  .signature-service-photo { height:200px; min-height:0; flex-shrink:0; }
  .signature-service h3 { font-size:1.5rem; }
  .signature-service p { font-size:1rem; }
  .page-home .home-work-grid { grid-template-columns:1.15fr 1fr; gap:25px; }
  .page-home .home-work-grid .work-tile:first-child>img { height:605px; }
  .page-home .home-work-grid .work-tile:not(:first-child)>img { height:238px; }
}
@media(max-width:760px) {
  .atelier-hero { padding-top:17px; }
  .atelier-hero-layout { grid-template-columns:1fr; gap:0; }
  .atelier-hero-copy { display:contents; }
  .atelier-hero-copy .eyebrow { order:0; font-size:.75rem; letter-spacing:.045em; margin:23px 0 0; }
  .atelier-hero h1 { order:1; font-size:clamp(2.6rem,9.5vw,4.5rem); line-height:1.12; letter-spacing:-.055em; margin:18px 0 26px; }
  .atelier-hero-description { order:3; font-size:1rem; max-width:440px; margin:25px 0 0; }
  .atelier-hero-actions { order:4; flex-direction:row; align-items:center; gap:12px 20px; margin:22px 0 0; }
  .atelier-hero-actions .button { min-height:52px; font-size:.875rem; padding-inline:19px; }
  .atelier-hero-actions .text-link { font-size:.8125rem; min-height:42px; }
  .atelier-hero-contact { order:5; margin:23px 0 28px; padding-top:20px; width:100%; }
  .atelier-hero-contact strong { font-size:1.05rem; }
  .atelier-hero-media { order:2; min-height:0; }
  .atelier-hero-image { flex:none; min-height:0; height:360px; }
  .atelier-hero-photo { object-position:50% 43%; }
  .atelier-photo-label { padding:17px 0; }
  .atelier-photo-label>strong { font-size:.9375rem; }
  .atelier-hero-footnote { flex-wrap:wrap; justify-content:flex-start; gap:10px 18px; padding-top:16px; font-size:.75rem; }
  .signature-feature { display:flex; }
  .signature-feature-photo>img { height:auto; aspect-ratio:1.35; }
  .signature-feature-body { flex-direction:row; align-items:center; justify-content:space-between; padding:25px 0; gap:18px; }
  .signature-feature-body h3 { font-size:1.6rem; }
  .signature-feature-body .circle-arrow { width:40px; height:40px; }
  .signature-service-list { grid-template-columns:1fr; gap:20px; }
  .signature-service { display:grid; grid-template-columns:115px minmax(0,1fr); padding:16px 0; gap:20px; }
  .signature-service-photo { min-height:190px; height:100%; }
  .signature-service .eyebrow { font-size:.75rem; letter-spacing:.02em; }
  .signature-service h3 { font-size:1.3rem; }
  .signature-service p { font-size:.9375rem; }
  .signature-service .text-link { font-size:.8125rem; gap:10px; }
  .page-home .story-copy h2 { font-size:2.2rem; }
  .page-home .home-work-grid { grid-template-columns:1fr; gap:33px; }
  .page-home .home-work-grid .work-tile:first-child { grid-row:auto; }
  .page-home .home-work-grid .work-tile:first-child>img,.page-home .home-work-grid .work-tile:not(:first-child)>img { height:auto; aspect-ratio:1; }
  .page-home .home-work-grid .work-tile:first-child .work-tile-caption h3 { font-size:1.1rem; }
  .page-home .faq-grid h2,.page-home .guide-section .section-heading h2 { font-size:2.15rem; }
}
@media(max-width:380px) {
  .atelier-hero h1 { font-size:2.6rem; }
  .atelier-hero-copy .eyebrow { font-size:.75rem; letter-spacing:.02em; }
  .atelier-hero-copy .eyebrow i { display:none; }
  .atelier-hero-contact { gap:10px; }
  .atelier-hero-contact strong { font-size:1rem; }
  .atelier-hero-image { height:310px; }
  .atelier-photo-label { gap:14px; padding:15px 0; }
  .atelier-photo-label>strong { font-size:.8125rem; }
  .signature-service { grid-template-columns:1fr; gap:20px; }
  .signature-service-photo { height:215px; min-height:0; }
  .signature-service h3 { font-size:1.5rem; }
  .signature-service p { font-size:1rem; }
}
@media(prefers-reduced-motion:reduce) {
  .signature-feature:hover img,.signature-service:hover img { transform:none; }
}
