/*
Theme Name: Satya Photography
Theme URI: https://satyaphotography.in/
Author: Satya Photography Studio
Author URI: https://satyaphotography.in/
Description: A premium WordPress theme for Satya Photography — a luxury wedding and portrait photography studio in Hyderabad, India. Designed with warm cream tones, antique gold accents, and elegant serif typography. Fully compatible with Themify Builder for drag-and-drop page building.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: satya-photography
Tags: photography, wedding, one-column, two-columns, custom-background, custom-logo, custom-menu, featured-images, full-width-template, theme-options, translation-ready
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
*/

/* ==========================================================================
   CSS VARIABLES — SATYA DESIGN SYSTEM
   ========================================================================== */

:root {
    /* Primary Palette */
    --satya-cream: #F8F6F2;
    --satya-noir: #0F0F0F;
    --satya-gold: #B89C7D;
    --satya-gold-light: #D4BFA6;
    --satya-gold-dark: #9A7F5E;
    --satya-gray: #6F6F6F;
    --satya-gray-light: #A3A3A3;
    --satya-gray-lighter: #E5E5E5;
    --satya-white: #FFFFFF;
    --satya-overlay: rgba(15, 15, 15, 0.55);

    /* Typography */
    --font-heading: 'Cormorant Garamond', 'Georgia', serif;
    --font-body: 'Inter', 'Helvetica Neue', Arial, sans-serif;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --space-5xl: 8rem;

    /* Sizing */
    --header-height: 72px;
    --header-height-scroll: 56px;
    --container-max: 1280px;
    --container-narrow: 720px;

    /* Transitions */
    --transition-fast: 200ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;
    --transition-elegant: 600ms cubic-bezier(0.16, 1, 0.3, 1);

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
    --shadow-lg: 0 10px 25px -5px rgba(0,0,0,0.08), 0 8px 10px -6px rgba(0,0,0,0.04);
    --shadow-gold: 0 4px 14px rgba(184, 156, 125, 0.15);
}

/* ==========================================================================
   RESET & BASE
   ========================================================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    scroll-padding-top: var(--header-height);
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--satya-noir);
    background-color: var(--satya-cream);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

a {
    color: var(--satya-gold-dark);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover,
a:focus {
    color: var(--satya-gold);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.2;
    margin: 0 0 0.75em;
    color: var(--satya-noir);
}

h1 { font-size: clamp(2.25rem, 5vw, 4rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.75rem, 4vw, 3rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h5 { font-size: 1.25rem; }
h6 { font-size: 1.125rem; }

p {
    margin: 0 0 1.25em;
}

ul, ol {
    margin: 0 0 1.25em;
    padding-left: 1.5em;
}

blockquote {
    margin: var(--space-xl) 0;
    padding: var(--space-lg) var(--space-xl);
    border-left: 3px solid var(--satya-gold);
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.25rem;
    color: var(--satya-gray);
    background: rgba(184, 156, 125, 0.04);
}

blockquote p:last-child {
    margin-bottom: 0;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: var(--space-xl) 0;
}

th, td {
    padding: 0.75em 1em;
    text-align: left;
    border-bottom: 1px solid var(--satya-gray-lighter);
}

th {
    font-weight: 600;
    color: var(--satya-noir);
}

/* ==========================================================================
   LAYOUT
   ========================================================================== */

.satya-container {
    max-width: var(--container-max);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--space-lg);
    padding-right: var(--space-lg);
}

.satya-container--narrow {
    max-width: var(--container-narrow);
}

.satya-section {
    padding: var(--space-4xl) 0;
}

.satya-section--sm {
    padding: var(--space-2xl) 0;
}

.satya-section--lg {
    padding: var(--space-5xl) 0;
}

/* ==========================================================================
   SKIP LINK (Accessibility)
   ========================================================================== */

.satya-skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--satya-noir);
    color: var(--satya-cream);
    padding: 0.75em 1.5em;
    z-index: 100000;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: top var(--transition-fast);
}

.satya-skip-link:focus {
    top: 0;
    color: var(--satya-cream);
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */

.satya-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    height: var(--header-height);
    display: flex;
    align-items: center;
    transition: all var(--transition-base);
    background: transparent;
}

.satya-header.scrolled {
    height: var(--header-height-scroll);
    background: var(--satya-cream);
    box-shadow: var(--shadow-md);
}

