/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --gold: #9A7B3C;
  --gold-light: #C4A35A;
  --black: #111111;
  --dark: #222222;
  --white: #FAFAF8;
  --ivory: #F2EDE4;
  --ivory2: #E8E2D9;
  --gray: #888880;
  --gray-light: #BCBAB4;
  --shadow: 0 4px 24px rgba(0,0,0,0.07);
  --shadow-hover: 0 8px 40px rgba(0,0,0,0.12);
  --radius: 0px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Hiragino Mincho ProN', 'Yu Mincho', 'YuMincho', 'HG明朝E', 'MS Mincho', 'MS 明朝', serif;
  background: var(--white);
  color: var(--black);
  line-height: 1.8;
  font-size: 16px;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,250,248,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--ivory2);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.site-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-main {
  font-size: 20px;
  font-weight: 400;
  color: var(--black);
  letter-spacing: 0.18em;
}

.logo-sub {
  font-size: 9px;
  color: var(--gray);
  letter-spacing: 0.28em;
  margin-top: 3px;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.site-nav a {
  font-size: 13px;
  letter-spacing: 0.12em;
  color: var(--dark);
  transition: color 0.3s;
  position: relative;
  padding: 4px 0;
}

.site-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}

.site-nav a:hover { color: var(--gold); }
.site-nav a:hover::after { width: 100%; }

.nav-cta {
  background: var(--black) !important;
  color: var(--white) !important;
  padding: 10px 28px !important;
  letter-spacing: 0.12em !important;
  transition: background 0.3s !important;
}

.nav-cta:hover { background: var(--dark) !important; }
.nav-cta::after { display: none !important; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--black);
  transition: all 0.3s;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 90vh;
  background-image: url('../matsukuni_top2.png');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: stretch;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 80px 64px 80px 40px;
  width: 52%;
  max-width: 620px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgba(250,250,248,0.82);
  backdrop-filter: blur(6px);
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 48px; height: 1px;
  background: var(--gold);
}

.hero-eyebrow span {
  font-size: 11px;
  letter-spacing: 0.28em;
  color: var(--gold);
  text-transform: uppercase;
}

.hero-badge {
  display: none;
}

.hero-title {
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.06em;
  margin-bottom: 32px;
  color: var(--black);
}

.hero-title span {
  color: var(--gold);
  font-style: normal;
}

.hero-divider {
  width: 40px; height: 1px;
  background: var(--ivory2);
  margin-bottom: 32px;
}

.hero-desc {
  font-size: 14px;
  color: var(--gray);
  line-height: 2.2;
  margin-bottom: 48px;
  max-width: 440px;
}

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

.hero-image {
  display: none;
}

.hero-logo {
  position: absolute;
  bottom: 40px;
  right: 40px;
  z-index: 2;
}

.hero-logo img {
  height: 80px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--black);
  color: var(--white);
  padding: 16px 36px;
  font-size: 13px;
  letter-spacing: 0.15em;
  font-family: inherit;
  transition: background 0.3s, transform 0.2s;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--dark);
  transform: translateY(-1px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--black);
  color: var(--black);
  padding: 16px 36px;
  font-size: 13px;
  letter-spacing: 0.15em;
  font-family: inherit;
  background: transparent;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}

.btn-secondary:hover {
  background: var(--black);
  color: var(--white);
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  color: var(--black);
  padding: 16px 36px;
  font-size: 13px;
  letter-spacing: 0.15em;
  font-family: inherit;
  transition: background 0.3s;
}

.btn-white:hover { background: var(--ivory); }

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--white);
  color: var(--white);
  padding: 16px 36px;
  font-size: 13px;
  letter-spacing: 0.15em;
  background: transparent;
  transition: background 0.3s, color 0.3s;
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--black);
}

/* ===== STATS ===== */
.stats {
  background: var(--black);
  padding: 48px 40px;
}

.stats-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}

.stats-grid > div {
  padding: 0 24px;
  border-right: 1px solid rgba(255,255,255,0.1);
}

.stats-grid > div:last-child { border-right: none; }

.stat-number {
  font-size: 44px;
  font-weight: 400;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: 0.03em;
}

.stat-number span {
  font-size: 20px;
}

.stat-label {
  font-size: 11px;
  color: var(--gray-light);
  letter-spacing: 0.15em;
}

/* ===== SECTION COMMON ===== */
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.section-eyebrow::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--gold);
  display: block;
  flex-shrink: 0;
}

.section-label {
  font-size: 11px;
  letter-spacing: 0.28em;
  color: var(--gold);
  text-transform: uppercase;
}

