/*
Theme Name: Office Ice Cream Catering
Theme URI: https://officeicecreamcatering.com
Author: Shaka Froyo
Author URI: https://shakafroyo.com
Description: Professional office ice cream catering services for corporate events across San Diego County and Riverside County.
Version: 1.0
License: GNU General Public License v2 or later
Tags: catering, corporate, ice cream, events
*/

/* =============================================
   CSS VARIABLES — SHAKA FROYO BRAND SYSTEM
   ============================================= */
:root {
  --dark:       #1a1209;
  --dark-card:  #221a0f;
  --gold:       #c9a84c;
  --gold-light: #e2c97e;
  --cream:      #f5f0e8;
  --ivory:      #faf7f2;
  --text:       #2c2416;
  --text-light: #6b5c3e;
  --white:      #ffffff;
  --shadow:     0 4px 24px rgba(0,0,0,0.18);
  --radius:     8px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Cormorant Garamond', Georgia, serif;
  background: var(--ivory);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--gold-light); }

h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
  color: var(--dark);
}

p { margin-bottom: 1.2em; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =============================================
   GOOGLE FONTS IMPORT
   ============================================= */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&display=swap');

/* =============================================
   TOP BAR
   ============================================= */
.top-bar {
  background: var(--dark);
  color: var(--gold-light);
  text-align: center;
  padding: 8px 24px;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  font-family: 'Cormorant Garamond', serif;
}

.top-bar a { color: var(--gold-light); }
.top-bar a:hover { color: var(--white); }

/* =============================================
   HEADER / NAV
   ============================================= */
.site-header {
  background: var(--dark);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 16px rgba(0,0,0,0.4);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  max-width: 1160px;
  margin: 0 auto;
}

.site-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.04em;
  line-height: 1.1;
}

.site-logo span {
  display: block;
  font-size: 0.7rem;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  color: var(--gold-light);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.site-nav { display: flex; align-items: center; gap: 32px; list-style: none; }

.site-nav a {
  color: var(--cream);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  transition: color 0.3s;
}

.site-nav a:hover { color: var(--gold); }

.nav-cta {
  background: var(--gold) !important;
  color: var(--dark) !important;
  padding: 10px 22px !important;
  border-radius: var(--radius) !important;
  font-weight: 600 !important;
  transition: background 0.3s !important;
}

.nav-cta:hover { background: var(--gold-light) !important; }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--gold);
  transition: all 0.3s;
}

/* =============================================
   HERO
   ============================================= */
.hero {
  background: linear-gradient(135deg, var(--dark) 0%, #2d1f0a 50%, #1a1209 100%);
  color: var(--cream);
  padding: 100px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a84c' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.4;
}

.hero-badge {
  display: inline-block;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold-light);
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 40px;
  margin-bottom: 28px;
  position: relative;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 20px;
  position: relative;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.hero-sub {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: rgba(245,240,232,0.8);
  max-width: 620px;
  margin: 0 auto 40px;
  font-weight: 300;
  position: relative;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  margin-bottom: 60px;
}

.btn-primary {
  background: var(--gold);
  color: var(--dark);
  padding: 15px 36px;
  border-radius: var(--radius);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  transition: all 0.3s;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--gold-light);
  color: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--cream);
  padding: 15px 36px;
  border-radius: var(--radius);
  border: 1px solid rgba(245,240,232,0.35);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  transition: all 0.3s;
  display: inline-block;
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.hero-stats {
  display: flex;
  gap: 48px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  padding-top: 40px;
  border-top: 1px solid rgba(201,168,76,0.2);
}

.stat { text-align: center; }

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.6);
  margin-top: 4px;
}

/* =============================================
   TRUST LOGOS BAR
   ============================================= */
.trust-bar {
  background: var(--dark-card);
  border-top: 1px solid rgba(201,168,76,0.15);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  padding: 20px 24px;
  text-align: center;
}

.trust-bar-label {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.4);
  margin-bottom: 14px;
  font-family: 'Cormorant Garamond', serif;
}

