/* ============================================
   ABCCM Medical Ministry — Styles
   Classic & Elegant | Deep Navy + Warm Gold
   ============================================ */

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

:root {
    --navy: #0A1F44;
    --navy-light: #132D5E;
    --navy-dark: #06142E;
    --gold: #C8A44E;
    --gold-light: #D4B86A;
    --gold-pale: #F5E6C8;
    --cream: #FAF8F4;
    --cream-dark: #F2EDE4;
    --white: #FFFFFF;
    --text-dark: #1A1A1A;
    --text-body: #3D3D3D;
    --text-muted: #6B6B6B;
    --text-light: #9A9A9A;
    --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --shadow-sm: 0 1px 3px rgba(10, 31, 68, 0.06);
    --shadow-md: 0 4px 20px rgba(10, 31, 68, 0.08);
    --shadow-lg: 0 8px 40px rgba(10, 31, 68, 0.12);
    --shadow-xl: 0 16px 60px rgba(10, 31, 68, 0.16);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   Navigation
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: background var(--transition), box-shadow var(--transition);
}

.nav.scrolled {
    background: rgba(250, 248, 244, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--shadow-md);
}

.nav__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1001;
}

.nav__logo-mark {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.05em;
}

.nav__logo-text {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--white);
    transition: color var(--transition);
}

.nav.scrolled .nav__logo-text {
    color: var(--navy);
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.nav__toggle-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
    transform-origin: center;
}

.nav.scrolled .nav__toggle-line {
    background: var(--navy);
}

.nav__toggle.active .nav__toggle-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav__toggle.active .nav__toggle-line:nth-child(2) {
    opacity: 0;
}

.nav__toggle.active .nav__toggle-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 32px;
}

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

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

.nav__link:hover::after {
    width: 100%;
}

.nav__link:hover {
    color: var(--gold-light);
}

.nav.scrolled .nav__link {
    color: var(--text-body);
}

.nav.scrolled .nav__link:hover {
    color: var(--navy);
}

.nav__link--cta {
    padding: 10px 24px;
    border: 1px solid rgba(200, 164, 78, 0.6);
    border-radius: var(--radius-sm);
    color: var(--gold-light);
    transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.nav__link--cta:hover {
    background: var(--gold);
    color: var(--navy-dark);
    border-color: var(--gold);
}

.nav__link--cta::after {
    display: none;
}

.nav.scrolled .nav__link--cta {
    border-color: var(--navy);
    color: var(--navy);
}

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

/* ============================================
   Hero
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(135deg, 
            #0A1F44 0%, 
            #132D5E 25%, 
            #1a3a6e 40%, 
            #2d4a7a 55%, 
            #1a3a6e 70%, 
            #0A1F44 100%);
    z-index: 0;
}

.hero__bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 60% at 50% 40%, rgba(200, 164, 78, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 20% 80%, rgba(200, 164, 78, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse 50% 40% at 80% 20%, rgba(200, 164, 78, 0.05) 0%, transparent 50%);
}

.hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C8A44B' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(6, 20, 46, 0.3) 0%,
        rgba(6, 20, 46, 0.1) 50%,
        rgba(6, 20, 46, 0.5) 100%
    );
    z-index: 1;
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 120px 24px 80px;
}

.hero__eyebrow {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
}

.hero__headline {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 600;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 24px;
}

.hero__headline--accent {
    color: var(--gold);
    font-style: italic;
}

.hero__subheadline {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
    max-width: 600px;
    margin: 0 auto 40px;
    font-weight: 300;
}

.hero__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.hero__trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.hero__trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
}

.hero__trust-item svg {
    color: var(--gold);
    opacity: 0.8;
}

.hero__scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    animation: float 2s ease-in-out infinite;
}

.hero__scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
}

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

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn--primary {
    background: var(--gold);
    color: var(--navy-dark);
    border-color: var(--gold);
}

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

.btn--outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.35);
}

.btn--outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

.btn--dark {
    background: var(--navy);
    color: var(--gold);
    border-color: var(--navy);
}

.btn--dark:hover {
    background: var(--navy-light);
    border-color: var(--navy-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

/* ============================================
   Section Shared
   ============================================ */
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}

.section-header--center {
    margin-left: auto;
    margin-right: auto;
}

