/*
Theme Name:  Oceanview Clubs
Theme URI:   https://oceanviewclubs.com
Author:      Oceanview Clubs IT
Author URI:  https://oceanviewclubs.com
Description: Official theme for Oceanview Clubs — Gulf Coast's premier private membership club. Coastal nautical aesthetic with navy, gold, and sea-glass accents.
Version:     1.0.0
License:     Proprietary — All rights reserved, Oceanview Clubs LLC
Text Domain: oceanview-clubs
Tags:        custom-menu, custom-header, custom-footer, responsive-layout, two-columns
*/

/* =============================================================================
   0. CSS Custom Properties
============================================================================= */

:root {
    --navy:        #0d2b4e;
    --navy-dark:   #091c34;
    --navy-mid:    #14375f;
    --gold:        #c9a020;
    --gold-light:  #e0b93a;
    --gold-pale:   #f5e9c0;
    --sea:         #2a7b9a;
    --sea-light:   #d4eae4;
    --sand:        #f8f5ef;
    --sand-dark:   #ede8de;
    --white:       #ffffff;
    --text:        #2c2c2c;
    --text-mid:    #555555;
    --text-light:  #888888;
    --border:      #ddd8ce;
    --radius:      4px;
    --radius-lg:   10px;
    --shadow:      0 2px 12px rgba(13,43,78,.10);
    --shadow-lg:   0 6px 28px rgba(13,43,78,.16);
    --transition:  all .2s ease;
    --font-sans:   'Georgia', 'Times New Roman', serif;
    --font-body:   -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    --max-width:   1180px;
}

/* =============================================================================
   1. Reset & Base
============================================================================= */

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: var(--sea); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold); }
ul { list-style: none; }

/* =============================================================================
   2. Typography
============================================================================= */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-sans);
    color: var(--navy);
    line-height: 1.25;
    font-weight: 700;
}
h1 { font-size: clamp(2rem,   5vw, 3.25rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; }

p { margin-bottom: 1.25rem; }
p:last-child { margin-bottom: 0; }

blockquote {
    border-left: 4px solid var(--gold);
    padding: 1rem 1.5rem;
    margin: 2rem 0;
    background: var(--sand);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-style: italic;
    color: var(--text-mid);
}
blockquote p { font-size: 1.1rem; margin-bottom: .5rem; }
blockquote cite { font-size: .9rem; font-style: normal; color: var(--text-light); }

/* =============================================================================
   3. Layout Utilities
============================================================================= */

.ovc-container {
    width: 100%;
    max-width: var(--max-width);
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.ovc-section {
    padding: 5rem 0;
}
.ovc-section + .ovc-section { padding-top: 0; }

.ovc-eyebrow {
    display: block;
    font-family: var(--font-body);
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: .75rem;
}

.ovc-lead {
    font-size: 1.2rem;
    color: var(--text-mid);
    max-width: 750px;
    margin-bottom: 2.5rem;
}

/* =============================================================================
   4. Buttons
============================================================================= */

.ovc-btn {
    display: inline-block;
    padding: .8rem 2rem;
    font-size: .9rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    border-radius: var(--radius);
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    white-space: nowrap;
}

.ovc-btn--gold {
    background: var(--gold);
    color: var(--navy-dark);
    border-color: var(--gold);
}
.ovc-btn--gold:hover {
    background: var(--gold-light);
    color: var(--navy-dark);
    border-color: var(--gold-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(201,160,32,.4);
}

.ovc-btn--navy {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}
.ovc-btn--navy:hover {
    background: var(--navy-mid);
    color: var(--white);
    border-color: var(--navy-mid);
    transform: translateY(-1px);
}

.ovc-btn--outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,.6);
}
.ovc-btn--outline:hover {
    background: rgba(255,255,255,.12);
    color: var(--white);
    border-color: var(--white);
}

.ovc-btn--outline-navy {
    background: transparent;
    color: var(--navy);
    border-color: var(--navy);
}
.ovc-btn--outline-navy:hover {
    background: var(--navy);
    color: var(--white);
}

.ovc-btn--outline-light {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,.5);
}
.ovc-btn--outline-light:hover {
    background: rgba(255,255,255,.1);
    color: var(--white);
    border-color: var(--white);
}

