/* Vintouch 2026 — shared UI/UX polish */
:root {
  --vt-ink: #11100e;
  --vt-ink-soft: #24211d;
  --vt-cream: #f7f3ec;
  --vt-cream-light: #fcf9f4;
  --vt-brass: #9b7650;
  --vt-muted: #746e66;
  --vt-line: rgba(17, 16, 14, .11);
  --vt-radius: 20px;
  --vt-shadow: 0 22px 60px rgba(31, 25, 18, .08);
}

html {
  scroll-behavior: smooth;
}

body.home-nav-luxe {
  margin: 0;
  overflow-x: hidden;
  background: var(--vt-cream) !important;
  color: var(--vt-ink);
  -webkit-font-smoothing: antialiased;
}

body.home-nav-luxe ::selection {
  background: var(--vt-ink);
  color: var(--vt-cream-light);
}

.home-nav-luxe :focus-visible {
  outline: 2px solid var(--vt-brass);
  outline-offset: 4px;
}

.home-nav-luxe .container {
  width: min(100% - 32px, 1180px);
}

/* Navigation */
.home-nav-luxe .site-nav .site-navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.home-nav-luxe .site-nav .site-menu {
  margin: 0 auto !important;
}

.home-nav-luxe .site-nav .site-menu > li > a {
  position: relative;
}

.home-nav-luxe .site-nav .site-menu > li > a::after {
  position: absolute;
  right: 11px;
  bottom: 5px;
  left: 11px;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s ease;
}

.home-nav-luxe .site-nav .site-menu > li.active > a::after,
.home-nav-luxe .site-nav .site-menu > li > a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Inner-page heroes */
.home-nav-luxe .apropos-hero,
.home-nav-luxe .contact-hero,
.home-nav-luxe .custom-hero {
  min-height: clamp(480px, 64vh, 720px) !important;
  padding-top: 110px;
  isolation: isolate;
}

.home-nav-luxe .apropos-hero::before,
.home-nav-luxe .contact-hero::before,
.home-nav-luxe .custom-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 45%, rgba(255,255,255,.08), transparent 42%),
    linear-gradient(180deg, rgba(6,6,5,.16), rgba(6,6,5,.62));
}

.home-nav-luxe .apropos-hero h1,
.home-nav-luxe .contact-hero h1,
.home-nav-luxe .custom-hero h1 {
  text-wrap: balance;
}

/* Typography and rhythm */
.home-nav-luxe .section {
  padding: clamp(76px, 8vw, 120px) 0 !important;
}

.home-nav-luxe h1,
.home-nav-luxe h2,
.home-nav-luxe h3,
.home-nav-luxe h4,
.home-nav-luxe h5 {
  text-wrap: balance;
}

.home-nav-luxe .section h2,
.home-nav-luxe .section-title {
  font-family: "Cormorant Garamond", "Playfair Display", serif;
  color: var(--vt-ink);
  font-weight: 400;
  line-height: 1.08;
}

.home-nav-luxe .section p {
  color: var(--vt-muted);
  line-height: 1.8;
}

.home-nav-luxe .sub-text,
.home-nav-luxe .section-kicker {
  color: var(--vt-brass) !important;
  font-family: "Montserrat", sans-serif;
  font-size: 10px !important;
  font-weight: 600;
  letter-spacing: .34em !important;
  text-transform: uppercase;
}

/* Controls */
.home-nav-luxe .btn,
.home-nav-luxe .btn-detail-mobile,
.home-nav-luxe .btn-config {
  min-height: 50px;
  padding: 15px 28px !important;
  border: 1px solid var(--vt-ink) !important;
  border-radius: 999px !important;
  background: var(--vt-ink) !important;
  color: #fff !important;
  box-shadow: 0 12px 30px rgba(17, 16, 14, .12);
  font-family: "Montserrat", sans-serif !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  letter-spacing: .16em !important;
  line-height: 1.4;
  text-transform: uppercase;
  transition: transform .3s ease, background .3s ease, color .3s ease, box-shadow .3s ease !important;
}

.home-nav-luxe .btn:hover,
.home-nav-luxe .btn-detail-mobile:hover,
.home-nav-luxe .btn-config:hover {
  background: transparent !important;
  color: var(--vt-ink) !important;
  box-shadow: none;
  transform: translateY(-2px);
}

