/*
Theme Name: Tina's Photography
Description: A custom lightweight photography portfolio theme
Version: 1.0.0
Author: Custom
License: GNU General Public License v2 or later
Text Domain: tinas-photography
*/

/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
    --color-bg: #0f0f0f;
    --color-bg-secondary: #141414;
    --color-bg-card: #1a1a1a;
    --color-text: #f0f0f0;
    --color-text-muted: #888888;
    --color-accent: #c8a97e;
    --color-border: #252525;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Lato', -apple-system, BlinkMacSystemFont, sans-serif;
    --container-max: 1200px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    font-weight: 300;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--color-accent);
    text-decoration: none;
    transition: var(--transition);
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.3;
}

p {
    margin-bottom: 1rem;
}

ul {
    list-style: none;
}

/* ===== LAYOUT ===== */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===== HEADER ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition);
}

.site-header.scrolled {
    background: rgba(15, 15, 15, 0.96);
    backdrop-filter: blur(12px);
    padding: 1rem 0;
    border-bottom: 1px solid var(--color-border);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
}

.site-logo a {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--color-text);
    letter-spacing: 0.05em;
}

.site-logo a:hover {
    color: var(--color-accent);
}

.primary-nav ul {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.primary-nav a {
    color: rgba(240, 240, 240, 0.85);
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    position: relative;
}

.primary-nav a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-accent);
    transition: var(--transition);
}

.primary-nav a:hover {
    color: #fff;
}

.primary-nav a:hover::after,
.primary-nav .current-menu-item a::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--color-text);
    margin: 6px 0;
    transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    transition: transform 8s ease;
}

.hero-bg-default {
    background: linear-gradient(135deg, #0d0d1a 0%, #1a1a2e 50%, #0f1820 100%);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.2) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: var(--container-max);
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-tag {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--color-accent);
    display: block;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    font-weight: 400;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    max-width: 700px;
}

.hero-title em {
    font-style: italic;
    color: var(--color-accent);
}

.hero-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 2.5rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    max-width: 480px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 0.85rem 2.2rem;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--color-accent);
    color: #0f0f0f;
}

.btn-primary:hover {
    background: #fff;
    color: #0f0f0f;
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
    background: #fff;
    color: #0f0f0f;
    border-color: #fff;
}

.hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 45px;
    background: linear-gradient(to bottom, transparent, rgba(200, 169, 126, 0.6));
    animation: scrollLine 1.8s ease-in-out infinite;
}

@keyframes scrollLine {

    0%,
    100% {
        opacity: 0;
        transform: scaleY(0.3);
    }

    50% {
        opacity: 1;
        transform: scaleY(1);
    }
}

/* ===== SECTIONS ===== */
.section {
    padding: 7rem 0;
}

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

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

.section-tag {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--color-accent);
    display: block;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--color-text);
}

.section-divider {
    width: 40px;
    height: 1px;
    background: var(--color-accent);
    margin: 1.5rem auto 0;
}

/* ===== PORTFOLIO GRID ===== */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

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

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.1) 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
}

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

.portfolio-item-title {
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 400;
    transform: translateY(10px);
    transition: transform 0.4s ease;
}

.portfolio-item:hover .portfolio-item-title {
    transform: translateY(0);
}

.portfolio-view-all {
    text-align: center;
    margin-top: 3rem;
}

/* ===== ABOUT SECTION ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7rem;
    align-items: center;
}

.about-image-wrap {
    position: relative;
}

.about-image-wrap img {
    width: 100%;
    height: 580px;
    object-fit: cover;
}

.about-image-wrap::after {
    content: '';
    position: absolute;
    top: 20px;
    right: -20px;
    bottom: -20px;
    left: 20px;
    border: 1px solid rgba(200, 169, 126, 0.25);
    pointer-events: none;
}

.about-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--color-accent);
    display: block;
    margin-bottom: 1rem;
}

.about-title {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    color: var(--color-text);
    margin-bottom: 1.5rem;
}

.about-bio {
    color: var(--color-text-muted);
    line-height: 1.95;
    margin-bottom: 2rem;
}

.about-bio p {
    margin-bottom: 1rem;
}

.about-stats {
    display: flex;
    gap: 3rem;
    margin: 2.5rem 0;
}

.about-stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-accent);
    line-height: 1;
}

.about-stat-label {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 2rem;
}

.social-links a {
    width: 38px;
    height: 38px;
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: var(--transition);
}

.social-links a:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
    background: rgba(200, 169, 126, 0.08);
}

/* ===== BLOG POSTS ===== */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.post-card {
    background: var(--color-bg-card);
    overflow: hidden;
}

.post-card-thumb {
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--color-border);
}

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

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

.post-card-body {
    padding: 1.5rem;
}

