/* ===================================
   YOUNGSMILL - GLOBAL STYLES
   =================================== */

:root {
    /* --- Brand Colors --- */
    --color-primary-navy: #701B32;
    --color-accent-lime: #701B32;
    --color-accent-sky: #701B32;
    --color-champagne: #C8A882;

    /* --- Neutrals & Text --- */
    --color-text-cream: #FAF4EF;
    --color-text-body: #475569;
    --color-text-heading: #1F191B;
    --color-bg-white: #FAF4EF;
    --color-bg-light: #F7EFE9;

    /* Legacy/Alias Variables */
    --color-primary-black: var(--color-primary-navy);
    --color-primary-white: var(--color-bg-white);
    --color-accent-teal: var(--color-accent-lime);
    --color-dark-grey: var(--color-text-body);
    --color-overlay: rgba(255, 255, 255, 0.85);

    /* Typography */
    --font-header: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    /* UI Dimensions */
    --container-width: 1200px;
    --header-height: 80px;
    --spacing-unit: 20px;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-pill: 8px;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    background-color: var(--color-bg-white);
    font-family: var(--font-body);
    color: var(--color-text-body);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    /* Transition only padding-top for banner appearance */
    transition: padding-top 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

body.banner-active { padding-top: 60px; }

/* ===================================
   TYPOGRAPHY
   =================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-header);
    text-transform: none;
    letter-spacing: -0.02em;
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-primary-navy);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
}

p { margin-bottom: 1rem; }

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

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

header {
    background-color: #ffffff;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 50;
    border-bottom: 1px solid #f1f5f9;
    padding: 1rem 0;
    display: flex;
    align-items: center;
    transform: translateY(0);
    transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out,
                box-shadow 0.3s ease-in-out, border-color 0.3s ease-in-out;
    will-change: transform;
}

header.is-hidden { transform: translateY(-100%); box-shadow: none; }
header.is-scrolled { box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); }

.header-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

@media (min-width: 768px) { .header-container { padding: 0 3rem; } }

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

.logo-image img {
    height: 3.5rem;
    width: auto;
    object-fit: contain;
    object-position: left;
}

@media (min-width: 768px) { .logo-image img { height: 3.75rem; } }
@media (min-width: 1024px) { .logo-image img { height: 4.25rem; } }

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: none;
}

@media (min-width: 1024px) {
    nav ul {
        display: flex;
        align-items: center;
        gap: 2rem;
    }
}

nav ul li a {
    font-size: 0.875rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: #333333;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
    text-decoration: none;
    padding: 4px 0;
    position: relative;
}

nav ul li a.active {
    color: var(--color-primary-navy);
    font-weight: 700;
}

nav ul li a.active::after {
    display: none !important;
}

.mobile-overlay-nav a.active {
    color: #701B32 !important;
    font-weight: 700;
}

nav ul li a:hover { color: var(--color-primary-navy); }

nav ul li a.btn-apply {
    margin-left: 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 3rem;
    padding: 0 2rem;
    background-color: var(--color-accent-lime);
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
    border-radius: 4px;
    flex-shrink: 0;
}

nav ul li a.btn-apply:hover { background-color: #551425; color: #ffffff; }

/* ===================================
   ALWAYS VISIBLE STICKY NAVIGATION
   =================================== */

header,
body.immersive-nav header {
    background-color: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    border-bottom: 1px solid #E8DFD8 !important;
    box-shadow: 0 4px 20px -5px rgba(31, 25, 27, 0.06) !important;
    transform: translateY(0) !important;
}

header .logo-image,
header nav,
header .mobile-menu-toggle,
body.immersive-nav header .logo-image,
body.immersive-nav header nav,
body.immersive-nav header .mobile-menu-toggle {
    opacity: 1 !important;
    visibility: visible !important;
}

header nav ul li a,
body.immersive-nav header nav ul li a {
    color: #475569 !important;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.25s ease;
}

header nav ul li a:hover,
body.immersive-nav header nav ul li a:hover {
    color: #701B32 !important;
}

header nav ul li a.active,
body.immersive-nav header nav ul li a.active {
    color: #701B32 !important;
    font-weight: 700 !important;
}

header nav ul li a.btn-apply,
body.immersive-nav header nav ul li a.btn-apply {
    background-color: #701B32 !important;
    color: #ffffff !important;
    border-radius: 6px;
    padding: 9px 20px;
    font-weight: 700 !important;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

header nav ul li a.btn-apply:hover,
body.immersive-nav header nav ul li a.btn-apply:hover {
    background-color: #551425 !important;
    color: #ffffff !important;
    transform: translateY(-1px);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    color: #701B32 !important;
    background: none !important;
    border: none !important;
    cursor: pointer !important;
    padding: 10px !important;
    margin-right: -10px !important;
    min-width: 48px !important;
    min-height: 48px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-left: auto !important;
    z-index: 101 !important;
    -webkit-tap-highlight-color: transparent !important;
}

.mobile-menu-toggle:focus { outline: none; }

.mobile-menu-toggle svg {
    width: 28px !important;
    height: 28px !important;
    stroke: #701B32 !important;
    pointer-events: none !important;
}

@media (min-width: 1024px) {
    .mobile-menu-toggle {
        display: none !important;
    }
}

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

.btn-primary {
    background-color: var(--color-accent-lime);
    color: #ffffff;
    padding: 16px 40px;
    border: none;
    border-radius: var(--radius-pill);
    font-family: var(--font-body);
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    font-size: 16px;
    display: inline-block;
    text-decoration: none;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background-color: #551425;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-primary-navy);
    padding: 16px 40px;
    border: 2px solid var(--color-primary-navy);
    border-radius: var(--radius-pill);
    font-family: var(--font-body);
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    font-size: 16px;
    display: inline-block;
    font-weight: 600;
}

.btn-secondary:hover {
    background-color: var(--color-primary-navy);
    color: var(--color-bg-white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

@media (max-width: 480px) {
    .btn-primary, .btn-secondary { padding: 12px 30px; font-size: 14px; width: 100%; text-align: center; }
}

/* ===================================
   PROMOTIONAL BANNER
   =================================== */

.promo-banner {
    position: relative;
    width: 100%;
    background-color: #020617;
    color: #ffffff;
    z-index: 60;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
    display: none;
}
.promo-banner.active { display: flex; }
@media (min-width: 768px) { .promo-banner { padding: 0.75rem 3rem; } }

.promo-banner-content {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 80rem;
    position: relative;
}

.promo-banner-content span, .promo-banner-content span * {
    font-size: 13px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-align: center;
    padding-right: 2rem;
    color: #ffffff;
    white-space: normal;
    word-break: break-word;
}

.promo-banner-close {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
    border-radius: 0;
}
.promo-banner-close:hover { color: #ffffff; }
.promo-banner-close:focus { outline: none; }
.promo-banner-close svg { width: 1.25rem; height: 1.25rem; }
@media (min-width: 768px) { .promo-banner-close { right: 3rem; } }

/* ===================================
   MONOLITHIC ANCHOR (CTA + FOOTER)
   =================================== */

.monolithic-anchor {
    width: 100%;
    background-color: #FAF4EF;
    color: #333333;
}

.matrix-cta { padding: 96px 0; }
@media (min-width: 768px) { .matrix-cta { padding: 128px 0; } }

.matrix-cta-container {
    max-width: 1536px;
    margin: 0 auto;
    padding: 0 24px;
}
@media (min-width: 768px) { .matrix-cta-container { padding: 0 48px; } }

.matrix-cta-content {
    max-width: 56rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.matrix-cta-content h2 {
    font-size: 2.25rem;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    letter-spacing: -0.05em;
    line-height: 0.95;
    margin-bottom: 1.5rem;
    color: #222222;
}
@media (min-width: 768px) { .matrix-cta-content h2 { font-size: 3.75rem; } }

.matrix-cta-content p {
    font-size: 1.25rem;
    color: #475569;
    font-weight: 300;
    margin-bottom: 3rem;
    margin-top: 0;
}

.btn-matrix {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    background-color: var(--color-accent-lime);
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    border: 1px solid var(--color-accent-lime);
    transition: background-color 0.3s ease, border-color 0.3s ease;
}
.btn-matrix:hover { background-color: #551425; color: #ffffff; border-color: #551425; }

/* Footer */
.matrix-footer { width: 100%; }

.matrix-footer-container {
    max-width: 1536px;
    margin: 0 auto;
    padding: 64px 24px 48px;
    border-top: 1px solid transparent;
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}
@media (min-width: 768px) {
    .matrix-footer-container { padding: 64px 48px 48px; grid-template-columns: 2fr 1fr 1fr; gap: 32px; }
}

.footer-brand { display: flex; flex-direction: column; }
.footer-brand .footer-logo { max-width: 120px; height: auto; margin-bottom: 1.5rem; }
.footer-brand p { font-size: 0.875rem; color: #475569; line-height: 1.625; margin: 0; max-width: 400px; }

.footer-links h3, .footer-contact h3 {
    font-size: 0.8rem;
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #222222;
    margin-bottom: 1.5rem;
    margin-top: 0;
}

.footer-links ul, .footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a { font-size: 0.875rem; color: #475569; text-decoration: none; transition: color 0.3s ease; }
.footer-links a:hover { color: #000000; }

.footer-contact li { display: flex; align-items: flex-start; gap: 0.75rem; }
.footer-contact i { width: 1.25rem; color: #475569; margin-top: 0.125rem; font-size: 1rem; text-align: center; transition: color 0.3s ease; }
.footer-contact span { font-size: 0.875rem; color: #475569; transition: color 0.3s ease; }
.footer-contact li:hover span, .footer-contact li:hover i { color: #000000; }

.footer-bottom { 
    border-top: 1px solid #E8DFD8; 
    padding: 2rem 0 1.5rem; 
    margin-top: 1rem; 
    width: 100%; 
}

.footer-disclaimer {
    max-width: 1536px;
    margin: 0 auto;
    padding: 0 24px 1rem;
    border: none;
    margin-bottom: 0;
}
.footer-disclaimer p { font-size: 0.75rem; font-weight: 400; color: #64748b; line-height: 1.625; max-width: 48rem; text-align: left; margin: 0; }
@media (min-width: 768px) { .footer-disclaimer { padding: 0 48px 1.5rem; } }

.footer-bottom-container {
    max-width: 1536px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
}
.footer-bottom-container span {
    font-size: 0.75rem;
    color: rgba(34, 34, 34, 0.6);
    letter-spacing: 0.025em;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
    text-align: center;
    display: inline-flex;
    align-items: center;
}
.footer-bottom-container div { display: inline-flex; align-items: center; }
.footer-bottom-container svg { color: rgba(34, 34, 34, 0.6); height: 1rem; margin-right: 0.5rem; }
@media (min-width: 768px) {
    .footer-bottom-container { flex-direction: row; padding: 0 48px; align-items: center; }
    .footer-bottom-container span { text-align: left; }
}

/* ===================================
   FORMS
   =================================== */

.form-group { margin-bottom: 25px; }

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--color-primary-navy);
    font-family: var(--font-header);
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 16px;
    transition: border-color 0.3s ease;
    background-color: #f9f9f9;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-accent-lime);
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(108, 124, 102, 0.15);
}

.form-group textarea { min-height: 150px; resize: vertical; }
.form-error { color: #d32f2f; font-size: 14px; margin-top: 5px; display: none; }
.form-group.error input, .form-group.error textarea, .form-group.error select { border-color: #d32f2f; }
.form-group.error .form-error { display: block; }

/* ===================================
   SNIPPET SECTION STYLES
   =================================== */

.snippet-section { background-color: var(--color-bg-white); padding: 60px 20px; min-height: 600px; }

.snippet-container { max-width: var(--container-width); margin: 0 auto; }
.snippet-container iframe,
.input-matrix iframe {
    width: 100%;
    min-height: 600px;
    display: block;
    border-radius: 16px;
    border: 1px solid #E8DFD8 !important;
    border-top: 4px solid #701B32 !important;
    box-shadow: 0 12px 32px -8px rgba(31, 25, 27, 0.08);
    background-color: #FAF6F2;
    transition: box-shadow 0.3s ease;
}
.snippet-container iframe[src*="entrata"] { min-height: 750px; }
.snippet-container iframe:hover,
.input-matrix iframe:hover {
    box-shadow: 0 16px 40px -8px rgba(112, 27, 50, 0.12);
}

.snippet-instructions {
    background-color: var(--color-bg-light);
    border: 2px dashed var(--color-accent-lime);
    padding: 40px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    border-radius: var(--radius-pill);
}
.snippet-instructions h2 { color: var(--color-primary-navy); margin-bottom: 20px; }
.snippet-instructions p { color: var(--color-text-body); line-height: 1.8; margin-bottom: 15px; }
.snippet-instructions code { background-color: #e0e0e0; padding: 2px 8px; font-family: 'Courier New', monospace; color: var(--color-primary-navy); font-weight: bold; }

/* ===================================
   PAGE HEADER (inner pages)
   =================================== */

.page-header {
    background-color: var(--color-bg-light);
    padding: 120px 20px 80px;
    text-align: center;
    color: var(--color-primary-navy);
    border-bottom: none;
}

.page-header h1 { font-size: 3.5rem; margin-bottom: 20px; color: var(--color-primary-navy); font-weight: 700; }
.page-header p { font-size: 1.2rem; color: #475569; max-width: 800px; margin: 0 auto; line-height: 1.6; font-weight: 300; }

@media (max-width: 768px) {
    .page-header { padding: 60px 20px 40px; }
    .header-container { flex-wrap: wrap; }
    .main-content { padding: 40px 15px; }
}

/* ===================================
   MOBILE FULL-SCREEN OVERLAY MENU
   =================================== */

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    height: 100vh;
    height: 100dvh;
    z-index: 999999 !important;
    background-color: #ffffff !important;
    display: flex !important;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s ease;
    visibility: hidden;
    pointer-events: none;
}

.mobile-overlay.active {
    transform: translateX(0) !important;
    visibility: visible !important;
    pointer-events: auto !important;
}

.mobile-menu-toggle svg,
.mobile-overlay-close svg {
    pointer-events: none;
}

.mobile-overlay-header {
    width: 100%;
    height: 5rem;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
    border-bottom: 1px solid #e2e8f0;
}
@media (min-width: 768px) { .mobile-overlay-header { padding: 0 3rem; } }

.mobile-overlay-logo {
    color: #333333;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    text-decoration: none;
    font-size: 1.0rem;
    line-height: 1.3;
    max-width: calc(100% - 3rem);
}

.mobile-overlay-close {
    width: 2rem;
    height: 2rem;
    color: #333333;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    flex-shrink: 0;
}
.mobile-overlay-close:hover { color: #701B32; }
.mobile-overlay-close svg { width: 100%; height: 100%; }

.mobile-overlay-nav {
    flex: 1;
    overflow-y: auto;
    padding: 2.5rem 1.5rem 3rem;
    display: flex;
    flex-direction: column;
    gap: 0;
}
@media (min-width: 768px) { .mobile-overlay-nav { padding: 2.5rem 3rem 3rem; } }

.mobile-overlay-nav a:not(.mobile-btn-apply) {
    font-size: 1.75rem;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: #333333;
    text-decoration: none;
    transition: color 0.2s ease;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
    padding: 1.1rem 0;
    display: block;
    line-height: 1.3;
}
@media (min-width: 640px) { .mobile-overlay-nav a:not(.mobile-btn-apply) { font-size: 2rem; } }
.mobile-overlay-nav a:not(.mobile-btn-apply):hover { color: #701B32; }

.mobile-btn-apply {
    margin-top: 2.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 1.1rem 2rem;
    background-color: #701B32;
    color: #ffffff;
    font-size: 0.875rem;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-decoration: none;
    border: none;
    cursor: pointer;
    border-radius: var(--radius-pill);
}
.mobile-btn-apply:hover { background-color: #551425; transform: translateY(-1px); }

/* ===================================
   ENTRATA WIDGET BRANDING
   =================================== */

#ppcb-widget-container .ppcb-contact-button,
#ppcb-widget-container .ppcb-button,
.ppcb-contact-button,
.entrata-chat-button,
.entrata-ui-contact-btn,
.ppcb-widget-launcher,
#ppcb-button {
    background-color: var(--color-accent-lime) !important;
}

/* ===================================
   GLOBAL TYPOGRAPHIC HERO SYSTEM (inner pages)
   =================================== */

.global-page-hero {
    width: 100%;
    background-color: var(--color-bg-light);
    padding: 8rem 0 5rem;
}
@media (min-width: 768px) { .global-page-hero { padding: 10rem 0 6rem; } }

.global-hero-container {
    max-width: 80rem;
    margin: 0 auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}
@media (min-width: 1024px) { .global-hero-container { padding-left: 2rem; padding-right: 2rem; } }

.global-hero-h1 {
    font-size: 3rem;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.05em;
    color: var(--color-primary-navy);
    margin: 0;
    line-height: 1;
}
@media (min-width: 768px) { .global-hero-h1 { font-size: 4.5rem; } }

.global-hero-p {
    font-size: 1.125rem;
    color: #475569;
    font-weight: 400;
    line-height: 1.625;
    max-width: 48rem;
    margin: 1.5rem 0 0;
}
@media (min-width: 768px) { .global-hero-p { font-size: 1.25rem; } }

/* ===================================
   MAIN CONTENT CONTAINER (legacy)
   =================================== */

.main-content {
    background-color: var(--color-bg-white);
    max-width: var(--container-width);
    min-width: 320px;
    margin: 0 auto;
    padding: 60px var(--spacing-unit);
    min-height: 60vh;
}

.page-section { margin-bottom: 80px; }

.section-title { color: var(--color-primary-navy); margin-bottom: 40px; text-align: center; }



/* Back to Top Floating Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #701B32;
    color: #ffffff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background-color 0.3s ease;
    z-index: 99;
}
.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top:hover {
    background-color: #420F1D;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}
.back-to-top svg {
    width: 20px;
    height: 20px;
}


/* ProWebSmith Footer Credit */
.pws-credit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding-top: 0.75rem;
    margin-top: 0.75rem;
    border-top: none;
    font-size: 0.75rem;
    color: rgba(34, 34, 34, 0.6);
    font-family: 'Inter', sans-serif;
    text-align: center;
}

.pws-credit a {
    display: inline-flex;
    align-items: center;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.pws-credit a:hover {
    opacity: 0.85;
    transform: translateY(-1px);
}

.pws-logo {
    height: 22px;
    width: auto;
    object-fit: contain;
}