/* ============================================
   A Cup of Grace — Brand Stylesheet
   Teal + Slate Grey | Confident Corporate
   ============================================ */

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

:root {
    --teal-50: #f0fdfa;
    --teal-100: #ccfbf1;
    --teal-200: #99f6e4;
    --teal-300: #5eead4;
    --teal-400: #2dd4bf;
    --teal-500: #14b8a6;
    --teal-600: #0d9488;
    --teal-700: #0f766e;
    --teal-800: #115e59;
    --teal-900: #134e4a;

    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;
    --slate-950: #020617;

    --white: #ffffff;
    --black: #000000;

    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;

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

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

    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
}

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

body {
    font-family: var(--font-sans);
    color: var(--slate-800);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s ease;
}

ul {
    list-style: none;
}

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

/* ---------- PRELOADER ---------- */
#preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--slate-950);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-logo {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--white);
    letter-spacing: 0.02em;
}

.loader-logo .text-teal {
    color: var(--teal-400);
}

.loader-bar {
    width: 200px;
    height: 2px;
    background: var(--slate-800);
    border-radius: 2px;
    overflow: hidden;
}

.loader-progress {
    height: 100%;
    width: 0%;
    background: var(--teal-500);
    border-radius: 2px;
    animation: loaderProgress 1.2s ease-out forwards;
}

@keyframes loaderProgress {
    to { width: 100%; }
}

/* ---------- HEADER ---------- */
#main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--slate-200);
    transition: box-shadow 0.3s ease;
}

#main-header.scrolled {
    box-shadow: var(--shadow-md);
}

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

/* ---------- LOGO ---------- */
.logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--slate-900);
    letter-spacing: -0.01em;
}

.logo-icon {
    color: var(--teal-600);
    flex-shrink: 0;
}

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

.logo-light .logo-icon {
    color: var(--teal-400);
}

.text-teal {
    color: var(--teal-600);
}

.text-teal-light {
    color: var(--teal-400);
}

/* ---------- NAV ---------- */
.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--slate-600);
    letter-spacing: 0.01em;
    position: relative;
    padding: 0.25rem 0;
    transition: color 0.2s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--teal-600);
    transition: width 0.3s ease;
}

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

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

.nav-cta {
    background: var(--teal-600);
    color: var(--white) !important;
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    transition: background 0.2s ease, transform 0.2s ease;
}

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

.nav-cta:hover {
    background: var(--teal-700);
    transform: translateY(-1px);
}

/* ---------- MOBILE TOGGLE ---------- */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--slate-800);
    transition: all 0.3s ease;
    transform-origin: center;
}

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

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

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

/* ---------- MOBILE MENU ---------- */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.mobile-menu-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-lg);
}

.mobile-nav-link {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--slate-800);
    transition: color 0.2s ease;
}

.mobile-nav-link:hover {
    color: var(--teal-600);
}

.mobile-cta {
    margin-top: var(--space-sm);
    font-family: var(--font-sans);
    font-size: 1rem;
    background: var(--teal-600);
    color: var(--white) !important;
    padding: 0.75rem 2rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
}

/* ---------- HERO ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(2,6,23,0.85) 0%,
        rgba(15,23,42,0.75) 50%,
        rgba(17,94,89,0.6) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    padding-top: var(--space-4xl);
    padding-bottom: var(--space-4xl);
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--teal-300);
    margin-bottom: var(--space-lg);
}

.badge-line {
    width: 40px;
    height: 2px;
    background: var(--teal-500);
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: var(--space-lg);
    letter-spacing: -0.02em;
}

.hero-accent {
    color: var(--teal-300);
}

.hero-sub {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--slate-300);
    max-width: 560px;
    margin-bottom: var(--space-xl);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin-bottom: var(--space-3xl);
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    letter-spacing: 0.01em;
}

.btn-primary {
    background: var(--teal-600);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--teal-500);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(13,148,136,0.35);
}

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

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

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

/* ---------- HERO STATS ---------- */
.hero-stats {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255,255,255,0.1);
}

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

.stat-number {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.stat-label {
    font-size: 0.75rem;
    color: var(--slate-400);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.15);
}

/* ---------- HERO SCROLL ---------- */
.hero-scroll {
    position: absolute;
    bottom: var(--space-xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 1;
}

.hero-scroll span {
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--slate-400);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--teal-500), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.5; transform: scaleY(0.7); }
}

/* ---------- SECTION COMMON ---------- */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--teal-600);
    margin-bottom: var(--space-md);
}

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

.section-label.light {
    color: var(--teal-400);
}

.section-label.light::before {
    background: var(--teal-400);
}

.section-heading {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--slate-900);
    letter-spacing: -0.02em;
    margin-bottom: var(--space-md);
}

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

.section-sub {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--slate-500);
    max-width: 560px;
}

/* ---------- ABOUT ---------- */
.about {
    padding: var(--space-4xl) 0;
    background: var(--white);
}

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

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

.lead {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--slate-700);
}

.about-text p {
    font-size: 0.9375rem;
    line-height: 1.75;
    color: var(--slate-500);
}

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

.visual-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.visual-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: auto;
}

.visual-large {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    aspect-ratio: 3/4;
}

.visual-small {
    aspect-ratio: 4/3;
}

.visual-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.visual-item:hover img {
    transform: scale(1.05);
}

.about-accent-bar {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) 0;
}

.accent-line {
    width: 48px;
    height: 3px;
    background: var(--teal-600);
    border-radius: 2px;
}

.about-accent-bar span {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--slate-400);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ---------- OFFERINGS ---------- */
.offerings {
    padding: var(--space-4xl) 0;
    background: var(--slate-50);
}

