/* ============================================
   Art by Ruby & Co — Global Stylesheet
   Design: Dark luxury with ruby/gold accents
   ============================================ */

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

:root {
    --ruby: #9B2335;
    --ruby-light: #C4384F;
    --ruby-dark: #7A1B2A;
    --gold: #C9A84C;
    --gold-light: #E8D5A3;
    --gold-dim: rgba(201,168,76,0.15);
    --cream: #FAF6F0;
    --dark: #1A1A1A;
    --charcoal: #2D2D2D;
    --charcoal-light: #353535;
    --warm-gray: #8A8078;
    --warm-gray-light: #A39B93;
    --border-subtle: rgba(201,168,76,0.12);
    --border-medium: rgba(201,168,76,0.2);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.4);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.5);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --transition: 0.3s ease;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--dark);
    color: var(--cream);
    overflow-x: hidden;
    line-height: 1.6;
}

body::before {
    content: '';
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(155,35,53,0.08) 0%, transparent 60%),
                radial-gradient(ellipse at 80% 20%, rgba(201,168,76,0.06) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

section, main { position: relative; z-index: 1; }

a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }

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

/* ============================================
   NAVIGATION
   ============================================ */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0 40px;
    transition: background var(--transition), backdrop-filter var(--transition);
}

.nav.scrolled {
    background: rgba(26,26,26,0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-subtle);
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--cream);
}

.brand-mark {
    font-family: 'Syne', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--ruby), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-name {
    font-family: 'Syne', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
}

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

.nav-links a {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--warm-gray-light);
    text-decoration: none;
    transition: color var(--transition);
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--gold);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold);
}

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

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--cream);
    transition: all var(--transition);
}

.nav-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.open span:nth-child(2) {
    opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   SHARED COMPONENTS
   ============================================ */

.section-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.divider {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0 40px;
    margin: 20px 0;
}
.divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201,168,76,0.3), transparent);
}
.divider-diamond {
    width: 8px;
    height: 8px;
    background: var(--gold);
    transform: rotate(45deg);
    flex-shrink: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.page-header {
    padding: 140px 40px 60px;
    text-align: center;
}

.page-header h1 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 16px;
}

.page-header h1 span {
    background: linear-gradient(135deg, var(--ruby) 0%, var(--ruby-light) 50%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-header p {
    color: var(--warm-gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 14px 32px;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--ruby), var(--ruby-light));
    color: var(--cream);
}
.btn-primary:hover {
    background: linear-gradient(135deg, var(--ruby-light), var(--ruby));
    color: white;
    box-shadow: 0 4px 20px rgba(155,35,53,0.4);
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border-medium);
    color: var(--gold);
}
.btn-outline:hover {
    border-color: var(--gold);
    background: rgba(201,168,76,0.08);
    color: var(--gold-light);
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--dark);
    font-weight: 600;
}
.btn-gold:hover {
    box-shadow: 0 4px 20px rgba(201,168,76,0.4);
    transform: translateY(-1px);
    color: var(--dark);
}

/* ============================================
   HERO (Homepage)
   ============================================ */

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 40px;
    position: relative;
}

.hero-content {
    max-width: 900px;
}

.hero-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 32px;
    font-weight: 500;
}

.hero h1 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 800;
    line-height: 0.95;
    margin-bottom: 40px;
    color: var(--cream);
}

.hero h1 span {
    display: block;
    background: linear-gradient(135deg, var(--ruby) 0%, var(--ruby-light) 50%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    color: var(--warm-gray);
    max-width: 540px;
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 40px;
}

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

.hero-accent {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(155,35,53,0.15) 0%, transparent 70%);
    filter: blur(60px);
}

/* ============================================
   CRAFT SECTION (Homepage Categories)
   ============================================ */

.craft-section {
    padding: 100px 40px;
}

.craft-section h2 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 60px;
    max-width: 700px;
    line-height: 1.1;
}

.craft-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2px;
}

.craft-card {
    background: var(--charcoal);
    padding: 48px 36px;
    position: relative;
    overflow: hidden;
    transition: background 0.4s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}

.craft-card:hover {
    background: var(--charcoal-light);
    color: inherit;
}

.craft-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--ruby), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.craft-card:hover::before {
    transform: scaleX(1);
}

.craft-number {
    font-family: 'Syne', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(201,168,76,0.1);
    line-height: 1;
    margin-bottom: 16px;
}

