/*
Theme Name: Joe Verry Films
Theme URI: https://joeverry.com
Author: Joe Verry
Description: Tema cinematográfico premium para Joe Verry, videógrafo de bodas. Paleta ivory y chocolate negro con identidad editorial.
Version: 1.1.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
Text Domain: joeverry
Tags: wedding, videography, ivory, cinematic, portfolio
*/

/* =====================================================
   PALETTE
   --------------------------------------------------
   Ivory  #F7F3EE  — page background (light zones)
   Choco  #1C1310  — dark background / hero
   Choco2 #2A1F1B  — cards / dark panels
   Choco3 #3A2D28  — subtle borders in dark zones
   Gold   #B8975A  — accent / logo "VERRY" / CTAs
   GoldLt #D4B47A  — hover gold
   Ink    #1C1310  — body text in light zones
   Warm   #6B5B50  — muted text in light zones
   Linen  #EDE5DA  — text on dark backgrounds
   ===================================================== */
:root {
  /* Backgrounds */
  --ivory:      #F7F3EE;
  --ivory2:     #EEE8DF;
  --ivory3:     #E4DACE;
  --choco:      #1C1310;
  --choco2:     #2A1F1B;
  --choco3:     #3A2D28;

  /* Text */
  --ink:        #1C1310;
  --ink-soft:   #3A2D28;
  --warm:       #7A6A5E;
  --linen:      #EDE5DA;
  --linen-dim:  rgba(237,229,218,0.65);

  /* Accent gold */
  --gold:       #B8975A;
  --gold-lt:    #D4B47A;
  --gold-dk:    #8C6F3A;
  --gold-dim:   rgba(184,151,90,0.22);
  --gold-xs:    rgba(184,151,90,0.09);

  /* Borders */
  --border-light: rgba(28,19,16,0.12);
  --border-dark:  rgba(184,151,90,0.2);
  --border-ivory: rgba(28,19,16,0.08);

  --sans:  'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --serif: 'Playfair Display', Georgia, serif;
}

/* =====================================================
   RESET
   ===================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
  overflow-x: hidden;
}
img, video { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; transition: color .3s, opacity .3s; }
ul, ol { list-style: none; }
button { cursor: pointer; background: none; border: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* =====================================================
   TYPOGRAPHY
   ===================================================== */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.08;
  color: var(--ink);
}
h1 { font-size: clamp(44px, 6.5vw, 82px); }
h2 { font-size: clamp(30px, 4.2vw, 52px); }
h3 { font-size: clamp(22px, 2.8vw, 32px); }
h4 { font-size: 18px; }
p  { color: var(--warm); font-size: 13px; line-height: 1.95; font-weight: 300; }

/* On dark backgrounds headings go linen */
.on-dark h1, .on-dark h2, .on-dark h3, .on-dark h4 { color: var(--linen); }
.on-dark p  { color: var(--linen-dim); }

em { color: var(--gold); font-style: italic; }

.label {
  font-family: var(--sans);
  font-size: 10px; font-weight: 400;
  letter-spacing: .34em; text-transform: uppercase;
  color: var(--gold);
}

/* =====================================================
   LAYOUT
   ===================================================== */
.wrap { max-width: 1300px; margin: 0 auto; padding: 0 72px; }
@media(max-width:1024px){ .wrap{padding:0 40px;} }
@media(max-width:680px) { .wrap{padding:0 22px;} }

.section-head {
  display: flex; align-items: baseline;
  justify-content: space-between;
  margin-bottom: 56px; gap: 16px; flex-wrap: wrap;
}

/* =====================================================
   BUTTONS
   ===================================================== */
