/* ===== Fonts ===== */
@font-face {
  font-family: 'Dela Gothic One';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/dela-gothic-one.ttf') format('truetype');
}
@font-face {
  font-family: 'Noto Sans JP';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/noto-sans-jp-400.ttf') format('truetype');
}
@font-face {
  font-family: 'Noto Sans JP';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/noto-sans-jp-500.ttf') format('truetype');
}
@font-face {
  font-family: 'Noto Sans JP';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/noto-sans-jp-700.ttf') format('truetype');
}
@font-face {
  font-family: 'Noto Sans JP';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url('../fonts/noto-sans-jp-900.ttf') format('truetype');
}

/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Noto Sans JP', sans-serif;
  color: #2D2A26;
  background: #FFFBF0;
  overflow-x: hidden;
  line-height: 1.7;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; border: none; cursor: pointer; }
h1,h2,h3,h4,h5,h6{
  font-weight: 500;
}

:where(a, button):focus-visible {
  outline: 3px solid var(--fresh-green);
  outline-offset: 4px;
}

/* ===== Variables ===== */
:root {
  --vitamin-yellow: #FFD60A;
  --vitamin-orange: #F5A623;
  --pop-red: #E8363A;
  --fresh-green: #6BCB77;
  --cream: #FFFBF0;
  --charcoal: #2D2A26;
  --light-yellow: #FFF8E1;
  --light-green: #E8F5E9;
  --light-red: #FFEBEE;
  --font-display: 'Dela Gothic One', sans-serif;
  --font-body: 'Noto Sans JP', sans-serif;
}

/* ===== Utility ===== */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

section { scroll-margin-top: 80px; }

