/* ============================================
   MAIN.CSS — Design tokens, base, nav, ribbon,
   welcome, footer  (New Way final design)
   ============================================ */

:root{
  --deep:#081c33; --royal:#0b2745; --navy:#123a66;
  --azure:#2f7fd4; --azure-dk:#2569b3;
  --ice:#dceeff; --sky:#9fd0f5; --silver:#c9d9e8;
  --paper:#ffffff; --frost:#f2f7fc; --line:#dce8f3;
  --display:'Fraunces',serif;
  --body:'Nunito Sans',sans-serif;
}

*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{font-family:var(--body);color:#1e344e;background:var(--paper);line-height:1.65}
a{text-decoration:none;color:inherit}
img,svg{display:block}
ul{list-style:none}
button{font-family:inherit;cursor:pointer;background:none;border:none}

.wrap{max-width:1120px;margin:0 auto;padding:0 24px}

/* ── Eyebrows / section labels ── */
.eyebrow{font-size:.72rem;letter-spacing:.22em;text-transform:uppercase;color:var(--sky);font-weight:800;margin-bottom:16px}
.eyebrow.dark{color:var(--azure)}

/* ── Buttons ── */
.btn{display:inline-block;padding:13px 28px;border-radius:30px;font-weight:800;font-size:.92rem;transition:.2s;border:none}
.btn-azure{background:var(--azure);color:#fff}
.btn-azure:hover{background:var(--azure-dk);transform:translateY(-1px)}
.btn-line{border:2px solid rgba(220,238,255,.55);color:var(--ice)}
.btn-line:hover{border-color:#fff;background:rgba(220,238,255,.08)}
.btn-sm{padding:9px 20px;font-size:.85rem}

/* ── NAVBAR ── */
.navbar{background:var(--deep);color:#fff;position:sticky;top:0;z-index:50;border-bottom:1px solid rgba(201,217,232,.15)}
.nav-in{display:flex;align-items:center;justify-content:space-between;height:74px}
.brand{display:flex;align-items:center;gap:12px}
.brand-phoenix{height:38px;width:auto;filter:drop-shadow(0 0 10px rgba(159,208,245,.35))}
.brand-word{font-size:.8rem;letter-spacing:.24em;text-transform:uppercase;color:var(--sky);font-weight:800}
.nav-links{display:flex;gap:26px;align-items:center;font-size:.92rem;font-weight:700}
.nav-links a:hover{color:var(--sky)}
.nav-links a.active{color:var(--sky)}
.lang{display:flex;align-items:center}
.lang-btn{font-size:.72rem;padding:4px 9px;border-radius:20px;border:1px solid rgba(220,238,255,.4);cursor:pointer;margin-left:4px;font-weight:800;color:#fff}
.lang-btn.on,.lang-btn.active{background:var(--azure);border-color:var(--azure)}
.nav-toggle{display:none;color:#fff}
.nav-toggle svg{width:26px;height:26px}

/* ── RIBBON ── */
.ribbon{background:linear-gradient(90deg,#9fd0f5,#6fb3e8);color:var(--deep)}
.ribbon-in{display:flex;flex-wrap:wrap;justify-content:center;align-items:center;gap:8px 26px;padding:13px 0;font-family:var(--display);font-size:.98rem;font-weight:600}
.ribbon-in > span{display:flex;align-items:center;gap:9px}
.ribbon-in svg{width:18px;height:18px;fill:none;stroke:var(--deep);stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round;flex-shrink:0}
.ribbon-in i{font-style:normal;opacity:.55}

/* ── WELCOME / ABOUT ── */
.welcome{padding:64px 0}
.welcome-in{display:grid;grid-template-columns:1.25fr 1fr;gap:60px;align-items:start}
.welcome h2{font-family:var(--display);font-size:clamp(1.9rem,3vw,2.5rem);font-weight:600;color:var(--deep);line-height:1.2;margin-bottom:20px}
.welcome p{margin-bottom:15px;color:#3c567a;font-size:1.05rem}
.sig{font-family:var(--display);font-style:italic;color:var(--azure);font-size:1.15rem;margin-top:24px}
.sig::before{content:'— '}

.philo{background:var(--deep);color:#fff;border-radius:20px;padding:34px 32px;position:relative;overflow:hidden}
.philo::before{content:'';position:absolute;top:-14px;left:32px;width:52px;height:28px;border-radius:26px 26px 0 0;background:var(--azure)}
.philo::after{content:'';position:absolute;right:-50px;bottom:-50px;width:200px;height:200px;border-radius:50%;background:radial-gradient(circle,rgba(47,127,212,.35),transparent 70%)}
.philo h3{font-family:var(--display);font-size:1.4rem;margin-bottom:14px}
.philo p{font-size:1.02rem;color:#c6dcf0;margin-bottom:12px;position:relative;z-index:1}

/* ── Section headers (services, gallery) ── */
.services header,.team header,.gallery header{text-align:center;margin-bottom:50px}
.services header .eyebrow,.team header .eyebrow,.gallery header .eyebrow{margin-bottom:10px}
.services h2,.team h2,.gallery h2{font-family:var(--display);font-size:clamp(1.9rem,3vw,2.4rem);color:var(--deep);font-weight:600}

/* ── FOOTER ── */
.footer{background:#050f1d;color:#7fa2c4;text-align:center;font-size:.85rem;padding:30px 0}
.footer-in{display:flex;flex-direction:column;gap:14px;align-items:center}
.footer-links{display:flex;flex-wrap:wrap;justify-content:center;gap:8px 22px;font-weight:700;font-size:.82rem}
.footer-links a:hover{color:var(--sky)}
.footer-copy{opacity:.8}
.footer-credit{opacity:.55;font-size:.78rem}
.footer-credit a:hover{color:var(--sky)}

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