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

:root {
    --plum-50: #faf5f7;
    --plum-100: #f5e9ee;
    --plum-200: #ebd1dc;
    --plum-300: #d9adba;
    --plum-400: #c27e96;
    --plum-500: #a85577;
    --plum-600: #8b3a5c;
    --plum-700: #6b2f5b;
    --plum-800: #4a1f3e;
    --plum-900: #2d1325;
    --plum-950: #1a0b16;
    
    --amber-50: #fef9f0;
    --amber-100: #fdf0d5;
    --amber-200: #fce0a8;
    --amber-300: #f5c46e;
    --amber-400: #e8a832;
    --amber-500: #c8913c;
    --amber-600: #a6702e;
    --amber-700: #825424;
    --amber-800: #65411e;
    --amber-900: #52351a;
    
    --cream: #faf8f5;
    --cream-dark: #f3efe8;
    --warm-gray: #6b6560;
    --warm-gray-light: #9b9490;
    --warm-gray-dark: #3d3835;
    
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Lora', 'Times New Roman', serif;
    --font-ui: 'Inter', system-ui, sans-serif;
    
    --shadow-sm: 0 1px 3px rgba(107, 47, 91, 0.06);
    --shadow-md: 0 4px 16px rgba(107, 47, 91, 0.08);
    --shadow-lg: 0 8px 32px rgba(107, 47, 91, 0.12);
    --shadow-xl: 0 16px 48px rgba(107, 47, 91, 0.15);
    
    --radius-sm: 0.375rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
}

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

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

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: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ===== Section Labels ===== */
.section-label {
    font-family: var(--font-ui);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--amber-500);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.section-label::before {
    content: '';
    width: 2rem;
    height: 1px;
    background: var(--amber-500);
}

.section-header--center .section-label {
    justify-content: center;
}

.section-header--center .section-label::before {
    display: none;
}

/* ===== Section Titles ===== */
.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    line-height: 1.2;
    color: var(--plum-900);
    margin-bottom: 1.25rem;
}

.section-title--dark {
    color: var(--plum-900);
}

.section-title--light {
    color: #faf8f5;
}

.text-accent {
    color: var(--amber-500);
}

.text-accent-light {
    color: var(--amber-300);
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 1.125rem;
    color: var(--warm-gray);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.75;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-ui);
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.875rem 1.75rem;
    border-radius: 100px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn--primary {
    background: var(--plum-700);
    color: #faf8f5;
    box-shadow: 0 4px 16px rgba(107, 47, 91, 0.25);
}

.btn--primary:hover {
    background: var(--plum-600);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(107, 47, 91, 0.35);
}

.btn--ghost {
    background: rgba(250, 248, 245, 0.12);
    color: #faf8f5;
    border: 1px solid rgba(250, 248, 245, 0.3);
    backdrop-filter: blur(8px);
}

.btn--ghost:hover {
    background: rgba(250, 248, 245, 0.2);
    border-color: rgba(250, 248, 245, 0.5);
    transform: translateY(-2px);
}

.btn--light {
    background: #faf8f5;
    color: var(--plum-800);
    box-shadow: var(--shadow-md);
}

.btn--light:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn--full {
    width: 100%;
    justify-content: center;
}