/* ===== Scrollbar ===== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #FFF8E1; }
::-webkit-scrollbar-thumb { background: var(--pop-red); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #c62828; }

/* ===== Animations ===== */
@keyframes float-slow { 0%,100%{transform:translateY(0) rotate(0deg)} 50%{transform:translateY(-20px) rotate(5deg)} }
@keyframes float-medium { 0%,100%{transform:translateY(0) rotate(0deg)} 50%{transform:translateY(-15px) rotate(-3deg)} }
@keyframes float-fast { 0%,100%{transform:translateY(0) rotate(0deg)} 50%{transform:translateY(-10px) rotate(4deg)} }
@keyframes float-reverse { 0%,100%{transform:translateY(0) rotate(0deg)} 50%{transform:translateY(20px) rotate(-5deg)} }
@keyframes float-badge { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
@keyframes float-badge-alt { 0%,100%{transform:translateY(0)} 50%{transform:translateY(8px)} }
@keyframes fadeInUp { from{opacity:0;transform:translateY(40px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeInRight { from{opacity:0;transform:translateX(40px)} to{opacity:1;transform:translateX(0)} }
@keyframes scaleIn { from{opacity:0;transform:scale(0.9)} to{opacity:1;transform:scale(1)} }

.anim-float-slow { animation: float-slow 8s ease-in-out infinite; }
.anim-float-medium { animation: float-medium 5s ease-in-out infinite; }
.anim-float-fast { animation: float-fast 3s ease-in-out infinite; }
.anim-float-reverse { animation: float-reverse 6s ease-in-out infinite; }

/* Scroll-triggered animation */
.reveal { opacity: 1; transform: translateY(0); transition: opacity 0.7s ease, transform 0.7s ease; }
.js .reveal { opacity: 0; transform: translateY(40px); }
.js .reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ===== Memphis Shapes (shared) ===== */
.memphis-layer { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.memphis-shape { position: absolute; }

/* ===== HEADER ===== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background 0.3s, box-shadow 0.3s;
}
.site-header.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(232,54,58,0.05);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
@media (min-width: 768px) { .header-inner { height: 80px; } }
.logo-link { display: flex; align-items: center; gap: 0.5rem; transition: transform 0.2s; }
.logo-link:hover { transform: scale(1.05); }
.logo-img { width: 40px; height: 40px; object-fit: contain; border-radius: 6px; }
@media (min-width: 768px) { .logo-img { width: 48px; height: 48px; } }
.logo-text { font-family: var(--font-display); font-size: 0.875rem; color: var(--charcoal); display: none; }
@media (min-width: 640px) { .logo-text { display: block; } }

.desktop-nav { display: none; align-items: center; gap: 0.25rem; }
@media (min-width: 960px) { .desktop-nav { display: flex; } }
.desktop-nav-list,
.mobile-nav-list,
.footer-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.desktop-nav-list {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.desktop-nav-list li {
  margin: 0;
}
.nav-link {
  position: relative; padding: 0.5rem 1rem; font-family: var(--font-display);
  font-size: 0.875rem; color: rgba(45,42,38,0.8); transition: color 0.3s;
}
.nav-link:hover { color: var(--pop-red); }
.nav-link::after {
  content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 0; height: 2px; background: var(--pop-red); border-radius: 2px; transition: width 0.3s;
}
.nav-link:hover::after { width: 75%; }

/* Mobile menu */
.mobile-menu-btn { display: block; padding: 0.5rem; background: none; color: var(--charcoal); }
@media (min-width: 960px) { .mobile-menu-btn { display: none; } }
.mobile-menu-btn svg { width: 24px; height: 24px; }
.mobile-menu-btn .is-hidden { display: none; }
.mobile-menu {
  display: none; position: absolute; top: 100%; left: 0; right: 0;
  background: rgba(255,255,255,0.98); backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,214,10,0.3); padding: 1rem;
}
.mobile-menu.open { display: block; }
@media (min-width: 960px) { .mobile-menu, .mobile-menu.open { display: none; } }
.mobile-nav-list li {
  margin: 0;
}
.mobile-nav-link {
  display: block; padding: 0.75rem 1rem; font-family: var(--font-display);
  font-size: 1rem; color: var(--charcoal); border-radius: 0.5rem; transition: all 0.2s;
}
.mobile-nav-link:hover { color: var(--pop-red); background: var(--light-yellow); }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100vh; min-height: 100svh; display: flex; align-items: center;
  padding-top: 80px; padding-bottom: 3rem; overflow: hidden;
  background: linear-gradient(135deg, #FFFBF0 0%, #FFF8E1 50%, #FFFBF0 100%);
}
.hero-grid {
  display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: center;
}
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 1fr 1fr; } }
.hero-text { order: 2; }
@media (min-width: 1024px) { .hero-text { order: 1; } }
.hero-badge {
  display: inline-block; padding: 0.375rem 1rem; background: var(--pop-red);
  color: #fff; font-size: 0.75rem; font-family: var(--font-display);
  border-radius: 9999px; margin-bottom: 1.5rem; transform: rotate(-2deg);
}
.hero-title {
  font-family: var(--font-display); font-size: clamp(2.25rem, 11vw, 2.5rem); line-height: 1.15;
  color: var(--charcoal); margin-bottom: 1.5rem;
}
@media (min-width: 640px) { .hero-title { font-size: 3rem; } }
@media (min-width: 1024px) { .hero-title { font-size: 3.75rem; } }
@media (min-width: 1280px) { .hero-title { font-size: 4.5rem; } }
.hero-title .red { color: var(--pop-red); }
.hero-title .underline-wrap { position: relative; display: inline-block; }
.hero-title .underline-svg { position: absolute; bottom: -4px; left: 0; width: 100%; }
.hero-desc { color: rgba(45,42,38,0.7); font-size: 1rem; line-height: 1.8; margin-bottom: 2rem; max-width: 32rem; }
@media (min-width: 768px) { .hero-desc { font-size: 1.125rem; } }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 1rem; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.875rem 1.5rem; background: var(--pop-red); color: #fff;
  font-family: var(--font-display); font-weight: 500; font-size: 0.9rem;
  border-radius: 9999px; transition: all 0.3s;
}
.btn-primary:hover { background: #c62828; box-shadow: 0 8px 24px rgba(232,54,58,0.25); transform: translateY(-2px); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.875rem 1.5rem; background: #fff; color: var(--charcoal);
  font-family: var(--font-display); font-weight: 500; font-size: 0.9rem;
  border: 3px solid var(--charcoal); border-radius: 9999px; transition: all 0.3s;
}
.btn-outline:hover { background: var(--vitamin-yellow); border-color: var(--vitamin-yellow); transform: translateY(-2px); }

.hero-image { order: 1; position: relative; }
@media (min-width: 1024px) { .hero-image { order: 2; } }
.hero-frame { position: relative; }
.hero-frame-border1 {
  position: absolute; inset: -12px; border: 4px solid rgba(232,54,58,0.3);
  border-radius: 1.5rem; transform: rotate(2deg);
}
.hero-frame-border2 {
  position: absolute; inset: -12px; border: 4px solid rgba(107,203,119,0.2);
  border-radius: 1.5rem; transform: rotate(-1deg);
}
@media (min-width: 768px) { .hero-frame-border1, .hero-frame-border2 { inset: -16px; } }
.hero-img-wrap {
  position: relative; aspect-ratio: 16 / 9; border-radius: 1rem; overflow: hidden;
  box-shadow: 0 25px 50px rgba(45,42,38,0.1);
}
.hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.hero-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(255,214,10,0.1), transparent);
}
.hero-floating-badge {
  position: absolute; padding: 0.5rem 1rem; font-family: var(--font-display);
  font-size: clamp(0.9rem, 4vw, 1.4rem); font-weight: 500; border-radius: 0.75rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.badge-yellow { bottom: -12px; left: 8px; background: var(--vitamin-yellow); color: var(--charcoal); transform: rotate(-3deg); animation: float-badge 3s ease-in-out infinite; }
.badge-green { top: -12px; right: 8px; background: var(--fresh-green); color: #fff; transform: rotate(3deg); animation: float-badge-alt 4s ease-in-out infinite; }
@media (min-width: 768px) { .badge-yellow { bottom: -24px; left: -24px; } .badge-green { top: -20px; right: -20px; } }

.hero-wave { position: absolute; bottom: 0; left: 0; right: 0; }
.hero-wave svg { width: 100%; display: block; }

/* Hero Slideshow Thumbnails */
.hero-thumbs {
  display: flex; justify-content: center; gap: clamp(0.5rem, 3vw, 1rem);
  margin-top: 1.5rem; padding: 0 1rem;
}
.hero-thumb {
  width: clamp(88px, 27vw, 100px); height: clamp(62px, 19vw, 72px); border-radius: 0.75rem; overflow: hidden;
  border: 3px solid rgba(45,42,38,0.15); cursor: pointer;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease,
              border-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  position: relative; background: #fff; padding: 0;
}
.hero-thumb:hover {
  border-color: var(--pop-red);
  box-shadow: 0 6px 20px rgba(232,54,58,0.2);
  z-index: 2;
}
.hero-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.3s ease;
}
.hero-thumb:hover img { transform: scale(1.1); }
@media (min-width: 640px) {
  .hero-thumbs { gap: 1.25rem; }
  .hero-thumb { width: 120px; height: 85px; }
}
@media (min-width: 1024px) {
  .hero-thumbs { gap: 1.5rem; }
  .hero-thumb { width: 140px; height: 100px; }
}
.hero-play-toggle {
  display: block;
  margin: 1rem auto 0;
  padding: 0.55rem 1rem;
  border: 2px solid rgba(45,42,38,0.16);
  border-radius: 999px;
  background: rgba(255,255,255,0.86);
  color: var(--charcoal);
  font-family: var(--font-display);
  font-size: 0.8rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
}
.hero-play-toggle:hover,
.hero-play-toggle:focus-visible {
  border-color: var(--pop-red);
  color: var(--pop-red);
  transform: translateY(-1px);
}

/* Main image transition support */
#heroMainWrap {
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
}

