/*
Theme Name: Brian Berry Real Estate
Theme URI: https://brianberryrealestate.com
Author: Brian A. Berry
Author URI: https://brianberryrealestate.com
Description: A professional real estate theme for Brian A. Berry, SRES® Broker at CENTURY 21 North Homes Realty. Designed for senior transitions, inherited property, and life-stage real estate consulting.
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: brian-berry
Tags: real-estate, one-page, custom-colors, custom-logo, custom-menu, featured-images, full-width-template, sticky-post, theme-options
*/

/* ==========================================================================
   CSS Custom Properties
   ========================================================================== */
:root {
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --dark: #1A1A1A;
  --charcoal: #2C2C2C;
  --warm-white: #F9F6F1;
  --mid-gray: #6B6B6B;
  --c21-black: #1C1C1C;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', 'Helvetica Neue', Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--warm-white);
  color: var(--dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* ==========================================================================
   Typography
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.1;
}

p { line-height: 1.75; }

/* ==========================================================================
   Utility Classes
   ========================================================================== */
.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}
.section-label-line {
  width: 40px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.section-label-text {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  font-family: var(--font-body);
}
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.5vw, 52px);
  color: var(--dark);
  line-height: 1.1;
  font-weight: 400;
  margin-bottom: 32px;
}
.section-heading em { font-style: italic; }
.section-heading--light { color: #fff; }

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  padding: 16px 36px;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--gold);
  color: var(--dark);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}
.btn-secondary {
  border: 1px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.8);
  background: transparent;
}
.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ==========================================================================
   Navigation
   ========================================================================== */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(26,26,26,0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(201,168,76,0.3);
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  transition: background 0.3s;
}
.site-branding {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav-c21-label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
}
.nav-divider {
  width: 1px;
  height: 24px;
  background: rgba(201,168,76,0.4);
}
.site-title {
  font-family: var(--font-display);
  font-size: 18px;
  color: #fff;
  letter-spacing: 1px;
  font-weight: 400;
}
.site-title a { color: #fff; }
.site-title a:hover { color: var(--gold); }

#primary-navigation ul {
  display: flex;
  align-items: center;
  gap: 36px;
}
#primary-navigation ul li a {
  color: rgba(255,255,255,0.75);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 400;
  font-family: var(--font-body);
  transition: color 0.2s;
  padding: 4px 0;
}
#primary-navigation ul li a:hover,
#primary-navigation ul li.current-menu-item > a {
  color: var(--gold);
}
#primary-navigation ul li.menu-item-cta > a {
  background: var(--gold);
  color: var(--dark) !important;
  padding: 10px 22px !important;
  font-weight: 600 !important;
  letter-spacing: 1.5px !important;
  transition: background 0.2s;
}
#primary-navigation ul li.menu-item-cta > a:hover {
  background: var(--gold-light);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: all 0.3s;
}
.nav-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-active span:nth-child(2) { opacity: 0; }
.nav-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 70px;
  background: var(--c21-black);
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 60%, rgba(201,168,76,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px 80px 80px;
  position: relative;
  z-index: 2;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}
.hero-badge-line {
  width: 32px;
  height: 1px;
  background: var(--gold);
}
.hero-badge-text {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  font-family: var(--font-body);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 68px);
  color: #fff;
  line-height: 1.05;
  font-weight: 300;
  margin-bottom: 8px;
  opacity: 0;
  animation: fadeUp 0.8s 0.4s forwards;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-subtitle {
  font-family: var(--font-display);
  font-size: clamp(16px, 2vw, 22px);
  color: rgba(255,255,255,0.5);
  font-weight: 300;
  letter-spacing: 2px;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.8s 0.55s forwards;
}
.hero-tagline {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  max-width: 460px;
  margin-bottom: 52px;
  font-weight: 300;
  opacity: 0;
  animation: fadeUp 0.8s 0.7s forwards;
}
.hero-designations {
  display: flex;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 0.85s forwards;
}
.desig-tag {
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold-light);
  padding: 6px 14px;
  font-size: 11px;
  letter-spacing: 2px;
  font-weight: 500;
  font-family: var(--font-body);
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 1s forwards;
}

