/* URBAN CLOSET - Global Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400&display=swap');

:root {
  --white: #FFFFFF;
  --black: #0A0A0A;
  --gray: #6B7280;
  --light-gray: #F9FAFB;
  --font-en: 'Helvetica Neue', Arial, sans-serif;
  --font-jp: 'Noto Sans JP', sans-serif;
  --header-h: 80px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-jp);
  font-weight: 300;
  color: var(--black);
  background: var(--white);
  line-height: 2;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ヘッダー */
.header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  padding: 0 48px; height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between;
  transition: background 0.4s ease, color 0.4s ease;
  background: transparent; color: var(--white);
}
.header.scrolled { background: var(--white); color: var(--black); box-shadow: 0 1px 0 rgba(0,0,0,0.06); }
.header.scrolled .header-logo,
.header.scrolled .header-nav a,
.header.scrolled .header-icons button { color: var(--black); }
.header .header-logo,
.header .header-nav a,
.header .header-icons button { color: var(--white); transition: color 0.4s ease; }
.header.header-dark { background: var(--black); color: var(--white); }
.header-logo {
  font-family: var(--font-en); font-weight: 200; font-size: 18px;
  letter-spacing: 4px; position: relative; padding: 4px 0;
}
.header-logo::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px; background: currentColor;
  transition: width 0.3s ease;
}
.header-logo:hover::after { width: 100%; }
.header-nav { display: flex; gap: 32px; }
.header-nav a {
  font-family: var(--font-en); font-weight: 300; font-size: 11px;
  letter-spacing: 2px; position: relative; padding: 4px 0;
}
.header-nav a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px; background: currentColor;
  transition: width 0.4s ease;
}
.header-nav a:hover::after { width: 100%; }
.header-icons { display: flex; gap: 20px; align-items: center; }
.header-icons button { color: inherit; font-size: 18px; }
.hamburger { display: none; flex-direction: column; gap: 5px; width: 24px; }
.hamburger span { display: block; height: 1px; background: currentColor; transition: 0.3s; }

/* モバイルメニュー */
.mobile-menu {
  display: none;
  position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
  background: #0A0A0A; color: var(--white);
  flex-direction: column; align-items: center; justify-content: center;
  z-index: 9998; overflow-y: auto; padding: 60px 40px;
}
.mobile-menu.active { display: flex; }
.mobile-menu a {
  font-family: var(--font-en); font-weight: 200;
  font-size: clamp(16px, 4vw, 28px);
  letter-spacing: 0.1em; line-height: 1.6; padding: 10px 0;
  display: block; color: var(--white);
}
.mobile-menu-close {
  display: none;
  position: fixed; top: 20px; right: 24px; z-index: 9999;
  font-size: 24px; color: var(--white); background: none; border: none; cursor: pointer;
}
.mobile-menu.active ~ .mobile-menu-close,
.mobile-menu-close.active { display: block; }

/* フッター */
.footer {
  background: var(--black); color: var(--white); padding: 80px 48px 40px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 64px;
}
.footer-title {
  font-family: var(--font-en); font-weight: 200; font-size: 13px;
  letter-spacing: 3px; margin-bottom: 24px;
}
.footer-text { font-size: 12px; color: rgba(255,255,255,0.5); line-height: 1.8; }
.footer-links a {
  display: block; font-size: 12px; color: rgba(255,255,255,0.5);
  margin-bottom: 12px; transition: color 0.3s;
}
.footer-links a:hover { color: var(--white); }
.footer-sns { display: flex; gap: 16px; }
.footer-sns a { font-size: 24px; color: rgba(255,255,255,0.5); transition: color 0.3s; }
.footer-sns a:hover { color: var(--gray); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: 32px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 11px; color: rgba(255,255,255,0.3);
}
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: rgba(255,255,255,0.3); transition: color 0.3s; }
.footer-bottom-links a:hover { color: var(--white); }

/* セクション共通 */
.section { padding: 120px 48px; }
.section-title {
  font-family: var(--font-en); font-weight: 200; font-size: clamp(36px, 8vw, 96px);
  letter-spacing: 4px; margin-bottom: 48px; line-height: 1.1;
}