.btn {
  display: inline-block;
  font-size: 10px; font-weight: 400;
  letter-spacing: .28em; text-transform: uppercase;
  transition: all .3s;
}
/* Gold solid — primary CTA */
.btn-solid {
  background: var(--gold); color: #fff;
  padding: 14px 36px;
}
.btn-solid:hover { background: var(--gold-lt); color: #fff; }

/* Ink solid — for dark sections */
.btn-ink {
  background: var(--ink); color: var(--ivory);
  padding: 14px 36px;
}
.btn-ink:hover { background: var(--ink-soft); color: var(--ivory); }

/* Border gold */
.btn-border {
  border: 0.5px solid var(--gold); color: var(--gold);
  padding: 12px 28px;
}
.btn-border:hover { background: var(--gold); color: #fff; }

/* Border ink — for light backgrounds */
.btn-border-ink {
  border: 0.5px solid var(--ink); color: var(--ink);
  padding: 12px 28px;
}
.btn-border-ink:hover { background: var(--ink); color: var(--ivory); }

/* Ghost text link */
.btn-line {
  color: var(--warm); border-bottom: 0.5px solid rgba(122,106,94,.35);
  padding-bottom: 2px; font-size: 10px; letter-spacing: .22em; text-transform: uppercase;
}
.btn-line:hover { color: var(--gold); border-color: var(--gold); }

.link-arrow {
  font-size: 10px; letter-spacing: .26em; text-transform: uppercase;
  color: var(--gold); border-bottom: 0.5px solid var(--gold-dim);
  padding-bottom: 2px;
}
.link-arrow:hover { color: var(--gold-lt); }

/* =====================================================
   HEADER / NAV
   ===================================================== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  transition: background .4s, box-shadow .4s;
}

/* Default state: ivory background, visible immediately */
.site-header {
  background: rgba(247,243,238,.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border-light);
}

/* On hero (dark) sections, header goes dark */
.site-header.hero-zone {
  background: rgba(28,19,16,.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--border-dark);
}

.nav-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 72px;
}

/* ---- LOGO ---- */
.nav-logo {
  display: flex; flex-direction: column; align-items: flex-start;
  gap: 2px; line-height: 1; text-decoration: none;
}

/* "JOE" in dark chocolate ink */
.nav-logo-joe {
  font-family: var(--serif);
  font-size: 23px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink);
  line-height: 1;
}
/* "VERRY" in gold */
.nav-logo-verry {
  font-family: var(--serif);
  font-size: 23px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--gold);
  line-height: 1;
}
/* Both on one line: JOE·VERRY */
.nav-logo-name {
  display: flex; align-items: baseline; gap: 6px;
}
.nav-logo-sub {
  font-family: var(--sans);
  font-size: 8px; letter-spacing: .42em;
  text-transform: uppercase; color: var(--warm);
  font-weight: 300; margin-top: 2px;
}

/* When header is on dark hero zone, flip JOE to linen */
.site-header.hero-zone .nav-logo-joe  { color: var(--linen); }
.site-header.hero-zone .nav-logo-sub  { color: var(--linen-dim); }
/* VERRY stays gold always — it's the brand color */

.nav-links { display: flex; gap: 38px; }
.nav-links a {
  font-size: 10px; letter-spacing: .22em;
  text-transform: uppercase; color: var(--ink-soft); font-weight: 400;
}
.nav-links a:hover, .nav-links a.current { color: var(--gold); }

/* Dark hero zone: links go linen */
.site-header.hero-zone .nav-links a { color: var(--linen-dim); }
.site-header.hero-zone .nav-links a:hover,
.site-header.hero-zone .nav-links a.current { color: var(--gold); }

/* Nav CTA adapts too */
.site-header.hero-zone .btn-border-ink {
  border-color: rgba(237,229,218,.4);
  color: var(--linen);
}
.site-header.hero-zone .btn-border-ink:hover {
  background: var(--gold); border-color: var(--gold); color: #fff;
}

/* Hamburger */
.nav-burger {
  display: none; flex-direction: column;
  gap: 5px; padding: 6px;
}
.nav-burger span {
  display: block; width: 22px; height: .5px;
  background: var(--ink); transition: all .3s;
}
.site-header.hero-zone .nav-burger span { background: var(--linen); }
.nav-burger.open span:nth-child(1){ transform:translateY(5.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2){ opacity:0; }
.nav-burger.open span:nth-child(3){ transform:translateY(-5.5px) rotate(-45deg); }

.mobile-nav {
  display: none; flex-direction: column; gap: 0;
  background: var(--ivory);
  border-top: 0.5px solid var(--border-light);
  box-shadow: 0 8px 24px rgba(28,19,16,.08);
}
.site-header.hero-zone .mobile-nav { background: var(--choco2); border-top-color: var(--border-dark); }
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 16px 24px;
  font-size: 12px; letter-spacing: .22em;
  text-transform: uppercase; color: var(--ink-soft);
  border-bottom: 0.5px solid var(--border-ivory);
}
.site-header.hero-zone .mobile-nav a { color: var(--linen-dim); border-bottom-color: var(--border-dark); }
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav .m-cta { padding: 20px 24px; }

