/* INSUREDWITHAMIT — Premium personal-brand site */
:root {
  --iwa-bg:        #0a0a0b;
  --iwa-bg-2:      #111113;
  --iwa-card:      #131316;
  --iwa-card-2:    #18181b;
  --iwa-line:      rgba(255,255,255,0.08);
  --iwa-line-2:    rgba(255,255,255,0.14);
  --iwa-fg:        #f4f3ee;
  --iwa-fg-mute:   #b8b6ad;
  --iwa-fg-soft:   #8a877e;
  --iwa-accent:    #d6b478;
  --iwa-display:   "Instrument Serif", "Cormorant Garamond", serif;
  --iwa-sans:      "Manrope", "Inter", system-ui, -apple-system, sans-serif;
  --iwa-mono:      "JetBrains Mono", "IBM Plex Mono", ui-monospace, monospace;
  --iwa-density:   1;
  --iwa-radius:    18px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--iwa-bg);
  color: var(--iwa-fg);
  font-family: var(--iwa-sans);
  font-feature-settings: "ss01","ss02","cv01","cv11";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

::selection { background: rgba(214,180,120,0.35); color: #fff; }

/* Subtle film grain on dark sections only (was body::before; scoped here so light sections stay clean) */
html[data-grain="on"] .iwa-dark {
  position: relative;
}
html[data-grain="on"] .iwa-dark::before {
  content: "";
  position: absolute; inset: 0;
  pointer-events: none; z-index: 0;
  opacity: 0.045;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.6 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  mix-blend-mode: overlay;
}
html[data-grain="on"] .iwa-dark > * {
  position: relative; z-index: 1;
}

/* Legacy body grain — disabled in favour of per-section dark grain above */
html[data-grain="on"] body::before {
  content: none;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

/* ============================== TYPOGRAPHY ============================== */
.iwa-app { font-size: 16px; line-height: 1.55; letter-spacing: -0.005em; }
em { font-style: italic; font-family: var(--iwa-display); font-weight: 400; }

/* ============================== BUTTONS ============================== */
.iwa-btn {
  --pad-y: 14px; --pad-x: 22px;
  display: inline-flex; align-items: center; gap: 10px;
  padding: var(--pad-y) var(--pad-x);
  border-radius: 999px;
  font-weight: 500; font-size: 14.5px; letter-spacing: -0.005em;
  border: 1px solid transparent;
  transition: transform .25s cubic-bezier(.2,.7,.2,1), background .25s, border-color .25s, color .25s;
  white-space: nowrap;
  position: relative; overflow: hidden;
}
.iwa-btn--sm { --pad-y: 10px; --pad-x: 16px; font-size: 13.5px; }
.iwa-btn--lg { --pad-y: 18px; --pad-x: 28px; font-size: 15.5px; }
.iwa-btn--primary {
  background: var(--iwa-fg); color: #0b0b0c;
}
.iwa-btn--primary:hover { transform: translateY(-1px); background: #fff; }
.iwa-btn--ghost {
  background: rgba(255,255,255,0.04);
  color: var(--iwa-fg);
  border-color: var(--iwa-line-2);
  backdrop-filter: blur(10px);
}
.iwa-btn--ghost:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.22); }
.iwa-btn--ghost-light {
  background: transparent; color: var(--iwa-fg);
  border-color: var(--iwa-line-2);
}
.iwa-btn--ghost-light:hover { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.22); transform: translateY(-1px); }

.iwa-btn__play {
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: inline-flex; align-items: center; justify-content: center;
  margin-right: 2px;
}

.iwa-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 500; font-size: 14px;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: gap .2s;
}
.iwa-link:hover { gap: 10px; }
.iwa-link--muted { color: var(--iwa-fg-mute); border-color: var(--iwa-line-2); }

