/* Garment OEM Website - inspired by chenjiawear.com */
:root {
  --primary: #111827;
  --primary-light: #1f2937;
  --accent: #d97706;
  --accent-hover: #b45309;
  --text: #374151;
  --text-light: #6b7280;
  --bg: #ffffff;
  --bg-alt: #f9fafb;
  --header-bg: #f7f4ef;
  --header-border: #e8e2d8;
  --border: #e5e7eb;
  --radius: 8px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  --max-width: 1200px;
  --header-h: 72px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--header-bg);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--header-border);
  height: var(--header-h);
  box-shadow: 0 1px 12px rgba(17, 24, 39, 0.06);
}

.site-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), #f59e0b);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 24px;
}

.logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.logo span { color: var(--accent); }

.main-nav { display: flex; align-items: center; gap: 4px; }

.main-nav > li { position: relative; }

.main-nav > li > a,
.main-nav > li > button {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--primary);
  background: none;
  border: none;
  cursor: pointer;
  border-radius: var(--radius);
  transition: background 0.2s;
  font-family: inherit;
}

.main-nav > li > a:hover,
.main-nav > li > button:hover { background: rgba(255, 255, 255, 0.7); }

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.2s;
}

.main-nav > li:hover .dropdown,
.main-nav > li:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  display: block;
  padding: 10px 14px;
  font-size: 0.875rem;
  border-radius: 6px;
  transition: background 0.15s;
}

.dropdown a:hover { background: var(--bg-alt); color: var(--accent); }

.header-actions { display: flex; align-items: center; gap: 12px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.btn-primary:hover { background: var(--accent-hover); border-color: var(--accent-hover); }

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline:hover { background: var(--primary); color: #fff; }

.btn-whatsapp {
  background: #25d366;
  color: #fff;
  border-color: #25d366;
}

.btn-whatsapp:hover { background: #1da851; border-color: #1da851; }

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

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

/* Hero */
.hero {
  padding: calc(var(--header-h) + 60px) 0 60px;
  background: linear-gradient(135deg, #f9fafb 0%, #fff 50%, #fef3c7 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 16px;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--text-light);
  margin-bottom: 24px;
  max-width: 520px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.tag {
  font-size: 0.8rem;
  font-weight: 500;
  padding: 6px 12px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--text);
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.hero-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* Stats bar */
.stats-bar {
  background: var(--primary);
  color: #fff;
  padding: 32px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-num {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.85rem;
  opacity: 0.85;
}

/* Sections */
.section {
  padding: 80px 0;
}

.section-alt { background: var(--bg-alt); }

.section-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-desc {
  color: var(--text-light);
  max-width: 640px;
  margin-bottom: 48px;
}

.section-header-center {
  text-align: center;
}

.section-header-center .section-desc {
  margin-left: auto;
  margin-right: auto;
}

/* Feature cards */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.features-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.feature-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
}

.feature-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: #fef3c7;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 16px;
}

.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* Product cards */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-card {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #fff;
  transition: box-shadow 0.2s, transform 0.2s;
}

.product-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.product-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.product-card-body {
  padding: 20px;
  text-align: center;
}

.product-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 8px;
}

.product-card p {
  font-size: 0.875rem;
  color: var(--text-light);
  margin-bottom: 12px;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
}

.product-tags span {
  font-size: 0.75rem;
  padding: 4px 10px;
  background: var(--bg-alt);
  border-radius: 100px;
  color: var(--text);
}

/* About split */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-split img {
  border-radius: 12px;
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
}

/* Factory gallery */
.factory-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.factory-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.factory-item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.3s;
}

.factory-item:hover img { transform: scale(1.05); }

.factory-item span {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: #fff;
  font-size: 0.85rem;
  font-weight: 500;
}

/* Services split */
.services-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.services-split img {
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.services-list {
  margin: 24px 0;
}

.services-list li {
  padding: 10px 0 10px 28px;
  position: relative;
  font-size: 0.95rem;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}

.services-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* Process */
.process-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.process-step {
  text-align: center;
  padding: 24px 12px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
}

.process-num {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
}

.process-step p {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--primary);
}

/* FAQ */
.faq-list { max-width: 800px; }

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  text-align: left;
  font-family: inherit;
  gap: 16px;
}

.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq-item.open .faq-question::after { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  padding-bottom: 20px;
  color: var(--text-light);
  font-size: 0.95rem;
}

.faq-item.open .faq-answer { max-height: 200px; }

/* CTA inline bar (chenjiawear-style) */
.cta-inline-wrap {
  padding: 80px 0;
  background: var(--bg-alt);
}

.cta-inline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background: var(--primary);
  border-radius: 16px;
  padding: 48px 56px;
  color: #fff;
}