@media(max-width:1024px){
  .nav-bar{ padding:16px 40px; }
  .nav-links, .nav-cta{ display:none; }
  .nav-burger{ display:flex; }
}
@media(max-width:680px){ .nav-bar{padding:14px 22px;} }

/* =====================================================
   HERO  — chocolate dark zone
   ===================================================== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
  background: var(--choco);
}
.hero-reel { position: absolute; inset: 0; z-index: 0; }
.hero-reel img, .hero-reel video {
  width: 100%; height: 100%; object-fit: cover; opacity: .3;
}
.hero-veil {
  position: absolute; inset: 0;
  background: linear-gradient(110deg,
    rgba(28,19,16,.96) 0%,
    rgba(28,19,16,.72) 50%,
    rgba(28,19,16,.25) 100%);
}

/* Deco panel */
.hero-deco {
  position: absolute; right: 0; top: 0; bottom: 0; width: 36%;
  z-index: 1;
  display: flex; align-items: center; justify-content: center;
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
  background: rgba(42,31,27,.88);
}
.hero-deco-inner {
  text-align: center; padding: 48px 36px;
  border: 0.5px solid var(--border-dark);
}
/* Monogram uses the logo split style */
.hero-monogram {
  line-height: 1;
  font-family: var(--serif); font-size: 78px; font-weight: 700;
  letter-spacing: -.01em;
}
.hero-monogram .m-joe   { color: rgba(237,229,218,.12); }
.hero-monogram .m-verry { color: rgba(184,151,90,.18); }
.hero-deco-tagline {
  font-size: 9px; letter-spacing: .38em;
  text-transform: uppercase; color: var(--linen-dim);
  margin-top: 18px; line-height: 2.2;
}
.hero-deco-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 68px; height: 68px; border-radius: 50%;
  border: 0.5px solid var(--border-dark);
  margin-top: 32px; transition: all .3s; text-decoration: none;
}
.hero-deco-btn:hover { border-color: var(--gold); background: var(--gold-xs); }
.hero-deco-btn svg { fill: var(--gold); width: 16px; height: 16px; margin-left: 3px; }

.hero-body {
  position: relative; z-index: 2;
  padding: 150px 72px 90px; max-width: 640px;
}
.hero-body .label { margin-bottom: 26px; color: var(--gold); }
.hero-body h1 { color: var(--linen); margin-bottom: 22px; }
.hero-body .hero-copy { color: var(--linen-dim); font-size: 13px; line-height: 1.95; max-width: 390px; margin-bottom: 44px; }
.hero-actions { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }

.hero-scroll {
  position: absolute; bottom: 44px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  z-index: 3; animation: bounce 2.2s ease-in-out infinite;
}
.hero-scroll-bar { width: .5px; height: 46px; background: var(--gold); opacity: .38; }
.hero-scroll-text { font-size: 8px; letter-spacing: .36em; text-transform: uppercase; color: var(--linen-dim); }
@keyframes bounce {
  0%,100% { transform:translateX(-50%) translateY(0); }
  50%      { transform:translateX(-50%) translateY(7px); }
}

@media(max-width:1024px){ .hero-deco{display:none;} .hero-body{padding:130px 40px 90px; max-width:100%;} }
@media(max-width:680px) { .hero-body{padding:110px 22px 80px;} .hero-actions{flex-direction:column; align-items:flex-start;} }

/* =====================================================
   STATS BAND  — ivory background
   ===================================================== */
.stats-band {
  background: var(--ivory2);
  border-top: 0.5px solid var(--border-light);
  border-bottom: 0.5px solid var(--border-light);
}
.stats-inner {
  display: flex; align-items: center;
  justify-content: space-evenly;
  padding: 40px 72px;
}
.stat { text-align: center; }
.stat-n {
  font-family: var(--serif);
  font-size: 44px; font-weight: 400;
  color: var(--gold); line-height: 1;
}
.stat-l {
  font-size: 9px; letter-spacing: .24em;
  text-transform: uppercase; color: var(--warm); margin-top: 7px;
}
.stat-rule { width: .5px; height: 54px; background: var(--border-light); }
@media(max-width:1024px){ .stats-inner{padding:28px 40px;} }
@media(max-width:640px) {
  .stats-inner{flex-wrap:wrap; gap:36px; justify-content:center; padding:36px 22px;}
  .stat-rule{display:none;}
}