/* Cards */
.home-nav-luxe .luxury-card,
.home-nav-luxe .valeur-card,
.home-nav-luxe .bg-sand.p-5 {
  overflow: hidden;
  border: 1px solid var(--vt-line) !important;
  border-radius: var(--vt-radius) !important;
  background: var(--vt-cream-light) !important;
  box-shadow: 0 10px 34px rgba(31, 25, 18, .05);
  transition: transform .4s ease, box-shadow .4s ease, border-color .4s ease;
}

.home-nav-luxe .luxury-card:hover,
.home-nav-luxe .valeur-card:hover {
  border-color: rgba(155, 118, 80, .3) !important;
  box-shadow: var(--vt-shadow);
  transform: translateY(-6px);
}

.home-nav-luxe .luxury-img-wrapper img {
  transition: transform .7s cubic-bezier(.2,.7,.2,1);
}

.home-nav-luxe .luxury-card:hover .luxury-img-wrapper img {
  transform: scale(1.035);
}

.home-nav-luxe .project-card-copy {
  min-height: 150px;
  padding: 30px !important;
}

.home-nav-luxe .project-card-copy h4 {
  margin-bottom: 10px;
  font-family: "Cormorant Garamond", "Playfair Display", serif;
  font-size: 27px;
  font-weight: 500;
}

/* Product catalogue */
.home-nav-luxe .product-grid > .container > .row {
  align-items: stretch;
}

.home-nav-luxe .product-grid .product-card {
  display: flex;
  flex-direction: column;
  margin-bottom: 54px;
}

.home-nav-luxe .product-image-container {
  width: 100%;
  aspect-ratio: 1 / 1 !important;
  border: 1px solid var(--vt-line);
  border-radius: var(--vt-radius) !important;
}

.home-nav-luxe .product-info {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px 0 0;
  text-align: center;
}

.home-nav-luxe .product-info .category {
  min-height: 28px;
}

.home-nav-luxe .product-info h3 {
  min-height: 50px;
}

.home-nav-luxe .product-info .btn-detail-mobile {
  width: 100%;
  margin-top: auto;
}

.home-nav-luxe .product-card-wide .product-image-container {
  aspect-ratio: 16 / 9 !important;
  padding: 0 !important;
  background: #f5f1ea !important;
}

.home-nav-luxe .product-card-wide .product-image-container img {
  width: 100% !important;
  height: 100% !important;
  padding: 0 !important;
  object-fit: cover !important;
  object-position: center !important;
  border-radius: calc(var(--vt-radius) - 8px);
}

.home-nav-luxe .personalize-card-inner {
  height: 100%;
  border: 1px solid var(--vt-line) !important;
  border-radius: var(--vt-radius) !important;
  background:
    radial-gradient(circle at 80% 15%, rgba(155,118,80,.13), transparent 36%),
    var(--vt-ink) !important;
}

.home-nav-luxe .personalize-card-inner h3,
.home-nav-luxe .personalize-card-inner p {
  color: #fff !important;
}

.home-nav-luxe .personalize-card-inner .personalize-kicker {
  display: block;
  margin-bottom: 15px;
  color: #e0c7a6 !important;
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .32em;
  text-transform: uppercase;
  text-shadow: 0 1px 8px rgba(0, 0, 0, .35);
}

/* Forms */
.home-nav-luxe form label {
  margin-bottom: 9px;
  color: var(--vt-ink) !important;
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.home-nav-luxe .form-control {
  min-height: 54px;
  padding: 14px 16px;
  border: 1px solid var(--vt-line);
  border-radius: 10px;
  background: #fffdf9;
  color: var(--vt-ink);
  box-shadow: none !important;
}

.home-nav-luxe textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.home-nav-luxe .form-control:focus {
  border-color: var(--vt-brass);
  background: #fff;
}

/* Shared conversion strip and footer */
.home-nav-luxe .site-footer-cta {
  padding: clamp(70px, 8vw, 110px) 0;
  background: var(--vt-cream-light);
  border-top: 1px solid var(--vt-line);
}

.home-nav-luxe .site-footer-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  padding: clamp(34px, 5vw, 62px);
  border-radius: 24px;
  background:
    radial-gradient(circle at 85% 20%, rgba(155,118,80,.22), transparent 32%),
    var(--vt-ink);
  color: #fff;
}

