:root {
  --vf-warm-white: #f5f1e8;
  --vf-surface: #fdf9f0;
  --vf-surface-low: #f7f3ea;
  --vf-peach: #efd7c7;
  --vf-sage: #afc2a9;
  --vf-rose: #c98a78;
  --vf-ochre: #c78a43;
  --vf-ochre-dark: #a86c3b;
  --vf-text: #2b2522;
  --vf-muted: #7a6c66;
  --vf-border: #e6ddd5;
  --vf-white: #fff;
  --vf-serif: "Cormorant Garamond", Georgia, serif;
  --vf-sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --vf-container: 1200px;
  --vf-wide: 1500px;
  --vf-gutter: clamp(20px, 4vw, 40px);
  --vf-section: clamp(70px, 9vw, 128px);
  --vf-radius: 6px;
  --vf-shadow: 0 20px 50px rgba(43, 37, 34, 0.08);
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--vf-warm-white);
  color: var(--vf-text);
  font-family: var(--vf-sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; height: auto; }

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

button,
input,
select,
textarea { font: inherit; }

:focus-visible {
  outline: 2px solid var(--vf-ochre);
  outline-offset: 4px;
}

.screen-reader-text,
.vf-skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}

.vf-skip-link:focus {
  z-index: 9999;
  top: 16px;
  left: 16px;
  width: auto;
  height: auto;
  clip: auto;
  padding: 12px 18px;
  background: var(--vf-text);
  color: var(--vf-warm-white);
}

h1,
h2,
h3,
h4 {
  margin: 0 0 0.4em;
  font-family: var(--vf-serif);
  font-weight: 400;
  line-height: 1.08;
}

h1 { font-size: clamp(3rem, 7vw, 6rem); }
h2 { font-size: clamp(2.3rem, 5vw, 4rem); }
h3 { font-size: clamp(1.55rem, 3vw, 2.25rem); }
p { margin: 0 0 1.2em; }

.vf-container {
  width: min(calc(100% - (var(--vf-gutter) * 2)), var(--vf-container));
  margin-inline: auto;
}

.vf-wide { width: min(calc(100% - (var(--vf-gutter) * 2)), var(--vf-wide)); }
.vf-narrow { max-width: 780px; }

.vf-main { overflow: hidden; }

.vf-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  padding: 18px var(--vf-gutter);
  transition: padding 260ms ease, background 260ms ease;
}

.vf-header.is-scrolled {
  padding-top: 10px;
  padding-bottom: 10px;
}

.vf-header__inner {
  width: min(100%, var(--vf-wide));
  min-height: 72px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: color-mix(in srgb, var(--vf-warm-white) 88%, transparent);
  border: 1px solid rgba(230, 221, 213, 0.85);
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(43, 37, 34, 0.06);
  backdrop-filter: blur(18px);
}

.vf-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.vf-brand__mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--vf-ochre);
  border-radius: 50%;
  color: var(--vf-ochre);
  font-family: var(--vf-serif);
  font-size: 1.15rem;
  font-style: italic;
}

.vf-brand__text {
  color: var(--vf-ochre-dark);
  font-family: var(--vf-serif);
  font-size: clamp(1.4rem, 2vw, 2rem);
  line-height: 1;
}

.custom-logo {
  max-height: 58px;
  width: auto;
}

.vf-nav__list,
.vf-footer__links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.5vw, 36px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.vf-nav__list .sub-menu,
.vf-header .wp-block-navigation,
.vf-header .wp-block-page-list {
  display: none !important;
}

.vf-nav a {
  color: var(--vf-muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.vf-nav a:hover,
.vf-nav .current-menu-item > a,
.vf-nav .current_page_item > a { color: var(--vf-ochre-dark); }

.vf-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--vf-border);
  border-radius: 50%;
  background: transparent;
  color: var(--vf-text);
  cursor: pointer;
}

.vf-menu-toggle span:not(.screen-reader-text) {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease;
}

.vf-menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3px) rotate(45deg); }
.vf-menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(-3px) rotate(-45deg); }

.vf-mobile-menu {
  width: min(calc(100% - 40px), 420px);
  margin: 12px auto 0;
  padding: 28px;
  border: 1px solid var(--vf-border);
  border-radius: 20px;
  background: var(--vf-surface);
  box-shadow: var(--vf-shadow);
}

.vf-mobile-menu nav {
  display: grid;
  gap: 18px;
}

.vf-mobile-menu a {
  font-family: var(--vf-serif);
  font-size: 2rem;
}

