/* ============================================================
   CASA DIVANA — Main Stylesheet
   ============================================================ */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Raleway', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.8;
    color: #1A1A1A;
    background: #FFFFFF;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

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

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

h2 {
    font-size: 2.5rem;
    font-weight: 500;
}

h3 {
    font-size: 1.75rem;
    font-weight: 500;
}

h4 {
    font-size: 1.25rem;
    font-weight: 500;
}

p {
    margin-bottom: 1.2em;
}

p:last-child {
    margin-bottom: 0;
}

/* Pre-headings */
.pre-heading {
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: #C9A96E;
    display: block;
    margin-bottom: 16px;
}

/* Gold divider */
.gold-divider {
    width: 80px;
    height: 1px;
    background: #C9A96E;
    margin: 28px 0;
}

.gold-divider.centered {
    margin-left: auto;
    margin-right: auto;
}

.gold-divider.short {
    width: 60px;
}

.gold-divider.animate {
    width: 0;
    transition: width 1.2s ease;
}

.gold-divider.animate.visible {
    width: 80px;
}

.gold-divider.short.animate.visible {
    width: 60px;
}

/* === LAYOUT AND GRID === */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 60px;
}

section {
    padding: 120px 0;
}

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

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

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

.text-left {
    text-align: left;
}

/* Background colors */
.bg-white {
    background-color: #FFFFFF;
}

.bg-ivory {
    background-color: #F7F5F0;
    position: relative;
}

.bg-ivory::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(180, 155, 110, 0.015) 2px,
        rgba(180, 155, 110, 0.015) 4px
    ),
    repeating-linear-gradient(
        90deg,
        transparent,
        transparent 2px,
        rgba(180, 155, 110, 0.015) 2px,
        rgba(180, 155, 110, 0.015) 4px
    );
    pointer-events: none;
    z-index: 0;
}

.bg-ivory > * {
    position: relative;
    z-index: 1;
}

.bg-dark {
    background-color: #0A0A0A;
    color: #F7F5F0;
}

.bg-charcoal {
    background-color: #1A1A1A;
    color: #F7F5F0;
}

/* === BUTTONS === */
.btn-primary {
    display: inline-block;
    background: #C9A96E;
    color: #0A0A0A;
    padding: 18px 48px;
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    border: none;
    cursor: pointer;
    transition: background 0.4s ease, color 0.4s ease;
    outline: none;
}

.btn-primary:hover,
.btn-primary:focus-visible {
    background: #0A0A0A;
    color: #C9A96E;
}

.btn-primary:focus-visible {
    outline: 2px solid #C9A96E;
    outline-offset: 3px;
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: #C9A96E;
    border: 1px solid #C9A96E;
    padding: 18px 48px;
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    cursor: pointer;
    transition: background 0.4s ease, color 0.4s ease;
    outline: none;
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
    background: #C9A96E;
    color: #0A0A0A;
}

.btn-secondary:focus-visible {
    outline: 2px solid #C9A96E;
    outline-offset: 3px;
}

.btn-primary-dark {
    display: inline-block;
    background: #C9A96E;
    color: #FFFFFF;
    padding: 18px 48px;
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    border: none;
    cursor: pointer;
    transition: background 0.4s ease, color 0.4s ease;
}

.btn-primary-dark:hover {
    background: #FFFFFF;
    color: #0A0A0A;
}

.btn-secondary-dark {
    display: inline-block;
    background: transparent;
    color: #FFFFFF;
    border: 1px solid #FFFFFF;
    padding: 18px 48px;
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    cursor: pointer;
    transition: background 0.4s ease, color 0.4s ease;
}

.btn-secondary-dark:hover {
    background: #FFFFFF;
    color: #0A0A0A;
}

