/* ===== CSS Custom Properties ===== */
:root {
    --color-navy: #0f1c3f;
    --color-navy-light: #1a2d5a;
    --color-navy-dark: #091229;
    --color-gold: #c9a84c;
    --color-gold-light: #d4b96a;
    --color-gold-dark: #b8943f;
    --color-cream: #faf8f4;
    --color-warm-white: #f5f0e8;
    --color-warm-gray: #e8e2d6;
    --color-text: #1a1a1a;
    --color-text-light: #4a4a4a;
    --color-text-muted: #7a7a7a;
    --color-border: #d4cec4;
    --color-success: #2d6a4f;
    --color-success-light: #d8f3dc;

    --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'Lora', 'Palatino Linotype', Palatino, serif;
    --font-accent: 'Cormorant Garamond', Georgia, serif;

    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    --space-3xl: 8rem;

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;

    --shadow-sm: 0 1px 3px rgba(15, 28, 63, 0.06);
    --shadow-md: 0 4px 20px rgba(15, 28, 63, 0.08);
    --shadow-lg: 0 12px 48px rgba(15, 28, 63, 0.12);
    --shadow-xl: 0 24px 64px rgba(15, 28, 63, 0.16);

    --transition-fast: 0.2s ease;
    --transition-base: 0.35s ease;
    --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--color-text);
    background-color: var(--color-cream);
    overflow-x: hidden;
}

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

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

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

address {
    font-style: normal;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* ===== Typography ===== */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.2;
    color: var(--color-navy);
}

/* ===== Section Tags ===== */
.section-tag {
    display: inline-block;
    font-family: var(--font-accent);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-gold-dark);
    margin-bottom: var(--space-sm);
    position: relative;
}

.section-tag::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 1.5px;
    background: var(--color-gold);
    vertical-align: middle;
    margin-right: 10px;
}

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

.section-tag--light::before {
    background: var(--color-gold);
}

.section-header {
    margin-bottom: var(--space-xl);
}

.section-header--center {
    text-align: center;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.25rem);
    margin-bottom: var(--space-md);
}

.section-title--light {
    color: var(--color-cream);
}

.section-subtitle {
    font-family: var(--font-accent);
    font-size: 1.25rem;
    color: var(--color-text-light);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.6;
}

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

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

.btn--primary:hover {
    background: var(--color-gold-light);
    border-color: var(--color-gold-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn--ghost {
    background: transparent;
    color: var(--color-navy);
    border: 2px solid var(--color-navy);
}

.btn--ghost:hover {
    background: var(--color-navy);
    color: var(--color-cream);
    transform: translateY(-2px);
}

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

/* ===== Header ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 248, 244, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 206, 196, 0.5);
    transition: all var(--transition-base);
}

.site-header.scrolled {
    box-shadow: var(--shadow-sm);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo--footer {
    /* inherited styles */
}

.logo-mark {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-gold);
    border: 2px solid var(--color-gold);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-navy);
    letter-spacing: 0.02em;
}

/* Navigation */
.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.nav-link {
    font-family: var(--font-accent);
    font-size: 0.9375rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-text-light);
    position: relative;
    padding: 4px 0;
    transition: color var(--transition-fast);
}

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

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

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

.nav-link--cta {
    color: var(--color-gold-dark);
    border: 1.5px solid var(--color-gold);
    padding: 8px 20px;
    border-radius: var(--radius-sm);
    margin-left: var(--space-sm);
}

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

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