.vf-section {
  padding: var(--vf-section) 0;
  background: var(--vf-warm-white);
}

.vf-section--soft { background: var(--vf-surface-low); }
.vf-section--peach { background: color-mix(in srgb, var(--vf-peach) 50%, var(--vf-warm-white)); }
.vf-section--sage { background: color-mix(in srgb, var(--vf-sage) 24%, var(--vf-warm-white)); }
.vf-section--white { background: var(--vf-surface); }

.vf-section--cta {
  background: var(--vf-text);
  color: var(--vf-warm-white);
  text-align: center;
}

.vf-section-heading {
  max-width: 720px;
  margin: 0 auto clamp(36px, 6vw, 76px);
  text-align: center;
}

.vf-eyebrow {
  margin-bottom: 16px;
  color: var(--vf-ochre-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  line-height: 1.2;
  text-transform: uppercase;
}

.vf-lead {
  color: var(--vf-muted);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.7;
}

.vf-hero {
  position: relative;
  min-height: 760px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.vf-hero--home { min-height: 88vh; }
.vf-hero--image { min-height: 820px; }

.vf-hero-slider__slides,
.vf-hero-slide {
  position: absolute;
  inset: 0;
}

.vf-hero-slide {
  display: block;
  opacity: 0;
  transition: opacity 1400ms ease;
}

.vf-hero-slide.is-active {
  opacity: 1;
}

.vf-hero__image,
.vf-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vf-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.38));
}

.vf-hero__content {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 40px), 980px);
  margin: 0 auto;
  padding-top: 96px;
  color: var(--vf-white);
  text-align: center;
}

.vf-hero__content h1 { font-style: italic; }
.vf-hero__content .vf-eyebrow { color: rgba(255, 255, 255, 0.82); }
.vf-hero__content p { font-size: clamp(1rem, 2vw, 1.35rem); }
.vf-hero__content .vf-button { margin-top: 22px; }

.vf-page-hero {
  padding: clamp(150px, 18vw, 220px) 0 clamp(50px, 8vw, 90px);
  text-align: center;
}

.vf-button,
.wp-block-button__link,
button[type="submit"],
input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 16px 32px;
  border: 1px solid transparent;
  border-radius: var(--vf-radius);
  background: var(--vf-ochre);
  color: var(--vf-white);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.vf-button:hover,
button[type="submit"]:hover,
input[type="submit"]:hover {
  background: var(--vf-ochre-dark);
  transform: translateY(-1px);
}

.vf-button--secondary {
  background: transparent;
  border-color: var(--vf-ochre);
  color: var(--vf-text);
}

.vf-button--secondary:hover {
  background: var(--vf-peach);
  color: var(--vf-text);
}

.vf-image-strip {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  height: clamp(150px, 18vw, 260px);
}

.vf-image-strip figure { margin: 0; overflow: hidden; }
.vf-image-strip img,
.vf-image-strip .vf-placeholder,
.vf-image-strip .vf-fallback-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms ease;
}
.vf-image-strip figure:hover img { transform: scale(1.06); }

.vf-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(38px, 7vw, 96px);
  align-items: center;
}

.vf-split--wide { grid-template-columns: 7fr 5fr; }

.vf-portrait-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--vf-radius);
  box-shadow: var(--vf-shadow);
}

.vf-portrait-frame img,
.vf-portrait-frame .vf-placeholder,
.vf-portrait-frame .vf-fallback-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vf-prose {
  color: var(--vf-muted);
  font-size: 1.05rem;
}

.vf-service-grid,
.vf-feature-grid,
.vf-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 44px);
}

.vf-service-card,
.vf-feature,
.vf-card {
  position: relative;
  background: var(--vf-surface);
  border: 1px solid color-mix(in srgb, var(--vf-border) 80%, transparent);
  border-radius: var(--vf-radius);
  overflow: hidden;
}

.vf-service-card {
  display: block;
  border: 0;
  background: transparent;
}

.vf-service-card__image,
.vf-card__image {
  aspect-ratio: 3 / 4;
  margin-bottom: 24px;
  overflow: hidden;
  background: var(--vf-surface-low);
}

.vf-service-card__image img,
.vf-card__image img,
.vf-service-card__image .vf-placeholder,
.vf-card__image .vf-placeholder,
.vf-service-card__image .vf-fallback-image,
.vf-card__image .vf-fallback-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms ease;
}

.vf-service-card:hover img,
.vf-card:hover img { transform: scale(1.05); }

.vf-service-card h3,
.vf-card h3 { margin-bottom: 6px; }