.btn-group {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

/* === SKIP TO CONTENT === */
.skip-to-content {
    position: absolute;
    top: -100px;
    left: 20px;
    background: #C9A96E;
    color: #0A0A0A;
    padding: 12px 24px;
    font-family: 'Raleway', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    z-index: 9999;
    transition: top 0.3s;
}

.skip-to-content:focus {
    top: 20px;
    outline: 2px solid #0A0A0A;
    outline-offset: 2px;
}

/* === HEADER AND NAVIGATION === */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 90px;
    z-index: 1000;
    transition: background 0.4s ease, box-shadow 0.4s ease;
    background: transparent;
}

.site-header.scrolled {
    background: #FFFFFF;
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.08);
}

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

/* Logo */
.logo {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-decoration: none;
}

.logo-name {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #FFFFFF;
    transition: color 0.4s ease;
    line-height: 1;
}

.logo-tagline {
    font-family: 'Raleway', sans-serif;
    font-weight: 300;
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #C9A96E;
    line-height: 1;
}

.site-header.scrolled .logo-name {
    color: #0A0A0A;
}

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

.nav-list {
    display: flex;
    gap: 36px;
    align-items: center;
}

.nav-link {
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #FFFFFF;
    position: relative;
    padding-bottom: 4px;
    transition: color 0.3s ease;
}

.site-header.scrolled .nav-link {
    color: #1A1A1A;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: #C9A96E;
    transition: width 0.3s ease;
}

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

.nav-link:focus-visible {
    outline: 2px solid #C9A96E;
    outline-offset: 3px;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger-line {
    width: 28px;
    height: 1px;
    background: #FFFFFF;
    transition: background 0.4s ease, transform 0.3s ease, opacity 0.3s ease;
    display: block;
}

.site-header.scrolled .hamburger-line {
    background: #0A0A0A;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: #0A0A0A;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

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

.mobile-menu-close {
    position: absolute;
    top: 30px;
    right: 30px;
    color: #FFFFFF;
    cursor: pointer;
    padding: 10px;
    transition: color 0.3s ease;
}

.mobile-menu-close:hover {
    color: #C9A96E;
}

.mobile-menu-close svg {
    width: 32px;
    height: 32px;
}

.mobile-nav-list {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.mobile-nav-link {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 500;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: color 0.3s ease;
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    transition: color 0.3s ease, opacity 0.4s ease, transform 0.4s ease;
}

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

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

.mobile-nav-link:hover {
    color: #C9A96E;
}

/* === HERO SECTIONS === */
.hero {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-full {
    height: 100vh;
    min-height: 700px;
}

.hero-70 {
    height: 70vh;
    min-height: 560px;
}

.hero-60 {
    height: 60vh;
    min-height: 480px;
}

.hero-50 {
    height: 50vh;
    min-height: 380px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform-origin: center;
    transition: transform 8s ease-out;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.42);
    z-index: 1;
}

.hero-overlay-dark::after {
    background: rgba(0, 0, 0, 0.55);
}

.hero-overlay-light::after {
    background: rgba(0, 0, 0, 0.28);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #FFFFFF;
    padding: 0 20px;
    max-width: 900px;
    width: 100%;
}

.hero-content h1 {
    color: #FFFFFF;
    margin-bottom: 0;
}

.hero-content h2 {
    color: #FFFFFF;
}

.hero-subtitle {
    font-family: 'Raleway', sans-serif;
    font-weight: 300;
    font-size: 1.1rem;
    color: #F7F5F0;
    max-width: 560px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero-subtitle-small {
    font-family: 'Raleway', sans-serif;
    font-weight: 300;
    font-size: 0.95rem;
    color: rgba(247, 245, 240, 0.85);
    max-width: 500px;
    margin: 0 auto 36px;
}

.hero-divider {
    width: 80px;
    height: 1px;
    background: #C9A96E;
    margin: 28px auto;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Raleway', sans-serif;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

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

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); transform-origin: top; }
    50% { opacity: 0.4; transform: scaleY(0.6); transform-origin: top; }
}

/* === SECTION HEADINGS === */
.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-header h2 {
    color: #1A1A1A;
}

.section-header-dark h2,
.section-header-dark .pre-heading {
    color: #F7F5F0;
}

.section-header-dark .pre-heading {
    color: #C9A96E;
}

.section-header-dark .gold-divider {
    background: #C9A96E;
}

/* === IMAGE WRAPPER WITH HOVER === */
.img-wrapper {
    overflow: hidden;
    position: relative;
}

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

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

/* === IMAGE WITH BORDER OFFSET === */
.img-offset-container {
    position: relative;
    padding: 20px 0 0 20px;
}

.img-offset-container .img-wrapper {
    position: relative;
    z-index: 2;
}

.img-offset-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    border: 1px solid #C9A96E;
    z-index: 1;
}

/* === BRAND INTRO SECTION === */
.brand-intro .grid-2 {
    grid-template-columns: 55fr 45fr;
    gap: 80px;
}

.brand-intro-image {
    aspect-ratio: 4/5;
}

.brand-intro-text h2 {
    margin-bottom: 0;
}

.brand-intro-text p {
    color: #6B6B6B;
    font-size: 0.95rem;
}

/* === COLLECTION CARDS === */
.collections-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.collection-card {
    display: flex;
    flex-direction: column;
}

.collection-card-image {
    aspect-ratio: 4/5;
    overflow: hidden;
    margin-bottom: 24px;
}

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

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

.collection-card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.collection-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 12px;
    color: #1A1A1A;
}

