:root {
  --ink: #0d0d0d;
  --paper: #fff;
  --white: #fff;
  --hero-text: #fff;
  --muted: #706b63;
  --line: rgba(17, 17, 17, 0.14);
  --dark-line: rgba(255, 255, 255, 0.24);
  --accent: #5b1730;
  --accent2: #7a2240;
  --header-bg: rgba(255, 255, 255, 0.98);
  --serif: Didot, "Bodoni 72", "Times New Roman", serif;
  --sans: "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { min-width: 320px; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  overflow-x: hidden;
}
body.is-locked { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; color: inherit; }
img, video { display: block; max-width: 100%; }

.vl-announcement {
  height: 28px;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.9);
  color: var(--white);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.vl-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 90;
  color: var(--white);
  background: linear-gradient(180deg, rgba(0,0,0,.58), rgba(0,0,0,.12));
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.vl-header.is-solid,
.vl-header.is-open {
  color: var(--ink);
  background: var(--header-bg);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.vl-header-row {
  height: 74px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  padding: 0 clamp(18px, 3vw, 46px);
}

.vl-primary-nav,
.vl-utility-nav {
  display: flex;
  align-items: center;
  gap: clamp(13px, 1.5vw, 26px);
  min-width: 0;
}
.vl-utility-nav {
  justify-content: flex-end;
}
.vl-primary-nav a,
.vl-primary-nav button,
.vl-utility-nav a,
.vl-utility-nav button {
  border: 0;
  background: transparent;
  padding: 10px 0;
  font-size: 11px;
  letter-spacing: .09em;
  text-transform: uppercase;
  white-space: nowrap;
}
.vl-utility-nav span {
  display: inline-flex;
  min-width: 16px;
  height: 16px;
  margin-left: 4px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  font-size: 9px;
}
.vl-utility-nav a.is-active,
.vl-utility-nav a.is-active span {
  color: var(--ink);
  background: var(--white);
}
.vl-header.is-solid .vl-utility-nav a.is-active,
.vl-header.is-open .vl-utility-nav a.is-active {
  color: var(--ink);
  background: transparent;
}

.vl-logo {
  width: clamp(150px, 19vw, 310px);
  justify-self: center;
  mix-blend-mode: screen;
  filter: invert(1) brightness(2);
  transition: filter .2s ease, mix-blend-mode .2s ease;
}
.vl-header.is-solid .vl-logo,
.vl-header.is-open .vl-logo {
  mix-blend-mode: normal;
  filter: none;
}
.vl-logo img {
  width: 100%;
  max-height: 58px;
  object-fit: contain;
}

.vl-menu-button {
  display: none;
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  padding: 0;
}
.vl-menu-button span {
  display: block;
  width: 22px;
  height: 1px;
  margin: 6px auto;
  background: currentColor;
}

.vl-mega {
  display: none;
  grid-template-columns: 290px repeat(3, minmax(160px, 1fr));
  gap: 34px;
  padding: 28px clamp(18px, 4vw, 70px) 38px;
  background: var(--header-bg);
  color: var(--ink);
  border-top: 1px solid var(--line);
  box-shadow: 0 30px 60px rgba(0,0,0,.18);
}
.vl-header.is-open .vl-mega { display: grid; }
.vl-mega h3 {
  margin: 0 0 14px;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.vl-mega a {
  display: block;
  margin: 10px 0;
  color: var(--muted);
  font-size: 14px;
}
.vl-mega-media {
  min-height: 230px;
  position: relative;
  overflow: hidden;
  background: #ddd;
}
.vl-mega-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.vl-mega-media span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  color: var(--white);
  font-family: var(--serif);
  font-size: 28px;
}

.vl-drawer,
.vl-search {
  position: fixed;
  z-index: 120;
  background: var(--paper);
  color: var(--ink);
  transform: translateX(-100%);
  transition: transform .25s ease;
}
.vl-drawer {
  inset: 0 auto 0 0;
  width: min(420px, 92vw);
  padding: 22px;
}
.vl-drawer.is-open { transform: translateX(0); }
.vl-drawer-head,
.vl-search-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.vl-drawer-head img { width: 160px; }
.vl-drawer-head button,
.vl-search-head button {
  width: 38px;
  height: 38px;
  border: 0;
  background: transparent;
  font-size: 30px;
}
.vl-drawer-links {
  display: grid;
  gap: 2px;
  padding-top: 28px;
}
.vl-drawer-links a {
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  font-size: 18px;
}

.vl-search {
  inset: 0 0 auto;
  min-height: 360px;
  padding: 32px clamp(20px, 6vw, 90px);
  transform: translateY(-100%);
}
.vl-search.is-open { transform: translateY(0); }
.vl-search input {
  width: 100%;
  min-height: 72px;
  margin: 34px 0 18px;
  border: 0;
  border-bottom: 1px solid var(--ink);
  background: transparent;
  font-family: var(--serif);
  font-size: clamp(32px, 6vw, 76px);
  outline: none;
}
.vl-search-results {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}
.vl-result {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 14px;
  align-items: center;
  padding: 12px;
  background: var(--white);
}
.vl-result img {
  width: 74px;
  aspect-ratio: 1;
  object-fit: cover;
}

.vl-scrim {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(0,0,0,.42);
}

.vl-hero {
  min-height: calc(100svh + 28px);
  position: relative;
  display: grid;
  place-items: end center;
  overflow: hidden;
  background: #111;
}
.vl-hero video,
.vl-hero img {
  position: absolute;
  left: 0;
  right: 0;
  top: 28px;
  bottom: 0;
  width: 100%;
  height: calc(100% - 28px);
  object-fit: cover;
}
.vl-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 28px;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.24), rgba(0,0,0,.08) 44%, rgba(0,0,0,.70));
}
.vl-hero-content {
  width: min(900px, calc(100% - 36px));
  position: relative;
  z-index: 2;
  color: var(--white);
  text-align: center;
  padding: 0 0 clamp(40px, 8vw, 88px);
}
.vl-kicker,
.vl-section-kicker {
  margin: 0;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.vl-hero h1,
.vl-page-title h1,
.vl-editorial h2,
.vl-band h2 {
  margin: 8px 0 18px;
  font-family: var(--serif);
  font-weight: 400;
  line-height: .95;
}
.vl-hero h1 { font-size: clamp(64px, 15vw, 190px); }
.vl-hero p:not(.vl-kicker) {
  width: min(680px, 100%);
  margin: 0 auto 24px;
  font-size: clamp(15px, 1.5vw, 19px);
  line-height: 1.55;
}
.vl-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 43px;
  padding: 0 28px;
  border: 1px solid currentColor;
  background: transparent;
  font-size: 11px;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.vl-button.dark {
  background: var(--accent);
  color: var(--hero-text);
  border-color: var(--accent);
}
.vl-button.dark:hover { background: var(--accent2); border-color: var(--accent2); }
/* hero CTA = filled accent (accent rengi belirgin görünür) */
.vl-hero-content .vl-button {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--hero-text);
}
.vl-hero-content .vl-button:hover { background: var(--accent2); border-color: var(--accent2); }
/* açık zeminlerdeki bölüm başlık etiketleri accent ile */
.vl-page-title .vl-section-kicker,
.vl-band .vl-section-kicker,
.vl-shop .vl-section-kicker { color: var(--accent); }

