﻿:root {
  --ink: #13313d;
  --muted: #5d7480;
  --line: #d9e7ea;
  --surface: #ffffff;
  --soft: #f3f9f9;
  --blue: #0b6f8f;
  --blue-dark: #084f68;
  --yellow: #ffc64a;
  --coral: #ff7a59;
  --green: #55b879;
  --shadow: 0 18px 45px rgba(21, 56, 66, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  background: var(--surface);
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 64px);
  border-bottom: 1px solid rgba(217, 231, 234, 0.88);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  color: white;
  font-weight: 900;
  background: linear-gradient(135deg, var(--blue), var(--green));
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1.02rem;
  letter-spacing: 0;
}

.brand small {
  color: var(--muted);
  font-size: 0.74rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 0.94rem;
}

.site-nav a {
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--blue);
}

.nav-cta {
  padding: 10px 16px;
  border-radius: 999px;
  color: white !important;
  background: var(--blue);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: white;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: clamp(650px, 90vh, 820px);
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background-image: url("https://feelkidsglobal.com/assets/inline/home-20260625-001.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-image {
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
}

.hero-shade {
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.84) 38%, rgba(255, 255, 255, 0.18) 72%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.05));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(720px, calc(100% - 36px));
  margin-left: clamp(18px, 6vw, 86px);
  padding-top: 60px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 650px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 6vw, 5.9rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  max-width: 780px;
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
  line-height: 1.22;
}

.hero-copy {
  max-width: 620px;
  color: #314b56;
  font-size: clamp(1.02rem, 1.8vw, 1.22rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  color: white;
  background: var(--blue);
  box-shadow: 0 12px 26px rgba(11, 111, 143, 0.24);
}

.button.primary:hover {
  background: var(--blue-dark);
}

.button.secondary {
  color: var(--ink);
  background: white;
  border: 1px solid rgba(19, 49, 61, 0.14);
}

.button.compact {
  margin-top: 10px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: min(640px, 100%);
  margin: 34px 0 0;
}

.hero-stats div {
  padding: 16px;
  border: 1px solid rgba(217, 231, 234, 0.78);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(14px);
}

.hero-stats dt {
  font-weight: 900;
}

.hero-stats dd {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-block: 1px solid var(--line);
  background: var(--blue-dark);
}

.trust-strip span {
  display: grid;
  place-items: center;
  min-height: 82px;
  padding: 16px;
  color: white;
  font-weight: 850;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-strip div {
  min-height: 132px;
  padding: 26px clamp(18px, 4vw, 44px);
  background: white;
}

.proof-strip strong,
.proof-strip span {
  display: block;
}

.proof-strip strong {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 1.05rem;
}

.proof-strip span {
  color: var(--muted);
}

.section {
  padding: clamp(64px, 9vw, 112px) clamp(18px, 5vw, 76px);
}

.section-heading {
  margin-bottom: 34px;
}

.intro {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(28px, 6vw, 90px);
  align-items: end;
  background: var(--soft);
}

.intro > p,
.split p,
.factory p,
.quote-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.solution-card {
  overflow: hidden;
  min-height: 390px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 8px 26px rgba(21, 56, 66, 0.06);
}

.solution-media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #e7f5f7;
}

.solution-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 240ms ease;
}

.solution-card:hover .solution-media img {
  transform: scale(1.035);
}

.solution-body {
  padding: 24px 26px 28px;
}

.solution-card p {
  color: var(--muted);
}

.card-icon {
  position: absolute;
  left: 18px;
  bottom: 18px;
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: var(--blue-dark);
  font-weight: 900;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 24px rgba(19, 49, 61, 0.16);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(28px, 6vw, 80px);
  background: #fbfcfc;
}

.process-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  counter-reset: process;
  list-style: none;
}

