/* ==========================================================================
   Suluh Centre — Concept 2 ("Carried Light")
   Same locked brand tokens as the primary build (Brand Guidelines v1 /
   Master Brief §10), completely different composition: editorial, kinetic,
   asymmetric. Motion stays within the brief's "subtle only" standard —
   CSS transitions and IntersectionObserver reveals, no scroll-hijacking.
   ========================================================================== */
:root{
  --white:      #FFFFFF;
  --forest:     #1B4332;
  --forest-2:   #143528;
  --forest-3:   #265945;
  --coral:      #EC6B6E;
  --coral-deep: #B4474B;
  --blush:      #F4A0A3;
  --blush-tint: #FBE4E5;
  --cream:      #F5EFE3;
  --hairline:   #E0D8C6;
  --ink:        #16281F;
  --muted:      #6E7468;

  --serif: "Inria Serif", Georgia, "Times New Roman", serif;
  --sans:  "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --wrap: 1320px;
  --ease: cubic-bezier(.16,1,.3,1);
}

*,*::before,*::after{ box-sizing:border-box; }
@media (prefers-reduced-motion: reduce){
  *,*::before,*::after{ animation-duration:.001ms !important; animation-iteration-count:1 !important; transition-duration:.001ms !important; scroll-behavior:auto !important; }
}
body{ margin:0; background:var(--white); color:var(--ink); font-family:var(--sans); line-height:1.6; -webkit-font-smoothing:antialiased; overflow-x:hidden; }
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
button{ font-family:inherit; cursor:pointer; }
ul{ margin:0; padding:0; list-style:none; }
p{ margin:0; }
.wrap{ max-width:var(--wrap); margin:0 auto; padding:0 24px; }
@media (min-width:900px){ .wrap{ padding:0 56px; } }

a:focus-visible, button:focus-visible, input:focus-visible{
  outline:2px solid var(--coral-deep); outline-offset:3px; border-radius:4px;
}

/* ==========================================================================
   Header — transparent over the hero, solidifies on scroll
   ========================================================================== */
header.c2-header{
  position:fixed; top:0; left:0; right:0; z-index:100;
  transition:background .35s var(--ease), border-color .35s var(--ease), backdrop-filter .35s var(--ease);
  border-bottom:1px solid transparent;
}
header.c2-header.solid{
  background:rgba(255,255,255,.92); backdrop-filter:blur(10px);
  border-color:var(--hairline);
}
.c2-hd{ display:flex; align-items:center; justify-content:space-between; height:78px; gap:20px; }
.c2-brand{ display:flex; align-items:center; gap:10px; }
.c2-brand svg{ width:26px; height:38px; }
.c2-brand span{ font-family:var(--sans); font-weight:600; font-size:1.15rem; color:var(--forest); line-height:1.05; }
header.c2-header:not(.solid) .c2-brand span{ color:var(--forest); }
nav.c2-nav{ display:flex; gap:30px; }
nav.c2-nav a{ font-family:var(--serif); font-size:1rem; color:var(--forest); border-bottom:2px solid transparent; padding:0px 0; transition:border-color .18s var(--ease); }
nav.c2-nav a:hover{ border-color:var(--coral); }

/* Pillars dropdown — CSS-only (hover + keyboard focus), desktop nav only;
   mobile gets the flat grouped list in the drawer instead. */
.c2-nav-item{ position:relative; }
.c2-nav-item > a{ display:inline-flex; align-items:center; gap:6px; }
.c2-nav-item .caret{ width:7px; height:7px; border-right:1.5px solid currentColor; border-bottom:1.5px solid currentColor; transform:rotate(45deg) translateY(-1px); transition:transform .18s var(--ease); }
.c2-nav-item:hover .caret, .c2-nav-item:focus-within .caret{ transform:rotate(225deg) translateY(1px); }
.c2-dropdown{
  position:absolute; top:100%; left:50%; transform:translate(-50%,6px);
  background:#fff; border:1px solid var(--hairline); border-radius:6px; padding:17px;
  min-width:230px; box-shadow:0 20px 40px -20px rgba(27,67,50,.28);
  opacity:0; pointer-events:none; transition:opacity .18s var(--ease), transform .18s var(--ease);
  z-index:120;
}
.c2-nav-item:hover .c2-dropdown, .c2-nav-item:focus-within .c2-dropdown{
  opacity:1; pointer-events:auto; transform:translate(-50%,2px);
}
.c2-dropdown a{
  display:block; font-family:var(--sans); font-size:.92rem; font-weight:500; color:var(--forest);
  padding:10px 14px; border-radius:9px; border-bottom:none;
}
.c2-dropdown a:hover{ background:var(--blush-tint); border-bottom:none; padding-left: 10px;}

