/*
Theme Name: Junipero
Theme URI: https://github.com/
Author: IWT - Impact Web Technologies
Author URI: https://iwt.io
Description: A dark, one-page creative agency WordPress theme with smooth scroll navigation, filterable portfolio grid, client logos, and contact form.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: junipero
Tags: one-page, portfolio, dark, agency, creative, full-width-template
*/

/* ============================================================
   ROOT & VARIABLES
   ============================================================ */
:root {
  --bg:           #080808;
  --bg-card:      #101010;
  --bg-hover:     #161616;
  --text:         #f0ede8;
  --text-muted:   #909090;
  --text-dim:     #9a9a9a;
  --accent:       #d63c30;
  --accent-light: #e85448;
  --border:       rgba(255, 255, 255, 0.07);
  --nav-height:   80px;

  --font-display: 'Fraunces', Georgia, serif;
  --font-heading: 'Epilogue', sans-serif;
  --font-body:    'Source Sans 3', sans-serif;

  --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out:  cubic-bezier(0.65, 0, 0.35, 1);
  --duration:     0.7s;
  --duration-fast:0.25s;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  overflow-x: hidden;
  cursor: auto;
}



img { display: block; width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { border: none; background: none; cursor: none; }
ul { list-style: none; }

::selection {
  background: var(--accent);
  color: #fff;
}



/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.display-text {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.section-label {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.section {
  padding: 140px 0;
}

.section--alt {
  background: var(--bg-card);
}

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity var(--duration) var(--ease-out),
              transform var(--duration) var(--ease-out);
}

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

.reveal-line {
  overflow: hidden;
  display: block;
}

.reveal-line span {
  display: block;
  transform: translateY(110%);
  transition: transform 0.9s var(--ease-out);
}

.reveal-line.is-visible span {
  transform: translateY(0);
}

/* Stagger delays */
.reveal:nth-child(2), .stagger-2 { transition-delay: 0.1s; }
.reveal:nth-child(3), .stagger-3 { transition-delay: 0.2s; }
.reveal:nth-child(4), .stagger-4 { transition-delay: 0.3s; }
.reveal:nth-child(5), .stagger-5 { transition-delay: 0.4s; }
.reveal:nth-child(6), .stagger-6 { transition-delay: 0.5s; }
.reveal:nth-child(7) { transition-delay: 0.55s; }
.reveal:nth-child(8) { transition-delay: 0.6s; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  background: transparent;
  transition: background 0.5s ease, border-bottom 0.5s ease;
}

.site-nav.is-scrolled {
  background: rgba(8, 8, 8, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav-logo span {
  color: var(--accent);
}

.nav-links {
  display: flex;
  gap: 48px;
  align-items: center;
}

.nav-links a {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  position: relative;
  transition: color var(--duration-fast);
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 0.3s var(--ease-out);
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--text);
}

.nav-links a:hover::after,
.nav-links a.is-active::after {
  width: 100%;
}

.nav-cta {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text) !important;
  padding: 10px 22px;
  border: 1px solid var(--border);
  border-radius: 2px;
  transition: background var(--duration-fast), border-color var(--duration-fast) !important;
}

.nav-cta:hover {
  background: var(--accent) !important;
  border-color: var(--accent) !important;
  color: #fff !important;
}

.nav-cta::after { display: none !important; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.nav-hamburger span {
  display: block;
  width: 24px; height: 1px;
  background: var(--text);
  transition: transform 0.3s, opacity 0.3s;
}

/* Mobile nav overlay */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}

.nav-mobile.is-open {
  opacity: 1;
  pointer-events: all;
}

.nav-mobile a {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text-muted);
  transition: color 0.2s;
}

.nav-mobile a:hover { color: var(--text); }

/* ============================================================
   HERO
   ============================================================ */
#hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 100px;
  /* Extend behind the fixed nav */
  margin-top: 0;
  overflow: hidden;
}

/* Nav text always light when sitting over the hero photo */
.site-nav:not(.is-scrolled) .nav-links a,
.site-nav:not(.is-scrolled) .nav-logo {
  color: rgba(255, 255, 255, 0.85);
}

.site-nav:not(.is-scrolled) .nav-links a:hover,
.site-nav:not(.is-scrolled) .nav-links a.is-active {
  color: #fff;
}

.site-nav:not(.is-scrolled) .nav-cta {
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.35) !important;
}