/* ============================== NAV ============================== */
.iwa-nav {
  position: sticky; top: 0; z-index: 80;
  padding: 18px 28px;
  transition: background .35s, backdrop-filter .35s, border-color .35s, padding .35s;
  border-bottom: 1px solid transparent;
}
.iwa-nav.is-scrolled {
  background: rgba(10,10,11,0.72);
  backdrop-filter: saturate(140%) blur(16px);
  border-bottom-color: var(--iwa-line);
  padding: 12px 28px;
}
.iwa-nav__inner {
  max-width: 1320px; margin: 0 auto;
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 28px;
}
.iwa-logo {
  display: inline-flex; align-items: center; gap: 12px;
  letter-spacing: 0.18em; font-size: 12.5px; font-weight: 600;
}
.iwa-logo__mark {
  width: 32px; height: 32px; border-radius: 9px;
  background: linear-gradient(140deg, #1c1c1f, #0d0d0e);
  border: 1px solid var(--iwa-line-2);
  display: inline-flex; align-items: center; justify-content: center;
  position: relative;
}
.iwa-logo__mark::after {
  content: ""; position: absolute; inset: 0; border-radius: 9px;
  background: radial-gradient(60% 100% at 50% 0%, var(--iwa-accent), transparent 60%);
  opacity: 0.5;
}
.iwa-logo__bar {
  width: 14px; height: 14px; border-radius: 4px;
  background: linear-gradient(140deg, var(--iwa-accent), #f0d9a8);
  position: relative; z-index: 1;
}
.iwa-logo__type { display: inline-flex; align-items: baseline; gap: 4px; }
.iwa-logo__type em {
  font-family: var(--iwa-display); font-style: italic; font-weight: 400;
  font-size: 14px; letter-spacing: 0.02em;
  color: var(--iwa-accent); text-transform: lowercase;
}
.iwa-logo--lg { font-size: 14px; }
.iwa-logo--lg .iwa-logo__mark { width: 38px; height: 38px; }
.iwa-logo--lg .iwa-logo__type em { font-size: 17px; }

.iwa-nav__links { display: flex; justify-content: center; gap: 28px; }
.iwa-nav__links a {
  font-size: 14px; color: var(--iwa-fg-mute);
  transition: color .2s;
  position: relative;
}
.iwa-nav__links a:hover { color: var(--iwa-fg); }
.iwa-nav__cta { display: inline-flex; gap: 10px; align-items: center; }
.iwa-nav__menu {
  display: none; width: 40px; height: 40px; border-radius: 10px;
  border: 1px solid var(--iwa-line-2);
}

.iwa-nav__sheet {
  position: absolute; left: 14px; right: 14px; top: 100%;
  background: rgba(15,15,17,0.96);
  backdrop-filter: blur(20px);
  border: 1px solid var(--iwa-line);
  border-radius: 18px;
  padding: 18px;
  display: flex; flex-direction: column; gap: 10px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.iwa-nav__sheet a:not(.iwa-btn) {
  padding: 10px 4px; border-bottom: 1px solid var(--iwa-line);
  font-size: 16px;
}
.iwa-nav__sheet .iwa-btn { justify-content: center; }

@media (max-width: 920px) {
  .iwa-nav__links, .iwa-nav__cta { display: none; }
  .iwa-nav__menu { display: inline-flex; align-items: center; justify-content: center; }
  .iwa-nav__inner { grid-template-columns: auto auto; }
}

/* ============================== HERO ============================== */
.iwa-hero {
  position: relative;
  padding: calc(40px * var(--iwa-density)) 28px 0;
  overflow: hidden;
}
.iwa-hero__bg { position: absolute; inset: 0; pointer-events: none; }
.iwa-hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 30%, transparent 75%);
}
.iwa-hero__glow { position: absolute; inset: -10%; }
.iwa-hero__inner {
  position: relative;
  max-width: 1320px; margin: 0 auto;
  display: grid; grid-template-columns: 1.15fr 1fr;
  gap: 60px;
  padding: calc(60px * var(--iwa-density)) 0 calc(80px * var(--iwa-density));
  align-items: center;
}
.iwa-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--iwa-fg-mute);
  padding: 8px 14px; border: 1px solid var(--iwa-line); border-radius: 999px;
  background: rgba(255,255,255,0.02);
}
.iwa-eyebrow__dot {
  width: 6px; height: 6px; border-radius: 50%;
  box-shadow: 0 0 12px currentColor;
}

.iwa-hero__title {
  font-family: var(--iwa-display);
  font-weight: 400;
  font-size: clamp(48px, 7.4vw, 110px);
  line-height: 0.96;
  letter-spacing: -0.025em;
  margin: 28px 0 0;
  text-wrap: balance;
}
.iwa-hero__title em {
  font-family: var(--iwa-display);
  font-style: italic;
  color: var(--iwa-fg-mute);
}
.iwa-hero__title-em { display: inline-block; margin: 0 6px; opacity: 0.85; }
.iwa-hero__title--hook {
  font-size: clamp(40px, 5.8vw, 84px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-top: 22px;
}

.iwa-hero__sub {
  margin: 28px 0 0;
  max-width: 520px;
  color: var(--iwa-fg-mute);
  font-size: 18px; line-height: 1.55;
  text-wrap: pretty;
}

.iwa-hero__cta {
  margin-top: 38px;
  display: flex; gap: 12px; flex-wrap: wrap;
}

.iwa-hero__meta {
  margin-top: 56px;
  display: grid; grid-template-columns: repeat(3, auto);
  gap: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--iwa-line);
  max-width: 560px;
}
.iwa-hero__meta-num {
  font-family: var(--iwa-display);
  font-size: 44px; line-height: 1;
  color: var(--iwa-fg);
  letter-spacing: -0.02em;
}
.iwa-hero__meta-num span {
  font-family: var(--iwa-sans); font-size: 18px;
  vertical-align: top; margin-left: 2px;
  color: var(--iwa-accent);
}
.iwa-hero__meta-lbl {
  margin-top: 8px;
  color: var(--iwa-fg-soft); font-size: 12.5px;
  letter-spacing: 0.04em; line-height: 1.4;
}

.iwa-hero__visual { display: flex; justify-content: flex-end; }

/* portrait */
.iwa-portrait {
  position: relative;
  width: 100%; max-width: 480px;
}
.iwa-portrait__frame {
  position: relative;
  aspect-ratio: 4/5.2;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--iwa-line-2);
  background: var(--iwa-card);
  box-shadow:
    0 30px 80px rgba(0,0,0,0.55),
    inset 0 0 0 1px rgba(255,255,255,0.03);
}
.iwa-portrait__img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 18%;
  filter: contrast(1.04) brightness(0.96);
}
.iwa-portrait__tint {
  position: absolute; inset: 0; pointer-events: none;
}
.iwa-portrait__caption {
  position: absolute; left: -28px; top: 32px;
  background: rgba(15,15,17,0.85); backdrop-filter: blur(14px);
  border: 1px solid var(--iwa-line-2);
  padding: 14px 16px; border-radius: 14px;
  font-size: 12px; line-height: 1.4;
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
  max-width: 220px;
}
.iwa-portrait__caption-key {
  font-family: var(--iwa-display); font-size: 18px; letter-spacing: -0.01em;
}
.iwa-portrait__caption-val { color: var(--iwa-fg-soft); margin-top: 2px; }
.iwa-portrait__badge {
  position: absolute; right: -14px; bottom: 36px;
  background: rgba(15,15,17,0.85); backdrop-filter: blur(14px);
  border: 1px solid var(--iwa-line-2);
  padding: 10px 14px 10px 12px; border-radius: 999px;
  font-size: 12.5px;
  display: inline-flex; align-items: center; gap: 8px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}