.section-header {
  margin-bottom: 56px;
}

.section-header.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--ivory2);
}

.section-title {
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 400;
  letter-spacing: 0.08em;
  margin-bottom: 0;
  line-height: 1.5;
  color: var(--black);
}

.section-desc {
  font-size: 14px;
  color: var(--gray);
  line-height: 2.1;
  max-width: 480px;
}

.section-cta {
  text-align: center;
  margin-top: 48px;
}

/* ===== SLIDESHOW ===== */
.slideshow {
  position: relative;
  background: var(--black);
  overflow: hidden;
  height: 520px;
}

.slideshow-track {
  height: 100%;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: var(--ivory2);
  color: var(--gray);
}

.slide-placeholder svg {
  opacity: 0.4;
  color: var(--gray);
}

.slide-placeholder p {
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--gray);
}

.slide-placeholder span {
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--gray-light);
}

.slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(250,250,248,0.9);
  border: none;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  color: var(--black);
}

.slide-btn:hover { background: var(--white); }

.slide-prev { left: 24px; }
.slide-next { right: 24px; }

.slide-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.dot {
  width: 6px;
  height: 6px;
  background: rgba(250,250,248,0.4);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.dot.active {
  background: var(--white);
  transform: scale(1.3);
}

@media (max-width: 768px) {
  .slideshow { height: 300px; }
  .slide-btn { width: 36px; height: 36px; }
  .slide-prev { left: 12px; }
  .slide-next { right: 12px; }
}

/* ===== FEATURES ===== */
.features {
  padding: 96px 40px;
  background: var(--white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.feature-card {
  position: relative;
  padding-top: 32px;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 24px; height: 1px;
  background: var(--gold);
}

.feature-icon { display: none; }

.feature-num {
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}

.feature-title {
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
  color: var(--black);
}

.feature-desc {
  font-size: 13px;
  color: var(--gray);
  line-height: 2.1;
}

/* ===== SERVICES ===== */
.services {
  padding: 96px 40px;
  background: var(--ivory);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--ivory2);
  margin-bottom: 48px;
}

.service-card {
  background: var(--white);
  padding: 36px 28px;
  transition: background 0.3s;
  position: relative;
  overflow: hidden;
  border: none;
  box-shadow: none;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 28px;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.4s;
}

.service-card:hover { background: var(--ivory); transform: none; box-shadow: none; }
.service-card:hover::after { width: calc(100% - 56px); }

.service-image {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: auto;
  background: none !important;
}

.service-image svg {
  width: 44px;
  height: 44px;
  color: var(--black);
  stroke: var(--black);
}

.service-title {
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
  color: var(--black);
}

.service-desc {
  font-size: 12px;
  color: var(--gray);
  line-height: 2;
  margin-bottom: 16px;
}

.service-link {
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.15em;
  display: block;
}

/* ===== WORKS ===== */
.works {
  padding: 96px 40px;
  background: var(--white);
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.work-card {
  background: var(--ivory);
  border: none;
  box-shadow: none;
  overflow: hidden;
  transition: none;
}

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

.work-image {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: transform 0.5s;
  background: var(--ivory) !important;
}

.work-image svg {
  width: 52px;
  height: 52px;
  opacity: 0.45;
  stroke: var(--black);
}

.work-card:hover .work-image { transform: scale(1.04); }

.work-image.w1 { background: #EDE0D0 !important; }
.work-image.w2 { background: #D0DCE8 !important; }
.work-image.w3 { background: #D0E8DA !important; }
.work-image.w4 { background: #E8E4D0 !important; }
.work-image.w5 { background: #DDD0E8 !important; }
.work-image.w6 { background: #E8D0D0 !important; }

.work-tag {
  position: static;
  display: block;
  background: none;
  color: var(--gold);
  font-size: 10px;
  letter-spacing: 0.25em;
  padding: 0;
  border-radius: 0;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.work-body {
  padding: 20px 0 0;
}

.work-title {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--black);
  margin-bottom: 4px;
}

.work-meta {
  font-size: 12px;
  color: var(--gray-light);
}

/* ===== VOICES ===== */
.voices {
  padding: 96px 40px;
  background: var(--black);
}

.voices .section-label { color: var(--gold); }
.voices .section-title { color: var(--white); }

.voices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.voice-card {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 32px;
  position: static;
}

.voice-card::before { display: none; }

.voice-gold {
  font-size: 40px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 20px;
  opacity: 0.6;
  font-family: Georgia, serif;
  display: block;
}

.voice-text {
  font-size: 13px;
  color: rgba(250,250,248,0.72);
  line-height: 2.1;
  margin-top: 0;
  margin-bottom: 24px;
}

.voice-stars { color: var(--gold); font-size: 12px; margin-bottom: 8px; }
.voice-author { font-size: 12px; color: var(--gray); letter-spacing: 0.1em; }

/* ===== CTA BANNER ===== */
.cta-banner {
  padding: 96px 40px;
  background: var(--ivory);
  text-align: center;
  color: var(--black);
}

.cta-line {
  width: 1px; height: 48px;
  background: var(--gold);
  margin: 0 auto 32px;
  display: block;
}

.cta-banner h2 {
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 400;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  line-height: 1.6;
  color: var(--black);
}

.cta-banner p {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 48px;
  line-height: 2.2;
  opacity: 1;
}

.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--black);
  color: var(--gray);
  padding: 64px 40px 32px;
}

.footer-inner { max-width: 1200px; margin: 0 auto; }

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
  font-size: 20px;
  color: var(--white);
  letter-spacing: 0.18em;
  margin-bottom: 16px;
  font-weight: 400;
}

.footer-tagline {
  font-size: 12px;
  line-height: 2;
  margin-bottom: 20px;
  color: var(--gray);
}

.footer-contact-info {
  font-size: 12px;
  line-height: 2.2;
  color: var(--gray);
}

.footer-heading {
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 20px;
  text-transform: uppercase;
  font-weight: 400;
}

.footer-links { display: flex; flex-direction: column; gap: 12px; }

.footer-links a {
  font-size: 13px;
  color: var(--gray);
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--gray);
  flex-wrap: wrap;
  gap: 12px;
}

/* ===== PAGE HERO ===== */
.page-hero {
  background: var(--ivory);
  padding: 72px 40px;
  text-align: center;
  border-bottom: 1px solid var(--ivory2);
}

.page-hero-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 400;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  color: var(--black);
  line-height: 1.4;
}

.page-hero-title span { color: var(--gold); }

.page-hero-desc {
  font-size: 14px;
  color: var(--gray);
  max-width: 520px;
  margin: 0 auto;
  line-height: 2;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
  color: var(--gray);
  margin-bottom: 20px;
  letter-spacing: 0.08em;
}

.breadcrumb a { color: var(--gold); }

/* ===== SERVICES PAGE ===== */
.services-detail {
  padding: 80px 40px;
  background: var(--white);
}

.service-detail-card {
  background: var(--white);
  border: none;
  box-shadow: none;
  margin-bottom: 64px;
  display: grid;
  grid-template-columns: 320px 1fr;
  border-bottom: 1px solid var(--ivory2);
  padding-bottom: 64px;
}

.service-detail-card:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.service-detail-card.reverse {
  grid-template-columns: 1fr 320px;
}

.service-detail-image {
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ivory) !important;
}

.service-detail-image svg {
  width: 72px;
  height: 72px;
  opacity: 0.5;
  stroke: var(--black);
}

.service-detail-card.reverse .service-detail-image { order: 2; }

.service-detail-body {
  padding: 40px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-detail-label {
  font-size: 11px;
  letter-spacing: 0.28em;
  color: var(--gold);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.service-detail-title {
  font-size: 26px;
  font-weight: 400;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
  color: var(--black);
  line-height: 1.4;
}

.service-detail-desc {
  font-size: 14px;
  color: var(--gray);
  line-height: 2;
  margin-bottom: 28px;
}

.service-features-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-features-list li {
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--dark);
  padding-bottom: 10px;
  border-bottom: 1px solid var(--ivory2);
}

.service-features-list li:last-child { border-bottom: none; }

.service-features-list li::before {
  content: '—';
  color: var(--gold);
  font-weight: 400;
  flex-shrink: 0;
}

/* ===== WORKS PAGE ===== */
.works-filter {
  padding: 40px 40px 0;
  max-width: 1200px;
  margin: 0 auto;
}

.filter-btns {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
  border: 1px solid var(--ivory2);
}

.filter-btn {
  padding: 10px 24px;
  font-size: 12px;
  font-weight: 400;
  cursor: pointer;
  border: none;
  border-right: 1px solid var(--ivory2);
  background: var(--white);
  color: var(--gray);
  transition: all 0.2s;
  letter-spacing: 0.1em;
  font-family: inherit;
}

.filter-btn:last-child { border-right: none; }

.filter-btn.active,
.filter-btn:hover {
  background: var(--black);
  color: var(--white);
}

.works-full {
  padding: 0 40px 80px;
}

.works-full-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ===== CONTACT PAGE ===== */
.contact-section {
  padding: 80px 40px;
  background: var(--white);
}

.contact-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: start;
}

.contact-info-box {
  background: var(--ivory);
  padding: 40px 32px;
  border: none;
}

.contact-info-title {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.08em;
  margin-bottom: 32px;
  color: var(--black);
}

.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  align-items: flex-start;
}

.contact-info-icon {
  font-size: 18px;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--ivory2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 4px;
  text-transform: uppercase;
}

.contact-info-value {
  font-size: 14px;
  font-weight: 400;
  color: var(--black);
  line-height: 1.8;
}

.contact-hours {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--ivory2);
  font-size: 12px;
  color: var(--gray);
  line-height: 2.2;
}

/* Contact Form */
.contact-form-box {
  background: var(--white);
  padding: 0;
  box-shadow: none;
  border: none;
}

.form-title {
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.08em;
  margin-bottom: 36px;
  color: var(--black);
}

.form-group {
  margin-bottom: 28px;
}

.form-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.12em;
  font-weight: 400;
  margin-bottom: 8px;
  color: var(--dark);
  text-transform: uppercase;
}

