:root{
  color-scheme:dark;
  --ink-900:#0A1420;
  --ink-800:#101F33;
  --ink-700:#16283F;
  --gold:#C9A24B;
  --gold-dim:#8A6F30;
  --red:#A63D31;
  --paper:#F3EFE4;
  --paper-dim:#E7E1D0;
  --signal-blue:#3156A3;
  --cream-text:#EDE8DC;
  --line:rgba(237,232,220,0.14);
  --line-strong:rgba(237,232,220,0.28);
  --font-en:'Inter',sans-serif;
  --font-en-display:'Fraunces',serif;
  --font-ar:'Cairo',sans-serif;
}
*{box-sizing:border-box; margin:0; padding:0;}
html{scroll-behavior:smooth;}
body{
  background:var(--ink-900);
  color:var(--cream-text);
  font-family:var(--font-en);
  line-height:1.6;
  overflow-x:hidden;
}
html.ar body, html.ar body *{font-family:var(--font-ar) !important;}
html.ar h1, html.ar h2, html.ar .brand{letter-spacing:0 !important;}
[data-ar]{display:none;}
[data-en][data-ar]{display:inline;}
html.ar [data-en]{display:none;}
html.ar [data-ar]{display:inline;}
option[data-en][data-ar]{display:block;}
html.ar .stack [data-ar]{display:block;}
html.ar body{direction:rtl;}