/* Hero Photo */
.hero-photo-wrap {
  position: relative;
  overflow: hidden;
}
.hero-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0;
  animation: fadeIn 1s 0.3s forwards;
}
.hero-photo-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--c21-black) 0%, transparent 30%),
              linear-gradient(to top, var(--c21-black) 0%, transparent 25%);
  pointer-events: none;
}
.hero-photo-tag {
  position: absolute;
  bottom: 40px;
  left: 40px;
  z-index: 3;
  background: rgba(26,26,26,0.85);
  border-left: 3px solid var(--gold);
  padding: 16px 20px;
  backdrop-filter: blur(4px);
  opacity: 0;
  animation: fadeUp 0.8s 1.1s forwards;
}
.hero-photo-tag-name {
  font-family: var(--font-display);
  font-size: 20px;
  color: #fff;
  font-weight: 400;
}
.hero-photo-tag-title {
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 4px;
  font-family: var(--font-body);
  font-weight: 500;
}

/* ==========================================================================
   Stats Bar
   ========================================================================== */
.stats-bar {
  background: var(--gold);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.stat-item {
  padding: 36px 40px;
  border-right: 1px solid rgba(0,0,0,0.12);
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.stat-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-display);
  font-size: 44px;
  color: var(--dark);
  font-weight: 600;
  line-height: 1;
}
.stat-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(26,26,26,0.7);
  margin-top: 6px;
  font-weight: 500;
  font-family: var(--font-body);
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
}
.about-text-col {
  padding: 100px 80px 100px 100px;
  background: var(--warm-white);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-body {
  font-size: 15px;
  line-height: 1.8;
  color: var(--mid-gray);
  font-weight: 300;
  margin-bottom: 20px;
}
.about-highlight {
  background: linear-gradient(to right, rgba(201,168,76,0.1), transparent);
  border-left: 3px solid var(--gold);
  padding: 20px 24px;
  margin: 32px 0;
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--charcoal);
  font-style: italic;
  line-height: 1.5;
}
.about-visual-col {
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 60px;
}
.about-visual-col::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 30%, rgba(201,168,76,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.about-visual-header {
  position: absolute;
  top: 60px;
  left: 60px;
  right: 60px;
  z-index: 2;
}
.specialty-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  position: relative;
  z-index: 2;
}
.specialty-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,168,76,0.2);
  padding: 28px 24px;
  transition: background 0.3s, border-color 0.3s;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease, background 0.3s, border-color 0.3s;
}
.specialty-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.specialty-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(201,168,76,0.5);
}
.specialty-icon { font-size: 24px; margin-bottom: 12px; }
.specialty-title {
  font-family: var(--font-display);
  font-size: 18px;
  color: #fff;
  font-weight: 400;
  margin-bottom: 8px;
}
.specialty-desc {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  font-weight: 300;
}

/* ==========================================================================
   Services Section
   ========================================================================== */