/* 商品カード */
.product-card { position: relative; cursor: pointer; }
.product-card-img {
  position: relative; overflow: hidden; aspect-ratio: 3/4;
  background: var(--light-gray); margin-bottom: 16px;
}
.product-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: opacity 0.6s ease;
}
.product-card-img .hover-img {
  position: absolute; inset: 0; opacity: 0;
}
.product-card:hover .hover-img { opacity: 1; }
.product-card:hover .main-img { opacity: 0; }
.quick-view {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-en); font-weight: 300; font-size: 12px;
  letter-spacing: 3px; color: var(--white); opacity: 0;
  background: rgba(0,0,0,0.15); transition: opacity 0.4s;
}
.product-card:hover .quick-view { opacity: 1; }
.product-badge {
  position: absolute; top: 12px; left: 12px;
  font-family: var(--font-en); font-weight: 400; font-size: 10px;
  letter-spacing: 1.5px; padding: 4px 10px;
  background: var(--black); color: var(--white);
}
.product-card-name {
  font-family: var(--font-jp); font-weight: 300; font-size: 13px;
  margin-bottom: 4px;
}
.product-card-price {
  font-family: var(--font-en); font-weight: 300; font-size: 13px;
  color: var(--gray);
}

/* ヒーロー */
.hero {
  position: relative; height: 100vh; display: flex;
  align-items: center; justify-content: center; text-align: center;
  color: var(--white); overflow: hidden;
}
.hero-bg-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.4); }
.hero-content { position: relative; z-index: 1; }
.hero-title {
  font-family: var(--font-en); font-weight: 200;
  font-size: clamp(40px, 10vw, 140px); letter-spacing: 8px; line-height: 1;
  margin-bottom: 24px;
}
.hero-sub {
  font-family: var(--font-en); font-weight: 300;
  font-size: 13px; letter-spacing: 4px; margin-bottom: 40px;
}
.hero-btn {
  font-family: var(--font-en); font-weight: 300; font-size: 12px;
  letter-spacing: 3px; color: var(--white);
  border-bottom: 1px solid var(--white); padding-bottom: 4px;
  transition: opacity 0.3s;
}
.hero-btn:hover { opacity: 0.7; }

/* 横スクロール */
.scroll-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}

/* ブランドコンセプト */
.concept {
  background: var(--black); color: var(--white);
  padding: 120px 48px; position: relative; overflow: hidden;
}
.concept-bg-text {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  font-family: var(--font-en); font-weight: 200;
  font-size: clamp(80px, 20vw, 300px); letter-spacing: 16px;
  opacity: 0.06; white-space: nowrap; pointer-events: none;
}
.concept-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.concept-body { text-align: left; }
.concept-text {
  font-size: 15px; line-height: 2.4; margin-bottom: 48px;
  font-weight: 300;
}
.concept-link {
  font-family: var(--font-en); font-weight: 300; font-size: 12px;
  letter-spacing: 3px; border-bottom: 1px solid var(--white);
  padding-bottom: 4px; transition: opacity 0.3s;
}
.concept-link:hover { opacity: 0.7; }
.concept-photo { aspect-ratio: 3/4; overflow: hidden; }
.concept-photo img { width: 100%; height: 100%; object-fit: cover; }

/* コーディネートギャラリー */
.coord-scroll {
  display: flex; gap: 16px; overflow-x: auto;
  padding-bottom: 16px; scroll-snap-type: x mandatory;
  -ms-overflow-style: none; scrollbar-width: none;
}
.coord-scroll::-webkit-scrollbar { display: none; }
.coord-item {
  flex: 0 0 300px; height: 400px; overflow: hidden;
  cursor: pointer; scroll-snap-align: start; position: relative;
}
.coord-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.coord-item:hover img { transform: scale(1.03); }

/* ニュースレター */
.newsletter { background: var(--light-gray); padding: 96px 48px; text-align: center; }
.newsletter-title {
  font-family: var(--font-en); font-weight: 200; font-size: 24px;
  letter-spacing: 6px; margin-bottom: 32px;
}
.newsletter-form { display: flex; gap: 0; max-width: 480px; margin: 0 auto 16px; }
.newsletter-form input {
  flex: 1; padding: 14px 20px; border: 1px solid #ddd;
  font-size: 13px; background: var(--white); outline: none;
}
.newsletter-form button {
  padding: 14px 32px; background: var(--black); color: var(--white);
  font-family: var(--font-en); font-weight: 300; font-size: 11px;
  letter-spacing: 2px; border: none; cursor: pointer; transition: opacity 0.3s;
}
.newsletter-form button:hover { opacity: 0.8; }
.newsletter-sub { font-size: 12px; color: var(--gray); }