.iwa-pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: #74e0a8;
  box-shadow: 0 0 0 0 rgba(116,224,168,0.7);
  animation: iwa-pulse 1.8s infinite;
}
@keyframes iwa-pulse {
  70% { box-shadow: 0 0 0 12px rgba(116,224,168,0); }
  100% { box-shadow: 0 0 0 0 rgba(116,224,168,0); }
}

@media (max-width: 980px) {
  .iwa-hero__inner { grid-template-columns: 1fr; gap: 40px; padding: 32px 0 60px; }
  .iwa-hero__visual { justify-content: center; }
  .iwa-hero__meta { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .iwa-hero__meta-num { font-size: 32px; }
}

/* marquee */
.iwa-marquee {
  position: relative;
  border-top: 1px solid var(--iwa-line);
  border-bottom: 1px solid var(--iwa-line);
  overflow: hidden;
  padding: 18px 0;
  background: rgba(255,255,255,0.015);
}
.iwa-marquee__track {
  display: inline-flex; gap: 56px;
  white-space: nowrap;
  animation: iwa-marquee 38s linear infinite;
}
.iwa-marquee__item {
  display: inline-flex; align-items: center; gap: 14px;
  color: var(--iwa-fg-mute); font-size: 13px; letter-spacing: 0.04em;
}
.iwa-marquee__dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--iwa-accent);
}
@keyframes iwa-marquee {
  to { transform: translateX(-50%); }
}

/* ============================== SHARED SECTION ============================== */
.iwa-section__head {
  max-width: 1320px; margin: 0 auto;
  padding: 0 28px;
}
.iwa-section__head--row {
  display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: end;
}
.iwa-section__kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11.5px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--iwa-fg-soft);
}
.iwa-section__kicker > span:first-child {
  width: 18px; height: 1px; display: inline-block;
}
.iwa-section__title {
  font-family: var(--iwa-display); font-weight: 400;
  font-size: clamp(36px, 4.4vw, 64px);
  line-height: 1.02; letter-spacing: -0.02em;
  margin: 18px 0 0; text-wrap: balance;
}
.iwa-section__title em { color: var(--iwa-fg-mute); }
.iwa-section__lede {
  max-width: 380px; color: var(--iwa-fg-mute);
  font-size: 16px; line-height: 1.6; margin: 0;
}

@media (max-width: 760px) {
  .iwa-section__head--row { grid-template-columns: 1fr; }
}