/* Decorative blurs */
.hero-blur1 { position: absolute; right: -128px; top: -128px; width: 500px; height: 500px; border-radius: 50%; background: rgba(255,214,10,0.2); filter: blur(48px); }
.hero-blur2 { position: absolute; left: -80px; bottom: 0; width: 300px; height: 300px; border-radius: 50%; background: rgba(107,203,119,0.1); filter: blur(32px); }

/* ===== SECTION HEADING ===== */
.section-heading { margin-bottom: 2.5rem; text-align: center; }
@media (min-width: 768px) { .section-heading { margin-bottom: 3.5rem; } }
.section-heading .subtitle {
  display: inline-block; font-family: var(--font-display); font-size: 0.75rem;
  letter-spacing: 0.2em; margin-bottom: 0.5rem;
}
.section-heading .subtitle.dark { color: rgba(45,42,38,0.5); }
.section-heading .subtitle.light { color: rgba(255,255,255,0.5); }
.section-heading .title {
  font-family: var(--font-display); font-size: 2.25rem; line-height: 1.2;
}
@media (min-width: 768px) { .section-heading .title { font-size: 3rem; } }
.section-heading .title.dark { color: var(--charcoal); }
.section-heading .title.light { color: #fff; }
.heading-deco {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem; margin-top: 0.75rem;
}
.heading-deco .line { width: 2rem; height: 4px; border-radius: 2px; }
.heading-deco .dot { width: 8px; height: 8px; border-radius: 50%; }

/* ===== NEWS ===== */
.news-section { padding: 4rem 0; position: relative; background: var(--cream); }
@media (min-width: 768px) { .news-section { padding: 6rem 0; } }
.news-list { max-width: 48rem; margin: 0 auto; display: flex; flex-direction: column; gap: 1rem; }
.news-item {
  display: flex; flex-direction: column; gap: 0.5rem; padding: 1rem 1.25rem;
  background: #fff; border-radius: 0.75rem; border: 2px solid transparent;
  transition: all 0.3s;
}
@media (min-width: 640px) { .news-item { flex-direction: row; align-items: center; gap: 1rem; } }
.news-item:hover { border-color: rgba(232,54,58,0.2); box-shadow: 0 4px 16px rgba(0,0,0,0.06); }
.news-meta { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }
.news-date { color: rgba(45,42,38,0.4); font-size: 0.875rem; font-weight: 500; }
.news-category {
  font-size: 0.75rem; font-weight: 500; color: #fff; padding: 0.125rem 0.625rem;
  border-radius: 9999px;
}
.news-title {
  font-size: 0.875rem; color: rgba(45,42,38,0.8); font-weight: 500;
  transition: color 0.3s; overflow-wrap: anywhere; min-width: 0; flex: 1;
}
@media (min-width: 640px) { .news-title { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } }
@media (min-width: 768px) { .news-title { font-size: 1rem; } }
.news-item:hover .news-title { color: var(--pop-red); }
.news-arrow { display: none; margin-left: auto; color: rgba(45,42,38,0.2); flex-shrink: 0; transition: color 0.3s; }
@media (min-width: 640px) { .news-arrow { display: block; } }
.news-item:hover .news-arrow { color: var(--pop-red); }

/* ===== ABOUT ===== */
.about-section { padding: 4rem 0; background: var(--vitamin-yellow); position: relative; overflow: hidden; }
@media (min-width: 768px) { .about-section { padding: 6rem 0; } }
.about-inner { max-width: 56rem; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.about-title-sub {
  font-family: var(--font-display); font-size: 0.75rem; letter-spacing: 0.2em;
  color: rgba(45,42,38,0.6); margin-bottom: 0.5rem;
}
.about-title {
  font-family: var(--font-display); font-size: 2rem; color: var(--charcoal);
  margin-bottom: 2rem; line-height: 1.3;
}
@media (min-width: 768px) { .about-title { font-size: 2.5rem; } }
@media (min-width: 1024px) { .about-title { font-size: 3rem; } }
.about-card {
  background: rgba(255,255,255,0.8); backdrop-filter: blur(8px);
  border-radius: 1rem; padding: 2rem; border: 3px solid rgba(45,42,38,0.1);
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}
@media (min-width: 768px) { .about-card { padding: 3rem; } }
.about-card p { color: rgba(45,42,38,0.8); font-size: 1rem; line-height: 2; }
@media (min-width: 768px) { .about-card p { font-size: 1.125rem; line-height: 2.2; } }
.about-card strong.red { color: var(--pop-red); }
.about-card strong.green { color: var(--fresh-green); }
.about-divider { position: absolute; bottom: 0; left: 0; right: 0; }
.about-divider svg { width: 100%; display: block; }

/* ===== SERVICE ===== */
.service-section { padding: 4rem 0; background: var(--cream); position: relative; }
@media (min-width: 768px) { .service-section { padding: 6rem 0; } }
.service-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; max-width: 64rem; margin: 0 auto; }
@media (min-width: 768px) { .service-grid { grid-template-columns: 1fr 1fr; } }
.service-card {
  position: relative; background: #fff; border-radius: 1rem; padding: 1.5rem 2rem;
  border: 3px solid transparent; transition: all 0.3s; overflow: hidden;
}
.service-card:hover { border-color: currentColor; box-shadow: 0 12px 32px rgba(0,0,0,0.08); transform: translateY(-4px); }
.service-icon {
  width: 56px; height: 56px; border-radius: 0.75rem; display: flex;
  align-items: center; justify-content: center; margin-bottom: 1.25rem;
  transition: transform 0.3s;
}
.service-card:hover .service-icon { transform: scale(1.1); }
.service-icon svg { width: 28px; height: 28px; color: #fff; }
.service-card h3 { font-family: var(--font-display); font-size: 1.25rem; margin-bottom: 0.75rem; }
@media (min-width: 768px) { .service-card h3 { font-size: 1.5rem; } }
.service-card p { color: rgba(45,42,38,0.6); font-size: 0.875rem; line-height: 1.7; }
.service-corner {
  position: absolute; top: 0; right: 0; width: 64px; height: 64px;
  border-bottom-left-radius: 1.5rem; border-top-right-radius: 1rem;
  opacity: 0.5; transition: opacity 0.3s;
}
.service-card:hover .service-corner { opacity: 1; }

/* ===== WORKS ===== */
.works-section { padding: 4rem 0; background: var(--charcoal); position: relative; overflow: hidden; }
@media (min-width: 768px) { .works-section { padding: 4rem 0 9rem; } }
.works-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; max-width: 64rem; margin: 0 auto; }
@media (min-width: 768px) { .works-grid { grid-template-columns: repeat(3, 1fr); } }
.work-card {
  position: relative; background: rgba(255,255,255,0.05); backdrop-filter: blur(4px);
  border-radius: 1rem; overflow: hidden; border: 2px solid rgba(255,255,255,0.1);
  transition: all 0.3s;
}
.work-card:hover { border-color: rgba(255,214,10,0.4); transform: translateY(-8px); }
.work-img { position: relative; height: 192px; overflow: hidden; }
.work-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.work-card:hover .work-img img { transform: scale(1.05); }
.work-tag {
  position: absolute; top: 12px; left: 12px; font-size: 0.75rem; font-weight: 500;
  color: #fff; padding: 0.25rem 0.75rem; border-radius: 9999px;
}
.work-content { padding: 1.25rem; }
.work-content .category { color: rgba(255,255,255,0.4); font-size: 0.75rem; margin-bottom: 0.25rem; }
.work-content h3 {
  font-family: var(--font-display); color: #fff; font-size: 1.125rem;
  margin-bottom: 0.5rem; transition: color 0.3s;
}
.work-card:hover .work-content h3 { color: var(--vitamin-yellow); }
.work-content p { color: rgba(255,255,255,0.5); font-size: 0.875rem; line-height: 1.6; }
.works-divider { position: absolute; bottom: 0; left: 0; right: 0; }
.works-divider svg { width: 100%; display: block; }

/* ===== CONCEPT ===== */
.concept-section { padding: 4rem 0; background: var(--cream); position: relative; overflow: hidden; }
@media (min-width: 768px) { .concept-section { padding: 6rem 0; } }
.concept-items { max-width: 64rem; margin: 0 auto; display: flex; flex-direction: column; gap: 3rem; }
@media (min-width: 768px) { .concept-items { gap: 5rem; } }
.concept-item { display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: center; }
@media (min-width: 768px) { .concept-item { grid-template-columns: 1fr 1fr; } }
.concept-img-wrap { position: relative; }
.concept-img-wrap img { width: 100%; height: 256px; object-fit: cover; border-radius: 1rem; }
@media (min-width: 768px) { .concept-img-wrap img { height: 320px; } }
.concept-img-wrap .border-frame { border: 4px solid; border-radius: 1rem; overflow: hidden; }
.concept-icon-badge {
  position: absolute; padding: 0.75rem; border-radius: 0.75rem; color: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.concept-label {
  display: inline-block; padding: 0.25rem 0.75rem; font-family: var(--font-display);
  font-size: 0.75rem; font-weight: 500; border-radius: 9999px; margin-bottom: 1rem;
}
.concept-item h3 { font-family: var(--font-display); font-size: 1.5rem; color: var(--charcoal); margin-bottom: 1rem; line-height: 1.4; }
@media (min-width: 768px) { .concept-item h3 { font-size: 1.875rem; } }
.concept-item .desc { color: rgba(45,42,38,0.7); line-height: 1.9; }

/* Concept item reverse order on desktop */
@media (min-width: 768px) {
  .concept-item.reverse .concept-text { order: 1; }
  .concept-item.reverse .concept-img-wrap { order: 2; }
}

/* ===== CONTACT CTA ===== */
.contact-section { padding: 4rem 0; background: var(--pop-red); position: relative; overflow: hidden; }
@media (min-width: 768px) { .contact-section { padding: 6rem 0; } }
.contact-inner { position: relative; z-index: 1; text-align: center; }
.contact-icon { display: flex; justify-content: center; margin-bottom: 1rem; color: var(--vitamin-yellow); }
.contact-icon svg { width: 32px; height: 32px; }
.contact-title { font-family: var(--font-display); font-size: 2rem; color: #fff; margin-bottom: 1rem; line-height: 1.3; }
@media (min-width: 768px) { .contact-title { font-size: 2.5rem; } }
@media (min-width: 1024px) { .contact-title { font-size: 3rem; } }
.contact-desc { color: rgba(255,255,255,0.8); font-size: 1rem; max-width: 36rem; margin: 0 auto 2rem; line-height: 1.8; }
@media (min-width: 768px) { .contact-desc { font-size: 1.125rem; } }
.contact-buttons { display: flex; flex-direction: column; gap: 1rem; justify-content: center; align-items: center; }
@media (min-width: 640px) { .contact-buttons { flex-direction: row; } }
.btn-white {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 1rem 2rem; background: #fff; color: var(--pop-red);
  font-family: var(--font-display); font-weight: 500; border-radius: 9999px;
  transition: all 0.3s;
}
.btn-white:hover { background: var(--vitamin-yellow); color: var(--charcoal); box-shadow: 0 8px 24px rgba(0,0,0,0.15); transform: translateY(-4px); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 1rem 2rem; background: transparent; color: #fff;
  font-family: var(--font-display); font-weight: 500; border-radius: 9999px;
  border: 3px solid rgba(255,255,255,0.4); transition: all 0.3s;
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: #fff; transform: translateY(-4px); }
.contact-circle1 { position: absolute; top: 40px; right: 40px; width: 128px; height: 128px; border: 4px solid rgba(255,255,255,0.1); border-radius: 50%; }
.contact-circle2 { position: absolute; bottom: 40px; left: 40px; width: 96px; height: 96px; border: 4px solid rgba(255,255,255,0.1); border-radius: 50%; }

/* ===== FOOTER ===== */
.site-footer { background: var(--charcoal); color: #fff; position: relative; overflow: hidden; }
.footer-top-bar { height: 6px; background: linear-gradient(to right, var(--pop-red), var(--vitamin-yellow), var(--fresh-green)); }
.footer-inner { padding: 3rem 0 2rem; }
@media (min-width: 768px) { .footer-inner { padding: 4rem 0 2rem; } }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr 1fr; gap: 2rem; } }
.footer-company-logo { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.footer-company-logo img { width: 48px; height: 48px; object-fit: contain; border-radius: 6px; }
.footer-company-logo h3 { font-family: var(--font-display); font-size: 1.125rem; }
.footer-company-logo .sub { color: rgba(255,255,255,0.5); font-size: 0.75rem; }
.footer-desc { color: rgba(255,255,255,0.6); font-size: 0.875rem; line-height: 1.7; margin-top: 1rem; }
.footer-nav-title { font-family: var(--font-display); font-size: 0.875rem; color: var(--vitamin-yellow); letter-spacing: 0.1em; margin-bottom: 1rem; }
.footer-nav-list li { margin: 0; }
.footer-nav a { display: block; color: rgba(255,255,255,0.6); font-size: 0.875rem; padding: 0.25rem 0; transition: color 0.3s; }
.footer-nav a:hover { color: var(--vitamin-yellow); }
.footer-social { display: flex; gap: 0.75rem; margin-bottom: 1.5rem; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6); transition: all 0.3s;
}
.footer-social a:hover { border-color: var(--vitamin-yellow); color: var(--vitamin-yellow); background: rgba(255,214,10,0.1); }
.footer-social a svg { width: 18px; height: 18px; }
.footer-contact-info { color: rgba(255,255,255,0.4); font-size: 0.75rem; line-height: 1.8; }
.footer-bottom {
  margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; flex-direction: column; gap: 1rem; align-items: center; justify-content: space-between;
}
@media (min-width: 640px) { .footer-bottom { flex-direction: row; } }
.footer-bottom .copyright { color: rgba(255,255,255,0.3); font-size: 0.75rem; }
.footer-bottom .links { display: flex; gap: 1rem; }
.footer-bottom .links a { color: rgba(255,255,255,0.3); font-size: 0.75rem; transition: color 0.3s; }
.footer-bottom .links a:hover { color: rgba(255,255,255,0.6); }

@media (max-width: 420px) {
  .hero { align-items: flex-start; padding-top: 76px; }
  .hero-grid { gap: 1.5rem; }
  .hero-buttons, .contact-buttons { align-items: stretch; }
  .btn-primary, .btn-outline, .btn-white, .btn-ghost { justify-content: center; width: 100%; }
  .about-card, .service-card, .work-content { padding: 1.25rem; }
  .footer-bottom .links { flex-wrap: wrap; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ===== WordPress integration ===== */
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.screen-reader-text:focus {
  top: 8px;
  left: 8px;
  z-index: 100000;
  width: auto;
  height: auto;
  padding: 0.75rem 1rem;
  clip: auto;
  color: var(--charcoal);
  background: #fff;
  border: 3px solid var(--fresh-green);
  border-radius: 0.5rem;
}
body.admin-bar .site-header { top: 32px; }
@media (max-width: 782px) { body.admin-bar .site-header { top: 46px; } }
.site-main { min-height: 60vh; }

.news-category.is-red, .work-tag.is-red { background: var(--pop-red); color: #fff; }
.news-category.is-green, .work-tag.is-green { background: var(--fresh-green); color: #fff; }
.news-category.is-yellow, .work-tag.is-yellow { background: var(--vitamin-yellow); color: var(--charcoal); }

.featured-service-section {
  position: relative;
  padding: 4rem 0;
  background: linear-gradient(135deg, #FFFBF0 0%, #FFF2B8 54%, #E9F9DD 100%);
  overflow: hidden;
}
@media (min-width: 768px) { .featured-service-section { padding: 6rem 0; } }
.featured-service-card {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  padding: 1.5rem;
  color: var(--charcoal);
  background: rgba(255,255,255,0.78);
  border: 3px solid rgba(232,54,58,0.24);
  border-radius: 1rem;
  box-shadow: 0 24px 60px rgba(232,54,58,0.12);
}
@media (min-width: 768px) {
  .featured-service-card {
    grid-template-columns: minmax(180px, 280px) 1fr;
    padding: 2rem 2.5rem;
  }
}
.featured-service-card:hover {
  border-color: var(--pop-red);
  transform: translateY(-4px);
}
.featured-service-logo {
  display: flex;
  justify-content: center;
}
.featured-service-logo img {
  width: min(220px, 70vw);
  aspect-ratio: 1;
  object-fit: contain;
  filter: drop-shadow(0 18px 35px rgba(45,42,38,0.18));
}
.featured-service-badge {
  display: inline-block;
  margin-bottom: 0.75rem;
  padding: 0.35rem 0.8rem;
  color: var(--charcoal);
  background: var(--vitamin-yellow);
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.75rem;
}
.featured-service-content h2 {
  margin-bottom: 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 7vw, 4rem);
  line-height: 1.15;
}
.featured-service-content p {
  margin-bottom: 1.5rem;
  color: rgba(45,42,38,0.76);
}
.featured-service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.15rem;
  color: #000;
  background: #fff;
  border: 4px solid #000;
  border-radius: 999px;
  font-family: var(--font-display);
  box-shadow: 5px 5px 0 #000;
  transition: transform 0.2s, box-shadow 0.2s;
}
.featured-service-card:hover .featured-service-link,
.featured-service-card:focus-visible .featured-service-link {
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 #000;
}

.page-hero {
  position: relative;
  padding: 7rem 0 4rem;
  background: linear-gradient(135deg, var(--cream), var(--light-yellow));
  overflow: hidden;
}
.page-hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.page-hero .subtitle {
  display: inline-block;
  margin-bottom: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: rgba(45,42,38,0.5);
}
.page-title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 8vw, 4rem);
  line-height: 1.2;
  color: var(--charcoal);
}
.page-section {
  padding: 4rem 0;
  background: var(--cream);
}
@media (min-width: 768px) { .page-section { padding: 6rem 0; } }
.narrow-content {
  max-width: 52rem;
}
.entry-content {
  color: rgba(45,42,38,0.78);
  line-height: 2;
}
.entry-content h2,
.legal-content h2,
.company-lead h2,
.contact-page-content h2,
.service-flow h2 {
  margin: 2rem 0 1rem;
  font-family: var(--font-display);
  color: var(--charcoal);
}
.entry-content p,
.legal-content p,
.company-lead p,
.contact-page-content p {
  margin-bottom: 1.25rem;
}
.empty-state {
  padding: 2rem;
  text-align: center;
  background: #fff;
  border: 3px solid rgba(45,42,38,0.08);
  border-radius: 1rem;
}
.empty-state h2,
.empty-state h3 {
  margin-bottom: 0.5rem;
  font-family: var(--font-display);
  color: var(--charcoal);
}
.empty-state-dark {
  max-width: 42rem;
  margin: 0 auto;
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
}
.empty-state-dark h3,
.empty-state-dark p { color: #fff; }

.work-card-link,
.member-card-link {
  display: block;
  height: 100%;
  color: inherit;
}
.work-card-link:hover { color: inherit; }
.archive-card {
  border-radius: 1rem;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 14px 34px rgba(45,42,38,0.08);
}
.archive-card-link {
  display: block;
  height: 100%;
  color: inherit;
}
.archive-card-link:hover {
  color: inherit;
}
.archive-card-body {
  padding: 1.5rem;
}
.archive-card-title {
  margin: 0.4rem 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
}
.archive-works-grid {
  max-width: none;
}
.article-content {
  background: #fff;
  border-radius: 1rem;
  padding: 1.5rem;
}
@media (min-width: 768px) { .article-content { padding: 3rem; } }
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 1.5rem;
  color: rgba(45,42,38,0.55);
}
.article-eyecatch {
  margin-bottom: 2rem;
  border-radius: 1rem;
  overflow: hidden;
}
.article-eyecatch img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.back-link {
  margin-top: 2rem;
}

.company-layout {
  display: grid;
  gap: 2rem;
}
.company-lead {
  max-width: 48rem;
}
.company-table {
  width: 100%;
  overflow: hidden;
  border-collapse: collapse;
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 12px 30px rgba(45,42,38,0.06);
}
.company-table th,
.company-table td {
  display: block;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(45,42,38,0.08);
  text-align: left;
}
.company-table th {
  color: var(--pop-red);
  font-family: var(--font-display);
  font-size: 0.85rem;
}
@media (min-width: 640px) {
  .company-table th,
  .company-table td {
    display: table-cell;
  }
  .company-table th {
    width: 12rem;
  }
}

.lower-service-grid {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .lower-service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.lower-service-item,
.contact-note {
  padding: 1.5rem;
  background: #fff;
  border-radius: 1rem;
  border: 3px solid rgba(45,42,38,0.08);
}
.lower-service-item h2 {
  margin-bottom: 0.75rem;
  font-family: var(--font-display);
  color: var(--charcoal);
}
.flow-list {
  display: grid;
  gap: 1rem;
  margin: 1.5rem 0 2rem;
  padding: 0;
  list-style: none;
}
.flow-list li {
  display: grid;
  gap: 0.35rem;
  padding: 1rem 1.25rem;
  background: #fff;
  border-left: 6px solid var(--fresh-green);
  border-radius: 0.75rem;
}

.member-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .member-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.member-card {
  background: #fff;
  border: 3px solid rgba(45,42,38,0.08);
  border-radius: 1rem;
  overflow: hidden;
}
.member-photo img,
.member-photo-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.member-photo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(45,42,38,0.35);
  background: var(--light-yellow);
  font-family: var(--font-display);
}
.member-content {
  padding: 1.25rem;
}
.member-content h2 {
  margin-bottom: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--charcoal);
}
.member-profile {
  display: grid;
  gap: 2rem;
  align-items: start;
}
@media (min-width: 768px) {
  .member-profile {
    grid-template-columns: minmax(240px, 360px) 1fr;
  }
}
.member-profile-photo {
  border-radius: 1rem;
  overflow: hidden;
}
.member-profile-photo img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.footer-service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  color: rgba(255,255,255,0.78);
}
.footer-service-link:hover {
  color: var(--vitamin-yellow);
}
.footer-service-link img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 0.5rem;
}
.footer-service-link span {
  font-family: var(--font-display);
}
.footer-follow-title {
  margin-top: 1rem;
}
.service-more,
.about-link-wrap {
  margin-top: 2rem;
  text-align: center;
}