.ovc-link {
    font-size: .9rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: .04em;
}
.ovc-link:hover { color: var(--navy); }

/* =============================================================================
   5. Header
============================================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--navy);
    box-shadow: 0 2px 8px rgba(0,0,0,.3);
}

.header-top-bar {
    background: var(--navy-dark);
    padding: .4rem 0;
    font-size: .78rem;
    color: rgba(255,255,255,.6);
    display: flex;
    align-items: center;
}
.header-top-bar .ovc-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}
.header-top-bar a { color: rgba(255,255,255,.65); }
.header-top-bar a:hover { color: var(--gold); }
.header-top-bar__hours { display: flex; gap: 1.5rem; }

.header-main {
    padding: 0;
}
.header-main .ovc-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    height: 72px;
}

/* Logo */
.site-logo {
    display: flex;
    align-items: center;
    gap: .6rem;
    text-decoration: none;
    flex-shrink: 0;
}
.site-logo__mark {
    width: 42px;
    height: 42px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--navy-dark);
    font-family: var(--font-sans);
    font-weight: 700;
}
.site-logo__text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}
.site-logo__name {
    font-family: var(--font-sans);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: .02em;
}
.site-logo__tagline {
    font-size: .65rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gold);
}

/* Primary Nav */
.primary-nav {
    display: flex;
    align-items: center;
    gap: 0;
    flex: 1;
    justify-content: center;
}
.primary-nav a {
    display: block;
    padding: .5rem .9rem;
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: rgba(255,255,255,.82);
    border-radius: var(--radius);
}
.primary-nav a:hover,
.primary-nav a.current-menu-item {
    color: var(--gold);
    background: rgba(255,255,255,.06);
}

/* Member Portal Button */
.header-portal-btn {
    flex-shrink: 0;
}

/* Mobile menu toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: .5rem;
    flex-direction: column;
    gap: 5px;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

/* =============================================================================
   6. Hero — Front Page
============================================================================= */

.ovc-hero {
    min-height: 92vh;
    background:
        linear-gradient(180deg, rgba(9,28,52,.72) 0%, rgba(9,28,52,.55) 60%, rgba(9,28,52,.85) 100%),
        linear-gradient(135deg, #0d2b4e 0%, #1a5276 40%, #0e6c8e 70%, #0d2b4e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 5rem 1.5rem;
    position: relative;
    overflow: hidden;
}

/* Animated wave decoration */
.ovc-hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 120px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120'%3E%3Cpath fill='%23ffffff' d='M0,60 C360,120 720,0 1080,60 C1260,90 1380,50 1440,60 L1440,120 L0,120 Z'/%3E%3C/svg%3E") repeat-x bottom;
    background-size: 720px 120px;
    opacity: .08;
    animation: waves 12s linear infinite;
}

@keyframes waves {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

.ovc-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 820px;
}

.ovc-hero__eyebrow {
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.2rem;
}

.ovc-hero__title {
    font-family: var(--font-sans);
    font-size: clamp(2.6rem, 7vw, 4.5rem);
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.ovc-hero__sub {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255,255,255,.82);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.ovc-hero__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* =============================================================================
   7. Feature Cards
============================================================================= */

.ovc-features {
    padding: 5rem 0;
    background: var(--white);
}

.ovc-features__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.ovc-feature-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    background: var(--white);
}
.ovc-feature-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}
.ovc-feature-card__icon {
    font-size: 2.4rem;
    margin-bottom: 1rem;
    display: block;
}
.ovc-feature-card h3 {
    font-size: 1.15rem;
    margin-bottom: .75rem;
    color: var(--navy);
}
.ovc-feature-card p {
    font-size: .9rem;
    color: var(--text-mid);
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

/* =============================================================================
   8. About Preview
============================================================================= */

.ovc-about-preview {
    background: var(--sand);
    padding: 5rem 0;
}
.ovc-about-preview__inner {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 4rem;
    align-items: center;
}
.ovc-about-preview__text h2 {
    margin-bottom: 1.25rem;
}
.ovc-about-preview__text p {
    color: var(--text-mid);
    margin-bottom: 1.25rem;
}
.ovc-about-preview__text .ovc-btn {
    margin-top: .75rem;
}
.ovc-about-preview__img-placeholder {
    background: linear-gradient(135deg, var(--navy) 0%, var(--sea) 100%);
    border-radius: var(--radius-lg);
    height: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.7);
    font-size: .85rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    gap: 1rem;
}
.ovc-about-preview__img-placeholder span {
    font-size: 4rem;
}

