@font-face {
  font-family: 'Marcellus';
  src: url('fonts/Marcellus-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Benson Supply - Brand System */
:root {
  --ink: #0F1011;
  --charcoal: #2D3033;
  --charcoal-soft: #3D4044;
  --sage: #9DB89C;
  --sage-deep: #7A9579;
  --cream: #F4EFE7;
  --cream-warm: #E8DFD0;
  --brass: #B8924A;
  --line: rgba(157, 184, 156, 0.2);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  color: var(--cream);
  background: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Marcellus', serif;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: var(--cream);
}

h1 { font-size: clamp(2rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.65rem); }

.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1.25rem;
  display: inline-block;
}

p {
  font-size: 1rem;
  color: rgba(244, 239, 231, 0.82);
  max-width: 62ch;
}

a {
  color: var(--sage);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover { color: var(--cream); }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 6rem 0;
  position: relative;
}

/* Navigation */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 2rem;
  background: rgba(15, 16, 17, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-brand img {
  height: 72px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  font-weight: 400;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 0; right: 0;
  height: 1px;
  background: var(--sage);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}

.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.95rem 2.4rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid var(--sage);
  color: var(--cream);
  background: transparent;
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--sage);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  z-index: -1;
}

.btn:hover::before { transform: scaleX(1); }
.btn:hover { color: var(--ink); }

.btn-filled {
  background: var(--sage);
  color: var(--ink);
  border-color: var(--sage);
}

.btn-filled::before { background: var(--cream); }

/* Hero — Full-bleed video with logo overlay */
.hero-video {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  background: var(--ink);
  margin-top: 0;
}

.hero-video video,
.hero-video .video-placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-video .video-placeholder {
  background: linear-gradient(135deg, #1a1d20 0%, #0F1011 40%, #2D3033 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-video .video-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(157, 184, 156, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(157, 184, 156, 0.05) 1px, transparent 1px);
  background-size: 24px 24px;
}

.hero-video .video-placeholder span {
  position: relative;
  z-index: 1;
  font-family: 'Marcellus', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(244, 239, 231, 0.35);
  letter-spacing: 0.1em;
}

.hero-video::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(15, 16, 17, 0.55) 0%, rgba(15, 16, 17, 0.4) 50%, rgba(15, 16, 17, 0.7) 100%);
  z-index: 2;
}

.hero-overlay {
  position: relative;
  z-index: 3;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 7rem 2rem 4rem;
}

.hero-overlay-inner img {
  width: clamp(170px, 20vw, 280px);
  height: auto;
  margin: 0 auto 1.5rem;
  display: block;
}

.hero-overlay-inner .brand-line {
  font-family: 'Marcellus', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400;
  color: var(--cream);
  letter-spacing: 0.02em;
  line-height: 1.1;
}

/* Sub-band below hero */
.hero-sub {
  padding: 5rem 0 6rem;
  background: var(--ink);
  text-align: center;
}

.hero-sub .eyebrow { margin-bottom: 1.5rem; }

.hero-sub .sub-line {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: rgba(244, 239, 231, 0.88);
  line-height: 1.9;
  max-width: 880px;
  margin: 0 auto 2.75rem;
}

.hero-sub .sub-line .sep {
  color: var(--sage);
  margin: 0 0.6em;
  opacity: 0.8;
}

.hero-sub-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* Section headers */
.section-header {
  margin-bottom: 4rem;
  max-width: 760px;
}

.section-header h2 { margin-top: 0.5rem; }

/* Knot divider */
.knot-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin: 5rem auto;
  max-width: 1280px;
  padding: 0 2rem;
}

.knot-divider .line {
  height: 1px;
  flex: 1;
  max-width: 200px;
  background: linear-gradient(to right, transparent, var(--sage), transparent);
}

.knot-divider .mark {
  width: 8px;
  height: 8px;
  border: 1px solid var(--sage);
  transform: rotate(45deg);
}