.collection-card-desc {
    font-family: 'Raleway', sans-serif;
    font-size: 0.875rem;
    color: #6B6B6B;
    line-height: 1.8;
    flex: 1;
    margin-bottom: 20px;
}

.collection-card-link {
    font-family: 'Raleway', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #C9A96E;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.collection-card-link:hover {
    gap: 14px;
}

.collection-card-link svg {
    width: 14px;
    height: 14px;
    stroke: #C9A96E;
    transition: transform 0.3s ease;
}

.collection-card-link:hover svg {
    transform: translateX(4px);
}

/* === PROCESS STEPS (Dark section) === */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.process-step {
    display: flex;
    flex-direction: column;
}

.process-step-image {
    aspect-ratio: 1/1;
    overflow: hidden;
    margin-bottom: 24px;
    position: relative;
}

.process-step-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: grayscale(20%);
}

.process-step:hover .process-step-image img {
    transform: scale(1.03);
}

.process-step-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.75rem;
    color: #C9A96E;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block;
}

.process-step-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 500;
    color: #F7F5F0;
    margin-bottom: 12px;
}

.process-step-desc {
    font-family: 'Raleway', sans-serif;
    font-size: 0.85rem;
    color: rgba(247, 245, 240, 0.65);
    line-height: 1.8;
}

/* === BESPOKE SECTION === */
.bespoke-section .grid-2 {
    grid-template-columns: 45fr 55fr;
}

.bespoke-image {
    aspect-ratio: 4/5;
    overflow: hidden;
}

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

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

.bespoke-features {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin: 36px 0;
}

.bespoke-feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.bespoke-feature-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #C9A96E;
    color: #C9A96E;
}

.bespoke-feature-icon svg {
    width: 18px;
    height: 18px;
    stroke: #C9A96E;
}

.bespoke-feature-content h4 {
    font-size: 1.05rem;
    margin-bottom: 6px;
    color: #1A1A1A;
}

.bespoke-feature-content p {
    font-size: 0.875rem;
    color: #6B6B6B;
    margin: 0;
}

/* === TESTIMONIALS === */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: #F7F5F0;
    padding: 48px 40px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
}

.testimonial-quote-mark {
    font-family: 'Playfair Display', serif;
    font-size: 6rem;
    line-height: 0.8;
    color: #C9A96E;
    opacity: 0.35;
    margin-bottom: 20px;
    display: block;
    font-style: italic;
}

.testimonial-text {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1rem;
    line-height: 1.8;
    color: #1A1A1A;
    margin-bottom: 28px;
}

.testimonial-divider {
    width: 40px;
    height: 1px;
    background: #C9A96E;
    margin-bottom: 20px;
}

