/* Flourissh — static site
   Craft target: liked-template-ref.png (structure/weight)
   Locked words only. Desktop-first. */

:root {
  --green: #34A83D;
  --green-deep: #2A8C33;
  --green-forest: #2E9A38;
  --yellow: #FFD21F;
  --red: #E5232B;
  --navy: #0B1B3A;
  --muted: #5C6B82;
  --line: #E7ECF2;
  --white: #ffffff;
  --bg: #ffffff;
  --wrap: 1160px;
  --radius-frame: 28px;
  --radius-card: 16px;
  --radius-pill: 999px;
  --font-sans: "Outfit", "Inter", system-ui, -apple-system, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
  --font-script: "Pacifico", cursive;
  --shadow-frame: 0 18px 40px rgba(11, 27, 58, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--navy);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

.wrap {
  width: min(var(--wrap), calc(100% - 64px));
  margin-inline: auto;
}

.skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--navy);
  color: #fff;
  padding: 8px 14px;
  z-index: 100;
}
.skip:focus {
  left: 12px;
  top: 12px;
}

/* ---------- Header ---------- */
.site-header {
  padding: 18px 0 14px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  line-height: 1;
  flex-shrink: 0;
}

.brand-logo {
  height: 98px;
  width: auto;
  max-width: min(420px, 62vw);
  display: block;
}

.nav {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-left: auto;
}

.nav a {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--navy);
}

.nav a:hover {
  color: var(--green-deep);
}

.nav-toggle,
.nav-burger {
  display: none;
}

.btn-contact {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--green-forest);
  color: #fff !important;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 7px 7px 7px 24px;
  border-radius: var(--radius-pill);
  border: 2px solid var(--green-forest);
  line-height: 1;
  transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
  white-space: nowrap;
}

.btn-contact:hover {
  background: var(--green-deep);
  border-color: var(--green-deep);
  transform: translateY(-1px);
}

.btn-contact .arrow-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
  color: var(--green-forest);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.btn-contact .arrow-circle svg {
  width: 17px;
  height: 17px;
}

/* ---------- Hero ---------- */
.hero {
  padding: 36px 0 28px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 48px;
  align-items: center;
}

.hero-copy h1 {
  font-family: var(--font-sans);
  font-size: clamp(2.25rem, 3.6vw, 3.25rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.08;
  color: var(--navy);
  margin: 0 0 22px;
  max-width: 12.4em;
}

.hero-copy h1 .u {
  position: relative;
  display: inline-block;
  padding-bottom: 0.14em;
}

.hero-copy h1 .u::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.04em;
  width: 4.6rem;
  height: 6px;
  background: var(--green);
  border-radius: 8px;
}

.hero-sub {
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--muted);
  max-width: 42ch;
  margin: 0 0 22px;
}

.hero-cta-line {
  font-family: var(--font-sans);
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 18px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary,
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  height: 54px;
  min-width: 168px;
  justify-content: space-between;
  padding: 0 8px 0 26px;
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.01em;
  line-height: 1;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.btn-primary {
  background: var(--green);
  color: #fff;
  border: 2px solid var(--green);
}

.btn-primary:hover {
  background: var(--green-deep);
  border-color: var(--green-deep);
  transform: translateY(-1px);
}

.btn-outline {
  background: #fff;
  color: var(--green-deep);
  border: 2px solid var(--green);
  padding: 0 8px 0 24px;
}

.btn-outline:hover {
  background: #f3ffe9;
  transform: translateY(-1px);
}

.btn-primary .arrow-circle,
.btn-outline .arrow-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.btn-primary .arrow-circle {
  background: #fff;
  color: var(--green);
}

.btn-outline .arrow-circle {
  background: var(--green);
  color: #fff;
  margin-right: 0;
}

.btn-primary .arrow-circle svg,
.btn-outline .arrow-circle svg {
  width: 16px;
  height: 16px;
}

.hero-visual {
  position: relative;
  padding: 8px 44px 4px 0;
}

.dot-grid {
  position: absolute;
  right: 14px;
  bottom: 16%;
  width: 68px;
  height: 92px;
  background-image: radial-gradient(circle, var(--green) 1.55px, transparent 1.7px);
  background-size: 9px 9px;
  background-repeat: repeat;
  z-index: 2;
  pointer-events: none;
  opacity: 0.9;
}

.hero-frame {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-frame);
  overflow: hidden;
  background: #0b1020;
  box-shadow: var(--shadow-frame);
  aspect-ratio: 16 / 11.2;
}

.hero-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.hero-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  width: 100%;
  height: 86px;
  display: block;
  pointer-events: none;
}

/* ---------- Scorecard ---------- */
.scorecard {
  padding: 4px 0 0;
}

.scorecard-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-card);
  overflow: hidden;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border-radius: 0;
  color: #fff;
  min-height: 114px;
  max-height: 114px;
  box-sizing: border-box;
}

.stat--green { background: var(--green); }
.stat--yellow { background: var(--yellow); }
.stat--red { background: var(--red); }

.stat-cluster {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  width: max-content;
  max-width: 100%;
}

.stat-top {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}

