/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: #0a0a0a;
  color: #e0e0e0;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 300;
  line-height: 1.8;
  overflow-x: hidden;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== CSS VARIABLES ===== */
:root {
  /* accent = 看板レッド（旧--goldを赤に置換。既存のvar(--gold)はすべて赤になる） */
  --gold: #e2231a;          /* 看板レッド（メインアクセント） */
  --gold-light: #ff3b30;    /* 明るい赤（ホバー） */
  --gold-dark: #9e120c;     /* 深い赤（陰影） */
  --accent: #e2231a;
  --accent-glow: rgba(226,35,26,0.55);
  /* 赤のrgba（旧 226,35,26 を 226,35,26 に置換するための実体） */
  --accent-rgb: 226,35,26;
  --black: #070707;
  --dark: #0e0e0e;
  --dark2: #151515;
  --dark3: #1f1f1f;
  --white: #ffffff;
  --gray: #8c8c8c;
  --light: #e6e6e6;
  --red: #e2231a;
  --nav-h: 70px;
}

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: transparent;
  transition: background 0.4s, backdrop-filter 0.4s;
}
.nav.scrolled {
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(226,35,26,0.2);
}
.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.nav-logo .logo-main {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  line-height: 1;
}
.nav-logo .logo-sub {
  font-family: 'Oswald', sans-serif;
  font-size: 0.5rem;
  color: var(--gray);
  letter-spacing: 0.25em;
  text-transform: uppercase;
}
.nav-menu {
  display: flex;
  gap: 2rem;
}
.nav-menu a {
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: var(--light);
  transition: color 0.3s;
  position: relative;
  padding-bottom: 4px;
}
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav-menu a:hover { color: var(--gold); }
.nav-menu a:hover::after { width: 100%; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--light);
  transition: all 0.3s;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease;
  transform: scale(1.05);
  animation: kenburns 8s ease-out infinite alternate;
}
.hero-slide.active { opacity: 1; }
@keyframes kenburns {
  from { transform: scale(1.05); }
  to { transform: scale(1.0); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(226,35,26,0.22) 0%, transparent 45%),
    linear-gradient(
      180deg,
      rgba(7,7,7,0.35) 0%,
      rgba(7,7,7,0.5) 50%,
      rgba(7,7,7,0.9) 100%
    );
}
/* スピード感を出す斜めの赤ライン */
.hero-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    115deg,
    transparent,
    transparent 60px,
    rgba(226,35,26,0.04) 60px,
    rgba(226,35,26,0.04) 62px
  );
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 1.5rem;
}
.hero-eyebrow {
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  color: var(--gold);
  margin-bottom: 1rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.7);
  opacity: 0;
  animation: fadeUp 1s 0.5s forwards;
}
.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(6rem, 18vw, 16rem);
  color: var(--white);
  line-height: 0.9;
  letter-spacing: 0.05em;
  opacity: 0;
  animation: fadeUp 1s 0.8s forwards;
  text-shadow: 0 0 40px rgba(226,35,26,0.35);
  position: relative;
}
/* タイトル下の赤いアンダーバー */
.hero-title::after {
  content: '';
  display: block;
  width: clamp(80px, 14vw, 160px);
  height: 5px;
  margin: 0.4rem auto 0;
  background: var(--gold);
  box-shadow: 0 0 24px var(--accent-glow);
}
.hero-tagline {
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  color: var(--light);
  letter-spacing: 0.2em;
  margin-top: 1rem;
  font-weight: 300;
  opacity: 0;
  animation: fadeUp 1s 1.1s forwards;
}
.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2.5rem;
  opacity: 0;
  animation: fadeUp 1s 1.4s forwards;
}
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--gray);
  font-family: 'Oswald', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  opacity: 0;
  animation: fadeUp 1s 2s forwards;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* ===== TICKER ===== */