.wrap{max-width:1180px; margin:0 auto; padding:0 32px;}
a{color:inherit; text-decoration:none;}
.sr-only{position:absolute!important;width:1px!important;height:1px!important;padding:0!important;margin:-1px!important;overflow:hidden!important;clip:rect(0,0,0,0)!important;white-space:nowrap!important;border:0!important}.skip-link{position:fixed;z-index:100;top:10px;left:12px;padding:10px 14px;color:#fff;background:var(--signal-blue);border-radius:5px;transform:translateY(-160%);transition:transform .15s}.skip-link:focus{transform:translateY(0)}html.ar .skip-link{right:12px;left:auto}

/* header */
header{
  position:sticky; top:0; z-index:50;
  background:rgba(10,20,32,0.88);
  backdrop-filter:blur(10px);
  border-bottom:0.5px solid var(--line);
}
.nav{display:flex; align-items:center; justify-content:space-between; height:76px;}
.brand{display:inline-flex; align-items:center; flex:0 0 auto;}
.brand-logo{display:block; width:54px; height:54px; object-fit:contain; content:url('logo-dark.png');}
.nav-links{display:flex; gap:32px; align-items:center;}
.nav-links a{font-size:14px; color:rgba(237,232,220,0.75); transition:color .2s;}
.nav-links a:hover{color:var(--cream-text);}
.nav-links a.current{color:var(--gold);}
.nav-right{display:flex; align-items:center; gap:16px;}
.nav-menu-toggle{display:none;width:44px;height:44px;place-items:center;color:var(--cream-text);background:transparent;border:1px solid var(--line-strong);border-radius:6px;cursor:pointer;font-size:21px;line-height:1}
.theme-toggle{
  display:grid; place-items:center; width:36px; height:36px; flex:0 0 36px;
  border:0.5px solid var(--line-strong); border-radius:50%; background:transparent;
  color:var(--cream-text); cursor:pointer; font-size:18px; line-height:1;
}
.theme-toggle:hover{border-color:var(--gold); color:var(--gold);}
.theme-icon-dark{display:none;}
.lang-toggle{
  display:flex; border:0.5px solid var(--line-strong); border-radius:999px; overflow:hidden; font-family:'IBM Plex Mono',monospace; font-size:12px;
}
.lang-toggle button{
  padding:7px 14px; background:transparent; border:none; color:rgba(237,232,220,0.6); cursor:pointer; font-family:inherit; font-size:12px;
}
.lang-toggle button.active{background:var(--gold); color:var(--ink-900); font-weight:600;}
.cta{
  display:inline-block; padding:10px 20px; background:var(--gold); color:var(--ink-900); border-radius:6px; font-size:14px; font-weight:600; border:none; cursor:pointer; transition:transform .15s, background .2s;
}
.cta:hover{background:#DDB65F; transform:translateY(-1px);}
.cta.ghost{background:transparent; color:var(--cream-text); border:0.5px solid var(--line-strong);}
.cta.ghost:hover{border-color:var(--gold); color:var(--gold); background:transparent;}
a:focus-visible,button:focus-visible,input:focus-visible,select:focus-visible,textarea:focus-visible{outline:3px solid var(--gold);outline-offset:3px}
@media (max-width:860px){.nav{position:relative}.nav-menu-toggle{display:grid}.nav-links{position:fixed;z-index:49;top:76px;right:0;left:0;padding:12px 24px 18px;display:grid;gap:2px;background:var(--ink-800);border-bottom:1px solid var(--line);box-shadow:0 18px 34px rgba(5,12,21,.24);transform:translateY(-130%);visibility:hidden;transition:transform .2s ease}.nav-links.open{transform:translateY(0);visibility:visible}.nav-links a{min-height:44px;padding:0 10px;display:flex;align-items:center;border-bottom:1px solid var(--line)}body.nav-open{overflow:hidden}}
@media (max-width:520px){
  .brand-logo{width:46px; height:46px;}
  .nav-right{gap:10px;}
  .nav-right > .cta{display:none;}
}

.contact-next{margin-top:4px;padding:18px 20px;border:1px solid var(--line);border-radius:6px;background:rgba(22,40,63,.5)}
.contact-next strong{display:block;margin-bottom:8px;color:var(--gold)}
.contact-next ol{padding-inline-start:20px;color:rgba(237,232,220,.72);font-size:14px}
.contact-next li+li{margin-top:5px}

/* page header (non-home pages) */
.page-hero{padding:64px 0 48px; border-bottom:0.5px solid var(--line);}
.page-hero .eyebrow{margin-bottom:16px;}
.page-hero h1{font-family:var(--font-en-display); font-size:42px; font-weight:600; margin-bottom:14px; max-width:640px;}
.page-hero p{color:rgba(237,232,220,0.65); font-size:16px; max-width:560px;}

/* hero (home) */
.hero{min-height:calc(100svh - 126px);padding:72px 0 58px;display:flex;align-items:center}.hero-grid{display:grid;grid-template-columns:1.05fr .95fr;gap:48px;align-items:center}
.eyebrow{
  font-family:'IBM Plex Mono',monospace; font-size:12px; letter-spacing:0.12em; text-transform:uppercase; color:var(--gold);
  display:flex; align-items:center; gap:10px; margin-bottom:22px;
}
.eyebrow::before{content:''; width:28px; height:1px; background:var(--gold);}
html.ar .eyebrow{letter-spacing:0;}
h1.headline{
  font-family:var(--font-en-display); font-weight:600; font-size:52px; line-height:1.08; letter-spacing:-0.01em; color:var(--cream-text); margin-bottom:22px;
}
h1.headline em{font-style:italic; color:var(--gold); font-weight:500;}
.sub{font-size:17px; color:rgba(237,232,220,0.72); max-width:480px; margin-bottom:32px;}
.hero-ctas{display:flex; gap:14px; margin-bottom:44px;}
.stat-row{display:flex; gap:36px; padding-top:28px; border-top:0.5px solid var(--line);}
.stat b{display:block; font-family:var(--font-en-display); font-size:28px; color:var(--gold); font-weight:600;}
.stat span{font-size:12.5px; color:rgba(237,232,220,0.6);}

/* route svg */
.route-box{position:relative;}
.route-box svg{width:100%; height:auto; display:block;}
.route-label{font-family:'IBM Plex Mono',monospace; font-size:10.5px; fill:rgba(237,232,220,0.55); letter-spacing:0.04em;}
.route-city{font-family:'Fraunces',serif; font-size:15px; fill:var(--cream-text); font-weight:600;}

/* route finder */
.route-finder{padding:76px 0 82px;color:#142238;background:#EEF2F7;border-top:5px solid var(--signal-blue)}.route-finder .eyebrow{color:var(--signal-blue)}.route-finder .eyebrow::before{background:var(--signal-blue)}.route-finder-head{margin-bottom:34px;display:grid;grid-template-columns:minmax(0,.9fr) minmax(320px,.7fr);align-items:end;gap:64px}.route-finder-head h2{max-width:620px;font-family:var(--font-en-display);font-size:38px;line-height:1.15}.route-finder-head p{color:#526177;font-size:14px}.route-finder-layout{display:grid;grid-template-columns:minmax(0,1.4fr) minmax(290px,.6fr);min-height:470px;background:#fff;border:1px solid #D3DAE4;border-radius:8px;overflow:hidden;box-shadow:0 24px 55px rgba(18,36,63,.12)}.route-quiz{min-width:0;padding:28px 30px;display:flex;flex-direction:column;gap:0}.quiz-topline{display:flex;align-items:center;justify-content:space-between;color:#66758A;font-family:'IBM Plex Mono',monospace;font-size:10px;font-weight:500;text-transform:uppercase}.quiz-progress{height:3px;margin:10px 0 30px;overflow:hidden;background:#E7EBF0}.quiz-progress span{width:25%;height:100%;display:block;background:var(--signal-blue);transition:width .25s ease}.quiz-step{min-width:0;border:0}.quiz-step[hidden]{display:none}.quiz-step legend{margin-bottom:21px;font-family:var(--font-en-display);font-size:25px;font-weight:600;line-height:1.25}.quiz-options{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:9px}.quiz-options.three{grid-template-columns:repeat(3,minmax(0,1fr))}.quiz-option{min-width:0;min-height:102px;padding:15px 16px;display:flex;align-items:flex-start;justify-content:center;flex-direction:column;gap:5px;color:#223148;background:#F8FAFC;border:1px solid #DCE2EA;border-radius:6px;cursor:pointer;text-align:left;transition:border-color .15s,background .15s,box-shadow .15s}.quiz-option:hover{border-color:#8798B2;background:#fff}.quiz-option[aria-pressed="true"]{background:#EFF4FF;border-color:var(--signal-blue);box-shadow:inset 4px 0 var(--signal-blue)}html.ar .quiz-option{text-align:right}html.ar .quiz-option[aria-pressed="true"]{box-shadow:inset -4px 0 var(--signal-blue)}.quiz-option strong{font-size:13px}.quiz-option small{color:#66758A;font-size:10px;line-height:1.45}.quiz-actions{margin-top:auto;padding-top:28px;display:flex;align-items:center;justify-content:space-between}.quiz-back,.quiz-restart{padding:8px 0;color:#66758A;background:transparent;border:0;border-bottom:1px solid currentColor;cursor:pointer;font:inherit;font-size:11px;font-weight:600}.quiz-back:disabled{opacity:.35;cursor:not-allowed}.quiz-actions .cta{min-width:104px}.route-result{padding:31px;display:flex;color:#EDF1F7;background:#142238}.route-result-idle,.route-result-ready{width:100%;display:flex;align-items:flex-start;justify-content:center;flex-direction:column}.route-result-number,.route-result-kicker{color:#8FA6CE;font-family:'IBM Plex Mono',monospace;font-size:10px;text-transform:uppercase}.route-result-idle strong{max-width:240px;margin:16px 0 10px;font-family:var(--font-en-display);font-size:27px;line-height:1.22}.route-result-idle p,.route-result-ready>p{color:#B6C1D0;font-size:12px;line-height:1.65}.route-result-ready h3{margin:13px 0 8px;font-family:var(--font-en-display);font-size:28px;line-height:1.2}.route-result-tags{margin:19px 0 22px;display:flex;flex-wrap:wrap;gap:7px}.route-result-tags button{padding:7px 9px;color:#DCE5F2;background:transparent;border:1px solid #53647D;border-radius:4px;cursor:pointer;font-size:9px}.route-result-tags button:hover,.route-result-tags button.active{color:#142238;background:#E3B956;border-color:#E3B956}.route-result-check{margin-bottom:23px;padding:12px 0;display:grid;gap:4px;border-top:1px solid #35465F;border-bottom:1px solid #35465F}.route-result-check strong{color:#8FA6CE;font-family:'IBM Plex Mono',monospace;font-size:8px;text-transform:uppercase}.route-result-check span{color:#D6DEE9;font-size:10px}.route-result-ready .cta{align-self:flex-start}.quiz-restart{margin-top:15px;color:#AAB7C8}.route-result-ready[hidden],.route-result-idle[hidden]{display:none}
@media(max-width:900px){.route-finder-head{grid-template-columns:1fr;gap:12px}.route-finder-layout{grid-template-columns:1fr}.route-result{min-height:330px}.quiz-options.three{grid-template-columns:1fr}.route-quiz{min-height:560px}}
@media(max-width:560px){.route-finder{padding:54px 0}.route-finder-head h2{font-size:30px}.route-finder-layout{margin:0 -12px;border-radius:6px}.route-quiz,.route-result{padding:23px 20px}.quiz-step legend{font-size:22px}.quiz-options{grid-template-columns:1fr}.quiz-option{min-height:84px}.route-quiz{min-height:590px}}
.quiz-option small{color:#637287;}

.route-result-tags{display:flex;flex-wrap:wrap;gap:8px;margin:18px 0 22px}.route-result-tags button{min-height:38px;padding:8px 12px;color:#223148;background:#fff;border:1px solid #B9C4D3;border-radius:5px;cursor:pointer;font:600 12px/1.35 var(--font-en);transition:background .15s,border-color .15s,color .15s,box-shadow .15s}.route-result-tags button:hover{color:var(--signal-blue);border-color:var(--signal-blue)}.route-result-tags button:focus-visible{outline:3px solid rgba(49,86,163,.25);outline-offset:2px}.route-result-tags button.active{color:#fff;background:var(--signal-blue);border-color:var(--signal-blue);box-shadow:0 3px 10px rgba(49,86,163,.22)}html.ar .route-result-tags button{font-family:var(--font-ar)}

/* section shared */
section{padding:88px 0;}
section.tight{padding:64px 0;}
.section-head{max-width:600px; margin-bottom:52px;}
.section-head h2{font-family:var(--font-en-display); font-size:34px; font-weight:600; margin-bottom:12px; color:var(--cream-text);}
.section-head p{color:rgba(237,232,220,0.65); font-size:15.5px;}
.section-head.center{max-width:100%; text-align:center; margin-left:auto; margin-right:auto;}

/* fields */
.fields{background:var(--ink-800); border-top:0.5px solid var(--line); border-bottom:0.5px solid var(--line);}
.field-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:1px; background:var(--line);}
.field-card{background:var(--ink-800); padding:34px 26px; transition:background .2s;}
.field-card:hover{background:var(--ink-700);}
.field-icon{width:40px; height:40px; margin-bottom:20px;}
.field-card h3{font-family:var(--font-en-display); font-size:19px; font-weight:600; margin-bottom:8px;}
.field-card p{font-size:13.5px; color:rgba(237,232,220,0.6); line-height:1.55;}
@media (max-width:860px){.field-grid{grid-template-columns:repeat(2,1fr);}}

/* field detail page */
.field-detail{display:grid; grid-template-columns:1fr; gap:1px; background:var(--line); border-top:0.5px solid var(--line); border-bottom:0.5px solid var(--line);}
.field-row{background:var(--ink-900); padding:44px 0;}
.field-row .wrap{display:grid; grid-template-columns:60px 1fr 220px; gap:28px; align-items:start;}
.field-row h3{font-family:var(--font-en-display); font-size:24px; font-weight:600; margin-bottom:10px;}
.field-row p{color:rgba(237,232,220,0.65); font-size:14.5px; max-width:520px; margin-bottom:14px;}
.tag-row{display:flex; flex-wrap:wrap; gap:8px;}
.tag{font-family:'IBM Plex Mono',monospace; font-size:11px; border:0.5px solid var(--line-strong); border-radius:999px; padding:5px 12px; color:rgba(237,232,220,0.7);}
.field-side{font-size:13px; color:rgba(237,232,220,0.55); border-inline-start:0.5px solid var(--line); padding-inline-start:20px;}
.field-side b{display:block; color:var(--gold); font-family:var(--font-en-display); font-size:20px; margin-bottom:4px;}
@media (max-width:760px){.field-row .wrap{grid-template-columns:1fr;} .field-side{border:none; padding-inline-start:0; padding-top:12px; border-top:0.5px solid var(--line);}}

/* process */
.process-list{display:flex; flex-direction:column;}
.p-step{
  display:grid; grid-template-columns:70px 1fr; gap:24px; padding:26px 0; border-bottom:0.5px solid var(--line);
}
.p-step:first-child{border-top:0.5px solid var(--line);}
.p-num{font-family:'IBM Plex Mono',monospace; font-size:13px; color:var(--gold); padding-top:3px;}
.p-step h3{font-family:var(--font-en-display); font-size:19px; font-weight:600; margin-bottom:6px;}
.p-step p{font-size:14.5px; color:rgba(237,232,220,0.62); max-width:560px; margin-bottom:10px;}
.p-step .tag-row{margin-top:4px;}

/* why turkey */
.why{background:var(--paper); color:var(--ink-900);}
.why .section-head h2, .why .section-head p{color:var(--ink-900);}
.why .section-head p{color:rgba(10,20,32,0.65);}
.why-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:28px;}
.why-card{background:#fff; border:0.5px solid rgba(10,20,32,0.1); border-radius:8px; padding:28px;}
.why-card b{display:block; font-family:var(--font-en-display); font-size:26px; margin-bottom:6px; color:var(--red);}
.why-card span{font-size:13.5px; color:rgba(10,20,32,0.62);}
@media (max-width:860px){.why-grid{grid-template-columns:1fr;}}

.reason-list{display:flex; flex-direction:column; gap:0; margin-top:12px;}
.reason{display:grid; grid-template-columns:36px 1fr; gap:16px; padding:22px 0; border-bottom:0.5px solid rgba(10,20,32,0.1);}
.reason:first-child{border-top:0.5px solid rgba(10,20,32,0.1);}
.reason b{font-family:'IBM Plex Mono',monospace; color:var(--red); font-size:13px;}
.reason h3{font-family:var(--font-en-display); font-size:18px; margin-bottom:6px; color:var(--ink-900);}
.reason p{font-size:14px; color:rgba(10,20,32,0.65); max-width:560px;}

/* social stories */
.social-stories{background:var(--ink-800); border-top:0.5px solid var(--line); border-bottom:0.5px solid var(--line);}
.social-head{max-width:none; display:flex; align-items:flex-end; justify-content:space-between; gap:28px;}
.social-head .eyebrow{margin-bottom:12px;}
.social-head h2{max-width:620px; margin-bottom:0;}
.social-profile-link{flex:0 0 auto; padding-bottom:4px; color:var(--gold); border-bottom:1px solid var(--gold); font-family:'IBM Plex Mono',monospace; font-size:11px;}
.social-story-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:18px;}
.social-story{position:relative; min-width:0; aspect-ratio:1/1; overflow:hidden; border:0.5px solid var(--line); border-radius:8px; background:var(--ink-900);}
.social-story img{width:100%; height:100%; display:block; object-fit:cover; transition:transform .35s ease;}
.social-story::after{content:''; position:absolute; inset:30% 0 0; background:linear-gradient(transparent 8%,rgba(5,12,21,.84) 58%,#050c15 100%);}
.social-story:hover img{transform:scale(1.025);}
.social-story-copy{position:absolute; z-index:1; right:20px; bottom:18px; left:20px; display:grid; gap:5px;}
.social-story-copy small{color:#E5BF6D; font-family:'IBM Plex Mono',monospace; font-size:10px; text-transform:uppercase;}
.social-story-copy strong{max-width:300px; color:#fff; font-family:var(--font-en-display); font-size:20px; line-height:1.25;}
@media (max-width:760px){.social-head{align-items:flex-start; flex-direction:column}.social-story-grid{grid-template-columns:1fr}.social-story{aspect-ratio:4/3}.social-story-copy strong{font-size:18px;}}

/* cta banner */
.cta-banner{background:var(--ink-800); border-top:0.5px solid var(--line); border-bottom:0.5px solid var(--line); text-align:center; padding:70px 0;}
.cta-banner h2{font-family:var(--font-en-display); font-size:30px; margin-bottom:14px;}
.cta-banner p{color:rgba(237,232,220,0.65); font-size:15px; margin-bottom:26px;}

/* contact */
.contact{background:var(--ink-800); border-top:0.5px solid var(--line);}
.contact-grid{display:grid; grid-template-columns:1fr 1fr; gap:60px;}
.contact-info h2{font-family:var(--font-en-display); font-size:30px; margin-bottom:16px;}
.contact-info p{color:rgba(237,232,220,0.65); font-size:15px; margin-bottom:28px; max-width:400px;}
.info-row{display:flex; gap:12px; margin-bottom:16px; font-size:14.5px; color:rgba(237,232,220,0.8);}
form{display:flex; flex-direction:column; gap:14px;}
.form-intro{display:grid; gap:3px; margin-bottom:4px; padding-bottom:16px; border-bottom:0.5px solid var(--line);}
.form-intro strong{font-family:var(--font-en-display); font-size:20px; font-weight:600;}
.form-step{color:var(--gold); font-family:'IBM Plex Mono',monospace; font-size:10px; text-transform:uppercase;}
input, select, textarea{
  background:var(--ink-900); border:0.5px solid var(--line-strong); border-radius:6px; padding:13px 14px; color:var(--cream-text); font-family:inherit; font-size:14px; width:100%;
}
select option{background:var(--ink-900); color:var(--cream-text);}
input::placeholder, textarea::placeholder{color:rgba(237,232,220,0.35);}
input:focus, select:focus, textarea:focus{outline:none; border-color:var(--gold);}
textarea{resize:vertical; min-height:90px;}
.form-status{min-height:22px; margin-top:4px; font-size:13px; color:rgba(237,232,220,0.72);}
.form-status.success{color:#a9f0bd;}
.form-status.error{color:#ffb4b4;}
form .cta{margin-top:6px; align-self:flex-start;}
form .cta:disabled{opacity:0.6; cursor:progress;}
.application-brief{display:grid; gap:10px; margin-top:2px; padding:16px; border:0.5px solid var(--line); border-radius:6px; background:rgba(201,162,75,0.05);}
.application-brief-label{color:rgba(237,232,220,0.58); font-size:12px;}
.application-brief-progress-head{display:flex; align-items:center; justify-content:space-between; gap:12px}.application-brief-progress-head>span:last-child{color:rgba(237,232,220,.72);font-size:11px;font-weight:600}.application-brief progress{width:100%;height:5px;overflow:hidden;border:0;border-radius:3px;background:rgba(237,232,220,.12)}.application-brief progress::-webkit-progress-bar{background:rgba(237,232,220,.12)}.application-brief progress::-webkit-progress-value{background:var(--gold)}.application-brief progress::-moz-progress-bar{background:var(--gold)}
.application-brief-items{display:flex; flex-wrap:wrap; gap:8px;}
.application-brief-items > span{padding:5px 9px; border:0.5px solid var(--line-strong); border-radius:999px; color:rgba(237,232,220,0.66); font-size:11px;}
.application-brief-items > span.complete{border-color:rgba(201,162,75,0.6); color:var(--gold);}
.form-honeypot{position:absolute!important;left:-10000px!important;width:1px!important;height:1px!important;overflow:hidden!important}
@media (max-width:860px){.contact-grid{grid-template-columns:1fr; gap:36px;}}

/* faq (contact page) */
.faq{margin-top:52px;}
.faq-item{border-top:0.5px solid var(--line); padding:20px 0;}
.faq-item:last-child{border-bottom:0.5px solid var(--line);}
.faq-item h3{font-family:var(--font-en-display); font-size:16px; margin-bottom:6px;}
.faq-item p{font-size:14px; color:rgba(237,232,220,0.6); max-width:600px;}

/* legal pages */
.legal{max-width:820px; padding-top:56px; padding-bottom:72px;}
.legal h1{font-family:var(--font-en-display); font-size:42px; font-weight:600; margin-bottom:8px;}
.legal .updated{color:var(--gold); font-family:'IBM Plex Mono',monospace; font-size:12px; margin-bottom:36px;}
.legal h2{font-family:var(--font-en-display); font-size:23px; font-weight:600; margin:34px 0 10px;}
.legal p,.legal li{color:rgba(237,232,220,0.72); font-size:15px;}
.legal p{margin-bottom:14px;}
.legal ul,.legal ol{padding-inline-start:22px; margin:10px 0 18px;}
.legal li{margin-bottom:8px;}
.legal a{color:var(--gold); text-decoration:underline; text-underline-offset:3px;}
.legal-nav{display:flex; flex-wrap:wrap; gap:18px; margin-top:40px; padding-top:24px; border-top:0.5px solid var(--line);}
@media (max-width:520px){.legal h1{font-size:32px;}}

footer{padding:36px 0; border-top:0.5px solid var(--line); display:flex; justify-content:space-between; align-items:center; font-size:13px; color:rgba(237,232,220,0.5);}
.footer-links{display:flex;align-items:center;justify-content:center;flex-wrap:wrap;gap:18px}.footer-links a{color:var(--gold)}.footer-links a:hover{text-decoration:underline;text-underline-offset:3px}
@media (max-width:860px){footer{flex-direction:column; gap:10px; text-align:center;}}

@media (max-width:960px){
  .hero{min-height:auto;padding-top:56px}.hero-grid{grid-template-columns:1fr}.route-box{max-width:560px;margin:0 auto;width:100%}
  h1.headline{font-size:38px;}
  .page-hero h1{font-size:32px;}
  .field-grid{grid-template-columns:1fr 1fr;}
}

html[data-theme="light"]{
    color-scheme:light;
    --ink-900:#F7F5EF;
    --ink-800:#EEEAE0;
    --ink-700:#E5DFD2;
    --gold:#805A0D;
    --gold-dim:#725112;
    --red:#91382E;
    --paper:#E9E3D6;
    --paper-dim:#DDD5C5;
    --cream-text:#172332;
    --line:rgba(10,20,32,0.12);
    --line-strong:rgba(10,20,32,0.24);
}

html[data-theme="light"] .brand-logo{content:url('logo.png');}
html[data-theme="light"] header{background:rgba(247,245,239,0.9);}
html[data-theme="light"] .nav-links a{color:rgba(10,20,32,0.72);}
html[data-theme="light"] .lang-toggle button{color:rgba(10,20,32,0.62);}
html[data-theme="light"] .lang-toggle button.active,
html[data-theme="light"] .cta{color:#fff;}
html[data-theme="light"] .cta:hover{background:#6F4C08;}
html[data-theme="light"] .cta.ghost{color:var(--cream-text);}
html[data-theme="light"] .theme-icon-light{display:none;}
html[data-theme="light"] .theme-icon-dark{display:inline;}
html[data-theme="light"] .nav-menu-toggle{color:var(--cream-text)}

html[data-theme="light"] .page-hero p,
html[data-theme="light"] .section-head p,
html[data-theme="light"] .field-row p,
html[data-theme="light"] .cta-banner p,
html[data-theme="light"] .contact-info p{color:rgba(10,20,32,0.66);}
html[data-theme="light"] .sub,
html[data-theme="light"] .form-status{color:rgba(10,20,32,0.72);}
html[data-theme="light"] .stat span,
html[data-theme="light"] .field-card p,
html[data-theme="light"] .p-step p,
html[data-theme="light"] .faq-item p{color:rgba(10,20,32,0.62);}
html[data-theme="light"] .tag{color:rgba(10,20,32,0.7);}
html[data-theme="light"] .field-side,
html[data-theme="light"] footer{color:rgba(10,20,32,0.64);}
html[data-theme="light"] .footer-links a{color:var(--gold);}
html[data-theme="light"] .info-row{color:rgba(10,20,32,0.8);}

html[data-theme="light"] .route-label{fill:rgba(10,20,32,0.58);}
html[data-theme="light"] .route-box g circle{fill:#E5DFD2;}
html[data-theme="light"] .route-box g text:not(.route-label){fill:#172332;}

html[data-theme="light"] .why,
html[data-theme="light"] .why .section-head h2,
html[data-theme="light"] .reason h3{color:#0A1420;}
html[data-theme="light"] .why .section-head p,
html[data-theme="light"] .reason p{color:rgba(10,20,32,0.65);}
html[data-theme="light"] .why-card{background:#FDFCFA;}
html[data-theme="light"] .social-story{border-color:rgba(10,20,32,0.14);}
html[data-theme="light"] .application-brief{background:rgba(149,107,24,0.06);}
html[data-theme="light"] .application-brief-label,
html[data-theme="light"] .application-brief-items > span{color:rgba(10,20,32,0.68);}
html[data-theme="light"] .application-brief-progress-head>span:last-child{color:rgba(10,20,32,.76)}
html[data-theme="light"] .application-brief-items > span.complete{color:var(--gold);}
html[data-theme="light"] .contact-next{background:rgba(49,86,163,0.08);}
html[data-theme="light"] .contact-next ol{color:rgba(10,20,32,0.76);}

html[data-theme="light"] input::placeholder,
html[data-theme="light"] textarea::placeholder{color:rgba(10,20,32,0.4);}
html[data-theme="light"] .form-status.success{color:#28743C;}
html[data-theme="light"] .form-status.error{color:#A32F2F;}
@media(max-width:620px){input,select,textarea{min-height:46px;font-size:16px}}
@media(prefers-reduced-motion:reduce){html{scroll-behavior:auto}*,*::before,*::after{scroll-behavior:auto!important;transition-duration:.01ms!important;animation-duration:.01ms!important;animation-iteration-count:1!important}}
