/* ============================================================
   Texas Panhandle Moments — Main Stylesheet
   Converted from Tailwind CSS utility classes
   ============================================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  font-family: futura-pt, Futura, Arial, sans-serif;
  font-weight: 300;
  color: #3E241E;
  background: #fff;
  line-height: 1.5;
}

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

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font: inherit;
  color: inherit;
}

/* --- Font Families --- */
.font-heading {
  font-family: adobe-garamond-pro, Garamond, "Times New Roman", serif;
}

.font-body {
  font-family: futura-pt, Futura, Arial, sans-serif;
}

.font-accent {
  font-family: futura-pt, Futura, Arial, sans-serif;
}

/* --- Font Weight Utilities --- */
.fw-light { font-weight: 300; }
.fw-regular { font-weight: 400; }
.fw-medium { font-weight: 500; }
.fw-semibold { font-weight: 600; }
.fw-bold { font-weight: 700; }
.fw-heavy { font-weight: 800; }
.italic { font-style: italic; }

/* --- Color Variables --- */
:root {
  --color-header-bg: #C8A090;
  --color-warm-bg: #E7D8D0;
  --color-deep-brown: #3E241E;
  --color-body-text: #4A2F27;
  --color-brand-red: #7F0F04;
  --color-accent-red: #6B241C;
  --color-dusty-blue: #86A4BA;
  --color-burnt-sienna: #AD5632;
  --color-deep-red: #9D1F0C;
}

