
:root {
  --white: #ffffff;
  --off-white: #e5e7eb;
  --light: #d8dadf;
  --border: #d0d2d6;
  --border-light: #dcdee2;
  --text: #1a1814;
  --text-mid: #4a4740;
  --text-soft: #8a8780;
  --accent: #E6E452;
  --accent-light: #eeec7a;
  --accent-pale: #f5f5c0;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

/* アンカーリンクのオフセット（固定ナビ分） */
section[id], div[id] {
  scroll-margin-top: 80px;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  background: #ffffff;
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 52px; height: 68px;
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 2px 24px rgba(26,24,20,0.06); }
.nav-logo { display: flex; align-items: center; }
.nav-logo svg { width: clamp(160px, 28vw, 380px); height: auto; color: var(--text); }
nav ul { list-style: none; display: flex; gap: 40px; align-items: center; margin-left: auto; }
nav ul li a {
  font-family: 'Playfair Display', serif;
  font-size: 14px; font-weight: 400; letter-spacing: 0.08em;
  color: var(--text); text-decoration: none;
  transition: opacity 0.25s; position: relative;
}
nav ul li a::after {
  content: ''; position: absolute; left: 0; bottom: -4px;
  width: 0; height: 1px; background: var(--text);
  transition: width 0.3s;
}
nav ul li a:hover { opacity: 0.6; }
nav ul li a:hover::after { width: 100%; }
.nav-cta {
  font-family: 'Playfair Display', serif !important;
  font-size: 13px !important; letter-spacing: 0.15em !important;
  color: var(--white) !important; background: var(--text);
  padding: 10px 24px; border: none !important;
  transition: background 0.25s !important; opacity: 1 !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--text-mid) !important; opacity: 1 !important; }

/* ── HERO ── */
#hero {
  display: flex;
  align-items: center;
  padding: 148px 52px 80px;
  position: relative;
  background: #ffffff;
}
.hero-left { max-width: 700px; }

.hero-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: 0.02em;
  color: var(--text);
  opacity: 0; animation: fadeUp 1s 0.2s forwards;
}

.hero-ctas {
  margin-top: 40px; display: flex; gap: 16px; align-items: center;
  opacity: 0; animation: fadeUp 1s 0.5s forwards;
}

/* ── FOUNDER PROFILE ── */
.founder-profile {
  display: flex; gap: 32px; align-items: flex-start;
  margin-top: 52px; padding-top: 40px;
  border-top: 1px solid var(--border);
}
.founder-profile-avatar {
  flex-shrink: 0; width: 80px; height: 80px;
  background: var(--white); border: 1px solid var(--border);
  display: grid; place-items: center;
  font-family: 'Noto Serif JP', serif;
  font-size: 28px; color: var(--text);
}
.founder-profile-body { flex: 1; }
.founder-profile-label {
  font-family: 'Playfair Display', serif;
  font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--text-soft); margin-bottom: 6px; display: block;
}
.founder-profile-name {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 22px; font-weight: 700; color: var(--text);
  margin-bottom: 4px; letter-spacing: 0.05em;
}
.founder-profile-role {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 12px; font-weight: 300; color: var(--text-mid);
  margin-bottom: 12px; letter-spacing: 0.05em;
}
.founder-profile-meta {
  display: flex; gap: 20px; margin-bottom: 16px; flex-wrap: wrap;
}
.founder-profile-meta span {
  font-family: 'Playfair Display', serif;
  font-size: 11px; color: var(--text-soft); letter-spacing: 0.08em;
}
.founder-profile-bio {
  font-size: 13px; font-weight: 300; line-height: 2.2;
  color: var(--text-mid);
}

/* ── VIEW MORE BUTTON ── */
.btn-view-more {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 11px; font-weight: 400; letter-spacing: 0.15em;
  color: var(--text); text-decoration: none;
  border: 1px solid var(--text);
  border-radius: 999px;
  padding: 12px 20px;
  width: 100%;
  margin-top: 24px;
  transition: background 0.3s, color 0.3s;
  gap: 12px;
  white-space: nowrap;
  box-sizing: border-box;
}
.btn-view-more:hover {
  background: var(--text); color: var(--white);
}
.btn-view-more .arrow { font-size: 13px; }