.ticker {
  background: var(--gold);
  overflow: hidden;
  padding: 11px 0;
  border-top: 1px solid rgba(255,255,255,0.15);
  border-bottom: 1px solid rgba(0,0,0,0.3);
  box-shadow: 0 0 30px rgba(226,35,26,0.4);
}
.ticker-track {
  display: flex;
  white-space: nowrap;
  animation: ticker 20s linear infinite;
}
.ticker-track span {
  font-family: 'Oswald', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  color: #fff;
  font-weight: 700;
  padding-right: 0;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  padding: 0.9rem 2.5rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  transform: translateX(-100%);
  transition: transform 0.3s;
}
.btn:hover::before { transform: translateX(0); }
.btn-primary {
  background: var(--gold);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 4px 24px rgba(226,35,26,0.35);
}
.btn-primary:hover {
  background: var(--gold-light);
  box-shadow: 0 6px 30px rgba(226,35,26,0.6);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.5);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 0 20px rgba(226,35,26,0.3);
}
.btn-sm {
  padding: 0.5rem 1.2rem;
  font-size: 0.75rem;
  background: var(--gold);
  color: #fff;
  font-weight: 700;
}
.btn-instagram {
  background: linear-gradient(45deg, #f09433, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888);
  color: var(--white);
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(220,39,67,0.35);
}
.btn-instagram:hover {
  filter: brightness(1.1);
  box-shadow: 0 6px 26px rgba(220,39,67,0.55);
}

/* ===== SECTIONS ===== */
.section { padding: 6rem 0; }
.section-dark { background: var(--dark2); }
.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
}
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.section-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--white);
}
.section-line {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 1.5rem auto 0;
}

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: rgba(226,35,26,0.1);
}
.service-card {
  background: var(--dark2);
  padding: 2.5rem 2rem;
  position: relative;
  transition: background 0.3s;
  cursor: default;
  overflow: hidden;
}
.section-dark .service-card { background: var(--dark3); }
.service-card::before {
  content: attr(data-num);
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: rgba(226,35,26,0.14);
  line-height: 1;
  transition: color 0.3s;
}
/* ホバーで左から走る赤バー */
.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.35s ease;
  box-shadow: 0 0 16px var(--accent-glow);
}
.service-card:hover { background: var(--dark3); }
.service-card:hover::before { color: rgba(226,35,26,0.3); }
.service-card:hover::after { transform: scaleY(1); }
.service-icon {
  width: 48px; height: 48px;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.service-card h3 {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.service-card p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.8;
}

/* ===== GALLERY ===== */
.gallery-filter {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.filter-btn {
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  padding: 0.5rem 1.5rem;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--gray);
  cursor: pointer;
  transition: all 0.3s;
}
.filter-btn.active, .filter-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  grid-auto-rows: 220px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--dark3);
}
.gallery-item:nth-child(3n+1) { grid-column: span 2; grid-row: span 2; }
.gallery-item img {
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.85) 0%,
    rgba(0,0,0,0.35) 35%,
    transparent 60%
  );
  display: flex;
  align-items: flex-end;
  padding: 1rem 1.2rem;
  opacity: 0;
  transition: opacity 0.4s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
/* ホバーで赤い枠が光る */
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  transition: border-color 0.3s;
  pointer-events: none;
  z-index: 2;
}
.gallery-item:hover::after { border-color: rgba(226,35,26,0.8); }
.gallery-overlay span {
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  font-weight: 600;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,0.8);
}

/* Lightbox */
.gallery-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
}
.gallery-lightbox.open { display: flex; }
.gallery-lightbox img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  width: auto;
  height: auto;
}
.gallery-lightbox p {
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  color: var(--gold);
}
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  background: none;
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  cursor: pointer;
  font-size: 1.5rem;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.3s;
}
.lightbox-close { top: 1.5rem; right: 1.5rem; font-size: 1rem; }
.lightbox-prev { left: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { border-color: var(--gold); color: var(--gold); }

/* ===== WORKS ===== */
.works-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
  color: var(--gray);
  line-height: 2;
}
.awards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}
.award-card {
  background: var(--dark2);
  border: 1px solid rgba(226,35,26,0.2);
  padding: 2rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  transition: border-color 0.3s;
}
.award-card:hover { border-color: var(--gold); }
.award-year {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  color: var(--gold);
  line-height: 1;
  min-width: 60px;
}
.award-content h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.4rem;
}
.award-content p { font-size: 0.8rem; color: var(--gray); }
.award-badge {
  margin-left: auto;
  font-family: 'Oswald', sans-serif;
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  text-align: center;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 0.4rem 0.5rem;
  line-height: 1.4;
  min-width: 55px;
}
.works-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(226,35,26,0.2);
}
.stat {
  background: var(--black);
  padding: 2.5rem;
  text-align: center;
}
.stat-num, .stat-str {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4rem;
  color: var(--gold);
  line-height: 1;
}
.stat-str { letter-spacing: 0.02em; font-size: 2.6rem; }
.stat-unit {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  color: var(--gold);
}
.stat p {
  font-size: 0.8rem;
  color: var(--gray);
  margin-top: 0.5rem;
  letter-spacing: 0.1em;
}

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}
.about-img-frame {
  position: relative;
  aspect-ratio: 3/4;
  max-height: 500px;
}
.about-img-frame img { height: 100%; }
.about-img-frame::before {
  content: '';
  position: absolute;
  inset: -12px;
  border: 1px solid rgba(226,35,26,0.3);
  z-index: -1;
}
.about-img-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.9));
  padding: 3rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.about-name {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
}
.about-title-badge {
  font-family: 'Oswald', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--gold);
}
.about-heading {
  font-family: 'Oswald', sans-serif;
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.about-text p {
  color: var(--gray);
  line-height: 2;
  margin-bottom: 1.2rem;
  font-size: 0.95rem;
}
.about-text strong { color: var(--gold); font-weight: 400; }
.about-links { margin-top: 2rem; }
.about-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  padding: 0.8rem 1.5rem;
  transition: all 0.3s;
}
.about-link.youtube {
  background: #FF0000;
  color: var(--white);
}
.about-link.youtube svg { width: 18px; height: 18px; }
.about-link:hover { opacity: 0.85; }