/* Mobile Nav Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    padding: 4px 0;
    z-index: 1001;
}

.nav-toggle-bar {
    width: 100%;
    height: 2px;
    background: var(--color-navy);
    border-radius: 2px;
    transition: all var(--transition-base);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px var(--space-md) var(--space-xl);
    background: var(--color-cream);
    position: relative;
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(ellipse at 20% 50%, rgba(201, 168, 76, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(15, 28, 63, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse at 60% 80%, rgba(201, 168, 76, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.hero-main-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: clamp(2rem, 4vw, 3.5rem);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(212, 206, 196, 0.4);
}

.hero-label {
    font-family: var(--font-accent);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-gold-dark);
    margin-bottom: var(--space-md);
    display: flex;
    align-items: center;
    gap: 12px;
}

.label-line {
    width: 32px;
    height: 1.5px;
    background: var(--color-gold);
    flex-shrink: 0;
}

.hero-headline {
    font-size: clamp(2.25rem, 4.5vw, 3.5rem);
    font-weight: 500;
    line-height: 1.15;
    margin-bottom: var(--space-md);
    color: var(--color-navy);
}

.hero-headline em {
    font-style: italic;
    color: var(--color-gold-dark);
}

.hero-subheadline {
    font-family: var(--font-accent);
    font-size: 1.2rem;
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

/* Hero Side */
.hero-side {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: var(--space-md);
    align-items: start;
}

.floating-card {
    background: white;
    border-radius: var(--radius-md);
    padding: var(--space-md);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(212, 206, 196, 0.4);
    text-align: center;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.floating-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.stat-card--accent {
    background: var(--color-navy);
    border-color: var(--color-navy);
}

.stat-card--accent .stat-number {
    color: var(--color-gold);
}

.stat-card--accent .stat-label {
    color: rgba(250, 248, 244, 0.7);
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-navy);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-unit {
    font-size: 1rem;
    font-weight: 400;
}

.stat-label {
    font-family: var(--font-accent);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.hero-image-card {
    grid-column: 1 / -1;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(212, 206, 196, 0.4);
    position: relative;
}

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

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 16px;
    background: linear-gradient(transparent, rgba(15, 28, 63, 0.85));
    color: var(--color-cream);
    font-family: var(--font-accent);
    font-size: 0.875rem;
    font-style: italic;
    letter-spacing: 0.04em;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: var(--space-lg);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--color-text-muted);
    font-family: var(--font-accent);
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

/* ===== About Section ===== */
.about {
    padding: var(--space-3xl) 0;
    background: var(--color-warm-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.about-image-wrap {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.about-image-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: var(--radius-md);
    pointer-events: none;
}

.about-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-content {
    padding: var(--space-md) 0;
}

.about-intro {
    font-size: 1.1875rem;
    color: var(--color-text);
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

.about-body {
    color: var(--color-text-light);
    margin-bottom: var(--space-md);
    font-size: 1.0625rem;
}

.about-body em {
    font-style: italic;
    color: var(--color-navy);
}

.about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--color-border);
}

.value-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-accent);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-navy);
    letter-spacing: 0.02em;
}

.value-icon {
    color: var(--color-gold);
    flex-shrink: 0;
}

/* ===== Offerings Section ===== */
.offerings {
    padding: var(--space-3xl) 0;
    background: var(--color-cream);
}

.offerings-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.offering-card {
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(212, 206, 196, 0.4);
    transition: all var(--transition-base);
}

.offering-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.offering-card-image {
    position: relative;
    overflow: hidden;
    height: 240px;
}

.offering-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.offering-card:hover .offering-card-image img {
    transform: scale(1.05);
}

.offering-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 50%, rgba(15, 28, 63, 0.3));
    display: flex;
    align-items: flex-end;
    padding: var(--space-md);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.offering-card:hover .offering-card-overlay {
    opacity: 1;
}

.offering-badge {
    display: inline-block;
    background: var(--color-gold);
    color: var(--color-navy-dark);
    font-family: var(--font-accent);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: var(--radius-sm);
}

.offering-card-body {
    padding: var(--space-md);
}

.offering-card-title {
    font-size: 1.5rem;
    margin-bottom: var(--space-xs);
}

.offering-card-desc {
    color: var(--color-text-light);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.offering-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.offering-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    color: var(--color-text-light);
}