/* ── CURSOR CIRCLE ── */
#cursorCircle {
  width: 64px; height: 64px;
  background: var(--accent);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s, width 0.3s, height 0.3s;
  mix-blend-mode: multiply;
  will-change: transform;
}
#cursorCircle.cursor-hover {
  width: 96px; height: 96px;
}

/* ── SECTION LABEL LAYOUT (共通) ── */
.sl-layout {
  display: flex; gap: 100px; align-items: flex-start;
}
.sl-label {
  flex-shrink: 0; width: 120px; padding-top: 4px;
}
.sl-content {
  flex: 1; min-width: 0;
}
.sl-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(22px, 2.8vw, 36px);
  font-weight: 400; line-height: 1.5;
  color: var(--text); margin-bottom: 40px;
}

/* ── NEWS ── */
.section-label-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4.5vw, 56px);
  font-weight: 700;
  line-height: 1;
  color: var(--text);
  letter-spacing: -0.02em;
  display: block;
}
#news { background: var(--white); border-top: 1px solid var(--border); }
.news-inner { max-width: 1100px; margin: 0 auto; }
.news-list { display: flex; flex-direction: column; }
.news-item {
  display: flex; align-items: baseline; gap: 32px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none; color: inherit;
  transition: opacity 0.2s;
}
.news-item:hover { opacity: 0.6; }
.news-item:first-child { border-top: 1px solid var(--border); }
.news-date {
  font-family: 'Playfair Display', serif;
  font-size: 16px; letter-spacing: 0.1em;
  color: var(--text-soft); flex-shrink: 0; width: 120px;
}
.news-cat {
  font-family: 'Playfair Display', serif;
  font-size: 16px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text); flex-shrink: 0; width: 120px;
}
.news-title {
  font-size: 16px; font-weight: 300; line-height: 1.7; color: var(--text);
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--text); color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 13px; font-weight: 400; letter-spacing: 0.2em;
  padding: 16px 36px; text-decoration: none; border: none; cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
.btn-primary:hover { background: var(--text-mid); transform: translateY(-1px); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: var(--text);
  font-family: 'Playfair Display', serif;
  font-size: 13px; font-weight: 400; letter-spacing: 0.2em;
  padding: 15px 36px; text-decoration: none;
  border: 1px solid rgba(0,0,0,0.2); cursor: pointer;
  transition: border-color 0.3s, color 0.3s;
}
.btn-outline:hover { border-color: var(--text); }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ── SECTION BASE ── */
section { padding: 120px 52px; }
.inner { max-width: 1100px; margin: 0 auto; }

.section-eyebrow {
  font-family: 'Playfair Display', serif;
  font-size: 10px; font-weight: 400; letter-spacing: 0.35em;
  text-transform: uppercase; color: var(--text);
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 24px;
}
.section-eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--text); }
.section-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 800; line-height: 1.35; letter-spacing: 0.02em;
}

/* ── ABOUT ── */
#about { background: var(--off-white); }
.about-grid { display: grid; grid-template-columns: 5fr 4fr; gap: 100px; align-items: center; }
.about-text .section-title { margin-bottom: 36px; }
.about-lead {
  font-family: 'Noto Serif JP', serif;
  font-size: 18px; font-weight: 400; line-height: 2;
  color: var(--text-mid); margin-bottom: 28px;
}
.about-body p { font-size: 14px; font-weight: 300; line-height: 2.3; color: var(--text-mid); margin-bottom: 18px; }
.about-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; margin-top: 52px; background: var(--border); }
.about-card { background: var(--white); padding: 28px 24px; transition: background 0.3s; }
.about-card:hover { background: #E6E452; }
.about-card-icon {
  width: 32px; height: 32px; margin-bottom: 14px;
  border-bottom: 2px solid var(--text);
  display: flex; align-items: flex-end; padding-bottom: 8px;
  font-size: 14px; color: var(--text); letter-spacing: 0.1em;
}
.about-card h4 { font-family: 'Noto Serif JP', serif; font-size: 15px; font-weight: 600; margin-bottom: 8px; }
.about-card p { font-size: 12px; line-height: 1.9; color: var(--text-soft); font-weight: 300; }
.about-visual { position: relative; display: flex; flex-direction: column; gap: 24px; }
.about-img-block {
  background: var(--light); aspect-ratio: 3/4;
  display: grid; place-items: center;
  font-family: 'Noto Serif JP', serif; font-size: 80px; color: var(--border);
  position: relative; overflow: hidden;
}
.about-img-block::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(to right, var(--accent), var(--accent-light));
}
.about-stat { background: var(--white); padding: 24px 28px; border-left: 3px solid var(--text); }
.about-stat-num { font-family: 'Playfair Display', serif; font-size: 40px; font-weight: 400; color: var(--text); line-height: 1; }
.about-stat-label { font-size: 11px; letter-spacing: 0.15em; color: var(--text-soft); margin-top: 4px; }