.testimonial-author-name {
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #1A1A1A;
}

.testimonial-author-city {
    font-family: 'Raleway', sans-serif;
    font-weight: 300;
    font-size: 0.8rem;
    color: #6B6B6B;
}

/* === CTA SECTIONS === */
.cta-section {
    padding: 100px 0;
}

.cta-content {
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
}

.cta-content h2 {
    color: #F7F5F0;
    margin-bottom: 20px;
}

.cta-content p {
    color: rgba(247, 245, 240, 0.7);
    font-size: 0.95rem;
    margin-bottom: 44px;
}

.cta-content .pre-heading {
    color: #C9A96E;
}

/* === VALUE CARDS === */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.value-card {
    text-align: center;
    padding: 48px 32px;
    background: #FFFFFF;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.value-card:hover {
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.value-card-icon {
    width: 52px;
    height: 52px;
    border: 1px solid #C9A96E;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: #C9A96E;
}

.value-card-icon svg {
    width: 22px;
    height: 22px;
    stroke: #C9A96E;
}

.value-card h4 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: #1A1A1A;
}

.value-card p {
    font-size: 0.875rem;
    color: #6B6B6B;
    line-height: 1.8;
    margin: 0;
}

/* === WORKSHOP GRID === */
.workshop-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
}

.workshop-grid-item {
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
    cursor: pointer;
}

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

.workshop-grid-item:hover img {
    transform: scale(1.06);
}

.workshop-grid-overlay {
    position: absolute;
    inset: 0;
    background: rgba(201, 169, 110, 0);
    transition: background 0.4s ease;
    display: flex;
    align-items: flex-end;
    padding: 24px;
}

.workshop-grid-item:hover .workshop-grid-overlay {
    background: rgba(201, 169, 110, 0.55);
}

.workshop-grid-caption {
    font-family: 'Raleway', sans-serif;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #FFFFFF;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.workshop-grid-item:hover .workshop-grid-caption {
    opacity: 1;
    transform: translateY(0);
}

/* === STATS / NUMBERS === */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item {
    padding: 48px 20px;
}

.stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-weight: 600;
    color: #C9A96E;
    line-height: 1;
    margin-bottom: 8px;
    display: block;
}

.stat-label {
    font-family: 'Raleway', sans-serif;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #6B6B6B;
}

/* === COLLECTIONS PAGE - ALTERNATING BLOCKS === */
.collection-block {
    padding: 100px 0;
    border-bottom: 1px solid #D4C5A9;
}

.collection-block:last-child {
    border-bottom: none;
}

.collection-block-grid {
    display: grid;
    grid-template-columns: 55fr 45fr;
    gap: 80px;
    align-items: center;
}

.collection-block-grid.reversed {
    grid-template-columns: 45fr 55fr;
}

.collection-block-grid.reversed .collection-block-image {
    order: 2;
}

.collection-block-grid.reversed .collection-block-text {
    order: 1;
}

.collection-block-image {
    aspect-ratio: 4/5;
    overflow: hidden;
}

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

.collection-block-image:hover img {
    transform: scale(1.03);
}

.collection-block-specs {
    margin: 28px 0;
    border-top: 1px solid #D4C5A9;
    border-bottom: 1px solid #D4C5A9;
    padding: 24px 0;
}

.collection-block-specs dl {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 12px 20px;
}

.collection-block-specs dt {
    font-family: 'Raleway', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #6B6B6B;
}

.collection-block-specs dd {
    font-family: 'Raleway', sans-serif;
    font-size: 0.85rem;
    color: #1A1A1A;
}

/* Filter bar */
.filter-bar {
    padding: 48px 0;
    border-bottom: 1px solid #D4C5A9;
}

.filter-links {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: center;
}

.filter-link {
    font-family: 'Raleway', sans-serif;
    font-size: 0.75rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #6B6B6B;
    position: relative;
    padding-bottom: 4px;
    transition: color 0.3s ease;
    cursor: pointer;
}

.filter-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: #C9A96E;
    transition: width 0.3s ease;
}