/* ============================== TRUST ============================== */
.iwa-trust {
  padding: calc(120px * var(--iwa-density)) 0 calc(60px * var(--iwa-density));
}
.iwa-trust__grid {
  max-width: 1320px; margin: 56px auto 0;
  padding: 0 28px;
  display: grid; grid-template-columns: repeat(5, 1fr);
  border: 1px solid var(--iwa-line); border-radius: var(--iwa-radius);
  background: linear-gradient(180deg, rgba(255,255,255,0.02), transparent);
  overflow: hidden;
  padding: 0;
}
.iwa-trust__grid {
  margin-left: auto;
  margin-right: auto;
}
.iwa-trust__card {
  padding: 36px 28px;
  border-right: 1px solid var(--iwa-line);
  position: relative;
  transition: background .3s;
}
.iwa-trust__card:last-child { border-right: 0; }
.iwa-trust__card:hover { background: rgba(255,255,255,0.025); }
.iwa-trust__icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--iwa-line);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.iwa-trust__title {
  font-size: 16px; font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.iwa-trust__body {
  font-size: 13.5px; line-height: 1.55;
  color: var(--iwa-fg-mute);
}

@media (max-width: 1024px) {
  .iwa-trust__grid { grid-template-columns: repeat(2, 1fr); }
  .iwa-trust__card { border-right: 1px solid var(--iwa-line); border-bottom: 1px solid var(--iwa-line); }
  .iwa-trust__card:nth-child(2n) { border-right: 0; }
  .iwa-trust__card:nth-last-child(-n+2) { border-bottom: 0; }
}
@media (max-width: 600px) {
  .iwa-trust__grid { grid-template-columns: 1fr; }
  .iwa-trust__card { border-right: 0 !important; }
  .iwa-trust__card:not(:last-child) { border-bottom: 1px solid var(--iwa-line); }
}

/* ============================== ABOUT ============================== */

/* ============================== INTERLUDE (cream) ============================== */
.iwa-interlude {
  background: #f5f0e8;
  color: #1f1a13;
  padding: calc(120px * var(--iwa-density)) 28px;
  position: relative;
  overflow: hidden;
}
.iwa-interlude::before,
.iwa-interlude::after {
  content: "";
  position: absolute; left: 0; right: 0;
  height: 60px; pointer-events: none;
}
.iwa-interlude::before { top: 0;    background: linear-gradient(180deg, rgba(10,10,11,0.10), transparent); }
.iwa-interlude::after  { bottom: 0; background: linear-gradient(0deg,   rgba(10,10,11,0.10), transparent); }
.iwa-interlude__inner {
  position: relative;
  max-width: 1320px; margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 96px; align-items: center;
}
.iwa-interlude__media {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 24px;
  overflow: hidden;
  box-shadow:
    0 30px 70px rgba(50, 35, 15, 0.18),
    0 6px 16px rgba(50, 35, 15, 0.10);
}
.iwa-interlude__media image-slot {
  display: block;
  width: 100%; height: 100%;
}
.iwa-interlude__kicker {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 11.5px; letter-spacing: 0.22em; text-transform: uppercase;
  color: #7a6a52;
  font-weight: 500;
}
.iwa-interlude__kicker > span:first-child {
  width: 22px; height: 1px; display: inline-block;
}
.iwa-interlude__title {
  font-family: var(--iwa-display); font-weight: 400;
  font-size: clamp(40px, 5.2vw, 68px);
  line-height: 1; letter-spacing: -0.025em;
  margin: 26px 0 0; color: #1f1a13;
  text-wrap: balance;
  max-width: 540px;
}
.iwa-interlude__title em {
  font-style: italic;
  color: #b08838;
  font-family: var(--iwa-display);
}
.iwa-interlude__body {
  margin-top: 28px; max-width: 480px;
  font-size: 18px; line-height: 1.6;
  color: #5a4f3e;
  text-wrap: pretty;
}
.iwa-interlude__grid {
  margin-top: 48px;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid rgba(31, 26, 19, 0.12);
}
.iwa-interlude__stat-num {
  font-family: var(--iwa-display); font-weight: 400;
  font-size: 44px; line-height: 1;
  color: #1f1a13; letter-spacing: -0.02em;
}
.iwa-interlude__stat-num span {
  font-size: 22px; color: #7a6a52; margin-left: 4px;
}
.iwa-interlude__stat-lbl {
  margin-top: 8px;
  font-size: 12.5px; line-height: 1.45;
  color: #6b5e48;
}
@media (max-width: 980px) {
  .iwa-interlude__inner { grid-template-columns: 1fr; gap: 56px; }
  .iwa-interlude__media { max-width: 560px; }
  .iwa-interlude__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .iwa-interlude__grid { grid-template-columns: 1fr; gap: 18px; }
}

.iwa-about {
  padding: calc(120px * var(--iwa-density)) 28px;
  position: relative;
}
.iwa-about__inner {
  max-width: 1320px; margin: 0 auto;
  display: grid; grid-template-columns: 0.95fr 1.05fr;
  gap: 80px; align-items: center;
}
.iwa-about__visual { position: relative; }
.iwa-about__photo {
  position: relative;
  aspect-ratio: 4/5;
  max-width: 520px;
}
.iwa-about__photo-frame {
  position: relative;
  width: 100%; height: 100%;
  border: 1px solid var(--iwa-line-2);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.55);
}
.iwa-about__photo-frame svg { width: 100%; height: 100%; }
.iwa-about__photo-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 22%;
  filter: contrast(1.04) brightness(0.96);
}
.iwa-about__sig {
  position: absolute; right: -20px; bottom: -30px;
  display: flex; align-items: center; gap: 14px;
  background: rgba(15,15,17,0.88);
  backdrop-filter: blur(12px);
  border: 1px solid var(--iwa-line-2);
  border-radius: 14px;
  padding: 14px 20px;
  font-family: var(--iwa-display);
  font-size: 17px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}
