:root {
  --bg: #faf8f4;
  --surface: #ffffff;
  --surface-soft: #f4efe7;
  --text: #1f2933;
  --muted: #6b7280;
  --muted-strong: #4b5563;
  --line: #e5e1da;
  --line-strong: #d7cec1;
  --accent: #8a6a45;
  --accent-soft: #c7a77f;
  --dark: #222222;
  --radius: 8px;
  --radius-sm: 8px;
  --shadow: 0 18px 42px rgba(31, 41, 51, 0.06);
  --shadow-soft: 0 10px 24px rgba(31, 41, 51, 0.045);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 0 clamp(22px, 5vw, 64px);
  background: rgba(250, 248, 244, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: max-content; font-weight: 800; letter-spacing: 0; }
.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--dark);
  color: white;
  font-size: 15px;
}
.brand-name { font-size: 16px; }
.site-nav { display: flex; align-items: center; justify-content: flex-end; gap: clamp(13px, 1.55vw, 22px); font-size: 13px; color: var(--muted); }
.site-nav a { transition: color 180ms ease; }
.site-nav a.active, .site-nav a:hover { color: var(--text); }
.nav-toggle { display: none; }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(390px, 0.86fr);
  align-items: center;
  gap: clamp(40px, 5.4vw, 86px);
  min-height: 700px;
  padding: 96px 7vw 78px;
  background:
    linear-gradient(110deg, rgba(250,248,244,0.99) 0%, rgba(250,248,244,0.88) 54%, rgba(239,233,224,0.72) 100%),
    linear-gradient(145deg, #fbfaf7, #eee7dc);
}
.hero-content { max-width: 720px; }
.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0;
  font-weight: 700;
}
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(43px, 5.7vw, 74px); line-height: 1; letter-spacing: 0; margin-bottom: 24px; }
h2 { font-size: clamp(30px, 4vw, 50px); line-height: 1.05; letter-spacing: 0; }
h3 { font-size: 19px; letter-spacing: 0; }
p { color: var(--muted); line-height: 1.7; }
.hero-text { font-size: 19px; max-width: 640px; color: var(--muted-strong); }
.hero-actions { display: flex; gap: 12px; margin-top: 30px; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  border: 1px solid var(--line);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--dark); color: white; border-color: var(--dark); box-shadow: 0 10px 20px rgba(34, 34, 34, 0.1); }
.btn-secondary { background: rgba(255,255,255,0.75); color: var(--text); border-color: var(--line-strong); }

.hero-visual { position: relative; min-width: 0; }
.hero-image-frame {
  position: relative;
  padding: 12px;
  background: rgba(255,255,255,0.62);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
}
.hero-image-placeholder {
  height: min(52vw, 530px);
  min-height: 420px;
  margin: 0;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.2) 0 9%, transparent 9% 15%, rgba(255,255,255,0.17) 15% 28%, transparent 28% 35%, rgba(255,255,255,0.16) 35% 50%, transparent 50% 57%, rgba(255,255,255,0.18) 57% 73%, transparent 73% 100%),
    linear-gradient(135deg, #e8dfd3, #cfc2b0);
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow: none;
}
.hero-sample-strip {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.hero-sample-strip span {
  height: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,0.58);
}
.hero-note {
  position: absolute;
  right: -14px;
  bottom: 34px;
  width: min(280px, calc(100% - 44px));
  padding: 18px;
  background: rgba(255,255,255,0.84);
  border: 1px solid rgba(229,225,218,0.9);
  border-radius: 8px;
  box-shadow: 0 14px 26px rgba(31, 41, 51, 0.07);
  backdrop-filter: blur(12px);
}
.hero-note span {
  display: block;
  margin-bottom: 6px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}
.hero-note strong { display: block; line-height: 1.35; }