.craft-card h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--cream);
}

.craft-card p {
    font-size: 0.95rem;
    color: var(--warm-gray);
    line-height: 1.6;
    font-weight: 300;
}

.craft-card .card-arrow {
    margin-top: 20px;
    font-size: 0.8rem;
    color: var(--gold);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 500;
    opacity: 0;
    transform: translateX(-8px);
    transition: all 0.4s ease;
}

.craft-card:hover .card-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* ============================================
   ARTIST SECTION (Homepage)
   ============================================ */

.artist-section {
    padding: 100px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.artist-text .section-label { margin-bottom: 16px; }

.artist-text h2 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.1;
}

.artist-text p {
    color: var(--warm-gray);
    font-size: 1.05rem;
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 16px;
}

.artist-text .btn {
    margin-top: 16px;
}

.artist-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.artist-visual-box {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 3/4;
    border: 1px solid rgba(201,168,76,0.2);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.artist-visual-box::after {
    content: '';
    position: absolute;
    inset: 20px;
    border: 1px solid rgba(155,35,53,0.2);
}

.artist-monogram {
    font-family: 'Syne', sans-serif;
    font-size: 6rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--ruby), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.05em;
}

/* ============================================
   PROCESS SECTION (Homepage)
   ============================================ */

.process-section {
    padding: 100px 40px;
    background: linear-gradient(180deg, transparent 0%, rgba(155,35,53,0.03) 50%, transparent 100%);
}

.process-section h2 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 16px;
    text-align: center;
}

.process-subtitle {
    text-align: center;
    color: var(--warm-gray);
    font-size: 1.1rem;
    margin-bottom: 60px;
    font-weight: 300;
}

.process-steps {
    display: flex;
    gap: 0;
    max-width: 900px;
    margin: 0 auto;
}

.process-step {
    flex: 1;
    padding: 32px 24px;
    text-align: center;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(201,168,76,0.2);
}

.process-step-num {
    font-family: 'Syne', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: var(--gold);
    margin-bottom: 12px;
}

.process-step h4 {
    font-family: 'Syne', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.process-step p {
    font-size: 0.85rem;
    color: var(--warm-gray);
    line-height: 1.5;
    font-weight: 300;
}

/* ============================================
   CLOSING CTA (Homepage)
   ============================================ */

.closing {
    padding: 120px 40px;
    text-align: center;
}

.closing h2 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 24px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.closing h2 em {
    font-style: italic;
    background: linear-gradient(135deg, var(--ruby), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.closing p {
    color: var(--warm-gray);
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto 32px;
    line-height: 1.7;
    font-weight: 300;
}

/* ============================================
   SHOP / CATALOG
   ============================================ */

.category-nav {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0 40px 60px;
}

.category-pill {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 10px 24px;
    border: 1px solid var(--border-medium);
    background: transparent;
    color: var(--warm-gray-light);
    text-decoration: none;
    transition: all var(--transition);
    cursor: pointer;
}

.category-pill:hover,
.category-pill.active {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201,168,76,0.08);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 24px;
    padding: 0 40px 100px;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    background: var(--charcoal);
    overflow: hidden;
    transition: all 0.4s ease;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    border: 1px solid transparent;
}

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

.product-card-image {
    aspect-ratio: 4/3;
    background: var(--dark);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card-image .placeholder-art {
    font-family: 'Syne', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--ruby), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.4;
}

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

.product-card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 12px;
    background: var(--ruby);
    color: var(--cream);
    font-weight: 500;
}

.product-card-body {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-card-category {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
}

.product-card-body h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--cream);
    line-height: 1.3;
}

.product-card-body p {
    font-size: 0.9rem;
    color: var(--warm-gray);
    line-height: 1.6;
    font-weight: 300;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border-subtle);
}

.product-card-price {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--gold-light);
}

.product-card-action {
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ruby-light);
    font-weight: 500;
}

/* ============================================
   PRODUCT DETAIL
   ============================================ */

.product-detail {
    padding: 120px 40px 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.product-breadcrumb {
    font-size: 0.8rem;
    color: var(--warm-gray);
    margin-bottom: 40px;
}

.product-breadcrumb a {
    color: var(--warm-gray);
}

.product-breadcrumb a:hover {
    color: var(--gold);
}

.product-breadcrumb .sep {
    margin: 0 8px;
    opacity: 0.5;
}

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

.product-gallery {
    position: sticky;
    top: 100px;
}

.product-gallery-main {
    aspect-ratio: 1;
    background: var(--charcoal);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-subtle);
    margin-bottom: 12px;
    overflow: hidden;
}

