/* Stitch-inspired visual system
   Source: stitch-export/DESIGN.md */

:root {
  --color-primary: #0d1c32;
  --color-primary-light: #39475f;
  --color-primary-dark: #071426;
  --color-primary-rgb: 13, 28, 50;
  --color-secondary: #fe6b00;
  --color-secondary-light: #ffb693;
  --color-secondary-dark: #a04100;
  --color-dark: #0d1c32;
  --color-light: #f1f4f6;
  --color-border: #c5c6cd;
  --color-border-light: #e0e3e5;
  --color-text: #181c1e;
  --color-text-light: #44474d;
  --font-heading: 'Montserrat', 'Noto Sans JP', sans-serif;
  --font-body: 'Inter', 'Noto Sans JP', sans-serif;
  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-lg: 8px;
  --radius-xl: 12px;
  --shadow-primary: 0 12px 28px rgba(13, 28, 50, 0.12);
}

body {
  background: #f7fafc;
}

.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  display: inline-block;
  white-space: nowrap;
  direction: ltr;
  -webkit-font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.site-header {
  height: 64px;
  background: rgba(247, 250, 252, 0.96);
  border-bottom: 1px solid #e0e3e5;
  box-shadow: 0 8px 24px rgba(10, 25, 47, 0.06);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
}

.header-inner {
  height: 64px;
}

.site-logo .site-title,
.site-logo,
.site-logo a,
.footer-site-title,
.footer-site-title a {
  color: #0d1c32;
  font-family: var(--font-heading);
  font-weight: 800;
}

.site-nav .menu-item a {
  color: #44474d;
  font-size: 14px;
  font-weight: 700;
}

.site-nav .menu-item a:hover,
.site-nav .menu-item.current-menu-item a,
.site-nav .menu-item.current_page_item a {
  color: #0d1c32;
}

.site-nav .menu-item a::after {
  background: #fe6b00;
}

.header-cta .btn,
.btn-primary,
.btn-secondary {
  background: #fe6b00;
  color: #fff;
  border-color: #fe6b00;
  border-radius: 4px;
  box-shadow: 0 12px 24px rgba(160, 65, 0, 0.16);
}

.header-cta .btn:hover,
.btn-primary:hover,
.btn-secondary:hover {
  color: #fff;
  box-shadow: 0 16px 32px rgba(160, 65, 0, 0.22);
}

.btn-outline,
.btn-outline-white {
  border-radius: 4px;
}

.hero-section {
  min-height: 720px;
  align-items: flex-end;
  padding-bottom: 72px;
  background: #0d1c32;
}

.hero-parallax-bg {
  opacity: 1;
}

.hero-overlay {
  background: linear-gradient(to bottom, rgba(13, 28, 50, 0.72) 0%, rgba(13, 28, 50, 0.97) 100%);
}

.hero-content {
  padding-top: 120px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  margin-bottom: 20px;
  padding: 6px 12px;
  background: #fe6b00;
  color: #fff;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
}

.hero-title {
  max-width: 820px;
  font-size: clamp(2.25rem, 6.2vw, 4.75rem);
  font-weight: 800;
  line-height: 1.12;
  color: #fff;
}

.hero-subtitle {
  max-width: 640px;
  color: #b9c7e4;
  font-size: clamp(1rem, 1.8vw, 1.125rem);
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-cta .btn {
  min-width: 190px;
  padding: 16px 22px;
}

.hero-scroll-indicator {
  display: none;
}

.section {
  padding: 80px 0;
}

.section-light,
.features-section {
  background: #f1f4f6;
}

.section-header {
  margin-bottom: 40px;
  text-align: left;
  border-left: 4px solid #a04100;
  padding-left: 18px;
}

.section-title {
  margin-bottom: 8px;
  color: #0d1c32;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
}

.section-title::after,
.section-title-decoration {
  display: none;
}

.section-subtitle {
  margin: 0;
  color: #44474d;
  text-align: left;
}

.feature-card,
.program-card,
.testimonial-card,
.service-card {
  border: 1px solid #c5c6cd;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(10, 25, 47, 0.05);
}

.feature-card {
  text-align: left;
}

.feature-icon {
  width: 52px;
  height: 52px;
  margin: 0 0 18px;
  background: #ffdbcc;
  color: #a04100;
  border-radius: 8px;
}

.feature-card:nth-child(2) .feature-icon {
  background: #d6e3ff;
  color: #0d1c32;
}

.feature-card:nth-child(3) .feature-icon {
  background: #dae2ff;
  color: #0040a1;
}

.feature-icon::after {
  content: none;
}

.feature-card:hover .feature-icon {
  transform: none;
  box-shadow: none;
}

.news-section {
  background: #f7fafc;
}

.news-section-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  margin-bottom: 18px;
}

