/* ============================================================
   ILX CHROME — v3 "Coastal Estate"
   Base, typography, buttons, header, drawer, footer, shared
   section scaffolding. Loaded site-wide after tokens.
   ============================================================ */

/* ---------- Base ---------- */
*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; -webkit-text-size-adjust:100%; }
@media (prefers-reduced-motion:reduce){ html{ scroll-behavior:auto; } }
body{
  margin:0;
  font-family:var(--ilx-sans);
  font-size:var(--ilx-fs-base);
  line-height:1.7;
  color:var(--ilx-ink);
  background:var(--ilx-paper);
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
  overflow-x:clip;
}
img{ max-width:100%; height:auto; display:block; }
a{ color:var(--ilx-forest-mid); text-decoration:none; }
a:hover{ color:var(--ilx-forest-deep); }
::selection{ background:var(--ilx-forest-mid); color:#fff; }
:focus-visible{ outline:2px solid var(--ilx-orange); outline-offset:3px; border-radius:2px; }

h1,h2,h3,h4,h5{ font-family:var(--ilx-display); font-weight:500; color:var(--ilx-forest-deep); margin:0 0 .5em; }
h1{ font-size:var(--ilx-fs-h1); line-height:1.04; letter-spacing:-.015em; font-variation-settings:"opsz" 110; }
h2{ font-size:var(--ilx-fs-h2); line-height:1.1; letter-spacing:-.012em; font-variation-settings:"opsz" 90; }
h3{ font-size:var(--ilx-fs-h3); line-height:1.25; }
h4{ font-size:var(--ilx-fs-h4); line-height:1.3; }
p{ margin:0 0 1.1em; }

.ilx-serif{ font-style:italic; font-weight:460; color:var(--ilx-orange); }
.ilx-wrap{ max-width:var(--ilx-wide); margin-inline:auto; padding-inline:var(--ilx-gutter); }

/* ---------- Sections ---------- */
.ilx-section{ padding-block:var(--ilx-section-y); position:relative; }
.ilx-section--tight{ padding-block:calc(var(--ilx-section-y) * .55); }
.ilx-main{ display:block; }

/* ---------- Eyebrow + section head ---------- */
.eyebrow{
  display:inline-flex; align-items:center; gap:12px;
  font-size:.72rem; font-weight:700; letter-spacing:.22em; text-transform:uppercase;
  color:var(--ilx-orange); margin-bottom:18px;
}
.eyebrow .dot{
  width:26px; height:1px; background:currentColor; border-radius:0; flex:none;
  position:relative;
}
.eyebrow .dot::after{
  content:""; position:absolute; right:-5px; top:-2.5px; width:6px; height:6px;
  border-radius:50%; background:currentColor;
}
.eyebrow.center{ justify-content:center; }
.eyebrow--light{ color:var(--ilx-gold); }

.sec-head{ text-align:center; max-width:760px; margin:0 auto clamp(40px,5vw,64px); }
.sec-head h2{ margin-bottom:.45em; }
.sec-head p{ color:var(--ilx-muted); font-size:var(--ilx-fs-lead); margin:0 auto; max-width:640px; }
.sec-head.left{ text-align:left; margin-inline:0; }
.sec-head.left p{ margin-inline:0; }

/* ---------- Buttons ---------- */
.ilx-btn{
  position:relative; isolation:isolate; overflow:hidden;
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:16px 30px; border:0; border-radius:var(--ilx-pill); cursor:pointer;
  font-family:var(--ilx-sans); font-size:.92rem; font-weight:700; letter-spacing:.01em;
  line-height:1; text-decoration:none; white-space:nowrap;
  transition:transform var(--ilx-dur-fast) var(--ilx-ease),box-shadow var(--ilx-dur-fast) var(--ilx-ease),background-color var(--ilx-dur-fast),color var(--ilx-dur-fast);
}
.ilx-btn svg{ width:17px; height:17px; flex:none; transition:transform var(--ilx-dur-fast) var(--ilx-ease); }
.ilx-btn:hover svg{ transform:translateX(4px); }
/* sheen sweep */
.ilx-btn::after{
  content:""; position:absolute; inset:0; z-index:-1;
  background:linear-gradient(105deg,transparent 38%,rgba(255,255,255,.18) 50%,transparent 62%);
  transform:translateX(-120%);
}
.ilx-btn:hover::after{ transform:translateX(120%); transition:transform .8s var(--ilx-ease); }
@media (prefers-reduced-motion:reduce){ .ilx-btn::after{ display:none; } }

.ilx-btn--primary{ background:var(--ilx-orange); color:#fff; box-shadow:var(--ilx-shadow-bronze); }
.ilx-btn--primary:hover{ background:var(--ilx-orange-deep); color:#fff; transform:translateY(-2px); }
.ilx-btn--dark{ background:var(--ilx-forest-deep); color:#fff; }
.ilx-btn--dark:hover{ background:var(--ilx-forest); color:#fff; transform:translateY(-2px); }
.ilx-btn--ghost{
  background:transparent; color:var(--ilx-forest-deep);
  box-shadow:inset 0 0 0 1.5px var(--ilx-forest-deep);
}
.ilx-btn--ghost:hover{ background:var(--ilx-forest-deep); color:#fff; transform:translateY(-2px); }
/* ghost on dark surfaces */
.hero--photo .ilx-btn--ghost,
.hero--dark .ilx-btn--ghost,
.ctabar .ilx-btn--ghost{
  color:#fff; box-shadow:inset 0 0 0 1.5px rgba(255,255,255,.65);
}
.hero--photo .ilx-btn--ghost:hover,
.hero--dark .ilx-btn--ghost:hover,
.ctabar .ilx-btn--ghost:hover{ background:#fff; color:var(--ilx-forest-deep); }
.ilx-btn--light{ background:#fff; color:var(--ilx-forest-deep); }
.ilx-btn--light:hover{ background:var(--ilx-cream); color:var(--ilx-forest-deep); transform:translateY(-2px); }
.ilx-btn--leaf{ background:var(--ilx-forest-mid); color:#fff; }
.ilx-btn--leaf:hover{ background:var(--ilx-forest); color:#fff; }
.ilx-btn--block{ width:100%; }

/* ---------- Skip link / SR ---------- */
.skip-link{
  position:absolute; left:-9999px; top:0; z-index:1000;
  background:var(--ilx-forest-deep); color:#fff; padding:12px 22px; border-radius:0 0 8px 0;
}
.skip-link:focus{ left:0; color:#fff; }
.screen-reader-text{
  border:0; clip:rect(1px,1px,1px,1px); clip-path:inset(50%); height:1px; width:1px;
  margin:-1px; overflow:hidden; padding:0; position:absolute; word-wrap:normal!important;
}

/* ---------- Utility bar ---------- */
.ilx-utility{
  background:var(--ilx-forest-deep); color:rgba(255,255,255,.78);
  font-size:.78rem; letter-spacing:.02em;
  border-bottom:1px solid rgba(201,178,126,.18);
}
.ilx-utility__row{ display:flex; justify-content:space-between; gap:18px; padding-block:9px; }
.ilx-utility a{ color:var(--ilx-gold); font-weight:600; }
.ilx-utility a:hover{ color:#fff; }
@media (max-width:720px){ .ilx-utility__row span:first-child{ display:none; } .ilx-utility__row{ justify-content:center; text-align:center; } }

/* ---------- Header ---------- */
.ilx-header{
  position:sticky; top:0; z-index:90;
  background:rgba(251,249,244,.86);
  -webkit-backdrop-filter:blur(14px); backdrop-filter:blur(14px);
  border-bottom:1px solid transparent;
  transition:background-color .35s,border-color .35s,box-shadow .35s,transform .45s var(--ilx-ease);
}
.ilx-header.is-scrolled{ border-bottom-color:var(--ilx-line); box-shadow:0 8px 30px rgba(19,26,16,.06); }
.ilx-header.is-hidden{ transform:translateY(-110%); }
.ilx-header__inner{ display:flex; align-items:center; gap:28px; height:var(--ilx-header-h); }
.ilx-header__logo{ flex:none; display:flex; align-items:center; }
.ilx-header__logo img{ width:auto; height:46px; }

.ilx-header__nav{ margin-left:auto; }
.ilx-header__menu{ display:flex; align-items:center; gap:6px; list-style:none; margin:0; padding:0; }
.ilx-header__menu>li{ position:relative; }
.ilx-header__menu>li>a{
  display:inline-block; position:relative; padding:10px 13px;
  font-size:.92rem; font-weight:600; color:var(--ilx-ink); letter-spacing:.01em;
}
.ilx-header__menu>li>a::after{
  content:""; position:absolute; left:13px; right:13px; bottom:4px; height:1.5px;
  background:var(--ilx-orange); transform:scaleX(0); transform-origin:left;
  transition:transform .35s var(--ilx-ease);
}
.ilx-header__menu>li>a:hover{ color:var(--ilx-forest-deep); }
.ilx-header__menu>li>a:hover::after,
.ilx-header__menu>li.current-menu-item>a::after,
.ilx-header__menu>li.current_page_item>a::after{ transform:scaleX(1); }

/* Services mega dropdown */
.ilx-mega{ position:relative; }
.ilx-mega>a .car{ display:inline-block; width:10px; height:10px; margin-left:5px; transition:transform .3s var(--ilx-ease); }
.ilx-mega>a .car svg{ width:10px; height:10px; display:block; }
.ilx-mega__panel{
  position:absolute; top:calc(100% + 14px); left:50%; transform:translateX(-50%) translateY(8px);
  width:min(720px,calc(100vw - 40px));
  background:#fff; border:1px solid var(--ilx-line); border-radius:var(--ilx-r-lg);
  box-shadow:var(--ilx-shadow-lg); padding:26px;
  display:grid; grid-template-columns:1fr 1fr; gap:6px 22px;
  opacity:0; visibility:hidden; pointer-events:none;
  transition:opacity .28s var(--ilx-ease),transform .28s var(--ilx-ease),visibility 0s .28s;
}
.ilx-mega__panel::before{ /* hover bridge */
  content:""; position:absolute; left:0; right:0; top:-16px; height:16px;
}
.ilx-mega:hover .ilx-mega__panel,
.ilx-mega:focus-within .ilx-mega__panel{
  opacity:1; visibility:visible; pointer-events:auto;
  transform:translateX(-50%) translateY(0); transition-delay:0s;
}
.ilx-mega:hover>a .car,
.ilx-mega:focus-within>a .car{ transform:rotate(180deg); }
.ilx-mega__item{ display:flex; gap:14px; align-items:flex-start; padding:12px; border-radius:var(--ilx-r-md); transition:background-color .25s; }
.ilx-mega__item:hover{ background:var(--ilx-gray-50); }
.ilx-mega__item .ic{
  flex:none; width:42px; height:42px; border-radius:12px; display:grid; place-items:center;
  background:var(--ilx-forest-ghost); color:var(--ilx-forest-mid);
  transition:background-color .25s,color .25s;
}
.ilx-mega__item:hover .ic{ background:var(--ilx-forest-deep); color:var(--ilx-gold); }
.ilx-mega__item .ic svg{ width:21px; height:21px; }
.ilx-mega__item b{ display:block; font-size:.93rem; color:var(--ilx-forest-deep); font-weight:700; }
.ilx-mega__item span{ display:block; font-size:.8rem; color:var(--ilx-muted); line-height:1.45; margin-top:2px; }
.ilx-mega__foot{
  grid-column:1/-1; margin-top:10px; padding-top:16px; border-top:1px solid var(--ilx-line);
  display:flex; justify-content:space-between; align-items:center; gap:14px;
  font-size:.84rem; color:var(--ilx-muted);
}
.ilx-mega__foot a{ font-weight:700; color:var(--ilx-orange); display:inline-flex; align-items:center; gap:6px; }
.ilx-mega__foot a svg{ width:14px; height:14px; }
.ilx-mega__foot a:hover{ color:var(--ilx-orange-deep); }

.ilx-header__cta{ display:flex; align-items:center; gap:18px; }
.ilx-header__phone{ font-size:.9rem; font-weight:700; color:var(--ilx-forest-deep); white-space:nowrap; }
.ilx-header__phone:hover{ color:var(--ilx-orange); }
.ilx-header__cta .ilx-btn{ padding:13px 24px; font-size:.86rem; }

.ilx-header__hamburger{
  display:none; flex-direction:column; justify-content:center; gap:5px;
  width:46px; height:46px; padding:11px; border:1px solid var(--ilx-line); border-radius:12px;
  background:#fff; cursor:pointer;
}
.ilx-header__hamburger span{ display:block; height:2px; border-radius:2px; background:var(--ilx-forest-deep); transition:transform .3s,opacity .3s; }

@media (max-width:1140px){
  .ilx-header__nav{ display:none; }
  .ilx-header__hamburger{ display:flex; margin-left:auto; }
  .ilx-header__cta{ margin-left:0; }
  .ilx-header__cta .ilx-header__phone{ display:none; }
}
@media (max-width:560px){
  .ilx-header__cta{ display:none; }
  .ilx-header__logo img{ height:40px; }
}

/* ---------- Mobile drawer ---------- */
.ilx-overlay{
  position:fixed; inset:0; z-index:98; background:rgba(11,31,20,.5);
  -webkit-backdrop-filter:blur(3px); backdrop-filter:blur(3px);
  opacity:0; visibility:hidden; transition:opacity .35s,visibility .35s;
}
.ilx-overlay.is-open{ opacity:1; visibility:visible; }
.ilx-drawer{
  position:fixed; top:0; right:0; bottom:0; z-index:99;
  width:min(400px,92vw); padding:26px 28px 34px;
  background:var(--ilx-forest-deep); color:#fff;
  display:flex; flex-direction:column; overflow-y:auto;
  transform:translateX(102%); transition:transform .5s var(--ilx-ease-out);
  border-left:1px solid rgba(201,178,126,.25);
}
.ilx-drawer.is-open{ transform:translateX(0); }
.ilx-drawer__top{ display:flex; align-items:center; justify-content:space-between; margin-bottom:26px; }
.ilx-drawer__logo{ width:auto; height:42px; }
.ilx-drawer__close{
  width:42px; height:42px; border-radius:50%; border:1px solid rgba(255,255,255,.25);
  background:transparent; color:#fff; font-size:1.5rem; line-height:1; cursor:pointer;
  transition:background-color .25s,transform .25s;
}
.ilx-drawer__close:hover{ background:rgba(255,255,255,.12); transform:rotate(90deg); }
.ilx-drawer__label{
  font-size:.7rem; letter-spacing:.24em; text-transform:uppercase; font-weight:700;
  color:var(--ilx-gold); margin-bottom:10px; display:block;
}
.ilx-drawer__menu{ list-style:none; margin:0 0 8px; padding:0; }
.ilx-drawer__menu li{ border-bottom:1px solid rgba(255,255,255,.09); }
.ilx-drawer__menu a{
  display:block; padding:15px 2px;
  font-family:var(--ilx-display); font-size:1.35rem; font-weight:480; color:#fff;
  transition:color .25s,padding-left .25s;
}
.ilx-drawer__menu a:hover{ color:var(--ilx-gold); padding-left:8px; }
.ilx-drawer__foot{ margin-top:auto; padding-top:26px; display:grid; gap:13px; font-size:.92rem; }
.ilx-drawer__line{ display:flex; align-items:center; gap:12px; color:rgba(255,255,255,.85); }
.ilx-drawer__line .ic{ width:20px; height:20px; color:var(--ilx-gold); flex:none; }
.ilx-drawer__line .ic svg{ width:20px; height:20px; }
.ilx-drawer__cta{
  margin-top:8px; display:inline-flex; justify-content:center; align-items:center;
  padding:16px 24px; border-radius:var(--ilx-pill);
  background:var(--ilx-orange); color:#fff; font-weight:700;
}
.ilx-drawer__cta:hover{ background:var(--ilx-orange-deep); color:#fff; }

/* ---------- Hedge divider ---------- */
.ilx-hedge{ display:block; width:100%; height:64px; margin-bottom:-1px; }

/* ---------- Marquee (flat strip) ---------- */
.ilx-marquee{
  background:var(--ilx-forest); overflow:hidden; padding:13px 0;
  border-top:1px solid rgba(201,178,126,.18);
  border-bottom:1px solid rgba(201,178,126,.18);
}
.ilx-marquee__track{
  display:inline-flex; gap:54px; white-space:nowrap; will-change:transform;
  animation:ilx-marq 64s linear infinite;
}
.ilx-marquee__track span{
  font-family:var(--ilx-display); font-style:italic; font-weight:420;
  font-size:clamp(.95rem,1.5vw,1.3rem); color:rgba(255,255,255,.42);
  display:inline-flex; align-items:center; gap:54px;
}
.ilx-marquee__track span::after{
  content:""; width:7px; height:7px; border-radius:50%; background:var(--ilx-gold-dim); flex:none;
}
@keyframes ilx-marq{ to{ transform:translateX(-50%); } }
@media (prefers-reduced-motion:reduce){ .ilx-marquee__track{ animation:none; } }

/* ---------- Connect band ---------- */
.ilx-connect{ background:var(--ilx-forest-deep); color:#fff; padding:clamp(48px,6vw,84px) 0; }
.ilx-connect__row{ display:flex; align-items:center; justify-content:space-between; gap:28px; flex-wrap:wrap; }
.ilx-connect h2{
  color:#fff; font-size:var(--ilx-fs-mega); margin:0; font-weight:440; letter-spacing:-.015em;
}
.ilx-connect h2 em{ font-style:italic; color:var(--ilx-gold); font-weight:420; }
.ilx-arrowbtn{
  display:inline-flex; align-items:center; gap:18px;
  font-size:1.05rem; font-weight:700; color:#fff;
}
.ilx-arrowbtn .pip{
  width:64px; height:64px; flex:none; border-radius:50%; display:grid; place-items:center;
  background:var(--ilx-orange); color:#fff; box-shadow:var(--ilx-shadow-bronze);
  transition:transform .35s var(--ilx-ease),background-color .35s;
}
.ilx-arrowbtn .pip svg{ width:24px; height:24px; }
.ilx-arrowbtn:hover{ color:var(--ilx-gold); }
.ilx-arrowbtn:hover .pip{ transform:translateX(8px) rotate(-45deg); background:var(--ilx-orange-deep); }

/* ---------- Footer ---------- */
.ilx-footer{ background:var(--ilx-forest-deep); color:rgba(255,255,255,.72); border-top:1px solid rgba(201,178,126,.16); }
.ilx-footer a{ color:rgba(255,255,255,.72); transition:color .2s,padding-left .2s; }
.ilx-footer a:hover{ color:var(--ilx-gold); }
.ilx-footer__top{
  display:grid; grid-template-columns:1.35fr .8fr .9fr .9fr; gap:48px;
  padding-block:clamp(56px,6vw,84px) clamp(40px,5vw,64px);
}
.ilx-footer__brand .b{ display:flex; align-items:center; gap:14px; margin-bottom:18px; }
.ilx-footer__brand .b img{ width:52px; height:auto; }
.ilx-footer__brand-name{ font-family:var(--ilx-display); font-size:1.35rem; font-weight:520; color:#fff; letter-spacing:.01em; }
.ilx-footer__brand p{ font-size:.92rem; line-height:1.75; max-width:340px; }
.ilx-footer__social{ display:flex; gap:10px; margin-top:20px; }
.ilx-footer__social a{
  width:42px; height:42px; border-radius:50%; display:grid; place-items:center;
  border:1px solid rgba(255,255,255,.2); color:rgba(255,255,255,.8);
  transition:background-color .25s,border-color .25s,color .25s,transform .25s;
}
.ilx-footer__social a:hover{ background:var(--ilx-gold); border-color:var(--ilx-gold); color:var(--ilx-forest-deep); transform:translateY(-3px); padding-left:0; }
.ilx-footer__social svg{ width:19px; height:19px; }
.ilx-footer__col h4{
  font-family:var(--ilx-sans); font-size:.72rem; letter-spacing:.22em; text-transform:uppercase;
  color:var(--ilx-gold); font-weight:700; margin-bottom:20px;
}
.ilx-footer__col ul{ list-style:none; margin:0; padding:0; display:grid; gap:11px; }
.ilx-footer__col ul a{ font-size:.93rem; }
.ilx-footer__col ul a:hover{ padding-left:5px; }
.ilx-footer__news .contact-line{ font-size:.95rem; line-height:2; }
.ilx-footer__quote{
  display:inline-flex; margin-top:18px; padding:13px 26px; border-radius:var(--ilx-pill);
  background:var(--ilx-orange); color:#fff!important; font-weight:700; font-size:.88rem;
  transition:background-color .25s,transform .25s;
}
.ilx-footer__quote:hover{ background:var(--ilx-orange-deep); transform:translateY(-2px); padding-left:26px; }
.ilx-footer__bottom{ border-top:1px solid rgba(255,255,255,.1); font-size:.8rem; }
.ilx-footer__bottom-row{ display:flex; justify-content:space-between; gap:14px; flex-wrap:wrap; padding-block:22px; }
.ilx-footer__bottom-brand{ color:#fff; }
.ilx-footer__bottom .legal{ display:flex; gap:22px; }
@media (max-width:1020px){ .ilx-footer__top{ grid-template-columns:1fr 1fr; } }
@media (max-width:600px){ .ilx-footer__top{ grid-template-columns:1fr; gap:36px; } }

/* ---------- Breadcrumb ---------- */
.crumb{ background:var(--ilx-cream); border-bottom:1px solid var(--ilx-line); font-size:.82rem; }
.crumb .ilx-wrap{ display:flex; align-items:center; flex-wrap:wrap; gap:9px; padding-block:11px; color:var(--ilx-muted); }
.crumb a{ color:var(--ilx-forest-mid); font-weight:600; }
.crumb a:hover{ color:var(--ilx-orange); }
.crumb .sep{ color:var(--ilx-sage); }
.crumb__list{ list-style:none; margin:0; }
.crumb__list li{ display:inline-flex; align-items:center; gap:9px; }
.crumb__list li+li{ margin-left:9px; }

/* ---------- Long-form copy ---------- */
.ilx-copy{ max-width:760px; margin-inline:auto; }
.ilx-copy h2{ font-size:clamp(1.5rem,1.2rem + 1.4vw,2.1rem); margin:1.7em 0 .55em; }
.ilx-copy h2:first-child{ margin-top:0; }
.ilx-copy h3{ margin:1.5em 0 .5em; }
.ilx-copy p{ color:#3d473b; }
.ilx-copy ul,.ilx-copy ol{ padding-left:22px; color:#3d473b; }
.ilx-copy li{ margin-bottom:.5em; }
.ilx-copy li::marker{ color:var(--ilx-orange); }
.ilx-copy a{ font-weight:600; text-decoration:underline; text-decoration-color:var(--ilx-orange-tint); text-underline-offset:3px; }
.ilx-copy a:hover{ text-decoration-color:var(--ilx-orange); }
.ilx-copy blockquote{
  margin:1.6em 0; padding:6px 0 6px 26px; border-left:2px solid var(--ilx-gold);
  font-family:var(--ilx-display); font-style:italic; font-size:1.15em; color:var(--ilx-forest-deep);
}
.ilx-copy img{ border-radius:var(--ilx-r-lg); box-shadow:var(--ilx-shadow-md); margin:1.6em 0; }
.ilx-copy--legal{ font-size:.95rem; }

/* ---------- Scroll-reveal primitives ---------- */
[data-animate]{ opacity:0; transform:translateY(26px); filter:blur(4px);
  transition:opacity var(--ilx-dur) var(--ilx-ease-out),transform var(--ilx-dur) var(--ilx-ease-out),filter var(--ilx-dur) var(--ilx-ease-out);
  will-change:opacity,transform,filter;
}
[data-animate="left"]{ transform:translateX(-34px); }
[data-animate="right"]{ transform:translateX(34px); }
[data-animate="scale"]{ transform:scale(.94); }
[data-animate].is-in{ opacity:1; transform:none; filter:none; }
html:not(.ilx-js) [data-animate]{ opacity:1; transform:none; filter:none; }
@media (prefers-reduced-motion:reduce){
  [data-animate]{ opacity:1; transform:none; filter:none; transition:none; }
}

/* ---------- Legacy fallback skin (page-shell pages without modules) ---------- */
.page-shell{ display:block; }
.page-shell .page-hero{
  background:var(--ilx-forest-deep); color:#fff; text-align:center;
  padding:clamp(64px,8vw,110px) var(--ilx-gutter);
}
.page-shell .page-hero h1{ color:#fff; max-width:880px; margin-inline:auto; }
.page-shell .page-hero p{ color:rgba(255,255,255,.82); max-width:640px; margin:14px auto 0; }
.page-shell .page-hero .eyebrow{ color:var(--ilx-gold); justify-content:center; display:flex; }
.page-shell .entry-content{ max-width:760px; margin:clamp(40px,6vw,72px) auto; padding-inline:var(--ilx-gutter); }
.page-shell .entry-content h2{ margin:1.6em 0 .5em; }
.page-shell .entry-content a{ font-weight:600; text-decoration:underline; text-decoration-color:var(--ilx-orange-tint); text-underline-offset:3px; }
.page-shell .featured-media{ max-width:var(--ilx-wide); margin:0 auto; padding:24px var(--ilx-gutter) 0; }
.page-shell .featured-media img{ border-radius:var(--ilx-r-lg); }
.button-row{ display:flex; gap:14px; justify-content:center; margin-top:24px; flex-wrap:wrap; }
.button{
  display:inline-flex; align-items:center; gap:10px; padding:15px 28px;
  border-radius:var(--ilx-pill); font-weight:700; font-size:.92rem;
}
.button--primary{ background:var(--ilx-orange); color:#fff!important; }
.button--primary:hover{ background:var(--ilx-orange-deep); }
.button--secondary{ box-shadow:inset 0 0 0 1.5px currentColor; color:var(--ilx-forest-deep); }
