/*
Theme Name: Amey René Casting
Theme URI: https://ameyrene.wordpress.com
Author: OsirisAI
Author URI: https://ameyrene.wordpress.com
Description: Custom theme for Amey René Casting Director
Version: 1.0.0
License: GNU General Public License v2 or later
Tags: custom, casting, portfolio
*/

/* Amey René Casting - Redesigned Site */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600&family=Josefin+Sans:wght@100;200;300&display=swap');

:root {
    --black: #1a1a1a;
    --white: #ffffff;
    --off-white: #fafafa;
    --gray-light: #f5f5f5;
    --gray: #888888;
    --gray-dark: #333333;
    --gold: #c9a961;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 400;
    line-height: 1.7;
    color: var(--gray-dark);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 500;
    line-height: 1.3;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.8rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

.italic { font-style: italic; }

p {
    max-width: 680px;
    font-size: 1rem;
    color: var(--gray-dark);
}

a {
    color: var(--black);
    text-decoration: none;
    transition: opacity 0.2s ease;
}

a:hover {
    opacity: 0.7;
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

section {
    padding: 5rem 0;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    border-bottom: 1px solid rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

nav.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 36px;
    width: auto;
    display: block;
}

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

.nav-links a {
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    text-transform: none;
    font-weight: 400;
    font-style: italic;
    font-family: 'Playfair Display', serif;
    color: var(--gray-dark);
    position: relative;
}

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

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

/* Mobile Nav */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--black);
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s ease;
        border-bottom: 1px solid rgba(0,0,0,0.08);
    }
    
    .nav-links.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: var(--black);
    color: var(--white);
    text-align: center;
    padding: 6rem 2rem;
    position: relative;
}

.hero-logo {
    margin-bottom: 2rem;
}

.hero-logo-img {
    height: clamp(120px, 20vw, 200px);
    width: auto;
    display: block;
    margin: 0 auto;
}

.hero-location {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1rem;
    margin-top: 1.5rem;
    color: var(--gold);
    letter-spacing: 0.1em;
}

/* About Section (Homepage) */
.about-intro {
    background: var(--white);
    text-align: center;
}

.about-intro h2 {
    font-style: italic;
    margin-bottom: 2rem;
}

.about-intro p {
    margin: 0 auto 1.5rem;
    font-size: 1.05rem;
    line-height: 1.9;
}

/* Featured Projects */
.featured {
    background: var(--gray-light);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: var(--gray);
    margin-bottom: 0.5rem;
}

.section-header h3 {
    font-style: italic;
    font-size: 2rem;
}

/* Project Grid */
.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.project-card {
    position: relative;
    aspect-ratio: 2/3;
    overflow: hidden;
    border-radius: 4px;
    background: var(--gray-light);
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover img {
    transform: scale(1.05);
}

.project-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: var(--white);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.project-card:hover .project-card-overlay {
    transform: translateY(0);
}

.project-card h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.project-card span {
    font-size: 0.8rem;
    opacity: 0.8;
}

/* Placeholder for missing images */
.project-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    color: var(--white);
    text-align: center;
    padding: 2rem;
}

.project-placeholder h4 {
    font-size: 1.1rem;
    line-height: 1.4;
}

/* Team Section */
.team-preview {
    background: var(--white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.team-card {
    text-align: center;
}

.team-card img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.team-card:hover img {
    filter: grayscale(0%);
}

.team-card h4 {
    font-size: 1.3rem;
    margin-bottom: 0.25rem;
}

.team-card .role {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray);
}

.team-card .credential {
    display: inline-block;
    margin-top: 0.5rem;
    font-size: 0.8rem;
    background: var(--black);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
}

/* CTA Section */
.cta {
    background: var(--black);
    color: var(--white);
    text-align: center;
}

.cta h2 {
    color: var(--white);
    font-style: italic;
    margin-bottom: 1rem;
}

.cta p {
    color: rgba(255,255,255,0.8);
    margin: 0 auto 2rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--white);
    color: var(--black);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn:hover {
    background: var(--gold);
    color: var(--black);
    opacity: 1;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--black);
}

/* Footer */
footer {
    background: var(--black);
    color: var(--white);
    padding: 4rem 2rem 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    height: 64px;
    width: auto;
    display: block;
    margin-bottom: 0.75rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    color: var(--white);
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--gold);
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 3rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    max-width: none;
}

/* Projects Page */
.page-header {
    padding: 10rem 2rem 4rem;
    background: var(--black);
    color: var(--white);
    text-align: center;
}

.page-header h1 {
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

/* Category Filters */
.filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    padding: 2rem 2rem 0;
    background: var(--white);
    position: sticky;
    top: 60px;
    z-index: 100;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: 1px solid var(--gray);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

/* Project Category Sections */
.project-category {
    padding: 4rem 0;
}

.project-category:nth-child(even) {
    background: var(--gray-light);
}

.category-header {
    text-align: center;
    margin-bottom: 3rem;
}

.category-header h2 {
    font-size: 1.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

/* About Page */
.about-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--black);
    color: var(--white);
    text-align: center;
    padding: 8rem 2rem 4rem;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 5rem 0;
}