.cta-inline-content {
  flex: 1;
  min-width: 0;
}

.cta-inline-content h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  font-weight: 700;
  margin-bottom: 14px;
  line-height: 1.25;
}

.cta-inline-content > p {
  opacity: 0.88;
  font-size: 0.95rem;
  max-width: 560px;
}

.cta-inline-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 40px;
  margin-top: 22px;
}

.cta-inline-checklist li {
  font-size: 0.9rem;
  padding: 8px 0 8px 24px;
  position: relative;
  opacity: 0.9;
  border: none;
}

.cta-inline-checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.cta-inline-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
  min-width: 200px;
}

.cta-inline-actions .btn {
  width: 100%;
  justify-content: center;
}

.btn-white {
  background: #fff;
  color: var(--primary);
  border-color: #fff;
}

.btn-white:hover {
  background: #f3f4f6;
  border-color: #f3f4f6;
}

/* Contact page hero */
.contact-hero {
  margin-top: var(--header-h);
  min-height: 320px;
  background-image: var(--contact-hero-bg);
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  display: flex;
  align-items: stretch;
}

.contact-hero-overlay {
  width: 100%;
  min-height: 320px;
  background: linear-gradient(90deg, rgba(17, 24, 39, 0.92) 0%, rgba(17, 24, 39, 0.75) 55%, rgba(17, 24, 39, 0.45) 100%);
  display: flex;
  align-items: center;
  padding: 72px 0;
}

.contact-hero-content {
  max-width: 640px;
  text-align: left;
  color: #fff;
}

.contact-hero-content h1 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #fff;
}

.contact-hero-content h1 em {
  font-style: italic;
  color: var(--accent);
}

.contact-hero-content p {
  font-size: 1.05rem;
  opacity: 0.9;
  line-height: 1.7;
  max-width: 520px;
}

/* CTA (legacy full-width) */
.cta-section {
  background: var(--primary);
  color: #fff;
  padding: 80px 0;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.cta-grid h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 16px;
}

.cta-grid p { opacity: 0.85; margin-bottom: 12px; }

.cta-grid a { color: var(--accent); }

.cta-form {
  background: #fff;
  border-radius: 12px;
  padding: 32px;
  color: var(--text);
}

.form-success {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: var(--radius);
  background: #ecfdf5;
  color: #047857;
  font-size: 0.95rem;
  font-weight: 500;
  text-align: center;
}

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--primary);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-family: inherit;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
}

.form-group textarea { resize: vertical; min-height: 100px; }

