/* ============================================================
   Pure Form Cabinetry — styles.css
   Brand: Dark #0d0d0d | Red #cd1416 | Wood #6b3a2a
   Fonts: Montserrat (headings / UI) | Inter (body)
   ============================================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #0d0d0d;
  --surface:   #1a1a1a;
  --surface2:  #222222;
  --red:       #cd1416;
  --red-dark:  #a51012;
  --wood:      #6b3a2a;
  --text:      #f0f0f0;
  --muted:     #999999;
  --border:    #2e2e2e;
  --radius:    6px;
  --transition: 0.3s ease;
  --font-head: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  /* Same as page bg so JPEG logo matte blends (pure #000 showed a seam). */
  --nav-bg:    var(--bg);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

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

/* ---------- Utility ---------- */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--text);
  margin-bottom: 1rem;
}

.section-sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 560px;
}

.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 2rem;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
}

.btn-primary {
  background: var(--red);
  color: #fff;
}
.btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 2px solid rgba(255,255,255,0.4);
}
.btn-outline:hover {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-2px);
}

/* Scroll animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--nav-bg);
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
  transition: box-shadow var(--transition);
  overflow: visible;
}

.nav.scrolled {
  box-shadow: 0 2px 24px rgba(0,0,0,0.7);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.5rem;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  overflow: visible;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  flex: 0 0 auto;
  margin-right: 0.5rem;
}

/* Entire bitmap always visible: proportional scale only (no cover, no overflow:hidden). */
.nav-logo-mark {
  display: block;
  flex-shrink: 0;
  width: auto;
  height: auto;
  max-height: clamp(44px, 7.5vw, 58px);
  max-width: min(calc(100vw - 15rem), 200px);
  object-fit: contain;
  object-position: left center;
}

.nav-logo-text {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(0.95rem, 2.1vw, 1.12rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1.05;
}
.nav-logo-text > span {
  display: block;
  margin-top: 0.12em;
  font-size: 0.64em;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--red);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.nav-links a:hover,
.nav-links a.active { color: var(--text); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

.nav-cta { margin-left: 1rem; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}

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

/* Mobile nav drawer */
.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--nav-bg);
  padding: 1.5rem 2rem 2rem;
  border-top: 1px solid var(--border);
}

.nav-mobile.open { display: flex; }

.nav-mobile a {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}

.nav-mobile a:hover { color: var(--red); }
.nav-mobile .btn { margin-top: 1.25rem; width: 100%; justify-content: center; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  /* Background-style video: don’t capture taps meant for hero CTAs */
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,0,0,0.82) 0%,
    rgba(13,13,13,0.65) 60%,
    rgba(205,20,22,0.12) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  display: block;
  height: 2px;
  width: 40px;
  background: var(--red);
}

.hero-eyebrow span {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red);
}

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 1.25rem;
  max-width: 720px;
}

.hero h1 em {
  font-style: normal;
  color: var(--red);
}

.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: rgba(240,240,240,0.75);
  max-width: 540px;
  margin-bottom: 2.25rem;
}

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

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-family: var(--font-head);
  cursor: pointer;
  transition: color var(--transition);
}

.hero-scroll:hover { color: var(--red); }

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--red), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.6); opacity: 0.5; }
}

/* ---------- Stats Bar ---------- */
.stats {
  background: var(--red);
  padding: 1.25rem 0;
}

.stats-inner {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 1rem;
}

.stat-item {
  text-align: center;
  padding: 0.25rem 1rem;
}

.stat-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  margin-top: 0.25rem;
}

/* ---------- Services ---------- */
.services {
  padding: 6rem 0;
}

.services-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.services-header .section-sub {
  margin: 0 auto;
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  position: relative;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--red);
  box-shadow: 0 12px 40px rgba(205,20,22,0.15);
}

.service-card-img {
  height: 220px;
  overflow: hidden;
}

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

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

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

.service-icon {
  width: 44px;
  height: 44px;
  background: var(--red);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.service-icon svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--text);
}

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

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  transition: gap var(--transition);
}

.service-card:hover .service-card-link { gap: 0.75rem; }

/* ---------- Why Choose Us ---------- */
.why {
  background: var(--surface);
  padding: 6rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.why-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}

.why-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius);
}

.why-image-badge {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background: var(--red);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  text-align: center;
}