.iwa-about__sig span { color: var(--iwa-fg); }
.iwa-about__sig-mark {
  width: 168px;
  height: 42px;
  -webkit-mask-image: url("amit-signature.png");
  mask-image: url("amit-signature.png");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  background-color: currentColor;
  flex: 0 0 auto;
  opacity: 0.95;
}
.iwa-about__copy { max-width: 580px; }
.iwa-about__lede {
  margin-top: 28px;
  font-family: var(--iwa-display); font-size: 24px; line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--iwa-fg);
  text-wrap: pretty;
}
.iwa-about__body {
  margin-top: 22px; color: var(--iwa-fg-mute);
  font-size: 16px; line-height: 1.65;
  text-wrap: pretty;
}
.iwa-about__list {
  list-style: none; padding: 0; margin: 32px 0 0;
  display: grid; gap: 14px;
}
.iwa-about__list li {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 14px 16px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--iwa-line);
  border-radius: 12px;
  font-size: 14.5px;
}
.iwa-about__list li > span:first-child {
  margin-top: 2px;
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(214,180,120,0.12);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.iwa-about__cta { margin-top: 32px; }

@media (max-width: 980px) {
  .iwa-about__inner { grid-template-columns: 1fr; gap: 60px; }
  .iwa-about__photo { max-width: 100%; aspect-ratio: 4/4; }
}

/* ============================== SERVICES ============================== */
.iwa-services {
  padding: calc(120px * var(--iwa-density)) 0;
  background:
    linear-gradient(180deg, transparent, rgba(255,255,255,0.015) 50%, transparent);
}
.iwa-services__layout {
  max-width: 1320px; margin: 56px auto 0;
  padding: 0 28px;
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 40px;
}
.iwa-services__list {
  list-style: none; padding: 0; margin: 0;
  border-top: 1px solid var(--iwa-line);
}
.iwa-services__row {
  width: 100%;
  display: grid; grid-template-columns: 36px 1fr auto;
  align-items: center; gap: 16px;
  padding: 28px 4px;
  border-bottom: 1px solid var(--iwa-line);
  text-align: left;
  transition: padding .3s, background .3s;
  position: relative;
}
.iwa-services__row::before {
  content: ""; position: absolute; left: -28px; top: 0; bottom: 0;
  width: 2px; background: var(--iwa-accent);
  transform: scaleY(0); transform-origin: center;
  transition: transform .35s cubic-bezier(.2,.7,.2,1);
}
.iwa-services__row.is-active::before { transform: scaleY(1); }
.iwa-services__row.is-active { padding-left: 16px; }
.iwa-services__row-icon {
  color: var(--iwa-fg-soft);
  transition: color .25s;
}
.iwa-services__row-title {
  font-family: var(--iwa-display);
  font-size: clamp(26px, 2.6vw, 38px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--iwa-fg);
}
.iwa-services__row.is-active .iwa-services__row-title { color: var(--iwa-fg); }
.iwa-services__row:not(.is-active) .iwa-services__row-title { color: var(--iwa-fg-mute); }
.iwa-services__row-arrow {
  color: var(--iwa-fg-soft);
  transition: transform .25s, color .25s;
}
.iwa-services__row.is-active .iwa-services__row-arrow { color: var(--iwa-fg); transform: translate(2px, -2px); }

.iwa-services__panel {
  position: relative;
  border: 1px solid var(--iwa-line-2);
  border-radius: 22px;
  padding: 40px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  overflow: hidden;
  min-height: 460px;
  display: flex; flex-direction: column;
  animation: iwa-fade .5s cubic-bezier(.2,.7,.2,1);
}
@keyframes iwa-fade {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.iwa-services__panel-bg { position: absolute; inset: 0; pointer-events: none; }
.iwa-services__panel-icon {
  width: 56px; height: 56px; border-radius: 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--iwa-line-2);
  display: inline-flex; align-items: center; justify-content: center;
  position: relative; z-index: 1;
}
.iwa-services__panel-num {
  position: absolute; right: 32px; top: 32px;
  font-family: var(--iwa-display); font-size: 28px;
  color: var(--iwa-fg-soft); letter-spacing: -0.01em;
}
.iwa-services__panel-num span { color: var(--iwa-fg-soft); opacity: 0.5; font-size: 18px; }

.iwa-services__panel-img {
  position: relative; z-index: 1;
  margin-top: 24px;
  aspect-ratio: 16/9;
  border-radius: 14px; overflow: hidden;
  border: 1px solid var(--iwa-line);
  box-shadow: 0 20px 48px rgba(0,0,0,0.35);
}
.iwa-services__panel-img image-slot {
  display: block; width: 100%; height: 100%;
}
.iwa-services__panel-photo {
  display: block; width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  filter: contrast(1.02) saturate(1.02);
}
.iwa-services__panel-title {
  font-family: var(--iwa-display); font-weight: 400;
  font-size: clamp(32px, 3vw, 44px);
  letter-spacing: -0.02em;
  margin: 28px 0 16px;
  position: relative; z-index: 1;
}
.iwa-services__panel-blurb {
  color: var(--iwa-fg-mute); font-size: 16px; line-height: 1.6;
  margin: 0; max-width: 520px;
  position: relative; z-index: 1;
}
.iwa-services__chips {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin: 28px 0;
  position: relative; z-index: 1;
}
.iwa-chip {
  font-size: 12.5px; letter-spacing: 0.02em;
  padding: 7px 12px; border: 1px solid var(--iwa-line-2); border-radius: 999px;
  background: rgba(255,255,255,0.03);
  color: var(--iwa-fg-mute);
}
.iwa-services__panel .iwa-btn {
  align-self: flex-start; margin-top: auto;
  position: relative; z-index: 1;
}

@media (max-width: 900px) {
  .iwa-services__layout { grid-template-columns: 1fr; gap: 32px; }
  .iwa-services__panel { min-height: 0; }
}

/* ============================== INSIGHTS ============================== */
.iwa-insights {
  padding: calc(120px * var(--iwa-density)) 0;
}
.iwa-insights__grid {
  max-width: 1320px; margin: 56px auto 0;
  padding: 0 28px;
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: 40px;
}
.iwa-insights__feature {
  border: 1px solid var(--iwa-line);
  border-radius: 22px;
  overflow: hidden;
  padding: 0 0 32px;
  display: flex; flex-direction: column;
  background: rgba(255,255,255,0.015);
  transition: transform .3s, border-color .3s;
}
.iwa-insights__feature:hover { transform: translateY(-2px); border-color: var(--iwa-line-2); }
.iwa-insights__feat-img {
  position: relative; aspect-ratio: 16/9;
  border-bottom: 1px solid var(--iwa-line);
  background: var(--iwa-card);
  overflow: hidden;
}
.iwa-insights__feat-img svg { width: 100%; height: 100%; }
.iwa-insights__feat-img-photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 60%;
  display: block;
  filter: contrast(1.02) saturate(0.96);
}
.iwa-insights__feat-img-tag {
  position: absolute; left: 14px; top: 14px;
  z-index: 2;
  font-family: var(--iwa-mono); font-size: 10px; letter-spacing: 0.15em;
  color: rgba(255,255,255,0.85);
  background: rgba(0,0,0,0.5); padding: 5px 9px; border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(6px);
}
.iwa-insights__feat-meta, .iwa-insights__item-meta {
  padding: 24px 28px 0;
  display: flex; align-items: center; gap: 14px;
  font-size: 12px; color: var(--iwa-fg-soft); letter-spacing: 0.04em;
  text-transform: uppercase;
}
.iwa-tag {
  border: 1px solid; padding: 4px 10px; border-radius: 999px;
  font-size: 10.5px; letter-spacing: 0.18em;
}
.iwa-insights__feat-title {
  margin: 18px 28px 12px;
  font-family: var(--iwa-display); font-weight: 400;
  font-size: clamp(28px, 2.6vw, 36px);
  line-height: 1.1; letter-spacing: -0.015em;
  text-wrap: balance;
}
.iwa-insights__feat-excerpt {
  margin: 0 28px 18px;
  color: var(--iwa-fg-mute); font-size: 15.5px; line-height: 1.6;
}
.iwa-insights__feature .iwa-link { margin: 0 28px; align-self: flex-start; }