.services-section {
  background: var(--dark);
  padding: 100px;
}
.services-header {
  text-align: center;
  margin-bottom: 70px;
}
.services-header .section-label { justify-content: center; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(201,168,76,0.15);
}
.service-block {
  background: var(--dark);
  padding: 52px 40px;
  transition: background 0.3s;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease, background 0.3s;
}
.service-block.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.service-block::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.service-block:hover::before { transform: scaleX(1); }
.service-block:hover { background: #242424; }
.service-number {
  font-family: var(--font-display);
  font-size: 64px;
  color: rgba(201,168,76,0.15);
  font-weight: 600;
  line-height: 1;
  margin-bottom: 20px;
}
.service-title {
  font-family: var(--font-display);
  font-size: 24px;
  color: #fff;
  font-weight: 400;
  margin-bottom: 16px;
}
.service-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
  font-weight: 300;
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 60vh;
}
.contact-info-col {
  background: var(--gold);
  padding: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-info-col .section-label-text { color: var(--dark); }
.contact-info-col .section-label-line { background: var(--dark); }
.contact-info-col .section-heading { color: var(--dark); }
.contact-details {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-item-icon { font-size: 18px; margin-top: 2px; flex-shrink: 0; }
.contact-item-label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(26,26,26,0.6);
  font-weight: 600;
  margin-bottom: 4px;
  font-family: var(--font-body);
}
.contact-item-value {
  font-size: 15px;
  color: var(--dark);
  font-weight: 400;
}
.contact-item-value a { color: var(--dark); }
.contact-form-col {
  background: var(--charcoal);
  padding: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-form-title {
  font-family: var(--font-display);
  font-size: 32px;
  color: #fff;
  font-weight: 400;
  margin-bottom: 36px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 8px;
  font-weight: 500;
  font-family: var(--font-body);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  border-radius: 0;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--gold); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-group textarea { height: 100px; resize: vertical; }
.form-group select option { background: var(--charcoal); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.btn-submit {
  background: var(--gold);
  color: var(--dark);
  border: none;
  padding: 16px 40px;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  margin-top: 8px;
  transition: background 0.2s;
  width: 100%;
}
.btn-submit:hover { background: var(--gold-light); }

/* Form success/error messages */
.wpcf7-response-output {
  margin-top: 16px !important;
  padding: 12px 16px !important;
  border: none !important;
  font-size: 13px !important;
  font-family: var(--font-body) !important;
}
.wpcf7-mail-sent-ok {
  background: rgba(201,168,76,0.2) !important;
  color: var(--gold-light) !important;
  border-left: 3px solid var(--gold) !important;
}
.wpcf7-validation-errors,
.wpcf7-acceptance-missing {
  background: rgba(255,80,80,0.15) !important;
  color: #ff9090 !important;
  border-left: 3px solid #ff5050 !important;
}

/* ==========================================================================
   Footer
   ========================================================================== */
#site-footer {
  background: #111;
  padding: 60px 100px 40px;
  border-top: 1px solid rgba(201,168,76,0.2);
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 28px;
  color: #fff;
  font-weight: 300;
  letter-spacing: 1px;
}
.footer-brand-c21 {
  display: block;
  font-size: 11px;
  font-family: var(--font-body);
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 4px;
}
.footer-nav ul {
  display: flex;
  gap: 36px;
}
.footer-nav ul li a {
  color: rgba(255,255,255,0.5);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-family: var(--font-body);
  transition: color 0.2s;
}
.footer-nav ul li a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  line-height: 1.6;
  font-family: var(--font-body);
}
.footer-logos { display: flex; gap: 12px; align-items: center; }
.footer-logo-badge {
  font-size: 10px;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.3);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 6px 12px;
  text-transform: uppercase;
  font-family: var(--font-body);
}

/* ==========================================================================
   WordPress Core Styles
   ========================================================================== */
.wp-block-image { margin: 32px 0; }
.alignleft { float: left; margin-right: 24px; margin-bottom: 16px; }
.alignright { float: right; margin-left: 24px; margin-bottom: 16px; }
.aligncenter { margin-left: auto; margin-right: auto; text-align: center; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 13px; color: var(--mid-gray); margin-top: 8px; }
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px; width: 1px;
  overflow: hidden;
  word-wrap: normal !important;
}
.skip-link {
  background: var(--gold);
  color: var(--dark);
  font-weight: 700;
  left: -9999rem;
  padding: 15px 23px 14px;
  position: absolute;
  text-decoration: none;
  top: auto;
}
.skip-link:focus { clip: auto; height: auto; left: 6px; top: 7px; width: auto; z-index: 100000; }

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

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .services-section { padding: 80px 60px; }
  #site-footer { padding: 60px 60px 40px; }
}