/* =============================================================================
   9. Membership CTA Band
============================================================================= */

.ovc-membership-cta {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-mid) 100%);
    padding: 5rem 0;
    text-align: center;
}
.ovc-membership-cta__inner h2 {
    color: var(--white);
    margin-bottom: 1rem;
}
.ovc-membership-cta__inner p {
    color: rgba(255,255,255,.72);
    max-width: 600px;
    margin: 0 auto 2rem;
    font-size: 1.05rem;
}
.ovc-membership-cta__inner .ovc-btn {
    margin: 0 .5rem;
}

/* =============================================================================
   10. Page Hero
============================================================================= */

.ovc-page-hero {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-mid) 60%, var(--sea) 100%);
    padding: 5rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.ovc-page-hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 60px;
    background: var(--white);
    clip-path: ellipse(55% 100% at 50% 100%);
}
.ovc-page-hero h1 { color: var(--white); margin-bottom: .75rem; }
.ovc-page-hero p  { color: rgba(255,255,255,.78); font-size: 1.1rem; }

.ovc-page-hero--simple::after { display: none; }

/* =============================================================================
   11. Prose (Long-form content)
============================================================================= */

.ovc-prose {
    max-width: 820px;
}
.ovc-prose--center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
.ovc-prose h2 {
    margin: 2.5rem 0 1rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--border);
}
.ovc-prose h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.ovc-prose h3 { margin: 2rem 0 .75rem; color: var(--navy); }
.ovc-prose ul, .ovc-prose ol {
    margin: 1rem 0 1.25rem 1.5rem;
    color: var(--text-mid);
}
.ovc-prose ul { list-style: disc; }
.ovc-prose ol { list-style: decimal; }
.ovc-prose li { margin-bottom: .4rem; }
.ovc-prose a { color: var(--sea); font-weight: 600; }
.ovc-prose a:hover { color: var(--gold); }

/* =============================================================================
   12. Staff Grid
============================================================================= */

.ovc-staff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}
.ovc-staff-card {
    background: var(--sand);
    border-radius: var(--radius-lg);
    padding: 1.75rem 1.5rem;
    text-align: center;
    border: 1px solid var(--border);
}
.ovc-staff-card__avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--gold);
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    letter-spacing: .05em;
}
.ovc-staff-card h4 { font-size: 1rem; margin-bottom: .25rem; }
.ovc-staff-card__title {
    font-size: .78rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: .06em;
    font-weight: 700;
    margin-bottom: .75rem;
    display: block;
}
.ovc-staff-card p { font-size: .87rem; color: var(--text-mid); margin-bottom: 0; }

/* =============================================================================
   13. Membership Plans
============================================================================= */

.ovc-plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2.5rem 0;
    align-items: start;
}