.filter-link:hover,
.filter-link.active {
    color: #1A1A1A;
}

.filter-link:hover::after,
.filter-link.active::after {
    width: 100%;
}

/* === TIMELINE (Artigianalità) === */
.timeline {
    position: relative;
    padding: 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: #D4C5A9;
}

.timeline-item {
    display: grid;
    grid-template-columns: 80px 1fr 1fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 80px;
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 8px;
    position: relative;
    z-index: 2;
}

.timeline-dot {
    width: 10px;
    height: 10px;
    background: #C9A96E;
    border-radius: 50%;
    flex-shrink: 0;
}

.timeline-step-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.7rem;
    color: #C9A96E;
    letter-spacing: 0.15em;
    margin-top: 8px;
    text-transform: uppercase;
}

.timeline-content h3 {
    font-size: 1.4rem;
    margin-bottom: 14px;
    color: #1A1A1A;
}

.timeline-content p {
    font-size: 0.9rem;
    color: #6B6B6B;
    margin: 0;
}

.timeline-image {
    aspect-ratio: 4/3;
    overflow: hidden;
}

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

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

/* === MATERIAL CARDS === */
.material-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.material-card {
    display: flex;
    flex-direction: column;
    background: #FFFFFF;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}

.material-card-image {
    aspect-ratio: 4/3;
    overflow: hidden;
}

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

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

.material-card-body {
    padding: 32px;
}

.material-card-body h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: #1A1A1A;
}

.material-card-body p {
    font-size: 0.875rem;
    color: #6B6B6B;
    margin: 0;
    line-height: 1.8;
}

/* Quality promises */
.quality-promises {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    border: 1px solid rgba(201, 169, 110, 0.3);
}

.quality-promise {
    padding: 60px 48px;
    text-align: center;
    border-right: 1px solid rgba(201, 169, 110, 0.3);
}

.quality-promise:last-child {
    border-right: none;
}

.quality-promise-icon {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: #C9A96E;
    margin-bottom: 20px;
    display: block;
    font-style: italic;
}

.quality-promise h3 {
    font-size: 1.3rem;
    color: #F7F5F0;
    margin-bottom: 14px;
}

.quality-promise p {
    font-size: 0.875rem;
    color: rgba(247, 245, 240, 0.6);
    margin: 0;
}

/* === BESPOKE PROCESS STEPS === */
.process-steps {
    display: flex;
    gap: 0;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: calc(10% + 20px);
    right: calc(10% + 20px);
    height: 1px;
    background: #D4C5A9;
    z-index: 0;
}

