/*
Theme Name: Alexa Theme
Theme URI: https://yourdomain.com
Author: Alexa
Author URI: https://yourdomain.com
Description: A custom WordPress theme for Alexa — Live Event & Wedding Illustrator in Dublin, Ireland. Features live illustration services, packages, studio commissions, and a sophisticated, elegant design.
Version: 1.0.7
License: GPL v2 or later
Text Domain: alexa-theme
*/

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

:root {
    --cream: #F7F3ED;
    --warm-white: #FDFAF6;
    --ink: #1C1917;
    --ink-muted: #5C5753;
    --ink-faint: #9C9894;
    --blush: #E8C4B0;
    --blush-light: #F5E8DF;
    --sage: #8FA98A;
    --gold: #B89A6A;
    --gold-light: #E8D9C0;
    --border: rgba(28,25,23,0.12);
    --border-soft: rgba(28,25,23,0.07);
    --nav-background: rgba(253,250,246,0.92);
    --footer-panel: rgba(253,250,246,0.08);
    --footer-border: rgba(253,250,246,0.16);
    --footer-border-strong: rgba(253,250,246,0.25);
    --footer-muted: rgba(253,250,246,0.7);
    --footer-faint: rgba(253,250,246,0.5);
    --footer-hairline: rgba(253,250,246,0.3);
    --section-hero-bg: var(--cream);
    --section-what-bg: var(--warm-white);
    --section-services-bg: var(--cream);
    --section-packages-bg: var(--warm-white);
    --section-studio-bg: var(--cream);
    --section-about-bg: var(--ink);
    --section-cta-bg: var(--blush-light);
    --section-page-bg: var(--warm-white);
    --section-contact-bg: var(--warm-white);
    --section-contact-card-bg: var(--cream);
    --section-gallery-bg: var(--warm-white);
    --section-footer-bg: var(--ink);
    --serif: 'Cormorant Garamond', Georgia, serif;
    --sans: 'Jost', sans-serif;
    --nav-h: 72px;
    --section-pad: clamp(4rem, 8vw, 7rem);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--sans);
    background: var(--warm-white);
    color: var(--ink);
    font-weight: 300;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: inherit;
    text-decoration: none;
}

/* ===== NAVIGATION ===== */
.site-navigation {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: var(--nav-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 clamp(1.5rem, 5vw, 4rem);
    background: var(--nav-background);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-soft);
}

.admin-bar .site-navigation {
    top: 32px;
}

.nav-logo {
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.04em;
    text-decoration: none;
    color: var(--ink);
}

.site-navigation .nav-logo {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    height: 100%;
}

.site-navigation .custom-logo {
    width: auto;
    max-width: min(220px, 45vw);
    max-height: calc(var(--nav-h) - 24px);
    object-fit: contain;
}

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

.nav-links a {
    font-family: var(--sans);
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--ink-muted);
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--ink);
}

/* Hamburger */
.nav-toggle {
    display: none;
    background: none;
    border: 1px solid var(--border);
    border-radius: 4px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 1.5px;
    background: var(--ink);
    transition: all 0.3s;
}

/* Mobile menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: var(--nav-h);
    right: 0;
    background: var(--warm-white);
    border-left: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem 2rem;
    z-index: 99;
    min-width: 180px;
}

.mobile-menu.open {
    display: block;
}

.mobile-menu a {
    display: block;
    padding: 0.6rem 0;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--ink);
    border-bottom: 1px solid var(--border-soft);
}

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

/* ===== HERO ===== */
.hero {
    min-height: 100svh;
    padding-top: var(--nav-h);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-inline: clamp(1.5rem, 6vw, 5rem);
    background: var(--section-hero-bg);
    position: relative;
    overflow: hidden;
}

.hero.has-hero-background {
    background-image: var(--hero-bg-image);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, rgba(253,250,246,0.86) 0%, rgba(253,250,246,0.66) 42%, rgba(253,250,246,0.2) 100%),
                radial-gradient(ellipse 60% 50% at 80% 50%, rgba(232,196,176,0.25) 0%, transparent 70%),
                radial-gradient(ellipse 40% 60% at 10% 80%, rgba(143,169,138,0.12) 0%, transparent 60%);
    pointer-events: none;
}

.hero-inner {
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 620px);
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-copy {
    max-width: 620px;
}

.hero-eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.hero-title {
    font-family: var(--serif);
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 300;
    line-height: 1.15;
    margin-bottom: 1rem;
    color: var(--ink);
}

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

.hero-sub {
    font-size: 0.95rem;
    color: var(--ink-muted);
    max-width: 42ch;
    margin-bottom: 2rem;
}

.hero-bullets {
    list-style: none;
    margin-bottom: 2.5rem;
}

