/* =============================================
   CSS Variables
============================================= */
:root {
  --color-primary:      #6aaa5c;
  --color-primary-dark: #4e8642;
  --color-primary-light: #e6f4e2;
  --color-primary-pale:  #f3faf1;
  --color-dark:   #0d1f0d;
  --color-white:  #ffffff;
  --color-text:   #1a1a1a;
  --color-muted:  #6b7280;
  --color-border: #d8eccd;
  --color-bg:     #fafdfb;

  --font: 'Noto Sans JP', sans-serif;
  --container: 1100px;
  --header-h: 68px;
  --radius:    10px;
  --radius-sm: 6px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,.06);
  --shadow-md: 0 8px 32px rgba(0,0,0,.1);
  --shadow-lg: 0 16px 48px rgba(0,0,0,.14);
  --ease: .3s ease;
}

/* =============================================
   Reset
============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-text);
  background: var(--color-white);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration: none; transition: color var(--ease); }
a:hover { color: var(--color-primary-dark); }
ul, ol { list-style: none; }

/* =============================================
   Accessibility
============================================= */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--color-primary);
  color: #fff;
  padding: 8px 16px;
  z-index: 9999;
  font-size: .9rem;
}
.skip-link:focus { top: 0; }

/* =============================================
   Scroll Animation
============================================= */
[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s cubic-bezier(.16,1,.3,1), transform .65s cubic-bezier(.16,1,.3,1);
}
[data-animate].is-visible { opacity: 1; transform: none; }
[data-animate-delay="1"] { transition-delay: .1s; }
[data-animate-delay="2"] { transition-delay: .2s; }
[data-animate-delay="3"] { transition-delay: .3s; }

/* =============================================
   Typography
============================================= */
h1 { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 700; line-height: 1.3; }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 700; line-height: 1.35; }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); font-weight: 700; line-height: 1.45; }
h4 { font-size: 1.1rem; font-weight: 700; }
p  { margin-bottom: 1.2em; }
p:last-child { margin-bottom: 0; }

/* =============================================
   Layout
============================================= */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.section        { padding: 100px 0; }
.section--pale  { background: var(--color-primary-pale); }
.section--dark  {
  background: var(--color-dark);
  padding: 100px 0;
}