.vl-editorial-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}
.vl-editorial-card {
  min-height: min(700px, 68vw);
  position: relative;
  overflow: hidden;
  display: grid;
  align-items: end;
  padding: clamp(24px, 4vw, 54px);
  color: var(--white);
  background: #222;
}
.vl-editorial-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.vl-editorial-card:hover img { transform: scale(1.035); }
.vl-editorial-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,.66));
}
.vl-editorial-card > div {
  position: relative;
  z-index: 2;
}
.vl-editorial-card h2 {
  max-width: 620px;
  font-size: clamp(32px, 5vw, 76px);
}

.vl-page-title {
  padding: 170px clamp(18px, 4vw, 64px) 42px;
  text-align: center;
  background: var(--paper);
}
.vl-page-title h1 { font-size: clamp(46px, 8vw, 110px); }
.vl-page-title p {
  width: min(760px, 100%);
  margin: 0 auto;
  color: var(--muted);
  line-height: 1.6;
}

.vl-quick-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1px;
  padding: 24px clamp(18px, 4vw, 64px);
  background: var(--paper);
}
.vl-quick-links a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 18px;
  border: 1px solid var(--line);
  background: var(--white);
  font-size: 11px;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.vl-shop {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 34px;
  padding: 0 clamp(18px, 4vw, 64px) 86px;
}
.vl-filters {
  position: sticky;
  top: 122px;
  align-self: start;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.vl-filters h3 {
  margin: 0 0 12px;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.vl-filters label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 10px 0;
  color: var(--muted);
  font-size: 14px;
}
.vl-product-grid {
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.vl-product {
  min-width: 0;
  position: relative;
  background: var(--white);
}
.vl-product > a {
  display: block;
  aspect-ratio: 5 / 7;
  overflow: hidden;
  background: var(--paper);
}
.vl-product > a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.vl-product-info {
  min-height: 126px;
  padding: 15px;
  background: var(--paper);
}
.vl-product-info p {
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.vl-product-info h3 {
  min-height: 42px;
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: clamp(18px, 1.7vw, 23px);
  font-weight: 400;
  line-height: 1.15;
}
.vl-product-info span { color: var(--muted); font-size: 14px; }
.vl-wish {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.86);
  font-size: 21px;
}
.vl-wish.is-active {
  background: var(--ink);
  color: var(--white);
}

.vl-dg-row {
  position: relative;
  display: grid;
  background: var(--ink);
  color: var(--white);
  border-top: 1px solid var(--dark-line);
}
.vl-dg-row.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--dark-line);
}
.vl-dg-tile,
.vl-dg-row.hero-image {
  min-height: min(780px, 72vw);
  position: relative;
  overflow: hidden;
  display: grid;
  align-items: end;
  background: #111;
}
.vl-dg-row.hero-image {
  min-height: 92svh;
}
.vl-dg-row img,
.vl-dg-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.vl-dg-tile::after,
.vl-dg-row.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.04), rgba(0,0,0,.68));
}
.vl-dg-tile > div,
.vl-dg-row.hero-image > div {
  width: min(760px, calc(100% - 36px));
  position: relative;
  z-index: 2;
  margin: 0 auto;
  padding: 0 0 clamp(42px, 7vw, 92px);
  text-align: center;
}
.vl-dg-tile p,
.vl-dg-row.hero-image p {
  margin: 0 0 10px;
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.vl-dg-tile h2,
.vl-dg-row.hero-image h2 {
  margin: 0 0 22px;
  font-family: var(--serif);
  font-size: clamp(38px, 6vw, 98px);
  font-weight: 400;
  line-height: .98;
}
.vl-dg-tile span {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  border: 1px solid currentColor;
  padding: 0 28px;
  font-size: 11px;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.vl-page-title.compact { padding-top: 86px; }
.home-products { padding-top: 0; }

.vl-band {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  background: var(--ink);
  color: var(--white);
}
.vl-band > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 8vw, 110px) clamp(22px, 5vw, 78px);
}
.vl-band h2 { font-size: clamp(40px, 7vw, 96px); }
.vl-band p:not(.vl-section-kicker) {
  max-width: 560px;
  line-height: 1.65;
}
.vl-band img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.vl-content {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 160px 0 80px;
}
.vl-content h1 {
  font-family: var(--serif);
  font-size: clamp(44px, 7vw, 100px);
  font-weight: 400;
  line-height: 1;
  text-align: center;
}
.vl-content-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 5vw, 70px);
  margin-top: 40px;
}
.vl-content-card {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
}
.vl-content-card h2 {
  margin-top: 0;
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
}
.vl-content-card p,
.vl-content li {
  color: var(--muted);
  line-height: 1.75;
}
.vl-legal-content {
  width: min(980px, calc(100% - 36px));
}
.vl-legal-doc {
  display: grid;
  gap: 18px;
  margin-top: 38px;
}
.vl-legal-section {
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--line);
  background: var(--paper);
}
.vl-legal-section h2 {
  margin: 0 0 14px;
  font-family: var(--serif);
  font-size: clamp(28px, 3.3vw, 42px);
  font-weight: 400;
  line-height: 1.08;
}
.vl-legal-section p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.8;
}
.vl-form {
  display: grid;
  gap: 12px;
}
.vl-form input,
.vl-form textarea,
.vl-form select {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 0 14px;
}
.vl-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
}
.vl-form-note {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}
.vl-filter-clear {
  width: 100%;
  min-height: 40px;
  margin-top: 16px;
  border: 1px solid var(--line);
  background: var(--white);
  font-size: 11px;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.vl-empty {
  grid-column: 1 / -1;
  min-height: 220px;
  display: grid;
  place-items: center;
  background: var(--white);
  color: var(--muted);
  text-align: center;
  padding: 28px;
}
.vl-empty.page {
  border: 1px solid var(--line);
}
.centered { text-align: center; }
.vl-content-intro {
  max-width: 760px;
  margin: 0 auto;
  color: var(--muted);
  line-height: 1.7;
  text-align: center;
}
.vl-size-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 34px;
}
.vl-size-table td {
  padding: 16px;
  border-bottom: 1px solid var(--line);
}

