/* ============================================
   Cassandra's Jewelry Imports — Custom Styles
   ============================================ */

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

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

body {
    position: relative;
    min-height: 100vh;
}

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

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

ul {
    list-style: none;
}

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

@media (min-width: 768px) {
    .container {
        padding: 0 48px;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 64px;
    }
}

/* --- Section Base --- */
.section {
    padding: 100px 0;
}

@media (min-width: 768px) {
    .section {
        padding: 130px 0;
    }
}

/* --- Section Header --- */
.section-header {
    max-width: 720px;
    margin-bottom: 64px;
}

.section-header.center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #e34c29;
    margin-bottom: 16px;
    position: relative;
    padding-left: 28px;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 2px;
    background: #e34c29;
}

.section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    max-width: 560px;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-family: 'Space Grotesk', system-ui, sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 60px;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: #e34c29;
    color: #fff;
}

.btn-primary:hover {
    background: #c73a1d;
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(227, 76, 41, 0.35);
}

.btn-secondary {
    background: transparent;
    color: #1a1a1a;
    border: 2px solid #1a1a1a;
}

.btn-secondary:hover {
    background: #1a1a1a;
    color: #fff;
    transform: translateY(-2px);
}

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

/* --- Fixed Background Geometric Shapes --- */
.geo-circle {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.geo-circle--1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(227, 76, 41, 0.06) 0%, transparent 70%);
    top: -100px;
    right: -200px;
    animation: float-slow 20s ease-in-out infinite;
}

.geo-circle--2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(232, 213, 168, 0.2) 0%, transparent 70%);
    bottom: 10%;
    left: -100px;
    animation: float-slow 15s ease-in-out infinite reverse;
}

.geo-rect {
    position: fixed;
    pointer-events: none;
    z-index: 0;
}

.geo-rect--1 {
    width: 120px;
    height: 120px;
    background: rgba(227, 76, 41, 0.05);
    top: 30%;
    left: 5%;
    transform: rotate(45deg);
    animation: float-slow 18s ease-in-out infinite;
}

.geo-rect--2 {
    width: 80px;
    height: 80px;
    background: rgba(232, 213, 168, 0.3);
    bottom: 25%;
    right: 8%;
    transform: rotate(20deg);
    animation: float-slow 12s ease-in-out infinite reverse;
}

.geo-triangle {
    position: fixed;
    width: 0;
    height: 0;
    border-left: 60px solid transparent;
    border-right: 60px solid transparent;
    border-bottom: 104px solid rgba(227, 76, 41, 0.04);
    top: 50%;
    right: 3%;
    transform: rotate(-15deg);
    animation: float-slow 22s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.geo-dots {
    position: fixed;
    width: 100px;
    height: 100px;
    bottom: 15%;
    left: 3%;
    background-image: radial-gradient(circle, rgba(227, 76, 41, 0.15) 1px, transparent 1px);
    background-size: 12px 12px;
    pointer-events: none;
    z-index: 0;
    animation: float-slow 16s ease-in-out infinite reverse;
}

@keyframes float-slow {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(3deg); }
}

/* --- Navigation --- */
#navbar {
    background: rgba(250, 246, 241, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(227, 76, 41, 0.08);
    transition: all 0.4s ease;
}

#navbar.scrolled {
    background: rgba(250, 246, 241, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
}

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

@media (min-width: 768px) {
    .nav-inner {
        padding: 0 48px;
    }
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    font-size: 1.15rem;
    color: #1a1a1a;
    z-index: 51;
}

.nav-logo-icon {
    color: #e34c29;
}

.nav-logo-text {
    letter-spacing: -0.01em;
}

.nav-links {
    display: none;
    align-items: center;
    gap: 8px;
}

@media (min-width: 1024px) {
    .nav-links {
        display: flex;
    }
}

.nav-link {
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #444;
    border-radius: 8px;
    transition: all 0.25s ease;
    position: relative;
}

.nav-link:hover {
    color: #e34c29;
    background: rgba(227, 76, 41, 0.06);
}