.about-content.reverse {
    direction: rtl;
}

.about-content.reverse > * {
    direction: ltr;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 4px;
}

.about-text h3 {
    margin-bottom: 1rem;
}

.about-text p {
    margin-bottom: 1.5rem;
}

@media (max-width: 900px) {
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-content.reverse {
        direction: ltr;
    }
    
    .about-image img {
        margin: 0 auto;
    }
}

/* Philosophy */
.philosophy {
    background: var(--gray-light);
    text-align: center;
}

.philosophy blockquote {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: clamp(1.5rem, 3vw, 2rem);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Full Team Section */
.team-full {
    padding: 5rem 0;
}

.team-member {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: start;
    max-width: 900px;
    margin: 0 auto 4rem;
}

.team-member:last-child {
    margin-bottom: 0;
}

.team-member img {
    width: 100%;
    border-radius: 4px;
}

.team-member h3 {
    font-size: 1.8rem;
    margin-bottom: 0.25rem;
}

.team-member .role {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray);
    margin-bottom: 1rem;
}

.team-member .credential {
    display: inline-block;
    background: var(--black);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-bottom: 1.5rem;
}

.team-member p {
    font-size: 1rem;
    line-height: 1.8;
}

.team-member .links {
    margin-top: 1.5rem;
}

.team-member .links a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-right: 1.5rem;
    font-size: 0.9rem;
    color: var(--gray-dark);
}

@media (max-width: 768px) {
    .team-member {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .team-member img {
        max-width: 250px;
        margin: 0 auto;
    }
    
    .team-member p {
        text-align: left;
    }
}

/* Contact Page */
.contact-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--black);
    color: var(--white);
    text-align: center;
    padding: 8rem 2rem 4rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 5rem 0;
}

.contact-info h3 {
    margin-bottom: 1rem;
}

.contact-info p {
    margin-bottom: 2rem;
}

.contact-email {
    font-size: 1.3rem;
    font-weight: 500;
}

.contact-social {
    margin-top: 2rem;
}

.contact-social h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    margin-bottom: 1rem;
}

.contact-social .social-links {
    justify-content: flex-start;
}

.contact-social .social-links a {
    color: var(--gray-dark);
}

/* Contact Form */
.contact-form h3 {
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 2px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--black);
}

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

.btn-submit {
    background: var(--black);
    color: var(--white);
    border: none;
    width: 100%;
}

.btn-submit:hover {
    background: var(--gray-dark);
}

/* Notice */
.notice {
    background: var(--gray-light);
    padding: 4rem 2rem;
    text-align: center;
}

.notice h3 {
    margin-bottom: 1rem;
}

.notice p {
    margin: 0 auto;
    color: var(--gray);
}

@media (max-width: 900px) {
    .contact-content {
        grid-template-columns: 1fr;
    }
}

/* Utilities */
.text-center { text-align: center; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-2 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }

/* View All Button */
.view-all {
    text-align: center;
    margin-top: 3rem;
}

.view-all a {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-bottom: 1px solid var(--black);
    padding-bottom: 0.25rem;
}

/* Responsive */
@media (max-width: 600px) {
    section {
        padding: 3rem 0;
    }
    
    .project-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .project-card {
        aspect-ratio: 2/3;
    }
}

/* News / What's Happening Section */
.news-section {
    padding: 5rem 0;
    background: var(--white);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2.5rem;
}

.news-card {
    border: 1px solid #e8e8e8;
    padding: 2rem;
    position: relative;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
    border-color: var(--black);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.news-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gold, #c9a961);
    border: 1px solid var(--gold, #c9a961);
    padding: 0.25rem 0.6rem;
    margin-bottom: 1rem;
}

.news-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 0.4rem;
    color: var(--black);
}

.news-meta {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gray);
    margin-bottom: 0.9rem;
}

