/*
Theme Name: A-Therapy
Theme URI: https://a-therapy.com
Author: Khaled Hussain-Dupré
Author URI: https://a-therapy.com
Description: Custom WordPress theme for A-Therapy — Rafael Dupré's counselling and psychotherapy practice. Clean architecture, fully admin-manageable content.
Version: 1.6.3
License: Private
Text Domain: a-therapy
Requires at least: 6.0
Requires PHP: 8.0
*/

/* ==========================================================================
   Design Tokens
   ========================================================================== */

:root {
    --at-deep-green: #1a4d45;
    --at-green-92: rgba(26, 77, 69, 0.92);
    --at-gold: #eab465;
    --at-white: #ffffff;
    --at-white-05: rgba(255, 255, 255, 0.05);
    --at-white-08: rgba(255, 255, 255, 0.08);
    --at-white-10: rgba(255, 255, 255, 0.1);
    --at-white-15: rgba(255, 255, 255, 0.15);
    --at-white-20: rgba(255, 255, 255, 0.2);
    --at-white-30: rgba(255, 255, 255, 0.3);
    --at-white-50: rgba(255, 255, 255, 0.5);
    --at-white-70: rgba(255, 255, 255, 0.7);
    --at-light-text: #e0e0e0;
    --at-off-white: #f7eeee;
    --at-light-bg: #f0f0f0;
    --at-service-bg: #f4f6f5;
    --at-font-heading: 'Istok Web', Arial, sans-serif;
    --at-font-body: Helvetica, 'Helvetica Neue', Arial, sans-serif;
    --at-font-serif: Georgia, 'Times New Roman', serif;
    --at-header-height: 70px;
    --at-max-width: 1400px;
    --at-side-pad: 60px;
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */

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

body {
    font-family: var(--at-font-body);
    color: var(--at-white);
    background: var(--at-deep-green);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a { text-decoration: none; color: inherit; transition: color 0.3s, opacity 0.3s, border-color 0.3s; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

.screen-reader-text {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ==========================================================================
   Layout
   ========================================================================== */

.at-container { max-width: var(--at-max-width); margin: 0 auto; padding: 0 var(--at-side-pad); }
.at-section { padding: 80px var(--at-side-pad); }
.at-section-inner { max-width: var(--at-max-width); margin: 0 auto; }

/* ==========================================================================
   Header
   ========================================================================== */

.at-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(26, 77, 69, 0.95);
    backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    padding: 0 var(--at-side-pad);
    height: var(--at-header-height);
    display: flex; align-items: center; justify-content: space-between;
}

.at-logo {
    font-family: var(--at-font-heading);
    font-size: 22px; font-weight: 700;
    color: var(--at-off-white);
    letter-spacing: 3px; text-transform: uppercase;
}

.at-nav { display: flex; align-items: center; gap: 28px; }

.at-nav a {
    color: var(--at-white-70);
    font-family: var(--at-font-heading);
    font-size: 13px; font-weight: 400;
    letter-spacing: 0.5px;
}

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

.at-nav .menu-item a { color: var(--at-white-70); }
.at-nav .menu-item a:hover { color: var(--at-gold); }

.at-nav-cta,
.at-nav .at-cta-item a {
    background: var(--at-gold) !important;
    color: var(--at-deep-green) !important;
    padding: 12px 28px !important;
    font-weight: 700 !important;
    font-size: 13px !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
}

.at-nav-cta:hover,
.at-nav .at-cta-item a:hover { opacity: 0.9; }

/* Mobile nav toggle */
.at-nav-toggle {
    display: none; background: none; border: none;
    color: var(--at-white); font-size: 24px; cursor: pointer;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.at-hero {
    min-height: 100vh;
    background: var(--at-deep-green);
    position: relative; overflow: hidden;
    display: flex; align-items: stretch;
    padding-top: calc(var(--at-header-height) + 30px);
}

.at-hero-bg {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, #2d5a3f 0%, #1a4d45 30%, #0d3a2f 100%);
    opacity: 0.6;
}

.at-hero-bg::after {
    content: ''; position: absolute; inset: 0;
    background: repeating-linear-gradient(170deg, transparent, transparent 30px, rgba(100,160,80,0.08) 30px, rgba(100,160,80,0.08) 32px);
}

.at-hero-bg-video {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.at-hero-content {
    position: relative; z-index: 2;
    display: grid; grid-template-columns: 1fr 1fr;
    max-width: var(--at-max-width);
    margin: 0 auto; width: 100%;
    padding: 0 var(--at-side-pad);
    align-items: end;
}

.at-hero-left {
    display: flex; flex-direction: column;
    justify-content: flex-end; align-items: flex-start;
}

.at-hero-subtitle {
    font-family: var(--at-font-heading);
    font-size: 14px; font-weight: 700;
    letter-spacing: 1px; color: var(--at-white);
    background: rgba(26,77,69,0.5);
    border: 1px solid rgba(255,255,255,0.3);
    display: inline-block; padding: 10px 20px;
    margin-bottom: 20px; max-width: fit-content;
}

.at-hero-photo {
    width: 100%; max-width: 460px;
    aspect-ratio: 3/4;
    position: relative; overflow: visible;
}

.at-hero-photo img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center top;
}

.at-bacp-badge {
    position: absolute; bottom: 20px; right: -30px;
    background: white; padding: 8px 16px; border-radius: 4px;
    display: flex; align-items: center; gap: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}

.at-bacp-badge span {
    font-size: 11px; color: #333;
    font-weight: 700; letter-spacing: 0.5px;
}

.at-bacp-badge--image {
    padding: 6px 12px; background: white;
    box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}

.at-bacp-badge--image img {
    max-height: 50px; width: auto;
}

.at-hero-right { display: flex; align-items: center; }

.at-hero-bio {
    background: rgba(26, 77, 69, 0.85);
    padding: 48px 44px; max-width: 560px;
}

.at-hero-bio h2 {
    font-family: var(--at-font-heading);
    font-size: 32px; font-weight: 800;
    letter-spacing: 1px; text-transform: uppercase;
    color: var(--at-white); margin-bottom: 28px;
    position: relative; display: inline-block;
}

.at-hero-bio h2::after {
    content: ''; position: absolute; bottom: -8px; left: 0;
    width: 40px; height: 3px; background: var(--at-gold);
}

.at-hero-bio p {
    font-size: 15px; line-height: 1.8;
    color: var(--at-light-text); margin-bottom: 16px;
}

.at-hero-bio p:last-child { margin-bottom: 0; }

.at-hero-signoff {
    margin-top: 28px;
    padding-top: 0;
}

.at-hero-signature {
    max-width: 160px; height: auto;
    margin-bottom: 12px;
}

.at-hero-signoff-name {
    font-family: var(--at-font-heading);
    font-size: 15px; font-weight: 700;
    color: var(--at-white);
    margin-bottom: 12px;
}

.at-hero-signoff-link {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--at-gold);
    margin-bottom: 4px;
}

.at-hero-signoff-link:hover {
    opacity: 0.8;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.at-btn-gold {
    display: inline-block;
    background: var(--at-gold);
    color: var(--at-deep-green);
    padding: 14px 28px;
    font-family: var(--at-font-heading);
    font-weight: 700; font-size: 13px;
    letter-spacing: 1px; text-transform: uppercase;
    text-align: center;
}

.at-btn-gold:hover { opacity: 0.9; }

.at-btn-outline {
    display: inline-block;
    padding: 14px 32px;
    border: 1px solid var(--at-white-30);
    color: var(--at-white);
    font-family: var(--at-font-heading);
    font-weight: 700; font-size: 12px;
    letter-spacing: 1.5px; text-transform: uppercase;
    text-align: center;
}

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

.at-btn-whatsapp {
    display: inline-flex; align-items: center; gap: 10px;
    background: #25D366; color: white;
    padding: 12px 24px;
    border-radius: 28px;
    font-family: var(--at-font-heading);
    font-weight: 700; font-size: 14px;
    letter-spacing: 0.3px;
    box-shadow: 0 2px 8px rgba(37,211,102,0.3);
    transition: all 0.3s;
}

.at-btn-whatsapp:hover {
    background: #1DA851;
    box-shadow: 0 4px 12px rgba(37,211,102,0.4);
    color: white;
}

.at-btn-whatsapp svg {
    width: 20px; height: 20px; fill: currentColor;
}

/* ==========================================================================
   Approach / Services Section
   ========================================================================== */

.at-approach { background: var(--at-light-bg); }

.at-approach-heading {
    font-family: var(--at-font-heading);
    font-size: 36px; font-weight: 800;
    letter-spacing: 1px; text-transform: uppercase;
    color: #333; margin-bottom: 48px;
}

.at-approach-heading span { position: relative; }

.at-approach-heading span::after {
    content: ''; position: absolute; bottom: -6px; left: 0;
    width: 100%; height: 3px; background: var(--at-gold);
}

.at-approach-wrapper {
    display: flex; gap: 20px;
}

.at-approach-static {
    flex: 0 0 320px;
}

.at-approach-grid {
    display: flex; gap: 20px; overflow-x: auto;
    padding-bottom: 20px; scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    flex: 1;
    min-width: 0;
}

.at-approach-grid::-webkit-scrollbar { height: 4px; }
.at-approach-grid::-webkit-scrollbar-track { background: rgba(0,0,0,0.05); }
.at-approach-grid::-webkit-scrollbar-thumb { background: var(--at-gold); border-radius: 2px; }

.at-approach-card {
    flex: 0 0 320px;
    background: white;
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    padding: 36px 28px;
    scroll-snap-align: start;
    min-height: 320px;
    display: flex; flex-direction: column;
}

.at-approach-card.at-avail {
    background: var(--at-deep-green);
    border-color: var(--at-white-10);
    box-shadow: none;
}

.at-avail-date {
    font-size: 12px; color: var(--at-white-50);
    margin-bottom: 16px; font-style: italic;
}

.at-approach-card h3 {
    font-family: var(--at-font-heading);
    font-size: 18px; font-weight: 700;
    letter-spacing: 0.5px; text-transform: uppercase;
    color: var(--at-deep-green); margin-bottom: 16px;
}

.at-approach-card p {
    font-size: 14px; line-height: 1.7;
    color: #555; flex-grow: 1;
}

/* Availability card keeps white text on dark bg */
.at-approach-card.at-avail h3 { color: var(--at-white); }
.at-approach-card.at-avail p { color: var(--at-light-text); }

.at-approach-card .at-costs {
    font-weight: 700; color: #333; margin-top: 12px;
}

.at-approach-card .at-btn-gold {
    margin-top: 28px; align-self: flex-start;
}

.at-approach-card.at-avail .at-costs { color: var(--at-white); }

.at-also-offer {
    margin-top: 36px;
    display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
}

.at-also-offer-label {
    font-family: var(--at-font-heading);
    font-size: 14px; color: #555; font-weight: 700;
    letter-spacing: 0.5px;
}

.at-offer-pill {
    display: inline-block; padding: 10px 22px;
    border: 1px solid rgba(0,0,0,0.15);
    color: #444;
    font-family: var(--at-font-heading);
    font-size: 12px; font-weight: 700;
    letter-spacing: 1px; text-transform: uppercase;
}

.at-offer-pill:hover { border-color: var(--at-gold); color: var(--at-deep-green); }

/* ==========================================================================
   Video Section
   ========================================================================== */

.at-video-section {
    padding: 0; height: 600px;
    background: linear-gradient(135deg, #4a7a5a, #2d5a3f, #1a4d45);
    position: relative;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}

.at-video-section video {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
}

.at-video-controls {
    position: absolute; right: 24px; bottom: 24px;
    display: flex; gap: 12px;
    z-index: 2;
}

.at-video-btn {
    width: 44px; height: 44px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s ease;
    padding: 0;
}

.at-video-btn svg {
    width: 18px; height: 18px;
}

.at-video-btn:hover { 
    background: rgba(255,255,255,0.2); 
    border-color: rgba(255,255,255,0.4);
    transform: scale(1.05);
}

.at-video-btn:active {
    transform: scale(0.95);
}

/* ==========================================================================
   Team Section
   ========================================================================== */

.at-team {
    background: var(--at-deep-green);
    padding-bottom: 0 !important;
    overflow: hidden;
    position: relative;
}

.at-team-label {
    font-family: var(--at-font-heading);
    font-size: 36px; font-weight: 800;
    letter-spacing: 1px; text-transform: uppercase;
    color: var(--at-white);
    margin-bottom: 24px;
}

.at-team-label span {
    position: relative;
}

.at-team-label span::after {
    content: ''; position: absolute; bottom: -6px; left: 0;
    width: 100%; height: 3px; background: var(--at-gold);
}

.at-team-viewport {
    overflow: hidden;
    position: relative;
}

.at-team-track {
    display: flex;
    gap: 32px;
    transition: transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.at-team-member {
    flex: 0 0 calc(50% - 16px);
    display: flex; align-items: center; gap: 32px;
    min-width: 0;
}

.at-team-photo {
    width: 240px; height: 320px;
    flex-shrink: 0; overflow: hidden;
    background: linear-gradient(180deg, rgba(26,77,69,0.4), rgba(26,77,69,0.7));
}

.at-team-photo img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center top;
}

/* Placeholder silhouette for missing photos */
.at-team-photo-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: flex-end; justify-content: center;
    background: linear-gradient(180deg, rgba(26,77,69,0.3), rgba(26,77,69,0.6));
}

.at-team-photo-placeholder svg {
    width: 60%; height: auto; opacity: 0.15;
}

.at-team-info {
    max-width: 400px; min-width: 0;
    display: flex; flex-direction: column;
    justify-content: center;
}

.at-team-info h3 {
    font-family: var(--at-font-heading);
    font-size: 24px; font-weight: 700;
    color: var(--at-white); margin-bottom: 4px;
}

.at-team-role {
    font-family: var(--at-font-heading);
    font-size: 14px; font-weight: 700;
    color: var(--at-gold); text-transform: uppercase;
    letter-spacing: 1px; margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--at-white-10);
}

.at-team-bio {
    font-size: 14px; line-height: 1.8;
    color: var(--at-light-text); margin-bottom: 16px;
}

.at-read-more {
    font-family: var(--at-font-heading);
    font-size: 13px; font-weight: 700;
    color: var(--at-white); letter-spacing: 1px;
    text-transform: uppercase;
}

.at-read-more:hover { color: var(--at-gold); }

.at-team-dots {
    display: flex; gap: 8px;
    position: absolute;
    bottom: 24px;
    left: calc(240px + 32px + var(--at-side-pad));
}

.at-team-dot {
    width: 10px; height: 10px; border-radius: 50%;
    background: var(--at-white-20);
    cursor: pointer; transition: background 0.3s;
}

.at-team-dot.active { background: var(--at-gold); }

/* ==========================================================================
   Next Steps / Booking Section
   ========================================================================== */

.at-next-steps {
    background: var(--at-light-bg);
    padding: 80px var(--at-side-pad);
    color: #333;
}

.at-next-steps-inner {
    max-width: var(--at-max-width);
    margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 60px; align-items: start;
}

.at-next-steps h2 {
    font-family: var(--at-font-heading);
    font-size: 40px; font-weight: 400;
    font-style: italic; color: #555;
    margin-bottom: 8px;
}

.at-next-steps .at-subtitle {
    font-size: 14px; color: #888;
    font-style: italic; margin-bottom: 32px;
}

.at-contact-profile {
    display: flex; align-items: center; gap: 16px;
    margin-bottom: 20px;
}

.at-contact-avatar {
    width: 60px; height: 60px; border-radius: 50%;
    overflow: hidden; background: #ddd;
}

.at-contact-avatar img { width: 100%; height: 100%; object-fit: cover; }

.at-contact-name {
    font-family: var(--at-font-heading);
    font-size: 18px; font-weight: 700;
    color: var(--at-gold);
}

.at-contact-email { font-size: 14px; color: #888; }
.at-contact-email a { color: #888; }
.at-contact-email a:hover { color: var(--at-gold); }

.at-contact-details {
    font-size: 14px; color: #666;
    line-height: 1.8; margin-top: 16px;
}

.at-booking-widget {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    min-height: 400px;
    overflow: hidden;
}

.at-booking-widget iframe {
    width: 100%; min-height: 600px; border: none;
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */

.at-testimonials {
    position: relative; padding: 100px var(--at-side-pad);
    overflow: hidden;
}

.at-testimonials-bg {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, #2d5a3f, #1a4d45 40%, #0d3a2f);
    z-index: 0;
}

.at-testimonials-bg::after {
    content: ''; position: absolute; inset: 0;
    background: repeating-linear-gradient(175deg, transparent, transparent 40px, rgba(100,160,80,0.06) 40px, rgba(100,160,80,0.06) 42px);
}

.at-testimonials-inner {
    position: relative; z-index: 1;
    max-width: var(--at-max-width); margin: 0 auto;
}

.at-testimonials-title {
    font-size: 64px; font-weight: 800;
    letter-spacing: 2px; text-transform: uppercase;
    color: rgba(255,255,255,0.06); text-align: center;
    margin-bottom: 40px;
    font-family: var(--at-font-heading);
}

.at-testimonials-featured {
    text-align: center; max-width: 800px;
    margin: 0 auto 56px;
    font-size: 16px; line-height: 1.9;
    color: var(--at-white-70); font-style: italic;
}

.at-testimonials-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 24px; margin-bottom: 40px;
}

.at-testimonial-card {
    background: rgba(26,77,69,0.85);
    border: 1px solid var(--at-white-08);
    padding: 36px 32px;
}

.at-tq {
    font-size: 28px; color: var(--at-gold);
    margin-bottom: 16px; font-family: var(--at-font-serif);
}

.at-testimonial-card p {
    font-size: 14px; line-height: 1.8;
    color: var(--at-light-text); font-style: italic;
    margin-bottom: 20px;
}

.at-testimonial-author {
    font-family: var(--at-font-heading);
    font-size: 14px; font-weight: 700;
    color: var(--at-white);
    padding-top: 16px;
    border-top: 1px solid var(--at-white-10);
    font-style: normal !important;
}

.at-testimonials-btn { text-align: center; }

/* ==========================================================================
   Quotes / Professional Endorsements
   ========================================================================== */

.at-quotes {
    background: var(--at-white);
    padding: 80px var(--at-side-pad);
    text-align: center; color: #333;
}

.at-quote-text {
    font-family: var(--at-font-serif);
    font-size: 22px; font-style: italic;
    color: var(--at-gold);
    max-width: 800px; margin: 0 auto 32px;
    line-height: 1.6;
}

.at-quote-author-photo {
    width: 72px; height: 72px; border-radius: 50%;
    border: 3px solid var(--at-deep-green);
    background: #ddd; margin: 0 auto 12px;
    overflow: hidden;
}

.at-quote-author-photo img { width: 100%; height: 100%; object-fit: cover; }

.at-quote-author-name {
    font-family: var(--at-font-heading);
    font-size: 16px; font-weight: 700;
    color: #333; text-transform: uppercase;
    letter-spacing: 1px; margin-bottom: 4px;
}

.at-quote-author-role { font-size: 14px; color: #888; }

/* ==========================================================================
   Articles Section
   ========================================================================== */

.at-articles { background: var(--at-deep-green); }

.at-articles-header {
    display: flex; justify-content: space-between;
    align-items: flex-end; margin-bottom: 48px;
}

.at-section-label {
    font-family: var(--at-font-heading);
    font-size: 12px; letter-spacing: 2px;
    text-transform: uppercase; color: var(--at-gold);
    font-weight: 700; margin-bottom: 8px;
}

.at-section-heading {
    font-family: var(--at-font-heading);
    font-size: 48px; font-weight: 800;
    letter-spacing: 1px; color: var(--at-white);
}

.at-articles-filters { display: flex; gap: 8px; }

.at-filter-pill {
    padding: 8px 20px; border-radius: 20px;
    font-family: var(--at-font-heading);
    font-size: 12px; font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--at-light-text);
    background: var(--at-white-08);
    border: 1px solid var(--at-white-10);
    cursor: pointer;
}

.at-filter-pill.active {
    background: var(--at-gold);
    color: var(--at-deep-green);
    border-color: var(--at-gold);
}

.at-filter-pill:hover:not(.active) { border-color: var(--at-gold); color: var(--at-gold); }

.at-articles-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.at-article-card {
    background: var(--at-green-92);
    border: 1px solid rgba(255,255,255,0.06);
    padding: 32px 28px;
    display: flex; flex-direction: column;
    min-height: 220px;
    transition: border-color 0.3s;
}

.at-article-card:hover { border-color: rgba(234,180,101,0.3); }

.at-article-card h3 {
    font-family: var(--at-font-heading);
    font-size: 18px; font-weight: 700;
    color: var(--at-gold); margin-bottom: 12px;
    line-height: 1.3;
}

.at-article-card p {
    font-size: 14px; line-height: 1.7;
    color: var(--at-light-text); flex-grow: 1;
}

.at-article-date {
    display: flex; align-items: center; gap: 6px;
    font-family: var(--at-font-heading);
    font-size: 12px; font-weight: 700;
    color: var(--at-gold); letter-spacing: 0.5px;
    text-transform: uppercase; margin-top: 16px;
}

/* ==========================================================================
   Combined Next Steps Section (Sequentus-style)
   ========================================================================== */

.at-next-steps-combined {
    background: var(--at-light-bg);
    padding: 80px var(--at-side-pad);
}

.at-nsc-inner {
    max-width: var(--at-max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 420px;
    grid-template-rows: auto auto auto;
    gap: 48px 48px;
}

/* Grid placement for desktop - booking sticky on right spanning all rows */
.at-nsc-contact { grid-column: 1; grid-row: 1; }
.at-nsc-booking { grid-column: 2; grid-row: 1 / 4; align-self: start; position: sticky; top: calc(var(--at-header-height) + 24px); }
.at-nsc-endorsements { grid-column: 1; grid-row: 2; }
.at-nsc-testimonials { grid-column: 1; grid-row: 3; }

.at-nsc-heading {
    font-family: var(--at-font-heading);
    font-size: 36px; font-weight: 800;
    letter-spacing: 1px; text-transform: uppercase;
    color: #333; margin-bottom: 8px;
    display: inline-block; position: relative;
}

.at-nsc-heading::after {
    content: ''; position: absolute;
    bottom: -6px; left: 0;
    width: 40px; height: 3px;
    background: var(--at-gold);
}

.at-nsc-subtitle {
    font-size: 18px; color: #555;
    font-style: italic; margin-top: 16px; margin-bottom: 32px;
    font-family: var(--at-font-heading);
    font-weight: 400;
    line-height: 1.5;
}

.at-nsc-profile {
    display: flex; gap: 24px;
    margin-bottom: 40px;
}

.at-nsc-avatar {
    width: 180px; flex-shrink: 0;
}

.at-nsc-avatar img {
    width: 100%; height: auto;
    border-bottom: 3px solid var(--at-gold);
}

.at-nsc-name {
    font-family: var(--at-font-heading);
    font-size: 24px; font-weight: 700;
    color: #333; margin-bottom: 4px;
}

.at-nsc-email { font-size: 17px; color: #666; margin-bottom: 16px; }
.at-nsc-email a { color: #666; }
.at-nsc-email a:hover { color: var(--at-gold); }

.at-nsc-profile-info .at-btn-whatsapp { margin-bottom: 16px; }

.at-nsc-phone { font-size: 14px; color: #555; margin-bottom: 8px; }
.at-nsc-phone a { color: #555; }
.at-nsc-fees { font-size: 13px; color: #888; font-style: italic; margin-top: 8px; }

/* Article cards in Next Steps */
.at-nsc-articles { margin-bottom: 40px; }

.at-nsc-articles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 16px;
}

.at-nsc-article-card {
    background: var(--at-deep-green);
    border: 1px solid var(--at-white-08);
    padding: 24px 20px;
    display: flex; flex-direction: column;
    min-height: 180px;
    transition: border-color 0.3s;
}

.at-nsc-article-card:hover { border-color: rgba(234,180,101,0.3); }

.at-nsc-article-excerpt {
    font-size: 14px; line-height: 1.7;
    color: var(--at-light-text); flex-grow: 1;
}

.at-nsc-article-date {
    font-size: 12px; color: var(--at-gold);
    font-family: var(--at-font-heading);
    font-weight: 700; margin-top: 12px;
}

.at-nsc-article-author {
    display: flex; align-items: center; gap: 8px;
    margin-top: 16px; padding-top: 12px;
    border-top: 1px solid var(--at-white-08);
    font-size: 13px; color: var(--at-white-70);
    font-weight: 700;
}

.at-nsc-article-author span {
    color: var(--at-gold); font-size: 12px;
    font-weight: 400;
}

.at-nsc-articles-link { text-align: right; }

/* Section sub-headings in Next Steps */
.at-nsc-section-title {
    font-family: var(--at-font-heading);
    font-size: 13px; font-weight: 700;
    letter-spacing: 1.5px; text-transform: uppercase;
    color: #999; margin-bottom: 20px;
}

/* Professional Endorsements Carousel */
.at-nsc-endorsements { margin-bottom: 40px; }

.at-nsc-endorsements-header {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 20px;
}

.at-nsc-endorsements-header .at-nsc-section-title { margin-bottom: 0; }

.at-nsc-endorsement-nav {
    display: flex; align-items: center; gap: 10px;
}

.at-nsc-endorsement-arrow {
    width: 32px; height: 32px;
    background: none; border: 1px solid #ccc;
    color: #888; font-size: 14px; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s;
}

.at-nsc-endorsement-arrow:hover {
    border-color: var(--at-gold); color: var(--at-deep-green);
}

.at-nsc-endorsement-counter {
    font-family: var(--at-font-heading);
    font-size: 12px; color: #aaa;
    letter-spacing: 0.5px; font-weight: 700;
    min-width: 40px; text-align: center;
}

.at-nsc-endorsement-card {
    background: white;
    border: 1px solid #e0e0e0;
    padding: 28px 24px;
    min-height: 200px;
    display: flex; flex-direction: column;
    justify-content: space-between;
}

.at-nsc-endorsement-quote { position: relative; }

.at-nsc-endorsement-mark {
    font-family: var(--at-font-serif);
    font-size: 48px; line-height: 1;
    color: var(--at-gold); opacity: 0.4;
    position: absolute; top: -8px; left: -4px;
}

.at-nsc-endorsement-text {
    font-family: var(--at-font-serif);
    font-size: 15px; line-height: 1.7;
    color: #555; font-style: italic;
    margin-bottom: 16px; padding-left: 20px;
}

.at-nsc-endorsement-author {
    display: flex; align-items: center; gap: 12px;
    padding-top: 16px;
    border-top: 1px solid #eee;
}

.at-nsc-endorsement-photo {
    width: 48px; height: 48px; border-radius: 50%;
    object-fit: cover; flex-shrink: 0;
    border: 2px solid var(--at-deep-green);
}

.at-nsc-endorsement-photo--placeholder {
    background: #e8e8e8;
    display: flex; align-items: center; justify-content: center;
    color: #bbb; overflow: hidden;
}

.at-nsc-endorsement-author strong {
    display: block; font-size: 14px; color: #333;
}

.at-nsc-endorsement-author span {
    display: block; font-size: 13px; color: var(--at-gold);
}

/* Client Testimonials in Next Steps */
.at-nsc-testimonials { margin-bottom: 24px; }
.at-nsc-testimonials .at-nsc-section-title { margin-bottom: 20px; }

.at-nsc-testimonial-card {
    background: var(--at-deep-green);
    border: 1px solid var(--at-white-08);
    padding: 28px 24px;
    margin-bottom: 16px;
}

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

.at-nsc-testimonial-card p {
    font-size: 14px; line-height: 1.8;
    color: var(--at-light-text); font-style: italic;
    margin-bottom: 16px;
}

.at-nsc-testimonial-author {
    display: flex; align-items: center; gap: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--at-white-08);
}

.at-nsc-testimonial-avatar {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--at-white-10);
    flex-shrink: 0;
    overflow: hidden;
    display: flex; align-items: flex-end; justify-content: center;
}

.at-nsc-testimonial-avatar svg {
    width: 28px; height: 28px;
    color: rgba(255,255,255,0.25);
}

.at-nsc-testimonial-author strong {
    display: block; font-size: 14px; color: var(--at-white);
}

.at-nsc-testimonial-author span {
    display: block; font-size: 13px; color: var(--at-gold);
    margin-top: 2px;
}

/* Hidden testimonials (beyond first 4) */
.at-nsc-testimonial-hidden { display: none; }

/* Show More button */
.at-nsc-show-more-wrap { text-align: center; margin-top: 20px; }

.at-btn-show-more {
    display: inline-block;
    padding: 12px 28px;
    background: var(--at-gold);
    color: var(--at-deep-green);
    border: none;
    font-family: var(--at-font-heading);
    font-weight: 700; font-size: 13px;
    letter-spacing: 1px; text-transform: uppercase;
    cursor: pointer; transition: opacity 0.3s;
}

.at-btn-show-more:hover { opacity: 0.9; }

/* Booking widget column */
.at-nsc-booking-sticky {
    background: var(--at-deep-green);
    padding: 36px 32px;
    border: 1px solid var(--at-white-08);
}

.at-nsc-booking-title {
    font-family: var(--at-font-heading);
    font-size: 28px; font-weight: 700;
    color: var(--at-white); margin-bottom: 12px;
}

.at-nsc-booking-desc {
    font-size: 14px; line-height: 1.7;
    color: var(--at-white-70);
    margin-bottom: 24px;
}

.at-nsc-booking-widget {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    min-height: 400px;
}

.at-nsc-booking-widget iframe {
    width: 100%; min-height: 550px; border: none;
}

/* Responsive */
@media (max-width: 1100px) {
    .at-nsc-inner { grid-template-columns: 1fr 360px; gap: 32px; }
}

@media (max-width: 900px) {
    /* Switch to flexbox for mobile reordering */
    .at-nsc-inner { 
        display: flex; 
        flex-direction: column;
        gap: 32px;
    }
    
    /* Order: Contact → Booking → Endorsements → Testimonials */
    .at-nsc-contact { order: 1; }
    .at-nsc-booking { order: 2; position: static; }
    .at-nsc-endorsements { order: 3; }
    .at-nsc-testimonials { order: 4; }
    
    .at-nsc-booking-sticky { position: static; }
    .at-nsc-profile { flex-direction: row; gap: 16px; align-items: flex-start; }
    .at-nsc-avatar { width: 100px; flex-shrink: 0; }
    .at-nsc-articles-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Footer
   ========================================================================== */

.at-footer {
    background: var(--at-deep-green);
    padding: 60px var(--at-side-pad) 32px;
    border-top: 1px solid var(--at-white-08);
}

.at-footer-grid {
    max-width: var(--at-max-width); margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr;
    gap: 40px; margin-bottom: 40px;
}

.at-footer-logo {
    font-family: var(--at-font-heading);
    font-size: 20px; font-weight: 700;
    color: var(--at-off-white);
    letter-spacing: 3px; text-transform: uppercase;
}

.at-footer-col h4 {
    font-family: var(--at-font-heading);
    font-size: 14px; font-weight: 700;
    color: var(--at-white); margin-bottom: 16px;
}

.at-footer-col a {
    display: block; color: var(--at-white-50);
    font-size: 14px; margin-bottom: 8px;
}

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

.at-footer-col .menu li { margin-bottom: 8px; }
.at-footer-col .menu li a { display: block; color: var(--at-white-50); font-size: 14px; }
.at-footer-col .menu li a:hover { color: var(--at-gold); }

.at-contact-item {
    display: flex; align-items: flex-start; gap: 8px;
    margin-bottom: 8px; font-size: 14px;
    color: var(--at-white-70);
}

.at-contact-item a { color: var(--at-white-70); }
.at-contact-item a:hover { color: var(--at-gold); }

.at-footer-bottom {
    max-width: var(--at-max-width); margin: 0 auto;
    padding-top: 24px;
    border-top: 1px solid var(--at-white-08);
    display: flex; justify-content: space-between; align-items: center;
}

.at-footer-bottom p { font-size: 13px; color: var(--at-white-50); }

.at-social-icons { display: flex; gap: 12px; }

.at-social-icon {
    width: 36px; height: 36px; border-radius: 50%;
    border: 1px solid var(--at-white-20);
    display: flex; align-items: center; justify-content: center;
    color: var(--at-white-70); font-size: 14px;
}

.at-social-icon:hover { border-color: var(--at-gold); color: var(--at-gold); }

.at-social-icon svg { width: 16px; height: 16px; fill: currentColor; }

/* ==========================================================================
   WhatsApp FAB
   ========================================================================== */

.at-whatsapp-fab {
    position: fixed; bottom: 24px; right: 24px;
    width: 56px; height: 56px; border-radius: 50%;
    background: #25D366;
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 28px;
    box-shadow: 0 4px 16px rgba(37,211,102,0.4);
    z-index: 99; transition: transform 0.3s;
}

.at-whatsapp-fab:hover { transform: scale(1.1); }

.at-whatsapp-fab svg { width: 28px; height: 28px; fill: white; }

/* ==========================================================================
   Inner Pages (Service Pages, Standard Pages)
   ========================================================================== */

.at-page-hero {
    padding: 160px var(--at-side-pad) 60px;
    background: var(--at-deep-green);
    text-align: center;
}

.at-page-title {
    font-family: var(--at-font-heading);
    font-size: 42px; font-weight: 800;
    letter-spacing: 1px; text-transform: uppercase;
    color: var(--at-white);
    position: relative; display: inline-block;
}

.at-page-title::after {
    content: ''; position: absolute;
    bottom: -10px; left: 50%; transform: translateX(-50%);
    width: 60px; height: 3px; background: var(--at-gold);
}

.at-page-content {
    background: var(--at-service-bg);
    padding: 60px var(--at-side-pad);
}

.at-page-content-inner {
    max-width: 1200px; margin: 0 auto;
    padding: 0 var(--at-side-pad);
}

.at-page-content-inner p {
    font-size: 16px; line-height: 1.8;
    color: #444; margin-bottom: 20px;
}

.at-page-content-inner h2 {
    font-family: var(--at-font-heading);
    font-size: 24px; font-weight: 700;
    color: var(--at-deep-green);
    margin: 40px 0 16px;
}

.at-page-content-inner h3 {
    font-family: var(--at-font-heading);
    font-size: 20px; font-weight: 700;
    color: var(--at-deep-green);
    margin: 32px 0 12px;
}

.at-page-content-inner ul,
.at-page-content-inner ol {
    margin: 16px 0 20px 24px;
    list-style: disc;
}

.at-page-content-inner li {
    font-size: 16px; line-height: 1.8;
    color: #444; margin-bottom: 8px;
}

/* Two-column layout for service pages */
.at-page-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 0 var(--at-side-pad);
}

.at-page-column-heading {
    font-family: var(--at-font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--at-deep-green);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--at-gold);
}

.at-page-column-content {
    font-size: 15px;
    line-height: 1.8;
    color: #444;
}

.at-page-column-content p {
    margin-bottom: 16px;
}

.at-page-column-content ul {
    margin: 16px 0 20px 20px;
    list-style: disc;
}

.at-page-column-content li {
    margin-bottom: 8px;
}

/* Service page cards */
.at-service-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.at-service-intro p {
    font-size: 16px; line-height: 1.8;
    color: #555;
}

.at-service-cards {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.at-service-card {
    background: white; padding: 36px 32px;
    border-radius: 4px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.at-service-card h2,
.at-service-card h3 {
    font-family: var(--at-font-heading);
    font-size: 18px; font-weight: 700;
    color: var(--at-deep-green);
    margin: 0 0 16px;
    text-transform: none;
    letter-spacing: 0;
}

.at-service-card p {
    font-size: 14px; line-height: 1.7;
    color: #555;
}

.at-service-card ul { margin: 12px 0 0 20px; list-style: disc; }
.at-service-card li { font-size: 14px; line-height: 1.7; color: #555; margin-bottom: 6px; }

/* ==========================================================================
   Blog / Archive
   ========================================================================== */

.at-archive-header {
    padding: 160px var(--at-side-pad) 40px;
    background: var(--at-deep-green);
}

.at-archive-title {
    font-family: var(--at-font-heading);
    font-size: 48px; font-weight: 800;
    color: var(--at-white); letter-spacing: 1px;
    max-width: var(--at-max-width); margin: 0 auto;
}

.at-archive-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.at-archive-with-sidebar {
    max-width: var(--at-max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 60px;
    align-items: start;
    padding: 40px var(--at-side-pad) 80px;
}

.at-archive-with-sidebar .at-sidebar-nav a {
    color: var(--at-white-70);
}

.at-archive-with-sidebar .at-sidebar-nav a:hover {
    color: var(--at-white);
}

.at-archive-with-sidebar .at-sidebar-nav-divider {
    background: var(--at-white-10);
}

/* Single Post */
.at-single-header {
    padding: 160px var(--at-side-pad) 40px;
    background: var(--at-deep-green);
    text-align: center;
}

.at-single-title {
    font-family: var(--at-font-heading);
    font-size: 36px; font-weight: 800;
    color: var(--at-white);
    max-width: 800px; margin: 0 auto 16px;
}

.at-single-meta {
    font-size: 14px; color: var(--at-gold);
    font-family: var(--at-font-heading);
    font-weight: 700; letter-spacing: 0.5px;
}

.at-single-content {
    background: var(--at-service-bg);
    padding: 60px var(--at-side-pad);
}

.at-single-content-inner {
    max-width: 760px; margin: 0 auto;
}

.at-single-content-inner p { font-size: 16px; line-height: 1.9; color: #444; margin-bottom: 20px; }
.at-single-content-inner h2 { font-family: var(--at-font-heading); font-size: 26px; font-weight: 700; color: var(--at-deep-green); margin: 40px 0 16px; }
.at-single-content-inner h3 { font-family: var(--at-font-heading); font-size: 22px; font-weight: 700; color: var(--at-deep-green); margin: 32px 0 12px; }
.at-single-content-inner ul, .at-single-content-inner ol { margin: 16px 0 20px 24px; list-style: disc; }
.at-single-content-inner li { font-size: 16px; line-height: 1.8; color: #444; margin-bottom: 8px; }
.at-single-content-inner img { margin: 24px 0; border-radius: 4px; }
.at-single-content-inner blockquote { border-left: 3px solid var(--at-gold); padding: 16px 24px; margin: 24px 0; font-style: italic; color: #555; background: white; }

/* Sidebar layout for single posts and team bios */
.at-single-with-sidebar {
    max-width: var(--at-max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 60px;
    align-items: start;
}

.at-single-with-sidebar .at-single-content-inner,
.at-single-with-sidebar .at-team-bio-content {
    max-width: 760px;
    margin: 0;
}

.at-sidebar-nav {
    position: sticky;
    top: calc(var(--at-header-height) + 40px);
}

.at-sidebar-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.at-sidebar-nav li {
    margin-bottom: 12px;
}

.at-sidebar-nav a {
    font-family: var(--at-font-heading);
    font-size: 13px;
    font-weight: 400;
    color: #666;
    text-decoration: none;
    transition: color 0.2s;
}

.at-sidebar-nav a:hover {
    color: var(--at-deep-green);
}

.at-sidebar-nav-divider {
    height: 1px;
    background: #ddd;
    margin: 16px 0;
}

/* Single Team Member Page */
.at-team-hero {
    background: var(--at-deep-green);
    padding: 120px var(--at-side-pad) 60px;
}

.at-team-hero-inner {
    max-width: var(--at-max-width);
    margin: 0 auto;
    display: flex;
    align-items: flex-end;
    gap: 40px;
}

.at-team-hero-photo {
    width: 280px;
    flex-shrink: 0;
}

.at-team-hero-photo img {
    width: 100%;
    height: auto;
    display: block;
}

.at-team-hero-info {
    padding-bottom: 20px;
}

.at-team-hero-name {
    font-family: var(--at-font-heading);
    font-size: 42px;
    font-weight: 800;
    color: var(--at-white);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.at-team-hero-role {
    font-family: var(--at-font-heading);
    font-size: 14px;
    font-weight: 700;
    color: var(--at-gold);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.at-team-bio-section {
    background: var(--at-service-bg);
    padding: 60px var(--at-side-pad);
}

.at-team-bio-content {
    max-width: 900px;
    margin: 0 auto;
}

.at-team-bio-content p {
    font-size: 16px;
    line-height: 1.9;
    color: #444;
    margin-bottom: 20px;
}

/* Pagination */
.at-pagination {
    display: flex; justify-content: center; gap: 8px;
    padding: 0 var(--at-side-pad) 80px;
}

.at-pagination a, .at-pagination span {
    display: inline-block; padding: 10px 16px;
    font-family: var(--at-font-heading);
    font-size: 13px; font-weight: 700;
    border: 1px solid var(--at-white-20);
    color: var(--at-white-70);
}

.at-pagination .current {
    background: var(--at-gold);
    color: var(--at-deep-green);
    border-color: var(--at-gold);
}

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

.at-404 {
    min-height: 80vh;
    display: flex; align-items: center; justify-content: center;
    text-align: center; padding: 160px var(--at-side-pad) 80px;
}

.at-404 h1 {
    font-family: var(--at-font-heading);
    font-size: 120px; font-weight: 800;
    color: var(--at-gold); letter-spacing: 4px;
    margin-bottom: 16px;
}

.at-404 h2 {
    font-family: var(--at-font-heading);
    font-size: 28px; font-weight: 700;
    color: var(--at-white); margin-bottom: 16px;
}

.at-404 p { font-size: 16px; color: var(--at-white-70); margin-bottom: 32px; }

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1100px) {
    .at-articles-grid { grid-template-columns: repeat(2, 1fr); }
    .at-archive-grid { grid-template-columns: repeat(2, 1fr); }
    .at-footer-grid { grid-template-columns: 1fr 1fr 1fr; }
}

@media (max-width: 900px) {
    :root { --at-side-pad: 24px; }

    .at-header { padding: 0 16px; }
    .at-logo { font-size: 18px; letter-spacing: 2px; }
    .at-nav .menu-item:not(.at-cta-item) { display: none; }
    .at-nav > a:not(.at-nav-cta) { display: none; }
    .at-nav-toggle { display: none; }
    .at-nav-cta,
    .at-nav .at-cta-item a {
        padding: 10px 16px !important;
        font-size: 11px !important;
        white-space: nowrap;
    }

    .at-hero-content { grid-template-columns: 1fr; }
    .at-hero-left { order: 1; }
    .at-hero-right { order: 2; }
    .at-hero-bio { max-width: 100%; }
    .at-hero-photo { max-width: 100%; }

    .at-testimonials-grid { grid-template-columns: 1fr; }
    .at-articles-grid { grid-template-columns: 1fr; }
    .at-archive-grid { grid-template-columns: 1fr; }
    .at-service-cards { grid-template-columns: 1fr; }

    .at-footer-grid { grid-template-columns: 1fr; }
    .at-footer-bottom { flex-direction: column; gap: 16px; text-align: center; }

    .at-team-member { flex-direction: column; flex: 0 0 100%; gap: 24px; text-align: center; }
    .at-team-photo { width: 100%; max-width: 280px; height: auto; aspect-ratio: 3/4; margin: 0 auto; border-bottom: 1px solid var(--at-white-10); }
    .at-team-info { text-align: center; }
    .at-team-dots { position: static; margin-top: 24px; margin-bottom: 24px; justify-content: center; }
    .at-team { padding-bottom: 40px !important; }

    .at-approach-wrapper { flex-direction: column; }
    .at-approach-static { flex: 0 0 auto; }

    .at-also-offer { flex-direction: column; align-items: flex-start; }
    .at-also-offer-label { margin-bottom: 8px; }

    .at-page-columns { grid-template-columns: 1fr; gap: 32px; }

    .at-articles-header { flex-direction: column; align-items: flex-start; gap: 16px; }

    .at-testimonials-title { font-size: 36px; }
    .at-section-heading { font-size: 32px; }
    .at-page-title { font-size: 28px; }
    .at-single-title { font-size: 26px; }

    .at-team-hero-inner { flex-direction: column; align-items: center; text-align: center; }
    .at-team-hero-photo { width: 200px; }
    .at-team-hero-name { font-size: 32px; }

    .at-single-with-sidebar { grid-template-columns: 1fr; gap: 0; }
    .at-archive-with-sidebar { grid-template-columns: 1fr; gap: 0; padding: 24px var(--at-side-pad) 60px; }
    .at-sidebar-nav { display: none; }
}

/* ==========================================================================
   WordPress Classes
   ========================================================================== */

.alignleft { float: left; margin: 0 20px 20px 0; }
.alignright { float: right; margin: 0 0 20px 20px; }
.aligncenter { display: block; margin: 0 auto 20px; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 13px; color: #888; margin-top: 8px; }
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.gallery-item { margin: 0; }