.news-section-layout .section-header {
  margin-bottom: 0;
}

.news-list-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #a04100;
  font-weight: 800;
}

.news-list-link:hover {
  color: #fe6b00;
}

.news-list {
  border-top: 1px solid #c5c6cd;
}

.news-item {
  margin: 0;
}

.news-item-link {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 20px 18px;
  border-bottom: 1px solid #c5c6cd;
  color: #181c1e;
}

.news-item-link:hover {
  background: #f1f4f6;
}

.news-item-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  color: #44474d;
  font-size: 14px;
  font-weight: 800;
}

.news-item-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 3px 10px;
  border-radius: 999px;
  background: #ffdbcc;
  color: #a04100;
  font-size: 12px;
}

.news-item h3 {
  margin: 0;
  color: #181c1e;
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-height: 1.45;
}

.news-item .material-symbols-outlined {
  color: #fe6b00;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.news-item-link:hover .material-symbols-outlined {
  opacity: 1;
  transform: translateX(0);
}

.news-empty {
  padding: 28px;
  border: 1px solid #c5c6cd;
  border-radius: 8px;
  background: #fff;
  color: #44474d;
}

.news-empty p {
  margin: 0;
}

.programs-empty {
  grid-column: 1 / -1;
  padding: 28px;
  border: 1px solid #c5c6cd;
  border-radius: 8px;
  background: #fff;
  color: #44474d;
}

.programs-empty p {
  margin: 0;
}

.program-archive-section {
  background: #f7fafc;
}

.program-archive-section .breadcrumb {
  padding-top: 0;
}

.program-archive-section .breadcrumb .container {
  max-width: none;
  padding: 0;
}

.program-archive-grid {
  margin-top: 24px;
}

.program-pagination {
  margin-top: 44px;
}

.single-program-body {
  background: #f7fafc;
}

.single-program-body .breadcrumb {
  padding-top: 0;
}

.single-program-body .breadcrumb .container {
  max-width: none;
  padding: 0;
}

.single-program-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 0 0 32px;
}

.single-program-meta-item {
  padding: 22px;
  border: 1px solid #c5c6cd;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(10, 25, 47, 0.05);
}

.single-program-meta-item span {
  display: block;
  margin-bottom: 8px;
  color: #a04100;
  font-size: 12px;
  font-weight: 800;
}

.single-program-meta-item strong {
  display: block;
  color: #181c1e;
  font-family: var(--font-heading);
  font-size: 20px;
}

.single-program-layout {
  display: grid;
  gap: 28px;
  max-width: 920px;
  margin: 0 auto;
}

.single-program-content,
.program-application-panel {
  border: 1px solid #c5c6cd;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(10, 25, 47, 0.05);
}

.single-program-content {
  padding: 36px;
}

.program-application-panel {
  padding: 30px;
}

.program-application-panel h2 {
  margin: 0 0 16px;
  color: #0d1c32;
  font-family: var(--font-heading);
  font-size: 24px;
}

.program-application-panel p {
  margin: 0 0 22px;
  color: #44474d;
  line-height: 1.75;
}

.program-application-panel .btn {
  width: auto;
}

.program-application-form form {
  display: grid;
  gap: 16px;
}

.program-application-form input,
.program-application-form select,
.program-application-form textarea {
  width: 100%;
  border-radius: 4px;
  border-color: #c5c6cd;
  background: #f7fafc;
}

.program-application-form input[type="submit"],
.program-application-form button[type="submit"] {
  border: 0;
  border-radius: 4px;
  background: #fe6b00;
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}

.news-archive-hero {
  min-height: 360px;
}

.news-archive-section {
  background: #f7fafc;
}

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

.news-archive-card {
  margin: 0;
}

.news-archive-card-link {
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #c5c6cd;
  border-radius: 8px;
  background: #fff;
  color: #181c1e;
  box-shadow: 0 8px 24px rgba(10, 25, 47, 0.05);
}

.news-archive-card-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(13, 28, 50, 0.12);
}

.news-archive-media {
  aspect-ratio: 16 / 10;
  margin: 0;
  overflow: hidden;
  background: #0d1c32;
}