/* 商品一覧ページ */
.page-title-wrap {
  padding: 160px 48px 60px; position: relative;
  background: var(--black); color: var(--white);
}
.page-title {
  font-family: var(--font-en); font-weight: 200;
  font-size: clamp(48px, 12vw, 160px); letter-spacing: 6px; line-height: 1;
}
.filter-bar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0 48px; flex-wrap: wrap; gap: 16px;
  margin-top: 48px; margin-bottom: 32px;
}
.filter-cats { display: flex; gap: 24px; }
.filter-cats button {
  font-family: var(--font-en); font-weight: 300; font-size: 12px;
  letter-spacing: 2px; color: var(--gray); padding: 4px 0;
  border-bottom: 1px solid transparent; transition: 0.3s;
}
.filter-cats button.active,
.filter-cats button:hover { color: var(--black); border-bottom-color: var(--black); }
.sort-select {
  font-family: var(--font-en); font-weight: 300; font-size: 12px;
  padding: 8px 16px; border: 1px solid #ddd; background: var(--white);
  letter-spacing: 1px; outline: none; cursor: pointer;
}
.product-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 40px 24px; padding: 0 48px 120px;
}

/* 商品詳細ページ */
.detail-wrap {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; padding: 140px 48px 80px;
}
.detail-gallery {}
.detail-main-img {
  aspect-ratio: 3/4; overflow: hidden; background: var(--light-gray); margin-bottom: 12px;
}
.detail-main-img img { width: 100%; height: 100%; object-fit: cover; }
.detail-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.detail-thumbs button {
  aspect-ratio: 1; overflow: hidden; border: 2px solid transparent;
  cursor: pointer; background: var(--light-gray); padding: 0;
}
.detail-thumbs button.active { border-color: var(--black); }
.detail-thumbs img { width: 100%; height: 100%; object-fit: cover; }
.detail-info {}
.detail-brand {
  font-family: var(--font-en); font-weight: 300; font-size: 12px;
  color: var(--gray); letter-spacing: 2px; margin-bottom: 12px;
}
.detail-name {
  font-family: var(--font-en); font-weight: 200;
  font-size: 28px; letter-spacing: 2px; margin-bottom: 16px;
}
.detail-price {
  font-family: var(--font-en); font-weight: 300;
  font-size: 16px; color: var(--gray); margin-bottom: 32px;
}
.detail-label {
  font-family: var(--font-en); font-weight: 300; font-size: 11px;
  letter-spacing: 2px; margin-bottom: 12px; color: var(--gray);
}
.color-swatches { display: flex; gap: 12px; margin-bottom: 32px; }
.color-swatch {
  width: 32px; height: 32px; border-radius: 50%;
  border: 2px solid transparent; cursor: pointer; transition: 0.3s;
}
.color-swatch.active { outline: 2px solid #0A0A0A; outline-offset: 2px; border-color: transparent; }
.size-options { display: flex; gap: 8px; margin-bottom: 32px; }
.size-option {
  width: 48px; height: 48px; display: flex; align-items: center; justify-content: center;
  border: 1px solid #ddd; font-family: var(--font-en); font-weight: 300;
  font-size: 12px; letter-spacing: 1px; cursor: pointer; transition: 0.3s;
}
.size-option.active { border-color: var(--black); border-width: 2px; }
.btn-cart {
  width: 100%; padding: 18px; background: var(--black); color: var(--white);
  font-family: var(--font-en); font-weight: 300; font-size: 12px;
  letter-spacing: 3px; margin-bottom: 16px; transition: opacity 0.3s;
}
.btn-cart:hover { opacity: 0.85; }
.btn-wishlist {
  font-family: var(--font-en); font-weight: 300; font-size: 12px;
  letter-spacing: 2px; color: var(--gray); border-bottom: 1px solid var(--gray);
  padding-bottom: 2px; transition: color 0.3s; background: none; border-top: none;
  border-left: none; border-right: none; cursor: pointer;
}
.btn-wishlist:hover { color: var(--black); }
.detail-desc { margin: 40px 0; font-size: 14px; line-height: 2.2; color: var(--gray); }
.size-guide { width: 100%; border-collapse: collapse; margin: 32px 0; }
.size-guide th, .size-guide td {
  padding: 12px 16px; text-align: left;
  font-family: var(--font-en); font-weight: 300; font-size: 12px;
  border-bottom: 1px solid #eee;
}
.size-guide th { color: var(--gray); letter-spacing: 1px; }
.related-section { padding: 80px 48px 120px; }
.related-section .section-title { font-size: clamp(24px, 4vw, 48px); }

/* ストーリーページ */
.story-section {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center; padding: 80px 48px;
}
.story-section--reverse { direction: rtl; }
.story-section--reverse > * { direction: ltr; }
.story-img { height: 500px; overflow: hidden; }
.story-img img { width: 100%; height: 100%; object-fit: cover; }
.story-text h3 {
  font-family: var(--font-en); font-weight: 200; font-size: 20px;
  letter-spacing: 3px; margin-bottom: 32px;
}
.story-text p { font-size: 15px; line-height: 2.4; color: var(--gray); }
.story-bg-text {
  position: fixed; top: 50%; left: 50%; transform: translate(-50%,-50%);
  font-family: var(--font-en); font-weight: 200;
  font-size: clamp(100px, 25vw, 400px); letter-spacing: 16px;
  opacity: 0.04; pointer-events: none; z-index: 0;
}

/* ルックブック */
.masonry {
  columns: 3; column-gap: 16px; padding: 0 48px 120px;
}
.masonry-item {
  break-inside: avoid; margin-bottom: 16px;
  position: relative; overflow: hidden; cursor: pointer;
}
.masonry-item img { width: 100%; display: block; transition: transform 0.6s; }
.masonry-item:hover img { transform: scale(1.03); }
.shop-look {
  position: absolute; inset: 0; display: flex;
  align-items: center; justify-content: center;
  background: rgba(0,0,0,0.2); opacity: 0; transition: opacity 0.4s;
}
.shop-look span {
  font-family: var(--font-en); font-weight: 300; font-size: 12px;
  letter-spacing: 3px; color: var(--white); padding: 10px 24px;
  border: 1px solid var(--white);
}
.masonry-item:hover .shop-look { opacity: 1; }

/* お問い合わせ */
.contact-wrap {
  display: flex; gap: 80px;
  max-width: 1200px; margin: 0 auto;
  padding: 80px 48px 60px;
}
.contact-form-col { flex: 0 0 55%; }
.contact-faq-col { flex: 0 0 calc(45% - 80px); }
.contact-faq-title {
  font-family: var(--font-en); font-weight: 200;
  font-size: clamp(24px, 4vw, 40px); letter-spacing: 4px;
  margin-bottom: 32px;
}
.form-group { margin-bottom: 28px; }
.form-label {
  display: block; font-family: var(--font-en); font-weight: 300;
  font-size: 11px; letter-spacing: 2px; color: var(--gray); margin-bottom: 8px;
}
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 14px 0; border: none;
  border-bottom: 1px solid #ddd; font-size: 14px;
  outline: none; background: transparent; transition: border-color 0.3s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-bottom-color: var(--black);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-error { font-size: 12px; color: #dc2626; margin-top: 6px; display: none; }
.form-error.show { display: block; }
.btn-submit {
  padding: 18px 48px; background: var(--black); color: var(--white);
  font-family: var(--font-en); font-weight: 300; font-size: 12px;
  letter-spacing: 3px; transition: opacity 0.3s; border: none; cursor: pointer;
}
.btn-submit:hover { opacity: 0.85; }

/* FAQ */
.faq-section { margin-top: 20px; }
.faq-item { border-bottom: 1px solid #eee; }
.faq-q {
  width: 100%; text-align: left; padding: 24px 0;
  font-size: 14px; font-weight: 300; display: flex;
  justify-content: space-between; align-items: center;
  cursor: pointer; background: none; border: none;
}
.faq-q::after { content: '+'; font-family: var(--font-en); font-size: 20px; font-weight: 200; transition: transform 0.3s; }
.faq-q.active::after { content: '−'; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-a-inner { padding: 0 0 24px; font-size: 13px; color: var(--gray); line-height: 2; }
.contact-sns { margin-top: 60px; text-align: center; padding-bottom: 80px; }
.contact-sns-title {
  font-family: var(--font-en); font-weight: 200; font-size: 14px;
  letter-spacing: 3px; margin-bottom: 16px;
}
.contact-sns-links { display: flex; gap: 24px; justify-content: center; }
.contact-sns-links a {
  font-size: 32px; color: var(--black); transition: color 0.3s;
}
.contact-sns-links a:hover { color: var(--gray); }

/* ライトボックス */
.lightbox {
  position: fixed; inset: 0; background: rgba(0,0,0,0.92);
  z-index: 2000; display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.lightbox.active { opacity: 1; pointer-events: all; }
.lightbox-img { max-width: 85vw; max-height: 85vh; object-fit: contain; }
.lightbox-close {
  position: absolute; top: 24px; right: 32px;
  font-size: 32px; color: var(--white); cursor: pointer;
  background: none; border: none;
}
.lightbox-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  font-size: 32px; color: var(--white); cursor: pointer;
  background: none; border: none; padding: 16px;
}
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

/* スクロールアニメーション */
.fade-in {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* 検索バー */
.search-bar {
  position: fixed; top: var(--header-h); left: 0; width: 100%; z-index: 998;
  background: var(--white); box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease;
}
.search-bar.active { max-height: 80px; }
.search-bar-inner {
  display: flex; align-items: center; padding: 16px 48px; gap: 16px;
}
.search-input {
  flex: 1; padding: 10px 0; border: none; border-bottom: 1px solid #ddd;
  font-size: 14px; font-family: var(--font-jp); outline: none;
  background: transparent;
}
.search-input:focus { border-bottom-color: var(--black); }
.search-close {
  font-size: 24px; color: var(--gray); cursor: pointer;
  background: none; border: none; transition: color 0.3s;
}
.search-close:hover { color: var(--black); }

/* カートパネル */
.cart-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.4);
  z-index: 1998; opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.cart-overlay.active { opacity: 1; pointer-events: all; }
.cart-panel {
  position: fixed; top: 0; right: -400px; width: 380px; height: 100%;
  background: var(--white); z-index: 1999; transition: right 0.4s ease;
  display: flex; flex-direction: column;
}
.cart-panel.active { right: 0; }
.cart-panel-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 32px 32px 24px; border-bottom: 1px solid #eee;
}
.cart-panel-header h3 {
  font-family: var(--font-en); font-weight: 200; font-size: 16px;
  letter-spacing: 4px;
}
.cart-panel-close {
  font-size: 28px; color: var(--gray); cursor: pointer;
  background: none; border: none; transition: color 0.3s;
}
.cart-panel-close:hover { color: var(--black); }
.cart-panel-body {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center; padding: 48px 32px;
}
.cart-empty-msg {
  font-size: 14px; color: var(--gray); margin-bottom: 32px;
}
.cart-continue-btn {
  display: inline-block; padding: 14px 32px;
  background: var(--black); color: var(--white);
  font-family: var(--font-en); font-weight: 300; font-size: 11px;
  letter-spacing: 2px; transition: opacity 0.3s;
}
.cart-continue-btn:hover { opacity: 0.85; }

/* Productsヒーロー */
.products-hero {
  position: relative; height: 360px; display: flex;
  align-items: center; justify-content: center; text-align: center;
  color: var(--white); overflow: hidden; margin-top: 0;
}
.products-hero-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: opacity 0.3s ease;
}
.products-hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.5); }
.products-hero-content { position: relative; z-index: 1; }
.products-hero-title {
  font-family: var(--font-en); font-weight: 200;
  font-size: clamp(40px, 10vw, 100px); letter-spacing: 6px; line-height: 1;
  margin-bottom: 12px;
}
.products-hero-sub {
  font-family: var(--font-en); font-weight: 300;
  font-size: 13px; letter-spacing: 4px;
}

