@charset "UTF-8";

:root {
  --ink: #19142a;
  --muted: #625d6c;
  --paper: #fffdf8;
  --cream: #f7f1e7;
  --line: rgba(25, 20, 42, 0.16);
  --fiiz-orange: #f15a2a;
  --fiiz-deep: #171d48;
  --fiiz-blue: #4ebdec;
  --ever-purple: #552387;
  --ever-deep: #351358;
  --ever-aqua: #51d7df;
  --ever-lilac: #b7a6d9;
  --ever-surface: #f5effb;
  --lfo-mint: #78bc9e;
  --lfo-blue: #194a9b;
  --lfo-deep: #132749;
  --lfo-surface: #edf8f2;
  --shadow: 0 24px 70px rgba(30, 20, 50, 0.14);
  --radius-sm: 16px;
  --radius-md: 28px;
  --radius-lg: 44px;
  --wrap: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Aptos, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  font-optical-sizing: auto;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
a, button { touch-action: manipulation; -webkit-tap-highlight-color: rgba(25, 20, 42, 0.14); }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
.wrap { width: var(--wrap); margin-inline: auto; }
[id] { scroll-margin-top: 92px; }
h1, h2, h3 { text-wrap: balance; }
p { text-wrap: pretty; }

.skip-link {
  position: fixed;
  left: 18px;
  top: 14px;
  z-index: 1000;
  padding: 10px 16px;
  color: white;
  background: var(--ink);
  border-radius: 8px;
  transform: translateY(-180%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  padding: 10px max(24px, calc((100vw - 1180px) / 2));
  background: rgba(255, 253, 248, 0.94);
  border-bottom: 1px solid rgba(25, 20, 42, 0.09);
  -webkit-backdrop-filter: blur(15px) saturate(150%);
  backdrop-filter: blur(15px);
}
.site-header nav { display: flex; align-items: center; gap: 27px; }
.site-header nav a {
  font-size: 0.87rem;
  font-weight: 750;
  text-decoration: none;
}
.nav-cta {
  padding: 10px 16px;
  color: white;
  background: var(--ink);
  border-radius: 999px;
}
.mini-mark {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 850;
  letter-spacing: -0.01em;
  text-decoration: none;
}
.mini-mark__dots { display: flex; }
.mini-mark__dots i {
  display: block;
  width: 13px;
  height: 13px;
  margin-right: -3px;
  border: 2px solid white;
  border-radius: 50%;
}
.mini-mark__dots i:nth-child(1) { background: var(--fiiz-orange); }
.mini-mark__dots i:nth-child(2) { background: var(--ever-purple); }
.mini-mark__dots i:nth-child(3) { background: var(--lfo-mint); }

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 104px 0 94px;
  background:
    radial-gradient(circle at 5% 90%, rgba(120,188,158,0.24), transparent 23%),
    radial-gradient(circle at 96% 17%, rgba(241,90,42,0.19), transparent 25%),
    #fbf7ef;
}
.hero__content { position: relative; z-index: 2; }
.eyebrow {
  margin: 0 0 17px;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  line-height: 1.3;
  text-transform: uppercase;
}
.hero h1 {
  max-width: 1010px;
  margin: 0;
  font-family: "Arial Rounded MT Bold", "Trebuchet MS", Aptos, sans-serif;
  font-size: clamp(3.3rem, 7vw, 6.8rem);
  line-height: 0.94;
  letter-spacing: -0.065em;
}
.hero h1 span {
  display: block;
  max-width: 850px;
  margin-top: 23px;
  color: var(--muted);
  font-family: Aptos, "Segoe UI", sans-serif;
  font-size: clamp(1.25rem, 2.6vw, 2.2rem);
  font-weight: 650;
  letter-spacing: -0.035em;
  line-height: 1.12;
}
.hero__lede {
  max-width: 735px;
  margin: 30px 0 0;
  color: #4f495a;
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
}
.hero__actions { display: flex; align-items: center; gap: 27px; margin-top: 38px; }
.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border: 0;
  border-radius: 999px;
  font-weight: 850;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.button:active { transform: scale(0.97); transition-duration: 90ms; }
.button--dark { color: white; background: var(--ink); box-shadow: 0 12px 26px rgba(25,20,42,0.2); }
.text-link, .brand-link, .secondary-link {
  font-weight: 850;
  text-decoration: none;
  text-underline-offset: 5px;
}
.text-link:active, .brand-link:active, .secondary-link:active { opacity: 0.68; }
.brand-key {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  margin: 68px 0 0;
  padding: 0;
  list-style: none;
  color: #494353;
  font-size: 0.86rem;
  font-weight: 750;
}
.brand-key li { display: flex; align-items: center; gap: 8px; }
.brand-dot { width: 10px; height: 10px; border-radius: 50%; }
.brand-dot--fiiz { background: var(--fiiz-orange); }
.brand-dot--everbowl { background: var(--ever-purple); }
.brand-dot--lfo { background: var(--lfo-mint); }
.hero__art { position: absolute; inset: 0; pointer-events: none; }
.orb { position: absolute; border-radius: 50%; box-shadow: inset -25px -25px 45px rgba(25,20,42,0.12); }
.orb--fiiz { top: 9%; right: 12%; width: 105px; height: 105px; background: var(--fiiz-orange); }
.orb--everbowl { right: 4%; bottom: 17%; width: 150px; height: 150px; background: var(--ever-purple); }
.orb--lfo { right: 29%; bottom: 8%; width: 72px; height: 72px; background: var(--lfo-mint); }
.hero__loop {
  position: absolute;
  right: -120px;
  top: 38%;
  width: 540px;
  height: 220px;
  border: 18px solid var(--fiiz-blue);
  border-radius: 50%;
  transform: rotate(-17deg);
  opacity: 0.54;
}

.quick-links { padding: 110px 0 128px; }
.section-heading--split {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 55px;
  align-items: end;
}
.section-heading h2, .programs-intro h2, .inquiry h2 {
  margin: 0;
  font-family: "Arial Rounded MT Bold", "Trebuchet MS", Aptos, sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.7rem);
  line-height: 1;
  letter-spacing: -0.055em;
}
.section-heading--split > p { margin: 0 0 4px; color: var(--muted); }
.destination-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 52px;
}
.destination {
  position: relative;
  min-height: 270px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  text-decoration: none;
  transition: transform 220ms ease, box-shadow 220ms ease;
}
.destination:active { transform: translateY(-1px) scale(0.985); transition-duration: 90ms; }
.destination img { width: auto; height: 82px; max-width: 78%; object-fit: contain; object-position: left center; }
.destination span { max-width: 78%; font-size: 1.04rem; font-weight: 800; line-height: 1.2; }
.destination b { position: absolute; right: 26px; bottom: 22px; font-size: 1.75rem; }
.destination--fiiz { color: var(--fiiz-deep); background: var(--fiiz-blue); }
.destination--fiiz img { height: 105px; margin-top: -7px; }
.destination--everbowl { color: var(--ever-deep); background: var(--ever-surface); }
.destination--lfo { color: var(--lfo-deep); background: var(--lfo-surface); border: 2px solid var(--lfo-mint); }