.iwa-insights__list { display: grid; gap: 0; }
.iwa-insights__item {
  position: relative;
  padding: 24px 0;
  border-bottom: 1px solid var(--iwa-line);
  display: grid; grid-template-columns: 1fr auto;
  gap: 12px 20px;
  cursor: pointer;
  transition: padding .25s;
}
.iwa-insights__item:first-child { padding-top: 0; }
.iwa-insights__item:last-child { border-bottom: 0; }
.iwa-insights__item:hover { padding-left: 8px; }
a.iwa-insights__item { color: inherit; text-decoration: none; cursor: pointer; }
.iwa-insights__item--soon { opacity: 0.72; }
.iwa-insights__item--soon:hover { padding-left: 0; }
.iwa-insights__item-meta { padding: 0; grid-column: 1 / -1; }
.iwa-insights__item-title {
  font-family: var(--iwa-display); font-weight: 400;
  font-size: 22px; line-height: 1.2; letter-spacing: -0.01em;
  margin: 0; grid-column: 1;
  text-wrap: balance;
}
.iwa-insights__item-excerpt {
  margin: 0; color: var(--iwa-fg-soft);
  font-size: 13.5px; line-height: 1.55;
  grid-column: 1 / -1;
}
.iwa-insights__item-cta {
  grid-row: 2; grid-column: 2;
  align-self: start;
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--iwa-line-2);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--iwa-fg-mute);
  transition: background .25s, color .25s, transform .25s;
}
.iwa-insights__item:hover .iwa-insights__item-cta {
  background: var(--iwa-accent); color: #0a0a0b;
  transform: rotate(-45deg);
  border-color: var(--iwa-accent);
}

.iwa-insights__socials {
  display: flex; flex-direction: column; gap: 8px;
  align-items: stretch;
  min-width: 240px;
}
.iwa-social-pill {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 10px 16px 10px 12px;
  border: 1px solid var(--iwa-line); border-radius: 999px;
  background: rgba(255,255,255,0.025);
  color: var(--iwa-fg-mute);
  font-size: 13.5px; letter-spacing: -0.005em;
  transition: background .25s, border-color .25s, color .25s, transform .25s;
}
.iwa-social-pill:hover {
  background: rgba(255,255,255,0.05);
  border-color: var(--iwa-line-2);
  color: var(--iwa-fg);
  transform: translateX(2px);
}
.iwa-social-pill__icon {
  width: 28px; height: 28px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(214,180,120,0.10);
}
.iwa-social-pill__handle { font-weight: 500; }

@media (max-width: 760px) {
  .iwa-insights__socials { flex-direction: row; flex-wrap: wrap; min-width: 0; }
}

@media (max-width: 980px) {
  .iwa-insights__grid { grid-template-columns: 1fr; }
}

/* ============================== REVIEWS ============================== */
.iwa-reviews {
  padding: calc(120px * var(--iwa-density)) 28px;
}
.iwa-reviews__stage {
  max-width: 980px; margin: 56px auto 0;
  position: relative;
  border: 1px solid var(--iwa-line);
  border-radius: 22px;
  padding: 56px 56px 40px;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), transparent);
  min-height: 320px;
}
.iwa-reviews__quote-ic {
  position: absolute; left: 36px; top: 28px;
  opacity: 0.6;
}
.iwa-reviews__viewport {
  position: relative;
  display: grid;
  /* All slides share one cell so the viewport sizes to the tallest review */
}
.iwa-reviews__slide {
  grid-area: 1 / 1;
  margin: 0; padding: 0;
  opacity: 0; pointer-events: none; visibility: hidden;
  transform: translateY(8px);
  transition: opacity .6s, transform .6s, visibility 0s linear .6s;
}
.iwa-reviews__slide.is-active { opacity: 1; pointer-events: auto; visibility: visible; transform: translateY(0); transition: opacity .6s, transform .6s, visibility 0s; }
.iwa-reviews__slide p {
  font-family: var(--iwa-display); font-weight: 400;
  font-size: clamp(22px, 2.4vw, 32px); line-height: 1.35;
  letter-spacing: -0.01em;
  margin: 0 0 32px;
  color: var(--iwa-fg);
  text-wrap: pretty;
}
.iwa-reviews__slide footer {
  display: flex; align-items: center; gap: 14px;
}
.iwa-reviews__avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(140deg, #2a2a2d, #131316);
  border: 1px solid var(--iwa-line-2);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 600; color: var(--iwa-fg-mute);
  letter-spacing: 0.06em;
}
.iwa-reviews__name { font-size: 14.5px; }
.iwa-reviews__role { font-size: 12.5px; color: var(--iwa-fg-soft); }
.iwa-reviews__dots {
  display: flex; gap: 8px; margin-top: 24px;
}
.iwa-reviews__dots button {
  width: 22px; height: 4px; border-radius: 999px;
  background: var(--iwa-line-2); transition: background .3s, width .3s;
}
.iwa-reviews__dots button.is-active { width: 32px; }