.why-image-badge strong {
  display: block;
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.why-image-badge span {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
}

.why-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: rgba(205,20,22,0.12);
  border: 1px solid rgba(205,20,22,0.3);
  border-radius: var(--radius);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.feature-item h4 {
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
  color: var(--text);
}

.feature-item p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ---------- Gallery ---------- */
.gallery {
  padding: 6rem 0;
}

.gallery-header {
  text-align: center;
  margin-bottom: 3rem;
}

.gallery-header .section-sub { margin: 0 auto; text-align: center; }

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

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  background: var(--surface);
}

.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(5) { grid-column: span 2; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 220px;
  transition: transform 0.5s ease;
}

.gallery-item:hover img { transform: scale(1.06); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(205,20,22,0);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  transition: background var(--transition);
}

.gallery-overlay svg {
  color: #fff;
  opacity: 0;
  transform: scale(0.7);
  transition: all var(--transition);
}

.gallery-overlay::after {
  content: 'View Project';
  color: #fff;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: all var(--transition);
}

.gallery-item:hover .gallery-overlay { background: rgba(205,20,22,0.5); }
.gallery-item:hover .gallery-overlay svg { opacity: 1; transform: scale(1); }
.gallery-item:hover .gallery-overlay::after { opacity: 1; transform: translateY(0); }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.92);
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox.active { display: flex; }

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 0 60px rgba(0,0,0,0.8);
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  background: var(--red);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.lightbox-close:hover { background: var(--red-dark); }

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(205,20,22,0.8);
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  color: #fff;
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.lightbox-nav:hover { background: var(--red); }
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }

/* ---------- Cabinet Styles ---------- */
.styles-section {
  background: var(--surface);
  padding: 6rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.styles-header {
  text-align: center;
  margin-bottom: 3rem;
}

.styles-header .section-sub { margin: 0 auto; text-align: center; }

/* Signature Door Styles */
.styles-doors {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
}

.styles-doors-text h3 {
  font-size: clamp(1.5rem, 2.5vw, 1.9rem);
  color: var(--text);
  margin-bottom: 1rem;
}

.styles-doors-text > p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.styles-doors-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.styles-doors-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.styles-doors-list svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--red);
  margin-top: 0.15rem;
}

.styles-doors-list strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.styles-doors-list span {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
}

.styles-doors-image {
  position: relative;
}

.styles-doors-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  transition: transform 0.7s ease;
}

.styles-doors-image:hover img { transform: scale(1.04); }

.styles-finishes-badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  max-width: 260px;
  box-shadow: 0 14px 40px rgba(0,0,0,0.55);
}

.styles-finishes-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.styles-finishes-dots {
  display: flex;
  gap: 0.25rem;
}

.styles-finishes-dots .dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid var(--border);
}

.dot-white    { background: #ffffff; }
.dot-charcoal { background: #262626; }
.dot-wood     { background: #92400e; }

.styles-finishes-head p {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
}

.styles-finishes-desc {
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.6;
}

.styles-layout-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
}

.styles-layout-header h3 {
  font-size: clamp(1.5rem, 2.5vw, 1.9rem);
  color: var(--text);
  margin-bottom: 0.75rem;
}

.styles-layout-header p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.7;
}

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

.kitchen-shape-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.kitchen-shape-card:hover {
  border-color: rgba(205,20,22,0.5);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.35);
}

.kitchen-shape-icon {
  width: 40px;
  height: 40px;
  color: var(--red);
  margin-bottom: 1.25rem;
}

.kitchen-shape-card h4 {
  font-size: 1.25rem;
  color: var(--text);
  margin-bottom: 0.75rem;
  transition: color var(--transition);
}

.kitchen-shape-card:hover h4 { color: var(--red); }

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

/* ---------- About ---------- */
.about {
  padding: 6rem 0;
}

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

.about-img-wrap {
  position: relative;
}

.about-img-wrap img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  height: 480px;
}

.about-img-wrap .owner-photo-placeholder {
  height: 480px;
  aspect-ratio: unset;
  border-radius: var(--radius);
}

.about-img-accent {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 200px;
  height: 200px;
  border: 3px solid var(--red);
  border-radius: var(--radius);
  z-index: -1;
}


.about-content .section-sub {
  margin-bottom: 1.5rem;
}

.about-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1.5rem 0 2rem;
}

.about-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text);
}

.about-list li::before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
}

.about-separator {
  border: none;
  border-top: 1px solid var(--border);
  margin: 5rem 0;
}

/* ---------- Owner ---------- */

.owner-inner {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 5rem;
  align-items: center;
}

.owner-photo-wrap {
  position: relative;
  flex-shrink: 0;
}

.owner-photo-placeholder {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: var(--surface);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed var(--border);
  overflow: hidden;
}

.owner-photo-placeholder svg {
  width: 70%;
  height: 70%;
}