.ovc-plan-card {
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
}
.ovc-plan-card--featured {
    border-color: var(--gold);
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
}
.ovc-plan-card__badge {
    background: var(--gold);
    color: var(--navy-dark);
    text-align: center;
    padding: .4rem;
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}
.ovc-plan-card__header {
    padding: 2rem 1.5rem 1.5rem;
    background: var(--sand);
    text-align: center;
    border-bottom: 1px solid var(--border);
}
.ovc-plan-card__header h3 { margin-bottom: .5rem; font-size: 1.4rem; }
.ovc-plan-card__price {
    font-family: var(--font-sans);
    font-size: 2rem;
    font-weight: 700;
    color: var(--navy);
}
.ovc-plan-card__price span { font-size: 1rem; color: var(--text-light); font-weight: 400; }
.ovc-plan-card__features {
    padding: 1.5rem;
    list-style: none;
}
.ovc-plan-card__features li {
    padding: .45rem 0;
    font-size: .9rem;
    color: var(--text-mid);
    border-bottom: 1px solid var(--border);
    display: flex;
    gap: .5rem;
    align-items: flex-start;
}
.ovc-plan-card__features li:last-child { border-bottom: none; }
.ovc-plan-card__features li.disabled { color: var(--text-light); opacity: .6; }
.ovc-plan-card .ovc-btn {
    display: block;
    margin: 0 1.5rem 1.5rem;
    text-align: center;
    width: calc(100% - 3rem);
}

.ovc-membership-note {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--sand);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--gold);
    max-width: 100%;
}
.ovc-membership-note h3 { margin-bottom: .75rem; }
.ovc-membership-note p { color: var(--text-mid); margin-bottom: .5rem; }
.ovc-membership-note a { color: var(--sea); font-weight: 600; }

/* =============================================================================
   14. Amenities
============================================================================= */

.ovc-amenity-block {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 2.5rem;
    align-items: start;
    padding: 3rem 0;
    border-bottom: 1px solid var(--border);
}
.ovc-amenity-block:last-child { border-bottom: none; }
.ovc-amenity-block--reverse {
    background: var(--sand);
    margin: 0 -1.5rem;
    padding: 3rem 1.5rem;
    grid-template-columns: 1fr 120px;
}
.ovc-amenity-block--reverse .ovc-amenity-block__icon {
    order: 2;
}
.ovc-amenity-block--reverse .ovc-amenity-block__content {
    order: 1;
}
.ovc-amenity-block__icon {
    font-size: 3.5rem;
    text-align: center;
    padding-top: .5rem;
}
.ovc-amenity-block__content h2 { margin-bottom: 1rem; }
.ovc-amenity-block__content p { color: var(--text-mid); }
.ovc-amenity-block__content ul {
    list-style: none;
    margin: 1rem 0 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: .5rem;
}
.ovc-amenity-block__content ul li {
    font-size: .88rem;
    color: var(--text-mid);
    padding-left: 1.2rem;
    position: relative;
}
.ovc-amenity-block__content ul li::before {
    content: '&#8212;';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
}

/* =============================================================================
   15. Dining Cards
============================================================================= */

.ovc-dining-card {
    padding: 2.5rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    position: relative;
}
.ovc-dining-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow);
}
.ovc-dining-card__label {
    display: inline-block;
    background: var(--navy);
    color: var(--gold);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: .3rem .8rem;
    border-radius: var(--radius);
    margin-bottom: .75rem;
}
.ovc-dining-card h2 { margin-bottom: .5rem; font-size: 1.6rem; }
.ovc-dining-card__hours {
    font-size: .82rem;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 1rem;
}
.ovc-dining-card p { color: var(--text-mid); margin-bottom: .75rem; }
.ovc-dining-card a { color: var(--sea); font-weight: 600; }
.ovc-dining-card a:hover { color: var(--gold); }

/* =============================================================================
   16. Contact Page
============================================================================= */

.ovc-contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}
.ovc-contact-info h2 { margin-bottom: 2rem; }
.ovc-contact-block {
    margin-bottom: 1.75rem;
}
.ovc-contact-block h4 {
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: .5rem;
}
.ovc-contact-block p, .ovc-contact-block a {
    font-size: .95rem;
    color: var(--text-mid);
    line-height: 1.8;
}
.ovc-contact-block a:hover { color: var(--sea); }