/* レスポンシブ 768px以下 */
@media (max-width: 768px) {
  .header { padding: 0 24px; }
  .header-nav { display: none; }
  .hamburger { display: flex; }
  .section { padding: 80px 24px; }
  .page-title-wrap { padding: 120px 24px 40px; }
  .scroll-row { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 24px 12px; padding: 0 24px 80px; }
  .filter-bar { padding: 0 24px 32px; }
  .filter-cats { flex-wrap: wrap; gap: 12px; }
  .detail-wrap { grid-template-columns: 1fr; gap: 40px; padding: 120px 24px 60px; }
  .story-section { grid-template-columns: 1fr; gap: 32px; padding: 60px 24px; }
  .story-section:nth-child(even) { direction: ltr; }
  .masonry { columns: 2; padding: 0 24px 80px; }
  .contact-wrap { flex-direction: column; gap: 0; padding: 60px 24px 40px; }
  .contact-form-col, .contact-faq-col { flex: none; width: 100%; }
  .contact-faq-col { margin-top: 60px; }
  .footer { padding: 60px 24px 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .concept { padding: 80px 24px; }
  .newsletter { padding: 64px 24px; }
  .newsletter-form { flex-direction: column; gap: 12px; }
  .newsletter-form button { width: 100%; }
  .coord-item { flex: 0 0 240px; height: 320px; }
  .concept-inner { grid-template-columns: 1fr; gap: 32px; }
  .concept-inner { display: flex; flex-direction: column-reverse; }
  .concept-photo { aspect-ratio: 4/5; }
  .related-section { padding: 60px 24px 80px; }
  .mobile-menu-close { right: 24px; }
  .search-bar-inner { padding: 16px 24px; }
  .cart-panel { width: 100%; right: -100%; }
  .products-hero { height: 260px; }
}

@media (max-width: 375px) {
  .mobile-menu a {
    font-size: clamp(14px, 3.5vw, 22px);
    padding: 8px 0;
  }
}
