:root {
    --black: #030303;
    --white: #fff;
    --muted: #9b9b9b;
    --line: rgba(255,255,255,.18);
    --gold: #c9a646;
    --ease: cubic-bezier(.22,1,.36,1);
  }
  
  * {
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    margin: 0;
    background: var(--black);
    color: var(--white);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  }
  
  a {
    color: inherit;
    text-decoration: none;
  }
  
  button,
  input,
  textarea,
  select {
    font: inherit;
  }
  
  img {
    display: block;
    max-width: 100%;
  }
  
  .page-shell {
    min-height: 100vh;
    overflow-x: hidden;
  }
  
  /* Header */
  
  .vg-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 100;
    height: 76px;
    padding: 0 34px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    background: rgba(0,0,0,.82);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255,255,255,.08);
    transition: background .35s var(--ease), color .35s var(--ease);
  }
  
  .vg-header__left,
  .vg-header__right {
    display: flex;
    align-items: center;
    gap: 26px;
  }
  
  .vg-header__right {
    justify-content: flex-end;
  }
  
  .hamburger {
    width: 36px;
    height: 36px;
    border: 0;
    background: transparent;
    display: inline-grid;
    place-items: center;
    cursor: pointer;
    padding: 0;
  }
  
  .hamburger span {
    width: 24px;
    height: 2px;
    background: currentColor;
    display: block;
    border-radius: 10px;
  }
  
  .hamburger span + span {
    margin-top: -12px;
  }
  
  .top-nav-item {
    border: 0;
    background: transparent;
    color: inherit;
    text-transform: uppercase;
    letter-spacing: .13em;
    font-size: 11px;
    cursor: pointer;
    padding: 30px 0;
  }
  
  .top-nav-item:hover {
    color: var(--gold);
  }
  
  .vg-logo {
    display: grid;
    place-items: center;
    text-align: center;
    line-height: 1;
  }

  .vg-logo__img {
    height: 26px;
    width: auto;
    display: block;
  }
  
  .header-secondary,
  .header-primary {
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: .13em;
  }
  
  .header-primary {
    background: var(--gold);
    color: #050505;
    padding: 13px 20px;
  }
  
  .header-secondary:hover {
    color: var(--gold);
  }
  
  .mobile-only {
    display: none;
  }

  .lang-switch {
    position: relative;
  }

  .lang-switch__toggle {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, .3);
    color: inherit;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: .13em;
    padding: 8px 14px;
    border-radius: 999px;
    cursor: pointer;
  }

  .lang-switch__toggle:hover {
    border-color: var(--gold);
    color: var(--gold);
  }

  .lang-switch__menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 140px;
    background: #0b0b0b;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 8px;
    padding: 6px;
    display: none;
    flex-direction: column;
    z-index: 40;
  }

  .lang-switch.is-open .lang-switch__menu {
    display: flex;
  }

  .lang-switch__menu a {
    padding: 10px 12px;
    font-size: 12px;
    letter-spacing: .04em;
    color: var(--muted);
    border-radius: 6px;
  }

  .lang-switch__menu a:hover {
    background: rgba(255, 255, 255, .06);
    color: #fff;
  }

  .lang-switch__menu a.is-active {
    color: var(--gold);
  }

  /* Mega menu */
  
  .mega-menu,
  .mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: #050505;
    color: #fff;
    transform: translateX(-105%);
    transition: transform .65s var(--ease);
  }
  
  .mega-menu.is-open,
  .mobile-menu.is-open {
    transform: translateX(0);
  }
  
  .menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 180;
    background: rgba(0,0,0,.65);
    opacity: 0;
    pointer-events: none;
    transition: opacity .45s var(--ease);
  }
  
  .menu-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
  }
  
  .mega-menu {
    display: grid;
    grid-template-columns: 44% 56%;
  }
  
  .mega-menu__top {
    position: absolute;
    top: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
  }
  
  .mega-logo {
    display: grid;
    place-items: center;
  }

  .mega-logo img {
    height: 28px;
    width: auto;
    display: block;
  }
  
  .mega-menu__left {
    display: grid;
    grid-template-columns: 44% 56%;
    border-right: 1px solid rgba(255,255,255,.08);
    padding: 120px 48px 70px;
    gap: 28px;
  }
  
  .mega-close {
    position: absolute;
    left: 48px;
    top: 34px;
    border: 0;
    color: #fff;
    background: transparent;
    text-transform: uppercase;
    letter-spacing: .16em;
    font-size: 11px;
    cursor: pointer;
  }
  
  .mega-close span {
    display: block;
    width: 100%;
    height: 1px;
    margin-top: 5px;
    background: currentColor;
  }
  
  .mega-level-1 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    min-width: 0;
  }

  .mega-l1 {
    border: 0;
    background: transparent;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    width: 100%;
    min-width: 0;
    text-align: left;
    font-family: Cinzel, serif;
    font-size: clamp(20px, 2.1vw, 36px);
    cursor: pointer;
    padding: 10px 0;
    opacity: .45;
    transition: opacity .3s var(--ease), transform .3s var(--ease);
  }
  
  .mega-l1.is-active,
  .mega-l1:hover {
    opacity: 1;
    transform: translateX(8px);
  }
  
  .mega-arrow {
    font-family: inherit;
    font-size: .45em;
  }
  
  .mega-level-2-wrap {
    position: relative;
    display: flex;
    align-items: center;
    min-width: 0;
  }
  
  .mega-level-2 {
    display: none;
    width: 100%;
  }
  
  .mega-level-2.is-active {
    display: block;
  }
  
  .mega-back {
    display: none;
  }
  
  .mega-level-2 ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .mega-level-2 li + li {
    margin-top: 22px;
  }
  
  .mega-l2-link {
    display: grid;
    gap: 6px;
  }
  
  .mega-l2-link span {
    display: inline-flex;
    width: fit-content;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: 14px;
  }
  
  .mega-l2-link span i {
    align-self: end;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width .3s var(--ease);
  }
  
  .mega-l2-link:hover span i {
    width: 42px;
  }
  
  .mega-l2-link small {
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .16em;
    font-size: 11px;
  }
  
  .mega-level-2 hr {
    border: 0;
    border-top: 1px solid rgba(255,255,255,.15);
    margin: 34px 0;
  }
  
  .mega-additional a {
    display: flex;
    justify-content: space-between;
    color: #d8d8d8;
    font-size: 14px;
  }
  
  .mega-menu__right {
    position: relative;
    min-height: 100vh;
  }
  
  .mega-preview,
  .mega-preview img {
    width: 100%;
    height: 100%;
  }
  
  .mega-preview img {
    object-fit: cover;
    opacity: .72;
    transition: opacity .35s var(--ease), transform .8s var(--ease);
  }
  
  .mega-preview:hover img {
    transform: scale(1.03);
  }
  
  .mega-preview:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,.72), transparent 52%, rgba(0,0,0,.15));
  }
  
  .mega-preview__copy {
    position: absolute;
    z-index: 2;
    left: 9%;
    bottom: 12%;
    max-width: 440px;
  }
  
  .mega-preview__copy p:first-child {
    text-transform: uppercase;
    letter-spacing: .18em;
    color: var(--gold);
    font-size: 12px;
  }
  
  .mega-preview__copy h3 {
    font-family: Cinzel, serif;
    font-size: clamp(40px, 5vw, 78px);
    line-height: .92;
    margin: 10px 0 18px;
  }
  
  .mega-preview__copy p {
    color: #ddd;
    line-height: 1.6;
  }
  
  .mega-preview__copy a {
    display: inline-block;
    margin-top: 18px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: .15em;
    font-size: 12px;
  }
  
  /* Mobile menu */
  
  .mobile-menu {
    display: none;
    padding: 0 28px 40px;
  }
  
  .mobile-menu__top {
    height: 76px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
  }
  
  .mobile-logo img {
    height: 22px;
    width: auto;
    display: block;
  }
  
  .mobile-back,
  .mobile-close {
    border: 0;
    background: transparent;
    color: #fff;
  }
  
  .mobile-back {
    opacity: 0;
    pointer-events: none;
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: 11px;
  }
  
  .mobile-menu.has-level-2 .mobile-back {
    opacity: 1;
    pointer-events: auto;
  }
  
  .mobile-close {
    justify-self: end;
    width: 34px;
    height: 34px;
    position: relative;
  }
  
  .mobile-close:before,
  .mobile-close:after {
    content: "";
    position: absolute;
    left: 7px;
    right: 7px;
    top: 16px;
    height: 2px;
    background: #fff;
  }
  
  .mobile-close:before {
    transform: rotate(45deg);
  }
  
  .mobile-close:after {
    transform: rotate(-45deg);
  }
  
  .mobile-panel {
    display: none;
    padding-top: 44px;
  }
  
  .mobile-panel.is-active {
    display: block;
  }
  
  .mobile-panel ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .mobile-panel--l1 button {
    border: 0;
    background: transparent;
    color: #fff;
    font-family: Cinzel, serif;
    font-size: 42px;
    padding: 14px 0;
    width: 100%;
    text-align: left;
  }
  
  .mobile-panel--l2 h2 {
    font-family: Cinzel, serif;
    font-size: 46px;
    margin: 0 0 36px;
  }
  
  .mobile-panel--l2 a {
    display: grid;
    gap: 8px;
    border-bottom: 1px solid rgba(255,255,255,.12);
    padding: 18px 0;
  }
  
  .mobile-panel--l2 strong {
    text-transform: uppercase;
    letter-spacing: .13em;
  }
  
  .mobile-panel--l2 span {
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .15em;
    font-size: 11px;
  }
  
  .mobile-language {
    margin-top: 40px;
    display: flex;
    gap: 18px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: 12px;
  }
  
  .mobile-language .is-active {
    color: #fff;
  }
  
  /* Hero */
  
  .hero-gallery {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    background: #000;
  }
  
  .hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 1s var(--ease);
  }
  
  .hero-slide.is-active {
    opacity: 1;
    pointer-events: auto;
  }
  
  .hero-slide a,
  .hero-slide img {
    width: 100%;
    height: 100%;
  }
  
  .hero-slide img {
    object-fit: cover;
    transform: scale(1.06);
    transition: transform 7s linear;
  }
  
  .hero-slide.is-active img {
    transform: scale(1);
  }
  
  .hero-slide__shade {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(180deg, rgba(0,0,0,.5), transparent 35%, rgba(0,0,0,.58)),
      linear-gradient(90deg, rgba(0,0,0,.72), transparent 55%);
  }
  
  .hero-slide.theme-light .hero-slide__shade {
    background:
      linear-gradient(180deg, rgba(255,255,255,.15), transparent 40%, rgba(0,0,0,.4)),
      linear-gradient(90deg, rgba(255,255,255,.72), transparent 55%);
  }
  
  .hero-slide.theme-light .hero-slide__copy {
    color: #080808;
  }
  
  .hero-slide__copy {
    position: absolute;
    left: 8%;
    bottom: 16%;
    max-width: 760px;
  }
  
  .hero-slide__copy p {
    text-transform: uppercase;
    letter-spacing: .18em;
    font-size: 12px;
    margin: 0 0 16px;
  }
  
  .hero-slide__copy h1 {
    font-family: Cinzel, serif;
    font-size: clamp(40px, 6vw, 88px);
    line-height: 1.1;
    margin: 0;
    font-weight: 400;
    overflow-wrap: break-word;
  }
  
  .hero-slide__copy span {
    display: inline-block;
    margin-top: 34px;
    text-transform: uppercase;
    letter-spacing: .16em;
    font-size: 12px;
    border-bottom: 1px solid currentColor;
    padding-bottom: 5px;
  }
  
  .hero-controls {
    position: absolute;
    z-index: 4;
    right: 6%;
    bottom: 7%;
    width: 190px;
    display: grid;
    gap: 14px;
  }
  
  .hero-count {
    display: flex;
    gap: 4px;
    font-size: 12px;
    letter-spacing: .16em;
  }
  
  .hero-controls button {
    color: #fff;
    background: transparent;
    border: 0;
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: 11px;
    cursor: pointer;
    padding: 0;
    text-align: left;
  }
  
  .hero-dots {
    display: flex;
    gap: 8px;
  }
  
  .hero-dots button {
    width: 34px;
    height: 2px;
    background: rgba(255,255,255,.35);
  }
  
  .hero-dots button.is-active {
    background: var(--gold);
  }
  
  .hero-cursor {
    position: absolute;
    right: 7%;
    top: 50%;
    width: 116px;
    height: 116px;
    border: 1px solid rgba(255,255,255,.45);
    border-radius: 50%;
    display: grid;
    place-items: center;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: 10px;
    color: #fff;
    pointer-events: none;
  }
  
  /* Sections */
  
  .title-section {
    padding: clamp(80px, 12vw, 150px) 8%;
    text-align: center;
    background: #0d0d0d;
    color: #fff;
  }
  
  .title-section--black {
    background: #050505;
    color: #fff;
  }
  
  .title-section > p {
    text-transform: uppercase;
    color: var(--gold);
    letter-spacing: .18em;
    font-size: 12px;
  }
  
  .title-section h2 {
    font-family: Cinzel, serif;
    font-weight: 400;
    font-size: clamp(42px, 6vw, 92px);
    line-height: .95;
    margin: 12px auto 30px;
    max-width: 940px;
  }
  
  .title-section div p {
    max-width: 780px;
    margin: 0 auto;
    line-height: 1.8;
    color: inherit;
    opacity: .78;
    text-transform: uppercase;
    letter-spacing: .05em;
    font-size: 13px;
  }
  
  .button-row {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
  }
  
  .btn {
    display: inline-flex;
    min-width: 180px;
    justify-content: center;
    padding: 15px 22px;
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: 11px;
  }
  
  .btn-primary {
    background: var(--gold);
    color: #050505;
  }
  
  .btn-secondary {
    border: 1px solid rgba(255,255,255,.38);
    color: #fff;
  }
  
  .brand-banner {
    background: #050505;
    line-height: 0;
  }

  .brand-banner img {
    width: 100%;
    height: auto;
    display: block;
  }

  .simple-gallery {
    background: #050505;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1px;
  }
  
  .simple-gallery figure {
    margin: 0;
    height: 420px;
    overflow: hidden;
  }
  
  .simple-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s var(--ease), opacity .4s;
    opacity: .82;
  }
  
  .simple-gallery figure:hover img {
    transform: scale(1.06);
    opacity: 1;
  }
  
  .cinematic-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
  }
  
  .cinematic-section img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
  }
  
  .cinematic-section__gradient {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(180deg, rgba(0,0,0,.6), transparent 42%, rgba(0,0,0,.72)),
      linear-gradient(90deg, rgba(0,0,0,.72), transparent 60%);
  }
  
  .cinematic-section__copy {
    position: absolute;
    left: 8%;
    top: 50%;
    transform: translateY(-50%);
    max-width: 680px;
  }
  
  .cinematic-section__copy h2 {
    font-family: Cinzel, serif;
    font-size: clamp(48px, 7vw, 110px);
    line-height: .9;
    font-weight: 400;
    margin: 0 0 26px;
  }
  
  .cinematic-section__copy p {
    line-height: 1.8;
    color: #e5e5e5;
    max-width: 540px;
    text-transform: uppercase;
    letter-spacing: .06em;
    font-size: 13px;
  }
  
  .cinematic-section__copy a {
    display: inline-block;
    margin-top: 26px;
    color: var(--gold);
    border-bottom: 1px solid currentColor;
    padding-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: .15em;
    font-size: 12px;
  }
  
  /* Content carousel */
  
  .content-carousel {
    background: #050505;
    padding: 90px 5%;
    display: grid;
    grid-template-columns: 28% 1fr;
    gap: 40px;
  }
  
  .content-carousel__title h2 {
    font-family: Cinzel, serif;
    font-size: clamp(34px, 4vw, 66px);
    line-height: .95;
    font-weight: 400;
    margin: 0;
  }
  
  .content-carousel__cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }
  
  .lifestyle-card {
    position: relative;
    min-height: 500px;
    overflow: hidden;
    background: #111;
  }
  
  .lifestyle-card img {
    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: cover;
    opacity: .75;
    transition: transform .8s var(--ease), opacity .4s;
  }
  
  .lifestyle-card:hover img {
    transform: scale(1.05);
    opacity: .95;
  }
  
  .lifestyle-card:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 35%, rgba(0,0,0,.85));
  }
  
  .lifestyle-card div {
    position: absolute;
    z-index: 2;
    left: 24px;
    right: 24px;
    bottom: 24px;
  }
  
  .lifestyle-card h3 {
    font-family: Cinzel, serif;
    font-weight: 400;
    font-size: 30px;
    margin: 0 0 12px;
  }
  
  .lifestyle-card p {
    color: #ddd;
    line-height: 1.5;
  }
  
  /* Collection pages */
  
  .collection-hero {
    position: relative;
    min-height: 78vh;
    display: grid;
    align-items: end;
    padding: 140px 8% 90px;
  }
  
  .collection-hero img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .collection-hero__shade {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(180deg, rgba(0,0,0,.55), transparent 38%, rgba(0,0,0,.8)),
      linear-gradient(90deg, rgba(0,0,0,.7), transparent 60%);
  }
  
  .collection-hero div:last-child {
    position: relative;
    z-index: 2;
    max-width: 760px;
  }
  
  .collection-hero p {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: .18em;
    font-size: 12px;
  }
  
  .collection-hero h1 {
    font-family: Cinzel, serif;
    font-size: clamp(58px, 8vw, 124px);
    line-height: .85;
    font-weight: 400;
    margin: 0 0 26px;
    overflow-wrap: break-word;
  }
  
  .collection-hero span {
    color: #e5e5e5;
    line-height: 1.7;
    max-width: 620px;
    display: block;
  }
  
  .collection-grid {
    background: #080808;
    color: #fff;
    padding: 80px 5%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }
  
  .collection-card {
    background: #161616;
    border: 1px solid rgba(255,255,255,.08);
    display: grid;
    grid-template-columns: 48% 1fr;
    min-height: 360px;
  }
  
  .collection-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .collection-card div {
    padding: 34px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .collection-card p {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: .18em;
    font-size: 11px;
  }
  
  .collection-card h2 {
    font-family: Cinzel, serif;
    font-size: 36px;
    line-height: 1;
    font-weight: 400;
    margin: 8px 0 18px;
  }
  
  .collection-card span {
    color: var(--muted);
    line-height: 1.6;
  }

  .collection-card a {
    margin-top: 26px;
    color: #fff;
    border-bottom: 1px solid #fff;
    width: fit-content;
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: 11px;
  }
  
  /* Prefooter and footer */
  
  .prefooter {
    background: #050505;
    border-top: 1px solid rgba(255,255,255,.12);
    padding: 0 5% 70px;
  }
  
  .prefooter__header {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1px solid rgba(255,255,255,.18);
    border-top: 0;
  }
  
  .prefooter__primary,
  .prefooter__secondary {
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: 12px;
  }
  
  .prefooter__primary {
    background: var(--gold);
    color: #050505;
  }
  
  .prefooter__secondary {
    background: transparent;
    color: #fff;
    border: 0;
    border-left: 1px solid rgba(255,255,255,.18);
    cursor: pointer;
  }
  
  .prefooter__content {
    max-width: 1180px;
    margin: 0 auto;
    display: none;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid rgba(255,255,255,.18);
    border-top: 0;
  }
  
  .prefooter__content.is-open {
    display: grid;
  }
  
  .prefooter__content a {
    min-height: 96px;
    padding: 24px;
    border-right: 1px solid rgba(255,255,255,.12);
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: 11px;
  }
  
  .contact-form {
    max-width: 1180px;
    margin: 48px auto 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
  }

  .contact-form--sent {
    display: grid;
    justify-items: center;
    gap: 14px;
    text-align: center;
    padding: 60px 20px;
    border: 1px solid rgba(255,255,255,.18);
  }

  .contact-form--sent p {
    color: var(--muted);
    max-width: 480px;
  }

  .contact-form--sent p:first-child {
    color: #fff;
    font-size: 20px;
  }

  .contact-form--sent .prefooter__primary {
    display: inline-flex;
    min-height: auto;
    padding: 14px 32px;
    margin-top: 10px;
  }
  
  .contact-form div {
    display: grid;
    gap: 8px;
  }
  
  .contact-form label {
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: 10px;
  }
  
  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    width: 100%;
    border: 1px solid rgba(255,255,255,.18);
    background: #0d0d0d;
    color: #fff;
    padding: 14px;
    outline: 0;
  }
  
  .contact-form div:nth-child(4) {
    grid-column: span 3;
  }
  
  .contact-form button {
    border: 0;
    background: var(--gold);
    color: #050505;
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: 11px;
    padding: 14px 20px;
    cursor: pointer;
  }
  
  .footer {
    background: #050505;
    color: #fff;
    padding: 70px 5% 40px;
  }
  
  .footer__logo {
    display: grid;
    place-items: center;
  }

  .footer__logo img {
    height: 40px;
    width: auto;
    display: block;
  }
  
  .footer hr {
    border: 0;
    border-top: 1px solid rgba(255,255,255,.14);
    margin: 44px 0;
  }
  
  .footer__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
  }
  
  .footer__col h4 {
    text-transform: uppercase;
    letter-spacing: .15em;
    font-size: 12px;
    margin: 0 0 18px;
  }
  
  .footer__col a {
    display: block;
    color: var(--muted);
    margin: 10px 0;
    font-size: 14px;
  }
  
  .footer__col a:hover,
  .footer__utility a:hover,
  .footer__social a:hover {
    color: var(--gold);
  }
  
  .footer__utility,
  .footer__social {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    color: var(--muted);
    flex-wrap: wrap;
  }
  
  .footer__links,
  .footer__social {
    display: flex;
    gap: 22px;
  }
  
  .footer__legal {
    margin-top: 44px;
    color: #777;
    font-size: 12px;
    line-height: 1.7;
  }
  
  /* Dialog */
  
  .country-dialog {
    width: min(1000px, calc(100vw - 40px));
    background: #080808;
    color: #fff;
    border: 1px solid rgba(255,255,255,.18);
    padding: 46px;
  }
  
  .country-dialog::backdrop {
    background: rgba(0,0,0,.72);
  }
  
  .country-dialog__close {
    position: absolute;
    right: 22px;
    top: 18px;
    background: transparent;
    color: #fff;
    border: 0;
    font-size: 30px;
    cursor: pointer;
  }
  
  .country-dialog h2 {
    font-family: Cinzel, serif;
    font-size: 48px;
    font-weight: 400;
    margin: 0 0 30px;
  }
  
  .country-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
  
  .country-grid h3 {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: .16em;
    font-size: 12px;
  }
  
  .country-grid a {
    display: block;
    color: var(--muted);
    margin: 10px 0;
  }
  
  /* Responsive */
  
  @media (max-width: 1100px) {
    .vg-header__desktop-nav,
    .header-secondary,
    .header-primary,
    .lang-switch,
    .vg-header .hamburger:not(.mobile-only) {
      display: none;
    }
  
    .mobile-only {
      display: inline-grid;
    }
  
    .vg-header {
      padding: 0 22px;
    }
  
    .mega-menu {
      display: none;
    }
  
    .mobile-menu {
      display: block;
    }
  
    .content-carousel,
    .collection-grid {
      grid-template-columns: 1fr;
    }
  
    .content-carousel__cards {
      grid-template-columns: 1fr;
    }
  
    .lifestyle-card {
      min-height: 420px;
    }
  
    .simple-gallery {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .collection-card {
      grid-template-columns: 1fr;
    }
  
    .collection-card img {
      height: 320px;
    }
  
    .prefooter__content,
    .contact-form,
    .footer__grid,
    .country-grid {
      grid-template-columns: 1fr;
    }
  
    .contact-form div:nth-child(4) {
      grid-column: span 1;
    }
  }
  
  @media (max-width: 680px) {
    .vg-header {
      height: 68px;
    }

    .vg-logo__img {
      height: 22px;
    }

    .hero-gallery {
      min-height: 650px;
    }
  
    .hero-slide__copy {
      left: 24px;
      right: 24px;
      bottom: 130px;
    }
  
    .hero-controls {
      left: 24px;
      right: auto;
      bottom: 36px;
    }
  
    .hero-cursor {
      display: none;
    }
  
    .title-section {
      padding: 80px 24px;
    }
  
    .simple-gallery figure {
      height: 280px;
    }
  
    .cinematic-section__copy {
      left: 24px;
      right: 24px;
    }
  
    .prefooter__header {
      grid-template-columns: 1fr;
    }
  
    .prefooter__secondary {
      border-left: 0;
      border-top: 1px solid rgba(255,255,255,.18);
    }
  
    .footer__utility,
    .footer__links,
    .footer__social {
      flex-direction: column;
    }
  }

  @media (max-width: 400px) {
    .hero-slide__copy h1 {
      font-size: clamp(32px, 11vw, 54px);
    }

    .collection-hero h1 {
      font-size: clamp(36px, 11vw, 58px);
    }
  }