/* Same dropdown, driven by a real WordPress menu (Appearance > Menus)
   instead of hardcoded markup: wp_nav_menu()'s own <li class="menu-item-has-children">
   + <ul class="sub-menu"> output, restyled to match .c2-nav-item/.c2-dropdown
   above exactly. Only takes effect once a menu is assigned to the
   Primary Navigation location — see header.php. */
.c2-nav > li{ list-style:none; }
.c2-nav .menu-item-has-children{ position:relative; }
.c2-nav .menu-item-has-children > a{ display:inline-flex; align-items:center; gap:6px; }
.c2-nav .menu-item-has-children > a::after{
  content:""; display:inline-block; width:7px; height:7px;
  border-right:1.5px solid currentColor; border-bottom:1.5px solid currentColor;
  transform:rotate(45deg) translateY(-1px); transition:transform .18s var(--ease);
}
.c2-nav .menu-item-has-children:hover > a::after, .c2-nav .menu-item-has-children:focus-within > a::after{ transform:rotate(225deg) translateY(1px); }
.c2-nav .sub-menu{
  position:absolute; top:100%; left:50%; transform:translate(-50%,6px);
  background:#fff; border:1px solid var(--hairline); border-radius:6px; padding:17px; margin:0;
  min-width:230px; box-shadow:0 20px 40px -20px rgba(27,67,50,.28); list-style:none;
  opacity:0; pointer-events:none; transition:opacity .18s var(--ease), transform .18s var(--ease);
  z-index:120;
}
.c2-nav .menu-item-has-children:hover > .sub-menu, .c2-nav .menu-item-has-children:focus-within > .sub-menu{
  opacity:1; pointer-events:auto; transform:translate(-50%,2px);
}
.c2-nav .sub-menu a{
  display:block; font-family:var(--sans); font-size:.92rem; font-weight:500; color:var(--forest);
  padding:10px 14px; border-radius:9px; border-bottom:none;
}
.c2-nav .sub-menu a:hover{ background:var(--blush-tint); border-bottom:none; padding-left:10px; }

