/* ============================================
   Cafe Gilly — Editorial Bakery & Grocery
   Forest Green + Off-White · Playfair + Inter
   ============================================ */

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

:root {
    --forest: #1a3c2a;
    --forest-deep: #0f2518;
    --forest-light: #2d5a3f;
    --forest-muted: #3d7a56;
    --cream: #f5f2eb;
    --cream-light: #faf8f4;
    --cream-dark: #e8e2d6;
    --warm-white: #fdfcfa;
    --text-primary: #1a1a18;
    --text-secondary: #4a4a44;
    --text-muted: #7a7a72;
    --text-on-dark: #f5f2eb;
    --accent-gold: #c8a86e;
    --accent-gold-light: #d4b87a;
    --border-light: rgba(26, 60, 42, 0.1);
    --border-medium: rgba(26, 60, 42, 0.2);
    --shadow-sm: 0 1px 3px rgba(26, 60, 42, 0.06);
    --shadow-md: 0 4px 20px rgba(26, 60, 42, 0.08);
    --shadow-lg: 0 12px 40px rgba(26, 60, 42, 0.12);
    --shadow-xl: 0 20px 60px rgba(26, 60, 42, 0.15);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --transition-fast: 0.2s ease;
    --transition-base: 0.35s ease;
    --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
    font-family: var(--font-sans);
    background-color: var(--cream);
    color: var(--text-primary);
    line-height: 1.6;
    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;
}

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

/* ============================================
   Navigation
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(245, 242, 235, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition-base);
}

.nav.scrolled {
    background: rgba(245, 242, 235, 0.95);
    box-shadow: var(--shadow-sm);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--forest);
}

.nav-logo-mark {
    width: 36px;
    height: 36px;
    background: var(--forest);
    color: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 16px;
    font-weight: 600;
    font-style: italic;
}

.nav-logo-text {
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.01em;
}

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

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 0.02em;
    transition: var(--transition-fast);
    position: relative;
}

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

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

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

.nav-link--cta {
    padding: 8px 20px;
    background: var(--forest);
    color: var(--cream) !important;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.03em;
    transition: var(--transition-fast);
}

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

.nav-link--cta:hover {
    background: var(--forest-light);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

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

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

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

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

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

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

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

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

.mobile-menu-link {
    font-family: var(--font-serif);
    font-size: 32px;
    font-weight: 500;
    color: var(--forest);
    padding: 12px 0;
    transition: var(--transition-fast);
    opacity: 0;
    transform: translateY(20px);
}

.mobile-menu.active .mobile-menu-link {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu-link:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu-link:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu-link:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu-link:nth-child(5) { transition-delay: 0.3s; }

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

.mobile-menu-link--cta {
    margin-top: 16px;
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 500;
    padding: 12px 32px;
    background: var(--forest);
    color: var(--cream);
    border-radius: 100px;
    letter-spacing: 0.03em;
}

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

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(ellipse 80% 60% at 70% 40%, rgba(45, 90, 63, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse 50% 80% at 10% 90%, rgba(200, 168, 110, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

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

.hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.hero-eyebrow {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--forest-muted);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-eyebrow::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--forest-muted);
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(40px, 5.5vw, 72px);
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -0.025em;
    color: var(--text-primary);
    margin-bottom: 28px;
}

.hero-headline--accent {
    color: var(--forest);
    font-style: italic;
}

.hero-subhead {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 480px;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.03em;
    transition: var(--transition-fast);
    text-decoration: none;
}

.btn--primary {
    background: var(--forest);
    color: var(--cream);
}

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

.btn--ghost {
    background: transparent;
    color: var(--forest);
    border: 1.5px solid var(--border-medium);
}

.btn--ghost:hover {
    border-color: var(--forest);
    background: rgba(26, 60, 42, 0.04);
    transform: translateY(-2px);
}

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

.btn--map {
    margin-top: 16px;
    font-size: 13px;
    padding: 12px 24px;
}

/* Hero Image */
.hero-visual {
    position: relative;
}

.hero-image-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.hero-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-image-card:hover img {
    transform: scale(1.03);
}

.hero-image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 28px;
    background: linear-gradient(transparent, rgba(15, 37, 24, 0.7));
    color: var(--cream);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.02em;
}

/* Floating Stat Cards */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 900px;
}