.iwa-reviews__rating {
  max-width: 980px; margin: 28px auto 0;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  color: var(--iwa-fg-mute); font-size: 13.5px;
  flex-wrap: wrap;
}
.iwa-reviews__stars {
  display: inline-flex; gap: 3px; margin-right: 10px; vertical-align: -3px;
}

@media (max-width: 700px) {
  .iwa-reviews__stage { padding: 40px 28px 28px; }
  .iwa-reviews__quote-ic { left: 22px; top: 18px; }
}

/* ============================== FINAL CTA ============================== */
.iwa-final {
  position: relative;
  padding: calc(140px * var(--iwa-density)) 28px;
  text-align: center;
  overflow: hidden;
  border-top: 1px solid var(--iwa-line);
}
.iwa-final__bg { position: absolute; inset: 0; pointer-events: none; }
.iwa-final__inner { position: relative; max-width: 920px; margin: 0 auto; }
.iwa-final__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11.5px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--iwa-fg-soft);
}
.iwa-final__eyebrow > span:first-child {
  width: 6px; height: 6px; border-radius: 50%;
}
.iwa-final__title {
  font-family: var(--iwa-display); font-weight: 400;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.98; letter-spacing: -0.025em;
  margin: 22px 0 0;
  text-wrap: balance;
}
.iwa-final__title em { font-family: var(--iwa-display); font-style: italic; color: var(--iwa-accent); }
.iwa-final__sub {
  margin: 28px auto 0; max-width: 540px;
  font-size: 17px; color: var(--iwa-fg-mute); line-height: 1.6;
}
.iwa-final__cta {
  margin: 38px 0 56px;
  display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center;
}
.iwa-final__contact {
  display: grid; grid-template-columns: repeat(3, auto); gap: 40px;
  justify-content: center;
  padding-top: 32px; border-top: 1px solid var(--iwa-line);
  font-size: 14.5px;
}
.iwa-final__contact div span {
  display: block; color: var(--iwa-fg-soft);
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 6px;
}

@media (max-width: 600px) {
  .iwa-final__contact { grid-template-columns: 1fr; gap: 18px; }
}

/* ============================== FOOTER ============================== */
.iwa-foot {
  background: var(--iwa-bg-2);
  border-top: 1px solid var(--iwa-line);
  padding: 64px 28px 24px;
}
.iwa-foot__top {
  max-width: 1320px; margin: 0 auto;
  display: grid; grid-template-columns: 1.2fr 2fr; gap: 60px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--iwa-line);
}
.iwa-foot__brand p {
  margin: 22px 0; max-width: 320px;
  color: var(--iwa-fg-mute); font-size: 14px; line-height: 1.6;
}
.iwa-foot__social { display: flex; gap: 8px; }
.iwa-foot__social a {
  width: 38px; height: 38px; border-radius: 10px;
  border: 1px solid var(--iwa-line-2);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--iwa-fg-mute); transition: color .25s, border-color .25s, background .25s;
}
.iwa-foot__social a:hover { color: var(--iwa-fg); border-color: rgba(255,255,255,0.25); background: rgba(255,255,255,0.04); }

.iwa-foot__cols {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px;
}
.iwa-foot__cols h5 {
  margin: 0 0 16px; font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--iwa-fg-soft); font-weight: 600;
}
.iwa-foot__cols ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; font-size: 14px; }
.iwa-foot__cols a { color: var(--iwa-fg-mute); transition: color .2s; }
.iwa-foot__cols a:hover { color: var(--iwa-fg); }
.iwa-foot__contact li { display: flex; align-items: center; gap: 10px; color: var(--iwa-fg-mute); }

.iwa-foot__bottom {
  max-width: 1320px; margin: 28px auto 0;
  display: grid; grid-template-columns: 1.6fr 1fr; gap: 36px; align-items: end;
}
.iwa-foot__compliance {
  font-size: 12px; line-height: 1.6; color: var(--iwa-fg-soft);
  max-width: 720px;
}
.iwa-foot__compliance strong { color: var(--iwa-fg-mute); font-weight: 600; }
.iwa-foot__legal {
  display: flex; gap: 18px; justify-content: flex-end; flex-wrap: wrap;
  font-size: 12px; color: var(--iwa-fg-soft);
}
.iwa-foot__legal a:hover { color: var(--iwa-fg-mute); }