/* Grid */
.grid {
  display: grid;
  gap: 1.75rem;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* Service tile */
.tile {
  padding: 2.5rem 2rem;
  border: 1px solid var(--line);
  background: rgba(45, 48, 51, 0.3);
  transition: all 0.4s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.tile::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--sage);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.tile:hover {
  background-color: rgba(45, 48, 51, 0.6);
  transform: translateY(-4px);
}

.tile:hover::before { transform: scaleX(1); }

.tile-num {
  font-family: 'Marcellus', serif;
  font-size: 0.95rem;
  color: var(--sage);
  font-style: italic;
  margin-bottom: 1.5rem;
  display: block;
}

.tile h3 {
  margin-bottom: 1.25rem;
  font-size: 1.6rem;
  color: var(--sage);
}

.tile p {
  font-size: 0.92rem;
  line-height: 1.7;
  color: rgba(244, 239, 231, 0.78);
}

.tile-cta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: rgba(157, 184, 156, 0.06);
  border: 1px dashed var(--line);
}

.tile-cta h3 { margin-bottom: 1rem; }

.tile-cta p {
  margin-bottom: 1.75rem;
  font-family: 'Marcellus', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--cream);
}

/* Page intro */
.page-intro {
  padding-top: 11rem;
  padding-bottom: 4rem;
}

.page-intro .eyebrow {
  display: block;
  margin-bottom: 1.25rem;
}

.page-intro h1 { margin: 0; }

/* Section block */
.block-header { margin-bottom: 2.5rem; }

.block-header .eyebrow {
  display: block;
  margin-bottom: 0.75rem;
}

.block-header h2 { margin: 0; }

/* Placeholder */
.placeholder-box {
  padding: 3rem 2rem;
  border: 1px dashed var(--line);
  text-align: center;
  font-family: 'Marcellus', serif;
  font-style: italic;
  color: rgba(244, 239, 231, 0.5);
  font-size: 1.05rem;
  background: rgba(45, 48, 51, 0.2);
}

.placeholder-tall {
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Logo wall (testimonials) */
.logo-wall {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
  padding: 2.5rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.logo-wall .logo-slot {
  aspect-ratio: 2 / 1;
  border: 1px dashed var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Marcellus', serif;
  font-style: italic;
  font-size: 0.85rem;
  color: rgba(244, 239, 231, 0.4);
  text-align: center;
  padding: 0.5rem;
}

.testimonial-rotator {
  display: grid;
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem 0;
}

.testimonial-slide {
  grid-area: 1 / 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.testimonial-slide.active { opacity: 1; visibility: visible; }

.testimonial-photo { aspect-ratio: 4 / 3; border: 1px solid var(--line); }

.testimonial-photo.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--ink) 100%);
  color: var(--sage);
  font-family: 'Marcellus', serif;
  font-style: italic;
  font-size: 1rem;
  text-align: center;
  padding: 1rem;
}

.testimonial-body blockquote {
  font-family: 'Marcellus', serif;
  font-size: 1.6rem;
  font-style: italic;
  font-weight: 300;
  color: var(--cream);
  line-height: 1.4;
  margin-bottom: 1.75rem;
}

.testimonial-body cite {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage);
  font-style: normal;
  font-weight: 500;
  display: block;
}

.testimonial-body cite span {
  display: block;
  letter-spacing: 0.12em;
  color: rgba(244, 239, 231, 0.6);
  margin-top: 0.35rem;
}

/* Selected Work teaser */
.work-teaser { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

/* Portfolio video embed */
.video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-bottom: 4rem;
  border: 1px solid var(--line);
  overflow: hidden;
  background: var(--charcoal);
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Portfolio */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.portfolio-grid .portfolio-item:nth-child(1),
.portfolio-grid .portfolio-item:nth-child(6) {
  grid-row: span 2;
  aspect-ratio: 4 / 6;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  background: var(--charcoal);
  aspect-ratio: 4 / 5;
  cursor: pointer;
}

.portfolio-item .placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--ink) 100%);
  color: var(--sage);
  font-family: 'Marcellus', serif;
  font-style: italic;
  font-size: 1.1rem;
  border: 1px solid var(--line);
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.portfolio-item:hover img { transform: scale(1.05); }