.process-list li {
  position: relative;
  min-height: 88px;
  padding: 18px 18px 18px 78px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.process-list li::before {
  counter-increment: process;
  content: counter(process);
  position: absolute;
  left: 18px;
  top: 18px;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: white;
  font-weight: 900;
  background: var(--coral);
}

.process-list strong,
.process-list span {
  display: block;
}

.process-list span {
  color: var(--muted);
}

.customer-band {
  background: var(--blue);
  color: white;
}

.customer-band .eyebrow,
.customer-band h2 {
  color: white;
}

.customer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.customer-grid span {
  min-height: 74px;
  display: grid;
  place-items: center;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  text-align: center;
  font-weight: 800;
}

.cases-preview {
  background: #fbfcfc;
}

.cases-preview .section-heading p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.case-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 8px 26px rgba(21, 56, 66, 0.06);
}

.case-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #e7f5f7;
}

.case-card div {
  padding: 18px 20px 20px;
}

.case-card strong,
.case-card span {
  display: block;
}

.case-card span {
  margin-top: 4px;
  color: var(--muted);
}

.section-actions {
  margin-top: 28px;
}

.factory {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: center;
}

.factory-visual {
  min-height: 420px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(11, 111, 143, 0.88), rgba(85, 184, 121, 0.72)),
    repeating-linear-gradient(0deg, transparent 0 34px, rgba(255, 255, 255, 0.35) 35px 36px),
    repeating-linear-gradient(90deg, transparent 0 34px, rgba(255, 255, 255, 0.35) 35px 36px);
  box-shadow: var(--shadow);
}

.blueprint {
  position: relative;
  width: 100%;
  height: 420px;
}

.blueprint span {
  position: absolute;
  border: 4px solid rgba(255, 255, 255, 0.86);
  border-radius: 8px;
}

.blueprint span:nth-child(1) {
  width: 58%;
  height: 38%;
  left: 16%;
  top: 14%;
}

.blueprint span:nth-child(2) {
  width: 34%;
  height: 26%;
  right: 11%;
  bottom: 17%;
}

.blueprint span:nth-child(3) {
  width: 72px;
  height: 72px;
  left: 20%;
  bottom: 18%;
  border-radius: 50%;
  background: rgba(255, 198, 74, 0.82);
}

.blueprint span:nth-child(4) {
  width: 105px;
  height: 105px;
  right: 25%;
  top: 27%;
  border-color: rgba(255, 122, 89, 0.9);
  transform: rotate(18deg);
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--green);
}

.seo-pages {
  background: var(--soft);
}

.page-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.page-list a {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  color: var(--blue-dark);
  font-weight: 850;
  text-decoration: none;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

summary {
  padding: 20px 22px;
  font-weight: 900;
  cursor: pointer;
}

details p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}

.quote-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(28px, 6vw, 82px);
  padding: clamp(64px, 9vw, 112px) clamp(18px, 5vw, 76px);
  background: #fdf8ed;
}

.quote-copy {
  align-self: center;
}

.quote-copy a {
  color: var(--blue);
  font-weight: 900;
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: clamp(18px, 3vw, 30px);
  border: 1px solid rgba(19, 49, 61, 0.12);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 850;
  font-size: 0.92rem;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 11px 12px;
  color: var(--ink);
  font: inherit;
  background: white;
}

textarea {
  resize: vertical;
}

.wide,
.form-button {
  grid-column: 1 / -1;
}

.form-button {
  width: 100%;
}

.form-trap {
  display: none;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 34px clamp(18px, 5vw, 76px);
  color: white;
  background: #15313b;
}

.site-footer p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.74);
}

address {
  font-style: normal;
  color: rgba(255, 255, 255, 0.78);
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 15;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: white;
  font-weight: 900;
  text-decoration: none;
  background: #28a745;
  box-shadow: 0 16px 28px rgba(40, 167, 69, 0.3);
}

.subpage-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(70px, 9vw, 116px) clamp(18px, 5vw, 76px);
  background: var(--soft);
}

.subpage-hero img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.breadcrumbs {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 0.9rem;
}

.breadcrumbs a {
  color: var(--blue);
  font-weight: 800;
  text-decoration: none;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.55fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: start;
}

.copy-block {
  display: grid;
  gap: 18px;
}

.copy-block p {
  color: var(--muted);
  font-size: 1.04rem;
}

