/* ============================================
   ONE SAINT PERSONAL CARE HOMES
   Bold Editorial Style — Deep Navy & Warm Gold
   ============================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --navy: #0A1628;
    --navy-light: #132240;
    --navy-mid: #1A2D4A;
    --gold: #C8A45E;
    --gold-light: #D4B76A;
    --gold-dark: #B8944E;
    --cream: #F7F4EF;
    --cream-dark: #EDE8DF;
    --white: #FFFFFF;
    --text-dark: #1A1A1A;
    --text-mid: #4A4A4A;
    --text-light: #7A7A7A;
    --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-sans);
    color: var(--text-dark);
    background-color: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ---------- Typography ---------- */
h1, h2, h3 {
    font-family: var(--font-serif);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

/* ---------- Navigation ---------- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(200, 164, 94, 0.15);
    transition: var(--transition);
}

.nav.scrolled {
    background: rgba(10, 22, 40, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.nav-logo-mark {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gold);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid var(--gold);
    border-radius: 4px;
    letter-spacing: 0.05em;
}

.nav-logo-text {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.02em;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--white);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link--cta {
    padding: 0.6rem 1.5rem;
    border: 1px solid var(--gold);
    color: var(--gold);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-link--cta::after {
    display: none;
}

.nav-link--cta:hover {
    background: var(--gold);
    color: var(--navy);
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.nav-toggle-bar {
    width: 24px;
    height: 1.5px;
    background: var(--white);
    transition: var(--transition);
    transform-origin: center;
}

.nav-toggle.active .nav-toggle-bar:nth-child(1) {
    transform: rotate(45deg) translate(4px, 5px);
}

.nav-toggle.active .nav-toggle-bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .nav-toggle-bar:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.mobile-menu-link {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 600;
    color: var(--white);
    transition: var(--transition);
}

.mobile-menu-link:hover {
    color: var(--gold);
}

.mobile-menu-link--cta {
    margin-top: 1rem;
    padding: 1rem 2.5rem;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.mobile-menu-contact {
    margin-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    line-height: 1.8;
}

.mobile-menu-contact a {
    color: var(--gold);
    transition: var(--transition);
}

.mobile-menu-contact a:hover {
    color: var(--gold-light);
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2.25rem;
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: var(--transition);
    white-space: nowrap;
}

.btn--gold {
    background: var(--gold);
    color: var(--navy);
    border: 1.5px solid var(--gold);
}

.btn--gold:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(200, 164, 94, 0.35);
}

.btn--outline {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.btn--outline:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.btn--dark {
    background: var(--navy);
    color: var(--white);
    border: 1.5px solid var(--navy);
}

.btn--dark:hover {
    background: var(--navy-light);
    border-color: var(--navy-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(10, 22, 40, 0.35);
}

.btn--full {
    width: 100%;
}

/* ---------- Section Eyebrow ---------- */
.section-eyebrow {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.section-eyebrow-line {
    width: 40px;
    height: 1.5px;
    background: var(--gold);
    flex-shrink: 0;
}

.section-eyebrow span {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
}

/* ---------- Section Headlines ---------- */
.section-headline {
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    color: var(--navy);
    margin-bottom: 1.5rem;
}

.section-headline--light {
    color: var(--white);
}

.section-headline-accent {
    font-style: italic;
    font-weight: 400;
    color: var(--navy);
}

.section-headline--light .section-headline-accent {
    color: var(--gold);
}

.section-headline-gold {
    color: var(--gold);
}

/* ---------- Hero ---------- */
.hero {
    min-height: 100vh;
    background: var(--navy);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 80px 0 120px;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(ellipse 80% 50% at 70% 40%, rgba(200, 164, 94, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 20% 80%, rgba(200, 164, 94, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    position: relative;
    z-index: 1;
}

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

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-eyebrow-line {
    width: 50px;
    height: 1.5px;
    background: var(--gold);
}

.hero-eyebrow span {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
}

.hero-headline {
    font-size: clamp(3rem, 7vw, 5.5rem);
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 2rem;
    font-weight: 700;
}

.hero-headline-accent {
    font-style: italic;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
}

.hero-headline-gold {
    color: var(--gold);
    font-weight: 700;
}

.hero-subheadline {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    max-width: 480px;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.hero-stat-number {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
}

.hero-stat-divider {
    width: 1px;
    height: 48px;
    background: rgba(200, 164, 94, 0.25);
}

/* Hero Image */
.hero-image-col {
    position: relative;
    height: 700px;
}

.hero-image-main {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 4px;
}

.hero-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 1.5px solid var(--gold);
    border-radius: 4px;
    z-index: -1;
    opacity: 0.4;
}

.hero-image-float {
    position: absolute;
    bottom: 60px;
    left: -60px;
    width: 260px;
    background: var(--white);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.hero-image-float img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.hero-image-float-caption {
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-mid);
    line-height: 1.4;
}

.hero-image-float-dot {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
}

/* Hero Scroll */
.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    animation: float 2s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

/* ---------- About ---------- */
.about {
    padding: 8rem 0;
    background: var(--cream);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.about-image-side {
    position: relative;
}

.about-image-wrapper {
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(10, 22, 40, 0.15);
}

.about-image-wrapper img {
    width: 100%;
    height: 700px;
    object-fit: cover;
}

.about-image-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-top: 1rem;
}

.about-image-strip img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 3px;
    transition: var(--transition);
}

.about-image-strip img:hover {
    transform: scale(1.02);
}

.about-content {
    padding-top: 2rem;
}

.about-lead {
    font-family: var(--font-serif);
    font-size: 1.375rem;
    color: var(--navy);
    line-height: 1.5;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.about-body {
    font-size: 1rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.about-value {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
}

.about-value-icon {
    width: 40px;
    height: 40px;
    background: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
}

/* ---------- Services ---------- */
.services {
    padding: 8rem 0;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(ellipse 50% 50% at 80% 20%, rgba(200, 164, 94, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.services-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 4rem;
    position: relative;
    z-index: 1;
}

.services-lead {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    font-weight: 300;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.service-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    padding: 2.5rem 2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(200, 164, 94, 0.25);
    transform: translateY(-4px);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card-number {
    font-family: var(--font-serif);
    font-size: 0.875rem;
    color: rgba(200, 164, 94, 0.4);
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}

.service-card-icon {
    width: 52px;
    height: 52px;
    border: 1px solid rgba(200, 164, 94, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.service-card:hover .service-card-icon {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
}

.service-card-title {
    font-family: var(--font-serif);
    font-size: 1.375rem;
    color: var(--white);
    margin-bottom: 0.875rem;
    font-weight: 600;
    line-height: 1.2;
}

.service-card-desc {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    font-weight: 300;
}

/* ---------- Care Approach ---------- */
.care-approach {
    padding: 8rem 0;
    background: var(--cream);
}

.care-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.care-content {
    order: 1;
}

.care-body {
    font-size: 1rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.care-features {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.care-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 0.9375rem;
    color: var(--text-dark);
    line-height: 1.5;
}

.care-feature-marker {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 0.5rem;
}

.care-image-side {
    order: 2;
    position: relative;
    min-height: 600px;
}

.care-image-stack {
    position: relative;
    height: 600px;
}

.care-image-stack-main {
    position: absolute;
    top: 0;
    right: 0;
    width: 85%;
    height: 80%;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(10, 22, 40, 0.15);
}

.care-image-stack-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.care-image-stack-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 55%;
    height: 55%;
    border-radius: 4px;
    overflow: hidden;
    border: 4px solid var(--cream);
    box-shadow: 0 15px 40px rgba(10, 22, 40, 0.12);
}

.care-image-stack-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.care-image-stack-badge {
    position: absolute;
    bottom: 45%;
    left: 40%;
    background: var(--navy);
    padding: 1.25rem 1.75rem;
    border-radius: 4px;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(10, 22, 40, 0.3);
}

.care-badge-text {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1.2;
}

.care-badge-sub {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.25rem;
}

/* ---------- Community ---------- */
.community {
    padding: 8rem 0;
    background: var(--white);
}

.community-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.community-content {
    max-width: 520px;
}

.community-body {
    font-size: 1rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.community-cta {
    margin-top: 2.5rem;
}

.community-image {
    position: relative;
}

.community-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 25px 60px rgba(10, 22, 40, 0.12);
}

.community-map-card {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: var(--white);
    padding: 1.5rem 2rem;
    border-radius: 4px;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    box-shadow: 0 15px 40px rgba(10, 22, 40, 0.15);
    border: 1px solid rgba(200, 164, 94, 0.2);
}

.community-map-card-icon {
    width: 44px;
    height: 44px;
    background: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
}

.community-map-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.25rem;
}

.community-map-address {
    font-family: var(--font-serif);
    font-size: 1rem;
    color: var(--navy);
    line-height: 1.5;
    font-weight: 600;
}

/* ---------- Quote Section ---------- */
.quote-section {
    padding: 7rem 0;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.quote-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(ellipse 40% 60% at 30% 50%, rgba(200, 164, 94, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.quote-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.quote-mark {
    font-family: var(--font-serif);
    font-size: 8rem;
    color: var(--gold);
    line-height: 0.8;
    display: block;
    margin-bottom: -1rem;
    opacity: 0.5;
}

.quote-inner blockquote {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 3.5vw, 2.25rem);
    color: var(--white);
    line-height: 1.4;
    font-weight: 400;
    font-style: italic;
    margin-bottom: 2rem;
}

.quote-attribution {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.quote-attribution-line {
    width: 40px;
    height: 1.5px;
    background: var(--gold);
    opacity: 0.5;
}

.quote-attribution span {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

/* ---------- Contact ---------- */
.contact {
    padding: 8rem 0;
    background: var(--cream);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.contact-info {
    padding-top: 1rem;
}

.contact-lead {
    font-size: 1.0625rem;
    color: var(--text-mid);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-detail-icon {
    width: 44px;
    height: 44px;
    background: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
}

.contact-detail-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.25rem;
}

.contact-detail-value {
    display: block;
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 500;
    line-height: 1.5;
}

.contact-detail-value a {
    color: var(--text-dark);
    transition: var(--transition);
}

.contact-detail-value a:hover {
    color: var(--gold);
}

.contact-hours {
    padding: 1.25rem 1.5rem;
    background: var(--white);
    border-radius: 4px;
    border: 1px solid rgba(200, 164, 94, 0.2);
}

.contact-hours-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.25rem;
}

.contact-hours-value {
    font-size: 0.9375rem;
    color: var(--text-dark);
    font-weight: 500;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--white);
    border-radius: 4px;
    padding: 3rem;
    box-shadow: 0 20px 50px rgba(10, 22, 40, 0.08);
    border: 1px solid rgba(200, 164, 94, 0.15);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-mid);
    margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    color: var(--text-dark);
    background: var(--cream);
    border: 1.5px solid transparent;
    border-radius: 3px;
    transition: var(--transition);
    outline: none;
}

.form-input:focus,
.form-textarea:focus {
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(200, 164, 94, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--text-light);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem 2rem;
    gap: 1rem;
}

.form-success.show {
    display: flex;
}

.form-success-icon {
    width: 56px;
    height: 56px;
    background: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
}

.form-success p {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--navy);
    font-weight: 600;
}

/* ---------- Footer ---------- */
.footer {
    background: var(--navy);
    padding: 5rem 0 2rem;
    border-top: 1px solid rgba(200, 164, 94, 0.15);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-logo {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    text-decoration: none;
}

.footer-logo-mark {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid var(--gold);
    border-radius: 4px;
    flex-shrink: 0;
    letter-spacing: 0.05em;
}

.footer-logo-text {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1.4;
    letter-spacing: 0.02em;
}

.footer-tagline {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.7;
    max-width: 280px;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-nav a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.55);
    transition: var(--transition);
}

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

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.8;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.55);
    transition: var(--transition);
}

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

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
}

/* ---------- Scroll Animations ---------- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .hero-grid {
        gap: 3rem;
    }
    
    .hero-image-col {
        height: 550px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-grid,
    .care-grid,
    .community-inner,
    .contact-grid {
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-inner {
        height: 70px;
    }
    
    .hero {
        padding: 100px 0 80px;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-image-col {
        display: none;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    
    .hero-stat-divider {
        display: none;
    }
    
    .about-grid,
    .care-grid,
    .community-inner,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-image-wrapper img {
        height: 400px;
    }
    
    .about-values {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .care-image-side {
        order: 1;
        min-height: 400px;
    }
    
    .care-content {
        order: 2;
    }
    
    .care-image-stack {
        height: 400px;
    }
    
    .community-img {
        height: 320px;
    }
    
    .community-map-card {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: 1rem;
    }
    
    .contact-form-wrapper {
        padding: 2rem;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .quote-mark {
        font-size: 5rem;
    }
    
    .section-headline {
        font-size: clamp(2rem, 6vw, 2.75rem);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1.25rem;
    }
    
    .hero-headline {
        font-size: clamp(2.5rem, 10vw, 3.5rem);
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-actions .btn {
        width: 100%;
        text-align: center;
    }
    
    .services,
    .about,
    .care-approach,
    .community,
    .contact {
        padding: 5rem 0;
    }
    
    .quote-section {
        padding: 5rem 0;
    }
}