.portfolio-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(15, 16, 17, 0.95), transparent);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.portfolio-item:hover .portfolio-caption { transform: translateY(0); }

.portfolio-caption .eyebrow { margin-bottom: 0.25rem; }
.portfolio-caption h3 { font-size: 1.3rem; }

/* Footer */
footer {
  border-top: 1px solid var(--line);
  padding: 4rem 0 2rem;
  margin-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-grid h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.footer-grid ul { list-style: none; }

.footer-grid li {
  margin-bottom: 0.6rem;
  font-size: 0.9rem;
}

.footer-grid a { color: rgba(244, 239, 231, 0.7); }

.footer-logo {
  height: 50px;
  width: auto;
  margin-bottom: 1.25rem;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(244, 239, 231, 0.5);
  letter-spacing: 0.05em;
}

/* Forms */
.form-row { margin-bottom: 1.5rem; }

.form-row label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  padding: 0.9rem 1rem;
  background: rgba(45, 48, 51, 0.4);
  border: 1px solid var(--line);
  color: var(--cream);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.3s ease;
}

.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  outline: none;
  border-color: var(--sage);
}

.form-row textarea {
  min-height: 140px;
  resize: vertical;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 5rem;
}

.contact-info-block {
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: 2rem;
}

.contact-info-block:last-child { border-bottom: none; }

.contact-info-block h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1rem;
  font-weight: 500;
}

.contact-info-block p,
.contact-info-block a {
  font-size: 1rem;
  color: var(--cream);
  line-height: 1.7;
}

#form-message {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  font-style: italic;
  font-family: 'Marcellus', serif;
}

/* Animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal { opacity: 0; animation: fadeUp 0.9s ease forwards; }
.reveal-1 { animation-delay: 0.1s; }
.reveal-2 { animation-delay: 0.3s; }
.reveal-3 { animation-delay: 0.5s; }
.reveal-4 { animation-delay: 0.7s; }

/* Responsive */
@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .logo-wall { grid-template-columns: repeat(3, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid .portfolio-item:nth-child(1),
  .portfolio-grid .portfolio-item:nth-child(6) {
    grid-row: auto;
    aspect-ratio: 4 / 5;
  }
}

@media (max-width: 640px) {
  section { padding: 4rem 0; }
  .container { padding: 0 1.5rem; }
  nav { padding: 1rem 1.5rem; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--ink);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid var(--line);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .logo-wall { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: 1fr; }
  .hero-video { min-height: 100vh; }
  .hero-overlay { padding-top: 6rem; }
  .hero-overlay-inner img { width: 130px; }
  .hero-overlay-inner .brand-line { font-size: 1.4rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .testimonial-body blockquote { font-size: 1.25rem; }
  .testimonial-slide { grid-template-columns: 1fr; gap: 1.5rem; }
  .work-teaser { grid-template-columns: 1fr; }
}


/* Hero statement overlay */
.hero-overlay-inner { max-width: 900px; }
.hero-overlay-inner .eyebrow { display: block; margin-bottom: 1.5rem; }
.hero-statement {
  font-family: 'Marcellus', serif;
  color: var(--cream);
  line-height: 1.35;
  margin-bottom: 2.25rem;
}
.hero-statement span {
  display: block;
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  font-weight: 400;
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
@media (max-width: 640px) {
  .nav-brand img { height: 54px; }
  .hero-statement span { font-size: 1.55rem; }
}


/* Testimonial controls */
.testimonial-controls {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.testimonial-controls button {
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--sage);
  font-family: 'Marcellus', serif;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-controls button:hover {
  border-color: var(--sage);
  background: rgba(157, 184, 156, 0.1);
  color: var(--cream);
}


.testimonial-photo { overflow: hidden; }
.testimonial-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }


/* Owner bios */
.bio { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 3.5rem; align-items: center; }
.bio-reverse .bio-photo { order: 2; }
.bio-photo { aspect-ratio: 3 / 4; overflow: hidden; border: 1px solid var(--line); }
.bio-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.bio-photo.placeholder {
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--ink) 100%);
  color: var(--sage); font-family: 'Marcellus', serif; font-style: italic;
  font-size: 1.05rem; text-align: center; padding: 1rem;
}
.bio-text .eyebrow { display: block; margin-bottom: 0.5rem; }
.bio-text h2 { margin: 0 0 1.75rem; }
.bio-text p { margin-bottom: 1.25rem; }
.bio-text p:last-child { margin-bottom: 0; }
@media (max-width: 900px) {
  .bio, .bio-reverse { grid-template-columns: 1fr; gap: 2rem; }
  .bio-reverse .bio-photo { order: 0; }
  .bio-photo { max-width: 420px; justify-self: center; }
}


/* Interactive image tiles */
.tile-img { background-size: cover; background-position: center; text-decoration: none; }
.tile-img h3, .tile-img p { position: relative; z-index: 1; }

/* Plain straight-line divider */
.section-divider { height: 1px; background: var(--line); max-width: 1216px; margin: 4.5rem auto; }

/* Portfolio category galleries */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .gallery-grid { grid-template-columns: 1fr; } }