.nav-cta {
    padding: 10px 24px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #e34c29;
    border: 2px solid #e34c29;
    border-radius: 60px;
    margin-left: 8px;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: #e34c29;
    color: #fff;
    transform: translateY(-1px);
}

/* Hamburger */
.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 51;
}

@media (min-width: 1024px) {
    .nav-toggle {
        display: none;
    }
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background: #1a1a1a;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

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

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

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

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: rgba(250, 246, 241, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 50;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.mobile-menu.open {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu a {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a1a;
    padding: 12px 24px;
    border-radius: 12px;
    transition: all 0.25s ease;
}

.mobile-menu a:hover {
    color: #e34c29;
    background: rgba(227, 76, 41, 0.06);
}

/* --- Hero Section --- */
.hero-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 120px 24px 80px;
    overflow: hidden;
}

/* Hero Geometric Background */
.hero-geo {
    position: absolute;
    pointer-events: none;
}

.hero-geo--left {
    width: 320px;
    height: 320px;
    background: #e34c29;
    top: 12%;
    left: -80px;
    border-radius: 50%;
    opacity: 0.08;
}

.hero-geo--right {
    width: 200px;
    height: 200px;
    background: #e8d5a8;
    bottom: 15%;
    right: 5%;
    border-radius: 32px;
    transform: rotate(30deg);
    opacity: 0.3;
}

.hero-geo--accent {
    width: 100px;
    height: 100px;
    background: #e34c29;
    top: 20%;
    right: 15%;
    border-radius: 20px;
    transform: rotate(45deg);
    opacity: 0.12;
}

/* Hero Circles */
.hero-circle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.hero-circle--1 {
    width: 500px;
    height: 500px;
    border: 2px solid rgba(227, 76, 41, 0.08);
    bottom: -150px;
    left: -150px;
    animation: spin-slow 40s linear infinite;
}

.hero-circle--2 {
    width: 300px;
    height: 300px;
    border: 1px solid rgba(232, 213, 168, 0.4);
    top: 10%;
    right: -50px;
    animation: spin-slow 30s linear infinite reverse;
}

@keyframes spin-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 8px 20px 8px 16px;
    background: rgba(227, 76, 41, 0.08);
    border: 1px solid rgba(227, 76, 41, 0.15);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #c73a1d;
    margin-bottom: 32px;
}

.hero-badge-dot {
    width: 6px;
    height: 6px;
    background: #e34c29;
    border-radius: 50%;
}

.hero-headline {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.25rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.08;
    color: #1a1a1a;
    margin-bottom: 28px;
    letter-spacing: -0.02em;
}

.hero-headline-accent {
    color: #e34c29;
    font-style: italic;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.75;
    color: #555;
    max-width: 600px;
    margin: 0 auto 40px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-bottom: 64px;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

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

.hero-stat-number {
    display: block;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
}

.hero-stat-label {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #888;
    margin-top: 4px;
}

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

/* Hero Scroll */
.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #888;
    animation: bob 2s ease-in-out infinite;
}

.hero-scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, #e34c29, transparent);
}

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

/* --- Marquee --- */
.marquee-strip {
    background: #e34c29;
    padding: 14px 0;
    overflow: hidden;
    position: relative;
    z-index: 10;
}

.marquee-track {
    display: flex;
    gap: 48px;
    animation: marquee 30s linear infinite;
    white-space: nowrap;
}

.marquee-item {
    font-family: 'Space Grotesk', system-ui, sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    flex-shrink: 0;
}

.geo-diamond {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
    transform: rotate(45deg);
    flex-shrink: 0;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* --- Collections Section --- */
.collections-section {
    background: #faf6f1;
}

.collections-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .collections-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
    }
}

.collection-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    min-height: 480px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.collection-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.15);
}

.collection-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.collection-card:hover .collection-card-bg {
    transform: scale(1.08);
}