.news-archive-media img,
.news-archive-placeholder {
  width: 100%;
  height: 100%;
}

.news-archive-media img {
  display: block;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.news-archive-card-link:hover .news-archive-media img {
  transform: scale(1.045);
}

.news-archive-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0d1c32, #39475f);
  color: #ffdbcc;
}

.news-archive-placeholder .material-symbols-outlined {
  font-size: 54px;
}

.news-archive-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 26px;
}

.news-archive-content h2 {
  margin: 16px 0 12px;
  color: #181c1e;
  font-family: var(--font-heading);
  font-size: 22px;
  line-height: 1.45;
}

.news-archive-content p {
  margin: 0 0 24px;
  color: #44474d;
  line-height: 1.75;
}

.news-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  color: #a04100;
  font-weight: 800;
}

.news-read-more .material-symbols-outlined {
  color: #fe6b00;
  transition: transform 0.2s ease;
}

.news-archive-card-link:hover .news-read-more .material-symbols-outlined {
  transform: translateX(4px);
}

.news-pagination {
  margin-top: 44px;
}

.feature-title,
.card-title,
.program-card .card-title {
  color: #181c1e;
  font-family: var(--font-heading);
  font-weight: 700;
}

.program-card .card-image-placeholder,
.service-card .card-image-placeholder,
.about-preview-image-placeholder {
  background: linear-gradient(135deg, #0d1c32, #001847);
}

.program-meta span {
  border-radius: 999px;
}

.stitch-page-hero {
  position: relative;
  min-height: 440px;
  display: flex;
  align-items: flex-end;
  padding: 128px 0 72px;
  overflow: hidden;
  background: #0d1c32;
}

.stitch-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(13, 28, 50, 0.96), rgba(13, 28, 50, 0.78));
  z-index: 0;
}

.stitch-page-hero .page-hero-content {
  position: relative;
  z-index: 1;
  text-align: left;
}

.stitch-kicker {
  display: inline-flex;
  align-items: center;
  margin-bottom: 14px;
  color: #a04100;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.stitch-page-hero .stitch-kicker {
  color: #ffdbcc;
}

.stitch-page-hero .page-title {
  max-width: 880px;
  margin-bottom: 18px;
  color: #fff;
  font-family: var(--font-heading);
  font-size: clamp(2.35rem, 5.4vw, 4.5rem);
  font-weight: 800;
  line-height: 1.08;
}

.stitch-page-hero .page-subtitle {
  max-width: 680px;
  margin: 0;
  color: #d6e3ff;
  font-size: 18px;
  line-height: 1.75;
}

.page-hero-cta {
  margin-top: 32px;
}

.stitch-process-grid,
.camp-benefits-grid,
.facility-grid,
.faq-list {
  display: grid;
  gap: 22px;
}

.stitch-process-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stitch-step-card,
.camp-benefit-card,
.facility-card,
.faq-item,
.contact-info-card,
.contact-form-wrapper,
.contact-form-placeholder {
  border: 1px solid #c5c6cd;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(10, 25, 47, 0.05);
}

.stitch-step-card {
  position: relative;
  padding: 28px 24px;
  text-align: left;
}

.stitch-step-card .step-number {
  position: static;
  width: auto;
  height: auto;
  margin-bottom: 18px;
  background: transparent;
  color: #a04100;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
}

.stitch-step-card .step-icon {
  width: 48px;
  height: 48px;
  margin: 0 0 22px;
  border-radius: 8px;
  background: #ffdbcc;
  color: #a04100;
}

.stitch-step-card .step-title {
  margin-bottom: 12px;
  color: #181c1e;
  font-family: var(--font-heading);
  font-size: 20px;
}

.stitch-step-card .step-text {
  margin: 0;
  color: #44474d;
  line-height: 1.75;
}

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

.camp-benefit-card {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 20px;
  padding: 28px;
}

.camp-benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 8px;
  background: #d6e3ff;
  color: #0d1c32;
}

.camp-benefit-card h3 {
  margin: 0 0 8px;
  color: #181c1e;
  font-family: var(--font-heading);
  font-size: 20px;
}

.camp-benefit-card p {
  grid-column: 2;
  margin: 0;
  color: #44474d;
  line-height: 1.75;
}

.facility-grid {
  grid-template-columns: 1.15fr 1fr 1fr;
}