/* =====================================================
   FILMS GRID  — ivory background
   ===================================================== */
.films-sec { padding: 100px 0; background: var(--ivory); }
.films-sec h2 { color: var(--ink); }

.films-mosaic {
  display: grid;
  grid-template-columns: 1.85fr 1fr 1fr;
  grid-template-rows: 290px 215px;
  gap: 4px;
}
.film-tile { position: relative; overflow: hidden; background: var(--choco2); cursor: pointer; }
.film-tile.big { grid-row: 1/3; }

.film-tile .t-media { position: absolute; inset: 0; }
.film-tile .t-media img, .film-tile .t-media video {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .65s ease;
}
.film-tile:hover .t-media img,
.film-tile:hover .t-media video { transform: scale(1.05); }

.film-tile .t-ghost {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); color: rgba(184,151,90,.07);
}
.film-tile.big .t-ghost { font-size: 150px; }
.film-tile      .t-ghost { font-size: 80px; }

.film-tile .t-shade {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(28,19,16,.92) 0%, transparent 58%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 22px 24px;
}
.film-tile .t-loc { font-size: 8.5px; letter-spacing: .28em; text-transform: uppercase; color: var(--gold); margin-bottom: 5px; }
.film-tile .t-name { font-family: var(--serif); font-weight: 400; color: var(--linen); font-size: 19px; }
.film-tile.big .t-name { font-size: 30px; }

.film-tile .t-play {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 54px; height: 54px; border-radius: 50%;
  border: 0.5px solid rgba(184,151,90,.5);
  background: rgba(28,19,16,.3);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .3s;
}
.film-tile .t-play svg { fill: var(--gold); width: 15px; height: 15px; margin-left: 3px; }
.film-tile:hover .t-play { opacity: 1; }

@media(max-width:1024px){
  .films-mosaic{ grid-template-columns:1fr 1fr; grid-template-rows:repeat(3,220px); }
  .film-tile.big{ grid-row:auto; }
}
@media(max-width:640px){ .films-mosaic{ grid-template-columns:1fr; grid-template-rows:repeat(5,200px); } }

/* =====================================================
   ABOUT  — chocolate dark zone
   ===================================================== */
.about-sec {
  padding: 100px 0;
  background: var(--choco2);
  border-top: 0.5px solid var(--border-dark);
}
.about-sec h2 { color: var(--linen); }
.about-sec p  { color: var(--linen-dim); }

.about-grid {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 88px; align-items: center;
}
.about-photo { position: relative; }
.about-img { width: 100%; aspect-ratio: 4/5; object-fit: cover; display: block; }
.about-ph {
  width: 100%; aspect-ratio: 4/5;
  background: var(--choco3); border: 0.5px solid var(--border-dark);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 90px; color: var(--gold-xs);
}
.about-corner {
  position: absolute; bottom: -22px; right: -22px;
  width: 78%; height: 78%;
  border: 0.5px solid var(--border-dark); pointer-events: none;
}
.about-content .label { margin-bottom: 20px; display: block; }
.about-content h2 { margin-bottom: 28px; }
.about-content p { margin-bottom: 16px; }
.about-sig {
  font-family: var(--serif); font-size: 40px;
  color: var(--gold); font-style: italic;
  margin: 36px 0; font-weight: 400;
}
.about-badges { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.badge {
  border: 0.5px solid var(--border-dark);
  padding: 8px 18px; font-size: 9.5px;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--linen-dim);
}
@media(max-width:960px){ .about-grid{grid-template-columns:1fr; gap:52px;} .about-photo{max-width:420px;} }

/* =====================================================
   SERVICES  — ivory background
   ===================================================== */
.services-sec { padding: 100px 0; background: var(--ivory); }
.services-sec h2 { color: var(--ink); }

