: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(100px, 12vw, 180px);
  --vf-radius: 6px;
  --vf-shadow: 0 20px 50px rgba(43, 37, 34, 0.08);
  --vf-shadow-hover: 0 32px 64px rgba(43, 37, 34, 0.12);
}

*,
*::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(3.2rem, 9vw, 6.4rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2.5rem, 6vw, 4.4rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.7rem, 3.5vw, 2.5rem); }
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; }

/* --- Header & Navigation --- */
.vf-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(253, 250, 242, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(230, 221, 213, 0.3);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.vf-header__inner {
  max-width: var(--vf-container-max);
  margin: 0 auto;
  padding: 0 var(--vf-gutter);
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.vf-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--vf-text);
}

.vf-brand__logo-wrapper {
  max-width: 180px;
  height: auto;
  mix-blend-multiply: multiply;
}

.vf-nav {
  display: block;
}

.vf-nav__list {
  display: flex;
  list-style: none;
  gap: clamp(24px, 4vw, 48px);
  margin: 0;
  padding: 0;
  align-items: center;
}

.vf-nav__list a {
  text-decoration: none;
  color: var(--vf-muted);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: none;
  transition: color 0.3s ease;
  position: relative;
  padding: 10px 0;
}

.vf-nav__list li.is-active a {
  color: var(--vf-ochre-dark);
}

.vf-nav__list li.is-active a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--vf-ochre);
  transform: scaleX(1);
}

.vf-nav__list a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--vf-ochre);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.vf-nav__list a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.vf-header__actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.vf-header-cta {
  background: var(--vf-ochre-dark);
  color: var(--vf-white);
  padding: 12px 28px;
  border-radius: 2px;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  transition: all 0.3s ease;
}

.vf-header-cta:hover {
  background: var(--vf-text);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.vf-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.vf-menu-toggle span {
  display: block;
  width: 28px;
  height: 1.5px;
  background: var(--vf-text);
  transition: all 0.3s ease;
}

.vf-mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--vf-white);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.vf-mobile-menu:not([hidden]) {
  opacity: 1;
  visibility: visible;
}

.vf-mobile-nav-link {
  display: block;
  font-family: var(--vf-serif);
  font-size: 2.8rem;
  text-align: center;
  margin-bottom: 24px;
  color: var(--vf-text);
  text-decoration: none;
}

.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(rgba(0,0,0,0.35), rgba(0,0,0,0.45));
}

.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-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(32px, 5vw, 64px);
}

.vf-service-card {
  position: relative;
  background: var(--vf-white);
  border: 1px solid var(--vf-border);
  border-radius: var(--vf-radius);
  overflow: hidden;
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.vf-service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--vf-shadow-hover);
}

.vf-service-card__image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.vf-service-card__image::after {
  content: "Mehr erfahren \2192";
  position: absolute;
  inset: 0;
  background: rgba(43, 37, 34, 0.4);
  color: var(--vf-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 300ms ease;
}

.vf-service-card:hover .vf-service-card__image::after {
  opacity: 1;
}

.vf-service-card__content {
  padding: 40px;
  text-align: center;
}

.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-business-hero {
  position: relative;
  min-height: 820px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--vf-warm-white);
  text-align: center;
}

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

.vf-business-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(43, 37, 34, 0.22);
}

.vf-business-hero__content {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 40px), 820px);
  padding-top: 80px;
}

.vf-business-hero h1 {
  margin: 0;
  color: var(--vf-white);
  font-family: var(--vf-serif);
  font-size: clamp(3.5rem, 10vw, 7.5rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 0.85;
  text-transform: uppercase;
}

.vf-business-hero p {
  margin-top: 18px;
  margin-inline: auto;
  max-width: 720px;
  color: var(--vf-white);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.vf-business-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(44px, 8vw, 110px);
  align-items: center;
}

.vf-business-intro h2,
.vf-business-location h2,
.vf-business-cta h2 {
  font-size: clamp(2.8rem, 5.8vw, 5.2rem);
}

.vf-business-offset-image {
  position: relative;
  margin: 0;
}

.vf-business-offset-image::before {
  content: "";
  position: absolute;
  inset: auto -34px -34px auto;
  width: 82%;
  height: 82%;
  background: color-mix(in srgb, var(--vf-peach) 35%, transparent);
  z-index: 0;
}

.vf-business-offset-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.vf-business-bento {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.8vw, 34px);
}