.product-gallery-main .placeholder-art {
    font-family: 'Syne', sans-serif;
    font-size: 5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--ruby), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.3;
}

.product-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.product-gallery-thumbs .thumb {
    aspect-ratio: 1;
    background: var(--charcoal);
    border: 1px solid var(--border-subtle);
    cursor: pointer;
    transition: border-color var(--transition);
    overflow: hidden;
}

.product-gallery-thumbs .thumb:hover,
.product-gallery-thumbs .thumb.active {
    border-color: var(--gold);
}

.product-info h1 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 8px;
    line-height: 1.15;
}

.product-info .product-category-badge {
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    display: inline-block;
}

.product-price-display {
    font-family: 'Syne', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold-light);
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-subtle);
}

.product-description {
    color: var(--warm-gray-light);
    font-size: 1.05rem;
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 32px;
}

.product-details-list {
    margin-bottom: 32px;
}

.product-details-list h3 {
    font-family: 'Syne', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--cream);
    margin-bottom: 16px;
}

.detail-item {
    display: flex;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-subtle);
    font-size: 0.9rem;
}

.detail-item .label {
    color: var(--warm-gray);
    width: 120px;
    flex-shrink: 0;
    font-weight: 400;
}

.detail-item .value {
    color: var(--cream);
    font-weight: 300;
}

/* ============================================
   INQUIRY FORM (Product + Contact)
   ============================================ */

.inquiry-form-section {
    margin-top: 40px;
    padding: 32px;
    background: var(--charcoal);
    border: 1px solid var(--border-subtle);
}

.inquiry-form-section h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.inquiry-form-section .form-subtitle {
    color: var(--warm-gray);
    font-size: 0.9rem;
    font-weight: 300;
    margin-bottom: 24px;
}

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

.form-group label {
    display: block;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--warm-gray-light);
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    background: var(--dark);
    border: 1px solid var(--border-medium);
    color: var(--cream);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    transition: border-color var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--gold);
}

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

.form-group select {
    cursor: pointer;
    appearance: none;
    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='%23C9A84C' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

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

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

.form-success.show {
    display: block;
}

.form-success h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 8px;
}

.form-success p {
    color: var(--warm-gray);
    font-weight: 300;
}

.form-error {
    display: none;
    background: rgba(155,35,53,0.15);
    border: 1px solid var(--ruby);
    padding: 12px 16px;
    margin-bottom: 16px;
    color: var(--ruby-light);
    font-size: 0.9rem;
}

.form-error.show {
    display: block;
}

/* ============================================
   ABOUT PAGE
   ============================================ */

.about-hero {
    padding: 140px 40px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.about-text .section-label { margin-bottom: 16px; }

.about-text h1 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 32px;
}

.about-text h1 span {
    background: linear-gradient(135deg, var(--ruby), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-text p {
    color: var(--warm-gray-light);
    font-size: 1.05rem;
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 20px;
}

.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-portrait {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 3/4;
    border: 1px solid var(--border-medium);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--charcoal);
}

.about-portrait::after {
    content: '';
    position: absolute;
    inset: 16px;
    border: 1px solid rgba(155,35,53,0.15);
}

.about-portrait .monogram {
    font-family: 'Syne', sans-serif;
    font-size: 5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--ruby), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-story {
    padding: 80px 40px;
    max-width: 800px;
    margin: 0 auto;
}

.about-story h2 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 32px;
    line-height: 1.15;
}

.about-story p {
    color: var(--warm-gray-light);
    font-size: 1.05rem;
    line-height: 1.9;
    font-weight: 300;
    margin-bottom: 24px;
}

.about-story blockquote {
    border-left: 3px solid var(--gold);
    padding: 16px 0 16px 24px;
    margin: 40px 0;
    font-style: italic;
    font-size: 1.2rem;
    color: var(--cream);
    line-height: 1.6;
}

.about-mediums {
    padding: 80px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-mediums h2 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 48px;
    text-align: center;
}

.mediums-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2px;
}

.medium-card {
    background: var(--charcoal);
    padding: 40px 28px;
    text-align: center;
    transition: background 0.4s ease;
}

.medium-card:hover {
    background: var(--charcoal-light);
}