.svc-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  border: 0.5px solid var(--border-light); margin-top: 56px;
}
.svc-card {
  padding: 48px 38px; border-right: 0.5px solid var(--border-light);
  transition: background .3s; position: relative; overflow: hidden;
  background: var(--ivory);
}
.svc-card:last-child { border-right: none; }
.svc-card:hover { background: var(--ivory2); }
.svc-num {
  font-family: var(--serif); font-size: 64px; font-weight: 700;
  color: rgba(184,151,90,.08); position: absolute;
  top: 16px; right: 24px; line-height: 1; pointer-events: none;
}
.svc-icon { margin-bottom: 28px; }
.svc-icon svg { width: 28px; height: 28px; stroke: var(--gold); fill: none; stroke-width: 1; }
.svc-name { font-family: var(--serif); font-size: 26px; color: var(--ink); margin-bottom: 14px; font-weight: 400; }
.svc-desc { font-size: 12px; color: var(--warm); line-height: 2; }
.svc-list { margin-top: 18px; }
.svc-list li {
  font-size: 11px; color: var(--warm); opacity: .8;
  padding: 5px 0; border-bottom: 0.5px solid var(--border-ivory);
}
.svc-list li::before { content: '→ '; color: var(--gold); font-size: 9px; }
.svc-price {
  margin-top: 28px; font-size: 9.5px; letter-spacing: .22em;
  text-transform: uppercase; color: var(--gold);
  border-top: 0.5px solid var(--border-light); padding-top: 20px;
}
@media(max-width:900px){
  .svc-grid{grid-template-columns:1fr;}
  .svc-card{border-right:none; border-bottom:0.5px solid var(--border-light);}
  .svc-card:last-child{border-bottom:none;}
}

/* =====================================================
   PROCESS  — chocolate dark zone
   ===================================================== */
.process-sec {
  padding: 100px 0;
  background: var(--choco);
  border-top: 0.5px solid var(--border-dark);
}
.process-sec h2 { color: var(--linen); }

.process-steps {
  display: grid; grid-template-columns: repeat(4,1fr);
  border: 0.5px solid var(--border-dark); margin-top: 56px;
}
.process-step {
  padding: 40px 32px;
  border-right: 0.5px solid var(--border-dark);
  position: relative;
}
.process-step:last-child { border-right: none; }
.p-num {
  font-family: var(--serif); font-size: 52px; font-weight: 700;
  color: rgba(184,151,90,.1); line-height: 1; margin-bottom: 20px;
}
.p-title { font-family: var(--serif); font-size: 19px; color: var(--linen); margin-bottom: 10px; font-weight: 400; }
.p-desc  { font-size: 12px; color: var(--linen-dim); line-height: 1.9; }
@media(max-width:900px){
  .process-steps{grid-template-columns:repeat(2,1fr);}
  .process-step:nth-child(1),.process-step:nth-child(2){border-bottom:0.5px solid var(--border-dark);}
  .process-step:nth-child(2){border-right:none;}
}
@media(max-width:640px){
  .process-steps{grid-template-columns:1fr;}
  .process-step{border-right:none; border-bottom:0.5px solid var(--border-dark);}
  .process-step:last-child{border-bottom:none;}
}

/* =====================================================
   TESTIMONIALS  — ivory background
   ===================================================== */
.testi-sec { padding: 100px 0; text-align: center; background: var(--ivory2); border-top: 0.5px solid var(--border-light); }
.testi-sec h2 { color: var(--ink); }

.testi-slide { display: none; max-width: 820px; margin: 0 auto; }
.testi-slide.on { display: block; }
.testi-q { font-family: var(--serif); font-size: 100px; color: var(--gold); opacity: .15; line-height: .6; margin-bottom: 30px; }
.testi-txt {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(18px,2.4vw,26px); font-weight: 400;
  color: var(--ink); line-height: 1.55; margin-bottom: 34px;
}
.testi-who { font-size: 9.5px; letter-spacing: .28em; text-transform: uppercase; color: var(--gold); }
.testi-dots { display: flex; justify-content: center; gap: 10px; margin-top: 44px; }
.t-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--warm); opacity: .3; border: none; cursor: pointer; transition: all .3s; }
.t-dot.on { background: var(--gold); opacity: 1; }

/* =====================================================
   CTA STRIP  — chocolate dark
   ===================================================== */