.facility-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  overflow: hidden;
  background:
    linear-gradient(to bottom, rgba(13, 28, 50, 0.3), rgba(13, 28, 50, 0.9)),
    linear-gradient(135deg, #39475f, #0d1c32);
  color: #fff;
}

.facility-card:first-child {
  min-height: 420px;
}

.facility-card span {
  color: #ffdbcc;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.facility-card h3 {
  margin: 8px 0 12px;
  color: #fff;
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.4vw, 2rem);
}

.facility-card p {
  margin: 0;
  color: #d6e3ff;
  line-height: 1.7;
}

.contact-grid {
  align-items: start;
  gap: 36px;
}

.contact-section-title {
  margin-bottom: 24px;
  color: #0d1c32;
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  font-weight: 800;
}

.contact-info-card,
.contact-form-wrapper,
.contact-form-placeholder {
  padding: 32px;
}

.placeholder-notice {
  margin: 0 0 24px;
  padding: 14px 16px;
  border-left: 4px solid #fe6b00;
  background: #fff1ea;
  color: #a04100;
  font-weight: 700;
}

.placeholder-form input,
.placeholder-form select,
.placeholder-form textarea,
.contact-form-wrapper input,
.contact-form-wrapper select,
.contact-form-wrapper textarea {
  border-radius: 4px;
  border-color: #c5c6cd;
  background: #f7fafc;
}

.contact-info-item {
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid #e0e3e5;
}

.contact-info-item:last-child {
  border-bottom: 0;
}

.contact-info-icon {
  border-radius: 8px;
  background: #ffdbcc;
  color: #a04100;
}

.faq-list {
  max-width: 900px;
}