.vf-service-card p,
.vf-card p { color: var(--vf-muted); }

.vf-feature {
  min-height: 230px;
  padding: clamp(28px, 4vw, 44px);
  transition: background 220ms ease, transform 220ms ease;
}

.vf-feature:hover {
  background: var(--vf-peach);
  transform: translateY(-2px);
}

.vf-feature__mark {
  display: block;
  width: 36px;
  height: 1px;
  margin-bottom: 28px;
  background: var(--vf-ochre);
}

.vf-feature p { color: var(--vf-muted); }

.vf-featured {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: clamp(32px, 6vw, 72px);
  align-items: start;
}

.vf-featured__large .vf-card__image { aspect-ratio: 4 / 5; }
.vf-featured__side { display: grid; gap: clamp(32px, 5vw, 72px); }
.vf-featured__side .vf-card__image { aspect-ratio: 4 / 3; }

.vf-masonry {
  column-count: 3;
  column-gap: clamp(18px, 2.8vw, 34px);
}

.vf-masonry figure {
  margin: 0 0 clamp(18px, 2.8vw, 34px);
  break-inside: avoid;
  overflow: hidden;
  background: var(--vf-surface-low);
}

.vf-masonry img,
.vf-masonry .vf-placeholder,
.vf-masonry .vf-fallback-image {
  width: 100%;
  min-height: 260px;
  object-fit: cover;
  transition: transform 700ms ease, filter 700ms ease;
}

.vf-masonry a:hover img,
.vf-masonry figure:hover img { transform: scale(1.035); }

.vf-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 34px;
  margin: 0 0 56px;
  padding: 0 0 24px;
  border-bottom: 1px solid var(--vf-border);
}

.vf-filter a {
  color: var(--vf-muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.vf-filter a[aria-current="page"],
.vf-filter a:hover { color: var(--vf-ochre-dark); }

.vf-stitch-portfolio {
  padding: clamp(130px, 15vw, 180px) 0 clamp(80px, 10vw, 140px);
  background: var(--vf-surface);
}

.vf-stitch-portfolio__header {
  width: min(calc(100% - 40px), 720px);
  margin: 0 auto clamp(50px, 7vw, 88px);
  text-align: center;
}

.vf-stitch-portfolio__header h1 {
  margin-bottom: 18px;
  font-size: clamp(4rem, 9vw, 7.2rem);
  font-style: italic;
}

.vf-stitch-portfolio__header p {
  margin-inline: auto;
  color: var(--vf-muted);
  font-size: 0.95rem;
  line-height: 1.8;
}

.vf-filter--stitch {
  margin-bottom: clamp(42px, 6vw, 76px);
  gap: 18px clamp(28px, 5vw, 64px);
}

.vf-filter--stitch a {
  font-size: 0.62rem;
  letter-spacing: 0.28em;
}

.vf-stitch-masonry {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 3.8vw, 52px);
  align-items: start;
}

.vf-stitch-masonry__item {
  margin: 0;
  break-inside: avoid;
}

.vf-stitch-masonry__item:nth-child(3n + 2) { margin-top: clamp(44px, 7vw, 100px); }
.vf-stitch-masonry__item:nth-child(3n) { margin-top: clamp(14px, 4vw, 52px); }

.vf-stitch-masonry__item a,
.vf-stitch-masonry__item img {
  display: block;
}

.vf-stitch-masonry__item img {
  width: 100%;
  height: auto;
  min-height: 260px;
  object-fit: cover;
  filter: grayscale(1);
  transition: filter 700ms ease, transform 700ms ease;
}

.vf-stitch-masonry__item--1 img,
.vf-stitch-masonry__item--5 img { aspect-ratio: 2 / 3; }
.vf-stitch-masonry__item--2 img,
.vf-stitch-masonry__item--6 img { aspect-ratio: 4 / 3; }
.vf-stitch-masonry__item--3 img { aspect-ratio: 3 / 5; }
.vf-stitch-masonry__item--4 img { aspect-ratio: 1 / 1; }

.vf-stitch-masonry__item:hover img {
  filter: grayscale(0);
  transform: scale(1.025);
}

.vf-stitch-masonry figcaption {
  margin-top: 14px;
  opacity: 0;
  transition: opacity 300ms ease;
}

.vf-stitch-masonry__item:hover figcaption { opacity: 1; }

.vf-stitch-masonry figcaption h3 {
  margin: 0;
  font-size: clamp(1.4rem, 2vw, 2rem);
  font-style: italic;
}

.vf-stitch-services-hero {
  padding: clamp(170px, 20vw, 260px) 0 clamp(110px, 16vw, 190px);
  background: var(--vf-warm-white);
  text-align: center;
}

.vf-stitch-services-hero h1 {
  font-size: clamp(4rem, 9vw, 7.4rem);
}

.vf-stitch-services {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 54px);
  align-items: start;
}