/* --- Layout --- */
.content-shell {
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

@media (min-width: 640px) {
  .content-shell {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .content-shell {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.min-h-screen {
  min-height: 100vh;
}

/* --- Header / Navigation --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--color-header-bg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.header-logo-link {
  display: flex;
  align-items: center;
}

.header-logo {
  height: 3rem;
  width: auto;
  object-fit: contain;
}

.header-logo-desktop {
  display: none;
}

.header-logo-mobile {
  display: block;
}

.header-logo-name {
  display: inline-block;
  color: #fff;
  font-family: adobe-garamond-pro, Georgia, serif;
  font-size: 1rem;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

@media (min-width: 640px) {
  .header-logo-mobile {
    display: none;
  }

  .header-logo-name {
    display: none;
  }

  .header-logo-desktop {
    display: block;
    height: 3.5rem;
  }
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .desktop-nav {
    display: flex;
  }
}

.nav-link {
  font-size: 0.8125rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.2s;
  font-family: futura-pt, Futura, Arial, sans-serif;
  background: none;
  border: none;
  padding: 0;
}

.nav-link:hover,
.nav-link.active {
  color: #fff;
}

.nav-link.active {
  font-weight: 500;
}

/* Hamburger Button */
.hamburger-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 2.75rem;
  width: 2.75rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  transition: background 0.2s;
}

.hamburger-btn:hover {
  background: rgba(255, 255, 255, 0.15);
}

@media (min-width: 768px) {
  .hamburger-btn {
    display: none;
  }
}

.hamburger-lines {
  position: relative;
  height: 1rem;
  width: 1.25rem;
}

.hamburger-lines span {
  position: absolute;
  left: 0;
  height: 2px;
  width: 1.25rem;
  background: currentColor;
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger-lines span:nth-child(1) { top: 0; }
.hamburger-lines span:nth-child(2) { top: 7px; }
.hamburger-lines span:nth-child(3) { top: 14px; }

.hamburger-btn.open .hamburger-lines span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger-btn.open .hamburger-lines span:nth-child(2) {
  opacity: 0;
}

.hamburger-btn.open .hamburger-lines span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-nav {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  background: var(--color-header-bg);
  padding: 1rem 0;
}

.mobile-nav.open {
  display: block;
}

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

.mobile-nav-inner {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-nav-link {
  display: block;
  width: 100%;
  border-radius: 1rem;
  padding: 0.75rem 1rem;
  text-align: left;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.85);
  transition: background 0.2s;
  font-family: futura-pt, Futura, Arial, sans-serif;
}

.mobile-nav-link:hover {
  background: rgba(255, 255, 255, 0.1);
}

.mobile-nav-link.active {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-weight: 500;
}

/* --- Section Primitives --- */
.section {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

@media (min-width: 640px) {
  .section {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

@media (min-width: 1024px) {
  .section {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }
}

.section-white {
  background: #fff;
}

.section-warm {
  background: var(--color-warm-bg);
  color: var(--color-body-text);
}

.section-tag {
  font-family: futura-pt, Futura, Arial, sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--color-burnt-sienna);
}

.bio-name {
  font-family: adobe-garamond-pro, Garamond, "Times New Roman", serif;
  font-size: 1.75rem;
  font-style: italic;
  color: var(--color-burnt-sienna);
}

.section-heading {
  font-family: adobe-garamond-pro, Garamond, "Times New Roman", serif;
  font-size: 2.25rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--color-deep-brown);
  line-height: 1.15;
}

@media (min-width: 640px) {
  .section-heading {
    font-size: 3rem;
  }
}

.body-text {
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 2;
  color: var(--color-body-text);
}

.text-center { text-align: center; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-6xl { max-width: 72rem; }
.mx-auto { margin-left: auto; margin-right: auto; }

.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-7 { margin-top: 1.75rem; }
.mt-8 { margin-top: 2rem; }
.mt-9 { margin-top: 2.25rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }
.mb-12 { margin-bottom: 3rem; }

.space-y-5 > * + * { margin-top: 1.25rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-8 > * + * { margin-top: 2rem; }

/* --- Buttons --- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  border-radius: 9999px;
  background: var(--color-deep-brown);
  padding: 0.875rem 1.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s;
}

.btn-primary:hover {
  transform: translateY(-2px);
}

/* --- Hero Section --- */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9, 9, 11, 0.65), rgba(9, 9, 11, 0.20), transparent);
}

.hero-overlay-flat {
  position: absolute;
  inset: 0;
  background: rgba(9, 9, 11, 0.40);
}

.hero-content {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: calc(78vh + 200px);
  padding-top: 8rem;
  padding-bottom: 8rem;
}

@media (min-width: 640px) {
  .hero-content {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }
}

@media (min-width: 1024px) {
  .hero-content {
    min-height: calc(88vh + 200px);
    padding-top: 12rem;
    padding-bottom: 12rem;
  }
}

.hero-content-centered {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(78vh + 200px);
  padding-top: 8rem;
  padding-bottom: 8rem;
  text-align: center;
}

@media (min-width: 640px) {
  .hero-content-centered {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }
}

@media (min-width: 1024px) {
  .hero-content-centered {
    min-height: calc(88vh + 200px);
    padding-top: 12rem;
    padding-bottom: 12rem;
  }
}

.hero-text-block {
  max-width: 48rem;
  padding: 2rem;
}

@media (min-width: 640px) {
  .hero-text-block {
    padding: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .hero-text-block {
    padding: 3.5rem;
  }
}

.hero-title {
  font-family: adobe-garamond-pro, Garamond, "Times New Roman", serif;
  max-width: 42rem;
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 0.92;
  letter-spacing: -0.025em;
  color: #fff;
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3rem;
  }
}

.hero-subtitle {
  margin-top: 1.75rem;
  max-width: 36rem;
  font-family: futura-pt, Futura, Arial, sans-serif;
  font-weight: 300;
  font-size: 1.25rem;
  line-height: 1.8;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.95);
}

/* --- Grid Layouts --- */
.grid-3 {
  display: grid;
  gap: 1.5rem;
}

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

@media (min-width: 1024px) {
  .grid-3 {
    gap: 2rem;
  }
}

.grid-2 {
  display: grid;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.grid-2-col {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .grid-2-col {
    grid-template-columns: repeat(2, 1fr);
  }
}

.grid-process {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .grid-process {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-process {
    grid-template-columns: repeat(3, 1fr);
  }
}

.split-layout {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 1024px) {
  .split-layout {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 3.5rem;
  }
}

.split-layout-reverse {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 1024px) {
  .split-layout-reverse {
    grid-template-columns: 0.95fr 1.05fr;
    align-items: center;
    gap: 3.5rem;
  }
}

.split-layout-about {
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .split-layout-about {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: start;
    gap: 3.5rem;
  }
}

/* --- Cards --- */
.card {
  border-radius: 2rem;
  border: 1px solid rgba(161, 161, 170, 0.45);
  background: rgba(255, 255, 255, 0.8);
  padding: 1.75rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.card-process {
  position: relative;
  border-radius: 2rem;
  border: 1px solid #e4e4e7;
  background: #fff;
  padding: 1.75rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.card-process-icon {
  position: absolute;
  top: 1.75rem;
  right: 1.75rem;
  width: 2rem;
  height: 2rem;
}

.card-process-icon svg {
  width: 100%;
  height: 100%;
}

.card-vendor-quote {
  border-radius: 2rem;
  border: 1px solid #e4e4e7;
  padding: 2rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.card-vendor-quote-warm {
  background: rgba(231, 216, 208, 0.55);
}

.card-vendor-quote-white {
  background: rgba(255, 255, 255, 0.7);
}

/* --- Image Cards / Figures --- */
.image-card {
  overflow: hidden;
  border-radius: 2.25rem;
  border: 1px solid #e4e4e7;
  background: #f4f4f5;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.placeholder-card {
  overflow: hidden;
  border-radius: 2rem;
  border: 1px solid #e4e4e7;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.placeholder-card-image {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: #f4f4f5;
}

.placeholder-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.placeholder-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(9, 9, 11, 0.2);
  padding: 1rem;
}

.placeholder-card-label {
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #fff;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
  font-family: adobe-garamond-pro, Garamond, "Times New Roman", serif;
}

.real-moments-label {
  font-family: adobe-garamond-pro, Garamond, "Times New Roman", serif;
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 400;
  color: var(--color-body-text);
  letter-spacing: 0.04em;
}

.real-moment-mosaic {
  display: flex;
  gap: 1rem;
  align-items: stretch;
}

.real-moment-mosaic-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.real-moment-mosaic-right .real-moment-card {
  flex: 1;
}

.real-moment-mosaic-right .real-moment-card img {
  aspect-ratio: unset;
  height: 100%;
}

@media (max-width: 767px) {
  .real-moment-mosaic {
    flex-direction: column;
  }
}

.real-moment-card {
  overflow: hidden;
  border-radius: 2rem;
  border: 1px solid #e4e4e7;
  background: #f4f4f5;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.real-moment-card img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.real-moment-card--large {
  flex: 1.5;
}

.real-moment-card--large img {
  aspect-ratio: unset;
  height: 100%;
  min-height: 400px;
}

/* --- Video Portfolio Cards --- */
.video-card {
  border-radius: 2rem;
  border: 1px solid #e4e4e7;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.video-card-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #f4f4f5;
}

.video-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-card-body {
  padding: 1.75rem;
}

.video-card-title {
  font-family: adobe-garamond-pro, Garamond, "Times New Roman", serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-deep-brown);
}

.video-card-quote {
  margin-top: 1rem;
  font-size: 1.125rem;
  line-height: 2;
  color: var(--color-body-text);
}

/* --- Aspect Ratio (for video thumbnails) --- */
.aspect-video {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

/* --- Testimonials --- */
.testimonial-name {
  font-family: futura-pt, Futura, Arial, sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-burnt-sienna);
  margin-top: 1.25rem;
}

.testimonial-quote {
  font-family: adobe-garamond-pro, Garamond, "Times New Roman", serif;
  font-size: 1rem;
  font-style: italic;
  line-height: 1.85;
  color: var(--color-body-text);
}

/* --- Featured / Pull Quote --- */
.featured-quote {
  font-family: adobe-garamond-pro, Garamond, "Times New Roman", serif;
  font-style: italic;
  color: var(--color-deep-brown);
}

.accent-text {
  font-family: futura-pt, Futura, Arial, sans-serif;
  font-weight: 300;
  letter-spacing: 0.03em;
}

/* --- FAQ --- */
.faq-item {
  border-top: 1px solid #e4e4e7;
  padding-top: 2rem;
}

.faq-question {
  font-family: adobe-garamond-pro, Garamond, "Times New Roman", serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-deep-brown);
}

.faq-answer {
  margin-top: 1rem;
  font-size: 1.125rem;
  line-height: 2;
  color: var(--color-body-text);
}

/* --- Contact Form Container --- */
.contact-form-container {
  margin-top: 2.5rem;
  border-radius: 2rem;
  border: 1px solid rgba(161, 161, 170, 0.45);
  background: rgba(255, 255, 255, 0.85);
  padding: 1.5rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

@media (min-width: 640px) {
  .contact-form-container {
    padding: 2rem;
  }
}

/* --- Vendor Buttons --- */
.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

/* --- Footer --- */
.site-footer {
  border-top: 1px solid #6b0d03;
  background: var(--color-brand-red);
  padding: 2rem 0;
}

@media (min-width: 640px) {
  .site-footer {
    padding: 2.5rem 0;
  }
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  font-size: 0.875rem;
  color: #e4e4e7;
}

@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 2.25rem;
  width: 2.25rem;
  border-radius: 9999px;
  border: 1px solid rgba(161, 161, 170, 0.6);
  color: #e4e4e7;
  transition: background 0.2s, color 0.2s;
}

.social-icon:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.social-icon svg {
  height: 1rem;
  width: 1rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .footer-nav {
    justify-content: flex-end;
  }
}

.footer-nav a {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #e4e4e7;
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: #fff;
}

/* --- Image constrain on vendor section --- */
@media (min-width: 1024px) {
  .vendor-image-constrained {
    max-width: 28rem;
    justify-self: end;
  }
}

/* --- Utility: sr-only (screen reader only) --- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --- Pricing starting at --- */
.pricing-label {
  margin-top: 1.25rem;
  font-family: futura-pt, Futura, Arial, sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--color-burnt-sienna);
}

/* --- Pull Quote Block --- */
.pull-quote-block {
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
  padding: 3rem 0;
  border-top: 1px solid #e4e4e7;
  text-align: center;
}

.pull-quote-block p {
  font-family: adobe-garamond-pro, Garamond, "Times New Roman", serif;
  font-style: italic;
  font-weight: 500;
  font-size: 1.3125rem;
  line-height: 1.7;
  color: var(--color-deep-brown);
  padding-top: 1rem;
}

/* --- Accent Divider --- */
.accent-divider {
  width: 3rem;
  height: 2px;
  background: var(--color-dusty-blue);
  border: none;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.accent-divider-center {
  width: 3rem;
  height: 2px;
  background: var(--color-dusty-blue);
  border: none;
  margin: 1.5rem auto;
}

/* --- Heading Accent (Garamond italic for subheads) --- */
.subheading-italic {
  font-family: adobe-garamond-pro, Garamond, "Times New Roman", serif;
  font-style: italic;
  font-weight: 400;
  color: var(--color-body-text);
}

/* --- Process Step Number --- */
.step-number {
  font-family: futura-pt, Futura, Arial, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--color-dusty-blue);
}

/* --- Footer text refinement --- */
.footer-tagline {
  font-family: futura-pt, Futura, Arial, sans-serif;
  font-weight: 300;
  font-size: 0.9375rem;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.8);
}

/* --- Portfolio masonry grid --- */
.portfolio-grid {
  columns: 2;
  column-gap: 1rem;
}

.portfolio-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  overflow: hidden;
  border-radius: 2rem;
  border: 1px solid #e4e4e7;
  background: #f4f4f5;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.portfolio-item img {
  width: 100%;
  display: block;
  object-fit: cover;
}

@media (max-width: 767px) {
  .portfolio-grid {
    columns: 1;
  }
}

/* ─────────────────────────────────────────────
   Vimeo lazy-load facade
   Replaces the heavy Vimeo player JS until the
   user actually clicks to play the video.
───────────────────────────────────────────── */
.vimeo-facade {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  overflow: hidden;
  background: #111;
}

.vimeo-facade img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.3s ease;
}

.vimeo-facade:hover img {
  opacity: 0.85;
}

.vimeo-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.65);
  border: 3px solid rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
  pointer-events: none; /* click handled by parent .vimeo-facade */
}

.vimeo-facade:hover .vimeo-play-btn {
  background: rgba(0, 0, 0, 0.88);
  border-color: #fff;
  transform: translate(-50%, -50%) scale(1.08);
}

.vimeo-play-btn svg {
  width: 28px;
  height: 28px;
  fill: #fff;
  margin-left: 5px; /* optical centering of play triangle */
}