.programs-intro { padding: 80px 0 62px; text-align: center; }
.programs-intro h2 { max-width: 850px; margin-inline: auto; }
.programs-intro > p:last-child { max-width: 680px; margin: 26px auto 0; color: var(--muted); font-size: 1.1rem; }

.brand-section {
  width: min(1390px, calc(100% - 32px));
  margin: 28px auto;
  display: grid;
  grid-template-columns: minmax(330px, 0.8fr) minmax(500px, 1.2fr);
  min-height: 760px;
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.brand-section__media { position: relative; min-height: 570px; overflow: hidden; }
.brand-section__media > img { width: 100%; height: 100%; object-fit: cover; }
.brand-section__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(20,12,35,0.38));
}
.brand-section__content { padding: clamp(48px, 6vw, 90px); }
.section-logo { width: auto; height: 88px; max-width: 280px; object-fit: contain; object-position: left center; }
.section-logo--fiiz { height: 115px; margin: -20px 0 3px; }
.section-logo--everbowl { height: 65px; }
.section-logo--lfo { height: 75px; max-width: 330px; }
.brand-kicker { margin: 20px 0 8px; font-size: 0.78rem; font-weight: 850; letter-spacing: 0.12em; text-transform: uppercase; }
.brand-section h2 {
  max-width: 720px;
  margin: 0 0 42px;
  font-family: "Arial Rounded MT Bold", "Trebuchet MS", Aptos, sans-serif;
  font-size: clamp(2.35rem, 4vw, 4.3rem);
  line-height: 0.99;
  letter-spacing: -0.055em;
}
.service-list { display: grid; grid-template-columns: 1fr 1fr; gap: 31px 30px; }
.service-list article { display: grid; grid-template-columns: 42px 1fr; gap: 12px; align-items: start; }
.service-list h3 { margin: 0 0 6px; font-size: 1.04rem; line-height: 1.25; }
.service-list p { margin: 0; font-size: 0.92rem; line-height: 1.52; opacity: 0.86; }
.service-mark {
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  font-size: 0.95rem;
  font-weight: 900;
}
.brand-link { display: inline-flex; align-items: center; gap: 13px; margin-top: 43px; }
.brand-link span { font-size: 1.25em; }
.secondary-link { display: inline-flex; align-items: center; gap: 8px; font-size: 0.9rem; }
.brand-actions { display: flex; flex-wrap: wrap; gap: 13px 25px; align-items: baseline; }
.brand-actions .brand-link { margin-top: 43px; }
.media-sticker {
  position: absolute;
  z-index: 2;
  left: 28px;
  bottom: 28px;
  width: 142px;
  height: 142px;
  display: grid;
  place-items: center;
  padding: 18px;
  color: var(--fiiz-deep);
  background: var(--fiiz-blue);
  border-radius: 50%;
  font-family: "Arial Rounded MT Bold", "Trebuchet MS", sans-serif;
  font-size: 1.17rem;
  font-weight: 900;
  line-height: 1.04;
  text-align: center;
  transform: rotate(-7deg);
  box-shadow: 0 15px 36px rgba(23,15,43,0.28);
}
.brand-section--fiiz { color: var(--fiiz-deep); background: var(--fiiz-blue); }
.brand-section--fiiz .brand-section__media { border: 12px solid var(--fiiz-blue); border-radius: var(--radius-lg); }
.brand-section--fiiz .service-mark { color: var(--fiiz-deep); background: var(--fiiz-orange); }
.brand-section--fiiz .service-list p { opacity: 1; }
.brand-section--everbowl { color: var(--ever-deep); background: var(--ever-surface); }
.brand-section--everbowl .brand-section__media { order: 2; }
.brand-section--everbowl .service-mark { color: var(--ever-purple); background: white; }
.media-sticker--everbowl { left: auto; right: 28px; color: white; background: var(--ever-purple); transform: rotate(7deg); }
.compliance-note {
  display: grid;
  grid-template-columns: 155px 1fr;
  gap: 18px;
  margin-top: 34px;
  padding: 18px 20px;
  background: white;
  border-left: 5px solid var(--ever-purple);
  border-radius: 0 13px 13px 0;
  font-size: 0.83rem;
  line-height: 1.45;
}
.compliance-note strong { line-height: 1.3; }
.brand-section--lfo { color: var(--lfo-deep); background: var(--lfo-surface); }
.brand-section--lfo .brand-section__media { border: 12px solid var(--lfo-surface); border-radius: var(--radius-lg); }
.brand-section--lfo .service-mark { color: var(--lfo-blue); background: white; }
.media-sticker--lfo { color: white; background: var(--lfo-blue); }