.hero-bullets li {
    font-family: var(--serif);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--ink-muted);
    padding-left: 1.2rem;
    position: relative;
    margin-bottom: 0.4rem;
}

.hero-bullets li::before {
    content: '\2192';
    position: absolute;
    left: 0;
    font-style: normal;
    font-family: var(--sans);
    font-size: 0.75rem;
    top: 0.35em;
    color: var(--gold);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.85rem 2rem;
    font-family: var(--sans);
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.25s;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--ink);
    color: var(--warm-white);
}

.btn-primary:hover {
    background: var(--ink-muted);
}

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

.btn-outline:hover {
    background: var(--cream);
}

.what-photo img,
.about-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== SECTION BASE ===== */
section {
    padding: var(--section-pad) clamp(1.5rem, 6vw, 5rem);
}

.section-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.section-label {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.8rem;
}

.section-title {
    font-family: var(--serif);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-title em {
    font-style: italic;
}

.divider {
    width: 48px;
    height: 1px;
    background: var(--gold);
    margin: 1.5rem 0;
}

.divider-centered {
    margin: 3rem auto 2rem;
}

.divider-tight {
    margin-top: 1rem;
}

/* ===== WHAT I DO ===== */
.what-i-do {
    background: var(--section-what-bg);
}

.what-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 3rem;
}

.what-photo {
    aspect-ratio: 4/5;
    background: var(--blush-light);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.what-photo svg {
    opacity: 0.3;
    width: 50%;
}

.what-content p {
    font-family: var(--serif);
    font-size: 1.2rem;
    font-style: italic;
    color: var(--ink-muted);
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: var(--cream);
    border-left: 2px solid var(--gold);
}

.feature-list li strong {
    display: block;
    font-family: var(--serif);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.15rem;
}

.feature-list li span {
    font-size: 0.85rem;
    color: var(--ink-muted);
}

/* ===== SERVICES ===== */
.services {
    background: var(--section-services-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--warm-white);
    padding: 2rem;
    border: 1px solid var(--border-soft);
    position: relative;
}

.service-card::before {
    content: attr(data-num);
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-family: var(--serif);
    font-size: 2.5rem;
    font-style: italic;
    color: var(--gold-light);
    line-height: 1;
}

.service-card h3 {
    font-family: var(--serif);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--ink);
}

.service-card p {
    font-size: 0.85rem;
    color: var(--ink-muted);
    line-height: 1.8;
}

/* ===== PACKAGES ===== */
.packages {
    background: var(--section-packages-bg);
}