.satya-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.satya-header__logo {
    display: block;
    transition: opacity var(--transition-base);
}

.satya-header__logo img {
    height: 48px;
    width: auto;
    transition: height var(--transition-base);
}

.satya-header.scrolled .satya-header__logo img {
    height: 38px;
}

.satya-header__nav {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.satya-header__nav a {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--satya-noir);
    position: relative;
    padding: 0.25em 0;
    transition: color var(--transition-fast);
}

.satya-header__nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--satya-gold);
    transition: width var(--transition-base);
}

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

.satya-header__nav a:hover {
    color: var(--satya-gold-dark);
}

/* Mobile Menu Toggle */
.satya-header__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 10001;
}

.satya-header__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--satya-noir);
    transition: all var(--transition-base);
    transform-origin: center;
}

.satya-header__toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.satya-header__toggle.active span:nth-child(2) {
    opacity: 0;
}

.satya-header__toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu Overlay */
.satya-mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: var(--satya-cream);
    z-index: 10000;
    padding: calc(var(--header-height) + var(--space-xl)) var(--space-xl) var(--space-xl);
    transition: right var(--transition-elegant);
    overflow-y: auto;
}

.satya-mobile-menu.active {
    right: 0;
}

.satya-mobile-menu__overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-base);
}

.satya-mobile-menu__overlay.active {
    opacity: 1;
    pointer-events: all;
}

.satya-mobile-menu nav {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.satya-mobile-menu nav a {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    color: var(--satya-noir);
    transition: color var(--transition-fast);
    padding: 0.25em 0;
    border-bottom: 1px solid var(--satya-gray-lighter);
}

.satya-mobile-menu nav a:hover {
    color: var(--satya-gold-dark);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.satya-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.satya-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.satya-hero__overlay {
    position: absolute;
    inset: 0;
    background: var(--satya-overlay);
    z-index: 2;
}

.satya-hero__content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: var(--space-xl);
    color: var(--satya-white);
}

.satya-hero__subtitle {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--satya-gold-light);
    margin-bottom: var(--space-lg);
}

.satya-hero__title {
    font-size: clamp(2.75rem, 6vw, 5rem);
    color: var(--satya-white);
    line-height: 1.05;
    margin-bottom: var(--space-lg);
    letter-spacing: -0.02em;
}

.satya-hero__description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.85);
    max-width: 560px;
    margin: 0 auto var(--space-2xl);
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.satya-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5em;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 1em 2.25em;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
    line-height: 1;
}

.satya-btn--primary {
    background: var(--satya-gold);
    color: var(--satya-white);
    border-color: var(--satya-gold);
}

.satya-btn--primary:hover {
    background: var(--satya-gold-dark);
    border-color: var(--satya-gold-dark);
    color: var(--satya-white);
}

.satya-btn--outline {
    background: transparent;
    color: var(--satya-gold);
    border-color: var(--satya-gold);
}

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

.satya-btn--light {
    background: transparent;
    color: var(--satya-white);
    border-color: rgba(255,255,255,0.4);
}

.satya-btn--light:hover {
    background: var(--satya-white);
    color: var(--satya-noir);
    border-color: var(--satya-white);
}

.satya-btn--lg {
    padding: 1.15em 2.75em;
    font-size: 0.85rem;
}

.satya-btn--sm {
    padding: 0.65em 1.5em;
    font-size: 0.75rem;
}

/* ==========================================================================
   SECTION HEADINGS
   ========================================================================== */

.satya-section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto var(--space-3xl);
}

.satya-section-header__label {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--satya-gold);
    margin-bottom: var(--space-md);
}

.satya-section-header__title {
    margin-bottom: var(--space-md);
}

.satya-section-header__divider {
    width: 60px;
    height: 1px;
    background: var(--satya-gold);
    margin: var(--space-md) auto;
}

.satya-section-header__desc {
    color: var(--satya-gray);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* ==========================================================================
   GALLERY GRID
   ========================================================================== */

.satya-gallery {
    display: grid;
    gap: var(--space-md);
}

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

.satya-gallery--masonry {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 10px;
}

.satya-gallery__item {
    position: relative;
    overflow: hidden;
    border-radius: 2px;
}

.satya-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.satya-gallery__item:hover img {
    transform: scale(1.05);
}

.satya-gallery__item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15,15,15,0.6) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--transition-base);
    display: flex;
    align-items: flex-end;
    padding: var(--space-lg);
}