.vf-stitch-service-card {
  display: block;
  grid-column: span 4;
}

.vf-stitch-service-card--1,
.vf-stitch-service-card--4 { grid-column: span 5; }
.vf-stitch-service-card--2,
.vf-stitch-service-card--5 { margin-top: clamp(42px, 7vw, 94px); }
.vf-stitch-service-card--3,
.vf-stitch-service-card--6 { grid-column: span 3; }

.vf-stitch-service-card .vf-service-card__image {
  aspect-ratio: 4 / 5;
  margin-bottom: 22px;
  box-shadow: var(--vf-shadow);
}

.vf-stitch-service-card--2 .vf-service-card__image,
.vf-stitch-service-card--5 .vf-service-card__image { aspect-ratio: 1 / 1; }

.vf-stitch-service-card h3 {
  margin-bottom: 10px;
  font-size: clamp(2rem, 3vw, 3rem);
}

.vf-stitch-service-card p {
  max-width: 32ch;
  color: var(--vf-muted);
}

.vf-stitch-service-intro .vf-split {
  grid-template-columns: 6fr 5fr;
}

.vf-stitch-polaroid {
  width: min(100%, 430px);
  justify-self: end;
  padding: clamp(14px, 2vw, 22px);
  background: var(--vf-surface);
  box-shadow: 0 22px 50px rgba(43, 37, 34, 0.12);
  transform: rotate(2deg);
}

.vf-stitch-polaroid img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.vf-stitch-collage {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(14px, 2.5vw, 34px);
  align-items: center;
}

.vf-stitch-collage figure {
  margin: 0;
  overflow: hidden;
}

.vf-stitch-collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vf-stitch-collage__item--1 { grid-column: 1 / span 2; aspect-ratio: 1 / 1; }
.vf-stitch-collage__item--2 { grid-column: 3 / span 2; aspect-ratio: 1 / 1.18; }
.vf-stitch-collage__item--3 { grid-column: 5 / span 2; grid-row: span 2; aspect-ratio: 3 / 5; }
.vf-stitch-collage__item--4 { grid-column: 1 / span 2; aspect-ratio: 4 / 3; }
.vf-stitch-collage__item--5 { grid-column: 3 / span 2; aspect-ratio: 4 / 5; }

.vf-project-meta {
  display: grid;
  gap: 18px;
  padding: clamp(28px, 4vw, 44px);
  background: color-mix(in srgb, var(--vf-peach) 34%, var(--vf-warm-white));
  border: 1px solid var(--vf-border);
}

.vf-project-meta span {
  display: block;
  color: var(--vf-muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.vf-process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--vf-border);
  border: 1px solid var(--vf-border);
}

.vf-process article {
  padding: clamp(26px, 4vw, 42px);
  background: var(--vf-warm-white);
}

.vf-process span {
  display: block;
  margin-bottom: 36px;
  color: var(--vf-ochre-dark);
  font-weight: 800;
  letter-spacing: 0.2em;
}

.vf-accordion {
  border-top: 1px solid var(--vf-border);
}

.vf-accordion details {
  border-bottom: 1px solid var(--vf-border);
}

.vf-accordion summary {
  cursor: pointer;
  padding: 24px 0;
  color: var(--vf-text);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  list-style: none;
}

.vf-accordion summary::-webkit-details-marker { display: none; }
.vf-accordion details div { color: var(--vf-muted); padding-bottom: 26px; }

.vf-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.vf-stats strong {
  display: block;
  color: var(--vf-ochre-dark);
  font-family: var(--vf-serif);
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 400;
}

