/* Generated by Trae Work */

@font-face {
  font-family: 'InstrumentSans';
  src: url('../_shared/fonts/InstrumentSans-Regular.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'InstrumentSans';
  src: url('../_shared/fonts/InstrumentSans-Bold.ttf') format('truetype');
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: 'InstrumentSerif';
  src: url('../_shared/fonts/InstrumentSerif-Regular.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'InstrumentSerif';
  src: url('../_shared/fonts/InstrumentSerif-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

:root {
  --bg: #FAFAF8;
  --bg2: #F2F0EC;
  --ink: #1A1A1A;
  --muted: #6B6B6B;
  --rule: #D9D5CE;
  --accent: #C45C26;
  --accent2: #2D6A4F;
  --surface: #FFFFFF;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'InstrumentSans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(250, 250, 248, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule);
  transition: all 0.3s ease;
}

.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  font-family: 'InstrumentSerif', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

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

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
}

.nav-links a:hover, .nav-links a.active { color: var(--accent); }

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

.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-cta {
  background: var(--accent);
  color: #fff !important;
  padding: 0.5rem 1.25rem;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
}

.nav-cta::after { display: none !important; }

.nav-cta:hover { background: #A84D1F; }

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-btn span {
  display: block;
  width: 24px; height: 2px;
  background: var(--ink);
  margin: 5px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  padding-top: 64px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content { max-width: 540px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg2);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero-badge::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
}

.hero h1 {
  font-family: 'InstrumentSerif', serif;
  font-size: 3.2rem;
  line-height: 1.15;
  font-weight: 400;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

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

.hero p {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
}

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

.btn-primary:hover {
  background: #A84D1F;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196, 92, 38, 0.25);
}

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--rule);
}

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

.btn-full { width: 100%; justify-content: center; }

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.1);
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--rule);
}

.stat-item { display: flex; flex-direction: column; }

.stat-number {
  font-family: 'InstrumentSerif', serif;
  font-size: 2rem;
  color: var(--accent);
  font-weight: 400;
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.3rem;
}

/* Page Header */
.page-header {
  padding-top: 64px;
  background: var(--bg2);
  text-align: center;
  padding: 8rem 2rem 4rem;
}

.page-header-inner {
  max-width: 640px;
  margin: 0 auto;
}

.page-header h1 {
  font-family: 'InstrumentSerif', serif;
  font-size: 2.8rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.page-header p {
  color: var(--muted);
  font-size: 1.1rem;
}

/* Section Common */
.section { padding: 6rem 2rem; }

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

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 4rem;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 1rem;
}

.section-header h2 {
  font-family: 'InstrumentSerif', serif;
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.section-header p {
  color: var(--muted);
  font-size: 1.05rem;
}

.section-cta {
  text-align: center;
  margin-top: 3rem;
}

/* Products Section */
.products-section { background: var(--bg2); }

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.product-card {
  background: var(--surface);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid var(--rule);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
  border-color: transparent;
}

.product-card-image {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--bg);
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.product-card:hover .product-card-image img { transform: scale(1.05); }

.product-card-body { padding: 1.5rem; }

.product-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.product-card p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
}

.product-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  margin-top: 0.75rem;
}