.c2-hd-cta{ font-family:var(--sans); font-size:.94rem; padding:9px 20px; border-radius:999px; border:1.5px solid var(--forest); color:var(--forest); background:transparent; transition:.18s var(--ease); }
.c2-hd-cta:hover{ background:var(--forest); color:#fff; }
.c2-burger{ display:none; }
.c2-brand img{
	width:115px;
}
@media (max-width:860px){
  nav.c2-nav{ display:none; }
  .c2-burger{ display:flex; align-items:center; justify-content:center; width:38px; height:38px; border:1px solid var(--hairline); border-radius:8px; background:none; }
  .c2-burger span{ display:block; width:16px; height:2px; background:var(--forest); margin:2.5px auto; border-radius:2px; }
}

/* ==========================================================================
   Hero — oversized kinetic headline, asymmetric bleed
   ========================================================================== */
.hero2{
  position:relative; min-height:100vh; display:flex; align-items:center;
  padding:120px 0 80px; overflow:hidden;
	background:url(../hero.png);
	background-size: cover;
    background-repeat: no-repeat;
}
/* Readability scrim: the hero photo's dark-green shape can pass directly
   behind the headline/standfirst depending on viewport crop, which makes
   dark-on-dark text disappear. A soft cream wash over the text column
   guarantees contrast at any breakpoint without a hard-edged panel. */
.hero2::after{
  content:"";
  position:absolute; inset:0; z-index:0; pointer-events:none;
  background:linear-gradient(100deg, rgba(245,239,227,.9) 0%, rgba(245,239,227,.72) 38%, rgba(245,239,227,0) 64%);
}
.hero2 .flame-bleed{ position:absolute; right:-8vw; top:50%; transform:translateY(-50%); width:min(52vw,720px); opacity:.9; pointer-events:none; display:none; }
.hero2 .flame-bleed svg{ width:100%; height:auto; }
.hero2-in{ position:relative; z-index:1; max-width:1320px; margin: auto 0;}
.hero2 .eyebrow{
  font-family:var(--sans); font-size:.72rem; font-weight:700; letter-spacing:.18em; text-transform:uppercase;
  color:var(--coral-deep); display:inline-block; margin-bottom:22px;
}
.hero2 h1{
  font-family:var(--serif); font-weight:600; letter-spacing:-.015em;
  font-size:clamp(2.8rem,7vw,4.2rem); line-height:.98; margin:0 0 30px;
}
.hero2 h1 .word{ display:inline-block; overflow:hidden; vertical-align:top; padding-bottom:.14em; }
.hero2 h1 .word span{ display:inline-block; transform:translateY(115%); transition:transform .8s var(--ease); }
.hero2 h1.in .word span{ transform:translateY(0); }
.hero2 h1 .c-forest{ color:var(--forest); }
.hero2 h1 .c-coral{ color:#ec6b6e; }
@media (prefers-reduced-motion: reduce){ .hero2 h1 .word span{ transform:none; } }

.hero2 .standfirst{
  font-family:var(--sans); font-size:1.2rem; line-height:1.55; color:var(--forest-3);
  max-width:25em; opacity:0; transform:translateY(14px); transition:opacity .7s var(--ease) .5s, transform .7s var(--ease) .5s;
}
.hero2.in .standfirst{ opacity:1; transform:none; }

.hero2 .cta{
  margin-top:34px; opacity:0; transform:translateY(14px); transition:opacity .7s var(--ease) .68s, transform .7s var(--ease) .68s;
}
.hero2.in .cta{ opacity:1; transform:none; }
.btn2{
  display:inline-flex; align-items:center; gap:10px; font-family:var(--sans); font-size:1.05rem;
  background:var(--coral); color:#fff; padding:16px 30px; border-radius:999px; border:none; transition:.2s var(--ease);
}
.btn2:hover{ background:var(--coral-deep); transform:translateY(-2px); }
.btn2 svg{ width:16px; height:16px; transition:transform .2s var(--ease); }
.btn2:hover svg{ transform:translateX(3px); }

.scroll-cue{
  position:absolute; left:24px; bottom:34px; display:flex; align-items:center; gap:10px;
  font-family:var(--sans); font-size:.72rem; letter-spacing:.1em; text-transform:uppercase; color:#1c4332; z-index:1000
}
@media (min-width:900px){ .scroll-cue{ left:56px; } }
.scroll-cue .ln{ width:36px; height:1px; background:var(--muted); }

/* ==========================================================================
   Marquee — pillar names, one loop, one per page
   ========================================================================== */
.marquee-band{ background:var(--forest); padding:20px 0; overflow:hidden; border-top:1px solid rgba(255,255,255,.14); border-bottom:1px solid rgba(255,255,255,.14); }
.marquee-track{ display:flex; width:max-content; animation:marquee 34s linear infinite; }
@media (prefers-reduced-motion: reduce){ .marquee-track{ animation:none; } }
.marquee-track span{
  display:flex; align-items:center; gap:22px; font-family:var(--sans); font-size:1.5rem;
  color:#DCEAE1; padding:0 26px; white-space:nowrap;
}
.marquee-track span svg{ width:16px; height:16px; opacity:.6; flex:none; }
@keyframes marquee{ from{ transform:translateX(0); } to{ transform:translateX(-50%); } }

/* ==========================================================================
   Pillars — asymmetric bento, not equal cards
   ========================================================================== */
.pillars2{ padding-top:110px; padding-bottom:110px; }
.pillars2-head{ max-width:640px; margin-bottom:56px; }
.pillars2-head .eyebrow{ font-family:var(--sans); font-size:.72rem; font-weight:700; letter-spacing:.16em; text-transform:uppercase; color:var(--coral-deep); }
.pillars2-head h2{ font-family:var(--serif); font-size:clamp(1.9rem,3.4vw,2.7rem); color:var(--forest); margin:14px 0 0; line-height:1.15; }

.bento{ display:grid; grid-template-columns:1fr; gap:20px; }
@media (min-width:860px){ .bento{ grid-template-columns:1.3fr 1fr; grid-template-rows:auto auto; } }
.bento-cell{
  position:relative; border-radius:24px; padding:40px; overflow:hidden;
  display:flex; flex-direction:column; justify-content:flex-end; min-height:260px;
  transition:transform .3s var(--ease);
}
.bento-cell:hover{ transform:translateY(-4px); }
.bento-cell.lg{ grid-row:1 / span 2; min-height:540px; background:var(--forest); color:#fff; }
.bento-cell.a{ background:var(--blush-tint); color:var(--forest); }
.bento-cell.b{ background:var(--cream); border:1px solid var(--hairline); color:var(--forest); }
.bento-cell.c{ background:var(--coral); color:#fff; }
.bento-cell .num{ position:absolute; top:36px; right:40px; font-family:var(--sans); font-size:.95rem; opacity:.6; }
.bento-cell .bento-flame{ position:absolute; opacity:.16; pointer-events:none; }
.bento-cell.lg .bento-flame{ right:-60px; top:-40px; width:340px; opacity:.14; }
.bento-cell h3{ font-family:var(--serif); font-size:1.7rem; margin:0 0 12px; }
.bento-cell.lg h3{ font-size:2.3rem; }
.bento-cell p{ font-family:var(--sans); font-size:1.02rem; line-height:1.5; max-width:34em; opacity:.92; }
.bento-cell .go{
  margin-top:20px; display:inline-flex; align-items:center; gap:8px; font-family:var(--sans);
  font-size:.78rem; font-weight:700; letter-spacing:.06em; text-transform:uppercase;
}
.bento-cell .go svg{ width:14px; height:14px; transition:transform .18s var(--ease); }
.bento-cell:hover .go svg{ transform:translateX(4px); }

/* ==========================================================================
   The idea — full-viewport statement, flame draws itself in
   ========================================================================== */
.idea2{ background:var(--forest); color:#fff; padding:160px 0; position:relative; overflow:hidden; }
.idea2-in{ position:relative; z-index:1; display:flex; justify-content:flex-end; }
.idea2-content{ max-width:560px; }
.idea2 .eyebrow{ font-family:var(--sans); font-size:.72rem; font-weight:700; letter-spacing:.18em; text-transform:uppercase; color:var(--blush); }
.idea2 h2{ font-family:var(--serif); font-size:clamp(2rem,4vw,3.1rem); line-height:1.15; margin:16px 0 26px; max-width:16ch; }
.idea2 p{ font-family:var(--sans); font-size:1.18rem; line-height:1.6; color:#C9DCD1; max-width:32em; }
.idea2-mark{
  position:absolute; left:-10%; top:50%; z-index:0; pointer-events:none;
  width:min(52vw,760px);
  opacity:0; transform:translateY(-50%) scale(.92); transition:opacity 1.1s var(--ease), transform 1.1s var(--ease);
}
.idea2-mark img{ width:100%; height:auto; display:block; }
.idea2.in .idea2-mark{ opacity:1; transform:translateY(-50%) scale(1); }
@media (max-width:900px){
  .idea2{ padding:100px 0; }
  .idea2-mark{ position:relative; left:auto; top:auto; margin:0 auto 40px; width:min(220px,60%); transform:scale(.92); }
  .idea2.in .idea2-mark{ transform:scale(1); }
  .idea2-in{ justify-content:flex-start; }
  .idea2-content{ max-width:none; }
}
@media (prefers-reduced-motion: reduce){ .idea2-mark{ transition:none; opacity:1; transform:translateY(-50%); } }

/* ==========================================================================
   Continuity timeline — Polity 2024 -> Suluh 2026
   ========================================================================== */
.timeline2{ padding-top:110px; padding-bottom:110px; }
.timeline2-head{ max-width:640px; margin-bottom:64px; }
.timeline2-head .eyebrow{ font-family:var(--sans); font-size:.72rem; font-weight:700; letter-spacing:.16em; text-transform:uppercase; color:var(--coral-deep); }
.timeline2-head h2{ font-family:var(--serif); font-size:clamp(1.9rem,3.4vw,2.7rem); color:var(--forest); margin:14px 0 16px; }
.timeline2-head p{ font-size:1.05rem; color:var(--muted); max-width:42em; line-height:1.6; }

.tl-track{ position:relative; display:grid; grid-template-columns:1fr 1fr; gap:40px; }
@media (max-width:760px){ .tl-track{ grid-template-columns:1fr; gap:56px; } }
.tl-line{
  position:absolute; left:0; right:0; top:22px; height:2px; background:var(--hairline);
  overflow:hidden;
}
.tl-line i{ display:block; height:100%; width:0; background:var(--coral); transition:width 1.4s var(--ease); }
.timeline2.in .tl-line i{ width:100%; }
@media (max-width:760px){ .tl-line{ left:22px; right:auto; top:0; bottom:0; width:2px; height:auto; } .tl-line i{ width:2px; height:0; transition:height 1.4s var(--ease); } .timeline2.in .tl-line i{ height:100%; width:2px; } }

.tl-point{ position:relative; padding-top:56px; }
@media (max-width:760px){ .tl-point{ padding-top:0; padding-left:56px; } }
.tl-dot{
  position:absolute; top:14px; left:0; width:18px; height:18px; border-radius:50%;
  background:var(--white); border:3px solid var(--coral); z-index:1;
}
@media (max-width:760px){ .tl-dot{ top:2px; } }
.tl-year{ font-family:var(--sans); font-size:2.6rem; color:var(--coral-deep); font-weight:600; }
.tl-point h4{ font-family:var(--serif); font-size:1.4rem; color:var(--forest); margin:8px 0 10px; }
.tl-point p{ color:var(--muted); font-size:.98rem; line-height:1.6; max-width:36em; }

/* ==========================================================================
   Impact — editorial number spread, not a boxed grid
   ========================================================================== */
.impact2{ background:var(--cream); padding:110px 0; border-top:1px solid var(--hairline); border-bottom:1px solid var(--hairline); }
.impact2-head{ display:flex; justify-content:space-between; align-items:flex-end; gap:20px; flex-wrap:wrap; margin-bottom:12px; }
.impact2-head .eyebrow{ font-family:var(--sans); font-size:.72rem; font-weight:700; letter-spacing:.16em; text-transform:uppercase; color:var(--coral-deep); }
.impact2-head h2{ font-family:var(--serif); font-size:clamp(1.9rem,3.4vw,2.7rem); color:var(--forest); margin-top:14px; }
.num-spread{ display:grid; grid-template-columns:repeat(2,1fr); }
@media (min-width:760px){ .num-spread{ grid-template-columns:repeat(3,1fr); } }
@media (min-width:1080px){ .num-spread{ grid-template-columns:repeat(6,1fr); } }
.num-item{ padding:30px 20px 0 0; border-top:1px solid var(--hairline); }
.num-item .n{ font-family:var(--sans); font-size:clamp(2.4rem,4vw,3.4rem); color:var(--forest); line-height:1; }
.num-item .l{ font-size:.86rem; color:var(--muted); margin-top:10px; line-height:1.4; max-width:14ch; }
.impact2-note{ margin-top:44px; font-family:var(--sans); font-size:1.15rem; color:var(--forest-3); max-width:44em; line-height:1.55; }
.impact2-note b{ color:var(--forest); }
.impact2-src{ font-size:.82rem; color:var(--muted); margin-top:14px; }

/* ==========================================================================
   How we work — numbered editorial list, not equal cards
   ========================================================================== */
.principles2{ padding-top:110px; padding-bottom:110px; }
.principles2-head{ max-width:520px; margin-bottom:8px; }
.principles2-head .eyebrow{ font-family:var(--sans); font-size:.72rem; font-weight:700; letter-spacing:.16em; text-transform:uppercase; color:var(--coral-deep); }
.principles2-head h2{ font-family:var(--serif); font-size:clamp(1.9rem,3.4vw,2.7rem); color:var(--forest); margin-top:14px; }
.p-row{
  display:grid; grid-template-columns:100px 1fr; gap:28px; align-items:start;
  padding:34px 0; border-top:1px solid var(--hairline);
}
.p-row:last-child{ border-bottom:1px solid var(--hairline); }
.p-row .idx{ font-family:var(--sans); font-size:2.4rem; color:var(--hairline); line-height:1; transition:color .25s var(--ease); }
.p-row:hover .idx{ color:var(--coral-deep); }
.p-row h4{ font-family:var(--serif); font-size:1.5rem; color:var(--forest); margin:0 0 8px; }
.p-row p{ color:var(--muted); font-size:1rem; max-width:48em; line-height:1.6; }
@media (max-width:600px){ .p-row{ grid-template-columns:56px 1fr; gap:16px; } .p-row .idx{ font-size:1.6rem; } }

/* ==========================================================================
   Stories — featured + list, asymmetric editorial spread
   ========================================================================== */
.stories2{ padding-top:110px; padding-bottom:110px; }
.stories2-head{ display:flex; justify-content:space-between; align-items:flex-end; gap:20px; flex-wrap:wrap; margin-bottom:44px; }
.stories2-head .eyebrow{ font-family:var(--sans); font-size:.72rem; font-weight:700; letter-spacing:.16em; text-transform:uppercase; color:var(--coral-deep); }
.stories2-head h2{ font-family:var(--serif); font-size:clamp(1.9rem,3.4vw,2.7rem); color:var(--forest); margin-top:14px; }
.stories2-head .see-all{ font-family:var(--sans); font-size:1rem; color:var(--coral-deep); display:inline-flex; align-items:center; gap:8px; }
.stories2-head .see-all svg{ width:15px; height:15px; }

.story-spread{ display:grid; grid-template-columns:1fr; gap:44px; }
@media (min-width:900px){ .story-spread{ grid-template-columns:1.3fr 1fr; } }

.feat-story{ display:block; border-radius:22px; overflow:hidden; position:relative; background:var(--cream); }
.feat-story .thumb{ aspect-ratio:16/11; overflow:hidden; position:relative; }
.feat-story .thumb img{ width:100%; height:100%; object-fit:cover; filter:grayscale(.2) sepia(.1); mix-blend-mode:multiply; transition:transform .5s var(--ease); }
.feat-story:hover .thumb img{ transform:scale(1.04); }
.feat-story .thumb::after{ content:""; position:absolute; inset:0; background:linear-gradient(160deg, rgba(27,67,50,.4), rgba(236,107,110,.24)); mix-blend-mode:color; }
.feat-story .body{ padding:30px 34px 34px; }
.feat-story .tag{ font-family:var(--sans); font-size:.68rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:var(--coral-deep); background:var(--blush-tint); padding:4px 12px; border-radius:999px; }
.feat-story h3{ font-family:var(--serif); font-size:1.7rem; color:var(--forest); margin:16px 0 12px; line-height:1.2; }
.feat-story p{ color:var(--muted); font-size:1rem; line-height:1.6; max-width:48ch; }
.feat-story .meta{ margin-top:18px; font-size:.85rem; color:var(--muted); }

.list-story{ display:flex; gap:18px; padding:22px 0; border-top:1px solid var(--hairline); }
.list-story:last-child{ border-bottom:1px solid var(--hairline); }
.list-story .yr{ font-family:var(--sans); font-size:.85rem; color:var(--coral-deep); flex:none; width:64px; padding-top:2px; }
.list-story h4{ font-family:var(--serif); font-size:1.15rem; color:var(--forest); margin:0 0 6px; line-height:1.3; }
.list-story p{ font-size:.9rem; color:var(--muted); line-height:1.5; }
.list-story .tag2{ font-family:var(--sans); font-size:.65rem; font-weight:700; letter-spacing:.09em; text-transform:uppercase; color:var(--coral-deep); display:block; margin-bottom:6px; }

/* ==========================================================================
   Closing light moment
   ========================================================================== */
.closing2{ background:var(--forest); color:#fff; padding:120px 0; text-align:center; position:relative; overflow:hidden; }
.closing2 .glow{ position:absolute; left:50%; top:50%; width:900px; height:900px; transform:translate(-50%,-50%); background:radial-gradient(circle, rgba(236,107,110,.22), transparent 62%); pointer-events:none; }
.closing2-in{ position:relative; z-index:1; max-width:640px; margin:0 auto; }
.closing2 h2{ font-family:var(--serif); font-size:clamp(2rem,4.2vw,3.2rem); line-height:1.2; margin:0 0 34px; }
.c2-form{ display:flex; gap:10px; justify-content:center; flex-wrap:wrap; }
.c2-form label{ position:absolute; width:1px; height:1px; overflow:hidden; clip:rect(0,0,0,0); }
.c2-form input{
  font-family:var(--sans); font-size:.95rem; padding:14px 20px; border-radius:999px;
  border:1.5px solid rgba(255,255,255,.35); background:rgba(255,255,255,.06); color:#fff; min-width:260px;
}
.c2-form input::placeholder{ color:#B7CFC2; }
.c2-status{ font-family:var(--sans); font-size:.85rem; color:var(--blush); margin-top:14px; min-height:1.2em; }

/* ==========================================================================
   Footer
   ========================================================================== */
footer.c2-footer{ background:var(--forest-2); color:#A9C4B4; padding:52px 0 28px; }
.footer-logo{
	width:100px;
}
.c2-fgrid{ display:grid; grid-template-columns:1fr; gap:32px; }
@media (min-width:760px){ .c2-fgrid{ grid-template-columns:1.4fr 1fr 1fr 1fr; } }
.c2-footer .wm{ font-family:var(--sans); font-size:1.2rem; color:#fff; margin-top:12px; display:block; }
.c2-footer h5{ font-family:var(--sans); font-size:.66rem; letter-spacing:.13em; text-transform:uppercase; color:var(--blush); font-weight:700; margin-bottom:14px; }
.c2-footer li{ margin-bottom:9px; }
.c2-footer a{ color:#C9DCD1; font-size:.92rem; font-family:var(--sans); }
.c2-footer a:hover{ color:#fff; }
.c2-fbot{ border-top:1px solid rgba(255,255,255,.14); margin-top:36px; padding-top:18px; display:flex; justify-content:space-between; gap:14px; flex-wrap:wrap; font-size:.78rem; }
.footer-social{ display:flex; gap:10px; margin-top:18px; }
.footer-social a{
	display:flex; align-items:center; justify-content:center;
	width:34px; height:34px; border-radius:50%;
	background:rgba(255,255,255,.08); color:#C9DCD1;
	transition:background .18s var(--ease), color .18s var(--ease);
}
.footer-social a:hover{ background:var(--coral); color:#fff; }
.footer-social svg{ display:block; }

/* mobile nav drawer */
.c2-drawer{
  position:fixed; inset:0; background:var(--white); z-index:200; display:none;
  flex-direction:column; padding:100px 32px 40px;
}
.c2-drawer.open{ display:flex; }
.c2-drawer a{ font-family:var(--sans); font-size:1.6rem; color:var(--forest); padding:16px 0; border-bottom:1px solid var(--hairline); }
.c2-drawer-close{ position:absolute; top:26px; right:24px; background:none; border:none; width:38px; height:38px; }
.c2-drawer-sub{ display:flex; flex-direction:column; padding-left:20px; border-bottom:1px solid var(--hairline); }
.c2-drawer-sub .c2-drawer-sublabel{ display:block; font-family:var(--sans); font-size:.7rem; font-weight:700; letter-spacing:.12em; text-transform:uppercase; color:var(--coral-deep); margin:16px 0 4px; }
.c2-drawer-sub a{ display:block; font-size:1.15rem; padding:9px 0; border-bottom:none; }

/* Same grouped flat list, driven by a real WordPress menu instead of
   hardcoded markup: wp_nav_menu()'s <ul class="sub-menu"> is shown
   inline and indented rather than as a hover dropdown (no hover on
   touch), matching .c2-drawer-sub above. Only takes effect once a menu
   is assigned to the Primary Navigation location — see header.php. */
.c2-drawer > li{ list-style:none; }
.c2-drawer .sub-menu{
  display:flex; flex-direction:column; padding-left:20px; border-bottom:1px solid var(--hairline);
  list-style:none; margin:0;
}
.c2-drawer .sub-menu li{ list-style:none; }
.c2-drawer .sub-menu a{ display:block; font-size:1.15rem; padding:9px 0; border-bottom:none; }

.reveal2{ opacity:0; transform:translateY(20px); transition:opacity .6s var(--ease), transform .6s var(--ease); }
.reveal2.in{ opacity:1; transform:none; }
@media (prefers-reduced-motion: reduce){ .reveal2{ opacity:1; transform:none; } }
@media (max-width: 480px) {
	.hero2{background: url(../MOBILE.jpeg);
		  background-size: cover;
        background-repeat: no-repeat;
		  align-items: start;}
	.hero2-in {
    margin: 0 auto ;
	}
}
