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

:root {
  --header-bg: #F0E9E1;
  --body-bg: #232427;
  --accent: #B5956A;
  --accent-light: #D4B896;
  --text-dark: #1A1A1A;
  --text-light: #F0E9E1;
  --text-muted: #9A9590;
  --divider: rgba(240,233,225,0.12);
  --card-bg: rgba(240,233,225,0.05);
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'DM Sans', sans-serif;
  --header-h: 110px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--body-bg);
  color: var(--text-light);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── HEADER ────────────────────────────────────────── */
#site-header {
  background: var(--header-bg);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 20px rgba(0,0,0,0.18);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 32px 0;
}

.logo {
  display: inline-block;
  text-decoration: none;
  margin-bottom: 6px;
  margin-left: 88px;
}

.logo-img {
  display: block;
  height: 90px;
  width: auto;
  max-width: 100%;
}

@media (max-width: 820px) {
  .logo { margin-left: 0; }
  .logo-img { height: 72px; }
}

@media (max-width: 480px) {
  .logo-img { height: 60px; }
}

nav {
  border-top: 1px solid rgba(0,0,0,0.1);
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 0;
}

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

.nav-list > li > a,
.nav-list > li > span {
  display: block;
  padding: 11px 20px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dark);
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}

.nav-list > li > a:hover,
.nav-list > li > span:hover,
.nav-list > li.active > a {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

/* Dropdown */
.has-dropdown > span::after {
  content: ' ▾';
  font-size: 0.6rem;
  opacity: 0.6;
}

.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 160px;
  background: var(--header-bg);
  border-top: 2px solid var(--accent);
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  z-index: 200;
}

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  display: block;
}

.dropdown a {
  display: block;
  padding: 11px 20px;
  font-size: 0.76rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dark);
  text-decoration: none;
  border-left: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.dropdown a:hover {
  color: var(--accent);
  border-left-color: var(--accent);
  background: rgba(181,149,106,0.08);
}

/* Hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
  position: absolute;
  top: 22px;
  right: 24px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── SECTIONS COMMON ───────────────────────────────── */
section { padding: 90px 24px; }

.container {
  max-width: 1140px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.18;
  color: var(--text-light);
  margin-bottom: 20px;
}

.section-body {
  color: var(--text-muted);
  font-size: 1.15rem;
  max-width: 540px;
  line-height: 1.75;
}

.divider {
  width: 48px;
  height: 1px;
  background: var(--accent);
  margin: 24px 0;
}

/* ── HERO ──────────────────────────────────────────── */
#hero {
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(181,149,106,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 80% 80% at 70% 50%, rgba(181,149,106,0.06) 0%, transparent 70%);
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    90deg,
    rgba(240,233,225,0.025) 0px,
    rgba(240,233,225,0.025) 1px,
    transparent 1px,
    transparent 60px
  );
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
  max-width: 1140px;
  margin: 0 auto;
  width: 100%;
}

.hero-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}

.hero-eyebrow::after {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 4.4rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--text-light);
  margin-bottom: 28px;
}

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

.hero-sub {
  color: var(--text-muted);
  font-size: 1.15rem;
  line-height: 1.75;
  margin-bottom: 44px;
  max-width: 460px;
}

.btn-primary {
  display: inline-block;
  padding: 14px 36px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.25s, transform 0.2s;
}

.btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
}

.btn-outline {
  display: inline-block;
  padding: 13px 34px;
  border: 1px solid rgba(240,233,225,0.3);
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: border-color 0.25s, color 0.25s;
}

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

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.blind-illustration {
  width: 100%;
  max-width: 420px;
}

/* ── ABOUT ─────────────────────────────────────────── */
#about {
  background: rgba(240,233,225,0.03);
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
}

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

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 40px;
}