.offering-list li svg {
    color: var(--color-gold);
    flex-shrink: 0;
}

/* ===== Philosophy Section ===== */
.philosophy {
    padding: var(--space-3xl) 0;
    background: var(--color-navy);
    position: relative;
    overflow: hidden;
}

.philosophy-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 30% 50%, rgba(201, 168, 76, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 80%, rgba(201, 168, 76, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.philosophy-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.philosophy-text {
    padding: var(--space-md) 0;
}

.philosophy-body {
    color: rgba(250, 248, 244, 0.75);
    font-size: 1.0625rem;
    line-height: 1.85;
    margin-bottom: var(--space-md);
}

.philosophy-visual {
    background: rgba(250, 248, 244, 0.05);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
}

.philosophy-quote {
    position: relative;
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.quote-mark {
    color: var(--color-gold);
    opacity: 0.4;
    margin-bottom: var(--space-sm);
}

.philosophy-quote blockquote {
    font-family: var(--font-accent);
    font-size: 1.375rem;
    font-style: italic;
    color: var(--color-cream);
    line-height: 1.6;
    margin-bottom: var(--space-sm);
}

.philosophy-quote cite {
    font-family: var(--font-accent);
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-gold);
}

.philosophy-stats {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.philosophy-stat {
    text-align: center;
    flex: 1;
}

.philosophy-stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 600;
    color: var(--color-gold);
    line-height: 1;
    margin-bottom: 6px;
}

.philosophy-stat-unit {
    font-size: 1rem;
    font-weight: 400;
}

.philosophy-stat-label {
    font-family: var(--font-accent);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(250, 248, 244, 0.55);
}

.philosophy-stat-divider {
    width: 1px;
    height: 48px;
    background: rgba(201, 168, 76, 0.2);
    flex-shrink: 0;
}

/* ===== Gallery Section ===== */
.gallery {
    padding: var(--space-3xl) 0;
    background: var(--color-warm-white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto;
    gap: var(--space-md);
}

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(212, 206, 196, 0.4);
    transition: all var(--transition-base);
}

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.gallery-item--large {
    grid-column: span 7;
}

.gallery-item:not(.gallery-item--large) {
    grid-column: span 5;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.03);
}

/* ===== Visit Section ===== */
.visit {
    padding: var(--space-3xl) 0;
    background: var(--color-cream);
}

.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: start;
}

.visit-info {
    padding: var(--space-md) 0;
}

.visit-desc {
    font-size: 1.125rem;
    color: var(--color-text-light);
    line-height: 1.75;
    margin-bottom: var(--space-lg);
    max-width: 480px;
}

.visit-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.detail-item {
    display: flex;
    gap: var(--space-sm);
    align-items: flex-start;
}

.detail-icon {
    color: var(--color-gold);
    flex-shrink: 0;
    margin-top: 4px;
}

.detail-item strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--color-navy);
    margin-bottom: 2px;
}

.detail-item p {
    color: var(--color-text-light);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.detail-item a {
    color: var(--color-gold-dark);
    transition: color var(--transition-fast);
}

.detail-item a:hover {
    color: var(--color-navy);
}

/* Form */
.form-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: clamp(2rem, 3vw, 2.5rem);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(212, 206, 196, 0.4);
}

.form-title {
    font-size: 1.75rem;
    margin-bottom: var(--space-xs);
}

.form-subtitle {
    font-family: var(--font-accent);
    font-size: 1rem;
    color: var(--color-text-muted);
    margin-bottom: var(--space-lg);
    line-height: 1.6;
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-label {
    display: block;
    font-family: var(--font-accent);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-text-light);
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-text);
    background: var(--color-cream);
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    outline: none;
}

.form-input::placeholder {
    color: var(--color-text-muted);
}

.form-input:focus {
    border-color: var(--color-gold);
    background: white;
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.12);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%237a7a7a' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

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