.tag-canvas { background: #F5E6D3; color: #8B5E3C; }
.tag-nonwoven { background: #D3E5F5; color: #3C5E8B; }
.tag-tyvek { background: #E8E8E8; color: #555; }
.tag-waterproof { background: #D3F5E8; color: #2D6A4F; }

/* Placeholder Images */
.placeholder-img {
  background: var(--bg2);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}

.placeholder-img.large { min-height: 360px; }

.placeholder-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  color: var(--muted);
}

.placeholder-content svg {
  opacity: 0.4;
}

.placeholder-content span {
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0.6;
}

/* Product Detail Grid */
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.product-detail-grid.reverse {
  direction: rtl;
}

.product-detail-grid.reverse > * {
  direction: ltr;
}

.product-detail-content h2 {
  font-family: 'InstrumentSerif', serif;
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 1rem;
}

.product-detail-content .lead {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.product-detail-content p {
  color: var(--muted);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.product-detail-content h3 {
  font-size: 1rem;
  font-weight: 600;
  margin: 1.5rem 0 0.75rem;
}

.detail-list {
  list-style: none;
  margin-bottom: 1.5rem;
}

.detail-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.detail-list li::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: var(--accent2);
  color: #fff;
  border-radius: 50%;
  font-size: 0.65rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.tag-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

/* Price Tables */
.price-tables {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.price-figure {
  margin: 0;
  text-align: center;
}

.price-figure img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  border: 1px solid var(--rule);
}

.price-figure figcaption {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.75rem;
}

.price-note {
  background: var(--bg2);
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
}

.price-note p {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.price-note .btn { margin-top: 1rem; }

/* Process Steps */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: var(--rule);
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 64px; height: 64px;
  background: var(--surface);
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'InstrumentSerif', serif;
  font-size: 1.5rem;
  color: var(--accent);
  margin: 0 auto 1.5rem;
  font-weight: 400;
}

.process-step h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.process-step p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
}

/* Timeline */
.process-timeline {
  max-width: 800px;
  margin: 0 auto;
}

.timeline-item {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--rule);
}

.timeline-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.timeline-marker {
  width: 56px;
  height: 56px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'InstrumentSerif', serif;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.timeline-content h2 {
  font-family: 'InstrumentSerif', serif;
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.timeline-time {
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.timeline-content p {
  color: var(--muted);
  margin-bottom: 1rem;
  line-height: 1.7;
}

/* FAQ */
.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: 8px;
  overflow: hidden;
}

.faq-item summary {
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: 1.25rem;
  color: var(--accent);
  transition: transform 0.3s;
}

.faq-item[open] summary::after { content: '−'; }

.faq-item p {
  padding: 0 1.5rem 1.25rem;
  color: var(--muted);
  line-height: 1.7;
}

/* Features Section */
.features-section {
  background: var(--ink);
  color: #fff;
}

.features-section .section-tag { color: #E8A87C; }

.features-section .section-header h2 { color: #fff; }

.features-section .section-header p { color: rgba(255,255,255,0.6); }

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

.feature-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 2.5rem 2rem;
  transition: all 0.3s;
}

.feature-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-4px);
}

.feature-icon {
  width: 48px; height: 48px;
  background: rgba(196, 92, 38, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.feature-icon svg {
  color: var(--accent);
}

.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #fff;
}

.feature-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

/* Craftsmanship Section */
.craft-section { background: var(--bg); }

.craft-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.craft-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
}

.craft-content h2 {
  font-family: 'InstrumentSerif', serif;
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.craft-content p {
  color: var(--muted);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.craft-list { list-style: none; }

.craft-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.craft-list li::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  background: var(--accent2);
  color: #fff;
  border-radius: 50%;
  font-size: 0.7rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Video Section */
.video-section { background: var(--bg); }

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.video-item {
  background: var(--surface);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--rule);
  margin: 0;
}

.video-item video,
.video-item img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}

.video-caption {
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  color: var(--muted);
  text-align: center;
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.stat-card {
  text-align: center;
  padding: 2rem;
  background: var(--surface);
  border-radius: 8px;
  border: 1px solid var(--rule);
}

.stat-card .stat-number {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 0.5rem;
}

.stat-card .stat-label {
  font-size: 0.9rem;
  color: var(--muted);
}

/* CTA Section */
.cta-section {
  background: var(--accent);
  color: #fff;
  text-align: center;
  padding: 5rem 2rem;
}

.cta-section h2 {
  font-family: 'InstrumentSerif', serif;
  font-size: 2.4rem;
  font-weight: 400;
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section .btn {
  background: #fff;
  color: var(--accent);
}

.cta-section .btn:hover {
  background: var(--bg);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

/* Contact Page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h2 {
  font-family: 'InstrumentSerif', serif;
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--rule);
}

.contact-item:last-child {
  border-bottom: none;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--bg2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.contact-item h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.contact-item p {
  color: var(--muted);
  font-size: 0.95rem;
}

.contact-item a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}

.contact-note {
  font-size: 0.8rem !important;
  color: var(--muted);
  margin-top: 0.25rem;
}

.contact-form-wrapper {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: 8px;
  padding: 2.5rem;
}

.contact-form-wrapper h2 {
  font-family: 'InstrumentSerif', serif;
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.form-group .required {
  color: var(--accent);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--rule);
  border-radius: 4px;
  font-size: 0.95rem;
  font-family: inherit;
  background: var(--bg);
  color: var(--ink);
  transition: border-color 0.2s;
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--muted);
  opacity: 0.6;
}

.form-note {
  font-size: 0.8rem;
  color: var(--muted);
  text-align: center;
  margin-top: 1rem;
}

/* Map Placeholder */
.map-placeholder {
  background: var(--bg2);
  border-radius: 8px;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--rule);
}

.map-content {
  text-align: center;
  color: var(--muted);
}

.map-content svg {
  color: var(--accent);
  margin-bottom: 1rem;
}

.map-content p {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--ink);
}

.map-note {
  font-size: 0.85rem !important;
  color: var(--muted) !important;
  margin-top: 0.5rem;
}

/* Footer */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.6);
  padding: 4rem 2rem 2rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand .logo {
  color: #fff;
  margin-bottom: 1rem;
  display: inline-flex;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 300px;
}

.footer-col h4 {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}

.footer-col ul { list-style: none; }

.footer-col li { margin-bottom: 0.6rem; }

.footer-col a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-col a:hover { color: #fff; }

.footer-bottom {
  max-width: 1200px;
  margin: 3rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

.footer-bottom a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
}

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

/* Scroll animations */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Responsive */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: repeat(2, 1fr); }
  .product-detail-grid { grid-template-columns: 1fr; gap: 2rem; }
  .product-detail-grid.reverse { direction: ltr; }
  .video-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .price-tables { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem 1.5rem;
  }
  .hero h1 { font-size: 2.2rem; }
  .hero-stats { gap: 1.5rem; }
  .nav-links { display: none; }
  .mobile-menu-btn { display: block; }
  .products-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .craft-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .section { padding: 4rem 1.5rem; }
  .section-header h2 { font-size: 1.8rem; }
  .page-header h1 { font-size: 2rem; }
  .page-header { padding: 6rem 1.5rem 3rem; }
  .timeline-item { flex-direction: column; gap: 1rem; }
  .video-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .contact-form .form-row { grid-template-columns: 1fr; }
  .hero-image { order: -1; }
}

/* Modal / Popup */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: var(--surface);
  border-radius: 12px;
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 24px 64px rgba(0,0,0,0.15);
  transform: translateY(20px) scale(0.96);
  transition: transform 0.3s ease;
}

.modal-overlay.active .modal {
  transform: translateY(0) scale(1);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 1.5rem 0;
}

.modal-header h2 {
  font-family: 'InstrumentSerif', serif;
  font-size: 1.5rem;
  font-weight: 400;
}

.modal-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  color: var(--muted);
  transition: color 0.2s;
}

.modal-close:hover { color: var(--ink); }

.modal-body {
  padding: 1rem 1.5rem 1.5rem;
}

.modal-form .form-group {
  margin-bottom: 1rem;
}

.modal-form label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--ink);
}