.section, .section-narrow { padding: 92px 7vw; }
.section-narrow { padding-top: 30px; padding-bottom: 30px; }
.trust-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(165px, 1fr));
  gap: 12px;
  margin-top: -34px;
  position: relative;
  z-index: 2;
}
.trust-bar div {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 18px;
  text-align: center;
  font-weight: 700;
  font-size: 13px;
  color: var(--muted-strong);
  box-shadow: var(--shadow-soft);
  white-space: normal;
}
.section-head { max-width: 760px; margin-bottom: 34px; }
.split-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.42fr);
  align-items: end;
  gap: 28px;
  max-width: none;
}
.split-head p:last-child { margin-bottom: 8px; }
.centered-head { margin-left: auto; margin-right: auto; text-align: center; }
.card-grid { display: grid; gap: 22px; }
.card-grid.three { grid-template-columns: repeat(3, 1fr); }
.product-card, .placeholder-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.product-card { display: flex; flex-direction: column; transition: transform 180ms ease, border-color 180ms ease, background 180ms ease; }
.product-card:hover { transform: translateY(-2px); border-color: var(--line-strong); background: #fffdf9; }
.card-body { padding: 8px 4px 4px; }
.image-placeholder {
  display: grid;
  place-items: center;
  height: 230px;
  border-radius: var(--radius-sm);
  background: #ece7de;
  color: var(--muted);
  margin-bottom: 20px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-align: center;
}
.image-placeholder span {
  display: inline-flex;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,0.65);
  border-radius: 999px;
  background: rgba(255,255,255,0.44);
}
.product-card a { color: var(--accent); font-weight: 700; }
.product-card a::after { content: " ->"; }
.product-card p { min-height: 82px; }
.product-image-placeholder {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.14), rgba(255,255,255,0)),
    linear-gradient(135deg, #eee8df, #d6cbbb);
}
.roller-shades-placeholder { background: linear-gradient(135deg, #e7e4de, #c9d0ce); }
.motorized-blinds-placeholder { background: linear-gradient(135deg, #ebe3d8, #c8b79e); }
.soft-section { background: #f0ebe4; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.process-grid article {
  background: rgba(255,255,255,0.72);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  min-height: 232px;
}
.process-grid span { color: var(--accent); font-weight: 800; font-size: 13px; }

.text-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-weight: 800;
}
.text-arrow::after { content: "->"; }
.gallery-preview-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  grid-template-rows: repeat(2, minmax(190px, 1fr));
  gap: 18px;
}
.gallery-image-placeholder {
  height: 100%;
  min-height: 220px;
  margin: 0;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.2), rgba(255,255,255,0)),
    linear-gradient(145deg, #e9e3da, #c8beb0);
}
.gallery-image-large {
  grid-row: span 2;
  min-height: 460px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.2), rgba(255,255,255,0)),
    linear-gradient(145deg, #efe8dd, #bfc6c3);
}
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.review-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-soft);
}
.review-card p { min-height: 110px; }
.review-stars {
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
}
.review-card strong { display: block; color: var(--text); font-size: 14px; }
.section-link-row { display: flex; justify-content: center; margin-top: 26px; }
.contact-cta-section {
  padding-top: 76px;
  padding-bottom: 76px;
  background: #f0ebe4;
  border-top: 1px solid var(--line);
}
.contact-cta-inner {
  display: grid;
  justify-items: center;
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}
.contact-cta-inner p:not(.eyebrow) { max-width: 620px; }
.page-hero { padding: 96px 7vw 42px; }
.page-hero h1 { font-size: clamp(42px, 5vw, 68px); }
.inner-page-hero {
  padding-top: 110px;
  padding-bottom: 72px;
  background:
    linear-gradient(110deg, rgba(250,248,244,0.98), rgba(240,235,228,0.82)),
    linear-gradient(145deg, #fbfaf7, #eee7dc);
  border-bottom: 1px solid var(--line);
}
.inner-page-hero p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted-strong);
  font-size: 19px;
}
.intro-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.72fr);
  gap: clamp(34px, 6vw, 92px);
  align-items: start;
}
.intro-copy {
  padding: 28px;
  background: rgba(255,255,255,0.72);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.intro-copy p:last-child { margin-bottom: 0; }
.feature-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.feature-card {
  min-height: 210px;
  padding: 24px;
  background: rgba(255,255,255,0.74);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.feature-card span {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
}
.feature-card p { margin-bottom: 0; }
.mission-panel {
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(0, 0.76fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}
.mission-image-placeholder {
  height: min(42vw, 430px);
  min-height: 320px;
  margin: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.16), rgba(255,255,255,0)),
    linear-gradient(135deg, #e8dfd3, #c8beb0);
}
.mission-copy {
  padding: clamp(24px, 4vw, 44px);
  border-left: 1px solid var(--line-strong);
}
.mission-copy p:last-child { margin-bottom: 0; }
.product-service-section { background: var(--bg); }
.category-card p { min-height: 112px; }
.category-image-placeholder {
  height: 260px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.14), rgba(255,255,255,0)),
    linear-gradient(135deg, #ebe3d8, #cfc2b0);
}
.roller-shades-category-placeholder { background: linear-gradient(135deg, #e7e4de, #c9d0ce); }
.motorized-blinds-category-placeholder { background: linear-gradient(135deg, #efe8dd, #bbb5aa); }
.product-feature-grid .feature-card { min-height: 190px; }
.showroom-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 0.5fr);
  gap: clamp(24px, 5vw, 68px);
  align-items: stretch;
  padding: clamp(28px, 5vw, 54px);
  background: rgba(255,255,255,0.66);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.showroom-address {
  display: grid;
  gap: 4px;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted-strong);
}
.showroom-address strong { color: var(--text); font-size: 18px; }
.service-area-card {
  padding: 24px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.service-area-card p { margin-bottom: 0; }
.inquiry-section { padding-top: 78px; }
.inquiry-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: clamp(20px, 4vw, 34px);
  background: rgba(255,255,255,0.72);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.inquiry-form label {
  display: grid;
  gap: 8px;
  color: var(--muted-strong);
  font-size: 13px;
  font-weight: 700;
}
.inquiry-form input,
.inquiry-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fffdf9;
  color: var(--text);
  font: inherit;
  padding: 13px 14px;
}
.inquiry-form textarea { resize: vertical; min-height: 140px; }
.form-field-full { grid-column: 1 / -1; }
.form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.form-actions p { margin: 0; font-size: 13px; }
.inline-code {
  font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", monospace;
  color: var(--muted-strong);
}
.product-catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.catalog-product-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}
.catalog-product-card:hover {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  background: #fffdf9;
}
.catalog-product-image-placeholder {
  height: 190px;
  margin-bottom: 16px;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.18), rgba(255,255,255,0)),
    linear-gradient(135deg, #ece7de, #cfc5b7);
}
.catalog-product-body { display: grid; gap: 10px; padding: 4px; }
.catalog-product-body h3 { margin-bottom: 0; }
.catalog-product-body p { margin-bottom: 4px; min-height: 92px; }
.catalog-product-body a { color: var(--accent); font-weight: 800; }
.catalog-product-body a::after { content: " ->"; }
.product-badge {
  justify-self: start;
  padding: 6px 10px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
}
.motorized-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 0.72fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}
.motorized-control-placeholder {
  height: min(44vw, 460px);
  min-height: 320px;
  margin: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.18) 0 14%, transparent 14% 20%, rgba(255,255,255,0.16) 20% 38%, transparent 38% 44%, rgba(255,255,255,0.18) 44% 62%, transparent 62% 100%),
    linear-gradient(135deg, #ece4d8, #bbb5aa);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1fr);
  align-items: start;
  justify-content: space-between;
  gap: 24px;
  padding: 46px 7vw;
  border-top: 1px solid var(--line);
  background: #f4f0e9;
}
.footer-brand p { max-width: 340px; }
.footer-links { display: flex; justify-content: flex-end; flex-wrap: wrap; gap: 12px 18px; color: var(--muted); font-size: 14px; }