.post-cat {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 0.6rem;
    display: block;
}

.post-card-title {
    font-size: 1.05rem;
    color: var(--color-text);
    margin-bottom: 0.75rem;
}

.post-card-title a {
    color: inherit;
}

.post-card-title a:hover {
    color: var(--color-accent);
}

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

/* ===== PAGE HEADER ===== */
.page-banner {
    text-align: center;
    background: var(--color-bg-secondary);
    position: relative;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(200, 169, 126, 0.08) 0%, transparent 70%);
}

.page-banner-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--color-text);
    position: relative;
}

.page-banner-subtitle {
    color: var(--color-text-muted);
    margin-top: 1rem;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    position: relative;
}

/* ===== PAGE BANNER — FEATURED IMAGE ===== */
.page-banner-has-image {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    min-height: 55vh;
    padding: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.page-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.65) 100%);
}

.page-banner-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 10rem 2rem 4rem;
    width: 100%;
}

.page-banner:not(.page-banner-has-image) .page-banner-inner {
    padding: 10rem 2rem 4rem;
    text-align: center;
}

.page-banner-has-image .page-banner-title {
    font-size: clamp(2.2rem, 5vw, 4rem);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.page-banner-has-image .page-banner-subtitle {
    color: rgba(255, 255, 255, 0.7);
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}

/* ===== SINGLE POST / PAGE ===== */
.entry-wrap {
    max-width: 800px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.entry-meta {
    color: var(--color-text-muted);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    margin-bottom: 3rem;
}

.entry-meta span {
    margin: 0 0.5rem;
}

.entry-content {
    color: var(--color-text-muted);
    line-height: 1.95;
}

.entry-content h2,
.entry-content h3 {
    color: var(--color-text);
    margin: 2.5rem 0 1rem;
}

.entry-content p {
    margin-bottom: 1.5rem;
}

.entry-content img {
    width: 100%;
    margin: 2rem 0;
}

.entry-content a {
    color: var(--color-accent);
    border-bottom: 1px solid rgba(200, 169, 126, 0.3);
}

.entry-content a:hover {
    color: var(--color-text);
    border-color: rgba(240, 240, 240, 0.3);
}

.entry-content blockquote {
    border-left: 2px solid var(--color-accent);
    padding: 1rem 0 1rem 2rem;
    margin: 2rem 0;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--color-text);
    font-style: italic;
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 6rem;
}

.contact-info-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.contact-info-text {
    color: var(--color-text-muted);
    margin-bottom: 2.5rem;
}

.contact-detail {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.contact-detail-icon {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
}

.contact-detail-text {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    padding-top: 0.5rem;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 0.9rem 1.1rem;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 0.875rem;
    margin-bottom: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
    -webkit-appearance: none;
    appearance: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--color-accent);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--color-text-muted);
}

.contact-form textarea {
    height: 140px;
    resize: vertical;
}

/* ===== PHOTOS ARCHIVE ===== */
.photos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.photos-grid .portfolio-item {
    aspect-ratio: 1/1;
}

/* ===== FOOTER ===== */
.site-footer {
    background: #080808;
    border-top: 1px solid var(--color-border);
    padding: 2.5rem 0;
}

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

.footer-logo a {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--color-text);
}

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

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

.footer-social a {
    color: var(--color-text-muted);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

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

/* ===== PAGINATION ===== */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 4rem;
}

.pagination a,
.pagination span {
    padding: 0.5rem 0.9rem;
    border: 1px solid var(--color-border);
    color: var(--color-text-muted);
    font-size: 0.8rem;
    transition: var(--transition);
}

.pagination a:hover,
.pagination .current {
    border-color: var(--color-accent);
    color: var(--color-accent);
    background: rgba(200, 169, 126, 0.08);
}

/* ===== NO-RESULTS / 404 ===== */
.error-page {
    text-align: center;
    padding: 10rem 2rem;
}

.error-code {
    font-family: var(--font-heading);
    font-size: 8rem;
    color: var(--color-border);
    line-height: 1;
}

.error-title {
    font-size: 2rem;
    color: var(--color-text);
    margin-bottom: 1rem;
}

.error-text {
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

/* ===== CUSTOM GALLERY WIDGET ===== */
.tinas-gallery {
    display: grid;
    gap: 8px;
}

.tinas-gallery-cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.tinas-gallery-cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.tinas-gallery-cols-4 {
    grid-template-columns: repeat(4, 1fr);
}

.tinas-gallery-item {
    margin: 0;
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background: var(--color-bg-card);
}

.tinas-gallery-link {
    position: absolute;
    inset: 0;
    display: block;
    overflow: hidden;
}

.tinas-gallery-link img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: block;
    margin: 0;
    padding: 0;
}

.tinas-gallery-link:hover img {
    transform: scale(1.05);
}