.form-success {
    display: none;
    text-align: center;
    padding: var(--space-xl) var(--space-md);
}

.form-success.is-visible {
    display: block;
    animation: fadeIn 0.5s ease;
}

.success-icon {
    color: var(--color-success);
    margin-bottom: var(--space-sm);
}

.success-title {
    font-size: 1.5rem;
    margin-bottom: var(--space-xs);
    color: var(--color-success);
}

.success-text {
    color: var(--color-text-light);
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* ===== Footer ===== */
.site-footer {
    background: var(--color-navy-dark);
    color: var(--color-cream);
    padding: var(--space-2xl) 0 var(--space-md);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--space-xl);
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.footer-brand {
    max-width: 360px;
}

.logo--footer .logo-mark {
    background: transparent;
}

.logo--footer .logo-text {
    color: var(--color-cream);
}

.footer-tagline {
    font-family: var(--font-accent);
    font-size: 1rem;
    color: rgba(250, 248, 244, 0.6);
    line-height: 1.7;
    margin-top: var(--space-sm);
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
}

.footer-col-title {
    font-family: var(--font-accent);
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: var(--space-md);
}

.footer-nav-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-nav-list a {
    font-size: 0.9375rem;
    color: rgba(250, 248, 244, 0.65);
    transition: color var(--transition-fast);
}

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

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.875rem;
    color: rgba(250, 248, 244, 0.65);
    line-height: 1.5;
}

.footer-contact-list svg {
    color: var(--color-gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact-list a {
    color: rgba(250, 248, 244, 0.65);
    transition: color var(--transition-fast);
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-md);
    font-size: 0.8125rem;
    color: rgba(250, 248, 244, 0.4);
}

.footer-location {
    font-family: var(--font-accent);
    letter-spacing: 0.06em;
}

/* ===== Animations ===== */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(32px); }
    to { opacity: 1; transform: translateY(0); }
}

[data-aos] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-aos].is-visible {
    opacity: 1;
    transform: translateY(0);
}

[data-aos-delay="100"] { transition-delay: 0.1s; }
[data-aos-delay="200"] { transition-delay: 0.2s; }
[data-aos-delay="300"] { transition-delay: 0.3s; }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-side {
        grid-template-columns: 1fr 1fr;
    }

    .hero-image-card {
        grid-column: 1 / -1;
    }

    .about-grid,
    .philosophy-content,
    .visit-grid {
        grid-template-columns: 1fr;
    }

    .offerings-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item--large {
        grid-column: span 12;
    }

    .gallery-item:not(.gallery-item--large) {
        grid-column: span 6;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--color-cream);
        box-shadow: var(--shadow-xl);
        padding: 100px var(--space-lg) var(--space-lg);
        transition: right var(--transition-base);
        z-index: 1000;
    }

    .main-nav.is-open {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-md);
    }

    .nav-link--cta {
        margin-left: 0;
        margin-top: var(--space-sm);
    }

    .mobile-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(15, 28, 63, 0.5);
        z-index: 999;
    }

    .mobile-overlay.is-visible {
        display: block;
    }

    .hero {
        padding-top: 100px;
        min-height: auto;
    }

    .hero-side {
        grid-template-columns: 1fr 1fr;
    }

    .hero-image-card {
        grid-column: 1 / -1;
    }

    .offerings-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item--large {
        grid-column: span 12;
    }

    .gallery-item:not(.gallery-item--large) {
        grid-column: span 12;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .about-values {
        grid-template-columns: 1fr;
    }

    .philosophy-stats {
        flex-direction: column;
        gap: var(--space-md);
    }

    .philosophy-stat-divider {
        width: 48px;
        height: 1px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--space-xs);
        text-align: center;
    }

    .hero-scroll-indicator {
        display: none;
    }
}

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

    .hero-image-card {
        grid-column: 1;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .form-card {
        padding: var(--space-md);
    }
}