.ovc-contact-form-wrap h2 { margin-bottom: 1.5rem; }
.ovc-contact-form .ovc-form-group {
    margin-bottom: 1.25rem;
}
.ovc-contact-form label {
    display: block;
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: .4rem;
}
.ovc-contact-form input,
.ovc-contact-form select,
.ovc-contact-form textarea {
    width: 100%;
    padding: .7rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: .95rem;
    color: var(--text);
    background: var(--white);
    transition: var(--transition);
    outline: none;
}
.ovc-contact-form input:focus,
.ovc-contact-form select:focus,
.ovc-contact-form textarea:focus {
    border-color: var(--sea);
    box-shadow: 0 0 0 3px rgba(42,123,154,.15);
}

/* =============================================================================
   17. Member Portal
============================================================================= */

.ovc-portal-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}
.ovc-portal-login h2 { margin-bottom: 1rem; }
.ovc-portal-login p { color: var(--text-mid); margin-bottom: 1.5rem; }
.ovc-portal-help {
    margin-top: 1.25rem;
    font-size: .85rem;
    color: var(--text-light);
}
.ovc-portal-resources h3 { margin-bottom: 1.25rem; }
.ovc-portal-resources ul li {
    padding: .6rem 0;
    border-bottom: 1px solid var(--border);
    font-size: .92rem;
}
.ovc-portal-resources ul li a { color: var(--sea); font-weight: 600; }
.ovc-portal-resources ul li a:hover { color: var(--gold); }

/* =============================================================================
   18. Blog / Single Post
============================================================================= */

.ovc-blog-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3.5rem;
    align-items: start;
}

.ovc-post-header {
    margin-bottom: 2.5rem;
}
.ovc-post-meta {
    font-size: .8rem;
    color: var(--text-light);
    margin-bottom: .75rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.ovc-post-meta .ovc-post-category {
    background: var(--navy);
    color: var(--gold);
    padding: .2rem .6rem;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: .72rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.ovc-post-content {
    font-size: 1.02rem;
    line-height: 1.8;
    color: var(--text);
}
.ovc-post-content h2,
.ovc-post-content h3 { margin: 2rem 0 .75rem; }
.ovc-post-content ul,
.ovc-post-content ol { margin: 1rem 0 1.25rem 2rem; color: var(--text-mid); }
.ovc-post-content ul { list-style: disc; }
.ovc-post-content ol { list-style: decimal; }
.ovc-post-content li { margin-bottom: .4rem; }
.ovc-post-content a { color: var(--sea); font-weight: 600; }

/* Post Cards (archive) */
.ovc-post-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.ovc-post-card {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}
.ovc-post-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
    transform: translateY(-2px);
}
.ovc-post-card__thumb {
    height: 180px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--sea) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: rgba(255,255,255,.3);
}
.ovc-post-card__body { padding: 1.5rem; }
.ovc-post-card__cat {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: .5rem;
}
.ovc-post-card__title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: .5rem;
    line-height: 1.35;
}
.ovc-post-card__date { font-size: .78rem; color: var(--text-light); margin-bottom: 0; }

/* Sidebar */
.ovc-sidebar__widget {
    background: var(--sand);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid var(--border);
}
.ovc-sidebar__widget h3 {
    font-size: 1rem;
    margin-bottom: 1rem;
    padding-bottom: .75rem;
    border-bottom: 2px solid var(--gold);
}
.ovc-sidebar__widget ul li {
    padding: .5rem 0;
    border-bottom: 1px solid var(--border);
    font-size: .88rem;
}
.ovc-sidebar__widget ul li:last-child { border-bottom: none; }
.ovc-sidebar__widget ul li a { color: var(--text-mid); font-weight: 600; }
.ovc-sidebar__widget ul li a:hover { color: var(--sea); }

/* =============================================================================
   19. Footer
============================================================================= */

.site-footer {
    background: var(--navy-dark);
    color: rgba(255,255,255,.7);
    padding: 4rem 0 0;
    margin-top: 5rem;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
    gap: 2.5rem;
    padding-bottom: 3rem;
}