/* ===== SHOP ===== */
.shop-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
  color: var(--gray);
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.product-card {
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}
.product-card:hover {
  border-color: rgba(226,35,26,0.4);
  transform: translateY(-4px);
}
.product-img {
  height: 240px;
  overflow: hidden;
  background: var(--dark3);
}
.product-img img {
  transition: transform 0.6s ease;
}
.product-img-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: var(--gray);
  border-bottom: 1px solid rgba(226,35,26,0.15);
}
.product-card:hover .product-img img { transform: scale(1.06); }
.product-info {
  padding: 1.4rem 1.5rem 1.6rem;
}
.product-info h4 {
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 0.6rem;
}
.product-info p {
  font-size: 0.83rem;
  color: var(--gray);
  line-height: 1.8;
}
.shop-cta {
  text-align: center;
  padding: 3rem;
  border: 1px solid rgba(226,35,26,0.2);
  background: var(--dark2);
}
.shop-cta p {
  color: var(--gray);
  margin-bottom: 1.5rem;
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}
.info-item {
  display: flex;
  gap: 1.5rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.info-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  min-width: 90px;
  padding-top: 0.15rem;
}
.info-value {
  font-size: 0.9rem;
  color: var(--light);
  line-height: 1.8;
}
.contact-btns {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.contact-map {
  border: 1px solid rgba(255,255,255,0.1);
  overflow: hidden;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--black);
  border-top: 1px solid rgba(226,35,26,0.2);
  padding: 3rem 0 8rem;
}
.footer-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}
.footer-logo { display: flex; flex-direction: column; align-items: center; }
.footer-logo .logo-main {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  line-height: 1;
}
.footer-logo .logo-sub {
  font-family: 'Oswald', sans-serif;
  font-size: 0.55rem;
  letter-spacing: 0.35em;
  color: var(--gray);
}
.footer-copy {
  font-size: 0.75rem;
  color: var(--gray);
  letter-spacing: 0.1em;
}

/* ===== CTA BAR ===== */
.cta-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
  display: flex;
  height: 60px;
  background: var(--dark);
  border-top: 1px solid rgba(226,35,26,0.3);
}
.cta-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  transition: all 0.3s;
  border-right: 1px solid rgba(255,255,255,0.05);
}
.cta-btn:last-child { border-right: none; }
.cta-tel { color: var(--gold); }
.cta-tel:hover { background: var(--gold); color: #fff; }
.cta-instagram { color: #fff; }
.cta-instagram:hover {
  background: linear-gradient(45deg, #f09433, #dc2743 50%, #bc1888);
  color: #fff;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .awards-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-img-frame { max-height: 350px; aspect-ratio: unset; height: 350px; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-menu {
    display: none;
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: rgba(10,10,10,0.98);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    border-top: 1px solid rgba(226,35,26,0.2);
  }
  .nav-menu.open { display: flex; }
  .nav-toggle { display: flex; }
  .hero-btns { flex-direction: column; align-items: center; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
  }
  .gallery-item:nth-child(3n+1) { grid-column: span 1; grid-row: span 1; }
  .works-stats { grid-template-columns: 1fr; }
  .section { padding: 4rem 0; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .gallery-item:nth-child(3n+1) { grid-column: span 1; }
  .hero-title { font-size: 5rem; }
}