.stat-card {
    background: var(--warm-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 24px 20px;
    text-align: center;
    transition: var(--transition-base);
    box-shadow: var(--shadow-sm);
}

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

.stat-card--wide {
    grid-column: span 2;
}

.stat-card--dark {
    background: var(--forest);
    border-color: var(--forest);
    color: var(--cream);
}

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

.stat-card--dark .stat-card-label {
    color: rgba(245, 242, 235, 0.7);
}

.stat-card-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 600;
    color: var(--forest);
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}

.stat-card-label {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    animation: float 2.5s ease-in-out infinite;
}

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

/* ============================================
   Section Divider
   ============================================ */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    color: var(--forest);
}

/* ============================================
   Section Shared Styles
   ============================================ */
.section-eyebrow {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--forest-muted);
    margin-bottom: 16px;
}

.section-headline {
    font-family: var(--font-serif);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 500;
    line-height: 1.12;
    letter-spacing: -0.025em;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.headline-accent {
    color: var(--forest);
    font-style: italic;
}

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

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

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

.about-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 56/68;
}

.about-accent-strip {
    margin-top: 16px;
    padding: 16px 20px;
    background: var(--forest);
    border-radius: var(--radius-md);
    color: var(--cream);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.about-lead {
    font-family: var(--font-serif);
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-primary);
    margin-bottom: 20px;
    font-weight: 400;
}

.about-body {
    font-size: 15px;
    line-height: 1.75;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.about-values {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.value-item {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 16px;
}

.value-number {
    font-family: var(--font-serif);
    font-size: 14px;
    font-weight: 600;
    color: var(--forest-muted);
    padding-top: 4px;
}

.value-title {
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}

.value-desc {
    font-size: 14px;
    line-height: 1.65;
    color: var(--text-secondary);
}

/* ============================================
   Offerings Section
   ============================================ */
.offerings {
    padding: 120px 0;
    background: var(--cream);
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 64px;
}

.offerings-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.offering-card {
    background: var(--warm-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: var(--transition-base);
    box-shadow: var(--shadow-sm);
}

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

.offering-card-image {
    overflow: hidden;
    aspect-ratio: 48/36;
}

.offering-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.offering-card-content {
    padding: 36px 32px;
}

.offering-card-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--forest);
    background: rgba(26, 60, 42, 0.08);
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.offering-card-title {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 14px;
    letter-spacing: -0.015em;
    line-height: 1.2;
}

.offering-card-desc {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

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

.offering-card-list li {
    font-size: 13px;
    color: var(--text-secondary);
    padding-left: 18px;
    position: relative;
    line-height: 1.5;
}

.offering-card-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 6px;
    height: 6px;
    background: var(--forest-muted);
    border-radius: 50%;
}

/* ============================================
   Craft Section
   ============================================ */
.craft {
    padding: 120px 0;
    background: var(--forest);
    color: var(--cream);
}

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

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

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

.craft .craft-body {
    color: rgba(245, 242, 235, 0.7);
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 16px;
    max-width: 520px;
}

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

.craft-stats-row {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 48px;
    padding-top: 40px;
    border-top: 1px solid rgba(245, 242, 235, 0.15);
}

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

.craft-stat-number {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 600;
    color: var(--accent-gold-light);
    letter-spacing: -0.02em;
}

.craft-stat-label {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(245, 242, 235, 0.5);
}

.craft-stat-divider {
    width: 1px;
    height: 48px;
    background: rgba(245, 242, 235, 0.2);
}

.craft-image-col {
    position: relative;
}

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

.craft-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 52/64;
}

.craft-image-small {
    position: absolute;
    bottom: -40px;
    right: -40px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 4px solid var(--forest);
}

.craft-image-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 32/24;
}

/* ============================================
   Quote Section
   ============================================ */
.quote-section {
    padding: 100px 0;
    background: var(--cream-dark);
}

.quote-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.quote-mark {
    color: var(--forest-muted);
    opacity: 0.3;
    margin-bottom: 24px;
}

.quote-content blockquote {
    font-family: var(--font-serif);
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 400;
    font-style: italic;
    line-height: 1.5;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.quote-attribution {
    margin-top: 28px;
}

.quote-source {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
}

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

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

.visit-detail {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
}

.visit-detail-icon {
    width: 44px;
    height: 44px;
    background: var(--forest);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cream);
    flex-shrink: 0;
}