/* ── SERVICES ── */
#services { background: var(--white); }
.services-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 64px; padding-bottom: 40px; border-bottom: 1px solid var(--border);
}
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); }
.service-card {
  background: var(--white); padding: 44px 36px;
  position: relative; overflow: hidden; transition: background 0.35s;
}
.service-card:nth-child(5) { grid-column: span 2; }
.service-card:hover { background: var(--off-white); }
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(to right, var(--accent), var(--accent-light));
  transform: scaleX(0); transform-origin: left; transition: transform 0.4s;
}
.service-card:hover::before { transform: scaleX(1); }
.service-num { font-family: 'Playfair Display', serif; font-size: 13px; font-weight: 400; letter-spacing: 0.2em; color: var(--text); margin-bottom: 20px; }
.service-card h3 { font-family: 'Noto Serif JP', serif; font-size: 20px; font-weight: 600; line-height: 1.5; margin-bottom: 16px; }
.service-card p { font-size: 13px; font-weight: 300; line-height: 2.2; color: var(--text-soft); }
.service-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.tag { font-family: 'Playfair Display', serif; font-size: 10px; letter-spacing: 0.1em; padding: 5px 12px; border: 1px solid var(--border); color: var(--text-soft); }

/* ── FLOW ── */
#flow { background: var(--off-white); }
.flow-header { margin-bottom: 72px; }
.flow-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--border); }
.flow-step { background: var(--white); padding: 40px 32px; position: relative; }
.flow-step::after {
  content: '→'; position: absolute; right: -20px; top: 50%;
  transform: translateY(-50%); font-size: 18px; color: var(--border); z-index: 1;
}
.flow-step:last-child::after { display: none; }
.flow-num { font-family: 'Playfair Display', serif; font-size: 48px; font-weight: 400; color: var(--accent-pale); line-height: 1; margin-bottom: 20px; display: block; }
.flow-step h4 { font-family: 'Noto Serif JP', serif; font-size: 16px; font-weight: 600; margin-bottom: 12px; }
.flow-step p { font-size: 12px; font-weight: 300; line-height: 2; color: var(--text-soft); }

/* ── WORKS 2-col ── */
#works { background: var(--white); }
.works2-layout {
  display: flex; gap: 100px; align-items: flex-start;
}
.works2-label {
  flex-shrink: 0; width: 120px; padding-top: 4px; display: block !important;
}
.works2-right {
  flex: 1; min-width: 0;
}
.works2-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.works2-card {
  text-decoration: none; color: inherit; display: block;
  transition: opacity 0.3s;
}
.works2-card:hover { opacity: 0.8; }
.works2-thumb {
  aspect-ratio: 4/3; background: var(--light);
  overflow: hidden; margin-bottom: 16px; position: relative;
}
.works2-thumb img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.5s;
}
.works2-card:hover .works2-thumb img { transform: scale(1.04); }
.works2-thumb-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 32px; font-weight: 700; color: var(--border); letter-spacing: 0.1em;
}
.works2-body { padding: 0 4px; }
.works2-cat {
  display: block; font-family: 'Playfair Display', serif;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text); margin-bottom: 8px;
}
.works2-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 15px; font-weight: 400; line-height: 1.7; color: var(--text);
}


