/* ══════════════════════════════════════════
   DHOON STUDIO — Page-specific Styles
══════════════════════════════════════════ */

/* ── Studio Hero ──────────────────────────────── */
.studio-hero {
    height: 65vh;
    min-height: 520px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 6rem var(--gutter) 4rem clamp(2rem, 10vw, 10rem);
    margin-top: 0;
}

.studio-hero-bg {
    position: absolute;
    inset: 0;
    background-color: var(--teal);
    background-image:
        radial-gradient(ellipse at 70% 50%, rgba(196, 165, 95, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse at 20% 80%, rgba(196, 165, 95, 0.07) 0%, transparent 50%);
    z-index: 0;
}

.studio-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='256' height='256' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    opacity: 0.6;
    pointer-events: none;
}

.studio-hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 700px;
}

.studio-eyebrow {
    font-family: var(--sans);
    font-size: 0.68rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--gold-pale);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: fadeUp 1s var(--ease) 0.2s both;
}

.studio-eyebrow::before {
    content: '';
    display: block;
    width: 32px;
    height: 1px;
    background: var(--gold);
    opacity: 0.7;
    flex-shrink: 0;
}

.studio-heading {
    font-family: var(--serif);
    font-weight: 300;
    font-size: clamp(2.8rem, 5.5vw, 5rem);
    line-height: 1.1;
    letter-spacing: -0.01em;
    margin-bottom: 1.5rem;
    color: var(--white);
    animation: fadeUp 1s var(--ease) 0.4s both;
}

.studio-heading em {
    font-style: italic;
    color: var(--gold-pale);
}

.studio-sub {
    font-family: var(--serif);
    font-style: italic;
    font-size: 1.08rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.75;
    max-width: 540px;
    animation: fadeUp 1s var(--ease) 0.6s both;
}

.studio-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: var(--gutter);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.6rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    animation: fadeUp 1s var(--ease) 0.9s both;
}

/* ── Studio Section General ──────────────────────────────── */
.studio-section {
    background: var(--ivory);
    padding: var(--space-xl) var(--gutter);
}

.studio-section--alt {
    background: var(--teal);
}

.studio-section--alt .section-heading,
.studio-section--alt .studio-section-desc {
    color: var(--ivory);
}

.studio-section--alt .section-tag {
    color: var(--gold-pale);
}

.studio-section--alt .section-tag::before {
    background: var(--gold);
}

.studio-section-header {
    text-align: center;
    margin-bottom: 3.5rem;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.studio-section-header .section-tag {
    justify-content: center;
    margin-bottom: 0.9rem;
}

.studio-section-header .section-tag::before {
    display: none;
}

.studio-section-desc {
    font-family: var(--serif);
    font-style: italic;
    font-size: 1.05rem;
    color: var(--gray);
    line-height: 1.85;
    margin-top: 1rem;
}

/* ── Studio Divider ──────────────────────────────── */
.studio-divider {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 0 var(--gutter);
    max-width: calc(var(--max-w) + 2 * var(--gutter));
    margin: 0 auto;
    background: var(--ivory);
}

.studio-divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(196, 165, 95, 0.35), transparent);
}

.studio-divider-icon {
    color: var(--gold);
    opacity: 0.6;
    font-size: 0.75rem;
    flex-shrink: 0;
}

/* ── Medium Cards ──────────────────────────────── */
.studio-medium-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    max-width: var(--max-w);
    margin: 0 auto;
}

.studio-medium-card {
    position: relative;
    background: var(--ivory-2);
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: 3px;
    padding: 2rem 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s;
    overflow: hidden;
}

.studio-medium-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(196, 165, 95, 0.0) 0%, rgba(196, 165, 95, 0.06) 100%);
    opacity: 0;
    transition: opacity 0.4s;
}

.studio-medium-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(196, 165, 95, 0.35);
}

.studio-medium-card:hover::before {
    opacity: 1;
}

body.dark-mode .studio-medium-card {
    background: var(--beige);
    border-color: rgba(255, 255, 255, 0.06);
}

.medium-icon-wrap {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(196, 165, 95, 0.35);
    border-radius: 2px;
    flex-shrink: 0;
    transition: border-color 0.4s, background 0.4s;
}

.studio-medium-card:hover .medium-icon-wrap {
    border-color: var(--gold);
    background: var(--gold-dim);
}

.medium-icon {
    font-size: 1.2rem;
    color: var(--gold);
    line-height: 1;
}

.medium-name {
    font-family: var(--serif);
    font-size: 1.18rem;
    font-weight: 400;
    color: var(--charcoal);
    letter-spacing: 0.01em;
    margin-bottom: 0.5rem;
}

.medium-desc {
    font-family: var(--serif);
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.75;
    font-style: italic;
}

/* ── Product Cards ──────────────────────────────── */
.studio-product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    max-width: var(--max-w);
    margin: 0 auto;
}

.studio-product-card {
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 3px;
    padding: 2rem 1.75rem;
    transition: border-color 0.4s var(--ease), background 0.4s var(--ease), transform 0.4s var(--ease);
    cursor: default;
    overflow: hidden;
}

.studio-product-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(196, 165, 95, 0.0);
    transition: background 0.4s;
    pointer-events: none;
}

.studio-product-card:hover {
    border-color: rgba(196, 165, 95, 0.45);
    transform: translateY(-3px);
}

.studio-product-card:hover::after {
    background: rgba(196, 165, 95, 0.04);
}

.product-card-inner {
    position: relative;
    z-index: 1;
}

.product-accent-line {
    width: 24px;
    height: 1px;
    background: var(--gold);
    opacity: 0.55;
    margin-bottom: 1.15rem;
    transition: width 0.4s var(--ease);
}

.studio-product-card:hover .product-accent-line {
    width: 40px;
    opacity: 0.85;
}

.product-name {
    font-family: var(--serif);
    font-size: 1.12rem;
    font-weight: 400;
    color: var(--ivory);
    margin-bottom: 0.45rem;
    letter-spacing: 0.01em;
}

.product-sub {
    font-family: var(--serif);
    font-size: 0.84rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.42);
    line-height: 1.65;
}

/* ── Bespoke statement section ──────────────────────────────── */
.studio-bespoke {
    background: var(--teal);
    padding: clamp(4.5rem, 9vw, 8rem) var(--gutter);
    text-align: center;
}

.studio-bespoke-inner {
    max-width: 760px;
    margin: 0 auto;
}

.studio-bespoke-text {
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(1.2rem, 2.1vw, 1.75rem);
    color: var(--ivory);
    line-height: 1.75;
    font-weight: 300;
    margin: 0 0 2.5rem;
}

.studio-bespoke-cta {
    margin-bottom: 2.5rem;
}


/* ══════════════════════════════════════════
   RESPONSIVE — DHOON STUDIO
══════════════════════════════════════════ */
@media (max-width: 1200px) {
    .studio-medium-grid { grid-template-columns: repeat(3, 1fr); }
    .studio-product-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
    .studio-hero {
        height: auto;
        min-height: 480px;
        padding: 7rem var(--gutter) 4rem;
    }
    .studio-heading { font-size: clamp(2.4rem, 6vw, 3.5rem); }
}

@media (max-width: 640px) {
    .studio-hero {
        padding: 6rem var(--gutter) 3.5rem;
        min-height: 420px;
        align-items: flex-end;
    }
    .studio-heading { font-size: clamp(2.2rem, 8vw, 3rem); }
    .studio-sub { font-size: 0.98rem; }
    .studio-bespoke-text { font-size: clamp(1.1rem, 4.5vw, 1.4rem); }
    .studio-scroll { display: none; }
}