.faq-item {
  padding: 0;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 26px;
  color: #181c1e;
  font-family: var(--font-heading);
  font-weight: 800;
  cursor: pointer;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary .material-symbols-outlined {
  flex: 0 0 auto;
  color: #a04100;
  transition: transform 0.2s ease;
}

.faq-item[open] summary .material-symbols-outlined {
  transform: rotate(180deg);
}

.faq-item p {
  margin: 0;
  padding: 0 26px 24px;
  color: #44474d;
  line-height: 1.75;
}

.contact-response-section {
  padding-top: 64px;
}

.response-note {
  padding: 42px;
  border-radius: 8px;
  background: #0d1c32;
  color: #fff;
  text-align: left;
}

.response-note h2 {
  margin: 0 0 12px;
  color: #fff;
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.response-note p {
  margin: 0;
  color: #d6e3ff;
}

.card-icon-placeholder .material-symbols-outlined {
  font-size: 44px;
  color: #fff;
}

.cta-section {
  background: #0d1c32;
  text-align: left;
}

.cta-content {
  max-width: 760px;
}

.cta-title,
.cta-section h2 {
  color: #fff;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
}

.cta-subtitle,
.cta-section p {
  max-width: 680px;
  margin-left: 0;
  color: #b9c7e4;
}

.camp-steps {
  display: grid;
  gap: 14px;
  margin: 28px 0 32px;
  padding: 0;
  list-style: none;
}

.camp-steps li {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  font-weight: 700;
}

.camp-steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: #fe6b00;
  border-radius: 999px;
  color: #fff;
  font-size: 13px;
}

.site-footer {
  background: #e0e3e5;
  color: #44474d;
}

.site-footer::before {
  content: none;
}

.footer-col h4,
.footer-col h3,
.footer-site-title,
.footer-site-title a {
  color: #0d1c32;
}

.footer-col h4::after,
.footer-col h3::after {
  background: #fe6b00;
}

.footer-col ul a,
.footer-contact-item,
.footer-contact-item a,
.footer-company-name,
.footer-copyright {
  color: #44474d;
}

.footer-social .social-link {
  background: #fff;
  border-color: #c5c6cd;
  color: #0d1c32;
}

.back-to-top {
  background: #fe6b00;
  box-shadow: 0 12px 28px rgba(160, 65, 0, 0.22);
}

.nav-toggle span {
  background: #0d1c32;
}

body.menu-open .nav-toggle span {
  background: #fff;
}

@media (max-width: 1023px) {
  .site-nav {
    background: #0d1c32;
  }

  .site-nav .menu-item a {
    color: #fff;
  }

  .stitch-process-grid,
  .camp-benefits-grid,
  .facility-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .facility-card:first-child {
    min-height: 300px;
  }

  .news-item-link {
    grid-template-columns: 160px minmax(0, 1fr) auto;
  }

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

  .single-program-layout {
    max-width: none;
  }
}

@media (max-width: 767px) {
  .hero-section {
    min-height: 720px;
    padding-bottom: 48px;
  }

  .hero-content {
    padding-top: 96px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-cta {
    flex-direction: column;
  }

  .hero-cta .btn {
    width: 100%;
  }

  .section {
    padding: 64px 0;
  }

  .stitch-page-hero {
    min-height: 420px;
    padding: 112px 0 56px;
  }

  .stitch-page-hero .page-title {
    font-size: 2.15rem;
  }

  .stitch-page-hero .page-subtitle {
    font-size: 16px;
  }

  .news-section-layout {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .news-item-link {
    grid-template-columns: 1fr auto;
    gap: 10px 16px;
    padding: 18px 0;
  }

  .news-item-meta {
    grid-column: 1 / -1;
  }

  .news-archive-grid {
    grid-template-columns: 1fr;
  }

  .single-program-meta {
    grid-template-columns: 1fr;
  }

  .single-program-content,
  .program-application-panel {
    padding: 24px;
  }

  .stitch-process-grid,
  .camp-benefits-grid,
  .facility-grid {
    grid-template-columns: 1fr;
  }

  .camp-benefit-card {
    grid-template-columns: 1fr;
  }

  .camp-benefit-card p {
    grid-column: 1;
  }

  .contact-info-card,
  .contact-form-wrapper,
  .contact-form-placeholder,
  .response-note {
    padding: 24px;
  }

  .faq-item summary {
    align-items: flex-start;
    padding: 20px;
  }

  .faq-item p {
    padding: 0 20px 22px;
  }
}

/* Stronger Stitch page reproduction */
.stitch-page-hero {
  background-image:
    linear-gradient(90deg, rgba(13, 28, 50, 0.96) 0%, rgba(13, 28, 50, 0.68) 58%, rgba(13, 28, 50, 0.35) 100%),
    var(--stitch-hero-image, linear-gradient(135deg, #0d1c32, #39475f));
  background-position: center;
  background-size: cover;
}

.stitch-page-hero::before {
  background: linear-gradient(to bottom, rgba(13, 28, 50, 0.06), rgba(13, 28, 50, 0.52));
}

.stitch-contact-form .form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.contact-form-placeholder {
  text-align: left;
}

.stitch-contact-form label {
  color: #44474d;
  font-size: 14px;
  font-weight: 800;
}

.stitch-contact-form input,
.stitch-contact-form select,
.stitch-contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #c5c6cd;
  border-radius: 8px;
  background: #fff;
  color: #181c1e;
  font-family: var(--font-body);
}

.stitch-contact-form input:focus,
.stitch-contact-form select:focus,
.stitch-contact-form textarea:focus {
  border-color: #fe6b00;
  box-shadow: 0 0 0 4px rgba(254, 107, 0, 0.14);
  outline: none;
}

.stitch-office-card {
  background: #0d1c32;
  color: #fff;
}

.stitch-office-card .contact-info-item {
  border-bottom-color: rgba(214, 227, 255, 0.18);
}

.stitch-office-card .contact-info-icon {
  background: transparent;
  color: #ffb693;
}

.stitch-office-card .contact-info-icon .material-symbols-outlined {
  font-size: 30px;
}

.stitch-office-card .contact-info-content h3 {
  color: #b9c7e4;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stitch-office-card .contact-info-content p,
.stitch-office-card .contact-info-content a,
.stitch-office-card .text-small {
  color: #fff;
}

.journey-timeline {
  position: relative;
  display: grid;
  gap: 72px;
}

.journey-timeline::before {
  content: "";
  position: absolute;
  top: 24px;
  bottom: 24px;
  left: 24px;
  width: 2px;
  background: #c5c6cd;
}

.journey-step {
  position: relative;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 36px;
  align-items: center;
}

.journey-step.is-reversed {
  grid-template-columns: 56px minmax(320px, 0.9fr) minmax(0, 1fr);
}

.journey-step.is-reversed .journey-copy {
  grid-column: 3;
}

.journey-step.is-reversed .journey-media {
  grid-column: 2;
  grid-row: 1;
}

.journey-number {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 999px;
  background: #0d1c32;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
}

.journey-copy {
  padding: 8px 0;
}

.journey-copy .step-title {
  margin: 0 0 14px;
  color: #181c1e;
  font-family: var(--font-heading);
  font-size: 24px;
}

.journey-copy .step-text {
  color: #44474d;
  line-height: 1.8;
}

.journey-checks {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.journey-checks li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #181c1e;
  font-weight: 800;
}

.journey-checks .material-symbols-outlined {
  color: #fe6b00;
  font-variation-settings: 'FILL' 1, 'wght' 500, 'GRAD' 0, 'opsz' 24;
}

.journey-media {
  aspect-ratio: 16 / 10;
  margin: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 18px 40px rgba(13, 28, 50, 0.16);
}

.journey-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

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

.camp-bento-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 36px;
  overflow: hidden;
  border: 1px solid #c5c6cd;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(10, 25, 47, 0.05);
}

.camp-bento-card.wide {
  grid-column: span 2;
}

.camp-bento-card.dark {
  background: #0d1c32;
  color: #fff;
}

.camp-bento-card.media {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 28px;
  align-items: center;
}

.camp-bento-card img {
  width: 100%;
  height: 180px;
  border-radius: 8px;
  object-fit: cover;
}

.camp-bento-icon {
  margin-bottom: 22px;
  color: #fe6b00;
  font-size: 42px;
}

.camp-bento-card h3 {
  margin: 0 0 12px;
  color: inherit;
  font-family: var(--font-heading);
  font-size: 24px;
}

.camp-bento-card p {
  margin: 0;
  color: #44474d;
  line-height: 1.75;
}

.camp-bento-card.dark p {
  color: #b9c7e4;
}

.facility-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 48px;
}

.facility-section-head .section-header {
  margin-bottom: 0;
}

.facility-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.facility-filters span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 18px;
  border: 1px solid #c5c6cd;
  border-radius: 999px;
  background: #fff;
  color: #181c1e;
  font-size: 14px;
  font-weight: 800;
}

.facility-filters span:first-child {
  background: #0d1c32;
  border-color: #0d1c32;
  color: #fff;
}

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

.facility-bento-grid .facility-card {
  position: relative;
  min-height: 390px;
  display: block;
  grid-column: span 4;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: #0d1c32;
  box-shadow: 0 12px 30px rgba(13, 28, 50, 0.16);
}

.facility-bento-grid .facility-card.wide {
  grid-column: span 8;
}

.facility-bento-grid .facility-card img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.facility-bento-grid .facility-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 28, 50, 0.92), rgba(13, 28, 50, 0.12));
}