/* Footer */
.site-footer {
  background: var(--primary-light);
  color: #d1d5db;
  padding: 60px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .logo { color: #fff; margin-bottom: 16px; display: block; }

.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.footer-tags { display: flex; flex-wrap: wrap; gap: 8px; }

.footer-tags span {
  font-size: 0.75rem;
  padding: 4px 10px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
}

.footer-col h4 {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 0.875rem;
  padding: 6px 0;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--accent); }

.footer-contact li {
  font-size: 0.875rem;
  padding: 6px 0;
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
}

.footer-bottom a { color: #9ca3af; }
.footer-bottom a:hover { color: #fff; }

/* Floating WhatsApp */
.fab-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s;
  font-size: 1.6rem;
}

.fab-whatsapp:hover { transform: scale(1.08); }

/* Page hero (inner pages) */
.page-hero {
  padding: calc(var(--header-h) + 48px) 0 48px;
  background: var(--bg-alt);
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}

.page-hero p {
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
}

.contact-info-card {
  background: var(--bg-alt);
  border-radius: 12px;
  padding: 32px;
}

.contact-info-card h3 {
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}

.contact-info-item .icon {
  width: 44px;
  height: 44px;
  background: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-info-item strong {
  display: block;
  color: var(--primary);
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.contact-info-item span,
.contact-info-item a {
  font-size: 0.9rem;
  color: var(--text-light);
}

.contact-info-item a:hover { color: var(--accent); }

/* Products page */
.product-detail-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 60px;
}

.product-detail-hero:last-child {
  margin-bottom: 0;
}

.product-detail-hero img {
  border-radius: 12px;
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
}

.spec-list {
  margin: 24px 0;
}

.spec-list li {
  padding: 8px 0 8px 24px;
  position: relative;
  font-size: 0.95rem;
}

.spec-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* Mobile nav */
@media (max-width: 900px) {
  .menu-toggle { display: flex; }

  .main-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--header-bg);
    flex-direction: column;
    align-items: stretch;
    padding: 24px;
    gap: 0;
    transform: translateX(100%);
    transition: transform 0.3s;
    overflow-y: auto;
  }

  .main-nav.open { transform: translateX(0); }

  .main-nav > li > a,
  .main-nav > li > button {
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    border-radius: 0;
    width: 100%;
    justify-content: space-between;
  }

  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 0 0 0 16px;
    display: none;
  }

  .main-nav > li.dropdown-open .dropdown { display: block; }

  .header-actions .btn-outline { display: none; }

  .hero-grid,
  .about-split,
  .services-split,
  .cta-grid,
  .cta-inline,
  .contact-grid,
  .product-detail-hero { grid-template-columns: 1fr; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid,
  .features-grid-4,
  .products-grid,
  .factory-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }

  .hero-image { order: -1; }
  .section { padding: 60px 0; }
}

@media (max-width: 480px) {
  .stats-grid,
  .process-grid,
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
}

/* Product landing pages (chenjiawear-style) */
.product-intro-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.product-intro-split img {
  border-radius: 12px;
  box-shadow: var(--shadow);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.mini-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.mini-stat {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 18px;
}

.mini-stat strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

.mini-stat span {
  font-size: 0.95rem;
  color: var(--primary);
  font-weight: 500;
}

.technique-card {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #fff;
  transition: box-shadow 0.2s, transform 0.2s;
}

.technique-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.technique-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.dress-styles-grid .technique-card img {
  width: 100%;
  max-width: 740px;
  aspect-ratio: 740 / 815;
  max-height: 815px;
  object-fit: cover;
  object-position: center;
  margin: 0 auto;
}

.dress-styles-grid .technique-card:has(.technique-card-body > h3:only-child) {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  height: 100%;
}

.dress-styles-grid .technique-card:has(.technique-card-body > h3:only-child) img {
  width: 100%;
  max-width: none;
  height: 100%;
  min-height: 0;
  max-height: none;
  aspect-ratio: auto;
  margin: 0;
}

.dress-styles-grid .technique-card-body:has(> h3:only-child) {
  flex: none;
  display: block;
  padding: 14px 20px 18px;
}

.dress-styles-grid .technique-card-body:has(> h3:only-child) h3 {
  margin-bottom: 0;
}

.dress-styles-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  justify-items: center;
  align-items: stretch;
}

.dress-styles-grid .technique-card {
  width: 100%;
  max-width: 740px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

@media (max-width: 900px) {
  .dress-styles-grid {
    grid-template-columns: 1fr;
  }

  .dress-styles-grid .technique-card,
  .dress-styles-grid .technique-card img {
    max-width: 100%;
  }

  .dress-styles-grid .technique-card img {
    max-height: none;
  }

  .dress-styles-grid .technique-card:has(.technique-card-body > h3:only-child) {
    display: flex;
    flex-direction: column;
    height: auto;
  }

  .dress-styles-grid .technique-card:has(.technique-card-body > h3:only-child) img {
    height: auto;
    aspect-ratio: 740 / 815;
  }
}

.technique-card-body {
  padding: 20px;
  text-align: center;
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 180px;
}

.technique-card-body:has(> h3:only-child) {
  display: block;
  min-height: 0;
}

.technique-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 8px;
}