.site-nav:not(.is-scrolled) .nav-cta:hover {
  background: var(--accent) !important;
  border-color: var(--accent) !important;
}

.site-nav:not(.is-scrolled) .nav-hamburger span {
  background: #fff;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transform: scale(1.04);
  transition: transform 8s ease-out;
}

.hero-bg.is-loaded {
  transform: scale(1);
}

/* Overlay: light gradient so text stays readable over any photo */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 8, 20, 0.28);
  mix-blend-mode: multiply;
  z-index: 1;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.20) 0%,
    rgba(0, 0, 0, 0.40) 50%,
    rgba(0, 0, 0, 0.72) 100%
  );
}

/* When bg image is set, darken text for contrast */
#hero.has-bg-image .hero-eyebrow,
#hero.has-bg-image .hero-sub,
#hero.has-bg-image .hero-scroll {
  color: var(--text-muted);
}

#hero.has-bg-image .hero-headline {
  color: var(--text);
}

.hero-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.025'/%3E%3C/svg%3E");
  background-size: 200px;
  pointer-events: none;
  opacity: 0.6;
}

.hero-line {
  position: absolute;
  right: 40px; top: 0; bottom: 0;
  width: 1px;
  background: var(--border);
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px; height: 1px;
  background: var(--accent);
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 9.5rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 60px;
  max-width: 1000px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hero-headline .word--static {
  display: block;
  overflow: hidden;
  line-height: 1.05;
}

.hero-headline .word--static span {
  display: block;
  transform: translateY(110%);
  transition: transform 1.1s var(--ease-out);
}

.hero-headline .word--static:nth-child(1) span { transition-delay: 0.05s; }
.hero-headline .word--static:nth-child(2) span { transition-delay: 0.15s; }
.hero-headline .word--static:nth-child(3) span { transition-delay: 0.25s; }
.hero-headline .word--static:nth-child(4) span { transition-delay: 0.35s; }

.hero-headline .word--static span.is-visible {
  transform: translateY(0);
}

/* Typewriter */
.word--rotating {
  display: block;
  overflow: visible;
  /* Reserve height equal to one line so layout never jumps */
  min-height: 1.05em;
}

.typewriter-text {
  color: var(--accent);
  white-space: nowrap;
}

.typewriter-cursor {
  display: inline-block;
  width: 3px;
  background: var(--accent);
  margin-left: 4px;
  vertical-align: baseline;
  position: relative;
  top: -0.05em;
  height: 0.85em;
  animation: cursorBlink 1s step-end infinite;
}

@keyframes cursorBlink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

.hero-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.hero-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 400px;
  line-height: 1.8;
}

.hero-scroll {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  cursor: auto;
}

.hero-scroll-line {
  width: 40px; height: 1px;
  background: var(--text-muted);
  position: relative;
  overflow: hidden;
}

.hero-scroll-line::after {
  content: '';
  position: absolute;
  left: -100%; top: 0;
  width: 100%; height: 100%;
  background: var(--text);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%   { left: -100%; }
  50%  { left: 0%; }
  100% { left: 100%; }
}

/* Counter strip */
.hero-counter {
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%) rotate(90deg);
  transform-origin: center center;
  font-family: var(--font-heading);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  white-space: nowrap;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}

.about-left {
  position: sticky;
  top: 120px;
}

.about-number {
  font-family: var(--font-display);
  font-size: 8rem;
  font-weight: 300;
  color: rgba(0,0,0,0.05);
  line-height: 1;
  margin-bottom: -20px;
  display: block;
  user-select: none;
}

.about-heading {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  margin-bottom: 28px;
}

.about-text {
  color: var(--text-dim);
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 20px;
}

.about-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--text);
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.about-feature {
  background: var(--bg);
  padding: 36px 32px;
  transition: background var(--duration-fast);
}

.about-feature:hover {
  background: var(--bg-hover);
}

.feature-icon {
  width: 32px; height: 32px;
  margin-bottom: 20px;
  color: var(--accent);
}

.feature-title {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}

.feature-text {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================================
   PORTFOLIO
   ============================================================ */
.portfolio-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 60px;
  gap: 40px;
  flex-wrap: wrap;
}

.portfolio-heading {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
}

.portfolio-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-btn {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 9px 18px;
  border: 1px solid var(--border);
  border-radius: 2px;
  color: var(--text-muted);
  cursor: auto;
  transition: all var(--duration-fast);
}