/* Clients & Partners list */
.clients-list { list-style: none; max-width: 780px; margin: 0 auto; }
.clients-list li {
  display: flex; justify-content: space-between; align-items: baseline; gap: 2rem;
  padding: 0.7rem 0; border-bottom: 1px solid var(--line);
}
.client-name { font-family: 'Marcellus', serif; font-size: 1.15rem; color: var(--cream); }
.client-type {
  font-family: 'Inter', sans-serif; font-size: 0.78rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--sage); text-align: right; white-space: nowrap;
}
@media (max-width: 640px) {
  .clients-list li { flex-direction: column; gap: 0.35rem; }
  .client-type { text-align: left; }
}


.ig-link { color: var(--sage); display: inline-flex; align-items: center; transition: color 0.3s ease; }
.ig-link:hover { color: var(--cream); }

.client-alt { font-family: 'Inter', sans-serif; font-size: 0.72rem; letter-spacing: 0.06em; color: rgba(244,239,231,0.4); margin-left: 0.6rem; }


/* Anchor scroll offset for fixed nav */
[id] { scroll-margin-top: 110px; }

/* Inquiry toggle */
.inquiry-toggle { display: flex; margin-bottom: 2.5rem; border: 1px solid var(--line); }
.inquiry-btn {
  flex: 1; padding: 0.9rem 1rem; background: transparent; border: none;
  color: rgba(244, 239, 231, 0.7); font-family: 'Inter', sans-serif;
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; cursor: pointer;
  transition: all 0.3s ease;
}
.inquiry-btn.active { background: var(--sage); color: var(--ink); }
.field-note {
  font-family: 'Marcellus', serif; font-size: 0.9rem;
  color: rgba(244, 239, 231, 0.55); margin-top: 0.5rem;
}
.hero-ig { color: var(--cream); }
.hero-ig:hover { color: var(--sage); }


/* FAQ accordion */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 1.05rem 0;
  display: flex; justify-content: space-between; align-items: center; gap: 1.25rem;
  font-family: 'Marcellus', serif; font-size: 1.12rem; color: var(--cream);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .chev {
  color: var(--sage); font-family: 'Inter', sans-serif; font-weight: 300;
  font-size: 1.3rem; line-height: 1; flex-shrink: 0; transition: transform 0.3s ease;
}
.faq-item[open] summary .chev { transform: rotate(45deg); }
.faq-answer { padding: 0 0 1.2rem; max-width: 68ch; }
.faq-answer p { color: rgba(244, 239, 231, 0.8); font-size: 0.95rem; }