.vl-atelier-story,
.vl-contact-layout,
.vl-account-grid,
.vl-product-detail {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto 54px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 5vw, 70px);
}
.vl-atelier-story {
  align-items: center;
  padding: 0 0 34px;
}
.vl-atelier-story img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.vl-atelier-story h2 {
  margin: 12px 0 16px;
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 82px);
  font-weight: 400;
  line-height: 1;
}
.vl-atelier-story p:not(.vl-section-kicker) {
  color: var(--muted);
  line-height: 1.75;
}
.vl-atelier-process {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto 64px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}
.vl-atelier-process article {
  min-width: 0;
  background: var(--paper);
  padding: clamp(22px, 3vw, 34px);
}
.vl-atelier-process span {
  display: block;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: .16em;
}
.vl-atelier-process h3 {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: clamp(24px, 2.4vw, 36px);
  font-weight: 400;
  line-height: 1.05;
}
.vl-atelier-process p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.vl-product-detail {
  padding-top: 150px;
  align-items: start;
}
.vl-product-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.vl-product-gallery img {
  width: 100%;
  aspect-ratio: 4 / 5.6;
  object-fit: cover;
  background: #e7e0d6;
}
.vl-product-summary {
  position: sticky;
  top: 128px;
  display: grid;
  gap: 18px;
}
.vl-product-summary h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 80px);
  font-weight: 400;
  line-height: 1;
}
.vl-product-summary h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
}
.vl-product-summary p {
  color: var(--muted);
  line-height: 1.65;
}
.vl-size-picker {
  display: grid;
  gap: 10px;
}
.vl-size-picker span {
  font-size: 11px;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.vl-size-picker div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.vl-size-picker button,
.vl-cart-actions button {
  min-width: 46px;
  min-height: 42px;
  border: 1px solid var(--line);
  background: var(--white);
}
.vl-size-picker button.is-selected {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.wishlist-grid { margin-top: 34px; }

.vl-contact-card p a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.vl-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.vl-contact-form h2 { margin-bottom: 4px; }
.vl-success {
  margin: 24px 0;
  padding: 24px;
  border: 1px solid rgba(34, 197, 94, .35);
  background: rgba(34, 197, 94, .1);
}
.vl-success h2 { margin-top: 0; }
.vl-form textarea {
  min-height: 130px;
  padding-top: 12px;
}

.vl-cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 30px;
}
.vl-cart-row {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.vl-cart-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}
.vl-cart-row img {
  width: 92px;
  aspect-ratio: 1;
  object-fit: cover;
}

.vl-footer {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: clamp(22px, 4vw, 50px);
  position: relative;
  z-index: 1;
  clear: both;
  padding: 58px clamp(20px, 5vw, 76px) 72px;
  background: var(--ink);
  color: var(--white);
}
.vl-footer > div { min-width: 0; }
.vl-footer img {
  width: min(190px, 100%);
  margin-bottom: 16px;
  filter: invert(1);
}
.vl-footer p {
  margin: 0 0 12px;
  color: rgba(255,255,255,.72);
}
.vl-footer-bottom {
  grid-column: 1 / -1;
  padding-top: 26px;
  border-top: 1px solid var(--dark-line);
  color: rgba(255,255,255,.58);
  font-size: 12px;
}
.vl-footer h3 {
  margin: 0 0 14px;
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.vl-footer a,
.vl-footer span {
  display: block;
  margin: 9px 0;
  color: rgba(255,255,255,.72);
  font-size: 14px;
  line-height: 1.55;
}

@media (max-width: 1180px) {
  .vl-header-row {
    grid-template-columns: 48px 1fr auto;
    padding: 0 18px;
  }
  .vl-menu-button { display: block; }
  .vl-primary-nav { display: none; }
  .vl-logo { justify-self: center; }
  .vl-utility-nav a, .vl-utility-nav button { font-size: 10px; }
  .vl-product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 960px) {
  .vl-header-row {
    height: 68px;
    grid-template-columns: 48px 1fr auto;
    padding: 0 14px;
  }
  .vl-logo { justify-self: center; width: 180px; }
  .vl-utility-nav { gap: 8px; }
  .vl-utility-nav a:nth-child(2),
  .vl-utility-nav a:nth-child(3),
  .vl-utility-nav a:nth-child(4),
  .vl-utility-nav button { display: none; }
  .vl-shop,
  .vl-band,
  .vl-dg-row.two,
  .vl-atelier-story,
  .vl-atelier-process,
  .vl-contact-layout,
  .vl-account-grid,
  .vl-product-detail,
  .vl-content-grid,
  .vl-cart-layout,
  .vl-footer { grid-template-columns: 1fr; }
  .vl-product-summary { position: static; }
  .vl-product-gallery { grid-template-columns: 1fr; }
  .vl-filters { position: static; }
  .vl-editorial-grid { grid-template-columns: 1fr; }
  .vl-editorial-card { min-height: 72svh; }
  .vl-product-grid,
  .vl-search-results { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 560px) {
  .vl-announcement { height: 34px; padding: 0 10px; text-align: center; }
  .vl-hero h1 { font-size: clamp(54px, 18vw, 86px); }
  .vl-hero-content { padding-bottom: 44px; }
  .vl-page-title { padding-top: 138px; }
  .vl-shop { padding-inline: 12px; }
  .vl-product-grid,
  .vl-search-results { grid-template-columns: 1fr; }
  .vl-content { width: calc(100% - 24px); }
  .vl-footer { padding-inline: 20px; }
  .vl-footer img { width: 150px; }
  .vl-cart-row { grid-template-columns: 76px 1fr; }
  .vl-cart-actions { grid-column: 1 / -1; justify-content: flex-start; }
}