.cta-strip { padding: 100px 0; background: var(--choco2); border-top: 0.5px solid var(--border-dark); }
.cta-strip h2 { color: var(--linen); }
.cta-strip p  { color: var(--linen-dim); }
.cta-inner { display: grid; grid-template-columns: 1fr auto; gap: 60px; align-items: center; }
.cta-inner h2 em { color: var(--gold); font-style: italic; }
.cta-inner p { margin-top: 14px; max-width: 460px; }
.cta-actions { display: flex; flex-direction: column; gap: 16px; align-items: flex-end; }
.cta-email { font-size: 12px; color: var(--linen-dim); letter-spacing: .04em; }
@media(max-width:900px){ .cta-inner{grid-template-columns:1fr;} .cta-actions{align-items:flex-start;} }

/* =====================================================
   CONTACT PAGE
   ===================================================== */
.contact-hero { padding: 140px 0 80px; border-bottom: 0.5px solid var(--border-light); text-align: center; background: var(--ivory); }
.contact-hero h1 { color: var(--ink); }
.contact-body { padding: 80px 0; background: var(--ivory); }
.contact-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 88px; align-items: start; }
.contact-info h2 { color: var(--ink); }
.contact-info p  { color: var(--warm); }
.c-details { display: flex; flex-direction: column; gap: 18px; margin-top: 40px; }
.c-row { display: flex; gap: 18px; align-items: flex-start; }
.c-key { font-size: 8.5px; letter-spacing: .3em; text-transform: uppercase; color: var(--gold); min-width: 76px; margin-top: 2px; }
.c-val { font-size: 13px; color: var(--ink-soft); }
.c-val a { color: var(--ink-soft); }
.c-val a:hover { color: var(--gold); }

.cf { display: flex; flex-direction: column; gap: 22px; }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.cf-g { display: flex; flex-direction: column; gap: 9px; }
.cf-l { font-size: 8.5px; letter-spacing: .3em; text-transform: uppercase; color: var(--warm); }
.cf-i, .cf-s, .cf-t {
  background: var(--ivory2); border: 0.5px solid var(--border-light);
  color: var(--ink); padding: 13px 17px;
  font-size: 13px; font-weight: 300; outline: none;
  transition: border-color .3s; width: 100%; -webkit-appearance: none;
}
.cf-i::placeholder, .cf-t::placeholder { color: var(--warm); opacity: .5; }
.cf-i:focus, .cf-s:focus, .cf-t:focus { border-color: var(--gold); }
.cf-t { resize: vertical; min-height: 130px; }
.cf-s option { background: var(--ivory2); }
.cf-msg { font-size: 12px; margin-top: 8px; display: none; }
.cf-msg.ok  { color: var(--gold-dk); }
.cf-msg.err { color: #b44; }
@media(max-width:900px){ .contact-layout{grid-template-columns:1fr; gap:52px;} .cf-row{grid-template-columns:1fr;} }

/* =====================================================
   BLOG  — ivory
   ===================================================== */
.blog-hero { padding: 140px 0 80px; border-bottom: 0.5px solid var(--border-light); text-align: center; background: var(--ivory); }
.blog-hero h1 { color: var(--ink); }
.posts-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 36px; margin-top: 56px; }
.post-thumb { aspect-ratio: 16/10; overflow: hidden; background: var(--ivory3); margin-bottom: 22px; display: block; }
.post-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.post-card:hover .post-thumb img { transform: scale(1.04); }
.post-cat { font-size: 8.5px; letter-spacing: .28em; text-transform: uppercase; color: var(--gold); margin-bottom: 9px; }
.post-title-link { font-family: var(--serif); font-size: 21px; font-weight: 400; color: var(--ink); margin-bottom: 10px; line-height: 1.2; display: block; }
.post-title-link:hover { color: var(--gold); }
.post-excerpt { font-size: 12px; color: var(--warm); line-height: 1.9; }
.post-date { font-size: 9.5px; color: var(--warm); opacity: .45; margin-top: 13px; letter-spacing: .1em; }
@media(max-width:900px){ .posts-grid{grid-template-columns:repeat(2,1fr);} }
@media(max-width:640px){ .posts-grid{grid-template-columns:1fr;} }

/* =====================================================
   PORTFOLIO
   ===================================================== */