.side-panel {
  position: sticky;
  top: 98px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 10px 28px rgba(21, 56, 66, 0.07);
}

.side-panel ul {
  display: grid;
  gap: 10px;
  margin: 16px 0 22px;
  padding-left: 18px;
  color: var(--muted);
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.spec-grid div {
  min-height: 118px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.spec-grid strong,
.spec-grid span {
  display: block;
}

.spec-grid span {
  margin-top: 6px;
  color: var(--muted);
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: clamp(34px, 5vw, 58px);
  border-radius: 8px;
  color: white;
  background: var(--blue-dark);
}

.cta-band p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.cta-band .button {
  background: white;
  color: var(--blue-dark);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.contact-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.contact-card span {
  display: block;
  color: var(--muted);
}

@media (max-width: 980px) {
  .site-nav {
    position: absolute;
    left: 18px;
    right: 18px;
    top: 84px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: white;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }

  .hero {
    min-height: 760px;
    align-items: flex-end;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.92) 52%, rgba(255, 255, 255, 0.18) 100%);
  }

  .hero-content {
    margin: 0 auto;
    padding: 120px 0 42px;
  }

  .trust-strip,
  .proof-strip,
  .solution-grid,
  .case-grid,
  .customer-grid,
  .page-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .intro,
  .split,
  .factory,
  .quote-section,
  .subpage-hero,
  .content-grid,
  .cta-band {
    grid-template-columns: 1fr;
  }

  .side-panel {
    position: static;
  }

  .spec-grid,
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: 68px;
  }

  .brand small {
    display: none;
  }

  h1 {
    font-size: 2.7rem;
  }

  .hero {
    min-height: 780px;
  }

  .hero-stats,
  .trust-strip,
  .proof-strip,
  .solution-grid,
  .case-grid,
  .customer-grid,
  .page-list,
  .quote-form,
  .spec-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
  }
}

.market-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.52fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(76px, 9vw, 126px) clamp(18px, 5vw, 76px);
  background: linear-gradient(135deg, #eef8f9 0%, #fff8ea 100%);
}

.market-hero .lead {
  max-width: 820px;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.5vw, 1.2rem);
}

.market-panel {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
}

.market-panel span {
  padding-top: 12px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.market-content .content-grid {
  align-items: start;
}

.market-card-grid,
.process-grid.mini-process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.market-card-grid article,
.process-grid.mini-process article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.market-card-grid p,
.process-grid.mini-process p {
  color: var(--muted);
}

.market-links-heading {
  margin-top: 26px;
}

@media (max-width: 980px) {
  .market-hero,
  .market-card-grid,
  .process-grid.mini-process {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .market-hero,
  .market-card-grid,
  .process-grid.mini-process {
    grid-template-columns: 1fr;
  }
}

.visual-market-hero {
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.9fr);
}

.market-visual {
  margin: 0;
}

.market-visual img,
.visual-card-grid img {
  display: block;
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  background: #e7f5f7;
}

.market-visual img {
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow);
}

.market-visual figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.92rem;
}

.visual-card-grid article {
  overflow: hidden;
  padding: 0;
}

.visual-card-grid img {
  aspect-ratio: 4 / 3;
  border-radius: 0;
}

.visual-card-grid h3,
.visual-card-grid p {
  padding-left: 20px;
  padding-right: 20px;
}

.visual-card-grid h3 {
  margin-top: 18px;
}

.visual-card-grid p {
  padding-bottom: 20px;
}

.center-actions {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

@media (max-width: 980px) {
  .visual-market-hero {
    grid-template-columns: 1fr;
  }
}
/* contact sidebar 20260624 */
.contact-sidebar {
  position: fixed;
  right: 18px;
  top: 42%;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 132px;
}

.contact-sidebar a,
.contact-sidebar span {
  display: block;
  border: 1px solid rgba(11, 111, 143, 0.18);
  background: rgba(255, 255, 255, 0.94);
  color: #0b3542;
  border-radius: 8px;
  padding: 10px 12px;
  font-weight: 800;
  font-size: 0.78rem;
  line-height: 1.25;
  text-align: center;
  box-shadow: 0 12px 24px rgba(10, 39, 49, 0.12);
  backdrop-filter: blur(10px);
}

.contact-sidebar a:first-child {
  background: #0b7f99;
  color: #ffffff;
  border-color: #0b7f99;
}

.contact-sidebar a:nth-child(3) {
  background: #fff7e6;
  border-color: rgba(220, 153, 25, 0.28);
}

.contact-sidebar a:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 28px rgba(10, 39, 49, 0.16);
}