/* ── FAQ ── */
#faq { background: var(--white); }
.faq-layout { display: grid; grid-template-columns: 2fr 3fr; gap: 100px; align-items: start; }
.faq-sticky { position: sticky; top: 100px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question { width: 100%; text-align: left; background: none; border: none; cursor: pointer; padding: 26px 0; display: flex; justify-content: space-between; align-items: flex-start; gap: 20px; }
.faq-q-text { font-family: 'Noto Serif JP', serif; font-size: 14px; font-weight: 400; color: var(--text); line-height: 1.7; text-align: left; }
.faq-toggle { width: 22px; height: 22px; flex-shrink: 0; margin-top: 2px; border: 1px solid var(--border); display: grid; place-items: center; font-size: 14px; color: var(--text); transition: transform 0.3s, border-color 0.3s; font-weight: 300; }
.faq-item.open .faq-toggle { transform: rotate(45deg); border-color: var(--text); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p { padding-bottom: 24px; font-size: 13px; font-weight: 300; line-height: 2.2; color: var(--text-soft); }

/* ── BLOG ── */
#blog { background: var(--off-white); }
.blog-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 56px; }
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.blog-card { background: var(--white); border: 1px solid var(--border); overflow: hidden; transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s; text-decoration: none; color: inherit; display: block; }
.blog-card:hover { border-color: var(--text); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(26,24,20,0.06); }
.blog-thumb { height: 200px; background: var(--light); display: grid; place-items: center; font-family: 'Noto Serif JP', serif; font-size: 56px; color: var(--accent-pale); position: relative; overflow: hidden; }
.blog-thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.blog-body { padding: 28px 24px; }
.blog-cat { font-family: 'Playfair Display', serif; font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--text-soft); margin-bottom: 12px; display: block; text-decoration: none; }
.blog-card h4 { font-family: 'Noto Serif JP', serif; font-size: 15px; font-weight: 500; line-height: 1.8; margin-bottom: 16px; color: var(--text); text-decoration: none; }
.blog-meta { display: flex; justify-content: space-between; align-items: center; }
.blog-date { font-family: 'Playfair Display', serif; font-size: 11px; color: var(--text-soft); }
.blog-more { font-family: 'Playfair Display', serif; font-size: 10px; color: var(--text); letter-spacing: 0.15em; }

/* ── PHILOSOPHY ── */
#philosophy { background: var(--text); color: var(--white); padding: 160px 52px; }
.philosophy-inner { max-width: 800px; margin: 0 auto; }
.philosophy-inner .section-eyebrow { color: rgba(255,255,255,0.6); }
.philosophy-inner .section-eyebrow::before { background: rgba(255,255,255,0.6); }
.philosophy-inner .section-title { color: var(--white); margin-bottom: 60px; }
.philosophy-quote { font-family: 'Noto Serif JP', serif; font-size: clamp(20px, 2.5vw, 30px); font-weight: 400; line-height: 2.2; color: rgba(255,255,255,0.75); padding: 48px 0; border-top: 1px solid rgba(255,255,255,0.1); border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 60px; }
.philosophy-quote em { font-style: normal; color: var(--accent); }
.philosophy-body p { font-size: 14px; font-weight: 300; line-height: 2.5; color: rgba(255,255,255,0.55); margin-bottom: 24px; }
.founder-section { margin-top: 64px; padding-top: 48px; border-top: 1px solid rgba(255,255,255,0.1); }
.founder-section-body { max-width: 640px; }
.founder-profile-meta { display: flex; gap: 24px; flex-wrap: wrap; }

/* ── CONTACT ── */
#contact { background: var(--accent-pale); padding: 140px 52px; text-align: center; }
.contact-inner { max-width: 640px; margin: 0 auto; }
#contact .section-eyebrow { justify-content: center; }
#contact .section-eyebrow::before { display: none; }
#contact h2 { font-family: 'Noto Serif JP', serif; font-size: clamp(32px, 4vw, 52px); font-weight: 800; line-height: 1.4; margin: 24px 0 28px; }
#contact p { font-size: 14px; font-weight: 300; line-height: 2.3; color: var(--text-mid); margin-bottom: 52px; }
.contact-ctas { display: flex; gap: 16px; justify-content: center; }

/* ── FOOTER ── */
footer { background: var(--text); color: rgba(255,255,255,0.5); padding: 48px 52px 32px; }
.footer-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 2.5fr 1fr 1fr; gap: 72px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-logo svg { height: auto; width: auto; margin-bottom: 16px; color: rgba(255,255,255,0.7); }
.footer-brand p { font-size: 12px; line-height: 2.2; font-weight: 300; }
footer h4 { font-family: 'Playfair Display', serif; font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(255,255,255,0.25); margin-bottom: 24px; }
footer ul { list-style: none; }
footer ul li { margin-bottom: 14px; }
footer ul li a { font-family: 'Playfair Display', serif; font-size: 12px; color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.25s; font-weight: 300; }
footer ul li a:hover { color: var(--accent); }
.footer-bottom { max-width: 1100px; margin: 32px auto 0; display: flex; justify-content: space-between; align-items: center; font-size: 11px; }