.vf-business-bento__item {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 230px;
  padding: clamp(28px, 4vw, 46px);
  background: var(--vf-warm-white);
  transition: background 220ms ease;
}

.vf-feature__icon {
  display: block;
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  color: var(--vf-ochre-dark);
}

.vf-feature__icon svg {
  width: 100%;
  height: 100%;
}

.vf-icon-camera { background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%238b6d4d" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M23 19a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h4l2-3h6l2 3h4a2 2 0 0 1 2 2z"/><circle cx="12" cy="13" r="4"/></svg>'); }
.vf-icon-linkedin { background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%238b6d4d" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M16 8a6 6 0 0 1 6 6v7h-4v-7a2 2 0 0 0-2-2 2 2 0 0 0-2 2v7h-4v-7a6 6 0 0 1 6-6z"/><rect x="2" y="9" width="4" height="12"/><circle cx="4" cy="4" r="2"/></svg>'); }
.vf-icon-branding { background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%238b6d4d" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"/><path d="M12 2a14.5 14.5 0 0 0 0 20 14.5 14.5 0 0 0 0-20"/><path d="M2 12h20"/></svg>'); }
.vf-icon-heart { background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%238b6d4d" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M20.84 4.61a5.5 5.5 0 0 0-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 0 0-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 0 0 0-7.78z"/></svg>'); }
.vf-icon-sparkles { background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%238b6d4d" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m12 3-1.912 5.813a2 2 0 0 1-1.275 1.275L3 12l5.813 1.912a2 2 0 0 1 1.275 1.275L12 21l1.912-5.813a2 2 0 0 1 1.275-1.275L21 12l-5.813-1.912a2 2 0 0 1-1.275-1.275L12 3Z"/><path d="M5 3v4"/><path d="M3 5h4"/><path d="M21 17v4"/><path d="M19 19h4"/></svg>'); }
.vf-icon-studio { background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%238b6d4d" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M3 9l9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z"/><polyline points="9 22 9 12 15 12 15 22"/></svg>'); }

.vf-icon-dot::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--vf-ochre);
}

.vf-business-bento__item:hover { background: var(--vf-peach); }
.vf-business-bento__item--wide { grid-column: span 2; }

.vf-business-badge {
  position: absolute;
  top: 22px;
  right: 22px;
  padding: 7px 10px;
  background: var(--vf-ochre);
  color: var(--vf-white);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.vf-business-bento h3 {
  font-size: clamp(1.5rem, 2.2vw, 2rem);
}

.vf-business-bento p,
.vf-business-location p,
.vf-business-location li {
  color: var(--vf-muted);
}

.vf-business-location figure {
  margin: 0;
}

.vf-business-location img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.vf-business-location ul {
  display: grid;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.vf-business-location li::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 12px;
  border-radius: 50%;
  background: var(--vf-ochre);
  vertical-align: middle;
}

.vf-business-portfolio {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.8vw, 32px);
}

.vf-business-portfolio a {
  display: block;
  overflow: hidden;
  background: var(--vf-surface-low);
}

.vf-business-portfolio img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 700ms ease;
}

.vf-business-portfolio a:hover img { transform: scale(1.04); }

.vf-business-pricing {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  margin-top: 64px;
}

.vf-business-pricing article {
  display: flex;
  flex-direction: column;
  padding: 64px 42px;
  background: var(--vf-white);
  border: 1px solid var(--vf-border);
  text-align: center;
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.vf-business-pricing article:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.06);
}

.vf-business-pricing article.is-featured {
  position: relative;
  border-color: var(--vf-ochre);
  background: var(--vf-surface-low);
  transform: scale(1.05);
  z-index: 2;
  box-shadow: 0 32px 64px rgba(43, 37, 34, 0.1);
}

.vf-business-pricing h3 {
  font-family: var(--vf-serif);
  font-size: clamp(2.2rem, 3.5vw, 3.8rem);
  font-weight: 400;
}

.vf-business-cta {
  padding: clamp(72px, 10vw, 128px) 0;
  background: var(--vf-ochre);
  color: var(--vf-white);
  text-align: center;
}

.vf-business-cta p {
  max-width: 650px;
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.86);
}

.vf-business-cta .vf-button {
  margin-top: 22px;
  background: var(--vf-surface);
  color: var(--vf-ochre-dark);
}

.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(1.8rem, 4.5vw, 4rem);
  font-style: italic;
  line-height: 1.15;
}