/* ===== Navigation ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.4s ease;
}

.nav.scrolled {
    background: rgba(250, 248, 245, 0.95);
    backdrop-filter: blur(16px);
    box-shadow: 0 1px 0 rgba(107, 47, 91, 0.08);
    padding: 0.75rem 0;
}

.nav.scrolled .nav-logo-text {
    color: var(--plum-900);
}

.nav.scrolled .nav-link {
    color: var(--warm-gray-dark);
}

.nav.scrolled .nav-link:hover {
    color: var(--plum-700);
}

.nav.scrolled .nav-link--cta {
    background: var(--plum-700);
    color: #faf8f5 !important;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    z-index: 1001;
}

.nav-logo-icon {
    color: var(--amber-400);
}

.nav-logo-text {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
    color: #faf8f5;
    transition: color 0.3s ease;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-link {
    font-family: var(--font-ui);
    font-size: 0.875rem;
    font-weight: 400;
    color: rgba(250, 248, 245, 0.85);
    padding: 0.5rem 0.875rem;
    border-radius: 100px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #faf8f5;
    background: rgba(250, 248, 245, 0.1);
}

.nav-link--cta {
    background: rgba(250, 248, 245, 0.15);
    color: #faf8f5 !important;
    border: 1px solid rgba(250, 248, 245, 0.25);
    margin-left: 0.5rem;
}

.nav-link--cta:hover {
    background: rgba(250, 248, 245, 0.25) !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
    z-index: 1001;
}

.nav-toggle-bar {
    width: 22px;
    height: 1.5px;
    background: #faf8f5;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.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);
}

/* ===== Hero ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(
        135deg,
        var(--plum-900) 0%,
        var(--plum-700) 25%,
        var(--plum-600) 40%,
        var(--amber-700) 65%,
        var(--amber-500) 85%,
        var(--amber-400) 100%
    );
    padding: 8rem 1.5rem 4rem;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 60% at 20% 80%, rgba(107, 47, 91, 0.5) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 80% 20%, rgba(200, 145, 60, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse 90% 40% at 50% 50%, rgba(45, 19, 37, 0.3) 0%, transparent 70%);
    pointer-events: none;
}

.hero::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='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V2h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V2H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 780px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-ui);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--amber-200);
    background: rgba(250, 248, 245, 0.1);
    border: 1px solid rgba(250, 248, 245, 0.15);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    backdrop-filter: blur(8px);
    margin-bottom: 2rem;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.75rem, 6vw, 4.5rem);
    font-weight: 600;
    line-height: 1.1;
    color: #faf8f5;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.hero-title-accent {
    color: var(--amber-300);
    font-style: italic;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: clamp(1.0625rem, 1.5vw, 1.25rem);
    color: rgba(250, 248, 245, 0.8);
    line-height: 1.75;
    max-width: 580px;
    margin: 0 auto 2.5rem;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
}

.hero-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-ui);
    font-size: 0.8125rem;
    font-weight: 400;
    color: rgba(250, 248, 245, 0.7);
}

.hero-trust-item svg {
    color: var(--amber-400);
    opacity: 0.8;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-ui);
    font-size: 0.6875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(250, 248, 245, 0.4);
    z-index: 1;
}

.hero-scroll svg {
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(4px); }
}

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

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

.about-image {
    position: relative;
}

.about-image-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

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

.about-image-accent {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    width: 55%;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--cream);
}

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

.about-experience {
    position: absolute;
    top: -1.5rem;
    left: -1.5rem;
    background: var(--plum-700);
    color: #faf8f5;
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.about-experience-number {
    display: block;
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--amber-300);
    letter-spacing: 0.05em;
}

.about-experience-text {
    display: block;
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.3;
    margin-top: 0.25rem;
}

.about-content {
    padding: 1rem 0;
}

.about-text {
    font-size: 1.0625rem;
    color: var(--warm-gray);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.about-text:last-of-type {
    margin-bottom: 2.5rem;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-value {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.about-value-icon {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    background: var(--plum-100);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--plum-700);
}

.about-value-title {
    font-family: var(--font-display);
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--plum-900);
    margin-bottom: 0.25rem;
}

.about-value-desc {
    font-size: 0.9375rem;
    color: var(--warm-gray);
    line-height: 1.6;
}

/* ===== Offerings ===== */
.offerings {
    padding: 7rem 0;
    background: var(--cream-dark);
}

.section-header {
    margin-bottom: 4rem;
}

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

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

.offering-card {
    background: var(--cream);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    border: 1px solid rgba(107, 47, 91, 0.06);
}

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

.offering-card-image {
    position: relative;
    overflow: hidden;
    height: 12.5rem;
}