.owner-content .section-label {
  display: block;
  margin-bottom: 0.5rem;
}

.owner-content .section-title {
  margin-bottom: 0.25rem;
}

.owner-tagline {
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  font-family: var(--font-body);
}

.owner-bio {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}

@media (max-width: 1024px) {
  .owner-inner {
    grid-template-columns: 260px 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .owner-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .owner-photo-wrap {
    max-width: 260px;
    margin: 0 auto;
    width: 100%;
  }
}


/* ---------- Contact ---------- */
.contact {
  background: var(--surface);
  padding: 6rem 0;
  border-top: 1px solid var(--border);
}

.contact-cta {
  background: var(--red);
  border-radius: var(--radius);
  padding: 3rem;
  text-align: center;
  margin-bottom: 4rem;
}

.contact-cta h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: #fff;
  margin-bottom: 0.75rem;
}

.contact-cta p {
  color: rgba(255,255,255,0.85);
  margin-bottom: 1.75rem;
  font-size: 1.05rem;
}

.contact-cta .btn-outline {
  background: #fff;
  color: var(--red);
  border: 2px solid #fff;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.22);
}

.contact-cta .btn-outline:hover {
  background: #f8f8f8;
  border-color: #fff;
  color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.28);
}

.contact-cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
}

.contact-info h3 {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  color: var(--text);
}

.contact-info-items {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-info-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: rgba(205,20,22,0.12);
  border: 1px solid rgba(205,20,22,0.3);
  border-radius: var(--radius);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info-icon svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.contact-info-item strong {
  display: block;
  font-family: var(--font-head);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.2rem;
}

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

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

/* Form */
.contact-form {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}

.contact-form h3 {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  color: var(--text);
}

.contact-form p {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 1.75rem;
}

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

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

.form-group label {
  display: block;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition);
  outline: none;
  -webkit-appearance: none;
}

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

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

.form-group select option { background: var(--surface2); }

.form-submit { width: 100%; justify-content: center; margin-top: 0.5rem; }

/* ---------- Footer ---------- */
.footer {
  background: #080808;
  border-top: 1px solid var(--border);
  padding: 3.5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

.footer-brand-logo {
  width: auto;
  height: 168px;
  max-width: 220px;
  object-fit: contain;
  border-radius: 6px;
  margin-bottom: 1rem;
}

.footer-nap {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 0.75rem;
  line-height: 1.7;
}

.footer-nap a {
  color: var(--muted);
  transition: color var(--transition);
}

.footer-nap a:hover { color: var(--red); }

.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--muted);
  transition: color var(--transition);
}

.footer-social:hover { color: var(--red); }

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

.footer-col h4 {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.25rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col ul a,
.footer-col ul li {
  font-size: 0.9rem;
  color: var(--muted);
  transition: color var(--transition);
}

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

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--muted);
}

.footer-bottom a { color: var(--red); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .why-grid,
  .about-grid,
  .styles-doors { grid-template-columns: 1fr; gap: 2.5rem; }
  .styles-doors-image { order: -1; }
  .kitchen-shapes { grid-template-columns: 1fr 1fr; }
  .why-image { order: -1; }
  .why-image img,
  .about-img-wrap img { height: 380px; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }

  .nav-inner {
    padding-block: 0.45rem;
  }
  .nav-logo {
    gap: 0.45rem;
  }
  .nav-logo-mark {
    max-height: clamp(40px, 7vw, 52px);
    max-width: min(calc(100vw - 13rem), 180px);
  }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .nav-inner {
    padding-block: 0.4rem;
  }
  .nav-logo {
    gap: 0.4rem;
    margin-right: 0.35rem;
  }
  .nav-logo-mark {
    max-height: clamp(36px, 10vw, 48px);
    max-width: min(calc(100vw - 5rem), 72vw);
  }
  .nav-logo-text {
    font-size: clamp(0.85rem, 3.5vw, 0.98rem);
  }
  .nav-logo-text > span {
    font-size: 0.62em;
    letter-spacing: 0.14em;
  }

  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
  .gallery-item:nth-child(5) { grid-column: span 2; }

  .why-features { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }

  .footer-bottom { flex-direction: column; text-align: center; }

  .hero-actions { flex-direction: column; align-items: flex-start; }

  .about-img-accent { display: none; }
  .styles-finishes-badge { display: none; }

  .stats-inner { flex-wrap: wrap; }
  .stat-item { flex: 1 1 40%; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(5) { grid-column: span 1; }
  .kitchen-shapes { grid-template-columns: 1fr; }
}