.visit-detail-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.visit-detail-value {
    font-size: 15px;
    color: var(--text-primary);
    line-height: 1.6;
}

.visit-detail-value a {
    color: var(--forest);
    transition: var(--transition-fast);
}

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

.visit-hours {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--border-medium);
}

.visit-hours-title {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

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

.visit-hour-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    padding: 8px 0;
}

.visit-hour-row span:first-child {
    color: var(--text-secondary);
    font-weight: 400;
}

.visit-hour-row span:last-child {
    color: var(--text-primary);
    font-weight: 500;
}

.visit-hours-note {
    margin-top: 12px;
    font-size: 12px;
    color: var(--text-muted);
    font-style: italic;
}

.visit-map {
    background: var(--forest);
    border-radius: var(--radius-xl);
    overflow: hidden;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visit-map-placeholder {
    text-align: center;
    padding: 48px 32px;
}

.map-icon {
    color: var(--accent-gold-light);
    margin-bottom: 20px;
    opacity: 0.8;
}

.map-address {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 500;
    color: var(--cream);
    line-height: 1.4;
    margin-bottom: 8px;
}

.map-city {
    font-size: 15px;
    color: rgba(245, 242, 235, 0.6);
    margin-bottom: 24px;
}

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

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

.contact-body {
    font-size: 15px;
    line-height: 1.75;
    color: var(--text-secondary);
    max-width: 440px;
}

.contact-form-wrapper {
    background: var(--warm-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

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

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

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border-medium);
    border-radius: var(--radius-md);
    font-family: var(--font-sans);
    font-size: 14px;
    color: var(--text-primary);
    background: var(--cream-light);
    transition: var(--transition-fast);
    outline: none;
}

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

.form-input:focus {
    border-color: var(--forest);
    background: var(--warm-white);
    box-shadow: 0 0 0 3px rgba(26, 60, 42, 0.08);
}

.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='%237a7a72' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
    cursor: pointer;
}

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

/* Form Success */
.form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 48px 24px;
}

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

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

.form-success-title {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.form-success-text {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--forest-deep);
    color: var(--cream);
    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(245, 242, 235, 0.1);
}

.footer-logo-mark {
    width: 44px;
    height: 44px;
    background: var(--forest-light);
    color: var(--cream);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 600;
    font-style: italic;
    margin-bottom: 16px;
}

.footer-logo-text {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 600;
    display: block;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.footer-tagline {
    font-size: 14px;
    color: rgba(245, 242, 235, 0.6);
    line-height: 1.6;
    max-width: 280px;
}

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

.footer-nav-link {
    font-size: 14px;
    color: rgba(245, 242, 235, 0.7);
    transition: var(--transition-fast);
}

.footer-nav-link:hover {
    color: var(--cream);
    padding-left: 4px;
}

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

.footer-contact p {
    font-size: 14px;
    color: rgba(245, 242, 235, 0.6);
    line-height: 1.6;
}

.footer-contact a {
    color: var(--accent-gold-light);
    transition: var(--transition-fast);
}

.footer-contact a:hover {
    color: var(--cream);
    text-decoration: underline;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 13px;
    color: rgba(245, 242, 235, 0.4);
}

.footer-location {
    color: rgba(245, 242, 235, 0.3);
}

/* ============================================
   Scroll Animations
   ============================================ */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    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].aos-visible {
    opacity: 1;
    transform: translateY(0);
}

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

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
    .hero-layout {
        gap: 40px;
    }

    .about-grid,
    .craft-layout,
    .visit-layout,
    .contact-layout {
        gap: 48px;
    }

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

    .stat-card--wide {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }

    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

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

    .hero-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-visual {
        order: -1;
    }

    .hero-image-card {
        border-radius: var(--radius-lg);
    }

    .hero-stats {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

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

    .about,
    .offerings,
    .craft,
    .visit,
    .contact {
        padding: 80px 0;
    }

    .about-grid,
    .craft-layout,
    .visit-layout,
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image-col {
        order: -1;
    }

    .craft-image-small {
        right: -16px;
        bottom: -24px;
    }

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

    .form-row {
        grid-template-columns: 1fr;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .craft-stats-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .craft-stat-divider {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 90px 16px 50px;
    }

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

    .stat-card--wide {
        grid-column: span 1;
    }

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

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

    .contact-form-wrapper {
        padding: 24px;
    }

    .offering-card-content {
        padding: 24px 20px;
    }
}