.trust-logos {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}

.trust-logo-item {
  font-family: 'Playfair Display', serif;
  font-size: 0.9rem;
  color: rgba(201,168,76,0.5);
  letter-spacing: 0.08em;
  font-weight: 600;
}

/* =============================================
   SECTION DEFAULTS
   ============================================= */
.section { padding: 80px 0; }
.section-alt { background: var(--cream); }
.section-dark { background: var(--dark); color: var(--cream); }

.section-label {
  font-size: 0.78rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--dark);
}

.section-dark .section-title { color: var(--cream); }

.section-subtitle {
  font-size: 1.15rem;
  color: var(--text-light);
  max-width: 580px;
  margin-bottom: 48px;
  font-weight: 300;
}

.section-dark .section-subtitle { color: rgba(245,240,232,0.7); }

.text-center { text-align: center; }
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }

.gold-divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 16px 0 32px;
}

.text-center .gold-divider { margin-left: auto; margin-right: auto; }

/* =============================================
   HOW IT WORKS
   ============================================= */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.step-card {
  text-align: center;
  padding: 40px 28px;
  background: var(--ivory);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius);
  position: relative;
}

.step-number {
  width: 52px;
  height: 52px;
  background: var(--gold);
  color: var(--dark);
  border-radius: 50%;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.step-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--dark);
}

.step-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  margin: 0;
}

/* =============================================
   SERVICES / PACKAGES
   ============================================= */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 48px;
}

.package-card {
  background: var(--dark-card);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius);
  padding: 40px 32px;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}

.package-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}

.package-card.featured {
  border-color: var(--gold);
  background: linear-gradient(160deg, #2d1f0a 0%, var(--dark-card) 100%);
}

.featured-tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 40px;
  font-family: 'Cormorant Garamond', serif;
  white-space: nowrap;
}

.package-icon {
  font-size: 2.2rem;
  margin-bottom: 18px;
}

.package-card h3 {
  color: var(--gold);
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.package-card p {
  color: rgba(245,240,232,0.7);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.package-features {
  list-style: none;
  margin-bottom: 28px;
}

.package-features li {
  color: rgba(245,240,232,0.85);
  font-size: 0.92rem;
  padding: 6px 0;
  border-bottom: 1px solid rgba(201,168,76,0.1);
  display: flex;
  align-items: center;
  gap: 10px;
}

.package-features li::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.65rem;
  flex-shrink: 0;
}

/* =============================================
   WHY CHOOSE US
   ============================================= */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-top: 48px;
}

.benefit-card {
  background: var(--ivory);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: border-color 0.3s;
}

.benefit-card:hover { border-color: var(--gold); }

.benefit-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.benefit-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--dark);
}

.benefit-card p {
  font-size: 0.92rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.65;
}

/* =============================================
   SERVICE AREAS
   ============================================= */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 40px;
}

.area-item {
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius);
  padding: 18px 20px;
  text-align: center;
  color: var(--cream);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 500;
  transition: background 0.3s, border-color 0.3s;
}

.area-item:hover {
  background: rgba(201,168,76,0.15);
  border-color: var(--gold);
}

.area-item strong {
  display: block;
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.testimonial-card {
  background: var(--dark-card);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius);
  padding: 36px 28px;
}

.stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-card blockquote {
  color: rgba(245,240,232,0.85);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 20px;
  font-family: 'Cormorant Garamond', serif;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--dark);
  font-size: 1rem;
  flex-shrink: 0;
}

.author-info strong {
  display: block;
  color: var(--cream);
  font-size: 0.92rem;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
}

.author-info span {
  font-size: 0.8rem;
  color: var(--gold);
  letter-spacing: 0.05em;
}

/* =============================================
   FAQ
   ============================================= */
.faq-list { margin-top: 48px; max-width: 800px; margin-left: auto; margin-right: auto; }

.faq-item {
  border-bottom: 1px solid rgba(201,168,76,0.15);
  padding: 24px 0;
}