.vf-testimonial__meta {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.vf-testimonial__stars {
  color: var(--vf-ochre);
  font-size: 1.2rem;
  letter-spacing: 0.1em;
}

.vf-testimonial cite {
  display: block;
  color: var(--vf-muted);
  font-style: normal;
  font-weight: 700;
  font-size: 0.9rem;
}

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

.vf-trust-metrics {
  background: var(--vf-white);
  padding: 40px 0;
  border-y: 1px solid var(--vf-border);
}

.vf-trust-metrics__list {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 32px;
}

.vf-trust-metric {
  text-align: center;
}

.vf-trust-metric strong {
  display: block;
  font-family: var(--vf-serif);
  font-size: 2rem;
  color: var(--vf-ochre-dark);
}

.vf-trust-metric span {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--vf-muted);
}

.vf-instagram-feed {
  padding: var(--vf-section) 0;
  background: var(--vf-surface);
}

.vf-instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.vf-instagram-item {
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.vf-instagram-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.vf-instagram-item:hover img {
  transform: scale(1.08);
}

.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: sections fade in on scroll - threshold 0 ensures mobile works */
.vf-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

/* Critical: if JS disabled or fails, always show content */
@media (prefers-reduced-motion: reduce) {
  .vf-reveal { opacity: 1 !important; transform: none !important; }
}

.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: flex; }
  .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-business-split,
  .vf-business-bento,
  .vf-business-pricing { grid-template-columns: 1fr; }
  .vf-business-bento__item--wide { grid-column: auto; }
  .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)); }
}

/* ==========================================================================
   PREMIUM MOBILE RESPONSIVENESS (320px - 768px)
   Focus: Editorial Breathing, Typography & Spacing
   ========================================================================== */

/* 1. Global Safeguards */
html, body {
  overflow-x: hidden !important;
  position: relative;
  width: 100%;
}

* {
  box-sizing: border-box !important;
  max-width: 100%;
}

/* 2. Fluid Typography Foundation */
:root {
  --fluid-body: clamp(16px, 1vw + 12px, 17px);
  --fluid-h1: clamp(2.8rem, 9vw + 1rem, 6.4rem);
  --fluid-h2: clamp(2.2rem, 7vw + 1rem, 4.4rem);
  --fluid-h3: clamp(1.6rem, 4vw + 1rem, 2.5rem);
}