.technique-card p {
  font-size: 0.875rem;
  color: var(--text-light);
  margin-bottom: 12px;
}

@media (max-width: 900px) {
  .cta-inline {
    flex-direction: column;
    align-items: stretch;
    padding: 36px 28px;
  }

  .cta-inline-actions {
    flex-direction: row;
    min-width: 0;
  }

  .cta-inline-checklist {
    grid-template-columns: 1fr;
  }
}

.hero-banner-full {
  margin-top: var(--header-h);
  width: 100%;
  min-height: 700px;
  background-image: var(--hero-banner-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.hero-banner-full-overlay {
  width: 100%;
  min-height: 700px;
  background: rgba(17, 24, 39, 0.62);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
}

.hero-banner-full-content {
  max-width: 920px;
  text-align: center;
  color: #fff;
}

.hero-badge-light {
  display: inline-block;
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 8px 18px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-banner-full h1 {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.hero-banner-full .hero-desc {
  color: rgba(255, 255, 255, 0.92);
  margin: 0 auto 28px;
  max-width: 780px;
  font-size: 1.05rem;
  line-height: 1.7;
}

.hero-banner-full .hero-tags {
  justify-content: center;
  margin-bottom: 32px;
}

.hero-banner-full .tag {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
}

.hero-banner-full .hero-actions {
  justify-content: center;
}

.hero-title-accent {
  color: var(--accent);
  font-family: 'Dancing Script', cursive;
  font-weight: 700;
  display: block;
  margin-top: 4px;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  line-height: 1.1;
}

.hero-banner-simple .hero-banner-full-content {
  max-width: 960px;
}

.hero-banner-simple h1 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  margin-bottom: 24px;
}

.hero-banner-simple .hero-desc {
  max-width: 860px;
  margin-bottom: 36px;
}

.section-hoodie-showcase {
  padding: 32px 0;
}

.hoodie-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 10px;
  height: clamp(600px, 84vh, 880px);
  max-height: 880px;
}

.hoodie-showcase-grid img {
  width: 100%;
  height: 100%;
  min-height: 0;
  border-radius: var(--radius);
  object-fit: cover;
  object-position: center;
  display: block;
}

.hoodie-showcase-grid img:nth-child(1) { grid-column: 1; grid-row: 1; }
.hoodie-showcase-grid img:nth-child(2) { grid-column: 1; grid-row: 2 / 4; }
.hoodie-showcase-grid img:nth-child(3) { grid-column: 2; grid-row: 1 / 3; }
.hoodie-showcase-grid img:nth-child(4) { grid-column: 2; grid-row: 3; }
.hoodie-showcase-grid img:nth-child(5) { grid-column: 3; grid-row: 1; }
.hoodie-showcase-grid img:nth-child(6) { grid-column: 3; grid-row: 2 / 4; }

@media (max-width: 900px) {
  .hoodie-showcase-grid {
    display: flex;
    flex-direction: column;
    height: auto;
    max-height: none;
    gap: 12px;
  }

  .hoodie-showcase-grid img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    flex: none;
  }

  .hoodie-showcase-grid img:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
  }
}

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

.service-inquire-card {
  text-align: center;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  height: 100%;
}

.service-inquire-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 18px;
  line-height: 1.3;
}

.service-inquire-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
  margin-bottom: 18px;
}

.service-inquire-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 22px;
  align-self: start;
}

.service-inquire-card .btn {
  min-width: 160px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.85rem;
  justify-self: center;
}

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

.btn-dark {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.btn-dark:hover {
  background: var(--primary-light);
  border-color: var(--primary-light);
}

@media (max-width: 900px) {
  .hero-banner-full,
  .hero-banner-full-overlay {
    min-height: 560px;
  }

  .hero-banner-full-overlay {
    padding: 60px 20px;
  }
}