.bespoke-step {
    flex: 1;
    text-align: center;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.bespoke-step-number {
    width: 80px;
    height: 80px;
    background: #FFFFFF;
    border: 1px solid #C9A96E;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    position: relative;
    z-index: 2;
    transition: background 0.4s ease;
}

.bespoke-step:hover .bespoke-step-number {
    background: #C9A96E;
}

.bespoke-step-number svg {
    width: 24px;
    height: 24px;
    stroke: #C9A96E;
    transition: stroke 0.4s ease;
}

.bespoke-step:hover .bespoke-step-number svg {
    stroke: #FFFFFF;
}

.bespoke-step-num-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.65rem;
    color: #C9A96E;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}

.bespoke-step h4 {
    font-size: 1rem;
    color: #1A1A1A;
    margin-bottom: 10px;
}

.bespoke-step p {
    font-size: 0.8rem;
    color: #6B6B6B;
    margin: 0;
    line-height: 1.7;
}

/* === CUSTOMIZATION OPTIONS === */
.customization-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.customization-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.customization-item {
    padding: 24px 0;
    border-bottom: 1px solid #D4C5A9;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.customization-item:last-child {
    border-bottom: none;
}

.customization-item-dot {
    width: 8px;
    height: 8px;
    background: #C9A96E;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 8px;
}

.customization-item h4 {
    font-size: 1rem;
    color: #1A1A1A;
    margin-bottom: 6px;
}

.customization-item p {
    font-size: 0.875rem;
    color: #6B6B6B;
    margin: 0;
}

.customization-image {
    aspect-ratio: 3/4;
    overflow: hidden;
    position: relative;
}

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

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

/* === PRICING CARDS === */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.pricing-card {
    text-align: center;
    padding: 48px 32px;
    border: 1px solid #D4C5A9;
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.pricing-card:hover {
    border-color: #C9A96E;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.07);
}

.pricing-card-icon {
    width: 52px;
    height: 52px;
    border: 1px solid #C9A96E;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.pricing-card-icon svg {
    width: 22px;
    height: 22px;
    stroke: #C9A96E;
}

.pricing-card h4 {
    font-size: 1.1rem;
    color: #1A1A1A;
    margin-bottom: 12px;
}

.pricing-card p {
    font-size: 0.875rem;
    color: #6B6B6B;
    margin: 0;
}

/* === SU MISURA CTA WITH FORM === */
.su-misura-cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.su-misura-cta-left h2 {
    color: #F7F5F0;
    margin-bottom: 20px;
}

.su-misura-cta-left p {
    color: rgba(247, 245, 240, 0.7);
    font-size: 0.95rem;
    margin-bottom: 32px;
}

.cta-contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    color: rgba(247, 245, 240, 0.85);
    font-size: 0.9rem;
}

.cta-contact-icon {
    color: #C9A96E;
    flex-shrink: 0;
}

.cta-contact-icon svg {
    width: 18px;
    height: 18px;
    stroke: #C9A96E;
}

/* === CONTACT PAGE === */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.contact-card {
    text-align: center;
    padding: 56px 40px;
    border: 1px solid #D4C5A9;
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.contact-card:hover {
    border-color: #C9A96E;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.07);
}

.contact-card-icon {
    width: 60px;
    height: 60px;
    border: 1px solid #C9A96E;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
}

.contact-card-icon svg {
    width: 24px;
    height: 24px;
    stroke: #C9A96E;
}

.contact-card h3 {
    font-size: 1.3rem;
    margin-bottom: 16px;
    color: #1A1A1A;
}

.contact-card p {
    font-size: 0.875rem;
    color: #6B6B6B;
    margin: 0;
    line-height: 1.8;
}

.contact-card a {
    color: #1A1A1A;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: #C9A96E;
}

/* Map section */
.map-section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.map-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: #E8E4DC;
    position: relative;
    overflow: hidden;
    border: 1px solid #D4C5A9;
}

.map-placeholder iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.directions-content h3 {
    font-size: 1.5rem;
    margin-bottom: 28px;
    color: #1A1A1A;
}

.direction-group {
    margin-bottom: 28px;
}

.direction-group h4 {
    font-size: 0.9rem;
    font-weight: 500;
    color: #1A1A1A;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.direction-group h4 svg {
    width: 16px;
    height: 16px;
    stroke: #C9A96E;
}

.direction-group p {
    font-size: 0.875rem;
    color: #6B6B6B;
    margin: 0;
}

/* Contact form section */
.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-form-info h2 {
    margin-bottom: 16px;
}

.contact-form-info p {
    color: #6B6B6B;
    font-size: 0.95rem;
    margin-bottom: 40px;
}

/* Showroom gallery */
.showroom-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
}

.showroom-gallery-item {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

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

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

.showroom-gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(201, 169, 110, 0);
    transition: background 0.4s ease;
}

.showroom-gallery-item:hover .showroom-gallery-overlay {
    background: rgba(201, 169, 110, 0.35);
}

/* === FORMS === */
.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-family: 'Raleway', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #6B6B6B;
    margin-bottom: 8px;
}

.form-label-dark {
    color: rgba(247, 245, 240, 0.6);
}

.form-control {
    width: 100%;
    padding: 14px 20px;
    font-family: 'Raleway', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    color: #1A1A1A;
    background: transparent;
    border: 1px solid #D4C5A9;
    outline: none;
    transition: border-color 0.3s ease;
    -webkit-appearance: none;
    appearance: none;
}