body { 
  font-size: var(--fluid-body); 
  line-height: 1.75 !important;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { 
  line-height: 1.15 !important; 
  margin-bottom: 0.6em !important;
}

p { 
  line-height: 1.65 !important; 
  margin-bottom: 1.4em !important;
}

/* 3. RESPONSIVE REFINEMENTS */

/* --- Tablet & Below (max-width: 1100px) --- */
@media (max-width: 1100px) {
  .vf-nav { display: none; }
  .vf-menu-toggle { display: flex; }
  
  .vf-split, .vf-split--wide, .vf-featured { grid-template-columns: 1fr !important; gap: 48px; }
  .vf-stitch-masonry { grid-template-columns: repeat(2, 1fr); }
  .vf-stitch-services { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}

/* --- Mobile Precision (max-width: 768px) --- */
@media (max-width: 768px) {
  :root {
    --vf-section: 64px;
    --vf-gutter: 20px;
  }

  .vf-section { padding: 64px 0 !important; }
  .vf-container, .px-6, .px-8, .px-10 { padding-left: 20px !important; padding-right: 20px !important; }

  /* Header Optimization */
  .vf-header__inner { height: 72px; padding: 0 20px; }
  .vf-brand__logo-wrapper { max-width: 140px; }

  /* Hero Mobile: Focus on Breathability */
  .vf-hero, .vf-hero--home, .vf-hero--image, .h-\[85vh\], .about-hero {
    height: 75vh !important;
    min-height: 540px !important;
    padding: 0 20px !important;
  }
  
  .hero-overlay {
    padding: 32px 20px !important;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.65) 100%) !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .vf-hero__content { 
    padding-top: 20px !important; 
    width: 100% !important;
    max-width: 480px;
    margin: 0 auto;
  }

  .vf-hero__content h1 { font-size: clamp(2.4rem, 8vw, 3.2rem) !important; margin-bottom: 20px !important; }
  .vf-hero__content p { font-size: 1.1rem !important; margin-bottom: 32px !important; letter-spacing: 0.05em !important; }

  /* Grid Stacking & Card Spacing */
  .vf-service-grid, 
  .vf-card-grid, 
  .vf-stitch-masonry, 
  .vf-stitch-services, 
  .vf-process, 
  .vf-form-grid, 
  .vf-stats, 
  .editorial-grid { 
    grid-template-columns: 1fr !important; 
    column-count: 1 !important;
    gap: 40px !important; /* Increased gap for better breathing */
  }

  .vf-service-card, .vf-card, .vf-stitch-service-card {
    padding: 24px !important;
    background: var(--vf-white) !important;
    margin-bottom: 8px;
  }

  /* Image & Media Consistency */
  img, .vf-service-card__image, .vf-card__image { 
    border-radius: 4px !important; 
    margin-bottom: 24px !important;
  }

  .vf-image-strip, .grid-cols-4, .md\:grid-cols-7 { 
    grid-template-columns: repeat(2, 1fr) !important; 
    height: auto !important; 
    gap: 12px !important;
    padding: 0 20px;
  }

  /* Values & Icons Stacking */
  .grid-cols-3, .md\:grid-cols-3 {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  /* Letter Spacing Audit */
  .tracking-widest, .uppercase {
    letter-spacing: 0.12em !important; /* Reduced to avoid overflow */
  }

  /* Portfolio & Testimonial Separation */
  .vf-testimonial {
    padding: 32px 24px !important;
    margin: 24px 0 !important;
  }
  .vf-testimonial blockquote { font-size: 1.5rem !important; line-height: 1.4 !important; }

  /* Testimonial Overlap Repair */
  .md\:-ml-24 { margin-left: 0 !important; }
  .mt-\[-40px\], .mt-\[-24px\], .mt-\[-20px\] { margin-top: 0 !important; }
  .md\:w-3\/5, .md\:w-5\/12 { width: 100% !important; }

  /* Button Repairs & CTA Spacing */
  .vf-button, .wp-block-button__link, .px-12.py-5, .px-10.py-4 {
    width: 100% !important;
    min-height: 58px !important;
    padding: 16px 24px !important;
    margin-top: 16px !important;
    justify-content: center !important;
    display: flex !important;
    font-size: 12px !important;
  }
  .flex-col.md\:flex-row { gap: 20px !important; }

  /* Footer Vertical Rhythm */
  footer, .vf-footer { 
    padding: 64px 20px 40px !important; 
    text-align: center !important;
  }
  .vf-footer__inner { flex-direction: column !important; gap: 48px !important; }
  .vf-footer__meta { flex-direction: column !important; align-items: center !important; gap: 24px !important; }
  .flex.gap-10 { justify-content: center !important; gap: 32px !important; }
}

/* --- Small Mobile Audit (max-width: 380px) --- */
@media (max-width: 380px) {
  :root { --fluid-h1: 2.2rem; --fluid-h2: 1.8rem; }
  .vf-hero, .h-\[85vh\] { height: 85vh !important; }
}

/* --- Animation Restoration --- */
@keyframes vf-fade-in-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-fadeIn {
  animation: vf-fade-in-up 0.8s ease forwards;
}

@keyframes scaleOut {
  from { transform: scale(1.1); }
  to { transform: scale(1); }
}

/* Helper Class Repairs */
.editorial-grid { column-gap: 30px; }
.masonry-item { break-inside: avoid; position: relative; overflow: hidden; }
.filter-chip { transition: all 0.4s ease; cursor: pointer; }
.filter-chip.is-active { background-color: var(--vf-ochre) !important; color: #fff !important; }
.editorial-overlay { background: linear-gradient(to top, rgba(43,37,34,0.8) 0%, transparent 100%); pointer-events: none; }

/* ==========================================================================
   PREMIUM EDITORIAL SERVICE PAGES
   ========================================================================== */

.vf-premium-service {
    overflow-x: hidden;
}

.vf-hero-premium h1 {
    line-height: 1;
    letter-spacing: -0.02em;
}

.vf-hero-premium p {
    letter-spacing: 0.3em;
}

.editorial-grid {
    column-count: 1;
    column-gap: 2.5rem;
}

@media (min-width: 768px) {
    .editorial-grid {
        column-count: 2;
    }
}

@media (min-width: 1024px) {
    .editorial-grid {
        column-count: 3;
    }
}

.masonry-item {
    break-inside: avoid;
    margin-bottom: 2.5rem;
}

/* REMOVED DUPLICATE - see primary vf-reveal definition above */

/* Custom Scroll Behavior for Details/Summary */
details summary::-webkit-details-marker {
    display: none;
}

details summary {
    position: relative;
    padding-right: 2rem;
    list-style: none;
}

details summary::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.4s ease;
}

details[open] summary::after {
    transform: translateY(-50%) rotate(45deg);
}

/* Animate Reveal for Hero */
@keyframes revealText {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-reveal {
    animation: revealText 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

/* Button Refinement */
.vf-button--secondary {
    background: transparent;
    border: 1px solid currentColor;
    color: var(--primary);
}

.vf-button--secondary:hover {
    background: var(--primary);
    color: white;
}

/* Mobile Adjustments for Premium Service */
@media (max-width: 768px) {
    /* Hero title: fluid, no overflow */
    .vf-hero-premium h1 {
        font-size: clamp(2.2rem, 10vw, 4rem) !important;
        letter-spacing: -0.02em !important;
        line-height: 1.1 !important;
        word-break: break-word !important;
        hyphens: auto !important;
        overflow-wrap: break-word !important;
    }
    
    /* Hero subtitle: reduce letter-spacing to prevent overflow */
    .vf-hero-premium p {
        font-size: 0.75rem !important;
        letter-spacing: 0.08em !important;
        line-height: 1.6 !important;
    }

    /* Hero min height reduced so CTA is reachable */
    .vf-hero-premium {
        min-height: 560px !important;
        height: 80vh !important;
    }

    /* Premium service section padding */
    .vf-premium-service .py-32 {
        padding-top: 4rem !important;
        padding-bottom: 4rem !important;
    }

    /* Grid layouts stack on mobile */
    .vf-premium-service .grid {
        grid-template-columns: 1fr !important;
    }

    /* Process steps: 2 columns on mobile instead of 4 */
    .vf-premium-service .md\:grid-cols-4 {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 2rem !important;
    }

    /* Experience cards padding */
    .vf-premium-service .p-12 {
        padding: 1.5rem !important;
    }

    /* Story section image aspect ratio */
    .vf-premium-service .aspect-\[4\/5\] {
        aspect-ratio: 4/3 !important;
    }

    /* Ensure sections are visible - fallback if observer hasn't fired */
    .vf-premium-service .vf-reveal {
        opacity: 0;
        animation: none;
    }
    .vf-premium-service .vf-reveal.is-visible {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Process Numbers Styling */
.vf-premium-service .text-peach\/30 {
    color: rgba(239, 215, 199, 0.4);
}

.vf-premium-service .text-7xl {
    font-size: 5rem;
}

/* Ensure Masonry handles images correctly */
.masonry-item img {
    display: block;
    width: 100%;
}


/* ==========================================================================
   PREMIUM EDITORIAL SINGLE PORTFOLIO & BLOG STYLES (VANILLA CSS ONLY)
   ========================================================================== */

.vf-editorial-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
}

.vf-editorial-intro-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
}

.vf-editorial-hero {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 480px;
    overflow: hidden;
    margin-bottom: 100px;
    border-radius: 4px;
}

.vf-editorial-hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vf-editorial-hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    text-align: center;
    padding: 48px 24px;
    box-sizing: border-box;
    color: #ffffff;
}

.vf-editorial-hero__category {
    font-family: 'EB Garamond', serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    margin-bottom: 12px;
    color: #ffffff;
}

.vf-editorial-hero__title {
    font-family: 'EB Garamond', serif;
    font-size: clamp(2rem, 6vw, 4rem);
    font-style: italic;
    line-height: 1.1;
    margin: 0 0 16px 0;
    color: #ffffff;
}

.vf-editorial-hero__meta {
    font-family: sans-serif;
    font-size: 14px;
    letter-spacing: 0.05em;
    opacity: 0.9;
    color: #ffffff;
}

.vf-editorial-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    margin-bottom: 80px;
    align-items: start;
}

@media (min-width: 1024px) {
    .vf-editorial-layout {
        grid-template-columns: 7fr 4fr;
    }
}

.vf-editorial-story {
    font-family: sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a4a;
}

.vf-editorial-story h2 {
    font-family: 'EB Garamond', serif;
    font-size: 32px;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.vf-editorial-card {
    background-color: rgba(239, 215, 199, 0.25);
    border: 1px solid #e6ddd5;
    border-radius: 8px;
    padding: 20px 24px;
    box-sizing: border-box;
}

.vf-editorial-card__title {
    font-family: sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: #c78a43;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 14px;
}

.vf-editorial-card__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vf-editorial-card__item {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 10px;
}

.vf-editorial-card__item:last-child {
    margin-bottom: 0;
}

.vf-editorial-card__label {
    font-family: sans-serif;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #8a8a8a;
}

.vf-editorial-card__value {
    font-family: sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #2b2522;
}

/* Premium CSS Masonry Gallery */
.vf-editorial-gallery {
    column-count: 1;
    column-gap: 18px;
    margin-bottom: 80px;
    padding: 0 20px;
}

@media (min-width: 768px) {
    .vf-editorial-gallery {
        column-count: 2;
        column-gap: 24px;
        padding: 0;
    }
}

@media (min-width: 1024px) {
    .vf-editorial-gallery {
        column-count: 3;
        column-gap: 24px;
    }
}

/* Show more items visibility */
.vf-item-mobile-hidden {
    display: none !important;
}

@media (min-width: 768px) {
    .vf-item-mobile-hidden {
        display: block !important;
    }
}

.vf-item-always-hidden {
    display: none !important;
}

.vf-gallery-more-container {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 80px;
}

.vf-btn-mobile-only {
    display: block;
}

@media (min-width: 768px) {
    .vf-btn-mobile-only {
        display: none !important;
    }
}

.vf-editorial-gallery__item {
    break-inside: avoid;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    aspect-ratio: auto;
    cursor: zoom-in;
    display: block;
}

.vf-editorial-gallery__img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.vf-editorial-gallery__item:hover .vf-editorial-gallery__img {
    transform: scale(1.03);
}

/* Testimonial styles */
.vf-editorial-testimonial {
    background-color: rgba(239, 215, 199, 0.35);
    padding: 80px 24px;
    text-align: center;
    margin-bottom: 80px;
    border-radius: 4px;
}

.vf-editorial-testimonial__quote {
    font-family: 'EB Garamond', serif;
    font-size: 26px;
    font-style: italic;
    line-height: 1.5;
    color: #2b2522;
    max-width: 720px;
    margin: 0 auto 24px auto;
}

.vf-editorial-testimonial__client {
    font-family: sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #2b2522;
}

/* Related section */
.vf-editorial-related {
    margin-bottom: 80px;
}

.vf-editorial-related__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.vf-editorial-related__title {
    font-family: 'EB Garamond', serif;
    font-size: 36px;
    color: #1a1a1a;
    margin: 0;
}

.vf-editorial-related__link {
    font-family: sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: #c78a43;
    letter-spacing: 0.15em;
    text-decoration: none;
    border-bottom: 1px solid #c78a43;
    padding-bottom: 2px;
}

.vf-editorial-related__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 768px) {
    .vf-editorial-related__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.vf-editorial-card-related {
    text-decoration: none;
    color: inherit;
    display: block;
}

.vf-editorial-card-related__image-wrap {
    aspect-ratio: 4/5;
    overflow: hidden;
    border-radius: 4px;
    margin-bottom: 16px;
}

.vf-editorial-card-related__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.vf-editorial-card-related:hover .vf-editorial-card-related__img {
    transform: scale(1.04);
}

.vf-editorial-card-related__title {
    font-family: 'EB Garamond', serif;
    font-size: 22px;
    color: #1a1a1a;
    margin: 0 0 8px 0;
}

.vf-editorial-card-related__category {
    font-family: sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #8a8a8a;
}

/* CTA Styles */
.vf-editorial-cta {
    background-color: #fdf9f0;
    text-align: center;
    padding: 80px 24px;
    border-top: 1px solid #e6ddd5;
    border-bottom: 1px solid #e6ddd5;
    margin-bottom: 80px;
}

.vf-editorial-cta__title {
    font-family: 'EB Garamond', serif;
    font-size: 36px;
    color: #1a1a1a;
    margin-top: 0;
    margin-bottom: 12px;
}

.vf-editorial-cta__text {
    font-family: sans-serif;
    font-size: 15px;
    color: #8a8a8a;
    margin-bottom: 32px;
}

.vf-editorial-cta__btn {
    display: inline-block;
    background-color: #c78a43;
    color: #ffffff !important;
    font-family: sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 16px 40px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.vf-editorial-cta__btn:hover {
    background-color: #b07735;
}