/* Service flip tiles */
.flip-tile { perspective: 1300px; min-height: 360px; }
.flip-inner {
  position: relative; width: 100%; height: 100%; min-height: 360px;
  transition: transform 0.6s ease; transform-style: preserve-3d;
}
.flip-tile.flipped .flip-inner { transform: rotateY(180deg); }
.flip-face {
  position: absolute; inset: 0;
  backface-visibility: hidden; -webkit-backface-visibility: hidden;
  padding: 2.5rem 2rem; border: 1px solid var(--line);
  display: flex; flex-direction: column; overflow: hidden;
  background-color: rgba(45, 48, 51, 0.3);
}
.flip-front { background-size: cover; background-position: center; }
.flip-back { transform: rotateY(180deg); background-color: var(--ink); }
.flip-face h3 { color: var(--sage); margin-bottom: 1.25rem; font-size: 1.6rem; }
.flip-front p { font-size: 0.92rem; line-height: 1.7; color: rgba(244, 239, 231, 0.85); }
.flip-front-cta { text-align: center; align-items: center; justify-content: center; }
.flip-front-cta p { font-family: 'Marcellus', serif; font-style: italic; font-size: 1.1rem; color: var(--cream); }
.flip-back ul { list-style: none; }
.flip-back li {
  padding: 0.55rem 0; border-bottom: 1px solid var(--line);
  color: rgba(244, 239, 231, 0.88); font-size: 0.98rem;
}
.flip-back li:last-child { border-bottom: none; }
.cta-back { background-size: cover; background-position: center; }
.flip-btn {
  position: absolute; bottom: 1.5rem; right: 1.5rem;
  width: 42px; height: 42px; border: 1px solid var(--sage); background: rgba(15,16,17,0.35);
  color: var(--sage); font-size: 1.15rem; line-height: 1; cursor: pointer;
  transition: all 0.3s ease; z-index: 2;
}
.flip-btn:hover { background: var(--sage); color: var(--ink); }
@media (max-width: 640px) { .flip-tile, .flip-inner { min-height: 320px; } }

.clients-intro { max-width: 780px; margin: 0 auto 2.75rem; text-align: center; font-family: 'Marcellus', serif; font-size: 1.2rem; line-height: 1.5; color: rgba(244, 239, 231, 0.82); }


/* Service tiles — hover / tap to reveal list */
.svc-tile {
  position: relative; overflow: hidden; min-height: 360px;
  padding: 2.5rem 2rem;
  background-size: cover; background-position: center;
  display: flex; flex-direction: column;
}
.svc-content { position: relative; z-index: 1; }
.svc-tile h3 { color: var(--sage); margin-bottom: 1.25rem; font-size: 1.6rem; }
.svc-content p { font-size: 0.92rem; line-height: 1.7; color: rgba(244, 239, 231, 0.85); }
.svc-reveal {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 2rem;
  background: linear-gradient(to top, var(--ink) 60%, rgba(15,16,17,0.85) 88%, transparent);
  transform: translateY(101%); transition: transform 0.45s ease;
}
.svc-tile:hover .svc-reveal, .svc-tile.revealed .svc-reveal { transform: translateY(0); }
.svc-reveal ul { list-style: none; }
.svc-reveal li { padding: 0.45rem 0; border-bottom: 1px solid var(--line); color: rgba(244,239,231,0.9); font-size: 0.95rem; }
.svc-reveal li:last-child { border-bottom: none; }
.svc-cta { text-align: center; align-items: center; justify-content: center; }
.svc-cta::before { content: ''; position: absolute; inset: 0; z-index: 0; background: rgba(15,16,17,0.74); transition: opacity 0.45s ease; }
.svc-cta:hover::before, .svc-cta.revealed::before { opacity: 0; }
.svc-cta .svc-content { transition: opacity 0.45s ease; }
.svc-cta:hover .svc-content, .svc-cta.revealed .svc-content { opacity: 0; }
.svc-cta .svc-content p { font-family: 'Marcellus', serif; font-style: italic; font-size: 1.1rem; color: var(--cream); }


/* Portfolio lightbox */
.portfolio-item img { cursor: zoom-in; }
.lightbox {
  position: fixed; inset: 0; background: rgba(15, 16, 17, 0.94);
  display: none; align-items: center; justify-content: center;
  z-index: 2000; padding: 2rem; cursor: zoom-out;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 90vh; width: auto; height: auto; object-fit: contain; }
.lightbox-close { position: absolute; top: 1.25rem; right: 2rem; color: var(--cream); font-size: 2.5rem; line-height: 1; cursor: pointer; }