@media (max-width: 760px) {
  .contact-sidebar {
    left: 12px;
    right: 12px;
    bottom: 12px;
    top: auto;
    width: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-sidebar span {
    display: none;
  }

  .contact-sidebar a,
  .contact-sidebar span {
    padding: 11px 8px;
    font-size: 0.76rem;
  }

  .whatsapp-float {
    display: none;
  }
}
/* end contact sidebar 20260624 */
/* project folder references 20260624 */
.project-folder-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.project-folder-card { border: 1px solid rgba(11, 111, 143, 0.16); border-radius: 8px; background: #fff; box-shadow: 0 18px 34px rgba(10, 39, 49, 0.08); overflow: hidden; }
.project-folder-card summary { display: grid; grid-template-columns: 180px 1fr auto; gap: 16px; align-items: center; padding: 14px; cursor: pointer; list-style: none; }
.project-folder-card summary::-webkit-details-marker { display: none; }
.project-cover figure, .project-folder-gallery figure { margin: 0; }
.project-cover img { width: 180px; height: 124px; object-fit: cover; border-radius: 8px; display: block; }
.project-cover figcaption { display: none; }
.project-info { display: grid; gap: 5px; }
.project-info strong { color: #10343f; font-size: 1.05rem; }
.project-info em, .project-info small { color: #526975; font-style: normal; }
.project-toggle { border: 1px solid rgba(11, 111, 143, 0.22); border-radius: 999px; padding: 9px 12px; color: #0b6f8f; font-weight: 800; white-space: nowrap; }
.project-folder-card[open] .project-toggle { background: #0b6f8f; color: #fff; }
.project-folder-gallery { border-top: 1px solid rgba(11, 111, 143, 0.12); padding: 14px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; background: #f6fbfc; }
.project-folder-gallery img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 8px; display: block; background: #e8f5f7; }
.project-folder-gallery figcaption { margin-top: 5px; font-size: 0.72rem; color: #60747d; }
@media (max-width: 900px) { .project-folder-list { grid-template-columns: 1fr; } .project-folder-card summary { grid-template-columns: 118px 1fr; } .project-cover img { width: 118px; height: 92px; } .project-toggle { grid-column: 1 / -1; text-align: center; } .project-folder-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .project-folder-gallery { grid-template-columns: 1fr; } }
/* end project folder references 20260624 */
/* project folder polish 20260624 */
.project-folder-hero {
  align-items: start;
}

.project-folder-hero > div {
  padding-top: clamp(8px, 2vw, 18px);
}

.project-folder-hero > img {
  align-self: start;
  min-height: clamp(460px, 44vw, 660px);
  max-height: min(78vh, 720px);
  object-fit: cover;
}

.project-folder-card .project-info strong {
  font-size: 1rem;
}
/* end project folder polish 20260624 */
/* project folder spacing fix 20260624 */
.project-folder-hero {
  padding-top: clamp(10px, 1.6vw, 18px);
  padding-bottom: clamp(12px, 1.8vw, 20px);
  min-height: auto;
}

.project-folder-hero + .section {
  padding-top: clamp(16px, 2.5vw, 28px);
}

.project-folder-hero > img {
  width: 100%;
  min-height: clamp(500px, 46vw, 680px);
  max-height: min(80vh, 740px);
  object-fit: cover;
}

@media (max-width: 900px) {
  .project-folder-hero {
    padding-top: 14px;
    padding-bottom: 16px;
  }

  .project-folder-hero > img {
    min-height: 320px;
    max-height: none;
  }
}
/* end project folder spacing fix 20260624 */