.packages-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.packages-note {
    font-family: var(--serif);
    font-style: italic;
    font-size: 0.9rem;
    color: var(--ink-muted);
    max-width: 35ch;
    text-align: right;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.pkg-card {
    border: 1px solid var(--border);
    padding: 2rem;
    position: relative;
    transition: box-shadow 0.25s;
    text-decoration: none;
    color: inherit;
    display: block;
}

.pkg-card:hover {
    box-shadow: 0 8px 32px rgba(28,25,23,0.08);
}

.pkg-card.popular {
    border-color: var(--gold);
    background: var(--cream);
}

.pkg-badge {
    display: inline-block;
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.3rem 0.75rem;
    background: var(--gold);
    color: var(--warm-white);
    margin-bottom: 1rem;
}

.pkg-name {
    font-family: var(--serif);
    font-size: 1.6rem;
    font-weight: 300;
    margin-bottom: 0.25rem;
}

.pkg-duration {
    font-size: 0.78rem;
    color: var(--ink-muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.pkg-desc {
    font-size: 0.85rem;
    color: var(--ink-muted);
    margin-bottom: 1.5rem;
}

.pkg-cta {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.5rem;
}

/* ===== STUDIO MENU ===== */
.studio {
    background: var(--section-studio-bg);
}

.studio-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
}

.studio-card {
    background: var(--warm-white);
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 0;
    border: 1px solid var(--border-soft);
    overflow: hidden;
}

.studio-img {
    aspect-ratio: 1;
    background: var(--blush-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.studio-img svg {
    opacity: 0.3;
    width: 50%;
}

.studio-info {
    padding: 1.25rem;
}

.studio-info h3 {
    font-family: var(--serif);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.studio-info p {
    font-size: 0.8rem;
    color: var(--ink-muted);
}

/* ===== ABOUT TEASER ===== */
.about-teaser {
    background: var(--section-about-bg);
    color: var(--warm-white);
}

.about-grid {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 4rem;
    align-items: center;
}

.about-portrait {
    width: 260px;
    aspect-ratio: 3/4;
    background: var(--footer-panel);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-portrait svg {
    opacity: 0.25;
    width: 55%;
}

.about-content .section-label {
    color: var(--gold-light);
}

.about-content .section-title {
    color: var(--warm-white);
}

.about-content p {
    font-family: var(--serif);
    font-size: 1.15rem;
    font-style: italic;
    color: var(--footer-muted);
    max-width: 48ch;
    margin-bottom: 2rem;
}

.btn-outline-light {
    background: transparent;
    color: var(--warm-white);
    border: 1px solid var(--footer-border-strong);
    padding: 0.85rem 2rem;
    font-family: var(--sans);
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-flex;
    transition: all 0.25s;
}

.btn-outline-light:hover {
    background: var(--footer-panel);
}

/* ===== CTA ===== */
.cta {
    background: var(--section-cta-bg);
    text-align: center;
}

.cta .section-title {
    margin-bottom: 0.5rem;
}

.cta p {
    font-size: 0.95rem;
    color: var(--ink-muted);
    margin-bottom: 2rem;
}

/* ===== FOOTER ===== */
footer {
    background: var(--section-footer-bg);
    color: var(--footer-faint);
    padding: 2.5rem clamp(1.5rem, 6vw, 5rem);
}

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

.footer-brand .nav-logo {
    color: var(--warm-white);
}

.footer-brand p {
    font-size: 0.78rem;
    margin-top: 0.5rem;
}

.footer-links {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.footer-col h4 {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--footer-hairline);
    margin-bottom: 0.75rem;
}

.footer-col a {
    display: block;
    font-size: 0.82rem;
    text-decoration: none;
    color: var(--footer-faint);
    margin-bottom: 0.4rem;
    transition: color 0.2s;
}

.footer-menu li {
    margin: 0;
}

.footer-col a:hover {
    color: var(--warm-white);
}

.footer-bottom {
    max-width: 1100px;
    margin: 2rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid var(--footer-panel);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.75rem;
}

/* ===== FLOATING CONTACT ===== */
.whatsapp-float {
    position: fixed;
    right: clamp(1rem, 3vw, 2rem);
    bottom: clamp(1rem, 3vw, 2rem);
    z-index: 120;
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    min-height: 48px;
    padding: 0.75rem 1rem;
    background: var(--ink);
    color: var(--warm-white);
    border: 1px solid var(--footer-border);
    box-shadow: 0 10px 30px rgba(28,25,23,0.18);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: transform 0.2s ease, background 0.2s ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus {
    background: var(--ink-muted);
    color: var(--warm-white);
    transform: translateY(-2px);
}

.whatsapp-float svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
    flex: 0 0 auto;
}

/* ===== PAGE CONTENT ===== */
.page-content {
    padding-top: calc(var(--nav-h) + 2rem);
    padding-bottom: var(--section-pad);
    background: var(--section-page-bg);
}

.page-content .section-inner {
    max-width: 800px;
}

.page-hero-section {
    padding-top: calc(var(--nav-h) + 3rem);
}

.wide-content {
    max-width: 1100px;
}

.narrow-content {
    max-width: 700px;
    margin: 0 auto;
}

.centered-content,
.page-intro {
    text-align: center;
}

.page-intro {
    margin-bottom: 3rem;
}

.page-intro p {
    max-width: 50ch;
    margin-right: auto;
    margin-left: auto;
}

.contact-page,
.gallery-page {
    padding-bottom: 0;
}

.contact-page {
    background: var(--section-contact-bg);
}

.gallery-page {
    background: var(--section-gallery-bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
    gap: 3rem;
    align-items: start;
}

.contact-card {
    background: var(--section-contact-card-bg);
    padding: 2.5rem;
    border: 1px solid var(--border-soft);
}

.contact-card h3 {
    margin-top: 0;
    margin-bottom: 1.5rem;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-label {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.3rem;
}

.contact-card a,
.contact-card p:not(.contact-label) {
    font-size: 0.95rem;
    color: var(--ink);
}

.contact-social {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
}

.contact-social a {
    color: var(--ink-muted);
    transition: color 0.2s;
}

.contact-social a:hover {
    color: var(--ink);
}

.enquiry-panel {
    text-align: center;
    margin-top: 3rem;
    padding: 3rem;
    background: var(--cream);
    border: 1px solid var(--border);
}

.enquiry-panel p:not(.section-label) {
    font-family: var(--serif);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--ink-muted);
    margin-bottom: 1.5rem;
}

.search-results {
    margin-top: 2rem;
}

.search-result {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-soft);
}

.search-result h2 {
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.search-result h2 a {
    color: var(--ink);
}

.search-result p,
.muted-block {
    color: var(--ink-muted);
}

.muted-block {
    margin-bottom: 2rem;
}

.error-page {
    text-align: center;
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.error-page h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    margin-bottom: 0.5rem;
}

.error-page .section-label {
    color: var(--gold);
    font-size: 0.85rem;
}

.error-page p:not(.section-label) {
    color: var(--ink-muted);
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.page-content h1 {
    font-family: var(--serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.page-content h2 {
    font-family: var(--serif);
    font-size: 1.6rem;
    font-weight: 400;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
}

.page-content h3 {
    font-family: var(--serif);
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.page-content p {
    margin-bottom: 1rem;
    color: var(--ink-muted);
}

.page-content ul, .page-content ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    color: var(--ink-muted);
}

.page-content li {
    margin-bottom: 0.3rem;
}

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

.fade-up {
    opacity: 0;
    animation: fadeUp 0.8s ease forwards;
}

.fade-up:nth-child(1) {
    animation-delay: 0.1s;
}

.fade-up:nth-child(2) {
    animation-delay: 0.25s;
}

.fade-up:nth-child(3) {
    animation-delay: 0.4s;
}

.fade-up:nth-child(4) {
    animation-delay: 0.55s;
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== WORDPRESS EDITOR STYLES ===== */
.alignleft {
    float: left;
    margin-right: 1.5rem;
    margin-bottom: 1rem;
}

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

.aligncenter {
    margin: 0 auto;
}

.wp-block-image {
    margin-bottom: 1.5rem;
}

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



/* ===== WORDPRESS BLOCK EDITOR STYLES ===== */
.entry-content h2.wp-block-heading {
    font-family: var(--serif);
    font-size: 1.8rem;
    font-weight: 300;
    line-height: 1.2;
    margin-top: 2.5rem;
    margin-bottom: 0.8rem;
    color: var(--ink);
}

.entry-content h3.wp-block-heading {
    font-family: var(--serif);
    font-size: 1.3rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 0.5rem;
    color: var(--ink);
}

.entry-content p {
    font-size: 0.95rem;
    color: var(--ink-muted);
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.entry-content p strong {
    color: var(--ink);
}

.entry-content ul.wp-block-list,
.entry-content ol.wp-block-list {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    color: var(--ink-muted);
}

.entry-content ul.wp-block-list li,
.entry-content ol.wp-block-list li {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    line-height: 1.7;
}

.entry-content ul.wp-block-list li strong {
    color: var(--ink);
}

/* WordPress Buttons */
.wp-block-buttons {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.wp-block-button__link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.85rem 2rem;
    font-family: var(--sans);
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.25s;
    cursor: pointer;
    border: none;
    background: var(--ink);
    color: var(--warm-white);
    border-radius: 0;
}

.wp-block-button__link:hover {
    background: var(--ink-muted);
    color: var(--warm-white);
}

.is-style-outline .wp-block-button__link {
    background: transparent;
    color: var(--ink);
    border: 1px solid var(--border);
}

.is-style-outline .wp-block-button__link:hover {
    background: var(--cream);
}

/* WordPress Gallery */
.wp-block-gallery {
    margin-bottom: 2rem;
}

.wp-block-gallery figure {
    margin: 0;
}

.wp-block-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Featured image on pages */
.featured-image {
    margin-bottom: 1.5rem;
}

.featured-image img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
}

/* Tables */
.entry-content table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
}

.entry-content th,
.entry-content td {
    border: 1px solid var(--border);
    padding: 0.75rem;
    text-align: left;
    font-size: 0.9rem;
}

.entry-content th {
    background: var(--cream);
    font-weight: 500;
}

/* Blockquotes */
.entry-content blockquote {
    font-family: var(--serif);
    font-size: 1.2rem;
    font-style: italic;
    color: var(--ink-muted);
    border-left: 2px solid var(--gold);
    padding-left: 1.5rem;
    margin: 1.5rem 0;
}

/* Separator */
.entry-content hr.wp-block-separator {
    border: none;
    height: 1px;
    background: var(--border-soft);
    margin: 2rem 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .admin-bar .site-navigation {
        top: 46px;
    }

    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-inner {
        grid-template-columns: 1fr;
    }

    .what-grid {
        grid-template-columns: 1fr;
    }

    .what-photo {
        max-height: 250px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .packages-grid {
        grid-template-columns: 1fr;
    }

    .packages-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .packages-note {
        text-align: left;
    }

    .studio-grid {
        grid-template-columns: 1fr;
    }

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

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

    .about-portrait {
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    :root {
        --section-pad: 3rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .studio-card {
        grid-template-columns: 90px 1fr;
    }

    .contact-card,
    .enquiry-panel {
        padding: 2rem 1.5rem;
    }

    .whatsapp-float {
        right: 1rem;
        bottom: 1rem;
        width: 52px;
        min-height: 52px;
        justify-content: center;
        padding: 0;
    }

    .whatsapp-float span {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
    }
}