.form-control:focus {
    border-color: #C9A96E;
    outline: 2px solid rgba(201, 169, 110, 0.25);
    outline-offset: 0px;
}

.form-control-dark {
    color: #F7F5F0;
    border-color: rgba(247, 245, 240, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

.form-control-dark:focus {
    border-color: #C9A96E;
}

.form-control-dark::placeholder {
    color: rgba(247, 245, 240, 0.35);
}

.form-control::placeholder {
    color: #AAAAAA;
}

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

select.form-control {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C9A96E' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

select.form-control-dark {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C9A96E' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
}

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

/* Checkbox */
.form-checkbox-group {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 24px;
}

.form-checkbox {
    width: 18px;
    height: 18px;
    border: 1px solid #D4C5A9;
    background: transparent;
    flex-shrink: 0;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    position: relative;
    margin-top: 3px;
    outline: none;
    transition: border-color 0.3s ease;
}

.form-checkbox:checked {
    background: #C9A96E;
    border-color: #C9A96E;
}

.form-checkbox:checked::after {
    content: '';
    position: absolute;
    left: 4px;
    top: 2px;
    width: 6px;
    height: 9px;
    border: 1.5px solid #FFFFFF;
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
}

.form-checkbox:focus-visible {
    outline: 2px solid #C9A96E;
    outline-offset: 3px;
}

.form-checkbox-dark {
    border-color: rgba(247, 245, 240, 0.3);
}

.form-checkbox-label {
    font-family: 'Raleway', sans-serif;
    font-size: 0.8rem;
    color: #6B6B6B;
    line-height: 1.6;
    cursor: pointer;
}

.form-checkbox-label-dark {
    color: rgba(247, 245, 240, 0.55);
}

.form-checkbox-label a {
    color: #C9A96E;
    text-decoration: underline;
    text-decoration-color: rgba(201, 169, 110, 0.4);
}

/* Error messages */
.form-error {
    display: block;
    font-family: 'Raleway', sans-serif;
    font-weight: 300;
    font-size: 0.8rem;
    color: #C0392B;
    margin-top: 6px;
}

/* Success/Error messages */
.form-message {
    padding: 16px 24px;
    margin-bottom: 24px;
    font-family: 'Raleway', sans-serif;
    font-size: 0.875rem;
    border: 1px solid;
}

.form-message.success {
    background: rgba(39, 174, 96, 0.08);
    border-color: #27AE60;
    color: #1E8449;
}

.form-message.error {
    background: rgba(192, 57, 43, 0.08);
    border-color: #C0392B;
    color: #C0392B;
}

/* Honeypot */
.honeypot-field {
    display: none !important;
    visibility: hidden;
}

/* === FOOTER === */
.site-footer {
    background: #0A0A0A;
    color: #F7F5F0;
    padding-top: 100px;
    padding-bottom: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.2fr 1.2fr;
    gap: 60px;
}

.footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #F7F5F0;
    margin-bottom: 20px;
}

.footer-brand-desc {
    font-family: 'Raleway', sans-serif;
    font-weight: 300;
    font-size: 0.875rem;
    color: #6B6B6B;
    line-height: 1.8;
    margin-bottom: 24px;
}

.footer-legal p {
    font-family: 'Raleway', sans-serif;
    font-size: 0.75rem;
    color: #4A4A4A;
    margin-bottom: 4px;
    line-height: 1.6;
}

.footer-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-weight: 500;
    color: #C9A96E;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 24px;
}

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

.footer-links a {
    font-family: 'Raleway', sans-serif;
    font-size: 0.85rem;
    font-weight: 300;
    color: #6B6B6B;
    transition: color 0.3s ease;
    display: inline-block;
    position: relative;
    padding-bottom: 2px;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: #C9A96E;
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: #C9A96E;
}

.footer-links a:hover::after {
    width: 100%;
}

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

.footer-contact-list li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.footer-contact-icon {
    color: #C9A96E;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact-icon svg {
    width: 16px;
    height: 16px;
    stroke: #C9A96E;
}

.footer-contact-list span:last-child {
    font-family: 'Raleway', sans-serif;
    font-size: 0.85rem;
    font-weight: 300;
    color: #6B6B6B;
    line-height: 1.7;
}

.footer-contact-list a {
    color: #6B6B6B;
    transition: color 0.3s ease;
}

.footer-contact-list a:hover {
    color: #C9A96E;
}

.footer-hours-title {
    font-family: 'Raleway', sans-serif;
    font-size: 0.75rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #4A4A4A;
    margin-bottom: 14px;
}

.footer-hours-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 32px;
}