.tinas-gallery-zoom {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    font-size: 1.8rem;
    font-weight: 300;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tinas-gallery-link:hover .tinas-gallery-zoom {
    opacity: 1;
}

.tinas-gallery-caption {
    padding: 0.5rem 0.25rem;
    font-size: 0.78rem;
    color: var(--color-text-muted);
    text-align: center;
    letter-spacing: 0.05em;
}

.tinas-gallery-empty {
    color: var(--color-text-muted);
    font-size: 0.85rem;
}

/* ===== LIGHTBOX ===== */
#tinas-lightbox {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

#tinas-lightbox.tinas-lb-active {
    opacity: 1;
    pointer-events: auto;
}

.tinas-lb-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    cursor: pointer;
}

.tinas-lb-wrap {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 90vw;
    max-height: 90vh;
}

.tinas-lb-stage {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 100px;
    min-height: 100px;
}

.tinas-lb-img {
    max-width: 88vw;
    max-height: 80vh;
    object-fit: contain;
    display: block;
    transition: opacity 0.25s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.tinas-lb-spinner {
    position: absolute;
    width: 36px;
    height: 36px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-top-color: var(--color-accent);
    border-radius: 50%;
    animation: lbSpin 0.7s linear infinite;
    display: none;
}

@keyframes lbSpin {
    to {
        transform: rotate(360deg);
    }
}

.tinas-lb-close {
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
    z-index: 2;
}

.tinas-lb-close:hover {
    background: rgba(255, 255, 255, 0.18);
}

.tinas-lb-prev,
.tinas-lb-next {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    width: 48px;
    height: 48px;
    font-size: 1.4rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
    z-index: 2;
}

.tinas-lb-prev {
    left: 1.5rem;
}

.tinas-lb-next {
    right: 1.5rem;
}

.tinas-lb-prev:hover,
.tinas-lb-next:hover {
    background: rgba(255, 255, 255, 0.18);
}

.tinas-lb-footer {
    text-align: center;
    margin-top: 1rem;
    min-height: 2rem;
}

.tinas-lb-caption {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    margin: 0 0 0.25rem;
}

.tinas-lb-counter {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
}

@media (max-width: 768px) {

    .tinas-gallery-cols-3,
    .tinas-gallery-cols-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .tinas-lb-prev {
        left: 0.5rem;
    }

    .tinas-lb-next {
        right: 0.5rem;
    }
}

@media (max-width: 480px) {

    .tinas-gallery-cols-2,
    .tinas-gallery-cols-3,
    .tinas-gallery-cols-4 {
        grid-template-columns: 1fr;
    }
}

/* ===== WPFORMS CONFIRMATION MESSAGE ===== */
.wpforms-confirmation-container-full,
.wpforms-confirmation-container {
    background: transparent !important;
    border: 1px solid var(--color-accent) !important;
    border-radius: 0 !important;
    padding: 2.5rem 2rem !important;
    text-align: center !important;
    position: relative !important;
}

.wpforms-confirmation-container-full::before,
.wpforms-confirmation-container::before {
    content: '✓';
    display: block;
    font-size: 2.5rem;
    color: var(--color-accent);
    margin-bottom: 1rem;
    line-height: 1;
}

.wpforms-confirmation-container-full p,
.wpforms-confirmation-container p {
    color: #f0f0f0 !important;
    font-size: 1.05rem !important;
    font-family: 'Playfair Display', serif !important;
    font-style: italic !important;
    letter-spacing: 0.03em !important;
    margin: 0 !important;
}

/* ===== UTILITIES ===== */
.text-center {
    text-align: center;
}

.mt-1 {
    margin-top: 1rem;
}

.mt-2 {
    margin-top: 2rem;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

.wp-caption {
    max-width: 100%;
}

.wp-caption-text {
    color: var(--color-text-muted);
    font-size: 0.8rem;
    text-align: center;
    margin-top: 0.5rem;
}

.aligncenter {
    margin: 0 auto;
}

.alignright {
    float: right;
    margin-left: 1rem;
}

.alignleft {
    float: left;
    margin-right: 1rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {

    .portfolio-grid,
    .photos-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-image-wrap {
        display: none;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 4rem 0;
    }

    .primary-nav {
        display: none;
        position: fixed;
        inset: 0;
        background: var(--color-bg);
        z-index: 999;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .primary-nav.active {
        display: flex;
    }

    .primary-nav ul {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .primary-nav a {
        font-size: 1.1rem;
        letter-spacing: 0.2em;
    }

    .menu-toggle {
        display: block;
    }

    .portfolio-grid,
    .photos-grid,
    .posts-grid {
        grid-template-columns: 1fr;
    }

    .about-stats {
        gap: 2rem;
    }

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

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

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn {
        text-align: center;
    }
}