:root {
  --vg-ink:#24272a;
  --vg-ink2:#34393c;
  --vg-paper:#fff;
  --vg-cream:#f5f0e8;
  --vg-cream2:#ebe2d4;
  --vg-gold:#986823;
  --vg-gold-dark:#7e5419;
  --vg-gold-light:#e5c58e;
  --vg-muted:#5b6164;
  --vg-line:#ded8ce;
  --vg-max:1240px;
}
#preview-content.vg-page {
  padding: 0;
  background: #fff;
  color: var(--vg-ink);
}
.vg-page * {
  box-sizing: border-box;
}
.vg-wrap {
  width: min(var(--vg-max), calc(100% - 36px));
  margin-inline: auto;
}
.vg-section {
  padding: 64px 0;
  position: relative;
}
.vg-section--cream {
  background: var(--vg-cream);
}
.vg-section--dark {
  background: var(--vg-ink);
  color: #fff;
}
.vg-section--soft {
  background: #faf8f4;
}
.vg-eyebrow {
  margin: 0 0 12px;
  color: var(--vg-gold-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.vg-section--dark .vg-eyebrow {
  color: var(--vg-gold-light);
}
.vg-h2 {
  font-family:
    Georgia,
    "Times New Roman",
    serif;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.02;
  letter-spacing: -.035em;
  margin: 0 0 22px;
  max-width: 15ch;
}
.vg-h2--wide {
  max-width: 20ch;
}
.vg-h3 {
  font-size: 21px;
  line-height: 1.25;
  margin: 0 0 10px;
}
.vg-lead {
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.55;
  max-width: 760px;
  margin: 0;
  color: #3f4548;
}
.vg-section--dark .vg-lead {
  color: #e7e2da;
}
.vg-copy {
  font-size: 16.5px;
  line-height: 1.78;
  color: #3d4346;
}
.vg-copy p {
  margin: 0 0 18px;
}
.vg-copy p:last-child {
  margin-bottom: 0;
}
.vg-section--dark .vg-copy {
  color: #e8e5df;
}
.vg-copy a,
.vg-textlink {
  color: var(--vg-gold-dark);
  font-weight: 750;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.vg-section--dark .vg-copy a,
.vg-section--dark .vg-textlink {
  color: var(--vg-gold-light);
}
.vg-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}
.vg-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
  border: 1px solid transparent;
  transition: transform .15s ease, background .15s ease;
}
.vg-btn:hover {
  transform: translateY(-1px);
}
.vg-btn--gold {
  background: var(--vg-gold);
  color: #fff;
}
.vg-btn--dark {
  background: var(--vg-ink);
  color: #fff;
}
.vg-btn--light {
  background: #fff;
  color: var(--vg-ink);
  border-color: #fff;
}
.vg-btn--line {
  background: transparent;
  color: var(--vg-ink);
  border-color: #a9a095;
}
.vg-section--dark .vg-btn--line {
  color: #fff;
  border-color: #8b8f91;
}
.vg-hero .vg-btn--line {
  color: #fff;
  border-color: rgba(255, 255, 255, .62);
  background: rgba(255, 255, 255, .035);
}
.vg-hero .vg-btn--line:hover {
  background: rgba(255, 255, 255, .10);
}
.vg-hero {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  min-height: 620px;
  background: var(--vg-ink);
  color: #fff;
}
.vg-hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px max(36px, calc((100vw - var(--vg-max))/2)) 58px max(36px, calc((100vw - var(--vg-max))/2));
  padding-right: 48px;
  min-width: 0;
  overflow: hidden;
}
.vg-hero__copy .vg-eyebrow {
  color: var(--vg-gold-light);
}
.vg-hero h1 {
  font-family:
    Georgia,
    "Times New Roman",
    serif;
  font-size: clamp(48px, 4.9vw, 74px);
  line-height: .94;
  letter-spacing: -.043em;
  margin: 0 0 22px;
  max-width: none;
}
.vg-hero h1 span {
  display: block;
  white-space: nowrap;
}
.vg-hero p {
  font-size: 18px;
  line-height: 1.58;
  color: #ece8e1;
  max-width: 610px;
  margin: 0;
}
.vg-hero__image {
  position: relative;
  min-height: 500px;
  overflow: hidden;
}
.vg-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.vg-hero__badge {
  position: absolute;
  right: 20px;
  bottom: 20px;
  background: #fff;
  color: var(--vg-ink);
  padding: 14px 16px;
  max-width: 230px;
  border-left: 4px solid var(--vg-gold);
}
.vg-hero__badge strong {
  display: block;
  font-size: 15px;
  margin-bottom: 2px;
}
.vg-hero__badge span {
  font-size: 13px;
  line-height: 1.45;
  color: #555b5e;
}
.vg-quick {
  background: #fff;
  border-bottom: 1px solid #e7e3dc;
}
.vg-quick__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.vg-quick a {
  padding: 22px 20px;
  text-decoration: none;
  color: var(--vg-ink);
  border-right: 1px solid #e7e3dc;
}
.vg-quick a:last-child {
  border-right: 0;
}
.vg-quick small {
  display: block;
  color: var(--vg-gold-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.vg-quick strong {
  font-size: 15px;
  line-height: 1.35;
}
.vg-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 68px;
  align-items: start;
}
.vg-intro-media {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  grid-template-rows: 250px 250px;
  gap: 12px;
  position: sticky;
  top: 120px;
}
.vg-intro-media figure {
  margin: 0;
  overflow: hidden;
}
.vg-intro-media figure:first-child {
  grid-row: 1/3;
}
.vg-intro-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.vg-choice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 34px;
}
.vg-choice {
  padding: 25px;
  border: 1px solid var(--vg-line);
  background: #fff;
}
.vg-choice h3 {
  font-family:
    Georgia,
    "Times New Roman",
    serif;
  font-size: 28px;
  margin: 0 0 12px;
}
.vg-choice ul {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}
.vg-choice li {
  padding: 8px 0 8px 22px;
  position: relative;
  border-top: 1px solid #eee8df;
}
.vg-choice li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--vg-gold);
}
.vg-electric-grid {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: 48px;
  align-items: center;
}
.vg-video {
  background: #141617;
  overflow: hidden;
  min-height: 430px;
  position: relative;
}
.vg-video video {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  display: block;
}
.vg-techline {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 28px;
  border-top: 1px solid #5b5f61;
  border-bottom: 1px solid #5b5f61;
}
.vg-techline span {
  padding: 13px 16px 13px 0;
  margin-right: 24px;
  color: var(--vg-gold-light);
  font-weight: 850;
  letter-spacing: .04em;
}
.vg-viewer-head {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 32px;
}
.vg-viewer-frame {
  background: #f4f5f6;
  border: 1px solid #d8dcdf;
  box-shadow: 0 18px 48px rgba(33, 37, 39, .11);
  overflow: hidden;
}
.vg-viewer-frame iframe {
  width: 100%;
  height: 760px;
  border: 0;
  display: block;
  background: #f4f5f6;
}
.vg-fabric-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.vg-fabric-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid #6a6e70;
  margin-top: 26px;
}
.vg-fabric-list a {
  color: #fff;
  text-decoration: none;
  padding: 18px 18px 18px 0;
  border-bottom: 1px solid #626668;
}
.vg-fabric-list a:nth-child(odd) {
  border-right: 1px solid #626668;
  padding-right: 24px;
}
.vg-fabric-list a:nth-child(even) {
  padding-left: 24px;
}
.vg-fabric-list strong {
  display: block;
  color: var(--vg-gold-light);
  font-size: 15px;
  margin-bottom: 4px;
}
.vg-fabric-list span {
  font-size: 13px;
  line-height: 1.45;
  color: #d9d7d2;
}
.vg-fabric-showcase {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.vg-fabric-fan {
  position: relative;
  width: min(100%, 590px);
  height: 500px;
  margin-inline: auto;
}
.vg-fabric-swatch {
  position: absolute;
  left: 50%;
  bottom: 74px;
  width: 176px;
  height: 318px;
  margin: 0;
  overflow: hidden;
  transform-origin: 50% 94%;
  box-shadow: 0 16px 34px rgba(0, 0, 0, .22);
  clip-path: polygon(0 4%, 4% 0, 8% 4%, 12% 0, 16% 4%, 20% 0, 24% 4%, 28% 0, 32% 4%, 36% 0, 40% 4%, 44% 0, 48% 4%, 52% 0, 56% 4%, 60% 0, 64% 4%, 68% 0, 72% 4%, 76% 0, 80% 4%, 84% 0, 88% 4%, 92% 0, 96% 4%, 100% 0, 100% 96%, 96% 100%, 92% 96%, 88% 100%, 84% 96%, 80% 100%, 76% 96%, 72% 100%, 68% 96%, 64% 100%, 60% 96%, 56% 100%, 52% 96%, 48% 100%, 44% 96%, 40% 100%, 36% 96%, 32% 100%, 28% 96%, 24% 100%, 20% 96%, 16% 100%, 12% 96%, 8% 100%, 4% 96%, 0 100%);
}
.vg-fabric-swatch img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.vg-fabric-swatch--1 {
  transform: translateX(-50%) translate(-108px, 28px) rotate(-27deg);
  z-index: 1;
}
.vg-fabric-swatch--2 {
  transform: translateX(-50%) translate(-84px, 18px) rotate(-20deg);
  z-index: 2;
}
.vg-fabric-swatch--3 {
  transform: translateX(-50%) translate(-60px, 10px) rotate(-14deg);
  z-index: 3;
}
.vg-fabric-swatch--4 {
  transform: translateX(-50%) translate(-32px, 4px) rotate(-7deg);
  z-index: 4;
}
.vg-fabric-swatch--5 {
  transform: translateX(-50%) rotate(0deg);
  z-index: 5;
}
.vg-fabric-swatch--6 {
  transform: translateX(-50%) translate(32px, 4px) rotate(7deg);
  z-index: 6;
}
.vg-fabric-swatch--7 {
  transform: translateX(-50%) translate(60px, 10px) rotate(14deg);
  z-index: 7;
}
.vg-fabric-swatch--8 {
  transform: translateX(-50%) translate(84px, 18px) rotate(20deg);
  z-index: 8;
}
.vg-fabric-swatch--9 {
  transform: translateX(-50%) translate(108px, 28px) rotate(27deg);
  z-index: 9;
}
.vg-fabric-fan__pin {
  position: absolute;
  left: 50%;
  bottom: 59px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--vg-gold-light);
  border: 5px solid var(--vg-ink);
  box-shadow: 0 0 0 1px rgba(229, 197, 142, .55);
  transform: translateX(-50%);
  z-index: 15;
}
.vg-fabric-showcase__caption {
  max-width: 480px;
  margin: 0 auto;
  color: #d9d7d2;
  font-size: 13px;
  line-height: 1.55;
  text-align: center;
}
.vg-details-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 34px;
}
.vg-detail {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--vg-line);
}
.vg-detail b {
  display: block;
  color: var(--vg-gold-dark);
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 7px;
}
.vg-detail strong {
  display: block;
  font-size: 18px;
  margin-bottom: 8px;
}
.vg-detail p {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  color: #565d60;
}
.vg-editorial {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 0;
  background: #fff;
  border: 1px solid var(--vg-line);
}
.vg-editorial__media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 540px;
}
.vg-editorial__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.vg-editorial__copy {
  padding: 54px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.vg-editorial__copy h2 {
  max-width: 11ch;
}
.vg-scale-grid {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 48px;
  align-items: center;
}
.vg-scale-image {
  position: relative;
}
.vg-scale-image img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.vg-scale-note {
  position: absolute;
  left: 20px;
  bottom: 20px;
  background: #fff;
  padding: 14px 16px;
  max-width: 260px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, .12);
}
.vg-scale-note strong {
  display: block;
  font-size: 15px;
}
.vg-scale-note span {
  font-size: 13px;
  color: #565d60;
}
.vg-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 34px;
}
.vg-service {
  background: #fff;
  border: 1px solid var(--vg-line);
  padding: 28px;
  display: flex;
  flex-direction: column;
}
.vg-service .num {
  font-family:
    Georgia,
    "Times New Roman",
    serif;
  font-size: 46px;
  color: var(--vg-gold);
  line-height: 1;
  margin-bottom: 20px;
}
.vg-service p {
  color: #565d60;
  line-height: 1.65;
  flex: 1;
}
.vg-service a {
  color: var(--vg-gold-dark);
  font-weight: 800;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.vg-gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 180px;
  gap: 10px;
  margin-top: 32px;
}
.vg-gallery figure {
  margin: 0;
  overflow: hidden;
  background: #e9e4dc;
}
.vg-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.vg-gallery figure:nth-child(1) {
  grid-column: span 7;
  grid-row: span 2;
}
.vg-gallery figure:nth-child(2) {
  grid-column: span 5;
  grid-row: span 2;
}
.vg-gallery figure:nth-child(3) {
  grid-column: span 4;
  grid-row: span 2;
}
.vg-gallery figure:nth-child(4) {
  grid-column: span 4;
  grid-row: span 2;
}
.vg-gallery figure:nth-child(5) {
  grid-column: span 4;
  grid-row: span 2;
}
.vg-gallery figure:nth-child(6) {
  grid-column: span 6;
  grid-row: span 2;
}
.vg-gallery figure:nth-child(7) {
  grid-column: span 6;
  grid-row: span 2;
}
.vg-story {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 72px;
  align-items: start;
}
.vg-story__side {
  position: sticky;
  top: 120px;
}
.vg-story__side img {
  width: 100%;
  height: auto;
  display: block;
  margin-top: 24px;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.vg-story__copy {
  columns: 2;
  column-gap: 42px;
}
.vg-story__copy p {
  break-inside: avoid;
}
.vg-faq {
  max-width: 920px;
}
.vg-faq details {
  border-top: 1px solid var(--vg-line);
}
.vg-faq details:last-child {
  border-bottom: 1px solid var(--vg-line);
}
.vg-faq summary {
  cursor: pointer;
  list-style: none;
  font-weight: 800;
  font-size: 18px;
  padding: 20px 42px 20px 0;
  position: relative;
}
.vg-faq summary::-webkit-details-marker {
  display: none;
}
.vg-faq summary:after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 16px;
  color: var(--vg-gold-dark);
  font-size: 28px;
  font-weight: 400;
}
.vg-faq details[open] summary:after {
  content: "–";
}
.vg-faq details p {
  margin: 0 0 22px;
  line-height: 1.7;
  color: #50575a;
  max-width: 800px;
}
.vg-final {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--vg-ink);
  color: #fff;
}
.vg-final__copy {
  padding: 62px max(36px, calc((100vw - var(--vg-max))/2)) 62px max(36px, calc((100vw - var(--vg-max))/2));
  padding-right: 56px;
}
.vg-final__image {
  min-height: 520px;
}
.vg-final__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.vg-final h2 {
  font-family:
    Georgia,
    "Times New Roman",
    serif;
  font-size: clamp(40px, 5vw, 66px);
  line-height: .98;
  letter-spacing: -.035em;
  margin: 0 0 20px;
  max-width: 11ch;
}
.vg-final p {
  color: #e8e4dd;
  font-size: 17px;
  line-height: 1.7;
  max-width: 570px;
}
.vg-note {
  padding: 16px 18px;
  background: #fff8ea;
  border-left: 4px solid var(--vg-gold);
  font-size: 14px;
  line-height: 1.6;
  color: #4e5356;
  margin-top: 22px;
}
.vg-section--dark .vg-note {
  background: #34383a;
  color: #f1eee9;
  border-left-color: var(--vg-gold-light);
}
@media (max-width: 1180px) and (min-width: 981px) {
  .vg-fabric-fan {
    height: 455px;
  }
  .vg-fabric-swatch {
    width: 156px;
    height: 286px;
    bottom: 72px;
  }
  .vg-fabric-swatch--1 {
    transform: translateX(-50%) translate(-88px, 24px) rotate(-26deg);
  }
  .vg-fabric-swatch--2 {
    transform: translateX(-50%) translate(-68px, 16px) rotate(-19deg);
  }
  .vg-fabric-swatch--3 {
    transform: translateX(-50%) translate(-48px, 9px) rotate(-13deg);
  }
  .vg-fabric-swatch--4 {
    transform: translateX(-50%) translate(-26px, 4px) rotate(-7deg);
  }
  .vg-fabric-swatch--5 {
    transform: translateX(-50%) rotate(0deg);
  }
  .vg-fabric-swatch--6 {
    transform: translateX(-50%) translate(26px, 4px) rotate(7deg);
  }
  .vg-fabric-swatch--7 {
    transform: translateX(-50%) translate(48px, 9px) rotate(13deg);
  }
  .vg-fabric-swatch--8 {
    transform: translateX(-50%) translate(68px, 16px) rotate(19deg);
  }
  .vg-fabric-swatch--9 {
    transform: translateX(-50%) translate(88px, 24px) rotate(26deg);
  }
  .vg-fabric-fan__pin {
    bottom: 58px;
  }
}
@media (max-width: 980px) {
  .vg-hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .vg-hero__copy {
    padding: 58px 28px 44px;
  }
  .vg-hero__image {
    min-height: 440px;
  }
  .vg-quick__grid {
    grid-template-columns: 1fr 1fr;
  }
  .vg-quick a:nth-child(2) {
    border-right: 0;
  }
  .vg-quick a:nth-child(-n+2) {
    border-bottom: 1px solid #e7e3dc;
  }
  .vg-intro-grid,
  .vg-electric-grid,
  .vg-fabric-grid,
  .vg-viewer-head,
  .vg-scale-grid,
  .vg-story {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .vg-intro-media,
  .vg-story__side {
    position: static;
  }
  .vg-viewer-frame iframe {
    height: 690px;
  }
  .vg-editorial {
    grid-template-columns: 1fr;
  }
  .vg-editorial__media {
    min-height: 440px;
  }
  .vg-details-grid {
    grid-template-columns: 1fr 1fr;
  }
  .vg-service-grid {
    grid-template-columns: 1fr;
  }
  .vg-story__copy {
    columns: 1;
  }
  .vg-final {
    grid-template-columns: 1fr;
  }
  .vg-final__copy {
    padding: 52px 28px;
  }
  .vg-final__image {
    min-height: 420px;
  }
}
@media (max-width: 680px) {
  .vg-wrap {
    width: min(100% - 26px, var(--vg-max));
  }
  .vg-section {
    padding: 48px 0;
  }
  .vg-hero__copy {
    padding: 48px 20px 38px;
  }
  .vg-hero h1 {
    font-size: 48px;
    max-width: none;
  }
  .vg-hero h1 span {
    white-space: normal;
  }
  .vg-hero p {
    font-size: 16px;
  }
  .vg-hero__image {
    min-height: 340px;
  }
  .vg-hero__badge {
    left: 12px;
    right: 12px;
    bottom: 12px;
    max-width: none;
  }
  .vg-quick__grid {
    grid-template-columns: 1fr;
  }
  .vg-quick a {
    border-right: 0;
    border-bottom: 1px solid #e7e3dc;
    padding: 16px 14px;
  }
  .vg-quick a:last-child {
    border-bottom: 0;
  }
  .vg-h2 {
    font-size: 38px;
  }
  .vg-lead {
    font-size: 18px;
  }
  .vg-copy {
    font-size: 16px;
    line-height: 1.72;
  }
  .vg-intro-media {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 250px 180px;
  }
  .vg-intro-media figure:first-child {
    grid-column: 1/3;
    grid-row: auto;
  }
  .vg-choice-grid {
    grid-template-columns: 1fr;
  }
  .vg-electric-grid {
    gap: 30px;
  }
  .vg-video,
  .vg-video video {
    min-height: 330px;
  }
  .vg-techline span {
    font-size: 14px;
    margin-right: 16px;
    padding-right: 0;
  }
  .vg-viewer-frame {
    margin-inline: -8px;
  }
  .vg-viewer-frame iframe {
    height: 620px;
  }
  .vg-fabric-list {
    grid-template-columns: 1fr;
  }
  .vg-fabric-list a:nth-child(odd) {
    border-right: 0;
    padding-right: 0;
  }
  .vg-fabric-list a:nth-child(even) {
    padding-left: 0;
  }
  .vg-fabric-fan {
    height: 340px;
    width: min(100%, 360px);
    overflow: visible;
  }
  .vg-fabric-swatch {
    width: 112px;
    height: 220px;
    bottom: 58px;
  }
  .vg-fabric-swatch--1 {
    transform: translateX(-50%) translate(-55px, 17px) rotate(-25deg);
  }
  .vg-fabric-swatch--2 {
    transform: translateX(-50%) translate(-43px, 11px) rotate(-19deg);
  }
  .vg-fabric-swatch--3 {
    transform: translateX(-50%) translate(-31px, 6px) rotate(-13deg);
  }
  .vg-fabric-swatch--4 {
    transform: translateX(-50%) translate(-17px, 2px) rotate(-6deg);
  }
  .vg-fabric-swatch--5 {
    transform: translateX(-50%) rotate(0deg);
  }
  .vg-fabric-swatch--6 {
    transform: translateX(-50%) translate(17px, 2px) rotate(6deg);
  }
  .vg-fabric-swatch--7 {
    transform: translateX(-50%) translate(31px, 6px) rotate(13deg);
  }
  .vg-fabric-swatch--8 {
    transform: translateX(-50%) translate(43px, 11px) rotate(19deg);
  }
  .vg-fabric-swatch--9 {
    transform: translateX(-50%) translate(55px, 17px) rotate(25deg);
  }
  .vg-fabric-fan__pin {
    bottom: 46px;
    width: 18px;
    height: 18px;
    border-width: 4px;
  }
  .vg-details-grid {
    grid-template-columns: 1fr;
  }
  .vg-editorial__media {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .vg-editorial__media img {
    aspect-ratio: 4/3;
  }
  .vg-editorial__copy {
    padding: 34px 24px;
  }
  .vg-scale-grid {
    gap: 28px;
  }
  .vg-service {
    padding: 22px;
  }
  .vg-gallery {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 165px;
  }
  .vg-gallery figure:nth-child(n) {
    grid-column: span 1;
    grid-row: span 1;
  }
  .vg-gallery figure:first-child {
    grid-column: 1/3;
    grid-row: span 2;
  }
  .vg-story__side img {
    aspect-ratio: 4/3;
  }
  .vg-faq summary {
    font-size: 16px;
  }
  .vg-final__copy {
    padding: 46px 20px;
  }
  .vg-final__image {
    min-height: 330px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .vg-btn {
    transition: none;
  }
  .vg-video video {
    display: none;
  }
  .vg-video {
    background: #1f2224 url(../inspiration/video/gallery-electric-vouw-poster.webp) center/cover no-repeat;
  }
}
.vg-detail h3 {
  display: block;
  font-size: 18px;
  line-height: 1.25;
  margin: 0 0 8px;
  color: var(--vg-ink);
  font-family: inherit;
}
.vg-seo-copy {
  max-width: 900px;
}
.vg-seo-grid .vg-detail,
.vg-room-section .vg-detail {
  min-height: 100%;
}
.vg-seo-grid .vg-detail p,
.vg-room-section .vg-detail p {
  margin-bottom: 12px;
}
.vg-seo-grid .vg-textlink,
.vg-room-section .vg-textlink {
  display: inline-block;
  margin-top: 4px;
}
.vg-room-section {
  border-top: 1px solid var(--vg-line);
}
@media (max-width: 374px) {
  .vg-fabric-fan {
    transform: scale(.92);
    transform-origin: center bottom;
  }
}
@media (min-width: 1051px) and (max-width: 1300px) {
  .vg-fabric-fan {
    transform: translateX(-8px);
  }
}