.footer-hours-list li {
    display: flex;
    justify-content: space-between;
    font-family: 'Raleway', sans-serif;
    font-size: 0.85rem;
    font-weight: 300;
    color: #6B6B6B;
}

.footer-cta-btn {
    font-size: 0.7rem;
    padding: 14px 32px;
}

.footer-divider {
    height: 1px;
    background: rgba(212, 197, 169, 0.2);
    margin: 60px 0 0;
}

.footer-lower {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 60px;
}

.footer-copyright {
    font-family: 'Raleway', sans-serif;
    font-size: 0.75rem;
    font-weight: 300;
    color: #4A4A4A;
    margin: 0;
}

.footer-legal-links {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-legal-links li {
    font-family: 'Raleway', sans-serif;
    font-size: 0.75rem;
    font-weight: 300;
}

.footer-legal-links a {
    color: #4A4A4A;
    transition: color 0.3s ease;
}

.footer-legal-links a:hover {
    color: #C9A96E;
}

.footer-legal-separator {
    color: #C9A96E;
    font-size: 0.6rem;
}

/* === LEGAL PAGES === */
.legal-page {
    padding: 160px 0 100px;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 12px;
    text-transform: none;
    letter-spacing: 0;
}

.legal-content .last-updated {
    font-size: 0.8rem;
    color: #6B6B6B;
    margin-bottom: 48px;
    display: block;
}

.legal-content h2 {
    font-size: 1.4rem;
    margin-top: 48px;
    margin-bottom: 16px;
    color: #1A1A1A;
}

.legal-content h3 {
    font-size: 1.1rem;
    margin-top: 32px;
    margin-bottom: 12px;
    color: #1A1A1A;
}

.legal-content p {
    font-size: 0.9rem;
    color: #4A4A4A;
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-content ul, .legal-content ol {
    margin: 16px 0 24px 24px;
}

.legal-content ul {
    list-style: disc;
}

.legal-content ol {
    list-style: decimal;
}

.legal-content li {
    font-size: 0.9rem;
    color: #4A4A4A;
    line-height: 1.8;
    margin-bottom: 8px;
}

.legal-content a {
    color: #C9A96E;
    text-decoration: underline;
    text-decoration-color: rgba(201, 169, 110, 0.4);
}

.legal-divider {
    height: 1px;
    background: #D4C5A9;
    margin: 48px 0;
}

/* === UTILITIES === */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

.mb-0 { margin-bottom: 0; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.mb-60 { margin-bottom: 60px; }

.mt-0 { margin-top: 0; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }
.mt-48 { margin-top: 48px; }

.color-gold { color: #C9A96E; }
.color-muted { color: #6B6B6B; }
.color-light { color: #F7F5F0; }
.color-dark { color: #1A1A1A; }

/* === ANIMATIONS === */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-delay-1 { transition-delay: 0.1s; }
.animate-delay-2 { transition-delay: 0.2s; }
.animate-delay-3 { transition-delay: 0.3s; }
.animate-delay-4 { transition-delay: 0.4s; }
.animate-delay-5 { transition-delay: 0.5s; }

/* Focus styles */
*:focus-visible {
    outline: 2px solid #C9A96E;
    outline-offset: 3px;
}

/* Selection */
::selection {
    background: rgba(201, 169, 110, 0.25);
    color: #1A1A1A;
}