.app-page { background: linear-gradient(135deg, #f7f5f0, #e9e2d6); }
.app-gateway { min-height: 100vh; display: grid; place-items: center; padding: 28px; }
.app-card {
  width: min(460px, 100%);
  background: rgba(255,255,255,.82);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 38px;
  box-shadow: var(--shadow);
  text-align: center;
}
.app-brand { justify-content: center; margin-bottom: 30px; }
.text-link { display: block; margin-top: 22px; color: var(--muted); font-size: 14px; }

@media (max-width: 900px) {
  .site-header { padding: 0 20px; min-height: 70px; }
  .site-nav { display: none; }
  .site-nav.open {
    display: flex;
    position: absolute;
    left: 16px;
    right: 16px;
    top: 74px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }
  .site-nav.open a { padding: 12px; }
  .nav-toggle {
    display: inline-flex;
    border: 1px solid var(--line);
    background: white;
    border-radius: 999px;
    height: 34px;
    padding: 0 14px;
  }
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 70px;
    padding-bottom: 58px;
  }
  .hero-image-placeholder { min-height: 340px; height: 58vw; }
  .hero-note { right: 24px; bottom: 30px; }
  .card-grid.three, .process-grid, .review-grid { grid-template-columns: 1fr; }
  .trust-bar { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 0; }
  .split-head { grid-template-columns: 1fr; }
  .intro-layout, .mission-panel { grid-template-columns: 1fr; }
  .feature-card-grid { grid-template-columns: repeat(2, 1fr); }
  .mission-copy { padding: 0; border-left: 0; }
  .showroom-panel, .motorized-layout { grid-template-columns: 1fr; }
  .product-catalog-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-preview-grid { grid-template-columns: 1fr; grid-template-rows: none; }
  .gallery-image-large { grid-row: auto; min-height: 300px; }
  .site-footer { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; }
}

@media (max-width: 560px) {
  .site-header { min-height: 66px; }
  .brand { font-size: 15px; }
  .brand-mark { width: 34px; height: 34px; }
  h1 { font-size: clamp(40px, 12vw, 54px); }
  h2 { font-size: clamp(28px, 9vw, 38px); }
  .section, .section-narrow { padding-left: 22px; padding-right: 22px; }
  .section { padding-top: 68px; padding-bottom: 68px; }
  .home-hero { padding-left: 22px; padding-right: 22px; }
  .hero-actions, .contact-cta-inner .hero-actions { width: 100%; }
  .btn { width: 100%; }
  .hero-note { position: static; width: 100%; margin-top: 14px; }
  .hero-image-frame { padding: 8px; }
  .hero-image-placeholder { min-height: 280px; }
  .hero-sample-strip { left: 20px; right: 20px; bottom: 20px; }
  .trust-bar { grid-template-columns: 1fr; }
  .inner-page-hero { padding-top: 76px; padding-bottom: 56px; }
  .inner-page-hero p:not(.eyebrow) { font-size: 17px; }
  .intro-copy, .feature-card { padding: 22px; }
  .feature-card-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: auto; }
  .mission-image-placeholder { min-height: 260px; }
  .category-card p, .catalog-product-body p { min-height: auto; }
  .inquiry-form { grid-template-columns: 1fr; }
  .form-actions { align-items: stretch; }
  .product-catalog-grid { grid-template-columns: 1fr; }
  .motorized-control-placeholder { min-height: 280px; }
  .process-grid article { min-height: auto; }
  .footer-links { flex-direction: column; gap: 10px; }
}
