/* ═══════════════════════════════════════
   HOME PAGE — index.css
═══════════════════════════════════════ */

/* ── HERO ── */
.hero {
  height: 100vh;
  min-height: 600px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #333333;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url("img/gallery/full-11.png") center/cover no-repeat;
  opacity: 0.35;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 10, 0.5) 0%,
    rgba(10, 10, 10, 0.4) 50%,
    rgba(10, 10, 10, 0.85) 100%
  );
}
.hero-content {
  position: relative;
  text-align: center;
  padding: 0 20px;
  animation: heroFade 1.2s ease both;
}
@keyframes heroFade {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-content .eyebrow {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.hero-content h1 {
  font-size: clamp(44px, 7vw, 96px);
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 8px;
}
.hero-content h1 em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-content .sub {
  font-size: 16px;
  color: rgba(240, 236, 228, 0.65);
  margin-bottom: 48px;
  letter-spacing: 0.04em;
}
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  animation: bounce 2s ease-in-out infinite;
}
.hero-scroll::before {
  content: "";
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--gold));
}
@keyframes bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(6px);
  }
}

/* ── STATS BAR ── */
.stats-bar {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 20px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.stat {
  text-align: center;
  padding: 0 20px;
  border-right: 1px solid var(--border);
}
.stat:last-child {
  border-right: none;
}
.stat-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 44px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 6px;
}

/* ── CATEGORIES ── */
.categories-section {
  padding-top: 100px;
  padding-bottom: 72px;
}
.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.cat-card {
  position: relative;
  height: 390px;
  overflow: hidden;
  cursor: pointer;
  display: block;
}
.cat-card-bg {
  position: absolute;
  inset: 0;
  background: var(--bg-2);
  padding: 0;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.cat-card:hover .cat-card-bg {
  transform: scale(1.015);
}
.cat-card-bg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  opacity: 0.82;
  transition: opacity 0.4s;
}
.cat-card:hover .cat-card-bg img {
  opacity: 0.92;
}
.cat-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 10, 10, 0.82),
    rgba(10, 10, 10, 0.04) 58%
  );
}
.cat-card-content {
  position: absolute;
  bottom: 28px;
  left: 28px;
  right: 28px;
}
.cat-card-content span {
  display: block;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.cat-card-content h3 {
  font-size: 26px;
  color: var(--text);
}

/* ── PRODUCTS ── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  transition:
    border-color var(--transition),
    transform var(--transition);
  cursor: pointer;
}
.product-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-4px);
}
.product-img {
  height: 260px;
  background: var(--bg-3);
  overflow: hidden;
}
.product-img img {
  transition: transform 0.6s ease;
}
.product-card:hover .product-img img {
  transform: scale(1.05);
}
.product-body {
  padding: 24px;
  border-top: 1px solid var(--border);
}
.product-tag {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.product-name {
  font-size: 22px;
  margin-bottom: 6px;
  color: var(--text);
}
.product-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ── ABOUT STRIP ── */
.about-strip {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) 1.22fr;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.about-statement {
  position: relative;
  align-self: center;
  justify-self: center;
  width: min(78%, 360px);
  min-height: 250px;
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.035), transparent 36%),
    linear-gradient(145deg, #141414 0%, #292724 54%, #101010 100%);
  border: 1px solid var(--border);
}
.about-statement::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  width: 72px;
  height: 1px;
  background: linear-gradient(90deg, rgba(200, 169, 106, 0.42), transparent);
}
.about-statement-label {
  margin-bottom: 18px;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.about-statement blockquote {
  position: relative;
  max-width: 280px;
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.2;
  color: rgba(240, 236, 228, 0.76);
}
.about-statement blockquote::before {
  content: "“";
  position: absolute;
  top: -22px;
  left: -18px;
  font-family: "Cormorant Garamond", serif;
  font-size: 58px;
  line-height: 1;
  color: rgba(200, 169, 106, 0.22);
}
.about-statement blockquote::after {
  content: "”";
  color: rgba(200, 169, 106, 0.38);
}
.about-statement span {
  width: 52px;
  height: 1px;
  margin-top: 24px;
  background: rgba(200, 169, 106, 0.58);
}
.about-content {
  padding: 90px 76px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.about-content p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 26px;
  max-width: 760px;
}
/* ── SERVICES ── */
.home-services-section {
  padding: 0 0 72px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
}
.service-item {
  background: var(--bg);
  padding: 40px 34px;
  transition: background var(--transition);
}
.service-item:hover {
  background: var(--bg-2);
}
.service-icon {
  width: 28px;
  height: 28px;
  margin-bottom: 26px;
  color: var(--gold);
}
.service-item h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--text);
}
.service-item p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ── GALLERY STRIP ── */
.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 260px 260px;
  gap: 4px;
}
.gallery-item {
  background: var(--bg-3);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery-item:first-child {
  grid-row: 1 / 3;
}
.gallery-item img {
  transition: transform 0.6s ease;
}
.gallery-item:hover img {
  transform: scale(1.07);
}
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.gallery-item:hover .gallery-item-overlay {
  background: rgba(10, 10, 10, 0.35);
}
.gallery-zoom {
  opacity: 0;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    opacity var(--transition),
    transform var(--transition);
  transform: scale(0.8);
}
.gallery-item:hover .gallery-zoom {
  opacity: 1;
  transform: scale(1);
}

/* ── CTA ── */
.cta-section {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
  padding: 100px 20px;
}
.cta-section h2 {
  font-size: clamp(36px, 5vw, 64px);
  margin-bottom: 20px;
}
.cta-section p {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 44px;
}
.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cat-card {
    height: 350px;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 100svh;
    height: auto;
    padding: 128px 0 92px;
  }
  .hero-content h1 {
    font-size: clamp(40px, 13vw, 62px);
  }
  .hero-content .sub {
    margin-bottom: 36px;
  }
  .hero-scroll {
    bottom: 24px;
  }
  .categories-section {
    padding-bottom: 56px;
  }
  .home-services-section {
    padding-bottom: 56px;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 20px;
  }
  .stat:nth-child(3),
  .stat:last-child {
    border-bottom: none;
  }
  .products-grid {
    grid-template-columns: 1fr;
  }
  .about-strip {
    grid-template-columns: 1fr;
  }
  .about-statement {
    min-height: auto;
    width: 90%;
    padding: 36px 30px;
    margin: 56px auto 0;
  }
  .about-statement::after {
    display: none;
  }
  .about-content {
    padding: 64px 32px;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .service-item {
    padding: 34px 30px;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item:first-child {
    grid-row: auto;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .stat:nth-child(3) {
    border-bottom: 1px solid var(--border);
  }
  .categories-grid {
    grid-template-columns: 1fr;
  }
  .cat-card {
    height: 310px;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 420px) {
  .about-statement {
    width: 100%;
    padding: 32px 24px;
  }
  .about-content {
    padding: 52px 24px;
  }
}