.satya-gallery__item:hover .satya-gallery__item-overlay {
    opacity: 1;
}

.satya-gallery__item-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--satya-white);
    margin: 0;
}

/* ==========================================================================
   SERVICES / FEATURES
   ========================================================================== */

.satya-service-card {
    text-align: center;
    padding: var(--space-2xl) var(--space-xl);
    transition: all var(--transition-base);
}

.satya-service-card:hover {
    transform: translateY(-4px);
}

.satya-service-card__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--satya-gold);
    font-size: 1.5rem;
}

.satya-service-card__title {
    font-size: 1.35rem;
    margin-bottom: var(--space-sm);
}

.satya-service-card__desc {
    color: var(--satya-gray);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */

.satya-testimonial {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: var(--space-2xl);
}

.satya-testimonial__quote {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--satya-noir);
    line-height: 1.6;
    margin-bottom: var(--space-xl);
    position: relative;
}

.satya-testimonial__quote::before {
    content: '\201C';
    font-size: 4rem;
    color: var(--satya-gold-light);
    position: absolute;
    top: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-heading);
    line-height: 1;
}

.satya-testimonial__name {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--satya-noir);
}

.satya-testimonial__role {
    font-size: 0.8rem;
    color: var(--satya-gray);
    margin-top: 0.25em;
}

/* ==========================================================================
   CTA SECTION
   ========================================================================== */

.satya-cta {
    position: relative;
    padding: var(--space-5xl) 0;
    text-align: center;
    overflow: hidden;
}

.satya-cta__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.satya-cta__overlay {
    position: absolute;
    inset: 0;
    background: var(--satya-overlay);
    z-index: 2;
}

.satya-cta__content {
    position: relative;
    z-index: 3;
    color: var(--satya-white);
    max-width: 640px;
    margin: 0 auto;
}

.satya-cta__title {
    color: var(--satya-white);
    margin-bottom: var(--space-md);
}

.satya-cta__desc {
    color: rgba(255,255,255,0.85);
    margin-bottom: var(--space-2xl);
    font-size: 1.05rem;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.satya-footer {
    background: var(--satya-noir);
    color: rgba(255,255,255,0.7);
    padding: var(--space-4xl) 0 0;
}

.satya-footer a {
    color: rgba(255,255,255,0.7);
    transition: color var(--transition-fast);
}

.satya-footer a:hover {
    color: var(--satya-gold-light);
}

.satya-footer__top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-2xl);
    padding-bottom: var(--space-3xl);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.satya-footer__brand p {
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 320px;
}

.satya-footer__logo {
    margin-bottom: var(--space-lg);
}

.satya-footer__logo img {
    height: 42px;
    width: auto;
    filter: brightness(0) invert(1);
}

.satya-footer__heading {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--satya-white);
    margin-bottom: var(--space-lg);
}

.satya-footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.satya-footer__links li {
    margin-bottom: var(--space-sm);
}

.satya-footer__links a {
    font-size: 0.9rem;
}

.satya-footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
    font-size: 0.9rem;
}

.satya-footer__contact-item svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--satya-gold);
}

.satya-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-xl) 0;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.45);
}

.satya-footer__social {
    display: flex;
    gap: var(--space-md);
}

.satya-footer__social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    transition: all var(--transition-fast);
}

.satya-footer__social a:hover {
    border-color: var(--satya-gold);
    color: var(--satya-gold);
}

.satya-footer__social svg {
    width: 16px;
    height: 16px;
}

/* ==========================================================================
   CONTACT FORM
   ========================================================================== */

.satya-contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.satya-contact-form .form-row {
    margin-bottom: var(--space-lg);
}

.satya-contact-form label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--satya-gray);
    margin-bottom: var(--space-xs);
}

.satya-contact-form input[type="text"],
.satya-contact-form input[type="email"],
.satya-contact-form input[type="tel"],
.satya-contact-form textarea {
    width: 100%;
    padding: 0.85em 1em;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--satya-noir);
    background: var(--satya-white);
    border: 1px solid var(--satya-gray-lighter);
    border-radius: 2px;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
    outline: none;
}