@media (max-width: 900px) {
  .iwa-foot__top { grid-template-columns: 1fr; gap: 40px; }
  .iwa-foot__cols { grid-template-columns: repeat(2, 1fr); }
  .iwa-foot__bottom { grid-template-columns: 1fr; }
  .iwa-foot__legal { justify-content: flex-start; }
}
@media (max-width: 480px) {
  .iwa-foot__cols { grid-template-columns: 1fr; }
}


/* ============================== LIGHT SECTIONS ============================== */
/* Warm cream palette flips: every dark section is followed by a light one.
   Variables are re-scoped so descendants automatically pick up light-mode colors. */
.iwa-light {
  --iwa-bg:        #f0ece4;
  --iwa-bg-2:      #e8e2d4;
  --iwa-card:      #faf7f0;
  --iwa-card-2:    #f0ece4;
  --iwa-line:      rgba(31, 23, 16, 0.10);
  --iwa-line-2:    rgba(31, 23, 16, 0.22);
  --iwa-fg:        #1a1710;
  --iwa-fg-mute:   #5a4f3e;
  --iwa-fg-soft:   #847761;

  background: var(--iwa-bg);
  color: var(--iwa-fg);
  position: relative;
  isolation: isolate;
}

/* Section heading inside a light section */
.iwa-light .iwa-section__title { color: var(--iwa-fg); }
.iwa-light .iwa-section__title em {
  color: #b08838;
  font-style: italic;
  font-family: var(--iwa-display);
}

/* Buttons re-tinted */
.iwa-light .iwa-btn--primary { background: #1a1710; color: #f5f0e8; }
.iwa-light .iwa-btn--primary:hover { background: #000; color: #fff; }
.iwa-light .iwa-btn--ghost {
  background: rgba(31, 23, 16, 0.04);
  color: var(--iwa-fg);
  border-color: var(--iwa-line-2);
  backdrop-filter: none;
}
.iwa-light .iwa-btn--ghost:hover {
  background: rgba(31, 23, 16, 0.07);
  border-color: rgba(31, 23, 16, 0.32);
}
.iwa-light .iwa-btn--ghost-light {
  color: var(--iwa-fg);
  border-color: var(--iwa-line-2);
}
.iwa-light .iwa-btn--ghost-light:hover {
  background: rgba(31, 23, 16, 0.04);
  border-color: rgba(31, 23, 16, 0.32);
}
.iwa-light .iwa-btn__play { background: rgba(31, 23, 16, 0.08); }

/* Links + inline-link styles */
.iwa-light .iwa-link--muted { color: var(--iwa-fg-mute); border-color: var(--iwa-line-2); }

/* Tags, chips */
.iwa-light .iwa-tag { background: rgba(255, 253, 247, 0.6); }
.iwa-light .iwa-chip {
  background: rgba(255, 253, 247, 0.65);
  border-color: var(--iwa-line);
  color: var(--iwa-fg-mute);
}

/* ABOUT in light mode */
.iwa-light .iwa-about__photo-frame {
  border: 1px solid rgba(31, 23, 16, 0.08);
  box-shadow:
    0 30px 70px rgba(50, 35, 15, 0.18),
    0 6px 16px rgba(50, 35, 15, 0.10);
}
.iwa-light .iwa-about__list li {
  background: rgba(255, 253, 247, 0.7);
  border: 1px solid var(--iwa-line);
  color: var(--iwa-fg-mute);
}
.iwa-light .iwa-about__list li > span:first-child {
  background: rgba(31, 23, 16, 0.05);
}
.iwa-light .iwa-about__sig {
  background: #faf7f0;
  border: 1px solid var(--iwa-line);
  box-shadow: 0 12px 32px rgba(50, 35, 15, 0.18);
}
.iwa-light .iwa-about__sig span { color: var(--iwa-fg); }

/* INSIGHTS in light mode */
.iwa-light .iwa-insights__feature {
  background: rgba(255, 253, 247, 0.55);
  border-color: var(--iwa-line);
}
.iwa-light .iwa-insights__feature:hover {
  background: rgba(255, 253, 247, 0.95);
  border-color: var(--iwa-line-2);
}
.iwa-light .iwa-insights__feat-img { border-bottom-color: var(--iwa-line); }
.iwa-light .iwa-insights__item { border-bottom-color: var(--iwa-line); }
.iwa-light .iwa-insights__item-excerpt { color: var(--iwa-fg-soft); }
.iwa-light .iwa-insights__item-cta {
  background: rgba(31, 23, 16, 0.04);
  color: var(--iwa-fg-mute);
  border: 1px solid var(--iwa-line);
}
.iwa-light .iwa-insights__item:hover .iwa-insights__item-cta {
  background: var(--iwa-accent);
  color: #1a1710;
}
.iwa-light .iwa-social-pill {
  background: rgba(255, 253, 247, 0.65);
  border: 1px solid var(--iwa-line);
  color: var(--iwa-fg);
}
.iwa-light .iwa-social-pill:hover {
  background: rgba(255, 253, 247, 1);
  border-color: var(--iwa-line-2);
}

/* FINAL CTA in light mode */
.iwa-light.iwa-final {
  background: var(--iwa-bg);
  border-top: 1px solid var(--iwa-line);
  border-bottom: 1px solid var(--iwa-line);
}
.iwa-light .iwa-final__title em { color: #b08838; }
.iwa-light .iwa-final__contact div span { color: var(--iwa-fg-soft); }

/* Selection color on light */
.iwa-light ::selection { background: rgba(176, 136, 56, 0.28); color: #1a1710; }