.section-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-3xl);
}

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

.offering-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--slate-200);
    transition: all 0.3s ease;
}

.offering-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--teal-200);
}

.offering-card-header {
    padding: var(--space-xl) var(--space-xl) var(--space-md);
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
}

.offering-icon {
    color: var(--teal-600);
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.offering-card h3 {
    font-family: var(--font-serif);
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 0.5rem;
}

.offering-card p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--slate-500);
}

.offering-img {
    height: 220px;
    overflow: hidden;
}

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

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

/* ---------- CRAFT ---------- */
.craft {
    position: relative;
    padding: var(--space-4xl) 0;
    overflow: hidden;
}

.craft-bg {
    position: absolute;
    inset: 0;
}

.craft-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.craft-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(2,6,23,0.9) 0%,
        rgba(17,94,89,0.8) 100%
    );
}

.craft-content {
    position: relative;
    z-index: 1;
}

.craft-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
    margin-top: var(--space-3xl);
}

.craft-item {
    padding: var(--space-lg);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.craft-item:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(255,255,255,0.2);
    transform: translateY(-4px);
}

.craft-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--teal-400);
    line-height: 1;
    margin-bottom: var(--space-md);
    opacity: 0.8;
}

.craft-item h3 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.craft-item p {
    font-size: 0.875rem;
    line-height: 1.7;
    color: var(--slate-400);
}

/* ---------- VISIT ---------- */
.visit {
    padding: var(--space-4xl) 0;
    background: var(--white);
}

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

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

.visit-desc {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--slate-500);
}

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

.contact-card {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md);
    background: var(--slate-50);
    border-radius: var(--radius-md);
    border: 1px solid var(--slate-200);
    transition: all 0.2s ease;
}

.contact-card:hover {
    border-color: var(--teal-300);
    background: var(--teal-50);
}

.contact-card-icon {
    color: var(--teal-600);
    flex-shrink: 0;
}

.contact-card-text {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.contact-card-label {
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--slate-400);
}

.contact-card-value {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--slate-800);
}

.contact-card-value:hover {
    color: var(--teal-600);
}

.visit-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--slate-200);
    height: 480px;
}

.map-wrapper {
    width: 100%;
    height: 100%;
}

/* ---------- CONTACT ---------- */
.contact {
    padding: var(--space-4xl) 0;
    background: var(--slate-950);
}

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

.contact-left {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.contact-desc {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--slate-400);
}

.contact-direct {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid rgba(255,255,255,0.08);
}

.direct-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.direct-label {
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--slate-500);
}

.direct-value {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--white);
    transition: color 0.2s ease;
}

.direct-value:hover {
    color: var(--teal-400);
}

/* ---------- FORM ---------- */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    background: var(--slate-900);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,0.06);
}

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

.form-label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--slate-300);
    letter-spacing: 0.02em;
}

.form-input {
    background: var(--slate-800);
    border: 1px solid var(--slate-700);
    border-radius: var(--radius-sm);
    padding: 0.75rem 1rem;
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    color: var(--white);
    transition: all 0.2s ease;
    outline: none;
    width: 100%;
}

.form-input::placeholder {
    color: var(--slate-500);
}

.form-input:focus {
    border-color: var(--teal-500);
    background: var(--slate-800);
    box-shadow: 0 0 0 3px rgba(20,184,166,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 4.5L6 7.5L9 4.5' stroke='%2394a3b8' stroke-width='1.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(--slate-800);
    color: var(--white);
}

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

.form-success {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md);
    background: rgba(20,184,166,0.1);
    border: 1px solid rgba(20,184,166,0.3);
    border-radius: var(--radius-md);
    margin-top: var(--space-sm);
}

.form-success .success-icon {
    color: var(--teal-400);
    flex-shrink: 0;
}

.form-success p {
    font-size: 0.9375rem;
    color: var(--teal-200);
}

/* ---------- FOOTER ---------- */
#footer {
    background: var(--slate-950);
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: var(--space-3xl) 0 var(--space-xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--space-2xl);
    padding-bottom: var(--space-2xl);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-desc {
    font-size: 0.875rem;
    line-height: 1.7;
    color: var(--slate-500);
    margin-top: var(--space-md);
    max-width: 280px;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-md);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.footer-links a {
    font-size: 0.875rem;
    color: var(--slate-400);
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--teal-400);
}

.footer-contact p {
    font-size: 0.875rem;
    color: var(--slate-400);
    line-height: 1.7;
}

.footer-contact a {
    color: var(--slate-400);
    transition: color 0.2s ease;
}

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

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--space-xl);
    font-size: 0.8125rem;
    color: var(--slate-500);
}

/* ---------- BACK TO TOP ---------- */
.back-to-top {
    position: fixed;
    bottom: var(--space-xl);
    right: var(--space-xl);
    width: 44px;
    height: 44px;
    background: var(--teal-600);
    color: var(--white);
    border: none;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
    box-shadow: var(--shadow-lg);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--teal-500);
    transform: translateY(-2px);
}

/* ---------- ANIMATIONS ---------- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.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) {
    .offerings-grid {
        grid-template-columns: 1fr;
    }

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

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

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

    .mobile-toggle {
        display: flex;
    }

    .hero-content {
        padding-top: var(--space-3xl);
    }

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

    .stat-divider {
        display: none;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .about-visuals {
        order: -1;
    }

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

    .visual-large {
        grid-column: auto;
        grid-row: auto;
        aspect-ratio: 4/3;
    }

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

    .visit-map {
        height: 320px;
        order: -1;
    }

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

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

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

    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .hero-scroll {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-md);
    }

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

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

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