.filter-btn:hover {
  color: var(--text);
  border-color: rgba(255,255,255,0.2);
}

.filter-btn.is-active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.portfolio-item {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg-card);
  cursor: auto;
}

.portfolio-item.is-hidden {
  display: none;
}

.portfolio-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}

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

.portfolio-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
}

.portfolio-item:hover .portfolio-item-overlay {
  opacity: 1;
}

.portfolio-item-cat {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.portfolio-item-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
}

/* Portfolio placeholder (no image) */
.portfolio-item-placeholder {
  width: 100%; height: 100%;
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
}

.portfolio-item-placeholder .ph-inner {
  text-align: center;
}

.portfolio-item-placeholder .ph-number {
  font-family: var(--font-display);
  font-size: 4rem;
  color: rgba(0,0,0,0.06);
  line-height: 1;
  display: block;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 100px;
  align-items: start;
}

.contact-info-heading {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 40px;
  line-height: 1.1;
}

.contact-info-heading em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
}

.contact-details {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-detail-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.contact-detail-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.contact-detail-label {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.contact-detail-value {
  font-size: 1.05rem;
  color: var(--text);
}

.contact-detail-value a:hover {
  color: var(--accent);
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-group input,
.form-group textarea,
.form-group select {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 14px 18px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--duration-fast);
  cursor: auto;
  outline: none;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
}

.form-group textarea {
  resize: vertical;
  min-height: 160px;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23606060' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-group select option {
  background: var(--bg);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: rgba(255,255,255,0.25);
}

.form-submit {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 18px 36px;
  background: var(--accent);
  color: #fff;
  border-radius: 2px;
  cursor: auto;
  border: 1px solid var(--accent);
  transition: background var(--duration-fast), transform 0.2s var(--ease-out);
  align-self: flex-start;
}

.form-submit:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
}

.form-submit svg {
  transition: transform 0.3s var(--ease-out);
}

.form-submit:hover svg {
  transform: translateX(4px);
}

.form-message {
  padding: 16px 20px;
  border-radius: 2px;
  font-size: 0.9rem;
  display: none;
}

.form-message.success {
  display: block;
  background: rgba(50, 180, 100, 0.1);
  border: 1px solid rgba(50, 180, 100, 0.3);
  color: #5ecf8a;
}

.form-message.error {
  display: block;
  background: rgba(214, 60, 48, 0.1);
  border: 1px solid rgba(214, 60, 48, 0.3);
  color: var(--accent-light);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  padding: 40px 0;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

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

.footer-copy a:hover { color: var(--accent); }

.footer-socials {
  display: flex;
  gap: 28px;
}

.footer-socials a {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--duration-fast);
}

.footer-socials a:hover { color: var(--text); }

/* ============================================================
   SCROLL PROGRESS BAR
   ============================================================ */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  background: var(--accent);
  width: 0%;
  z-index: 200;
  transition: width 0.1s linear;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-left { position: static; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 60px; }
  .testimonials-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-height: 64px; }
  .container { padding: 0 24px; }
  .section { padding: 100px 0; }

  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .nav-mobile { display: flex; }

  .hero-headline { font-size: clamp(3rem, 13vw, 6rem); }
  .hero-bottom { flex-direction: column; align-items: flex-start; }
  .hero-line { display: none; }

  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-header { flex-direction: column; align-items: flex-start; }

  .form-row { grid-template-columns: 1fr; }

  .about-features { grid-template-columns: 1fr; }

  .clients-strip { justify-content: center; }
  .client-item { flex: 1 1 calc(100% / 3); border-right: none; border-bottom: 1px solid var(--border); }

  .footer-inner { flex-direction: column; text-align: center; }
  .footer-socials { justify-content: center; }
}

@media (max-width: 480px) {
  .section { padding: 80px 0; }
  .testimonial-card { padding: 36px 28px; }
}

/* ============================================================
   CF7 OVERRIDES (if Contact Form 7 is used)
   ============================================================ */
.wpcf7-form p { margin: 0; }
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 14px 18px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  border-radius: 2px;
}
.wpcf7-form input[type="submit"] {
  background: var(--accent);
  color: #fff;
  border: 1px solid var(--accent);
  padding: 16px 36px;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  transition: background 0.2s;
}
.wpcf7-form input[type="submit"]:hover { background: var(--accent-light); }
