/* ==========================================================================
   PSGC Limited — Design System
   Palette drawn from the PSGC mark (navy + sky blue) and the two house
   brands: White Shield (navy/crimson) and Irae (teal/gold).
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

:root{
  --navy-900:#071b30;
  --navy-800:#0b2c4d;
  --navy-700:#0f3d63;
  --navy-600:#134f7f;
  --sky-500:#3aa8e0;
  --sky-400:#5fc2ee;
  --sky-300:#8fd8f6;
  --teal-600:#0f8f83;
  --teal-500:#1aab9c;
  --teal-400:#3fc9b8;
  --crimson-600:#c8102e;
  --crimson-500:#e0203f;
  --ink:#12202e;
  --ink-soft:#3d5064;
  --mist-50:#f6fafc;
  --mist-100:#eef4f8;
  --mist-200:#e2ecf2;
  --line:#dde8ee;
  --white:#ffffff;

  --font-head: 'Sora', 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;

  --shadow-sm: 0 2px 10px rgba(11,44,77,.06);
  --shadow-md: 0 12px 32px rgba(11,44,77,.10);
  --shadow-lg: 0 24px 60px rgba(11,44,77,.16);

  --ease: cubic-bezier(.22,1,.36,1);
}

*,*::before,*::after{ box-sizing:border-box; min-width:0; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:var(--font-body);
  color:var(--ink);
  background:var(--white);
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4{ font-family:var(--font-head); margin:0; line-height:1.15; color:var(--navy-900); }
p{ margin:0; }
button{ font-family:inherit; cursor:pointer; }
input,textarea,select{ font-family:inherit; }

.container{
  width:100%;
  max-width:1200px;
  margin-inline:auto;
  padding-inline:24px;
}
@media(max-width:700px){ .container{ padding-inline:20px; } }

section{ position:relative; }

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:13px;
  font-weight:700;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--sky-500);
  margin-bottom:14px;
}
.eyebrow::before{
  content:'';
  width:22px; height:2px;
  background:var(--sky-500);
  border-radius:2px;
}

h1{ font-size:clamp(2.3rem,4.6vw,3.7rem); font-weight:800; letter-spacing:-.02em; }
h2{ font-size:clamp(1.7rem,3.2vw,2.5rem); font-weight:800; letter-spacing:-.01em; }
h3{ font-size:1.25rem; font-weight:700; }
.lede{ font-size:clamp(1.02rem,1.4vw,1.18rem); color:var(--ink-soft); line-height:1.7; }

.section-head{
  max-width:640px;
  margin-bottom:48px;
}
.section-head.center{ margin-inline:auto; text-align:center; }

/* ---------- buttons ---------- */
.btn{
  position:relative;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:15px 30px;
  border-radius:999px;
  font-weight:700;
  font-size:.95rem;
  border:1px solid transparent;
  transition:transform .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
  white-space:nowrap;
}
.btn svg{ width:16px; height:16px; transition:transform .35s var(--ease); }
.btn:hover svg{ transform:translateX(4px); }
.btn:active{ transform:scale(.97); }

.btn-primary{
  background:var(--navy-900);
  color:var(--white);
  box-shadow:0 10px 24px rgba(7,27,48,.28);
}
.btn-primary:hover{ background:var(--sky-500); box-shadow:0 14px 30px rgba(58,168,224,.36); transform:translateY(-2px); }

.btn-ghost{
  background:transparent;
  color:var(--navy-900);
  border-color:var(--line);
}
.btn-ghost:hover{ border-color:var(--navy-900); background:var(--navy-900); color:var(--white); transform:translateY(-2px); }

.btn-light{
  background:var(--white);
  color:var(--navy-900);
}
.btn-light:hover{ background:var(--navy-900); color:var(--white); transform:translateY(-2px); }