.modal-form .label-note {
  font-weight: 400;
  color: var(--muted);
}

.modal-form input,
.modal-form select,
.modal-form textarea {
  width: 100%;
  padding: 0.65rem 0.875rem;
  border: 1.5px solid var(--rule);
  border-radius: 6px;
  font-size: 0.9rem;
  font-family: inherit;
  background: var(--bg);
  color: var(--ink);
  transition: border-color 0.2s;
}

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

.modal-form .required-mark {
  color: var(--accent);
}

.modal-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.modal-submit {
  width: 100%;
  margin-top: 0.5rem;
}

.modal-success,
.modal-error {
  text-align: center;
  padding: 2rem 1rem;
}

.modal-success svg,
.modal-error svg {
  margin-bottom: 1rem;
}

.modal-success h3 {
  font-family: 'InstrumentSerif', serif;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--accent2);
}

.modal-error h3 {
  font-family: 'InstrumentSerif', serif;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--accent);
}

.modal-success p,
.modal-error p {
  color: var(--muted);
  font-size: 0.9rem;
}

/* Print styles */
@media print {
  .navbar, .cta-section, .footer, .mobile-menu-btn, .modal-overlay { display: none; }
  .hero { padding-top: 2rem; min-height: auto; }
  .section { padding: 2rem 0; }
  body { font-size: 12pt; }
  a { text-decoration: none; color: var(--ink); }
}

@media (max-width: 520px) {
  .modal-form .form-row {
    grid-template-columns: 1fr;
  }
}