.satya-contact-form input:focus,
.satya-contact-form textarea:focus {
    border-color: var(--satya-gold);
    box-shadow: 0 0 0 3px rgba(184, 156, 125, 0.1);
}

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

/* ==========================================================================
   PAGE HEADER (Inner Pages)
   ========================================================================== */

.satya-page-header {
    position: relative;
    padding: calc(var(--header-height) + var(--space-4xl)) 0 var(--space-3xl);
    text-align: center;
    overflow: hidden;
}

.satya-page-header__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.satya-page-header__overlay {
    position: absolute;
    inset: 0;
    background: var(--satya-overlay);
    z-index: 2;
}

.satya-page-header__content {
    position: relative;
    z-index: 3;
    color: var(--satya-white);
}

.satya-page-header__title {
    color: var(--satya-white);
    margin-bottom: var(--space-sm);
}

.satya-page-header__breadcrumb {
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
}

.satya-page-header__breadcrumb a {
    color: rgba(255,255,255,0.6);
}

.satya-page-header__breadcrumb a:hover {
    color: var(--satya-gold-light);
}

.satya-page-header__breadcrumb span {
    margin: 0 0.5em;
}

/* ==========================================================================
   BLOG / ARCHIVE
   ========================================================================== */

.satya-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.satya-blog-card {
    background: var(--satya-white);
    border-radius: 2px;
    overflow: hidden;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.satya-blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.satya-blog-card__image {
    aspect-ratio: 16/10;
    overflow: hidden;
}

.satya-blog-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.satya-blog-card:hover .satya-blog-card__image img {
    transform: scale(1.05);
}

.satya-blog-card__body {
    padding: var(--space-lg) var(--space-xl);
}

.satya-blog-card__date {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--satya-gold);
    margin-bottom: var(--space-sm);
}

.satya-blog-card__title {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
}

.satya-blog-card__title a {
    color: var(--satya-noir);
}

.satya-blog-card__title a:hover {
    color: var(--satya-gold-dark);
}

.satya-blog-card__excerpt {
    color: var(--satya-gray);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ==========================================================================
   SINGLE POST
   ========================================================================== */

.satya-single-post {
    max-width: var(--container-narrow);
    margin: 0 auto;
    padding: var(--space-3xl) var(--space-lg);
}

.satya-single-post__meta {
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--satya-gold);
    margin-bottom: var(--space-lg);
}

.satya-single-post__meta span {
    margin: 0 0.5em;
}

.satya-single-post__content {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--satya-noir);
}

.satya-single-post__content h2,
.satya-single-post__content h3 {
    margin-top: var(--space-2xl);
}

.satya-single-post__content img {
    border-radius: 2px;
    margin: var(--space-xl) 0;
}

/* ==========================================================================
   404 PAGE
   ========================================================================== */