.offering-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.offering-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(45, 19, 37, 0.5) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 1.25rem;
}

.offering-card-tag {
    font-family: var(--font-ui);
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--amber-300);
    background: rgba(107, 47, 91, 0.7);
    padding: 0.375rem 0.75rem;
    border-radius: 100px;
    backdrop-filter: blur(4px);
}

.offering-card-content {
    padding: 1.75rem;
}

.offering-card-icon {
    width: 3.25rem;
    height: 3.25rem;
    background: linear-gradient(135deg, var(--plum-100) 0%, var(--plum-50) 100%);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--plum-700);
    margin-bottom: 1rem;
}

.offering-card-title {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--plum-900);
    margin-bottom: 0.75rem;
}

.offering-card-desc {
    font-size: 0.9375rem;
    color: var(--warm-gray);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.offering-card-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.offering-card-list li {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-family: var(--font-ui);
    font-size: 0.8125rem;
    color: var(--warm-gray-dark);
}

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

/* ===== Philosophy ===== */
.philosophy {
    padding: 7rem 0;
    background: linear-gradient(
        135deg,
        var(--plum-900) 0%,
        var(--plum-700) 50%,
        var(--amber-800) 100%
    );
    position: relative;
    overflow: hidden;
}

.philosophy::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 60% 50% at 80% 50%, rgba(200, 145, 60, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 10% 80%, rgba(107, 47, 91, 0.3) 0%, transparent 50%);
    pointer-events: none;
}

.philosophy-inner {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.philosophy-content {
    color: #faf8f5;
}

.philosophy-text {
    font-size: 1.0625rem;
    color: rgba(250, 248, 245, 0.75);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

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

.philosophy-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    height: 43.75rem;
}

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

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

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

.visit-detail {
    display: flex;
    gap: 1rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--plum-100);
}

.visit-detail:first-child {
    padding-top: 0;
}

.visit-detail:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.visit-detail-icon {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    background: var(--plum-100);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--plum-700);
}

.visit-detail-label {
    font-family: var(--font-ui);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--plum-700);
    margin-bottom: 0.375rem;
}

.visit-detail-value {
    font-size: 1rem;
    color: var(--warm-gray-dark);
    line-height: 1.6;
}

.visit-detail-value a {
    color: var(--plum-600);
    transition: color 0.2s ease;
}

.visit-detail-value a:hover {
    color: var(--plum-700);
    text-decoration: underline;
}

.visit-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 28rem;
}

/* ===== Contact ===== */
.contact {
    padding: 7rem 0;
    background: linear-gradient(
        135deg,
        var(--plum-800) 0%,
        var(--plum-900) 60%,
        var(--plum-950) 100%
    );
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 50% 60% at 90% 20%, rgba(200, 145, 60, 0.12) 0%, transparent 60%);
    pointer-events: none;
}

.contact-inner {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-text {
    font-size: 1.0625rem;
    color: rgba(250, 248, 245, 0.7);
    line-height: 1.75;
    margin-top: 1rem;
}

.contact-form-wrapper {
    background: rgba(250, 248, 245, 0.06);
    border: 1px solid rgba(250, 248, 245, 0.1);
    border-radius: var(--radius-lg);
    padding: 2.25rem;
    backdrop-filter: blur(8px);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-family: var(--font-ui);
    font-size: 0.8125rem;
    font-weight: 500;
    color: rgba(250, 248, 245, 0.7);
    letter-spacing: 0.02em;
}

.form-input {
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: #faf8f5;
    background: rgba(250, 248, 245, 0.08);
    border: 1px solid rgba(250, 248, 245, 0.15);
    border-radius: var(--radius-sm);
    padding: 0.875rem 1rem;
    transition: all 0.3s ease;
    outline: none;
    width: 100%;
}

.form-input::placeholder {
    color: rgba(250, 248, 245, 0.35);
}

.form-input:focus {
    border-color: var(--amber-500);
    background: rgba(250, 248, 245, 0.12);
    box-shadow: 0 0 0 3px rgba(200, 145, 60, 0.15);
}

.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 12 12' fill='none'%3E%3Cpath d='M3 5l3 3 3-3' stroke='%23FAF8F5' stroke-opacity='0.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

.form-select option {
    background: var(--plum-900);
    color: #faf8f5;
}

.form-textarea {
    resize: vertical;
    min-height: 8rem;
}

.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: 4rem;
    height: 4rem;
    background: rgba(200, 145, 60, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--amber-400);
}