.section-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    line-height: 1.15;
    color: var(--navy);
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-muted);
    font-weight: 300;
}

/* ============================================
   Services
   ============================================ */
.services {
    padding: 120px 0;
    background: var(--cream);
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 40px 36px;
    border: 1px solid rgba(10, 31, 68, 0.06);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

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

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-card__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(200, 164, 78, 0.12), rgba(200, 164, 78, 0.04));
    border-radius: var(--radius-md);
    margin-bottom: 24px;
    color: var(--gold);
}

.service-card__title {
    font-family: var(--font-serif);
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 12px;
}

.service-card__desc {
    font-size: 0.9375rem;
    line-height: 1.75;
    color: var(--text-muted);
    font-weight: 300;
}

/* ============================================
   About
   ============================================ */
.about {
    padding: 120px 0;
    background: var(--white);
}

.about__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about__image-wrap {
    position: relative;
}

.about__image {
    width: 100%;
    height: 700px;
    object-fit: cover;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
}

.about__image-accent {
    position: absolute;
    bottom: -24px;
    right: -24px;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: var(--radius-md);
    z-index: -1;
    opacity: 0.3;
}

.about__content {
    max-width: 480px;
}

.about__text {
    font-size: 1rem;
    line-height: 1.85;
    color: var(--text-body);
    margin-bottom: 20px;
    font-weight: 300;
}

.about__values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin: 40px 0;
}

.about__value {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.about__value-number {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
}

.about__value-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--navy);
    letter-spacing: 0.02em;
}

/* ============================================
   Impact
   ============================================ */
.impact {
    padding: 100px 0;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.impact::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 60% 50% at 20% 50%, rgba(200, 164, 78, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse 40% 40% at 80% 50%, rgba(200, 164, 78, 0.04) 0%, transparent 60%);
}

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

.impact .section-title {
    color: var(--white);
}

.impact .section-subtitle {
    color: rgba(255, 255, 255, 0.55);
}

.impact__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
    z-index: 1;
}

.impact-stat {
    text-align: center;
    padding: 32px 16px;
    border: 1px solid rgba(200, 164, 78, 0.15);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.02);
    transition: all var(--transition);
}

.impact-stat:hover {
    border-color: rgba(200, 164, 78, 0.4);
    background: rgba(200, 164, 78, 0.04);
    transform: translateY(-4px);
}

.impact-stat__number {
    display: block;
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 12px;
}

.impact-stat__label {
    font-size: 0.8125rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* ============================================
   Visit
   ============================================ */
.visit {
    padding: 120px 0;
    background: var(--cream);
}

.visit__inner {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: start;
}

.visit__list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 40px;
}

.visit__item {
    display: flex;
    gap: 20px;
}

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

.visit__item strong {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 6px;
}

.visit__item p {
    font-size: 0.9375rem;
    line-height: 1.75;
    color: var(--text-muted);
    font-weight: 300;
}

.visit__hours {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 40px;
    border: 1px solid rgba(10, 31, 68, 0.06);
    box-shadow: var(--shadow-sm);
}

.visit__hours-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 28px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--gold-pale);
}

.visit__hours-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.visit__hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9375rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(10, 31, 68, 0.05);
}

.visit__hours-row:last-child {
    border-bottom: none;
}

.visit__hours-row span:first-child {
    font-weight: 500;
    color: var(--navy);
}

.visit__hours-row span:last-child {
    color: var(--text-body);
    font-weight: 400;
}

.visit__hours-row--closed span:last-child {
    color: var(--text-light);
    font-style: italic;
}

.visit__hours-note {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid rgba(10, 31, 68, 0.06);
}

.visit__hours-note p {
    font-size: 0.8125rem;
    color: var(--text-light);
    font-style: italic;
}

/* ============================================
   Contact
   ============================================ */
.contact {
    padding: 120px 0;
    background: var(--white);
}

.contact__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact__text {
    font-size: 1rem;
    line-height: 1.85;
    color: var(--text-muted);
    margin-bottom: 40px;
    font-weight: 300;
}

.contact__info {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact__info-item {
    display: flex;
    gap: 16px;
}

.contact__info-item svg {
    flex-shrink: 0;
    color: var(--gold);
    margin-top: 2px;
}

.contact__info-item strong {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 4px;
}

.contact__info-item p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--text-muted);
    font-weight: 300;
}