.satya-404 {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.satya-404__number {
    font-family: var(--font-heading);
    font-size: clamp(6rem, 15vw, 12rem);
    color: var(--satya-gray-lighter);
    line-height: 1;
    margin-bottom: var(--space-md);
}

/* ==========================================================================
   THEMIFY BUILDER OVERRIDES
   ========================================================================== */

/* Make Themify Builder rows use our design system */
.themify_builder_content .module_row {
    border: none !important;
}

.themify_builder_content .module_row .row_inner {
    max-width: var(--container-max) !important;
    margin: 0 auto !important;
}

/* Themify module styling */
.themify_builder_content .module {
    margin-bottom: 0;
}

/* Themify text module */
.themify_builder_content .module-text {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
}

.themify_builder_content .module-text h1,
.themify_builder_content .module-text h2,
.themify_builder_content .module-text h3,
.themify_builder_content .module-text h4,
.themify_builder_content .module-text h5,
.themify_builder_content .module-text h6 {
    font-family: var(--font-heading);
}

/* Themify image module */
.themify_builder_content .module-image img {
    border-radius: 2px;
    transition: transform var(--transition-slow);
}

.themify_builder_content .module-image:hover img {
    transform: scale(1.02);
}

/* Themify button module - override to match our design */
.themify_builder_content .module-button .ui-button {
    font-family: var(--font-body) !important;
    font-size: 0.8rem !important;
    font-weight: 500 !important;
    letter-spacing: 0.15em !important;
    text-transform: uppercase !important;
    padding: 1em 2.25em !important;
    border-radius: 0 !important;
    background: var(--satya-gold) !important;
    border-color: var(--satya-gold) !important;
    color: var(--satya-white) !important;
    transition: all var(--transition-base) !important;
}

.themify_builder_content .module-button .ui-button:hover {
    background: var(--satya-gold-dark) !important;
    border-color: var(--satya-gold-dark) !important;
}

/* Themify gallery module */
.themify_builder_content .module-gallery .gallery-item {
    border-radius: 2px;
    overflow: hidden;
}

.themify_builder_content .module-gallery .gallery-item img {
    transition: transform var(--transition-slow);
}

.themify_builder_content .module-gallery .gallery-item:hover img {
    transform: scale(1.05);
}

/* Themify menu module */
.themify_builder_content .module-menu .menu a {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

/* Themify divider */
.themify_builder_content .module-divider hr {
    border-color: var(--satya-gold-light);
}

/* Themify testimonial */
.themify_builder_content .module-testimonial .testimonial-content {
    font-family: var(--font-heading);
    font-style: italic;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1024px) {
    .satya-footer__top {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-xl);
    }

    .satya-gallery--3col,
    .satya-gallery--masonry {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 768px) {
    :root {
        --header-height: 64px;
        --header-height-scroll: 52px;
    }

    .satya-header__nav {
        display: none;
    }

    .satya-header__toggle {
        display: flex;
    }

    .satya-section {
        padding: var(--space-2xl) 0;
    }

    .satya-section--lg {
        padding: var(--space-3xl) 0;
    }

    .satya-footer__top {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .satya-footer__bottom {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }

    .satya-gallery--3col,
    .satya-gallery--masonry {
        grid-template-columns: 1fr;
    }

    .satya-blog-grid {
        grid-template-columns: 1fr;
    }

    .satya-hero__title {
        font-size: clamp(2rem, 8vw, 3rem);
    }
}

@media (max-width: 480px) {
    .satya-container {
        padding-left: var(--space-md);
        padding-right: var(--space-md);
    }

    .satya-btn--lg {
        padding: 1em 2em;
    }
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */

@keyframes satyaFadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes satyaFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.satya-animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity var(--transition-elegant), transform var(--transition-elegant);
}

.satya-animate-fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.satya-animate-fade {
    opacity: 0;
    transition: opacity var(--transition-elegant);
}

.satya-animate-fade.visible {
    opacity: 1;
}

/* Stagger delays */
.satya-delay-1 { transition-delay: 100ms; }
.satya-delay-2 { transition-delay: 200ms; }
.satya-delay-3 { transition-delay: 300ms; }
.satya-delay-4 { transition-delay: 400ms; }
.satya-delay-5 { transition-delay: 500ms; }

/* ==========================================================================
   WORDPRESS ALIGNMENTS & CAPTIONS
   ========================================================================== */

.alignleft {
    float: left;
    margin: 0 var(--space-xl) var(--space-md) 0;
}

.alignright {
    float: right;
    margin: 0 0 var(--space-md) var(--space-xl);
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.alignwide {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.alignfull {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(-50vw + 50%);
}

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

.wp-caption-text {
    font-size: 0.85rem;
    color: var(--satya-gray);
    text-align: center;
    padding: var(--space-sm) 0;
}

/* ==========================================================================
   WORDPRESS GUTENBERG OVERRIDES
   ========================================================================== */

.wp-block-button .wp-block-button__link {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 1em 2.25em;
    background: var(--satya-gold);
    border-radius: 0;
}

.wp-block-button .wp-block-button__link:hover {
    background: var(--satya-gold-dark);
}

.wp-block-quote {
    border-left-color: var(--satya-gold);
}

.wp-block-pullquote {
    border-color: var(--satya-gold);
}

.wp-block-separator {
    border-color: var(--satya-gold-light);
}

/* ==========================================================================
   MISC / UTILITIES
   ========================================================================== */

.satya-gold-text {
    color: var(--satya-gold);
}

.satya-text-center {
    text-align: center;
}

.satya-mt-0 { margin-top: 0; }
.satya-mb-0 { margin-bottom: 0; }

.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

.screen-reader-text:focus {
    background-color: var(--satya-noir);
    clip: auto !important;
    clip-path: none;
    color: var(--satya-cream);
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 1em 1.5em;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
}
