/* ============================================================
   Veluto Designs — Landing Page
   ============================================================ */

:root {
  --charcoal: #2e2e30;
  --charcoal-dark: #1c1b20;
  --gold: #c4a468;
  --gold-light: #d6bd8a;
  --cream: #f4efe8;
  --ink: #2b2825;
  --muted: #6b6259;
  --white: #ffffff;

  --serif: "Prata", Georgia, serif;
  --sans: "Jost", "Helvetica Neue", Arial, sans-serif;

  --max: 1100px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 300;
  color: var(--ink);
  background: var(--charcoal);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }

a { color: inherit; text-decoration: none; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 78vh;
  padding: clamp(2rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--white);
  background: #1f1c19 url("../images/hero.jpg") center / cover no-repeat;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(20, 18, 16, 0.55) 0%,
    rgba(20, 18, 16, 0.30) 35%,
    rgba(20, 18, 16, 0.65) 100%
  );
}

.hero__logo {
  position: absolute;
  top: clamp(1.5rem, 3vw, 2.5rem);
  right: clamp(1.5rem, 3vw, 2.5rem);
  z-index: 2;
  display: block;
  width: clamp(96px, 13vw, 140px);
  border: 1px solid rgba(196, 164, 104, 0.5);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.45);
  transition: transform 0.3s ease;
}

.hero__logo:hover { transform: translateY(-2px); }

.hero__logo img { aspect-ratio: 1 / 1; }

.hero__content { position: relative; z-index: 2;  }

.hero__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.6rem, 7vw, 4.6rem);
  line-height: 1.05;
  margin: 0 0 1rem;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.4);
}

.hero__sub {
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  font-weight: 400;
  max-width: 30ch;
  margin: 0;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.45);
}

/* ============================================================
   INTRO
   ============================================================ */
.intro {
  background: var(--white);
  padding: clamp(3.5rem, 8vw, 6rem) 1.5rem clamp(2.5rem, 6vw, 4rem);
  text-align: center;
}

.intro__heading {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.9rem, 5vw, 3rem);
  line-height: 1.15;
  color: var(--ink);
  max-width: 760px;
  margin: 0 auto 1.8rem;
}

.intro__copy {
  max-width: 760px;
  margin: 0 auto;
}

.intro__copy p {
  font-size: clamp(1.1rem, 1.75vw, 1.35rem);
  font-weight: 400;
  color: var(--muted);
  margin: 0 0 1.4rem;
}

.intro__copy p:last-child { margin-bottom: 0; }

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  background: var(--cream);
  padding: clamp(3rem, 6vw, 4.5rem) 1.5rem;
  text-align: center;
}

.services__heading {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  color: var(--ink);
  margin: 0 0 2rem;
}

.services__list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 680px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
}

.services__list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1.4rem;
  background: var(--white);
  border: 1px solid rgba(196, 164, 104, 0.5);
  border-radius: 999px;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  font-weight: 400;
  color: var(--ink);
}

.services__list li::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  background: var(--gold);
  transform: rotate(45deg);
}

/* ============================================================
   MASTER CLASS PARTNER
   ============================================================ */
.partner {
  background: var(--charcoal);
  color: var(--cream);
  padding: clamp(3rem, 6vw, 4.5rem) 1.5rem;
}

.partner__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.5rem, 5vw, 3.5rem);
}

.partner__text { max-width: 550px; }

.partner__heading {
  margin: 0 0 0.9rem;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.6rem, 3.5vw, 2.3rem);
  line-height: 1.25;
  color: var(--gold-light);
}

.partner__copy {
  margin: 0;
  font-size: clamp(0.98rem, 1.5vw, 1.1rem);
  font-weight: 300;
  line-height: 1.65;
  color: rgba(244, 239, 232, 0.8);
}

.partner__media {
  flex: 0 0 auto;
  width: clamp(200px, 22vw, 240px);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1.1rem;
}

.partner__qr {
  width: 100%;
  padding: 10px;
  background: var(--white);
  border: 1px solid rgba(196, 164, 104, 0.4);
  border-radius: 8px;
}

.partner__qr img { aspect-ratio: 1 / 1; height: auto; }

.partner__btn {
  display: block;
  text-align: center;
  white-space: nowrap;
  padding: 0.8rem 1.5rem;
  background: var(--gold);
  color: var(--charcoal-dark);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  border-radius: 102px;
  transition: background 0.2s ease, color 0.2s ease;
}

.partner__btn:hover {
  background: transparent;
  color: var(--gold-light);
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  padding: 0 0 clamp(0.5rem, 3vw, 1.5rem);
  background: var(--white);
}

.gallery__item {
  margin: 0;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.gallery__item img {
  transition: transform 0.7s ease;
}

.gallery__item:hover img { transform: scale(1.06); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--charcoal);
  color: var(--cream);
  padding: clamp(3rem, 7vw, 5rem) clamp(1.5rem, 5vw, 3rem) 2rem;
}

.footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.footer__heading {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.25rem, 3vw, 2rem);
  margin: 0 0 1rem;
  color: var(--cream);
}

.footer__heading--follow { margin-top: 2.6rem; }

.footer__line {
  font-size: 0.98rem;
  margin: 0 0 0.9rem;
  color: var(--cream);
}

.footer__label { font-weight: 600; color: var(--gold-light); }

.footer__line a { transition: color 0.2s ease; }
.footer__line a:hover { color: var(--gold-light); }

.footer__social a {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.footer__ig { width: 22px; height: 22px; color: var(--cream); }

.footer__divider {
  width: 1px;
  align-self: stretch;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(196, 164, 104, 0.5) 20%,
    rgba(196, 164, 104, 0.5) 80%,
    transparent
  );
}

.footer__showroom {
  margin: 0 0 1.4rem;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: 1px solid rgba(196, 164, 104, 0.3);
}

.footer__address { display: flex; gap: 0.5rem; line-height: 1.6; }

.footer__brand {
  max-width: var(--max);
  margin: clamp(2.5rem, 5vw, 3.5rem) auto 0;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.footer__brand img {
  width: 84px;
  height: 84px;
  display: inline-block;
  border-radius: 4px;
  opacity: 0.95;
}

.footer__copyright {
  max-width: var(--max);
  margin: 1.2rem auto 0;
  text-align: center;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  color: rgba(244, 239, 232, 0.55);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 760px) {
  .gallery { grid-template-columns: 1fr; gap: 3px; }
  .gallery__item { aspect-ratio: 16 / 10; }

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

  .footer__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer__divider { display: none; }

  .footer__heading--follow { margin-top: 2rem; }
}

@media (max-width: 420px) {
  .hero { min-height: 70vh; }
  .hero__logo-name { font-size: 1.15rem; }
}