.form-required {
  background: var(--black);
  color: var(--white);
  font-size: 9px;
  padding: 2px 8px;
  letter-spacing: 0.1em;
  font-weight: 400;
}

.form-optional {
  background: var(--ivory2);
  color: var(--gray);
  font-size: 9px;
  padding: 2px 8px;
  letter-spacing: 0.1em;
  font-weight: 400;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--ivory2);
  border-bottom: 1px solid var(--dark);
  background: var(--white);
  font-size: 14px;
  font-family: inherit;
  color: var(--black);
  outline: none;
  transition: border-color 0.2s;
  border-radius: 0;
  appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--ivory2);
  border-bottom-color: var(--gold);
}

.form-textarea {
  min-height: 140px;
  resize: vertical;
  line-height: 1.8;
}

.form-submit {
  width: 100%;
  padding: 18px;
  background: var(--black);
  color: var(--white);
  border: none;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.2em;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.form-submit:hover { background: var(--dark); }

.form-note {
  font-size: 12px;
  color: var(--gray);
  text-align: center;
  margin-top: 20px;
  line-height: 1.9;
  letter-spacing: 0.04em;
}

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .features-grid,
  .services-grid,
  .works-grid,
  .voices-grid,
  .works-full-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .stats-grid > div {
    border-right: none;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .service-detail-card,
  .service-detail-card.reverse {
    grid-template-columns: 1fr;
  }

  .service-detail-card.reverse .service-detail-image { order: 0; }

  .section-header.two-col {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .header-inner { padding: 0 24px; }

  .site-nav {
    display: none;
    position: fixed;
    top: 80px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 24px;
    gap: 0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    border-top: 1px solid var(--ivory2);
  }

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

  .site-nav a {
    padding: 16px 0;
    border-bottom: 1px solid var(--ivory2);
    width: 100%;
  }

  .site-nav a::after { display: none; }

  .nav-cta {
    margin-top: 16px;
    text-align: center;
  }

  .menu-toggle { display: flex; }

  .hero {
    min-height: 70vh;
  }

  .hero-content {
    padding: 64px 24px;
    width: 100%;
    max-width: 100%;
    background: rgba(250,250,248,0.88);
  }

  .hero-logo {
    bottom: 20px;
    right: 20px;
  }

  .hero-logo img {
    height: 56px;
  }

  .features,
  .services,
  .works,
  .voices,
  .cta-banner,
  .services-detail,
  .contact-section,
  .works-full {
    padding-left: 24px;
    padding-right: 24px;
  }

  .features-grid,
  .services-grid,
  .works-grid,
  .voices-grid,
  .works-full-grid {
    grid-template-columns: 1fr;
  }

  .voices-grid { gap: 24px; }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contact-grid { grid-template-columns: 1fr; }

  .cta-btns { flex-direction: column; align-items: center; }

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

  .btn-primary,
  .btn-secondary,
  .btn-white,
  .btn-outline-white {
    justify-content: center;
  }

  .page-hero { padding: 56px 24px; }

  .works-filter { padding: 32px 24px 0; }

  .filter-btns { border: none; gap: 8px; }

  .filter-btn {
    border: 1px solid var(--ivory2);
    padding: 8px 16px;
  }

  .stats { padding: 40px 24px; }
}

@media (max-width: 480px) {
  .stat-number { font-size: 36px; }
  .contact-form-box { padding: 0; }
}