.facility-bento-grid .facility-card:hover img {
  transform: scale(1.045);
}

.facility-card-content {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  padding: 30px;
}

.facility-card-content span {
  color: #ffdbcc;
}

.facility-card-content h3 {
  color: #fff;
}

.facility-card-content p {
  max-width: 560px;
  color: #d6e3ff;
}

@media (max-width: 1023px) {
  .journey-step,
  .journey-step.is-reversed {
    grid-template-columns: 56px minmax(0, 1fr);
  }

  .journey-step.is-reversed .journey-copy,
  .journey-step.is-reversed .journey-media {
    grid-column: auto;
    grid-row: auto;
  }

  .journey-media {
    grid-column: 2;
  }

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

  .camp-bento-card.wide,
  .camp-bento-card.media {
    grid-column: span 2;
  }

  .facility-section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .facility-filters {
    justify-content: flex-start;
  }

  .facility-bento-grid .facility-card,
  .facility-bento-grid .facility-card.wide {
    grid-column: span 6;
  }
}

@media (max-width: 767px) {
  .stitch-contact-form .form-row,
  .camp-bento-card.media {
    grid-template-columns: 1fr;
  }

  .journey-timeline {
    gap: 48px;
  }

  .journey-step,
  .journey-step.is-reversed {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 18px;
  }

  .journey-number {
    width: 42px;
    height: 42px;
    font-size: 17px;
  }

  .journey-copy .step-title {
    font-size: 21px;
  }

  .camp-bento-grid,
  .facility-bento-grid {
    grid-template-columns: 1fr;
  }

  .camp-bento-card,
  .camp-bento-card.wide,
  .camp-bento-card.media,
  .facility-bento-grid .facility-card,
  .facility-bento-grid .facility-card.wide {
    grid-column: 1;
  }

  .camp-bento-card {
    min-height: auto;
    padding: 28px;
  }

  .facility-bento-grid .facility-card,
  .facility-bento-grid .facility-card img {
    min-height: 340px;
  }

  .facility-card-content {
    padding: 24px;
  }
}