/* =============================================
   Section Heading
============================================= */
.sec-head { margin-bottom: 60px; }
.sec-head--center { text-align: center; }
.sec-head__en {
  display: block;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--color-primary);
  opacity: .8;
  margin-bottom: 10px;
}
.sec-head__ja {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: -.015em;
}
.sec-head--center .sec-head__ja::after {
  content: '';
  display: block;
  width: 36px;
  height: 3px;
  background: var(--color-primary);
  border-radius: 2px;
  margin: 16px auto 0;
}
.sec-head--left .sec-head__ja::after {
  content: '';
  display: block;
  width: 36px;
  height: 3px;
  background: var(--color-primary);
  border-radius: 2px;
  margin: 16px 0 0;
}
/* Dark variant */
.sec-head--dark .sec-head__en { color: var(--color-primary); opacity: 1; }
.sec-head--dark .sec-head__ja { color: #fff; }
.sec-head--dark.sec-head--center .sec-head__ja::after { background: var(--color-primary); }
.sec-head--dark.sec-head--left  .sec-head__ja::after  { background: var(--color-primary); }

/* =============================================
   Buttons
============================================= */
.btn {
  display: inline-block;
  padding: 13px 34px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: .95rem;
  transition: all var(--ease);
  border: 2px solid transparent;
  cursor: pointer;
  font-family: var(--font);
  letter-spacing: .02em;
}
.btn--primary { background: var(--color-primary); color: #fff; }
.btn--primary:hover { background: var(--color-primary-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(106,170,92,.35); }
.btn--outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn--outline:hover { background: var(--color-primary); color: #fff; transform: translateY(-2px); }
.btn--white { background: #fff; color: var(--color-primary); }
.btn--white:hover { background: var(--color-primary-light); color: var(--color-primary-dark); transform: translateY(-2px); }

/* =============================================
   Header
============================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  height: var(--header-h);
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* Logo */
.site-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.site-logo img { height: 38px; width: auto; }
.site-logo__text { display: flex; flex-direction: column; line-height: 1.2; }
.site-logo__main { font-size: 1rem; font-weight: 700; color: var(--color-primary); }
.site-logo__sub  { font-size: .62rem; color: var(--color-muted); letter-spacing: .05em; }

/* Desktop nav */
.site-nav { display: flex; align-items: center; gap: 2px; }
.site-nav__list { display: flex; gap: 2px; list-style: none; }
.site-nav__list li a {
  display: block;
  padding: 8px 14px;
  font-size: .875rem;
  font-weight: 500;
  color: var(--color-text);
  border-radius: var(--radius-sm);
  transition: all var(--ease);
  white-space: nowrap;
}
.site-nav__list li a:hover,
.site-nav__list li.current-menu-item > a,
.site-nav__list li.current-page-ancestor > a {
  color: var(--color-primary);
  background: var(--color-primary-light);
}
.site-nav__contact {
  margin-left: 10px;
  padding: 8px 20px !important;
  background: var(--color-primary) !important;
  color: #fff !important;
  border-radius: var(--radius-sm) !important;
}
.site-nav__contact:hover { background: var(--color-primary-dark) !important; color: #fff !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger__bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all var(--ease);
}
.hamburger[aria-expanded="true"] .hamburger__bar:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger[aria-expanded="true"] .hamburger__bar:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] .hamburger__bar:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0; bottom: 0;
  background: #fff;
  z-index: 199;
  padding: 24px;
  overflow-y: auto;
}
.mobile-nav.is-open { display: block; }
.mobile-nav__list { list-style: none; }
.mobile-nav__list li a {
  display: block;
  padding: 16px 8px;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-border);
}
.mobile-nav__list li a:hover { color: var(--color-primary); }
.mobile-nav__contact {
  display: block;
  margin-top: 24px;
  padding: 16px;
  background: var(--color-primary);
  color: #fff !important;
  text-align: center;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 1rem;
}
.mobile-nav__contact:hover { background: var(--color-primary-dark); color: #fff !important; }

/* =============================================
   Hero
============================================= */
.hero {
  position: relative;
  background: var(--color-primary-pale);
  padding: 120px 0 140px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -180px; right: -160px;
  width: 560px; height: 560px;
  background: var(--color-primary-light);
  border-radius: 50%;
  opacity: .55;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -80px;
  width: 320px; height: 320px;
  background: var(--color-primary-light);
  border-radius: 50%;
  opacity: .4;
  pointer-events: none;
}
.hero__inner {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.hero__label {
  display: inline-block;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 20px;
}
.hero__title {
  font-size: clamp(2.4rem, 6vw, 4rem);
  line-height: 1.25;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 24px;
}
.hero__text {
  font-size: 1.05rem;
  color: var(--color-muted);
  max-width: 520px;
  line-height: 1.9;
  margin-bottom: 40px;
}
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--color-muted);
  font-size: .6rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.hero__scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, var(--color-primary), transparent);
  animation: scrollDrop 1.8s ease infinite;
}
@keyframes scrollDrop {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  45%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  46%  { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: .3; }
}

/* Video background */
.hero--has-video {
  background: var(--color-dark);
  min-height: 620px;
  display: flex;
  align-items: center;
  padding: 120px 0 140px;
}
.hero--has-video::before,
.hero--has-video::after { display: none; }
.hero__video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  display: block;
  pointer-events: none;
}
.hero__overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(5, 18, 5, 0.55);
  z-index: 1;
}
.hero--has-video .hero__scroll { color: rgba(255,255,255,.45); }
.hero--has-video .hero__scroll-line { background: linear-gradient(to bottom, rgba(255,255,255,.7), transparent); }
.hero--has-video .hero__label { color: rgba(255,255,255,.6); }
.hero--has-video .hero__title { color: #fff; }
.hero--has-video .hero__text  { color: rgba(255,255,255,.78); }
.hero--has-video .btn--outline { color: #fff; border-color: rgba(255,255,255,.55); }
.hero--has-video .btn--outline:hover { background: #fff; color: var(--color-primary); border-color: #fff; }

/* =============================================
   Services
============================================= */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: #fff;
  border-radius: var(--radius);
  border-top: 4px solid var(--color-primary);
  padding: 40px 32px;
  box-shadow: var(--shadow-sm);
  transition: all var(--ease);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.service-card__icon {
  width: 60px;
  height: 60px;
  background: var(--color-primary-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.service-card__icon svg { width: 30px; height: 30px; fill: var(--color-primary); }
.service-card__title { font-size: 1.1rem; margin-bottom: 10px; }
.service-card__text { font-size: .875rem; color: var(--color-muted); margin-bottom: 20px; line-height: 1.8; }
.service-card__list { border-top: 1px solid var(--color-border); padding-top: 18px; }
.service-card__list li {
  font-size: .82rem;
  color: var(--color-muted);
  padding: 5px 0 5px 16px;
  position: relative;
}
.service-card__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 6px; height: 6px;
  background: var(--color-primary);
  border-radius: 50%;
}

/* =============================================
   Features (dark)
============================================= */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.feature-item {
  padding: 48px 40px;
  border-right: 1px solid rgba(255,255,255,.07);
  transition: background var(--ease);
}
.feature-item:last-child { border-right: none; }
.feature-item:hover { background: rgba(255,255,255,.03); }
.feature-item__num {
  font-size: 4rem;
  font-weight: 700;
  color: var(--color-primary);
  opacity: .25;
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -.03em;
}
.feature-item__title { font-size: 1.15rem; margin-bottom: 14px; color: #fff; }
.feature-item__text  { font-size: .875rem; color: rgba(255,255,255,.55); line-height: 1.85; }

/* =============================================
   Works
============================================= */
.works-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.work-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px 32px;
  border-left: 5px solid var(--color-primary);
  box-shadow: var(--shadow-sm);
  transition: all var(--ease);
}
.work-card:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}
.work-card__cat {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  color: var(--color-primary);
  background: var(--color-primary-light);
  padding: 3px 12px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.work-card__title { font-size: 1rem; margin-bottom: 10px; }
.work-card__text  { font-size: .82rem; color: var(--color-muted); line-height: 1.8; }

/* =============================================
   Post Cards
============================================= */
.post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 28px;
}
.post-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--ease);
}
.post-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.post-card__thumb { aspect-ratio: 16/9; overflow: hidden; background: var(--color-primary-light); }
.post-card__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.post-card:hover .post-card__thumb img { transform: scale(1.05); }
.post-card__no-img {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
}
.post-card__no-img svg { width: 48px; height: 48px; fill: var(--color-border); }
.post-card__body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.post-card__meta { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; flex-wrap: wrap; }
.post-card__date  { font-size: .78rem; color: var(--color-muted); }
.post-card__cat {
  display: inline-block;
  padding: 2px 10px;
  background: var(--color-primary-light);
  color: var(--color-primary);
  font-size: .7rem;
  font-weight: 700;
  border-radius: 100px;
}
.post-card__title { font-size: .95rem; font-weight: 700; flex: 1; margin-bottom: 10px; }
.post-card__title a { color: var(--color-text); }
.post-card__title a:hover { color: var(--color-primary); }
.post-card__excerpt { font-size: .85rem; color: var(--color-muted); line-height: 1.7; }

/* View all */
.view-all { text-align: center; margin-top: 52px; }

/* =============================================
   Pagination
============================================= */
.pagination {
  display: flex; justify-content: center; align-items: center;
  gap: 6px; margin-top: 60px; flex-wrap: wrap;
}
.pagination .page-numbers {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 40px; height: 40px; padding: 0 6px;
  border-radius: var(--radius-sm);
  font-size: .875rem; font-weight: 500;
  color: var(--color-text);
  border: 1px solid var(--color-border);
  transition: all var(--ease);
}
.pagination .page-numbers:hover,
.pagination .page-numbers.current {
  background: var(--color-primary); color: #fff; border-color: var(--color-primary);
}

/* =============================================
   Page / Post Header
============================================= */
.entry-header { background: var(--color-primary-pale); padding: 60px 0; text-align: center; }
.entry-header__meta {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; margin-bottom: 14px; flex-wrap: wrap;
}
.entry-header__title { color: var(--color-text); }

/* =============================================
   Post / Page Content
============================================= */
.entry-content { max-width: 760px; margin: 0 auto; padding: 60px 24px 80px; }
.entry-content h2, .entry-content h3, .entry-content h4 {
  margin-top: 2em; margin-bottom: .8em;
  padding-bottom: .4em; border-bottom: 1px solid var(--color-border);
}
.entry-content h2 { font-size: 1.5rem; }
.entry-content h3 { font-size: 1.25rem; }
.entry-content p  { margin-bottom: 1.4em; }
.entry-content img { border-radius: var(--radius); margin: 1.6em auto; }
.entry-content ul, .entry-content ol { padding-left: 1.6em; margin-bottom: 1.4em; }
.entry-content ul { list-style: disc; }
.entry-content ol { list-style: decimal; }
.entry-content li { margin-bottom: .5em; }
.entry-content blockquote {
  border-left: 4px solid var(--color-primary);
  background: var(--color-primary-light);
  padding: 16px 22px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 1.8em 0;
  color: var(--color-muted);
  font-style: italic;
}
.entry-content a { text-decoration: underline; }
.entry-content table { width: 100%; border-collapse: collapse; margin-bottom: 1.4em; font-size: .925rem; }
.entry-content th, .entry-content td { padding: 10px 14px; border: 1px solid var(--color-border); text-align: left; }
.entry-content th { background: var(--color-primary-light); font-weight: 700; }

/* =============================================
   Post Navigation
============================================= */
.post-nav {
  max-width: 760px; margin: 0 auto; padding: 0 24px 60px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.post-nav__item {
  padding: 16px 20px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  transition: all var(--ease);
}
.post-nav__item:hover { border-color: var(--color-primary); background: var(--color-primary-pale); }
.post-nav__item--next { text-align: right; }
.post-nav__label { display: block; font-size: .72rem; color: var(--color-muted); margin-bottom: 4px; }
.post-nav__title { font-size: .875rem; font-weight: 700; color: var(--color-text); }

/* =============================================
   Archive Header
============================================= */
.archive-header { background: var(--color-primary-pale); padding: 60px 24px; text-align: center; margin-bottom: 60px; }
.archive-header__label {
  display: block; font-size: .72rem; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--color-primary); margin-bottom: 8px;
}

/* =============================================
   Search
============================================= */
.search-bar { max-width: 520px; margin: 0 auto 52px; }
.search-bar form { display: flex; gap: 8px; }
.search-bar input[type="search"] {
  flex: 1; padding: 12px 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: var(--font); font-size: .95rem;
  outline: none; transition: border-color var(--ease); background: #fff;
}
.search-bar input[type="search"]:focus { border-color: var(--color-primary); }
.search-bar button {
  padding: 12px 22px; background: var(--color-primary); color: #fff;
  border: none; border-radius: var(--radius-sm);
  font-family: var(--font); font-size: .9rem; font-weight: 700;
  cursor: pointer; transition: background var(--ease);
}
.search-bar button:hover { background: var(--color-primary-dark); }

/* =============================================
   404
============================================= */
.error-404 { text-align: center; padding: 120px 24px; }
.error-404__number {
  font-size: clamp(5rem, 15vw, 9rem); font-weight: 700;
  color: var(--color-primary-light); line-height: 1; margin-bottom: 12px;
}
.error-404__title  { margin-bottom: 16px; }
.error-404__text   { color: var(--color-muted); margin-bottom: 40px; }

/* =============================================
   CTA Banner
============================================= */
.cta-banner {
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
  color: #fff; text-align: center; padding: 100px 24px;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  background: rgba(255,255,255,.05);
  border-radius: 50%;
}
.cta-banner__title { font-size: clamp(1.6rem, 3vw, 2.2rem); color: #fff; margin-bottom: 14px; }
.cta-banner__text  { opacity: .88; margin-bottom: 40px; font-size: 1rem; }
.cta-banner .btn--outline { color: #fff; border-color: rgba(255,255,255,.55); }
.cta-banner .btn--outline:hover { background: #fff; color: var(--color-primary); border-color: #fff; }
.cta-banner__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* =============================================
   Footer
============================================= */
.site-footer { background: var(--color-dark); color: rgba(255,255,255,.6); padding: 72px 0 0; }
.site-footer__inner {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 52px;
}
.footer-brand__name { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 12px; }
.footer-brand__desc { font-size: .875rem; line-height: 1.9; }
.footer-info { margin-top: 20px; display: flex; flex-direction: column; gap: 10px; list-style: none; }
.footer-info li {
  display: flex; align-items: flex-start; gap: 9px;
  font-size: .82rem; color: rgba(255,255,255,.5); line-height: 1.5;
}
.footer-info li svg { width: 14px; height: 14px; fill: var(--color-primary); flex-shrink: 0; margin-top: 2px; }
.footer-info li a { color: rgba(255,255,255,.5); }
.footer-info li a:hover { color: #fff; }
.footer-nav__title {
  color: #fff; font-size: .75rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  margin-bottom: 16px; padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-nav__list { display: flex; flex-direction: column; gap: 9px; list-style: none; }
.footer-nav__list a { font-size: .85rem; color: rgba(255,255,255,.5); transition: color var(--ease); }
.footer-nav__list a:hover { color: #fff; }
.footer-cta-btn {
  display: inline-block; margin-top: 22px; padding: 11px 22px;
  background: var(--color-primary); color: #fff;
  border-radius: var(--radius-sm); font-size: .85rem; font-weight: 700;
  transition: all var(--ease);
}
.footer-cta-btn:hover { background: var(--color-primary-dark); color: #fff; transform: translateY(-2px); }
.site-footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 22px 0; text-align: center; font-size: .78rem;
}

/* =============================================
   No Posts
============================================= */
.no-posts { text-align: center; padding: 60px 24px; color: var(--color-muted); }

/* =============================================
   Responsive
============================================= */
@media (max-width: 1024px) {
  .works-grid    { grid-template-columns: 1fr; }
  .feature-grid  { grid-template-columns: 1fr; }
  .feature-item  { border-right: none; border-bottom: 1px solid rgba(255,255,255,.07); }
  .feature-item:last-child { border-bottom: none; }
}

@media (max-width: 900px) {
  .site-footer__inner { grid-template-columns: 1fr 1fr; }
  .service-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .site-nav  { display: none; }
  .hamburger { display: flex; }
  .section   { padding: 70px 0; }
  .section--dark { padding: 70px 0; }
  .hero      { padding: 80px 0 100px; }
  .hero--has-video { padding: 80px 0 100px; }
  .hero__title { font-size: clamp(2rem, 7vw, 2.8rem); }
  .hero__scroll { display: none; }
  .post-grid { grid-template-columns: 1fr; }
  .post-nav  { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { text-align: center; }
  .site-footer__inner { grid-template-columns: 1fr; gap: 28px; }
  .entry-content { padding: 40px 20px 60px; }
  .works-grid  { grid-template-columns: 1fr; }
  .cta-banner  { padding: 72px 24px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .sec-head  { margin-bottom: 40px; }
}