.collection-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 26, 26, 0.85) 0%, rgba(26, 26, 26, 0.3) 50%, transparent 100%);
}

.collection-card-geo {
    position: absolute;
    top: 24px;
    right: 24px;
    pointer-events: none;
}

.geo-circle-small {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(227, 76, 41, 0.7);
    display: block;
}

.geo-circle--terra {
    background: rgba(227, 76, 41, 0.85);
}

.geo-circle--sand {
    background: rgba(232, 213, 168, 0.8);
}

.geo-square-small {
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    transform: rotate(20deg);
    margin-top: -12px;
    margin-left: 20px;
}

.geo-square--terra {
    background: rgba(227, 76, 41, 0.6);
}

.collection-card-content {
    position: relative;
    z-index: 2;
    padding: 32px;
}

.collection-card-category {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
}

.collection-card-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.2;
}

.collection-card-desc {
    font-size: 0.9rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 20px;
    max-width: 300px;
}

.collection-card-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s ease;
}

.collection-card:hover .collection-card-arrow {
    background: #e34c29;
    transform: translate(4px, -4px);
}

/* --- About Section --- */
.about-section {
    background: #faf6f1;
    overflow: hidden;
}

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

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 80px;
    }
}

/* About Visual */
.about-visual {
    position: relative;
}

.about-img-main {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.about-img-main img {
    width: 100%;
    height: 650px;
    object-fit: cover;
    display: block;
}

.about-img-accent {
    position: absolute;
    bottom: -40px;
    right: -30px;
    width: 55%;
    border-radius: 16px;
    overflow: hidden;
    z-index: 3;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 4px solid #faf6f1;
}

.about-img-accent img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

.about-geo-block {
    position: absolute;
    pointer-events: none;
}

.about-geo--terra {
    width: 120px;
    height: 120px;
    background: #e34c29;
    top: -30px;
    left: -30px;
    border-radius: 24px;
    transform: rotate(-15deg);
    opacity: 0.15;
    z-index: 1;
}

.about-geo--sand {
    width: 80px;
    height: 80px;
    background: #e8d5a8;
    bottom: 40%;
    right: -20px;
    border-radius: 50%;
    opacity: 0.4;
    z-index: 1;
}

.about-badge {
    position: absolute;
    top: 24px;
    left: -20px;
    background: #e34c29;
    color: #fff;
    padding: 12px 20px;
    border-radius: 12px;
    z-index: 4;
    box-shadow: 0 8px 24px rgba(227, 76, 41, 0.3);
}

.about-badge-number {
    display: block;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.8;
}

.about-badge-text {
    display: block;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.1rem;
    font-weight: 700;
}

/* About Content */
.about-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, #e34c29, #e8d5a8);
    border-radius: 3px;
    margin: 24px 0;
}

.about-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

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

.about-value {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.about-value-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(227, 76, 41, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e34c29;
}

.about-value-title {
    display: block;
    font-weight: 600;
    font-size: 1rem;
    color: #1a1a1a;
    margin-bottom: 2px;
}

.about-value-desc {
    font-size: 0.88rem;
    color: #777;
}

/* --- Craft Section --- */
.craft-section {
    background: #1a1a1a;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.craft-bg-shape {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(227, 76, 41, 0.12) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    pointer-events: none;
}

.craft-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 64px;
    align-items: start;
}

@media (min-width: 1024px) {
    .craft-grid {
        grid-template-columns: 1fr 1fr;
        gap: 80px;
    }
}

.craft-title {
    color: #fff;
}

.craft-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 20px;
}

.craft-services {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 768px) {
    .craft-services {
        grid-template-columns: repeat(2, 1fr);
    }
}

.service-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(227, 76, 41, 0.3);
    transform: translateY(-4px);
}

.service-card--terra {
    background: rgba(227, 76, 41, 0.1);
    border-color: rgba(227, 76, 41, 0.2);
}

.service-card-number {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 3rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.06);
    line-height: 1;
    margin-bottom: 12px;
}