.news-card p:not(.news-meta) {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.news-link {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    color: var(--black);
    border-bottom: 1px solid var(--black);
    padding-bottom: 0.15rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

.news-link:hover {
    color: var(--gold, #c9a961);
    border-color: var(--gold, #c9a961);
}

@media (max-width: 700px) {
    .news-grid {
        grid-template-columns: 1fr;
    }
}

/* Solo team card centering */
.team-grid-solo {
    justify-content: center;
}

.team-grid-solo .team-card {
    max-width: 280px;
}

/* ── HERO NEWS SECTION (top of page, full impact) ── */
.news-section--hero {
    background: #0e0e0e;
    padding: 5rem 0 4rem;
    border-bottom: 1px solid #2a2a2a;
}

.news-eyebrow {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold, #c9a961);
    margin-bottom: 0.75rem;
}

.news-headline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 2.5rem;
    line-height: 1.15;
}

/* Override card styles inside dark hero section */
.news-section--hero .news-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.news-section--hero .news-card {
    background: #1a1a1a;
    border: 1px solid #2e2e2e;
    padding: 2rem;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.news-section--hero .news-card:hover {
    border-color: var(--gold, #c9a961);
    background: #222;
    box-shadow: none;
}

.news-section--hero .news-card h4 {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 0.4rem;
}

.news-section--hero .news-card p:not(.news-meta) {
    color: #aaa;
    font-size: 0.95rem;
}

.news-section--hero .news-meta {
    color: #666;
}

/* Featured cards get a left gold border accent */
.news-card--featured {
    border-left: 3px solid var(--gold, #c9a961) !important;
}

.news-section--hero .news-link {
    color: var(--gold, #c9a961);
    border-bottom-color: var(--gold, #c9a961);
    font-size: 0.78rem;
}

.news-section--hero .news-link:hover {
    color: #fff;
    border-bottom-color: #fff;
}

@media (max-width: 700px) {
    .news-section--hero .news-grid {
        grid-template-columns: 1fr;
    }
    .news-headline {
        font-size: 1.75rem;
    }
}

/* Center solo team card */
.team-grid-solo {
    display: flex;
    justify-content: center;
}

/* ── PODCAST SECTION ── */
.podcast-section {
    padding: 5rem 0;
    background: var(--gray-light);
}

.podcast-intro {
    max-width: 600px;
    margin: 0 auto 2rem;
    text-align: center;
    color: var(--gray);
    font-size: 1.05rem;
    line-height: 1.7;
}

.podcast-embed {
    max-width: 700px;
    margin: 0 auto;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* ── PRESS SECTION ── */
.press-section {
    padding: 5rem 0;
    background: var(--white);
}

.press-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

.press-card {
    display: block;
    border: 1px solid #e8e8e8;
    padding: 2rem;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.press-card:hover {
    border-color: var(--black);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-decoration: none;
    color: inherit;
}

.press-source {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gold, #c9a961);
    margin-bottom: 0.75rem;
    font-family: 'Inter', sans-serif;
}

.press-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.press-excerpt {
    font-size: 0.93rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.press-read-more {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    color: var(--black);
    border-bottom: 1px solid var(--black);
    padding-bottom: 0.15rem;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.press-card:hover .press-read-more {
    color: var(--gold, #c9a961);
    border-color: var(--gold, #c9a961);
}

/* ── JETPACK CONTACT FORM OVERRIDES ── */
/* Force Jetpack's form to match our theme styling */
.contact-form .contact-form,
.contact-form form {
    margin: 0;
}

.contact-form .grunion-field-wrap,
.contact-form .contact-form__field,
.contact-form p {
    margin-bottom: 1.5rem !important;
}

.contact-form label,
.contact-form .grunion-field-wrap label {
    display: block !important;
    font-size: 0.85rem !important;
    font-weight: 500 !important;
    margin-bottom: 0.5rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    font-family: 'Inter', sans-serif !important;
    color: var(--black) !important;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea,
.contact-form .grunion-field-wrap input,
.contact-form .grunion-field-wrap textarea {
    width: 100% !important;
    padding: 0.9rem 1rem !important;
    border: 1px solid #ddd !important;
    border-radius: 2px !important;
    font-family: inherit !important;
    font-size: 1rem !important;
    transition: border-color 0.3s ease !important;
    background: #fff !important;
    box-sizing: border-box !important;
    box-shadow: none !important;
    outline: none !important;
    -webkit-appearance: none !important;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form textarea:focus {
    border-color: var(--black) !important;
    box-shadow: none !important;
    outline: none !important;
}

.contact-form textarea,
.contact-form .grunion-field-wrap textarea {
    min-height: 150px !important;
    resize: vertical !important;
}

/* Submit button */
.contact-form input[type="submit"],
.contact-form button[type="submit"],
.contact-form .grunion-submit {
    background: var(--black) !important;
    color: var(--white) !important;
    border: none !important;
    padding: 1rem 2.5rem !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.1em !important;
    cursor: pointer !important;
    width: 100% !important;
    border-radius: 0 !important;
    transition: background 0.3s ease !important;
    margin-top: 0.5rem !important;
}

.contact-form input[type="submit"]:hover,
.contact-form button[type="submit"]:hover,
.contact-form .grunion-submit:hover {
    background: #333 !important;
}

/* Hide the premature validation text */
.contact-form .contact-form__error-message:empty,
.contact-form .grunion-field-error:empty {
    display: none !important;
}

/* Validation message when it fires */
.contact-form .contact-form__error-message,
.contact-form .grunion-field-error {
    font-size: 0.8rem !important;
    color: #c0392b !important;
    margin-top: 0.25rem !important;
    font-family: 'Inter', sans-serif !important;
}
