:root {
  --bg: #0e0e0f;
  --fg: #f2f2f2;
  --muted: #9a9a9a;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}

/* Grain */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: url("https://grainy-gradients.vercel.app/noise.svg");
  opacity: 0.06;
  z-index: 999;
}

.navbar {
  padding: 1vh 8vw;
  background: transparent;
}

.navbar-brand {
  letter-spacing: 0.15em;
  font-size: 0.8rem;
}

.nav-link {
  color: var(--muted) !important;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
}

.hero {
  min-height: 97vh;
  display: flex;
  align-items: center;
  padding: 0 8vw;
  margin-bottom: 5rem;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.35),
    rgba(0,0,0,0.85)
  );
  z-index: 1;
}

.hero-content {
  max-width: 1000px;
  z-index: 2;
}

.carousel,
.carousel-inner,
.carousel-item,
.carousel-item img {
  height: 100%;
}


.hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  letter-spacing: -0.04em;
}

.hero p {
  margin-top: 1.5rem;
  max-width: 520px;
  color: var(--muted);
  line-height: 1.7;
}

.hero .cta {
  margin-top: 3rem;
  display: inline-block;
  padding: 0.9rem 2.5rem;
  border: 1px solid #fff;
  color: #fff;
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  transition: background 0.4s ease, color 0.4s ease;
}

.hero .cta:hover {
  background: #fff;
  color: #000;
}

.products {
  padding: 0 8vw 10rem;
}

.product {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.product img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.product:hover img {
  transform: scale(1.05);
}

/* Gradient */
.product::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0) 0%,
    rgba(0,0,0,0.4) 60%,
    rgba(0,0,0,0.9) 100%
  );
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: 1;
}

.product:hover::before {
  opacity: 1;
}

.meta {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.product:hover .meta {
  opacity: 1;
}

.meta h3 {
  font-size: 1rem;
  font-weight: 400;
}

.meta span {
  font-size: 0.75rem;
  color: var(--muted);
}

.ratio-large { aspect-ratio: 16 / 10; }
.ratio-medium { aspect-ratio: 4 / 5; }
.ratio-small { aspect-ratio: 1 / 1; }

input[type="checkbox"] {
  display: none;
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(12,12,12,0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
  z-index: 1050;
}

.overlay-content {
  max-width: 900px;
  padding: 4rem;
  text-align: center;
}

.overlay-content img {
  max-width: 100%;
  max-height: 60vh;
  margin-bottom: 2rem;
}

input:checked + .overlay {
  opacity: 1;
  pointer-events: auto;
}

.testimonials {
  padding: 8rem 8vw 10rem;
}

.testimonials h2 {
  font-weight: 400;
  font-size: 2rem;
  margin-bottom: 4rem;
  letter-spacing: -0.02em;
}

.testimonials blockquote {
  font-size: 1.4rem;
  line-height: 1.7;
  font-weight: 300;
  max-width: 720px;
  margin: 0 auto 2rem;
}

.testimonials span {
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.08em;
}

.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: auto;
  font-size: 2rem;
  color: #fff;
  opacity: 0.6;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  opacity: 1;
}

.carousel-control-prev {
  left: -3rem;
}

.carousel-control-next {
  right: -3rem;
}

.contact {
  padding: 8rem 8vw 10rem;
}

.contact h2 {
  font-weight: 400;
  font-size: 2.2rem;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.contact p {
  max-width: 520px;
  margin: 0 auto 4rem;
  color: var(--muted);
  line-height: 1.7;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-form input,
.contact-form textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.25);
  padding: 0.8rem 0;
  color: #fff;
  font-size: 0.9rem;
  outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--muted);
}

.contact-form button {
  margin-top: 2.5rem;
  align-self: center;
  padding: 0.9rem 3rem;
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  transition: background 0.4s ease, color 0.4s ease;
}

.contact-form button:hover {
  background: #fff;
  color: #000;
}

hr {
    margin-bottom: .5rem;
}

footer {
  /* padding: 4rem 8vw; */
  font-size: 0.7rem;
  color: var(--muted);
  text-align: center!important;
}

@media (max-width: 768px) {
  .navbar {
    padding: 1.5rem 6vw;
  }

  .hero {
    padding: 4rem 6vw 6rem;
  }

  .products {
    padding: 0 6vw 6rem;
  }
}