.service-card-geo {
    position: absolute;
    top: 20px;
    right: 20px;
    pointer-events: none;
}

.service-card-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.service-card-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.55);
}

/* --- Visit Section --- */
.visit-section {
    background: #faf6f1;
}

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

@media (min-width: 1024px) {
    .visit-grid {
        grid-template-columns: 1fr 1fr;
        gap: 80px;
    }
}

.visit-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 40px;
}

.visit-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.visit-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.visit-detail-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    background: rgba(227, 76, 41, 0.08);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e34c29;
}

.visit-detail-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 4px;
}

.visit-detail-value {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    color: #1a1a1a;
    line-height: 1.5;
}

.hover-link {
    transition: color 0.2s ease;
}

.hover-link:hover {
    color: #e34c29;
}

/* Visit Map */
.visit-visual {
    position: relative;
}

.visit-map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    height: 450px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

.visit-map-geo {
    position: absolute;
    bottom: -20px;
    right: -20px;
    z-index: 3;
}

.geo-diamond {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #e34c29;
    transform: rotate(45deg);
    opacity: 0.2;
}

.geo-diamond--terra {
    opacity: 0.4;
}

/* --- Contact Section --- */
.contact-section {
    background: #e34c29;
    position: relative;
    overflow: hidden;
}

.contact-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.contact-shape {
    position: absolute;
    border-radius: 50%;
}

.contact-shape--1 {
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    top: -100px;
    left: -100px;
}

.contact-shape--2 {
    width: 250px;
    height: 250px;
    background: rgba(232, 213, 168, 0.1);
    bottom: -80px;
    right: 10%;
}

.contact-shape--3 {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.06);
    top: 20%;
    right: 5%;
    border-radius: 24px;
    transform: rotate(30deg);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 64px;
    align-items: start;
    position: relative;
    z-index: 2;
}

@media (min-width: 1024px) {
    .contact-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 80px;
    }
}

.contact-title {
    color: #fff;
}

.contact-title .text-terra-600 {
    color: #fff;
}

.contact-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
}

.contact-quick-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 40px;
}

.contact-quick-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.2s ease;
}

.contact-quick-link:hover {
    color: #fff;
    transform: translateX(4px);
}

/* Contact Form */
.contact-form {
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.15);
}

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

.form-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 14px 18px;
    font-family: 'Space Grotesk', system-ui, sans-serif;
    font-size: 1rem;
    color: #1a1a1a;
    background: #faf6f1;
    border: 2px solid transparent;
    border-radius: 12px;
    transition: all 0.25s ease;
    outline: none;
}

.form-input:focus {
    border-color: #e34c29;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(227, 76, 41, 0.1);
}

.form-input::placeholder {
    color: #bbb;
}

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

.form-success {
    text-align: center;
    padding: 40px;
}

.form-success-icon {
    width: 72px;
    height: 72px;
    background: rgba(227, 76, 41, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #e34c29;
}

.form-success-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.form-success-text {
    font-size: 0.95rem;
    color: #777;
    line-height: 1.6;
}

/* --- Footer --- */
.footer {
    background: #1a1a1a;
    color: #fff;
}

.footer-top {
    padding: 80px 0 48px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
        gap: 48px;
    }
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 16px;
}

.footer-tagline {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.5);
}

.footer-heading {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 20px;
}

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

.footer-links a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.footer-links a:hover {
    color: #e34c29;
    transform: translateX(4px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0;
}

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

@media (min-width: 768px) {
    .footer-bottom .container {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer-copy {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.35);
}

.footer-location {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.35);
}

/* --- Reveal Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Responsive Tweaks --- */
@media (max-width: 640px) {
    .hero-section {
        padding: 100px 20px 60px;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .hero-stat-divider {
        height: 28px;
    }
    
    .collection-card {
        min-height: 400px;
    }
    
    .about-img-accent {
        right: -10px;
        bottom: -20px;
    }
    
    .contact-form {
        padding: 28px;
    }
    
    .section {
        padding: 80px 0;
    }
}