.form-success-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: #faf8f5;
}

.form-success-text {
    font-size: 0.9375rem;
    color: rgba(250, 248, 245, 0.65);
    line-height: 1.6;
}

/* ===== Footer ===== */
.footer {
    background: var(--plum-950);
    color: rgba(250, 248, 245, 0.6);
    padding: 4rem 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(250, 248, 245, 0.08);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    margin-bottom: 1rem;
}

.footer-logo-icon {
    color: var(--amber-400);
}

.footer-logo-text,
.footer-logo span {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
    color: #faf8f5;
}

.footer-tagline {
    font-size: 0.9375rem;
    line-height: 1.7;
    max-width: 300px;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.footer-link-group {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.footer-link-title {
    font-family: var(--font-ui);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--amber-400);
    margin-bottom: 0.25rem;
}

.footer-link-group a,
.footer-link-group span {
    font-family: var(--font-ui);
    font-size: 0.875rem;
    color: rgba(250, 248, 245, 0.55);
    transition: color 0.2s ease;
    line-height: 1.6;
}

.footer-link-group a:hover {
    color: #faf8f5;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 0;
    font-family: var(--font-ui);
    font-size: 0.8125rem;
}

.footer-bottom p:last-child {
    color: rgba(250, 248, 245, 0.35);
}

/* ===== Scroll Reveal ===== */
.reveal {
    opacity: 1;
    transform: none;
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal[data-reveal] {
    opacity: 0;
    transform: translateY(24px);
}

@media (prefers-reduced-motion: no-preference) {
    .reveal[data-reveal] {
        opacity: 0;
        transform: translateY(24px);
    }
    
    .reveal.visible[data-reveal] {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .about-grid,
    .philosophy-inner,
    .visit-grid,
    .contact-inner {
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(45, 19, 37, 0.97);
        backdrop-filter: blur(16px);
        flex-direction: column;
        justify-content: center;
        gap: 0.5rem;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
    }
    
    .nav-links.open {
        opacity: 1;
        pointer-events: all;
    }
    
    .nav-link {
        font-size: 1.125rem;
        padding: 0.75rem 1.25rem;
        color: rgba(250, 248, 245, 0.85) !important;
    }
    
    .nav-link:hover {
        color: #faf8f5 !important;
        background: rgba(250, 248, 245, 0.1) !important;
    }
    
    .nav-link--cta {
        margin-left: 0;
        margin-top: 0.5rem;
        background: rgba(250, 248, 245, 0.15) !important;
    }
    
    .hero {
        padding: 7rem 1.5rem 4rem;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-trust {
        gap: 1.25rem;
    }
    
    .about-grid,
    .philosophy-inner,
    .visit-grid,
    .contact-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .about-image {
        max-width: 480px;
        margin: 0 auto;
    }
    
    .about-image-accent {
        right: -1rem;
        bottom: -1.5rem;
    }
    
    .about-experience {
        left: -1rem;
        top: -1rem;
    }
    
    .offerings-grid {
        grid-template-columns: 1fr;
    }
    
    .philosophy-image {
        height: 30rem;
        order: -1;
    }
    
    .visit-map {
        height: 22rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.25rem;
    }
    
    .section-title {
        font-size: 1.875rem;
    }
    
    .about-image-main img {
        height: 32rem;
    }
    
    .offering-card-image {
        height: 10rem;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
}