.portfolio-hero { padding: 140px 0 80px; text-align: center; border-bottom: 0.5px solid var(--border-light); background: var(--ivory); }
.portfolio-hero h1 { color: var(--ink); }
.portfolio-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 4px; margin-top: 52px; }
.portfolio-grid .film-tile { aspect-ratio: 4/3; }
@media(max-width:900px){ .portfolio-grid{grid-template-columns:repeat(2,1fr);} }
@media(max-width:640px){ .portfolio-grid{grid-template-columns:1fr;} }

/* =====================================================
   FOOTER  — chocolate dark
   ===================================================== */
.site-footer { background: var(--choco); border-top: 0.5px solid var(--border-dark); padding: 72px 0 0; }
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 52px; padding-bottom: 52px; }
.foot-brand p { font-size: 12px; max-width: 270px; color: var(--linen-dim); }
.foot-logo-joe   { color: var(--linen); }
.foot-logo-verry { color: var(--gold); }
.foot-logo-sub   { display: block; margin-top: 4px; font-size: 8px; letter-spacing: .42em; text-transform: uppercase; color: var(--linen-dim); font-family: var(--sans); font-weight: 300; }
.foot-social { display: flex; gap: 18px; margin-top: 26px; }
.foot-social a { font-size: 9px; letter-spacing: .24em; text-transform: uppercase; color: var(--linen-dim); }
.foot-social a:hover { color: var(--gold); }
.foot-col h5 { font-family: var(--sans); font-size: 9px; letter-spacing: .28em; text-transform: uppercase; color: var(--gold); margin-bottom: 22px; font-weight: 400; }
.foot-col ul { display: flex; flex-direction: column; gap: 11px; }
.foot-col ul a { font-size: 12px; color: var(--linen-dim); }
.foot-col ul a:hover { color: var(--gold); }
.foot-col ul span { font-size: 12px; color: var(--linen-dim); }
.foot-bottom { border-top: 0.5px solid rgba(255,255,255,.04); padding: 22px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.foot-copy  { font-size: 10.5px; color: rgba(237,229,218,.3); }
.foot-legal { display: flex; gap: 22px; }
.foot-legal a { font-size: 10.5px; color: rgba(237,229,218,.3); }
.foot-legal a:hover { color: var(--linen-dim); }
@media(max-width:960px){ .foot-grid{grid-template-columns:1fr 1fr;} .foot-brand{grid-column:1/-1;} }
@media(max-width:640px){ .foot-grid{grid-template-columns:1fr;} }

/* =====================================================
   VIDEO LIGHTBOX
   ===================================================== */
.v-modal {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(12,8,6,.97);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
.v-modal.open { opacity: 1; pointer-events: all; }
.v-close {
  position: absolute; top: 22px; right: 28px;
  font-size: 32px; color: var(--linen-dim);
  background: none; border: none; cursor: pointer;
  transition: color .3s; font-weight: 300; line-height: 1;
}
.v-close:hover { color: var(--gold); }
.v-frame { width: 90vw; max-width: 940px; aspect-ratio: 16/9; }
.v-frame iframe, .v-frame video { width: 100%; height: 100%; border: none; }

/* =====================================================
   ANIMATIONS
   ===================================================== */
.rise { opacity: 0; transform: translateY(28px); transition: opacity .75s ease, transform .75s ease; }
.rise.in { opacity: 1; transform: translateY(0); }
@media(prefers-reduced-motion:reduce){ .rise{opacity:1;transform:none;transition:none;} .hero-scroll{animation:none;} }

/* =====================================================
   WP CORE
   ===================================================== */
.pagination { display: flex; gap: 8px; justify-content: center; margin-top: 72px; }
.pagination a, .pagination span {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  border: 0.5px solid var(--border-light); color: var(--warm); font-size: 12px; transition: all .3s;
}
.pagination a:hover, .pagination span.current { border-color: var(--gold); color: var(--gold); }
.entry-content p { color: var(--ink-soft); font-size: 15px; line-height: 1.85; margin-bottom: 20px; }
.entry-content h2, .entry-content h3 { margin: 36px 0 14px; color: var(--ink); }
.entry-content a { color: var(--gold); }
.entry-content blockquote {
  border-left: 2px solid var(--gold); padding: 20px 28px; margin: 32px 0;
  background: var(--ivory2); font-family: var(--serif); font-style: italic;
  font-size: 20px; color: var(--ink);
}