/* ── LOGO SVG (shared) ── */
.logo-fill { fill: currentColor; }
/* ── RESPONSIVE: tablet (max 1024px) ── */
@media (max-width: 1024px) {
  nav { padding: 0 32px; }
  nav ul { gap: 24px; }
  section { padding: 80px 32px; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card:nth-child(5) { grid-column: span 2; }
  .flow-steps { grid-template-columns: repeat(2, 1fr); }
  .flow-step::after { display: none; }
  .sl-layout { gap: 48px; }
  .sl-label { width: 100px; }
  .works2-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .works2-layout { gap: 60px; }
  .works2-label { display: flex; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-layout { gap: 60px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
}

/* ── RESPONSIVE: mobile (max 768px) ── */
@media (max-width: 768px) {
  /* Nav */
  nav { padding: 0 20px; height: 60px; }
  nav ul { display: none; }

  /* ハンバーガー */
  .nav-hamburger {
    display: flex; flex-direction: column; justify-content: center;
    gap: 5px; width: 36px; height: 36px; cursor: pointer;
    background: none; border: none; padding: 4px;
  }
  .nav-hamburger span {
    display: block; width: 22px; height: 1px;
    background: var(--text); transition: all 0.3s; transform-origin: center;
  }
  .nav-hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .nav-hamburger.open span:nth-child(2) { opacity: 0; }
  .nav-hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

  .nav-mobile-menu {
    position: fixed; top: 60px; left: 0; right: 0; bottom: 0;
    background: rgba(255,255,255,0.97); backdrop-filter: blur(16px);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 36px;
    z-index: 99; opacity: 0; pointer-events: none; transition: opacity 0.3s;
  }
  .nav-mobile-menu.open { opacity: 1; pointer-events: all; }
  .nav-mobile-menu a {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 18px; font-weight: 400; letter-spacing: 0.12em;
    color: var(--text); text-decoration: none;
  }
  .nav-mobile-menu .nav-cta {
    background: var(--text); color: var(--white) !important;
    padding: 14px 40px; font-size: 13px;
  }

  /* Hero */
  #hero { padding: 100px 20px 60px; }
  .hero-title { font-size: clamp(32px, 9vw, 48px); }
  .hero-ctas { flex-direction: column; gap: 12px; }
  .btn-primary, .btn-outline { width: 100%; justify-content: center; padding: 16px 20px; }

  /* News */
  #news { padding: 40px 20px !important; }
  #news .news-inner { flex-direction: column; gap: 24px; }
  #news .news-inner > div:first-child { width: auto; }
  #news .news-inner > div:first-child span { font-size: 40px !important; }
  .news-item { flex-wrap: wrap; gap: 8px; }
  .news-date { width: auto; }
  .news-cat { width: auto; }
  .news-title { width: 100%; }

  /* Sections */
  section { padding: 60px 20px; }

  /* Section layout */
  .sl-layout { flex-direction: column; gap: 24px; }
  .sl-label { width: auto; }

  /* Works */
  #works { padding: 60px 20px 80px !important; }
  .works2-layout { flex-direction: column; gap: 24px; }
  .works2-right { width: 100%; }
  .works2-grid { grid-template-columns: 1fr; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-visual { display: none; }
  .about-cards { grid-template-columns: 1fr; }

  /* Services */
  .services-header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card:nth-child(5) { grid-column: span 1; }
  .service-card { padding: 28px 20px; }

  /* Flow */
  .flow-steps { grid-template-columns: 1fr; }
  .flow-step::after { display: none; }

  /* FAQ */
  .faq-layout { grid-template-columns: 1fr; gap: 36px; }
  .faq-sticky { position: static; }

  /* Blog */
  .blog-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .blog-grid { grid-template-columns: 1fr; }

  /* Philosophy */
  #philosophy { padding: 80px 20px; }

  /* Contact */
  #contact { padding: 80px 20px !important; }
  .contact-ctas { flex-direction: column; align-items: center; }

  /* Footer */
  footer { padding: 56px 20px 32px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; font-size: 10px; }
}
