:root{
  --ink:#0b0c0d;
  --ink-2:#111315;
  --ink-3:#181a1c;
  --ivory:#f1ede4;
  --ivory-2:#e8e2d7;
  --paper-text:#1b1b1a;
  --white:#f4f1eb;
  --muted:#a7a39c;
  --muted-dark:#706c65;
  --ember:#d97832;
  --ember-2:#ef914c;
  --line:rgba(255,255,255,.12);
  --line-dark:rgba(20,20,20,.14);
  --container:1440px;
  --serif:"Noto Serif TC","Songti TC","PMingLiU",serif;
  --sans:"Noto Sans TC","PingFang TC","Microsoft JhengHei",sans-serif;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth;background:var(--ink)}
body{
  margin:0;
  color:var(--white);
  background:var(--ink);
  font-family:var(--sans);
  line-height:1.75;
  -webkit-font-smoothing:antialiased;
}
a{color:inherit;text-decoration:none}
button,input,textarea,select{font:inherit}
img{display:block;max-width:100%}
::selection{background:var(--ember);color:#fff}

.noise{
  position:fixed;inset:0;pointer-events:none;z-index:999;
  opacity:.035;
  background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
}

.container{width:min(calc(100% - 96px),var(--container));margin-inline:auto}
.section-dark{background:var(--ink)}
.section-light{background:var(--ivory);color:var(--paper-text)}
.eyebrow{margin:0 0 16px;color:var(--ember-2);font-size:12px;letter-spacing:.16em;font-weight:600}
.section-index{margin:0 0 6px;color:var(--muted-dark);font-size:12px;letter-spacing:.14em}
.section-index.orange{color:var(--ember-2)}
h1,h2,h3,p{margin-top:0}
h1,h2,h3{font-family:var(--serif);font-weight:500}
h2{font-size:clamp(34px,4vw,62px);line-height:1.32;letter-spacing:-.025em}
.text-link{display:inline-flex;gap:14px;align-items:center;color:var(--ember-2);font-size:14px;font-weight:500}
.text-link span,.button span,.service-item a span{transition:transform .25s ease}
.text-link:hover span,.button:hover span,.service-item a:hover span{transform:translateX(5px)}

.site-header{
  position:fixed;z-index:100;left:0;right:0;top:0;
  transition:background .3s,border-color .3s,backdrop-filter .3s;
}
.site-header.is-scrolled{
  background:rgba(10,11,12,.78);
  backdrop-filter:blur(18px);
  border-bottom:1px solid rgba(255,255,255,.07);
}
.nav-wrap{height:88px;display:grid;grid-template-columns:1fr auto 1fr;align-items:center;gap:28px}
.brand{display:inline-flex;align-items:center;gap:12px;width:max-content}
.brand-mark{width:33px;height:33px;fill:none;stroke:var(--ember-2);stroke-width:1.7;stroke-linecap:round;stroke-linejoin:round}
.brand b{display:block;font-family:var(--serif);font-size:17px;letter-spacing:.12em;font-weight:600}
.brand small{display:block;font-size:8px;letter-spacing:.14em;color:#938f88;margin-top:1px}
.desktop-nav{display:flex;align-items:center;gap:34px;font-size:13px;color:#d2cfc9}
.desktop-nav a{transition:color .2s}
.desktop-nav a:hover{color:var(--ember-2)}
.nav-cta{
  justify-self:end;border:1px solid rgba(217,120,50,.65);border-radius:999px;
  padding:10px 18px;font-size:13px;color:#f0d3be;display:flex;gap:12px;align-items:center;
}
.menu-button{display:none;background:transparent;border:0;width:44px;height:44px;position:relative}
.menu-button span{position:absolute;left:10px;right:10px;height:1px;background:#fff;transition:.25s}
.menu-button span:first-child{top:17px}.menu-button span:last-child{top:25px}
.menu-button[aria-expanded="true"] span:first-child{top:21px;transform:rotate(45deg)}
.menu-button[aria-expanded="true"] span:last-child{top:21px;transform:rotate(-45deg)}
.mobile-menu{display:none}

.hero{min-height:100svh;position:relative;display:flex;align-items:center;overflow:hidden}
.hero::after{
  content:"";position:absolute;inset:auto 0 0;height:25%;
  background:linear-gradient(to top,rgba(5,6,7,.7),transparent);pointer-events:none;
}
.hero-grid{
  display:grid;grid-template-columns:minmax(420px,.88fr) 1.3fr;gap:64px;
  align-items:center;padding-top:120px;padding-bottom:92px;position:relative;z-index:2;
}
.hero-copy{padding-left:8px}
.hero-copy h1{
  font-size:clamp(58px,6.4vw,102px);line-height:1.18;letter-spacing:-.04em;margin-bottom:22px;
}
.hero-copy h1 span{color:var(--ember-2)}
.hero-kicker{font-family:var(--serif);font-size:22px;letter-spacing:.01em;margin-bottom:20px}
.hero-desc{max-width:610px;color:#bbb7b0;font-size:15px;line-height:1.9}
.hero-actions{display:flex;gap:14px;margin-top:34px;flex-wrap:wrap}
.button{
  min-height:50px;padding:0 22px;border-radius:2px;display:inline-flex;align-items:center;justify-content:center;
  gap:20px;font-size:14px;border:1px solid transparent;transition:.25s ease;
}
.button-primary{background:linear-gradient(110deg,var(--ember),var(--ember-2));color:#fff}
.button-primary:hover{filter:brightness(1.07);transform:translateY(-1px)}
.button-ghost{border-color:rgba(255,255,255,.3);color:#ece8e2}
.button-ghost:hover{border-color:rgba(217,120,50,.7);color:#fff}

.hero-visual{
  position:relative;height:min(66vh,680px);min-height:520px;overflow:hidden;
  margin-right:-7vw;border-radius:2px;
}
.hero-visual img{width:100%;height:100%;object-fit:cover;object-position:center}
.hero-image-shade{
  position:absolute;inset:0;
  background:
    linear-gradient(90deg,var(--ink) 0%,rgba(11,12,13,.75) 11%,rgba(11,12,13,.08) 42%,rgba(11,12,13,.18) 100%),
    linear-gradient(0deg,rgba(11,12,13,.55),transparent 45%);
}
.signal-line{position:absolute;left:6%;right:4%;bottom:21%;width:90%;height:34%}
.signal-path{
  fill:none;stroke:var(--ember-2);stroke-width:2.2;
  filter:drop-shadow(0 0 7px rgba(239,145,76,.8));
  stroke-dasharray:10 3;
  animation:signalDash 14s linear infinite;
}
@keyframes signalDash{to{stroke-dashoffset:-260}}
.signal-node{position:absolute;font-size:9px;font-weight:600;letter-spacing:.07em;color:#eee;white-space:nowrap}
.signal-node i{
  width:7px;height:7px;background:#fff;border-radius:50%;display:block;margin:0 auto 6px;
  box-shadow:0 0 0 2px var(--ember),0 0 18px 5px rgba(239,145,76,.68)
}
.n1{left:17%;bottom:31%}.n2{left:37%;bottom:27%}.n3{left:55%;bottom:35%}.n4{left:69%;bottom:25%}.n5{right:3%;bottom:38%}
.scroll-cue{position:absolute;z-index:3;bottom:28px;left:50%;transform:translateX(-50%);font-size:9px;letter-spacing:.2em;color:#817e78}
.scroll-cue span{color:var(--ember-2);margin-left:10px}

.services{padding:120px 0 126px}
.section-heading{display:grid;grid-template-columns:80px 1fr;max-width:920px;margin-bottom:72px}
.section-heading .light-eyebrow{color:var(--ember)}
.section-heading h2{font-size:48px;margin:0 0 10px}
.section-heading p:last-child{color:#6d6963}
.service-grid{display:grid;grid-template-columns:repeat(3,1fr);border-top:1px solid var(--line-dark)}
.service-item{padding:42px 48px 18px 0;border-right:1px solid var(--line-dark);min-height:320px;position:relative}
.service-item+ .service-item{padding-left:48px}
.service-item:last-child{border-right:0}
.service-no{color:var(--ember);font-size:13px;letter-spacing:.08em}
.service-item h3{font-size:34px;margin:24px 0 18px}
.service-item p{color:#5f5b55;max-width:360px;font-size:15px}
.service-meta{font-size:11px;letter-spacing:.06em;color:#8a837b;margin-top:22px}
.service-item a{display:inline-flex;gap:12px;align-items:center;color:var(--ember);font-size:13px;margin-top:28px}

.projects{padding:122px 0 132px}
.section-topline{display:flex;justify-content:space-between;align-items:flex-end;margin-bottom:54px}
.section-topline h2{font-size:52px;margin-bottom:0}
.project-layout{display:grid;grid-template-columns:1.65fr .75fr;gap:48px}
.featured-project{position:relative;min-height:590px;overflow:hidden;border:1px solid rgba(255,255,255,.08)}
.featured-media,.featured-media img,.project-gradient{position:absolute;inset:0;width:100%;height:100%}
.featured-media img{object-fit:cover}
.project-gradient{background:linear-gradient(90deg,rgba(7,8,9,.96) 0%,rgba(7,8,9,.84) 36%,rgba(7,8,9,.15) 76%),linear-gradient(0deg,rgba(7,8,9,.7),transparent 60%)}
.featured-copy{position:relative;z-index:2;width:54%;padding:66px 0 58px 52px}
.featured-copy>p:first-child{font-size:11px;letter-spacing:.12em;color:var(--ember-2)}
.featured-copy h3{font-size:46px;line-height:1.35;margin:20px 0}
.featured-copy>p:nth-of-type(2){color:#c7c2bb;max-width:480px;font-size:15px}
.tags{display:flex;gap:8px;flex-wrap:wrap;margin-top:28px}
.tags span{border:1px solid rgba(255,255,255,.2);padding:4px 10px;font-size:10px;color:#c3bfb8}
.featured-copy a{display:inline-block;color:var(--ember-2);margin-top:40px;font-size:13px}
.project-list{display:flex;flex-direction:column;gap:26px}
.project-mini{display:grid;grid-template-columns:140px 1fr;gap:22px;padding-bottom:26px;border-bottom:1px solid var(--line)}
.project-mini:last-child{border-bottom:0}
.project-mini span{color:var(--ember-2);font-size:12px}
.project-mini h3{font-size:24px;margin:4px 0 8px;line-height:1.45}
.project-mini p{font-size:13px;line-height:1.7;color:#a7a39c;margin-bottom:9px}
.project-mini a{font-size:12px;color:var(--ember-2)}
.mini-visual{height:120px;overflow:hidden;background:#15171a;border:1px solid rgba(255,255,255,.07)}
.event-mini{
  background:
    radial-gradient(circle at 70% 40%,rgba(239,145,76,.18),transparent 23%),
    linear-gradient(145deg,#1c2025,#090a0b 64%);
  position:relative;
}
.event-mini::after{
  content:"";position:absolute;left:18%;right:15%;bottom:20%;height:1px;background:#d97832;
  box-shadow:0 -15px 0 rgba(255,255,255,.15),0 -30px 0 rgba(255,255,255,.09)
}
.ai-mini{position:relative;padding:18px}
.chart-line{position:absolute;left:15px;right:15px;top:43px;height:45px;border-top:1px solid #2f404c;transform:skewY(-7deg)}
.chart-bars{position:absolute;left:18px;right:18px;bottom:15px;display:flex;align-items:flex-end;gap:8px;height:55px}
.chart-bars i{flex:1;background:linear-gradient(#486577,#1a252c);border-radius:1px}
.chart-bars i:nth-child(1){height:35%}.chart-bars i:nth-child(2){height:55%}.chart-bars i:nth-child(3){height:47%}.chart-bars i:nth-child(4){height:78%}.chart-bars i:nth-child(5){height:92%}

.method{padding:132px 0;border-top:1px solid rgba(255,255,255,.07)}
.method-grid{display:grid;grid-template-columns:.8fr 1.25fr;gap:90px;align-items:center}
.method-copy h2{font-size:50px;margin:14px 0 24px}
.method-copy>p:nth-of-type(3){color:#a9a59f;max-width:520px}
.method-copy .text-link{margin-top:22px}
.loop{position:relative;height:540px}
.loop-ring{
  position:absolute;width:390px;height:390px;left:50%;top:50%;transform:translate(-50%,-50%);
  border:1px solid rgba(217,120,50,.58);border-radius:50%;
  box-shadow:inset 0 0 80px rgba(217,120,50,.025),0 0 60px rgba(217,120,50,.025)
}
.loop-ring::after{
  content:"";position:absolute;inset:-14px;border-radius:50%;border:1px dashed rgba(217,120,50,.2);
  animation:spin 28s linear infinite
}
@keyframes spin{to{transform:rotate(360deg)}}
.loop-node{
  position:absolute;width:150px;text-align:center;padding:10px 4px;
}
.loop-node::before{
  content:"";display:block;width:10px;height:10px;border-radius:50%;margin:0 auto 10px;background:var(--ember-2);
  box-shadow:0 0 18px rgba(239,145,76,.55)
}
.loop-node b{display:block;font-family:var(--sans);font-size:12px;letter-spacing:.05em}
.loop-node span{display:block;color:#8d8983;font-size:11px;margin-top:4px}
.loop-event{left:50%;top:1%;transform:translateX(-50%)}
.loop-media{right:0;top:34%}
.loop-content{right:13%;bottom:2%}
.loop-ai{left:13%;bottom:2%}
.loop-discovery{left:0;top:34%}

.ai-section{padding:132px 0;border-top:1px solid rgba(255,255,255,.07)}
.ai-grid{display:grid;grid-template-columns:.9fr .8fr .8fr;gap:54px;align-items:center}
.ai-copy h2{font-size:48px;margin:12px 0 24px}
.ai-copy>p:nth-of-type(n+3){color:#aaa69f;font-size:14px}
.ai-copy .button{margin-top:24px}
.ai-query{
  min-height:330px;background:linear-gradient(145deg,#191b1e,#111315);border:1px solid rgba(255,255,255,.08);
  padding:44px 42px;box-shadow:0 25px 60px rgba(0,0,0,.24)
}
.query-top{display:flex;gap:10px;align-items:center;color:#908d87;font-size:12px}
.query-dot{width:8px;height:8px;border-radius:50%;background:#77736d}
.ai-query blockquote{font-family:var(--serif);font-size:27px;line-height:1.6;margin:42px 0 34px;color:#eeeae3}
.answer-line{display:flex;gap:12px;align-items:center;color:var(--ember-2);font-size:12px}
.answer-line i{height:1px;flex:1;background:linear-gradient(90deg,var(--ember),transparent)}
.ai-sources>p{font-size:13px;color:#c5c1ba;margin-bottom:22px}
.ai-sources ul{list-style:none;padding:0;margin:0}
.ai-sources li{display:grid;grid-template-columns:34px 1fr;padding:14px 0;border-bottom:1px solid rgba(255,255,255,.08);font-size:13px;color:#a9a59f}
.ai-sources li span{color:var(--ember-2)}

.about{padding:0;border-top:1px solid rgba(255,255,255,.07)}
.about-grid{display:grid;grid-template-columns:.9fr 1.1fr;min-height:560px}
.about-copy{padding:112px 90px 100px 0;align-self:center}
.about-copy h2{font-size:50px;margin:12px 0 24px}
.about-copy>p:nth-of-type(3){max-width:620px;color:#a9a59f}
.about-copy .text-link{margin-top:25px}
.about-photo{margin:0;position:relative;overflow:hidden;min-height:560px}
.about-photo::after{content:"";position:absolute;inset:0;background:linear-gradient(90deg,var(--ink),transparent 30%),linear-gradient(0deg,rgba(11,12,13,.35),transparent 40%)}
.about-photo img{width:100%;height:100%;object-fit:cover}
.about-photo figcaption{position:absolute;z-index:2;left:30px;bottom:26px;color:#aaa59e;font-size:10px;letter-spacing:.03em}

.final-cta{padding:110px 0;border-top:1px solid rgba(255,255,255,.08)}
.cta-grid{display:grid;grid-template-columns:.8fr 1fr;gap:100px;align-items:start}
.cta-grid h2{font-size:56px;margin:12px 0 18px}
.cta-grid>div>p:last-child{color:#aaa69f}
.contact-form{background:#121416;border:1px solid rgba(255,255,255,.08);padding:38px}
.field-row{display:grid;grid-template-columns:1fr 1fr;gap:14px}
.contact-form label{display:block;font-size:11px;color:#8d8982;margin-bottom:14px}
.contact-form input,.contact-form textarea,.contact-form select{
  width:100%;margin-top:8px;background:#0c0d0e;border:1px solid rgba(255,255,255,.12);
  color:#ece9e2;padding:13px 14px;outline:none;border-radius:0
}
.contact-form input:focus,.contact-form textarea:focus,.contact-form select:focus{border-color:rgba(217,120,50,.7)}
.contact-form select{appearance:auto}
.submit-button{border:0;cursor:pointer}
.form-note{margin:14px 0 0;color:#77736d;font-size:10px}

.site-footer{background:#08090a;border-top:1px solid rgba(255,255,255,.08);padding:62px 0 20px}
.footer-grid{display:grid;grid-template-columns:1.5fr repeat(3,.8fr);gap:60px}
.footer-grid>div:not(.footer-brand){display:flex;flex-direction:column;gap:8px;font-size:12px;color:#8f8b85}
.footer-grid strong{font-size:11px;color:#dfdbd4;margin-bottom:7px;font-weight:500}
.footer-grid a:hover{color:var(--ember-2)}
.footer-brand>p{font-size:11px;color:#79756f;margin:15px 0 0 46px}
.footer-bottom{margin-top:48px;padding-top:18px;border-top:1px solid rgba(255,255,255,.06);display:flex;justify-content:space-between;color:#66635f;font-size:9px;letter-spacing:.02em}

.reveal{opacity:0;transform:translateY(18px);transition:opacity .8s ease,transform .8s ease}
.reveal.is-visible{opacity:1;transform:none}

@media (max-width:1150px){
  .container{width:min(calc(100% - 48px),var(--container))}
  .desktop-nav{gap:20px}
  .hero-grid{grid-template-columns:.9fr 1.1fr;gap:20px}
  .hero-visual{margin-right:-24px}
  .project-layout{grid-template-columns:1.35fr .8fr}
  .method-grid{gap:30px}
}

@media (max-width:900px){
  .container{width:min(calc(100% - 36px),var(--container))}
  .nav-wrap{grid-template-columns:1fr auto;height:72px}
  .desktop-nav,.nav-cta{display:none}
  .menu-button{display:block;justify-self:end}
  .mobile-menu{
    position:absolute;top:72px;left:18px;right:18px;background:rgba(13,14,15,.97);
    backdrop-filter:blur(20px);border:1px solid rgba(255,255,255,.08);padding:18px;
  }
  .mobile-menu.is-open{display:flex;flex-direction:column}
  .mobile-menu a{padding:12px 6px;border-bottom:1px solid rgba(255,255,255,.06);font-size:14px}
  .mobile-menu a:last-child{border-bottom:0;color:var(--ember-2)}

  .hero{min-height:auto;padding-top:72px}
  .hero-grid{grid-template-columns:1fr;padding:72px 0 34px;gap:46px}
  .hero-copy{padding:0}
  .hero-copy h1{font-size:clamp(48px,12vw,74px)}
  .hero-kicker{font-size:18px}
  .hero-desc{font-size:14px}
  .hero-actions{flex-direction:column;align-items:stretch}
  .hero-actions .button{width:100%}
  .hero-visual{height:470px;min-height:0;margin:0 -18px;border-radius:0}
  .hero-image-shade{background:linear-gradient(0deg,var(--ink) 0%,rgba(11,12,13,.15) 45%,rgba(11,12,13,.12))}
  .signal-node{font-size:8px}
  .n1{left:10%}.n2{left:30%}.n3{left:50%}.n4{left:63%}.n5{right:1%}
  .scroll-cue{display:none}

  .services{padding:86px 0 94px}
  .section-heading{grid-template-columns:1fr;margin-bottom:48px}
  .section-heading>.section-index{display:none}
  .section-heading h2{font-size:38px}
  .service-grid{grid-template-columns:1fr}
  .service-item,.service-item+ .service-item{padding:34px 0;border-right:0;border-bottom:1px solid var(--line-dark);min-height:0}
  .service-item:last-child{border-bottom:0}
  .service-item h3{font-size:31px;margin:14px 0}
  .service-meta{margin-top:16px}
  .service-item a{margin-top:18px}

  .projects{padding:88px 0 96px}
  .section-topline{align-items:flex-start}
  .section-topline .text-link{display:none}
  .section-topline h2{font-size:42px}
  .project-layout{grid-template-columns:1fr;gap:28px}
  .featured-project{min-height:600px}
  .project-gradient{background:linear-gradient(0deg,rgba(7,8,9,.96) 0%,rgba(7,8,9,.72) 48%,rgba(7,8,9,.18) 78%)}
  .featured-copy{position:absolute;left:0;right:0;bottom:0;width:auto;padding:34px 28px}
  .featured-copy h3{font-size:36px}
  .featured-copy>p:nth-of-type(2){font-size:13px}
  .project-list{gap:0}
  .project-mini{grid-template-columns:110px 1fr;padding:24px 0}
  .mini-visual{height:95px}
  .project-mini h3{font-size:22px}

  .method{padding:88px 0 100px}
  .method-grid{grid-template-columns:1fr;gap:42px}
  .method-copy h2{font-size:39px}
  .loop{height:auto;display:flex;overflow-x:auto;gap:18px;padding:12px 0 18px;scroll-snap-type:x mandatory}
  .loop-ring{display:none}
  .loop-node{position:relative!important;inset:auto!important;transform:none!important;min-width:160px;width:160px;border:1px solid rgba(255,255,255,.09);padding:24px 16px;scroll-snap-align:start;text-align:left}
  .loop-node::before{margin:0 0 18px}
  .loop-node span{margin-top:7px}

  .ai-section{padding:92px 0}
  .ai-grid{grid-template-columns:1fr;gap:26px}
  .ai-copy h2{font-size:40px}
  .ai-copy .button{width:100%}
  .ai-query{min-height:0;padding:28px 24px}
  .ai-query blockquote{font-size:23px;margin:28px 0}
  .ai-sources{padding-top:18px}

  .about-grid{grid-template-columns:1fr}
  .about-copy{padding:90px 0 40px}
  .about-copy h2{font-size:40px}
  .about-photo{min-height:360px;margin:0 -18px}
  .about-photo::after{background:linear-gradient(0deg,var(--ink),transparent 36%)}

  .final-cta{padding:90px 0}
  .cta-grid{grid-template-columns:1fr;gap:36px}
  .cta-grid h2{font-size:44px}
  .contact-form{padding:24px}
  .field-row{grid-template-columns:1fr}

  .footer-grid{grid-template-columns:1fr 1fr;gap:36px}
  .footer-brand{grid-column:1/-1}
  .footer-bottom{flex-direction:column;gap:8px}
}

@media (max-width:520px){
  .container{width:calc(100% - 32px)}
  .brand b{font-size:15px}
  .hero-grid{padding-top:54px}
  .hero-copy h1{font-size:47px;line-height:1.25}
  .hero-visual{height:390px;margin-left:-16px;margin-right:-16px}
  .signal-line{bottom:25%;height:32%}
  .signal-node{transform:scale(.9);transform-origin:center}
  .n1{left:6%;bottom:34%}.n2{left:27%;bottom:29%}.n3{left:45%;bottom:36%}.n4{left:61%;bottom:25%}.n5{right:-1%;bottom:43%}
  .section-heading h2,.method-copy h2,.ai-copy h2,.about-copy h2{font-size:34px}
  .featured-project{min-height:520px}
  .featured-copy h3{font-size:31px}
  .project-mini{grid-template-columns:90px 1fr;gap:16px}
  .footer-grid{grid-template-columns:1fr}
  .footer-brand{grid-column:auto}
  .footer-grid>div{padding-bottom:18px;border-bottom:1px solid rgba(255,255,255,.06)}
}

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

/* ============================================================
   V6.1 UX / TYPOGRAPHY / METHOD PATCH
   ============================================================ */

.section-kicker{
  margin:0 0 14px;
  color:var(--ember);
  font-size:12px;
  letter-spacing:.14em;
  font-weight:600;
}
.dark-kicker{color:var(--ember-2)}

.brand small{display:none}

/* Fix over-wrapping: phrases are intentionally held together on desktop. */
.hero-copy{min-width:0}
.hero-copy h1{
  font-size:clamp(58px,5.25vw,82px);
  line-height:1.22;
  letter-spacing:-.035em;
  max-width:none;
}
.hero-copy h1 > .hero-line{
  display:block;
  white-space:nowrap;
  color:var(--white);
}
.hero-copy h1 .accent{color:var(--ember-2)}
.hero-grid{
  grid-template-columns:minmax(570px,.96fr) minmax(0,1.12fr);
  gap:42px;
}
.hero-desc{
  max-width:560px;
  font-size:16px;
  line-height:1.95;
}
.hero-visual{
  height:min(64vh,650px);
  min-height:520px;
}
.hero-visual img{
  filter:saturate(.82) contrast(1.03);
}
.hero-image-shade{
  background:
    linear-gradient(90deg,var(--ink) 0%,rgba(11,12,13,.7) 10%,rgba(11,12,13,.08) 45%,rgba(11,12,13,.22) 100%),
    linear-gradient(0deg,rgba(11,12,13,.48),transparent 50%);
}

/* Larger reading widths / calmer typography */
.section-heading{max-width:1040px}
.section-heading h2{font-size:clamp(38px,3.5vw,50px);text-wrap:balance}
.service-item h3{font-size:32px}
.service-item p{font-size:16px;line-height:1.9;max-width:390px}
.featured-copy h3{font-size:clamp(36px,3.2vw,46px);text-wrap:balance}
.featured-copy>p:nth-of-type(2){font-size:16px;line-height:1.9}
.project-mini p{font-size:14px;line-height:1.85}

/* Project photo has no baked-in copy; give imagery more breathing room. */
.featured-media img{object-position:center 48%}

/* Method: warm editorial reading field instead of another black block. */
.method{
  padding:128px 0 134px;
  border-top:0;
}
.method-grid{
  grid-template-columns:.72fr 1.28fr;
  gap:72px;
  align-items:center;
}
.method-copy h2{
  font-size:clamp(38px,3.45vw,50px);
  line-height:1.45;
  color:var(--paper-text);
  margin:14px 0 24px;
  text-wrap:balance;
}
.method-copy>p:nth-of-type(3){
  color:#625e58;
  font-size:16px;
  line-height:1.95;
  max-width:540px;
}
.method .text-link{color:var(--ember)}

/* Animated signal loop — no dashboard icons, no static ring. */
.flow-visual{
  min-height:470px;
  position:relative;
  overflow:hidden;
}
.flow-svg{
  position:absolute;
  inset:22px 0 0;
  width:100%;
  height:390px;
}
.flow-path{
  fill:none;
  stroke:rgba(190,101,41,.72);
  stroke-width:1.6;
  stroke-linecap:round;
  stroke-dasharray:2 8;
  animation:flowDash 18s linear infinite;
}
.flow-pulse{
  fill:var(--ember);
  stroke:#fff2e8;
  stroke-width:1.5;
}
@keyframes flowDash{to{stroke-dashoffset:-240}}

.flow-step{
  position:absolute;
  width:170px;
  padding:14px 14px 13px;
  background:rgba(241,237,228,.78);
  border-left:1px solid rgba(190,101,41,.45);
  backdrop-filter:blur(8px);
}
.flow-step em{
  display:block;
  margin-bottom:5px;
  color:var(--ember);
  font-style:normal;
  font-size:10px;
  letter-spacing:.14em;
}
.flow-step b{
  display:block;
  color:#1a1917;
  font-family:var(--serif);
  font-size:18px;
  font-weight:600;
}
.flow-step span{
  display:block;
  margin-top:5px;
  color:#77716a;
  font-size:11px;
  line-height:1.55;
}
.f1{left:0;top:120px}
.f2{left:21%;top:49px}
.f3{left:43%;top:120px}
.f4{right:17%;top:198px}
.f5{right:0;top:92px}
.flow-caption{
  position:absolute;
  left:15%;
  right:7%;
  bottom:9px;
  padding-top:15px;
  border-top:1px solid rgba(20,20,20,.12);
  color:#706a63;
  font-size:12px;
  text-align:right;
}

/* AI: improve reading rhythm */
.ai-copy h2{
  font-size:clamp(38px,3.3vw,48px);
  line-height:1.42;
  text-wrap:balance;
}
.ai-copy>p:nth-of-type(n+3){
  font-size:15px;
  line-height:1.95;
}
.ai-query blockquote{font-size:25px}

/* About: avoid forced 4-line headline. */
.about-copy{
  padding-right:70px;
}
.about-copy h2{
  font-size:clamp(38px,3.25vw,48px);
  line-height:1.48;
  text-wrap:balance;
}
.about-copy>p:nth-of-type(3){
  font-size:15px;
  line-height:1.95;
}

/* Contact becomes a visual reset before the dark footer. */
.final-cta{
  color:var(--paper-text);
  border-top:0;
}
.final-cta .section-kicker{color:var(--ember)}
.cta-grid h2{
  font-size:clamp(40px,3.8vw,54px);
  line-height:1.42;
  text-wrap:balance;
}
.cta-grid>div>p:last-child{color:#625e58}
.contact-form{
  color:var(--white);
  box-shadow:0 28px 60px rgba(20,16,12,.12);
}

/* Header / body readability */
.desktop-nav{font-size:14px}
.nav-cta{font-size:13px}
.footer-brand>p{margin-left:45px}

/* Wider breakpoint tuning */
@media (max-width:1250px){
  .hero-grid{
    grid-template-columns:minmax(500px,.9fr) minmax(0,1.1fr);
    gap:28px;
  }
  .hero-copy h1{font-size:clamp(54px,5vw,72px)}
  .flow-step{width:155px}
}

/* Real mobile composition, not desktop squeezed smaller. */
@media (max-width:900px){
  .hero-grid{grid-template-columns:1fr;gap:40px}
  .hero-copy h1{
    font-size:clamp(44px,11.7vw,64px);
    line-height:1.27;
  }
  .hero-copy h1 > .hero-line{white-space:normal}
  .hero-copy h1 > .hero-line:first-child{white-space:nowrap}
  .hero-copy h1 > .hero-line:last-child{white-space:nowrap}
  .hero-desc{font-size:15px}
  .hero-visual{height:430px;min-height:0}
  .signal-node{font-size:7px}

  .method{padding:86px 0 94px}
  .method-grid{grid-template-columns:1fr;gap:45px}
  .method-copy h2{font-size:36px}
  .flow-visual{
    min-height:0;
    display:grid;
    gap:0;
    overflow:visible;
    border-top:1px solid var(--line-dark);
  }
  .flow-svg,.flow-caption{display:none}
  .flow-step{
    position:relative!important;
    inset:auto!important;
    width:auto;
    min-width:0;
    display:grid;
    grid-template-columns:46px 110px 1fr;
    align-items:center;
    gap:10px;
    padding:20px 0;
    background:transparent;
    border-left:0;
    border-bottom:1px solid var(--line-dark);
    backdrop-filter:none;
  }
  .flow-step em{margin:0}
  .flow-step b{font-size:18px}
  .flow-step span{margin:0;font-size:12px}

  .about-copy h2,.ai-copy h2{font-size:36px}
  .final-cta{padding:86px 0}
}

@media (max-width:520px){
  .hero-copy h1{
    font-size:clamp(39px,11.5vw,50px);
    letter-spacing:-.045em;
  }
  .hero-copy h1 > .hero-line:first-child,
  .hero-copy h1 > .hero-line:last-child{white-space:nowrap}
  .hero-kicker{font-size:17px}
  .hero-visual{height:350px}
  .signal-node{display:none}
  .signal-line{left:0;width:100%;opacity:.9}
  .section-heading h2,.method-copy h2,.ai-copy h2,.about-copy h2{font-size:32px}
  .flow-step{grid-template-columns:38px 96px 1fr}
  .flow-step b{font-size:16px}
  .cta-grid h2{font-size:38px}
}


/* ============================================================
   V6.2 - real company assets, aligned hero signal, clearer proof
   ============================================================ */
.brand-official img{
  width:150px;
  height:auto;
  object-fit:contain;
  display:block;
}
.site-footer .brand-official img{width:160px}

/* Hero: keep the full visual inside the site container. */
.hero-grid{
  grid-template-columns:minmax(520px,.96fr) minmax(0,1.04fr);
  gap:44px;
}
.hero-visual{
  height:min(60vh,610px);
  min-height:500px;
  margin-right:0!important;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.04);
}
.hero-visual img{
  object-position:52% center;
}
.hero-signal-map{
  position:absolute;
  left:2%;
  right:2%;
  bottom:13%;
  width:96%;
  height:42%;
  overflow:visible;
}
.hero-signal-path{
  fill:none;
  stroke:var(--ember-2);
  stroke-width:2.25;
  stroke-linecap:round;
  vector-effect:non-scaling-stroke;
  filter:drop-shadow(0 0 7px rgba(239,145,76,.62));
  stroke-dasharray:5 5;
  animation:heroSignalDash 13s linear infinite;
}
@keyframes heroSignalDash{to{stroke-dashoffset:-180}}
.hero-signal-node circle{
  fill:#fff7ef;
  stroke:var(--ember-2);
  stroke-width:3;
  vector-effect:non-scaling-stroke;
  filter:drop-shadow(0 0 8px rgba(239,145,76,.88));
}
.hero-signal-node text{
  fill:#f2eee8;
  font-family:var(--sans);
  font-size:18px;
  font-weight:600;
  letter-spacing:.08em;
  text-anchor:middle;
  paint-order:stroke;
  stroke:rgba(7,8,9,.75);
  stroke-width:5px;
  stroke-linejoin:round;
}
.hero-moving-dot{fill:#fff;stroke:var(--ember-2);stroke-width:2;vector-effect:non-scaling-stroke}
.hero-flow-helper{
  display:none;
  margin:0;
}

/* Source-grounded service details stay readable instead of shrinking. */
.service-item{min-height:350px}
.service-meta{line-height:1.75;max-width:380px}

/* Real case imagery */
.featured-media img{object-position:center center}
.project-mini .mini-visual{padding:0}
.project-mini .mini-visual img{width:100%;height:100%;object-fit:cover;display:block}

/* Real founder proof */
.about-grid{grid-template-columns:1.08fr .92fr}
.about-photo img{object-position:center top}
.founder-brief{
  margin-top:28px;
  padding-top:22px;
  border-top:1px solid rgba(255,255,255,.1);
  display:grid;
  gap:8px;
  max-width:650px;
}
.founder-brief strong{font-family:var(--serif);font-size:20px;font-weight:500;color:#f0ece5}
.founder-brief span{font-size:12px;line-height:1.8;color:#9f9a92}
.client-proof{margin-top:18px!important;font-size:12px!important;line-height:1.85!important;color:#858079!important}

/* Footer: don't reserve a visual row for blank phone data. */
[data-phone][hidden],[data-contact-email][hidden]{display:none!important}

@media (max-width:1250px){
  .hero-grid{grid-template-columns:minmax(480px,.92fr) minmax(0,1.08fr);gap:30px}
  .brand-official img{width:138px}
}

@media (max-width:900px){
  .brand-official img{width:132px}
  .hero-grid{grid-template-columns:1fr;gap:28px}
  .hero-visual{
    height:410px;
    min-height:0;
    margin-left:0!important;
    margin-right:0!important;
  }
  .hero-signal-map{left:0;right:0;width:100%;bottom:18%;height:38%}
  .hero-signal-node text{font-size:15px}
  .hero-flow-helper{
    display:block;
    position:absolute;
    left:18px;
    right:18px;
    bottom:18px;
    z-index:4;
    padding-top:14px;
    border-top:1px solid rgba(255,255,255,.14);
    color:#c8c2ba;
    font-size:12px;
    line-height:1.8;
  }
  .about-grid{grid-template-columns:1fr}
  .about-photo{min-height:500px;margin:0}
  .about-photo img{object-fit:cover;object-position:center 12%}
}

@media (max-width:520px){
  .hero-visual{height:330px}
  .hero-signal-map{bottom:24%;height:34%}
  .hero-signal-node text{display:none}
  .hero-signal-node circle{r:7px}
  .hero-flow-helper{font-size:11px;line-height:1.65;bottom:12px;padding-top:10px}
  .service-item{min-height:0}
  .project-mini .mini-visual{height:92px}
  .about-photo{min-height:440px}
  .founder-brief strong{font-size:18px}
}


/* ============================================================
   V6.3 — Client review refinements
   ============================================================ */

/* Header: wordmark only, no icon/logo */
.brand-wordmark{
  display:inline-flex;
  align-items:center;
  width:max-content;
}
.brand-wordmark b{
  font-family:var(--serif);
  font-size:18px;
  letter-spacing:.14em;
  font-weight:600;
  color:#f3efe8;
}
.brand-wordmark span{display:block}

/* Decorative numeric section counters removed */
.section-heading{
  display:block;
  max-width:1040px;
}
.service-item h3{margin-top:4px}
.service-item+ .service-item{padding-left:48px}
.case-type{
  color:var(--ember-2)!important;
  font-size:11px!important;
  letter-spacing:.08em!important;
}

/* Hero stays fully inside container — no cropped right edge */
.hero-grid{
  grid-template-columns:minmax(540px,.92fr) minmax(0,1.08fr);
  gap:42px;
}
.hero-visual{
  margin-right:0!important;
  width:100%;
  max-width:100%;
  overflow:hidden;
}
.hero-signal-map{
  position:absolute;
  left:3%;
  right:3%;
  bottom:13%;
  width:94%;
  height:40%;
  overflow:visible;
}
.hero-signal-path{
  fill:none;
  stroke:rgba(239,145,76,.86);
  stroke-width:2.1;
  stroke-linecap:round;
  filter:drop-shadow(0 0 7px rgba(239,145,76,.32));
}
.hero-signal-node .node-ring{
  fill:rgba(11,12,13,.75);
  stroke:rgba(239,145,76,.75);
  stroke-width:1.5;
}
.hero-signal-node .node-core{
  fill:#fff2e8;
  stroke:var(--ember-2);
  stroke-width:2;
  filter:drop-shadow(0 0 5px rgba(239,145,76,.8));
}
.hero-signal-node text{
  fill:#f1eee7;
  font-family:var(--sans);
  font-size:16px;
  font-weight:600;
  letter-spacing:.06em;
  text-anchor:middle;
}
.hero-signal-node .node-title-end{text-anchor:end}
.hero-moving-dot{fill:#fff3ea;stroke:var(--ember-2);stroke-width:2}
.hero-flow-helper{
  display:none;
  position:absolute;
  left:5%;
  right:5%;
  bottom:4%;
  margin:0;
  color:#c7c2bb;
  font-size:12px;
  line-height:1.7;
  background:rgba(9,10,11,.62);
  border-left:2px solid var(--ember);
  padding:10px 12px;
  backdrop-filter:blur(8px);
}
.hero-flow-helper strong{color:#efeae2;font-weight:500}

/* Method headline flows naturally */
.method-copy h2{
  max-width:620px;
  text-wrap:pretty;
}

/* New continuous Visibility Route */
.flow-route{
  position:relative;
  min-height:430px;
  overflow:hidden;
}
.flow-route-svg{
  width:100%;
  height:360px;
  display:block;
}
.route-path{
  fill:none;
  stroke:rgba(190,101,41,.76);
  stroke-width:2;
  stroke-linecap:round;
  filter:drop-shadow(0 0 7px rgba(217,120,50,.12));
}
.route-ring{
  fill:var(--ivory);
  stroke:rgba(190,101,41,.72);
  stroke-width:1.5;
}
.route-core{
  fill:var(--ember);
}
.route-title,.route-sub{
  font-family:var(--sans);
  text-anchor:middle;
  fill:#24211e;
}
.route-title{
  font-size:18px;
  font-weight:600;
}
.route-sub{
  font-size:11px;
  fill:#7a736c;
}
.route-pulse{
  fill:#fff7f1;
  stroke:var(--ember);
  stroke-width:2;
}
.route-caption{
  margin:0;
  text-align:right;
  color:#756f67;
  font-size:12px;
  border-top:1px solid rgba(20,20,20,.10);
  padding-top:14px;
}
.flow-mobile-copy{display:none}

/* Real media case thumbnail */
.project-mini .mini-visual img{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* GEO explainer */
.geo-section{
  padding:124px 0 132px;
  border-top:1px solid rgba(255,255,255,.07);
  background:
    radial-gradient(circle at 73% 46%,rgba(217,120,50,.07),transparent 25%),
    var(--ink);
}
.geo-grid{
  display:grid;
  grid-template-columns:.82fr 1.18fr;
  gap:90px;
  align-items:center;
}
.geo-copy h2{
  font-size:clamp(38px,3.55vw,52px);
  line-height:1.45;
  margin:12px 0 24px;
  text-wrap:balance;
}
.geo-copy>p:nth-of-type(2){
  color:#aaa69f;
  font-size:15px;
  line-height:1.95;
  max-width:560px;
}
.geo-points{
  display:flex;
  gap:9px;
  flex-wrap:wrap;
  margin:28px 0 30px;
}
.geo-points span{
  border:1px solid rgba(255,255,255,.14);
  padding:7px 12px;
  color:#c9c5be;
  font-size:11px;
}
.geo-demo{
  background:linear-gradient(145deg,#17191c,#101214);
  border:1px solid rgba(255,255,255,.10);
  box-shadow:0 32px 80px rgba(0,0,0,.28);
  min-height:500px;
  padding:28px;
}
.geo-demo-top{
  display:flex;
  align-items:center;
  gap:6px;
  padding-bottom:18px;
  border-bottom:1px solid rgba(255,255,255,.08);
  color:#8d8982;
  font-size:11px;
}
.geo-demo-top span{margin-right:auto}
.geo-demo-top i{
  width:6px;height:6px;border-radius:50%;
  background:#4b4d4f;
}
.geo-question{
  max-width:72%;
  margin:30px 0 26px auto;
  background:#222529;
  border:1px solid rgba(255,255,255,.08);
  padding:17px 20px;
}
.geo-question span,.geo-answer-label{
  display:block;
  font-size:9px;
  letter-spacing:.08em;
  color:#777b7f;
  margin-bottom:8px;
}
.geo-question p{
  margin:0;
  color:#e3dfd8;
  font-size:14px;
}
.geo-answer{
  width:88%;
  background:#111315;
  border-left:2px solid var(--ember);
  padding:24px 26px;
}
.geo-answer h3{
  font-family:var(--serif);
  font-size:28px;
  margin:0 0 12px;
}
.geo-answer p{
  color:#aaa69f;
  font-size:13px;
  line-height:1.85;
}
.geo-sources{
  display:flex;
  gap:7px;
  flex-wrap:wrap;
  margin-top:18px;
}
.geo-sources span{
  background:#1b1d20;
  border:1px solid rgba(255,255,255,.08);
  color:#96928b;
  padding:5px 9px;
  font-size:9px;
}
.geo-demo-note{
  color:#77736d;
  font-size:10px;
  line-height:1.6;
  margin:20px 0 0;
}

/* Form backend status */
.hp-field{
  position:absolute!important;
  width:1px!important;
  height:1px!important;
  overflow:hidden!important;
  clip:rect(0 0 0 0)!important;
  white-space:nowrap!important;
}
.form-status{
  min-height:20px;
  margin:12px 0 0;
  color:#8f8b85;
  font-size:11px;
}
.form-status.is-success{color:#b9c7af}
.form-status.is-error{color:#ef914c}

/* Footer: restore calm V6.1 composition */
.site-footer .brand-mark{
  width:33px;
  height:33px;
}
.site-footer .brand b{
  font-family:var(--serif);
  font-size:17px;
  letter-spacing:.12em;
  font-weight:600;
}
.footer-brand>p{
  margin-left:46px;
}

/* Mobile */
@media (max-width:900px){
  .hero-grid{grid-template-columns:1fr}
  .hero-visual{
    margin-left:0!important;
    margin-right:0!important;
    height:390px;
  }
  .hero-signal-map{
    left:1%;
    width:98%;
    bottom:20%;
    height:37%;
  }
  .hero-signal-node text{font-size:13px}
  .hero-flow-helper{
    display:block;
    position:relative;
    left:auto;right:auto;bottom:auto;
    margin:12px 0 0;
    background:#111315;
    border-left:2px solid var(--ember);
  }

  .flow-route{
    min-height:0;
  }
  .flow-route-svg,.route-caption{display:none}
  .flow-mobile-copy{
    display:block;
    border-top:1px solid var(--line-dark);
  }
  .flow-mobile-copy>p{
    color:#625e58;
    font-size:13px;
    line-height:1.8;
    padding:18px 0;
    margin:0;
  }
  .flow-mobile-row{
    display:grid;
    grid-template-columns:120px 1fr;
    gap:14px;
    padding:17px 0;
    border-top:1px solid var(--line-dark);
  }
  .flow-mobile-row b{
    font-family:var(--serif);
    font-size:17px;
    color:#1d1b18;
    font-weight:600;
  }
  .flow-mobile-row span{
    font-size:12px;
    color:#706a63;
    line-height:1.65;
  }

  .geo-section{padding:88px 0 96px}
  .geo-grid{grid-template-columns:1fr;gap:38px}
  .geo-copy h2{font-size:36px}
  .geo-demo{min-height:0;padding:20px}
  .geo-question{max-width:90%}
  .geo-answer{width:100%}
}

@media (max-width:520px){
  .brand-wordmark b{font-size:16px}
  .hero-visual{height:330px}
  .hero-signal-map{
    bottom:22%;
    height:34%;
  }
  .hero-signal-node text{font-size:11px}
  .hero-signal-node .node-ring{r:8}
  .flow-mobile-row{grid-template-columns:104px 1fr}
  .geo-copy h2{font-size:31px}
  .geo-question{max-width:100%}
  .geo-answer h3{font-size:24px}
}