.stat-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: #fff;
  color: var(--green);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.stat--yellow .stat-icon { color: #e6b400; }
.stat--red .stat-icon { color: var(--red); }
.stat--green .stat-icon { color: var(--green); }

.stat-icon svg {
  width: 37px;
  height: 37px;
}

.stat-num {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 3.55rem;
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.045em;
  color: #fff;
  white-space: nowrap;
}

.stat-label {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  text-transform: none;
  color: #fff;
  opacity: 0.96;
  line-height: 1.25;
  text-align: center;
  max-width: 18em;
}

/* ---------- Who tease ---------- */
.who-tease {
  padding: 56px 0 28px;
  text-align: center;
}

.section-kicker,
.who-tease h2,
.cost h2,
.page-hero h1 {
  font-family: var(--font-sans);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--navy);
}

.who-tease h2 {
  font-size: clamp(2.15rem, 3.2vw, 2.85rem);
  margin: 0 0 18px;
}

.who-tease p {
  margin: 0 auto;
  max-width: 42ch;
  color: var(--muted);
  font-size: clamp(1.25rem, 1.8vw, 1.45rem);
  line-height: 1.55;
  font-weight: 500;
}

.who-tease .text-link {
  font-family: var(--font-sans);
  font-weight: 700;
  color: var(--green-deep);
  text-decoration: none;
  font-size: 1.02rem;
}

.who-tease .text-link:hover {
  text-decoration: underline;
}

/* ---------- Cost ---------- */
.cost {
  padding: 36px 0 40px;
}

.cost-inner {
  max-width: 720px;
}

.cost h2 {
  font-size: clamp(1.7rem, 2.4vw, 2.15rem);
  margin: 0 0 8px;
}

.cost p.cost-lead {
  font-family: var(--font-sans);
  font-size: clamp(2.6rem, 4.6vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.05;
  color: var(--navy);
  margin: 0 0 22px;
  max-width: none;
}

.cost p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0 0 14px;
  max-width: 62ch;
}

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 22px 0 32px;
}

.footer-inner {
  display: flex;
  align-items: center;
  gap: 22px;
}

.footer-legal {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
}

.footer-divider {
  width: 1px;
  height: 36px;
  background: #D5DCE6;
  flex-shrink: 0;
}

.footer-mail {
  font-family: var(--font-sans);
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
  margin-right: auto;
}

.footer-mail:hover {
  color: var(--green-deep);
}

.footer-touch {
  flex-shrink: 0;
}

.footer-note {
  color: #9AA3B2;
  font-size: 0.85rem;
  margin: 0;
}

/* ---------- Who page ---------- */
.page-hero {
  padding: 48px 0 28px;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(2rem, 3.2vw, 2.7rem);
  margin: 0 0 16px;
}

.page-hero p {
  margin: 0 auto;
  max-width: 48ch;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.65;
}

.photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 12px 0 56px;
}

.photo-grid figure {
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  background: #0b1020;
  aspect-ratio: 16 / 11;
}

.photo-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-cta {
  text-align: center;
  padding: 8px 0 80px;
}

.page-cta p {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1.15rem;
  margin: 0 0 20px;
}

.page-cta .back {
  display: inline-block;
  margin-top: 22px;
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
}

.page-cta .back:hover {
  color: var(--navy);
}

.page-cta .hero-actions {
  justify-content: center;
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .wrap { width: min(var(--wrap), calc(100% - 40px)); }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hero-copy h1 { max-width: 18ch; }
  .hero-visual { padding: 8px 28px 0 0; max-width: 640px; }
  .nav { gap: 22px; }
  .stat { padding: 8px 10px; min-height: 92px; max-height: 92px; }
  .stat-top { gap: 8px; }
  .stat-icon { width: 52px; height: 52px; }
  .stat-icon svg { width: 28px; height: 28px; }
  .stat-num { font-size: 2.9rem; }
  .stat-label { font-size: 1.18rem; }
}

@media (max-width: 780px) {
  .nav-burger {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    cursor: pointer;
    border: 1px solid var(--line);
  }
  .nav-burger span,
  .nav-burger span::before,
  .nav-burger span::after {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--navy);
    position: relative;
    border-radius: 2px;
  }
  .nav-burger span::before,
  .nav-burger span::after {
    content: "";
    position: absolute;
    left: 0;
  }
  .nav-burger span::before { top: -6px; }
  .nav-burger span::after { top: 6px; }

  .nav {
    display: none;
    position: absolute;
    right: 20px;
    top: 118px;
    flex-direction: column;
    align-items: flex-end;
    gap: 14px;
    background: #fff;
    padding: 16px 18px;
    border-radius: 16px;
    box-shadow: 0 12px 32px rgba(11, 27, 58, 0.12);
    z-index: 20;
  }
  .site-header { position: relative; }
  .nav-toggle:checked ~ .nav { display: flex; }
  .scorecard-grid { grid-template-columns: 1fr; }
  .photo-grid { grid-template-columns: 1fr; }
  .header-inner { gap: 12px; }
  .footer-inner {
    flex-wrap: wrap;
    align-items: center;
  }
  .footer-divider { display: none; }
  .footer-mail { margin-right: 0; width: 100%; }
  .who-tease, .cost { padding-left: 0; }
}

@media (max-width: 520px) {
  .wrap { width: calc(100% - 32px); }
  .brand-logo { height: 68px; }
  .btn-contact { padding-left: 16px; }
  .hero { padding-top: 20px; }
  .footer-legal { white-space: normal; }
}

.photo-grid img.photo-stage {
  object-position: 50% 18%;
}