.medium-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    display: block;
}

.medium-card h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.medium-card p {
    font-size: 0.85rem;
    color: var(--warm-gray);
    line-height: 1.5;
    font-weight: 300;
}

/* ============================================
   CONTACT PAGE
   ============================================ */

.contact-layout {
    padding: 0 40px 100px;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

.contact-info h2 {
    font-family: 'Syne', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.contact-info p {
    color: var(--warm-gray-light);
    font-size: 1rem;
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 32px;
}

.contact-detail {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    align-items: flex-start;
}

.contact-detail-icon {
    width: 40px;
    height: 40px;
    background: var(--charcoal);
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--gold);
    font-size: 1.1rem;
}

.contact-detail-text h4 {
    font-family: 'Syne', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.contact-detail-text p {
    font-size: 0.9rem;
    margin-bottom: 0;
    color: var(--warm-gray);
}

.contact-form-wrap {
    background: var(--charcoal);
    padding: 40px;
    border: 1px solid var(--border-subtle);
}

.contact-form-wrap h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.contact-form-wrap .form-subtitle {
    color: var(--warm-gray);
    font-size: 0.9rem;
    font-weight: 300;
    margin-bottom: 28px;
}

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
    border-top: 1px solid var(--border-subtle);
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 0;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-brand-block {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-brand-mark {
    font-family: 'Syne', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--ruby), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-tagline {
    font-size: 0.85rem;
    color: var(--warm-gray);
    font-weight: 300;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    font-size: 0.82rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--warm-gray);
    font-weight: 500;
    transition: color var(--transition);
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-top: 1px solid var(--border-subtle);
    flex-wrap: wrap;
    gap: 8px;
}

.footer-bottom p {
    font-size: 0.78rem;
    color: var(--warm-gray);
    font-weight: 300;
}

.footer-email {
    color: var(--warm-gray);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
    .nav { padding: 0 20px; }
    .nav-inner { height: 60px; }
    .brand-name { display: none; }

    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: rgba(26,26,26,0.97);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        flex-direction: column;
        padding: 24px;
        gap: 0;
        transform: translateY(-100%);
        opacity: 0;
        transition: all 0.4s ease;
        pointer-events: none;
        border-bottom: 1px solid var(--border-subtle);
    }

    .nav-links.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav-links a {
        padding: 16px 0;
        font-size: 1rem;
        border-bottom: 1px solid var(--border-subtle);
        width: 100%;
    }

    .hero { padding: 80px 24px 60px; }
    .craft-section, .process-section, .closing { padding: 80px 24px; }

    .artist-section {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 80px 24px;
    }
    .artist-visual { order: -1; }
    .artist-visual-box { max-width: 250px; }
    .artist-monogram { font-size: 4rem; }

    .process-steps { flex-direction: column; }
    .process-step:not(:last-child)::after {
        right: 20%; top: auto; bottom: 0;
        height: 1px; width: 60%;
    }

    .hero-accent { display: none; }
    .craft-grid { grid-template-columns: 1fr; }

    .products-grid {
        grid-template-columns: 1fr;
        padding: 0 20px 80px;
    }

    .product-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .product-detail { padding: 80px 20px 60px; }
    .product-gallery { position: static; }

    .about-hero {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 100px 24px 60px;
    }
    .about-visual { order: -1; }
    .about-portrait { max-width: 280px; }
    .about-story { padding: 60px 24px; }
    .about-mediums { padding: 60px 20px; }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px 80px;
    }
    .contact-form-wrap { padding: 24px; }

    .form-row { grid-template-columns: 1fr; }
    .page-header { padding: 100px 20px 40px; }
    .category-nav { padding: 0 20px 40px; }
    .divider { padding: 0 20px; }

    .site-footer { padding: 0 20px; }
    .footer-top { flex-direction: column; text-align: center; }
    .footer-links { justify-content: center; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: clamp(2.4rem, 10vw, 3.5rem); }
    .craft-card { padding: 32px 24px; }
    .products-grid { grid-template-columns: 1fr; }
    .mediums-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.fade-in-delay-1 { animation-delay: 0.1s; }
.fade-in-delay-2 { animation-delay: 0.2s; }
.fade-in-delay-3 { animation-delay: 0.3s; }
.fade-in-delay-4 { animation-delay: 0.4s; }

/* Loading spinner */
.spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
    display: inline-block;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}