.footer-brand .site-logo {
    margin-bottom: 1rem;
}
.footer-brand p {
    font-size: .88rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}
.footer-brand .footer-social {
    display: flex;
    gap: .5rem;
}
.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    background: rgba(255,255,255,.1);
    border-radius: 50%;
    color: rgba(255,255,255,.7);
    font-size: .85rem;
    transition: var(--transition);
}
.footer-social a:hover {
    background: var(--gold);
    color: var(--navy-dark);
}

.footer-col h4 {
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.25rem;
}
.footer-col ul li {
    margin-bottom: .6rem;
}
.footer-col ul li a {
    font-size: .88rem;
    color: rgba(255,255,255,.65);
}
.footer-col ul li a:hover {
    color: var(--gold);
}

.footer-contact p {
    font-size: .88rem;
    margin-bottom: .5rem;
}
.footer-contact a {
    color: rgba(255,255,255,.65);
}
.footer-contact a:hover { color: var(--gold); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    padding: 1.25rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: .5rem;
}
.footer-bottom p {
    font-size: .78rem;
    color: rgba(255,255,255,.45);
    margin-bottom: 0;
}
.footer-bottom a {
    color: rgba(255,255,255,.45);
}
.footer-bottom a:hover { color: var(--gold); }
.footer-bottom__links {
    display: flex;
    gap: 1.5rem;
}

/* =============================================================================
   20. 404 Page
============================================================================= */

.ovc-404 {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 5rem 1.5rem;
}
.ovc-404__code {
    font-size: clamp(5rem, 15vw, 10rem);
    font-family: var(--font-sans);
    font-weight: 700;
    color: var(--navy);
    line-height: 1;
    opacity: .12;
    margin-bottom: -1rem;
    display: block;
}
.ovc-404 h1 { margin-bottom: .75rem; }
.ovc-404 p  { color: var(--text-mid); max-width: 480px; margin: 0 auto 2rem; }

/* =============================================================================
   21. Responsive
============================================================================= */

@media (max-width: 1024px) {
    .ovc-features__grid  { grid-template-columns: repeat(2, 1fr); }
    .ovc-about-preview__inner { grid-template-columns: 1fr; }
    .ovc-about-preview__img-placeholder { max-width: 480px; height: 240px; }
    .ovc-plans-grid { grid-template-columns: 1fr 1fr; }
    .ovc-plans-grid .ovc-plan-card--featured { transform: none; }
    .footer-main { grid-template-columns: 1fr 1fr; }
    .ovc-blog-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .header-top-bar { display: none; }
    .header-main .ovc-container { height: 60px; }
    .primary-nav {
        display: none;
        position: fixed;
        top: 60px; left: 0; right: 0;
        background: var(--navy-dark);
        flex-direction: column;
        padding: 1.5rem;
        gap: .25rem;
        z-index: 99;
    }
    .primary-nav.is-open { display: flex; }
    .primary-nav a { padding: .75rem 1rem; font-size: .9rem; width: 100%; }
    .nav-toggle { display: flex; }
    .header-portal-btn .ovc-btn { padding: .55rem 1rem; font-size: .75rem; }

    .ovc-hero { min-height: 80vh; }
    .ovc-hero__actions { flex-direction: column; align-items: center; }
    .ovc-features__grid { grid-template-columns: 1fr; }
    .ovc-plans-grid { grid-template-columns: 1fr; }
    .ovc-contact-layout { grid-template-columns: 1fr; }
    .ovc-portal-layout { grid-template-columns: 1fr; }
    .ovc-amenity-block,
    .ovc-amenity-block--reverse {
        grid-template-columns: 1fr;
    }
    .ovc-amenity-block--reverse .ovc-amenity-block__icon { order: 0; }
    .ovc-amenity-block__content ul { grid-template-columns: 1fr; }
    .ovc-staff-grid { grid-template-columns: 1fr 1fr; }
    .ovc-post-cards { grid-template-columns: 1fr; }
    .footer-main { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .ovc-staff-grid { grid-template-columns: 1fr; }
}