.vf-stats span {
  color: var(--vf-muted);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.vf-testimonial {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.vf-testimonial blockquote {
  margin: 0;
  color: var(--vf-text);
  font-family: var(--vf-serif);
  font-size: clamp(2rem, 5vw, 4.6rem);
  font-style: italic;
  line-height: 1.08;
}

.vf-testimonial cite {
  display: block;
  margin-top: 30px;
  color: var(--vf-muted);
  font-style: normal;
}

.vf-form {
  display: grid;
  gap: 28px;
}

.vf-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 42px;
}

.vf-field label {
  display: block;
  margin-bottom: 8px;
  color: var(--vf-ochre-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.vf-field input,
.vf-field select,
.vf-field textarea,
.wpcf7 input,
.wpcf7 select,
.wpcf7 textarea {
  width: 100%;
  min-height: 48px;
  padding: 10px 0;
  border: 0;
  border-bottom: 1px solid var(--vf-border);
  border-radius: 0;
  background: transparent;
  color: var(--vf-text);
}

.vf-field textarea,
.wpcf7 textarea { min-height: 140px; resize: vertical; }

.vf-contact-methods {
  display: grid;
  gap: 18px;
}

.vf-contact-methods a,
.vf-contact-methods div {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  align-items: center;
  padding: 16px;
  border-radius: 14px;
  transition: background 180ms ease;
}

.vf-contact-methods a:hover { background: var(--vf-surface-low); }

.vf-contact-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid var(--vf-border);
  border-radius: 50%;
  color: var(--vf-ochre-dark);
}

.vf-placeholder,
.vf-fallback-image {
  min-height: 220px;
  background:
    linear-gradient(135deg, rgba(239, 215, 199, 0.65), rgba(175, 194, 169, 0.45)),
    var(--vf-surface-low);
}

.vf-footer {
  padding: clamp(64px, 9vw, 110px) 0 32px;
  background: var(--vf-surface-low);
  border-top: 1px solid var(--vf-border);
}

.vf-footer__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 42px;
  align-items: start;
}

.vf-footer__brand p {
  max-width: 360px;
  color: var(--vf-muted);
}

.vf-footer__links {
  align-items: flex-start;
  flex-direction: column;
  gap: 12px;
}

.vf-footer a {
  color: var(--vf-muted);
  font-size: 0.82rem;
}

.vf-footer a:hover { color: var(--vf-ochre-dark); }

.vf-footer__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
}

.vf-footer__credit {
  width: min(calc(100% - (var(--vf-gutter) * 2)), var(--vf-container));
  margin: 48px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--vf-border);
  color: var(--vf-muted);
  font-size: 0.82rem;
}

.vf-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.vf-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.alignwide,
.alignfull { margin-left: calc(var(--vf-gutter) * -1); margin-right: calc(var(--vf-gutter) * -1); }
.wp-caption,
.gallery-caption { color: var(--vf-muted); font-size: 0.9rem; }
.bypostauthor { display: block; }

@media (max-width: 1100px) {
  .vf-nav { display: none; }
  .vf-menu-toggle { display: block; }
  .vf-featured,
  .vf-split,
  .vf-split--wide { grid-template-columns: 1fr; }
  .vf-stitch-masonry { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .vf-stitch-masonry__item:nth-child(n) { margin-top: 0; }
  .vf-stitch-services { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .vf-stitch-service-card,
  .vf-stitch-service-card--1,
  .vf-stitch-service-card--3,
  .vf-stitch-service-card--4,
  .vf-stitch-service-card--6 { grid-column: auto; }
  .vf-stitch-service-card:nth-child(n) { margin-top: 0; }
  .vf-stitch-service-intro .vf-split { grid-template-columns: 1fr; }
  .vf-stitch-polaroid { justify-self: start; }
  .vf-service-grid,
  .vf-feature-grid,
  .vf-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .vf-process { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .vf-header { padding: 10px 14px; }
  .vf-header__inner {
    min-height: 64px;
    padding: 0 14px;
  }
  .vf-brand__text { font-size: 1.35rem; }
  .vf-brand__mark { width: 38px; height: 38px; }
  .vf-hero,
  .vf-hero--home,
  .vf-hero--image { min-height: 640px; }
  .vf-hero__content { padding-top: 80px; }
  .vf-image-strip { grid-template-columns: repeat(4, 1fr); }
  .vf-image-strip figure:nth-child(n+5) { display: none; }
  .vf-service-grid,
  .vf-feature-grid,
  .vf-card-grid,
  .vf-stitch-masonry,
  .vf-stitch-services,
  .vf-process,
  .vf-form-grid,
  .vf-stats,
  .vf-footer__inner { grid-template-columns: 1fr; }
  .vf-stitch-masonry figcaption { opacity: 1; }
  .vf-stitch-collage { grid-template-columns: 1fr 1fr; }
  .vf-stitch-collage__item:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 4 / 5;
  }
  .vf-masonry { column-count: 1; }
  .vf-footer__meta { flex-direction: column; }
}

@media (min-width: 761px) and (max-width: 1100px) {
  .vf-masonry { column-count: 2; }
}