.stat-card {
  padding: 24px;
  border: 1px solid var(--divider);
  background: var(--card-bg);
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--accent-light);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.about-image-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  max-height: 560px;
  background: var(--card-bg);
  border: 1px solid var(--divider);
  position: relative;
  overflow: hidden;
  align-self: start;
}

.about-image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── PRODUCTS ──────────────────────────────────────── */
#products { background: var(--body-bg); }

.products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 56px;
}

.product-card {
  position: relative;
  overflow: hidden;
  background: var(--card-bg);
  border: 1px solid var(--divider);
  padding: 52px 44px;
  cursor: pointer;
  transition: background 0.3s;
}

.product-card:hover { background: rgba(181,149,106,0.08); }

.product-card:hover .product-arrow { transform: translateX(6px); }

.product-icon {
  margin-bottom: 28px;
  opacity: 0.75;
}

.product-name {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 400;
  color: var(--text-light);
  margin-bottom: 14px;
}

.product-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 28px;
}

.product-features {
  list-style: none;
  margin-bottom: 32px;
}

.product-features li {
  font-size: 0.8rem;
  color: var(--text-muted);
  padding: 6px 0;
  border-bottom: 1px solid var(--divider);
  display: flex;
  align-items: center;
  gap: 10px;
}

.product-features li::before {
  content: '—';
  color: var(--accent);
  font-size: 0.7rem;
}

.product-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}

.product-arrow {
  transition: transform 0.25s;
}

/* ── GALLERY ───────────────────────────────────────── */
#gallery {
  background: rgba(240,233,225,0.02);
  border-top: 1px solid var(--divider);
}

.gallery-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 20px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 8px;
}

.gallery-item {
  background: var(--card-bg);
  border: 1px solid var(--divider);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item-inner {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s;
}

.gallery-item:first-child .gallery-item-inner {
  aspect-ratio: auto;
  height: 100%;
  min-height: 360px;
}

.gallery-item:hover .gallery-item-inner { transform: scale(1.03); }

.gallery-item-inner svg {
  opacity: 0.12;
  position: absolute;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(35,36,39,0.7) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
}

.gallery-pattern {
  position: absolute;
  inset: 0;
}

/* ── CONTACT ───────────────────────────────────────── */
#contact {
  border-top: 1px solid var(--divider);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.contact-info {
  padding-top: 8px;
}

.contact-detail {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-item-icon {
  width: 36px;
  height: 36px;
  border: 1px solid var(--divider);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.contact-item-label {
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-group label {
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-group input,
.form-group textarea {
  background: var(--card-bg);
  border: 1px solid var(--divider);
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  padding: 13px 16px;
  outline: none;
  transition: border-color 0.2s;
  resize: none;
  width: 100%;
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(154,149,144,0.5);
}

.form-submit {
  margin-top: 8px;
}

/* ── FOOTER ────────────────────────────────────────── */
footer {
  background: #18191B;
  border-top: 1px solid var(--divider);
  padding: 48px 24px 32px;
}

.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

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

/* ── MOBILE ────────────────────────────────────────── */
@media (max-width: 820px) {
  :root { --header-h: 120px; }

  .hamburger { display: flex; }

  nav { display: none; }
  nav.open { display: block; }

  .nav-list { flex-direction: column; gap: 0; }
  .nav-list > li > a,
  .nav-list > li > span { padding: 13px 20px; border-bottom: 1px solid rgba(0,0,0,0.08); border-left: none; }

  .has-dropdown:hover .dropdown,
  .has-dropdown:focus-within .dropdown { display: none; }
  .has-dropdown.open .dropdown { display: block; }

  .dropdown { position: static; border-top: none; border-left: 3px solid var(--accent); box-shadow: none; margin-left: 16px; }

  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .about-image-placeholder { display: none; }
  .products-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item:first-child { grid-column: span 2; grid-row: span 1; }
  .gallery-item:first-child .gallery-item-inner { min-height: 220px; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  section { padding: 64px 20px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:first-child { grid-column: span 1; }
}