.contact__info-item a {
    color: var(--navy);
    transition: color var(--transition);
}

.contact__info-item a:hover {
    color: var(--gold);
}

.contact__form-wrap {
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: 48px;
    border: 1px solid rgba(10, 31, 68, 0.06);
}

.contact__form-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 32px;
}

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

.form-label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 14px 16px;
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    color: var(--text-dark);
    background: var(--white);
    border: 1.5px solid rgba(10, 31, 68, 0.1);
    border-radius: var(--radius-sm);
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
}

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

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

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

.form-success {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(200, 164, 78, 0.08);
    border: 1px solid rgba(200, 164, 78, 0.25);
    border-radius: var(--radius-sm);
    margin-top: 16px;
    color: var(--navy);
    font-size: 0.9375rem;
    font-weight: 500;
}

.form-success svg {
    color: var(--gold);
    flex-shrink: 0;
}

/* ============================================
   Map
   ============================================ */
.map {
    position: relative;
    height: 400px;
    background: var(--navy-dark);
}

.map__frame {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(40%) contrast(1.05);
    opacity: 0.85;
}

.map__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10, 31, 68, 0.15), transparent 30%, transparent 70%, rgba(10, 31, 68, 0.15));
    pointer-events: none;
}

.map__pin {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    background: var(--white);
    padding: 16px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    z-index: 1;
}

.map__pin svg {
    color: var(--gold);
}

.map__pin span {
    font-family: var(--font-serif);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--navy);
    white-space: nowrap;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--navy-dark);
    padding: 80px 0 0;
}

.footer__top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer__logo {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.05em;
}

.footer__logo-sub {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    display: block;
    margin-top: 2px;
}

.footer__tagline {
    font-size: 0.9375rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 16px;
    font-weight: 300;
    max-width: 300px;
}

.footer__nav-title {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.footer__nav ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__nav a {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.5);
    transition: color var(--transition);
    font-weight: 300;
}

.footer__nav a:hover {
    color: var(--gold-light);
}

.footer__contact p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.8;
    font-weight: 300;
}

.footer__contact a {
    color: var(--gold);
    transition: color var(--transition);
}

.footer__contact a:hover {
    color: var(--gold-light);
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    flex-wrap: wrap;
    gap: 12px;
}

.footer__bottom p {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.3);
    font-weight: 300;
}

.footer__bottom a {
    color: rgba(255, 255, 255, 0.3);
    transition: color var(--transition);
}

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

/* ============================================
   Mobile Responsive
   ============================================ */
@media (max-width: 1024px) {
    .about__inner {
        gap: 48px;
    }
    
    .visit__inner {
        gap: 48px;
    }
    
    .contact__inner {
        gap: 48px;
    }
    
    .impact__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav__toggle {
        display: flex;
    }
    
    .nav__links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--navy-dark);
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        transition: right var(--transition);
    }
    
    .nav__links.active {
        right: 0;
    }
    
    .nav__link {
        font-size: 1.1rem;
        color: rgba(255, 255, 255, 0.8) !important;
    }
    
    .nav__link:hover {
        color: var(--gold) !important;
    }
    
    .nav__link--cta {
        border-color: rgba(200, 164, 78, 0.4);
        color: var(--gold-light) !important;
    }
    
    .hero__content {
        padding: 100px 20px 60px;
    }
    
    .hero__trust {
        flex-direction: column;
        gap: 12px;
    }
    
    .services__grid {
        grid-template-columns: 1fr;
    }
    
    .about__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about__image {
        height: 400px;
    }
    
    .about__image-accent {
        width: 120px;
        height: 120px;
        bottom: -16px;
        right: -16px;
    }
    
    .about__values {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .visit__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact__form-wrap {
        padding: 32px 24px;
    }
    
    .footer__top {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .map__pin {
        padding: 12px 16px;
    }
    
    .map__pin span {
        font-size: 0.8125rem;
    }
}

@media (max-width: 480px) {
    .hero__actions {
        flex-direction: column;
        width: 100%;
    }
    
    .hero__actions .btn {
        width: 100%;
    }
    
    .services,
    .about,
    .visit,
    .contact {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .impact__grid {
        grid-template-columns: 1fr;
    }
    
    .about__values {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Animations
   ============================================ */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

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