.btn-outline-light{
  background:transparent;
  color:var(--white);
  border-color:rgba(255,255,255,.45);
}
.btn-outline-light:hover{ background:rgba(255,255,255,.14); border-color:#fff; transform:translateY(-2px); }

.btn-block{ width:100%; }

/* ---------- reveal-on-scroll ---------- */
.reveal{ opacity:0; transform:translateY(28px); transition:opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in{ opacity:1; transform:translateY(0); }
.reveal-stagger > *{ opacity:0; transform:translateY(24px); transition:opacity .7s var(--ease), transform .7s var(--ease); }
.reveal-stagger.in > *{ opacity:1; transform:translateY(0); }
.reveal-stagger.in > *:nth-child(1){ transition-delay:.02s; }
.reveal-stagger.in > *:nth-child(2){ transition-delay:.10s; }
.reveal-stagger.in > *:nth-child(3){ transition-delay:.18s; }
.reveal-stagger.in > *:nth-child(4){ transition-delay:.26s; }
.reveal-stagger.in > *:nth-child(5){ transition-delay:.34s; }
.reveal-stagger.in > *:nth-child(6){ transition-delay:.42s; }
.reveal-stagger.in > *:nth-child(7){ transition-delay:.50s; }
.reveal-stagger.in > *:nth-child(8){ transition-delay:.58s; }

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  .reveal,.reveal-stagger > *{ opacity:1 !important; transform:none !important; transition:none !important; }
  *{ animation-duration:.001s !important; }
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header{
  position:fixed; inset:0 0 auto 0;
  z-index:1000;
  padding:18px 0;
  transition:padding .4s var(--ease), background .4s var(--ease), box-shadow .4s var(--ease);
}
.site-header .container{ display:flex; align-items:center; justify-content:space-between; gap:24px; }
.site-header.scrolled{
  padding:10px 0;
  background:rgba(255,255,255,.86);
  backdrop-filter:blur(14px) saturate(1.4);
  -webkit-backdrop-filter:blur(14px) saturate(1.4);
  box-shadow:0 6px 24px rgba(11,44,77,.08);
}

.brand{ display:flex; align-items:center; gap:10px; font-family:var(--font-head); font-weight:800; font-size:1.25rem; color:#fff; transition:color .4s var(--ease); }
.brand img{ height:40px; width:auto; transition:height .4s var(--ease); }
.site-header.scrolled .brand img{ height:34px; }
.brand small{ display:block; font-family:var(--font-body); font-weight:600; font-size:.62rem; letter-spacing:.16em; color:var(--sky-300); transition:color .4s var(--ease); }
.site-header.scrolled .brand{ color:var(--navy-900); }
.site-header.scrolled .brand small{ color:var(--sky-500); }

.brand-mark{
  width:40px; height:40px; border-radius:12px; flex:none;
  display:flex; align-items:center; justify-content:center;
  background:linear-gradient(135deg, var(--sky-500), var(--teal-500));
  transition:width .4s var(--ease), height .4s var(--ease);
}
.brand-mark svg{ width:20px; height:20px; stroke:#fff; }
.site-header.scrolled .brand-mark{ width:34px; height:34px; }
.footer-brand .brand-mark{ width:36px; height:36px; border-radius:10px; }
.footer-brand .brand-mark svg{ width:18px; height:18px; }

.nav-desktop{ display:flex; align-items:center; gap:6px; }
.nav-desktop a{
  position:relative;
  padding:10px 16px;
  font-weight:600;
  font-size:.94rem;
  color:rgba(255,255,255,.82);
  border-radius:999px;
  transition:color .3s, background .3s;
}
.nav-desktop a:hover{ background:rgba(255,255,255,.14); color:#fff; }
.nav-desktop a.active{ color:var(--navy-900); background:#fff; }
.site-header.scrolled .nav-desktop a{ color:var(--navy-800); }
.site-header.scrolled .nav-desktop a:hover{ background:var(--mist-100); color:var(--navy-900); }
.site-header.scrolled .nav-desktop a.active{ color:var(--white); background:var(--navy-900); }

.header-actions{ display:flex; align-items:center; gap:14px; }
.header-actions .btn{ padding:11px 22px; }
.header-actions .btn-ghost{ color:#fff; border-color:rgba(255,255,255,.4); }
.header-actions .btn-ghost:hover{ background:#fff; color:var(--navy-900); border-color:#fff; }
.site-header.scrolled .header-actions .btn-ghost{ color:var(--navy-900); border-color:var(--line); }
.site-header.scrolled .header-actions .btn-ghost:hover{ background:var(--navy-900); color:#fff; border-color:var(--navy-900); }

.nav-toggle{ border-color:rgba(255,255,255,.4); background:rgba(255,255,255,.06); }
.nav-toggle span{ background:#fff; }
.site-header.scrolled .nav-toggle{ border-color:var(--line); background:var(--white); }
.site-header.scrolled .nav-toggle span{ background:var(--navy-900); }

.nav-toggle{
  display:none;
  width:46px; height:46px;
  align-items:center; justify-content:center;
  border-radius:12px;
  border:1px solid var(--line);
  background:var(--white);
  flex-direction:column;
  gap:5px;
}
.nav-toggle span{ width:20px; height:2px; background:var(--navy-900); border-radius:2px; transition:transform .3s var(--ease), opacity .3s; }
.nav-toggle.open span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2){ opacity:0; }
.nav-toggle.open span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

.mobile-panel{
  position:fixed; inset:0;
  background:var(--navy-900);
  z-index:999;
  display:flex; flex-direction:column;
  padding:110px 32px 40px;
  transform:translateY(-100%);
  transition:transform .5s var(--ease);
}
.mobile-panel.open{ transform:translateY(0); }
.mobile-panel a{
  color:#fff; font-family:var(--font-head); font-size:1.9rem; font-weight:700;
  padding:14px 0; border-bottom:1px solid rgba(255,255,255,.12);
}
.mobile-panel .btn{ margin-top:28px; }

@media(max-width:920px){
  .nav-desktop, .header-actions .btn-ghost{ display:none; }
  .nav-toggle{ display:flex; }
}

/* ==========================================================================
   Hero — full-bleed photo
   ========================================================================== */
.hero-photo{
  position:relative;
  min-height:720px;
  padding:150px 0 40px;
  color:#fff;
  overflow:hidden;
  display:flex;
  align-items:stretch;
  background:linear-gradient(180deg, var(--navy-900), var(--navy-800) 55%, var(--navy-700));
}
.hero-bg{
  position:absolute; z-index:0;
  top:0; right:0; bottom:0; left:32%;
  -webkit-mask-image:linear-gradient(90deg, transparent, #000 22%);
  mask-image:linear-gradient(90deg, transparent, #000 22%);
}
.hero-bg img{ width:100%; height:100%; object-fit:cover; }
.hero-bg-img{
  position:absolute; inset:0;
  width:100%; height:100%; object-fit:cover;
  object-position:var(--pos, 50% 50%);
  opacity:0;
  animation:heroFade 28s infinite;
}
@keyframes heroFade{
  0%{ opacity:0; }
  3%{ opacity:1; }
  21%{ opacity:1; }
  25%{ opacity:0; }
  100%{ opacity:0; }
}
@media(max-width:940px){
  .hero-bg-img{ object-position:var(--pos-m, var(--pos, 50% 50%)); }
}
@media(prefers-reduced-motion: reduce){
  .hero-bg-img{ animation:none !important; opacity:0 !important; }
  .hero-bg-img:first-child{ opacity:1 !important; }
}
.hero-scrim{
  position:absolute; inset:0; z-index:1;
  background:
    linear-gradient(180deg, rgba(5,14,24,.55) 0, rgba(5,14,24,.55) 108px, transparent 190px),
    linear-gradient(100deg, rgba(7,20,34,.7) 0%, rgba(7,20,34,.28) 30%, transparent 46%),
    linear-gradient(0deg, rgba(5,14,24,.82) 0%, rgba(5,14,24,.1) 30%, transparent 52%);
}
.hero-photo-inner{
  position:relative; z-index:2;
  display:flex; flex-direction:column; justify-content:space-between;
  min-height:calc(720px - 190px);
  width:100%;
}
.hero-copy{ max-width:640px; }
.hero-copy h1{ color:#fff; margin-bottom:22px; }
.hero-copy .lede{ color:rgba(255,255,255,.82); max-width:540px; margin-bottom:36px; }
.hero-ctas{ display:flex; gap:16px; flex-wrap:wrap; }

.hero-stats-row{
  display:flex; gap:44px; flex-wrap:wrap;
  margin-top:56px; padding-top:28px;
  border-top:1px solid rgba(255,255,255,.18);
  max-width:640px;
}
.hero-stats-row .stat b{ display:block; font-family:var(--font-head); font-size:2rem; color:#fff; }
.hero-stats-row .stat span{ font-size:.82rem; color:rgba(255,255,255,.65); }
.hero-tags{ gap:12px; }
.hero-tags span{
  font-size:.82rem; font-weight:700; letter-spacing:.02em; color:rgba(255,255,255,.9);
  background:rgba(255,255,255,.1); padding:9px 16px; border-radius:999px; border:1px solid rgba(255,255,255,.18);
}

.hero-brandcard{
  position:absolute; right:0; bottom:0; z-index:2;
  width:280px;
  background:rgba(11,25,41,.55);
  border:1px solid rgba(255,255,255,.18);
  border-radius:20px;
  padding:20px;
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  box-shadow:0 24px 48px rgba(0,0,0,.35);
}
.hbc-dots{ display:flex; gap:6px; margin-bottom:14px; }
.hbc-dot{ width:20px; height:4px; border-radius:2px; background:rgba(255,255,255,.28); transition:background .3s; cursor:pointer; }
.hbc-dot.active{ background:#fff; }
.hbc-slide{ display:none; align-items:center; gap:14px; }
.hbc-slide.active{ display:flex; animation:fadeUp .4s var(--ease); }
.hbc-slide img{ width:56px; height:56px; object-fit:contain; filter:drop-shadow(0 8px 14px rgba(0,0,0,.4)); flex:none; }
.hbc-icon{
  width:48px; height:48px; border-radius:13px; flex:none;
  display:flex; align-items:center; justify-content:center;
  background:rgba(255,255,255,.14);
}
.hbc-icon svg{ width:22px; height:22px; stroke:#fff; }
.hbc-slide b{ display:block; font-family:var(--font-head); font-size:1.05rem; }
.hbc-slide span{ font-size:.8rem; color:rgba(255,255,255,.7); }

@media(max-width:940px){
  .hero-photo{ min-height:auto; padding:130px 0 40px; display:block; }
  .hero-bg{ left:0; -webkit-mask-image:none; mask-image:none; }
  .hero-scrim{
    background:
      linear-gradient(180deg, rgba(5,14,24,.6) 0, rgba(5,14,24,.35) 30%, rgba(5,14,24,.55) 60%, rgba(5,14,24,.92) 100%),
      linear-gradient(180deg, rgba(5,14,24,.55) 0, transparent 160px);
  }
  .hero-photo-inner{ min-height:auto; display:block; }
  .hero-copy{ max-width:100%; }
  .hero-stats-row{ max-width:100%; margin-top:36px; }
  .hero-brandcard{ position:static; width:100%; margin-top:28px; }
}
@media(max-width:520px){
  .hero-stats-row{ gap:22px 30px; }
}

/* page hero (interior pages) */
.page-hero{
  position:relative;
  padding:150px 0 90px;
  background:linear-gradient(160deg, var(--navy-900), var(--navy-700));
  color:#fff;
  overflow:hidden;
}
.page-hero::after{
  content:'';
  position:absolute; inset:0;
  background-image:radial-gradient(rgba(255,255,255,.08) 1px, transparent 1px);
  background-size:24px 24px;
  mask-image:radial-gradient(circle at 80% 20%, rgba(0,0,0,.7), transparent 70%);
}
.page-hero .container{ position:relative; z-index:2; max-width:820px; }
.page-hero h1{ color:#fff; margin-bottom:16px; }
.page-hero .lede{ color:rgba(255,255,255,.78); max-width:640px; }
.crumbs{ display:flex; gap:8px; align-items:center; font-size:.85rem; color:rgba(255,255,255,.55); margin-bottom:18px; }
.crumbs a:hover{ color:#fff; }

/* ==========================================================================
   Marquee strip
   ========================================================================== */
.strip{
  background:var(--mist-50);
  border-block:1px solid var(--line);
  padding:22px 0;
  overflow:hidden;
}
.strip-track{ display:flex; gap:64px; width:max-content; animation:marquee 26s linear infinite; }
.strip:hover .strip-track{ animation-play-state:paused; }
.strip-track span{ display:flex; align-items:center; gap:10px; font-family:var(--font-head); font-weight:700; color:var(--navy-700); font-size:.98rem; white-space:nowrap; letter-spacing:.02em; }
.strip-track span i{ width:6px; height:6px; border-radius:50%; background:var(--sky-500); display:inline-block; }
@keyframes marquee{ from{ transform:translateX(0);} to{ transform:translateX(-50%);} }

/* ==========================================================================
   Values cards
   ========================================================================== */
.values-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
@media(max-width:860px){ .values-grid{ grid-template-columns:1fr; } }
.value-card{
  position:relative;
  padding:34px 28px;
  border-radius:var(--radius-md);
  background:var(--white);
  border:1px solid var(--line);
  transition:transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s var(--ease);
  overflow:hidden;
}
.value-card::before{
  content:'';
  position:absolute; inset:0;
  background:linear-gradient(135deg, var(--sky-400), var(--teal-400));
  opacity:0;
  transition:opacity .45s var(--ease);
  z-index:0;
}
.value-card:hover{ transform:translateY(-8px); box-shadow:var(--shadow-lg); border-color:transparent; }
.value-card:hover::before{ opacity:1; }
.value-card > *{ position:relative; z-index:1; }
.value-card .num{ font-family:var(--font-head); font-size:.85rem; font-weight:700; color:var(--sky-500); transition:color .4s; }
.value-card:hover .num{ color:rgba(255,255,255,.75); }
.value-card .vicon{
  width:52px; height:52px; border-radius:14px;
  background:var(--mist-100);
  display:flex; align-items:center; justify-content:center;
  margin:16px 0 18px;
  transition:background .4s var(--ease);
}
.value-card .vicon svg{ width:24px; height:24px; stroke:var(--navy-800); transition:stroke .4s; }
.value-card:hover .vicon{ background:rgba(255,255,255,.22); }
.value-card:hover .vicon svg{ stroke:#fff; }
.value-card h3{ margin-bottom:10px; transition:color .4s; }
.value-card:hover h3{ color:#fff; }
.value-card p{ color:var(--ink-soft); transition:color .4s; line-height:1.6; }
.value-card:hover p{ color:rgba(255,255,255,.92); }

/* ==========================================================================
   Brand showcase cards (Our Brands)
   ========================================================================== */
.brands-grid{ display:grid; grid-template-columns:1fr 1fr; gap:28px; }
@media(max-width:860px){ .brands-grid{ grid-template-columns:1fr; } }

.brand-card{
  position:relative;
  border-radius:var(--radius-lg);
  padding:44px 40px;
  color:#fff;
  overflow:hidden;
  min-height:420px;
  display:flex; flex-direction:column;
  isolation:isolate;
  box-shadow:var(--shadow-md);
}
.brand-card.ws{ background:linear-gradient(150deg,#0d2c52,#123a6b 55%,#1a4d8c); }
.brand-card.irae{ background:linear-gradient(150deg,#063a35,#0f8f83 60%,#1aab9c); }

.brand-card .glow{
  position:absolute; width:340px; height:340px; border-radius:50%;
  filter:blur(60px); opacity:.35; z-index:-1;
}
.brand-card.ws .glow{ background:var(--crimson-500); top:-80px; right:-80px; }
.brand-card.irae .glow{ background:#ffd580; top:-80px; right:-80px; }

.brand-card .tag{
  align-self:flex-start;
  font-size:.72rem; font-weight:700; letter-spacing:.12em; text-transform:uppercase;
  background:rgba(255,255,255,.14);
  padding:7px 14px; border-radius:999px; margin-bottom:20px;
  backdrop-filter:blur(6px);
}
.brand-card h3{ color:#fff; font-size:1.9rem; margin-bottom:14px; }
.brand-card p{ color:rgba(255,255,255,.82); line-height:1.7; margin-bottom:14px; }
.brand-card .more{ margin-top:auto; padding-top:22px; display:flex; align-items:center; justify-content:space-between; gap:16px; }
.brand-card .more a{ font-weight:700; display:inline-flex; align-items:center; gap:8px; color:#fff; }
.brand-card .more a svg{ width:16px; height:16px; transition:transform .35s var(--ease); }
.brand-card:hover .more a svg{ transform:translateX(6px); }

.brand-card .bottles{ position:absolute; right:-10px; bottom:-10px; display:flex; align-items:flex-end; gap:-10px; z-index:0; }
.brand-card .bottles img{
  height:230px; width:auto; object-fit:contain;
  filter:drop-shadow(0 20px 30px rgba(0,0,0,.35));
  transition:transform .6s var(--ease);
}
.brand-card .bottles img:nth-child(2){ height:190px; margin-left:-46px; margin-bottom:-6px; }
.brand-card:hover .bottles img:nth-child(1){ transform:translateY(-10px) rotate(-3deg); }
.brand-card:hover .bottles img:nth-child(2){ transform:translateY(-6px) rotate(3deg); }

/* ==========================================================================
   Focus tabs
   ========================================================================== */
.focus-wrap{ display:grid; grid-template-columns:.85fr 1.15fr; gap:0; border-radius:var(--radius-lg); overflow:hidden; box-shadow:var(--shadow-md); border:1px solid var(--line); }
@media(max-width:820px){ .focus-wrap{ grid-template-columns:1fr; } }

.focus-tabs{ background:var(--navy-900); padding:14px; display:flex; flex-direction:column; gap:8px; }
@media(max-width:820px){ .focus-tabs{ flex-direction:row; overflow-x:auto; } }
.focus-tab{
  text-align:left;
  padding:20px 22px;
  border-radius:16px;
  background:transparent;
  border:none;
  color:rgba(255,255,255,.62);
  display:flex; align-items:center; gap:14px;
  transition:background .35s var(--ease), color .35s var(--ease);
  white-space:nowrap;
}
.focus-tab .fi{ width:38px; height:38px; border-radius:10px; background:rgba(255,255,255,.08); display:flex; align-items:center; justify-content:center; flex:none; }
.focus-tab .fi svg{ width:18px; height:18px; stroke:currentColor; }
.focus-tab span{ font-weight:700; font-size:1.02rem; }
.focus-tab.active{ background:linear-gradient(120deg, var(--sky-500), var(--teal-500)); color:#fff; }
.focus-tab:not(.active):hover{ background:rgba(255,255,255,.08); color:#fff; }

.focus-panels{ position:relative; background:var(--white); padding:46px; }
@media(max-width:640px){ .focus-panels{ padding:32px 24px; } }
.focus-panel{ display:none; animation:fadeUp .5s var(--ease); }
.focus-panel.active{ display:block; }
@keyframes fadeUp{ from{ opacity:0; transform:translateY(14px);} to{ opacity:1; transform:translateY(0);} }
.focus-panel h3{ font-size:1.5rem; margin-bottom:10px; }
.focus-panel p{ color:var(--ink-soft); margin-bottom:26px; line-height:1.7; }
.focus-panel-grid{ display:grid; grid-template-columns:1fr 200px; gap:32px; align-items:start; }
@media(max-width:760px){ .focus-panel-grid{ grid-template-columns:1fr; } }
.focus-photo{ border-radius:18px; overflow:hidden; aspect-ratio:4/5; box-shadow:var(--shadow-sm); border:1px solid var(--line); }
.focus-photo img{ width:100%; height:100%; object-fit:cover; display:block; }
@media(max-width:760px){ .focus-photo{ aspect-ratio:16/9; } }
.focus-items{ display:grid; grid-template-columns:1fr 1fr; gap:14px; }
@media(max-width:520px){ .focus-items{ grid-template-columns:1fr; } }
.focus-items li{
  display:flex; align-items:center; gap:12px;
  padding:16px 18px; border-radius:14px; background:var(--mist-50); border:1px solid var(--line);
  font-weight:600; color:var(--navy-800);
  transition:transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.focus-items li:hover{ transform:translateY(-4px); box-shadow:var(--shadow-sm); border-color:var(--sky-400); }
.focus-items li .dot{ width:9px; height:9px; border-radius:50%; background:linear-gradient(120deg,var(--sky-500),var(--teal-500)); flex:none; }

/* ==========================================================================
   Partnerships CTA banner
   ========================================================================== */
.cta-banner{
  border-radius:var(--radius-lg);
  padding:64px 56px;
  background:linear-gradient(120deg, var(--navy-900), var(--navy-700) 60%, var(--teal-600));
  color:#fff;
  display:flex; align-items:center; justify-content:space-between; gap:40px;
  position:relative; overflow:hidden;
  box-shadow:var(--shadow-lg);
}
@media(max-width:820px){ .cta-banner{ flex-direction:column; text-align:center; padding:48px 30px; } }
.cta-banner::before{
  content:'';
  position:absolute; width:420px; height:420px; border-radius:50%;
  background:radial-gradient(circle, rgba(255,255,255,.14), transparent 70%);
  right:-120px; top:-160px;
}
.cta-banner h2{ color:#fff; margin-bottom:12px; max-width:520px; }
.cta-banner p{ color:rgba(255,255,255,.78); max-width:460px; line-height:1.7; }
.cta-banner .cta-actions{ display:flex; gap:14px; flex-wrap:wrap; position:relative; z-index:2; }
@media(max-width:820px){ .cta-banner .cta-actions{ justify-content:center; } }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer{ background:var(--navy-900); color:rgba(255,255,255,.7); padding:72px 0 0; }
.footer-grid{ display:grid; grid-template-columns:1.4fr 1fr 1fr 1.1fr; gap:40px; padding-bottom:48px; border-bottom:1px solid rgba(255,255,255,.1); }
@media(max-width:820px){ .footer-grid{ grid-template-columns:1fr 1fr; } }
@media(max-width:520px){ .footer-grid{ grid-template-columns:1fr; } }
.footer-brand{ display:flex; align-items:center; gap:10px; margin-bottom:16px; }
.footer-brand img{ height:36px; }
.footer-brand b{ color:#fff; font-family:var(--font-head); font-size:1.15rem; }
.site-footer p{ line-height:1.7; font-size:.95rem; max-width:280px; }
.site-footer h4{ color:#fff; font-size:.85rem; letter-spacing:.1em; text-transform:uppercase; margin-bottom:18px; }
.site-footer ul li{ margin-bottom:12px; }
.site-footer ul a{ font-size:.95rem; transition:color .3s, padding-left .3s; }
.site-footer ul a:hover{ color:#fff; padding-left:4px; }
.footer-contact li{ display:flex; gap:10px; align-items:flex-start; font-size:.94rem; }
.footer-contact svg{ width:17px; height:17px; flex:none; margin-top:2px; stroke:var(--sky-400); }
.footer-bottom{ display:flex; justify-content:space-between; align-items:center; padding:26px 0; font-size:.85rem; flex-wrap:wrap; gap:12px; }
.footer-bottom a:hover{ color:#fff; }
.socials{ display:flex; gap:10px; }
.socials a{ width:38px; height:38px; border-radius:50%; border:1px solid rgba(255,255,255,.18); display:flex; align-items:center; justify-content:center; transition:background .3s, transform .3s; }
.socials a:hover{ background:var(--sky-500); transform:translateY(-3px); border-color:transparent; }
.socials svg{ width:16px; height:16px; }

/* ==========================================================================
   About page
   ========================================================================== */
.story-grid{ display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center; }
@media(max-width:900px){ .story-grid{ grid-template-columns:1fr; gap:36px; } }
.story-collage{ position:relative; height:420px; }
@media(max-width:900px){ .story-collage{ height:320px; } }
.story-collage img{
  position:absolute; border-radius:20px; object-fit:contain; background:var(--mist-50);
  box-shadow:var(--shadow-md); padding:20px; border:1px solid var(--line);
}
.story-collage .c1{ width:52%; top:0; left:4%; z-index:2; }
.story-collage .c2{ width:44%; bottom:0; right:0; z-index:1; }
.story-collage img.photo{ object-fit:cover; padding:0; background:none; height:280px; }
@media(max-width:900px){ .story-collage img.photo{ height:220px; } }

/* ==========================================================================
   Split content/photo grid — content one side, photo the other
   ========================================================================== */
.split-grid{ display:grid; grid-template-columns:1.1fr .9fr; gap:56px; align-items:center; }
.split-grid.reverse{ grid-template-columns:.9fr 1.1fr; }
.split-grid.reverse .split-media{ order:-1; }
@media(max-width:900px){
  .split-grid, .split-grid.reverse{ grid-template-columns:1fr; gap:32px; }
  .split-grid.reverse .split-media{ order:0; }
}
.split-media{ border-radius:var(--radius-lg); overflow:hidden; box-shadow:var(--shadow-md); height:340px; }
.split-media img{ width:100%; height:100%; object-fit:cover; display:block; }
@media(max-width:900px){ .split-media{ height:260px; } }
.story-collage.single .c1{ width:100%; height:100%; top:0; left:0; }
.story-collage .blob{ position:absolute; width:260px; height:260px; background:radial-gradient(circle, rgba(58,168,224,.18), transparent 70%); border-radius:50%; top:20%; right:10%; z-index:0; }

.story-grid p + p{ margin-top:16px; }

.process-list{ counter-reset:step; display:grid; gap:20px; }
.process-item{
  counter-increment:step;
  display:grid; grid-template-columns:auto 1fr; gap:22px;
  padding:28px; border-radius:var(--radius-md); background:var(--white); border:1px solid var(--line);
  transition:transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
}
.process-item:hover{ transform:translateX(6px); box-shadow:var(--shadow-md); border-color:var(--sky-400); }
.process-item .pnum{
  width:52px; height:52px; border-radius:50%; flex:none;
  display:flex; align-items:center; justify-content:center;
  font-family:var(--font-head); font-weight:800; font-size:1.15rem; color:#fff;
  background:linear-gradient(135deg, var(--navy-800), var(--sky-500));
}
.process-item h3{ margin-bottom:6px; }
.process-item p{ color:var(--ink-soft); line-height:1.65; }

.mv-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
@media(max-width:860px){ .mv-grid{ grid-template-columns:1fr; } }
.mv-card{ padding:32px; border-radius:var(--radius-md); border:1px solid var(--line); background:var(--mist-50); }
.mv-card .vicon{ width:50px; height:50px; border-radius:13px; background:#fff; border:1px solid var(--line); display:flex; align-items:center; justify-content:center; margin-bottom:18px; }
.mv-card .vicon svg{ width:22px; height:22px; stroke:var(--navy-800); }
a.mv-card{ display:block; transition:transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s; }
a.mv-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow-md); border-color:var(--sky-400); }
a.mv-card h3{ margin-bottom:8px; }
a.mv-card p{ color:var(--ink-soft); line-height:1.6; font-size:.95rem; }

.sector-tags{ display:flex; flex-wrap:wrap; gap:12px; }
.sector-tags span{
  padding:12px 20px; border-radius:999px; background:var(--mist-50); border:1px solid var(--line);
  font-weight:600; color:var(--navy-800); font-size:.92rem;
  transition:transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.sector-tags span:hover{ transform:translateY(-3px); box-shadow:var(--shadow-sm); border-color:var(--sky-400); }

/* ==========================================================================
   Products page
   ========================================================================== */
.brand-hero{
  border-radius:var(--radius-lg);
  padding:56px;
  color:#fff;
  position:relative; overflow:hidden;
  display:grid; grid-template-columns:1.1fr .9fr; gap:36px; align-items:center;
  box-shadow:var(--shadow-lg);
}
@media(max-width:860px){ .brand-hero{ grid-template-columns:1fr; padding:38px 26px; text-align:center; } }
.brand-hero.ws{ background:linear-gradient(140deg,#0d2c52,#123a6b 55%,#1a4d8c); }
.brand-hero.irae{ background:linear-gradient(140deg,#063a35,#0f8f83 55%,#1aab9c); }
.brand-hero .tag{ display:inline-flex; font-size:.72rem; font-weight:700; letter-spacing:.12em; text-transform:uppercase; background:rgba(255,255,255,.15); padding:8px 16px; border-radius:999px; margin-bottom:18px; }
.brand-hero h2{ color:#fff; margin-bottom:14px; }
.brand-hero p{ color:rgba(255,255,255,.85); line-height:1.75; }
.brand-hero .bh-visual{ display:flex; justify-content:center; gap:14px; }
.brand-hero .bh-visual img{ height:220px; filter:drop-shadow(0 30px 40px rgba(0,0,0,.35)); animation:float 7s ease-in-out infinite; background:#fff; border-radius:16px; padding:14px; }
.brand-hero .bh-visual img:nth-child(2){ height:180px; margin-top:40px; animation-delay:1.5s; }
@media(max-width:520px){ .brand-hero .bh-visual img{ height:150px; } .brand-hero .bh-visual img:nth-child(2){ height:120px; } }

.lifestyle-banner{
  position:relative; height:260px; margin-top:32px;
  border-radius:var(--radius-lg); overflow:hidden; box-shadow:var(--shadow-md);
}
.lifestyle-banner img{ width:100%; height:100%; object-fit:cover; }
.lifestyle-banner::after{
  content:''; position:absolute; inset:0;
  background:linear-gradient(90deg, rgba(7,27,48,.82), rgba(7,27,48,.25) 55%, transparent 80%);
}
.lifestyle-banner-cap{
  position:absolute; inset:0; z-index:2;
  display:flex; flex-direction:column; justify-content:center; gap:12px;
  padding:36px 44px; max-width:440px; color:#fff;
}
.lifestyle-tag{
  align-self:flex-start; font-size:.72rem; font-weight:700; letter-spacing:.12em; text-transform:uppercase;
  background:rgba(255,255,255,.16); padding:7px 14px; border-radius:999px; backdrop-filter:blur(6px);
}
.lifestyle-banner-cap p{ font-size:1.02rem; line-height:1.6; color:rgba(255,255,255,.92); }
@media(max-width:640px){
  .lifestyle-banner{ height:230px; }
  .lifestyle-banner-cap{ padding:26px; max-width:100%; }
}

.filter-bar{ display:flex; gap:10px; flex-wrap:wrap; margin:36px 0 30px; }
.filter-btn{
  padding:10px 20px; border-radius:999px; border:1px solid var(--line); background:#fff; font-weight:600; font-size:.88rem; color:var(--ink-soft);
  transition:all .3s var(--ease);
}
.filter-btn.active, .filter-btn:hover{ background:var(--navy-900); color:#fff; border-color:var(--navy-900); }

.gallery-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:22px; }
@media(max-width:980px){ .gallery-grid{ grid-template-columns:repeat(3,1fr); } }
@media(max-width:720px){ .gallery-grid{ grid-template-columns:repeat(2,1fr); } }
@media(max-width:460px){ .gallery-grid{ grid-template-columns:1fr 1fr; gap:14px; } }

.product-card{
  border-radius:var(--radius-md);
  background:var(--mist-50);
  border:1px solid var(--line);
  padding:22px;
  cursor:pointer;
  transition:transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
  display:flex; flex-direction:column;
}
.product-card:hover{ transform:translateY(-8px); box-shadow:var(--shadow-md); border-color:var(--sky-400); }
.product-card .thumb{ aspect-ratio:1/1; display:flex; align-items:center; justify-content:center; margin-bottom:16px; overflow:hidden; }
.product-card .thumb img{ height:100%; object-fit:contain; transition:transform .5s var(--ease); }
.product-card:hover .thumb img{ transform:scale(1.08) rotate(-1deg); }
.product-card .pname{ font-weight:700; font-size:.98rem; color:var(--navy-900); margin-bottom:4px; }
.product-card .pcat{ font-size:.78rem; color:var(--ink-soft); text-transform:uppercase; letter-spacing:.05em; font-weight:600; }
.product-card .pcat.ws{ color:var(--crimson-600); }
.product-card .pcat.irae{ color:var(--teal-600); }

.hidden{ display:none !important; }

/* lightbox */
.lightbox{
  position:fixed; inset:0; z-index:2000; display:none;
  align-items:center; justify-content:center;
  background:rgba(7,15,26,.86); backdrop-filter:blur(6px);
  padding:30px;
}
.lightbox.open{ display:flex; animation:fadeIn .3s var(--ease); }
@keyframes fadeIn{ from{ opacity:0;} to{ opacity:1;} }
.lightbox-inner{ position:relative; max-width:520px; width:100%; background:#fff; border-radius:var(--radius-lg); padding:36px; text-align:center; }
.lightbox-inner img{ max-height:52vh; margin:0 auto 22px; }
.lightbox-inner h3{ margin-bottom:6px; }
.lightbox-inner .pcat{ font-size:.8rem; font-weight:700; letter-spacing:.06em; text-transform:uppercase; }
.lightbox-close{
  position:absolute; top:-18px; right:-18px; width:44px; height:44px; border-radius:50%; background:#fff; box-shadow:var(--shadow-md);
  display:flex; align-items:center; justify-content:center; border:none;
}
.lightbox-close svg{ width:18px; height:18px; }
.lightbox-nav{ position:absolute; top:50%; transform:translateY(-50%); width:46px; height:46px; border-radius:50%; background:rgba(255,255,255,.9); border:none; display:flex; align-items:center; justify-content:center; box-shadow:var(--shadow-md); }
.lightbox-nav svg{ width:18px; height:18px; }
.lightbox-nav.prev{ left:-70px; }
.lightbox-nav.next{ right:-70px; }
@media(max-width:640px){ .lightbox-nav.prev{ left:6px; } .lightbox-nav.next{ right:6px; } .lightbox-inner{ padding:26px 18px; } }

.pledge-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:22px; }
@media(max-width:860px){ .pledge-grid{ grid-template-columns:1fr 1fr; } }
@media(max-width:520px){ .pledge-grid{ grid-template-columns:1fr; } }
.pledge{ text-align:center; padding:30px 20px; }
.pledge .vicon{ width:56px; height:56px; border-radius:16px; background:var(--mist-100); display:flex; align-items:center; justify-content:center; margin:0 auto 16px; }
.pledge .vicon svg{ width:24px; height:24px; stroke:var(--navy-800); }
.pledge h4{ font-family:var(--font-head); font-weight:700; margin-bottom:6px; font-size:1rem; }
.pledge p{ font-size:.88rem; color:var(--ink-soft); }

/* ==========================================================================
   Contact page
   ========================================================================== */
.contact-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
@media(max-width:860px){ .contact-grid{ grid-template-columns:1fr; } }
.contact-card{
  padding:32px; border-radius:var(--radius-md); border:1px solid var(--line); background:var(--white);
  display:flex; flex-direction:column; gap:14px;
  transition:transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
}
.contact-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow-md); border-color:var(--sky-400); }
.contact-card .vicon{ width:52px; height:52px; border-radius:14px; background:linear-gradient(135deg, var(--sky-500), var(--teal-500)); display:flex; align-items:center; justify-content:center; }
.contact-card .vicon svg{ width:22px; height:22px; stroke:#fff; }
.contact-card h3{ font-size:1.1rem; }
.contact-card p{ color:var(--ink-soft); line-height:1.6; }
.contact-card .clink{ font-weight:700; color:var(--sky-500); display:inline-flex; align-items:center; gap:6px; margin-top:auto; }
.contact-card .clink svg{ width:14px; height:14px; transition:transform .3s; }
.contact-card:hover .clink svg{ transform:translateX(4px); }

.contact-main{ display:grid; grid-template-columns:1fr 1fr; gap:50px; align-items:flex-start; }
@media(max-width:900px){ .contact-main{ grid-template-columns:1fr; gap:36px; } }

.field{ position:relative; margin-bottom:22px; }
.field input, .field textarea{
  width:100%; padding:18px 16px 8px; border-radius:14px; border:1px solid var(--line); background:var(--mist-50);
  font-size:.98rem; color:var(--ink); transition:border-color .3s, background .3s;
}
.field textarea{ min-height:120px; resize:vertical; }
.field label{
  position:absolute; left:16px; top:17px; color:var(--ink-soft); font-size:.98rem; pointer-events:none;
  transition:transform .25s var(--ease), font-size .25s var(--ease), color .25s var(--ease), top .25s;
}
.field input:focus, .field textarea:focus{ outline:none; border-color:var(--sky-500); background:#fff; box-shadow:0 0 0 4px rgba(58,168,224,.12); }
.field input:focus + label, .field input:not(:placeholder-shown) + label,
.field textarea:focus + label, .field textarea:not(:placeholder-shown) + label{
  top:8px; font-size:.72rem; font-weight:700; letter-spacing:.03em; color:var(--sky-500);
}
.form-note{ font-size:.82rem; color:var(--ink-soft); margin-top:14px; }

.field-row{ display:grid; grid-template-columns:1fr 1fr; gap:16px; }
@media(max-width:520px){ .field-row{ grid-template-columns:1fr; } }
.field.select-field label{
  position:static; display:block; pointer-events:auto;
  font-size:.72rem; font-weight:700; letter-spacing:.03em; color:var(--ink-soft); text-transform:uppercase;
  margin-bottom:8px;
}
.field.select-field select{
  width:100%; padding:16px; border-radius:14px; border:1px solid var(--line); background:var(--mist-50);
  font-size:.98rem; color:var(--ink); transition:border-color .3s, background .3s; appearance:none;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233d5064' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat:no-repeat; background-position:right 16px center; background-size:16px;
}
.field.select-field select:focus{ outline:none; border-color:var(--sky-500); background-color:#fff; box-shadow:0 0 0 4px rgba(58,168,224,.12); }
.form-success{ display:none; align-items:center; gap:12px; background:#effaf6; border:1px solid #b9ecd9; color:#0f8f5f; padding:16px 18px; border-radius:14px; font-weight:600; margin-bottom:18px; }
.form-success.show{ display:flex; animation:fadeUp .4s var(--ease); }
.form-success svg{ width:20px; height:20px; flex:none; }

.map-wrap{ border-radius:var(--radius-lg); overflow:hidden; border:1px solid var(--line); box-shadow:var(--shadow-sm); height:420px; }
.map-wrap iframe{ width:100%; height:100%; border:0; filter:grayscale(.15) contrast(1.05); }

/* ==========================================================================
   FAQ (contact page)
   ========================================================================== */
.faq{ border-radius:var(--radius-md); border:1px solid var(--line); overflow:hidden; }
.faq-item{ border-bottom:1px solid var(--line); }
.faq-item:last-child{ border-bottom:none; }
.faq-q{ width:100%; text-align:left; padding:22px 26px; background:#fff; border:none; display:flex; justify-content:space-between; align-items:center; font-weight:700; color:var(--navy-900); font-size:1rem; }
.faq-q svg{ width:18px; height:18px; transition:transform .35s var(--ease); flex:none; }
.faq-item.open .faq-q svg{ transform:rotate(45deg); }
.faq-a{ max-height:0; overflow:hidden; transition:max-height .4s var(--ease); background:var(--mist-50); }
.faq-item.open .faq-a{ max-height:200px; }
.faq-a p{ padding:0 26px 22px; color:var(--ink-soft); line-height:1.7; }

/* ---------- cookie banner ---------- */
.cookie-banner{
  position:fixed; left:20px; right:20px; bottom:20px; z-index:1500;
  max-width:560px; margin-inline:auto;
  background:var(--navy-900); color:#fff;
  border-radius:18px; padding:22px 24px;
  display:flex; align-items:center; gap:18px; flex-wrap:wrap;
  box-shadow:var(--shadow-lg);
  transform:translateY(140%);
  transition:transform .5s var(--ease);
}
.cookie-banner.show{ transform:translateY(0); }
.cookie-banner p{ font-size:.88rem; color:rgba(255,255,255,.78); flex:1; min-width:200px; line-height:1.6; }
.cookie-banner .btn{ padding:11px 20px; font-size:.85rem; }

/* ---------- back to top ---------- */
.to-top{
  position:fixed; right:24px; bottom:24px; z-index:900;
  width:48px; height:48px; border-radius:50%;
  background:var(--navy-900); color:#fff; border:none;
  display:flex; align-items:center; justify-content:center;
  opacity:0; pointer-events:none; transform:translateY(10px);
  transition:opacity .3s, transform .3s, background .3s;
  box-shadow:var(--shadow-md);
}
.to-top.show{ opacity:1; pointer-events:auto; transform:translateY(0); }
.to-top:hover{ background:var(--sky-500); }
.to-top svg{ width:18px; height:18px; }

/* generic section spacing */
.section-pad{ padding:104px 0; }
@media(max-width:720px){ .section-pad{ padding:76px 0; } }
.bg-mist{ background:var(--mist-50); }