.faq-question {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 12px;
  font-weight: 600;
}

.faq-answer {
  font-size: 0.98rem;
  color: var(--text-light);
  line-height: 1.75;
  margin: 0;
}

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section {
  background: linear-gradient(135deg, var(--dark) 0%, #2d1f0a 100%);
  padding: 80px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a84c' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-section h2 {
  color: var(--cream);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 16px;
  position: relative;
}

.cta-section p {
  color: rgba(245,240,232,0.75);
  font-size: 1.15rem;
  max-width: 520px;
  margin: 0 auto 36px;
  position: relative;
}

/* =============================================
   CONTACT FORM
   ============================================= */
.contact-section { background: var(--cream); padding: 80px 0; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-top: 48px;
}

.contact-info h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--dark);
}

.contact-info p {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 28px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-detail-text strong {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  margin-bottom: 2px;
}

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

.wpcf7-form, .contact-form {
  background: var(--dark);
  border-radius: var(--radius);
  padding: 40px 36px;
  border: 1px solid rgba(201,168,76,0.2);
}

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-family: 'Cormorant Garamond', serif;
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea,
.wpcf7-form input,
.wpcf7-form select,
.wpcf7-form textarea {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: var(--radius);
  padding: 12px 16px;
  color: var(--cream);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  transition: border-color 0.3s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

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

.form-group select option { background: var(--dark); color: var(--cream); }

.form-submit {
  background: var(--gold);
  color: var(--dark);
  border: none;
  padding: 14px 36px;
  border-radius: var(--radius);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  transition: background 0.3s;
  letter-spacing: 0.06em;
}

.form-submit:hover { background: var(--gold-light); }

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--dark);
  color: rgba(245,240,232,0.6);
  padding: 60px 0 24px;
  border-top: 1px solid rgba(201,168,76,0.15);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand .site-logo { font-size: 1.3rem; margin-bottom: 14px; }

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: rgba(245,240,232,0.55);
}

.footer-col h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 600;
}

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

.footer-col ul li { margin-bottom: 8px; }

.footer-col ul li a {
  color: rgba(245,240,232,0.55);
  font-size: 0.9rem;
  transition: color 0.3s;
}

.footer-col ul li a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(201,168,76,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
}

.footer-bottom a { color: rgba(245,240,232,0.4); }
.footer-bottom a:hover { color: var(--gold); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 768px) {
  .site-nav { display: none; flex-direction: column; gap: 0; }
  .site-nav.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--dark);
    padding: 16px 0;
    border-top: 1px solid rgba(201,168,76,0.15);
  }
  .site-nav.open li { width: 100%; }
  .site-nav.open a {
    display: block;
    padding: 12px 24px;
  }
  .menu-toggle { display: flex; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { gap: 28px; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero { padding: 60px 24px 60px; }
}

/* =============================================
   CONTACT FORM 7 LABEL FIX
   ============================================= */
.wpcf7 label,
.wpcf7 .wpcf7-form label {
  color: var(--gold-light) !important;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}

.wpcf7 input,
.wpcf7 select,
.wpcf7 textarea {
  width: 100%;
  background: rgba(255,255,255,0.06) !important;
  border: 1px solid rgba(201,168,76,0.25) !important;
  border-radius: var(--radius) !important;
  padding: 12px 16px !important;
  color: var(--cream) !important;
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 1rem !important;
  margin-bottom: 16px;
}

.wpcf7 input::placeholder,
.wpcf7 textarea::placeholder {
  color: rgba(245,240,232,0.35) !important;
}

.wpcf7 input[type="submit"] {
  background: var(--gold) !important;
  color: var(--dark) !important;
  border: none !important;
  padding: 14px 36px !important;
  font-size: 1.1rem !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  width: 100% !important;
  letter-spacing: 0.06em !important;
  transition: background 0.3s !important;
  margin-top: 8px;
}

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

.wpcf7 select option {
  background: var(--dark);
  color: var(--cream);
}