.home-nav-luxe .site-footer-cta__copy span {
  color: #cbb49a;
  font-family: "Montserrat", sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
}

.home-nav-luxe .site-footer-cta__copy h2 {
  max-width: 650px;
  margin: 12px 0 0;
  color: #fff !important;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(35px, 4.3vw, 58px);
  font-weight: 400;
  line-height: 1;
}

.home-nav-luxe .site-footer-cta .btn {
  border-color: #fff !important;
  background: #fff !important;
  color: var(--vt-ink) !important;
  white-space: nowrap;
}

.home-nav-luxe .site-footer-cta .btn:hover {
  background: transparent !important;
  color: #fff !important;
}

.home-nav-luxe .site-footer {
  padding-top: 76px;
  background: #0d0c0a !important;
  color: rgba(255,255,255,.62);
}

.home-nav-luxe .site-footer .widget h3 {
  color: #fff !important;
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.home-nav-luxe .site-footer p,
.home-nav-luxe .site-footer a {
  color: rgba(255,255,255,.58) !important;
}

.home-nav-luxe .site-footer a:hover {
  color: #fff !important;
}

.home-nav-luxe .site-footer .links li {
  margin-bottom: 9px;
}

.home-nav-luxe .site-footer .copyright {
  margin-top: 48px;
  padding: 26px 0;
  border-top: 1px solid rgba(255,255,255,.09);
}

@media (max-width: 991.98px) {
  .home-nav-luxe .apropos-hero,
  .home-nav-luxe .contact-hero,
  .home-nav-luxe .custom-hero {
    padding-top: 88px;
  }

  .home-nav-luxe .site-footer-cta__inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 767.98px) {
  .home-nav-luxe .container {
    width: min(100% - 28px, 1180px);
  }

  .home-nav-luxe .section {
    padding: 68px 0 !important;
  }

  .home-nav-luxe .apropos-hero,
  .home-nav-luxe .contact-hero,
  .home-nav-luxe .custom-hero {
    min-height: 520px !important;
  }

  .home-nav-luxe .custom-hero .hero-content-wrapper {
    max-width: 100%;
    overflow: hidden;
    padding: 0 18px;
  }

  .home-nav-luxe .custom-hero .hero-heading {
    max-width: 100%;
    margin-right: auto !important;
    margin-left: auto !important;
    font-size: clamp(38px, 12vw, 52px) !important;
    line-height: .98 !important;
    letter-spacing: -.035em !important;
    overflow-wrap: anywhere;
  }

  .home-nav-luxe .custom-hero .sub-text {
    letter-spacing: .42em !important;
  }

  .home-nav-luxe .site-nav .burger {
    display: inline-flex !important;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    align-items: center;
    justify-content: center;
    margin-left: auto !important;
  }

  .home-nav-luxe .subnav-container .container > div {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 18px !important;
  }

  .home-nav-luxe .subnav-container .subnav-link {
    padding: 6px 2px;
    text-align: center;
  }

  .home-nav-luxe .subnav-container .subnav-separator {
    display: none;
  }

  .home-nav-luxe .luxury-img-wrapper[style*="height: 400px"] {
    height: 300px !important;
  }

  .home-nav-luxe .bg-sand.p-5 {
    padding: 28px !important;
  }

  .home-nav-luxe .hero-corner {
    display: none;
  }
}

@media (max-width: 575.98px) {
  .home-nav-luxe .product-grid > .container {
    width: min(100% - 32px, 1180px);
    padding-right: 0;
    padding-left: 0;
  }

  .home-nav-luxe .product-grid > .container > .row {
    margin-right: 0;
    margin-left: 0;
  }

  .home-nav-luxe .product-grid .product-card {
    flex: 0 0 100%;
    max-width: 100%;
    padding-right: 0;
    padding-left: 0;
  }

  .home-nav-luxe .product-grid .product-card:not(:first-child) {
    padding-right: 0;
    padding-left: 0;
  }

  .home-nav-luxe .site-footer-cta__inner {
    border-radius: 18px;
  }

  .home-nav-luxe .site-footer-cta .btn {
    width: 100%;
    white-space: normal;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .home-nav-luxe *,
  .home-nav-luxe *::before,
  .home-nav-luxe *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