.inquiry {
  margin-top: 100px;
  padding: 110px 0 100px;
  color: white;
  background:
    radial-gradient(circle at 12% 12%, rgba(103,206,229,0.15), transparent 20%),
    radial-gradient(circle at 94% 85%, rgba(120,188,158,0.18), transparent 23%),
    #211338;
}
.inquiry__grid { display: grid; grid-template-columns: 0.74fr 1.26fr; gap: clamp(50px, 8vw, 115px); align-items: start; }
.inquiry__intro { position: sticky; top: 110px; }
.inquiry__intro > p:not(.eyebrow) { max-width: 460px; color: rgba(255,255,255,0.75); font-size: 1.05rem; }
.contact-block { margin-top: 50px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.18); }
.contact-block h3 { margin: 0 0 22px; font-size: 0.93rem; }
.contact-group { display: grid; margin: 0 0 22px; }
.contact-group span { margin-bottom: 5px; color: var(--fiiz-blue); font-size: 0.72rem; font-weight: 850; letter-spacing: 0.07em; text-transform: uppercase; }
.contact-group a { width: max-content; color: white; font-weight: 700; text-underline-offset: 4px; }
.inquiry-form {
  padding: clamp(27px, 4.5vw, 54px);
  color: var(--ink);
  background: white;
  border-radius: var(--radius-md);
  box-shadow: 0 34px 80px rgba(0,0,0,0.22);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.inquiry-form > label, .field-row label { display: grid; gap: 7px; margin-bottom: 20px; font-size: 0.82rem; font-weight: 800; }
input, select, textarea {
  width: 100%;
  color: var(--ink);
  background: #fbfaf7;
  border: 1.5px solid #d9d4df;
  border-radius: 11px;
  outline: none;
}
input, select { min-height: 51px; padding: 10px 13px; }
textarea { padding: 13px; resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--ever-purple); box-shadow: 0 0 0 4px rgba(85,35,135,0.12); }
fieldset { margin: 3px 0 23px; padding: 0; border: 0; }
legend { margin-bottom: 11px; font-size: 0.82rem; font-weight: 800; }
.choice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.choice-grid label { position: relative; }
.choice-grid input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.choice-grid span {
  display: block;
  min-height: 43px;
  padding: 10px 12px;
  background: #f4f1f7;
  border: 1.5px solid transparent;
  border-radius: 10px;
  font-size: 0.76rem;
  font-weight: 750;
  text-align: center;
  cursor: pointer;
  transition: transform 100ms ease-out, background-color 140ms ease, border-color 140ms ease;
}
.choice-grid label:active span { transform: scale(0.985); }
.choice-grid input:checked + span { color: var(--ever-purple); background: #f1e9f8; border-color: var(--ever-purple); }
.choice-grid input:focus-visible + span { outline: 3px solid rgba(85,35,135,0.25); outline-offset: 2px; }
.consent { grid-template-columns: 20px 1fr !important; align-items: start; margin: 5px 0 22px !important; font-size: 0.77rem !important; font-weight: 600 !important; }
.consent input { width: 18px; min-height: 18px; height: 18px; margin-top: 2px; accent-color: var(--ever-purple); }
.button--submit { width: 100%; gap: 12px; color: white; background: var(--ever-purple); }
.button--submit:disabled { cursor: wait; opacity: 0.72; }
.form-status { min-height: 1.35em; margin: 11px 0 0; color: #8a1f33; font-size: 0.76rem; font-weight: 700; text-align: center; }
.form-note { margin: 13px 0 0; color: var(--muted); font-size: 0.69rem; text-align: center; }
.form-note a { text-underline-offset: 3px; }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

footer { padding: 42px 0; color: #595364; background: #f1ede5; font-size: 0.78rem; }
.footer__inner { display: grid; grid-template-columns: 1fr auto; gap: 20px 50px; align-items: center; }
.footer__inner > div:first-child { display: grid; }
.footer__inner strong { color: var(--ink); font-size: 0.92rem; }
.footer__links { display: flex; gap: 20px; }
.footer__links a { font-weight: 700; text-underline-offset: 3px; }
.footer__inner > p { grid-column: 1 / -1; margin: 0; padding-top: 18px; border-top: 1px solid rgba(25,20,42,0.1); }

.simple-page { min-height: 100vh; display: grid; grid-template-rows: auto 1fr auto; background: #fbf7ef; }
.simple-main { width: min(760px, calc(100% - 40px)); margin: 80px auto 100px; }
.simple-card { padding: clamp(30px, 7vw, 70px); background: white; border-radius: var(--radius-md); box-shadow: var(--shadow); }
.simple-card h1 { margin: 0 0 20px; font-family: "Arial Rounded MT Bold", "Trebuchet MS", sans-serif; font-size: clamp(2.6rem, 7vw, 5.2rem); line-height: 0.98; letter-spacing: -0.06em; }
.simple-card h2 { margin-top: 32px; font-size: 1.25rem; }
.simple-card p, .simple-card li { color: var(--muted); }
.simple-card .button { margin-top: 18px; }
.simple-icon { display: flex; gap: 6px; margin-bottom: 28px; }
.simple-icon i { width: 28px; height: 28px; border-radius: 50%; }
.simple-icon i:nth-child(1) { background: var(--fiiz-orange); }
.simple-icon i:nth-child(2) { background: var(--ever-purple); }
.simple-icon i:nth-child(3) { background: var(--lfo-mint); }

:where(a, button, input, select, textarea):focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 4px;
}
.inquiry :where(a, button):focus-visible { outline-color: white; }

@media (hover: hover) and (pointer: fine) {
  .site-header nav a:not(.nav-cta):hover { text-decoration: underline; text-underline-offset: 4px; }
  .button:hover { transform: translateY(-2px); }
  .text-link:hover, .brand-link:hover, .secondary-link:hover { text-decoration: underline; }
  .destination:hover { transform: translateY(-7px) rotate(-0.3deg); box-shadow: 0 30px 78px rgba(30,20,50,0.2); }
}

@media (max-width: 980px) {
  .hero { min-height: 690px; }
  .hero__art { opacity: 0.55; }
  .destination-grid { grid-template-columns: 1fr; }
  .destination { min-height: 220px; }
  .destination img { max-width: 240px; }
  .brand-section { grid-template-columns: 1fr; }
  .brand-section__media { min-height: 460px; }
  .brand-section--everbowl .brand-section__media { order: initial; }
  .inquiry__grid { grid-template-columns: 1fr; }
  .inquiry__intro { position: static; }
  .contact-block { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 30px; }
  .contact-block h3 { grid-column: 1 / -1; margin-bottom: 0; }
}

@media (max-width: 720px) {
  :root { --wrap: min(100% - 28px, 1180px); }
  body { font-size: 16px; }
  .site-header { min-height: 66px; padding-inline: 14px; }
  .site-header nav { gap: 8px; }
  .site-header nav a:not(.nav-cta) { display: none; }
  .nav-cta { padding: 9px 13px; font-size: 0.78rem !important; }
  .hero { min-height: 680px; padding: 85px 0 70px; }
  .hero h1 { font-size: clamp(3rem, 14vw, 4.7rem); }
  .hero__actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .brand-key { margin-top: 48px; flex-direction: column; gap: 7px; }
  .orb--fiiz { top: 5%; right: 5%; width: 62px; height: 62px; }
  .orb--everbowl { right: -38px; bottom: 15%; width: 105px; height: 105px; }
  .orb--lfo { right: 20%; bottom: 8%; width: 50px; height: 50px; }
  .hero__loop { right: -260px; width: 420px; }
  .quick-links { padding: 80px 0 90px; }
  .section-heading--split { grid-template-columns: 1fr; gap: 20px; }
  .destination { min-height: 205px; padding: 24px; }
  .programs-intro { padding-top: 55px; }
  .brand-section { width: calc(100% - 16px); margin: 16px auto; border-radius: 30px; }
  .brand-section__media { min-height: 350px; }
  .brand-section__content { padding: 42px 24px 50px; }
  .brand-section h2 { margin-bottom: 34px; }
  .service-list { grid-template-columns: 1fr; gap: 25px; }
  .compliance-note { grid-template-columns: 1fr; gap: 5px; }
  .media-sticker { width: 118px; height: 118px; font-size: 1rem; }
  .inquiry { margin-top: 70px; padding: 80px 0 70px; }
  .contact-block { grid-template-columns: 1fr; }
  .contact-block h3 { grid-column: auto; }
  .field-row, .choice-grid { grid-template-columns: 1fr; gap: 0; }
  .choice-grid { gap: 8px; }
  .inquiry-form { padding: 25px 18px; }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__links { flex-wrap: wrap; }
  .footer__inner > p { grid-column: auto; }
}

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

@media (prefers-reduced-transparency: reduce) {
  .site-header { background: var(--paper); -webkit-backdrop-filter: none; backdrop-filter: none; }
}

@media (prefers-contrast: more) {
  .site-header { background: var(--paper); border-bottom: 2px solid var(--ink); -webkit-backdrop-filter: none; backdrop-filter: none; }
  :where(a, button, input, select, textarea):focus-visible { outline-width: 4px; }
}