@media (max-width: 900px) {
  #site-header { padding: 0 24px; }
  #primary-navigation { display: none; position: absolute; top: 70px; left: 0; right: 0; background: rgba(26,26,26,0.98); padding: 24px; border-top: 1px solid rgba(201,168,76,0.2); }
  #primary-navigation.is-open { display: block; }
  #primary-navigation ul { flex-direction: column; gap: 0; }
  #primary-navigation ul li a { display: block; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.06); font-size: 13px; }
  .nav-toggle { display: flex; }

  .hero-section { grid-template-columns: 1fr; min-height: auto; }
  .hero-photo-wrap { height: 55vw; max-height: 480px; }
  .hero-content { padding: 60px 32px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; }

  .stats-bar { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(0,0,0,0.12); }

  .about-section { grid-template-columns: 1fr; }
  .about-text-col { padding: 60px 32px; }
  .about-visual-col { padding: 40px 32px; min-height: auto; }
  .about-visual-header { top: 32px; left: 32px; right: 32px; }
  .specialty-grid { margin-top: 80px; }

  .services-section { padding: 80px 32px; }
  .services-grid { grid-template-columns: 1fr; gap: 2px; }

  .contact-section { grid-template-columns: 1fr; }
  .contact-info-col, .contact-form-col { padding: 60px 32px; }

  #site-footer { padding: 60px 32px 40px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-nav ul { flex-wrap: wrap; gap: 16px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .specialty-grid { grid-template-columns: 1fr; }
  .hero-designations { gap: 8px; }
}
/* ── Contact Form 7 overrides ── */
.wpcf7 .wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.wpcf7 .wpcf7-form p {
    margin: 0;
}

.wpcf7 .wpcf7-form label {
    display: block;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: 8px;
    font-weight: 500;
    font-family: var(--font-body);
}

.wpcf7 .wpcf7-form input[type="text"],
.wpcf7 .wpcf7-form input[type="email"],
.wpcf7 .wpcf7-form input[type="tel"],
.wpcf7 .wpcf7-form textarea,
.wpcf7 .wpcf7-form select {
    width: 100%;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    color: #fff;
    padding: 14px 16px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 300;
    outline: none;
    transition: border-color 0.2s;
    -webkit-appearance: none;
    border-radius: 0;
    box-sizing: border-box;
}

.wpcf7 .wpcf7-form input[type="text"]:focus,
.wpcf7 .wpcf7-form input[type="email"]:focus,
.wpcf7 .wpcf7-form input[type="tel"]:focus,
.wpcf7 .wpcf7-form textarea:focus,
.wpcf7 .wpcf7-form select:focus {
    border-color: var(--gold);
}

.wpcf7 .wpcf7-form input::placeholder,
.wpcf7 .wpcf7-form textarea::placeholder {
    color: rgba(255,255,255,0.3);
}

.wpcf7 .wpcf7-form textarea {
    height: 100px;
    resize: vertical;
}

.wpcf7 .wpcf7-form select option {
    background: var(--charcoal);
    color: #fff;
}

.wpcf7 .wpcf7-form input[type="submit"] {
    background: var(--gold);
    color: var(--dark);
    border: none;
    padding: 16px 40px;
    font-family: var(--font-body);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    width: 100%;
    border-radius: 0;
}

.wpcf7 .wpcf7-form input[type="submit"]:hover {
    background: var(--gold-light);
}

.wpcf7 .wpcf7-response-output {
    margin-top: 16px;
    padding: 12px 16px;
    border: none;
    font-size: 13px;
    font-family: var(--font-body);
    border-left: 3px solid var(--gold);
    background: rgba(201,168,76,0.15);
    color: var(--gold-light);
}

.wpcf7 .wpcf7-not-valid-tip {
    color: #ff9090;
    font-size: 12px;
    margin-top: 4px;
}