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

html {
    scroll-behavior: smooth;
}

:root {
    --black: #000000;
    --bg: #080808;
    --panel: #121212;
    --panel-light: #1a1a1a;
    --border: #2b2b2b;
    --gold: #b58a46;
    --gold-light: #d8b36a;
    --text: #f2eee6;
    --muted: #aaa29a;
    --dark-muted: #6f6860;
}

body {
    font-family: Georgia, "Times New Roman", serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

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

section {
    scroll-margin-top: 92px;
}

.container {
    width: min(1160px, calc(100% - 40px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(0, 0, 0, 0.9);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(14px);
}

.header-inner {
    height: 96px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.logo img {
    width: 96px;
    max-height: 76px;
    object-fit: contain;
    display: block;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
    color: var(--muted);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

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

.header-cta {
    padding: 11px 18px;
    border: 1px solid var(--gold);
    border-radius: 999px;
    color: var(--gold-light);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.hero {
    position: relative;
    min-height: calc(100vh - 86px);
    display: flex;
    align-items: center;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url("../Images/hero-tattoo.jpg") center center / cover no-repeat;
    opacity: 0.2;
    filter: grayscale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 74% 28%, rgba(181, 138, 70, 0.16), transparent 32%),
        linear-gradient(90deg, rgba(0, 0, 0, 0.97), rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.45)),
        linear-gradient(180deg, transparent 48%, var(--bg));
}

.hero-content {
    position: relative;
    max-width: 820px;
    padding: 92px 0;
}

.hero-logo {
    width: min(350px, 72vw);
    display: block;
    margin-bottom: 32px;
}

.eyebrow {
    color: var(--gold-light);
    font-family: Arial, Helvetica, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.74rem;
    font-weight: 900;
    margin-bottom: 14px;
}

h1 {
    max-width: 880px;
    font-size: clamp(3.25rem, 7vw, 6.7rem);
    line-height: 0.88;
    letter-spacing: -0.065em;
    margin-bottom: 24px;
}

h2 {
    font-size: clamp(2.1rem, 4.2vw, 3.85rem);
    line-height: 0.98;
    letter-spacing: -0.05em;
    margin-bottom: 20px;
}

h3 {
    font-size: 1.34rem;
    line-height: 1.15;
    margin-bottom: 10px;
}

.hero-text {
    max-width: 620px;
    color: var(--muted);
    font-size: 1.15rem;
    margin-bottom: 32px;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 23px;
    border-radius: 999px;
    border: none;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
}

.btn.primary {
    background: var(--gold);
    color: var(--black);
}

.btn.secondary {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
}

.quick-info {
    background: var(--black);
    border-bottom: 1px solid var(--border);
}

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

.quick-grid div {
    padding: 26px 24px;
    border-right: 1px solid var(--border);
}

.quick-grid div:last-child {
    border-right: none;
}

.quick-grid strong,
.quick-grid span {
    display: block;
}

.quick-grid strong {
    color: var(--text);
    font-size: 1.02rem;
}

.quick-grid span {
    color: var(--muted);
    font-size: 0.9rem;
}

.section {
    padding: 96px 0;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 42px;
}

.section-heading.split {
    max-width: none;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 48px;
}

.section-heading.split p:last-child {
    max-width: 380px;
    color: var(--muted);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 270px;
    gap: 16px;
}

.portfolio-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--panel);
}

.portfolio-card.tall {
    grid-row: span 2;
}

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

.studio-section {
    background:
        radial-gradient(circle at 20% 20%, rgba(181, 138, 70, 0.08), transparent 28%),
        var(--panel);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.studio-grid {
    display: grid;
    grid-template-columns: 1fr 0.95fr;
    gap: 58px;
    align-items: center;
}

.studio-copy p {
    color: var(--muted);
    margin-bottom: 26px;
}

.studio-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 28px;
}

.studio-list span {
    padding: 15px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.025);
    color: var(--text);
    font-weight: 800;
}

.studio-image {
    min-height: 520px;
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--panel-light);
}

.studio-image img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
    display: block;
}

.artists-section {
    background: var(--black);
    border-bottom: 1px solid var(--border);
}

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

.artist-card {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 28px;
    background: var(--panel);
}

.artist-photo {
    min-height: 320px;
}

.artist-info {
    padding: 24px;
}

.artist-info p {
    color: var(--muted);
    margin-bottom: 18px;
}

.artist-info a {
    color: var(--gold-light);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: underline;
}

.booking-banner {
    padding-bottom: 0;
}

.banner-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 42px;
    padding: 48px;
    border-radius: 30px;
    border: 1px solid var(--border);
    background:
        linear-gradient(135deg, rgba(181, 138, 70, 0.18), rgba(255, 255, 255, 0.03)),
        var(--panel);
}

.banner-card p {
    max-width: 660px;
    color: var(--muted);
}

.contact-section {
    background: var(--black);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 58px;
    align-items: start;
}

.contact-grid p {
    color: var(--muted);
}

.contact-list {
    display: grid;
    gap: 14px;
    margin-top: 26px;
}

.contact-list span {
    padding: 15px;
    border-left: 3px solid var(--gold);
    background: var(--panel);
    color: var(--text);
    font-weight: 800;
}


.contact-booking-card {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 42px;
    border: 1px solid var(--border);
    border-radius: 30px;
    background:
        linear-gradient(145deg, rgba(181, 138, 70, 0.13), transparent 58%),
        var(--panel);
}

.contact-booking-card h2 {
    max-width: 560px;
}

.contact-booking-card > p:not(.eyebrow) {
    max-width: 600px;
    margin-bottom: 28px;
    color: var(--muted);
}

.contact-booking-card small {
    display: block;
    margin-top: 17px;
    color: var(--dark-muted);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.68rem;
    line-height: 1.55;
}


.contact-form {
    display: grid;
    gap: 14px;
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: 30px;
    background: var(--panel);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 15px;
    padding: 16px;
    background: #0d0d0d;
    color: var(--text);
    font: inherit;
}

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

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--dark-muted);
}

.site-footer {
    padding: 30px 0;
    background: var(--black);
    border-top: 1px solid var(--border);
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.footer-inner img {
    width: 92px;
    height: auto;
}

.footer-inner p,
.footer-inner a {
    color: var(--muted);
}

@media (max-width: 1000px) {
    .nav-links {
        display: none;
    }

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

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

    .studio-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

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

    .section-heading.split,
    .banner-card {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(100% - 28px, 1160px);
    }

    .header-inner {
        height: 76px;
    }

    .logo img {
        width: 92px;
    }

    .header-cta {
        padding: 10px 14px;
        font-size: 0.72rem;
    }

    .hero {
        min-height: calc(100vh - 76px);
    }
	
    .hero-bg {
        opacity: 0.08;
        background-position: center top;
    }

    .hero-overlay {
        background:
            linear-gradient(180deg, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.88) 55%, var(--bg));
    }

    .hero-content {
        padding: 48px 0 64px;
        text-align: center;
    }

    .hero-logo {
        margin: 0 auto 24px;
        width: min(230px, 70vw);
    }

    .hero-text {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .quick-grid,
    .portfolio-grid,
    .artists-grid,
    .studio-list {
        grid-template-columns: 1fr;
    }

    .quick-grid div {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .quick-grid div:last-child {
        border-bottom: none;
    }

    .portfolio-card.tall,
    .portfolio-card.wide {
        grid-row: span 1;
        grid-column: span 1;
    }

    .section {
        padding: 74px 0;
    }

    .studio-image,
    .studio-image img {
        min-height: 360px;
    }

    .banner-card {
        padding: 30px;
    }

    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

.map-frame {
    margin-top: 24px;
    height: 260px;
    border: 1px solid var(--border);
    border-radius: 24px;
    overflow: hidden;
    background: var(--panel);
}

.map-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(1) invert(0.92) contrast(0.9);
}

.artist-monogram {
    display: grid;
    place-content: center;
    gap: 8px;
    min-height: 320px;
    background:
        radial-gradient(circle at 50% 34%, rgba(216, 179, 106, 0.16), transparent 30%),
        linear-gradient(145deg, #1b1814, #0f0f0f);
}

.artist-monogram span {
    color: var(--gold-light);
    font-size: 6rem;
    line-height: 1;
    text-align: center;
}

.artist-monogram small {
    color: var(--dark-muted);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.66rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-align: center;
    text-transform: uppercase;
}

.artist-info .artist-specialty-line {
    margin-bottom: 8px;
    color: var(--gold-light);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

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

.artist-profile-page {
    min-height: 70vh;
}

.artist-profile-hero {
    padding: 88px 0;
    border-bottom: 1px solid var(--border);
    background:
        radial-gradient(circle at 72% 24%, rgba(181, 138, 70, 0.14), transparent 30%),
        var(--black);
}

.artist-profile-grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.8fr) 1.2fr;
    gap: 64px;
    align-items: center;
}

.artist-profile-photo {
    min-height: 520px;
    display: grid;
    place-content: center;
    gap: 10px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 30px;
    background: linear-gradient(145deg, rgba(181, 138, 70, 0.22), transparent 55%), var(--panel);
    text-align: center;
}

.artist-profile-photo span {
    color: var(--gold-light);
    font-size: 9rem;
    line-height: 1;
}

.artist-profile-photo small {
    color: var(--dark-muted);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.artist-profile-photo img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    display: block;
    object-fit: cover;
}

.artist-profile-copy h1 {
    font-size: clamp(3.6rem, 8vw, 7rem);
}

.artist-profile-bio {
    max-width: 660px;
    color: var(--muted);
    font-size: 1.08rem;
}

.artist-specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin: 24px 0 30px;
}

.artist-specialties span {
    padding: 8px 12px;
    border: 1px solid var(--border);
    border-radius: 999px;
    color: var(--gold-light);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.artist-social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin: -12px 0 28px;
}

.artist-social-links:empty {
    display: none;
}

.artist-social-links a {
    color: var(--gold-light);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: underline;
}

.artist-empty-state,
.artist-page-state > p:not(.eyebrow) {
    color: var(--muted);
}

.artist-empty-state {
    grid-column: 1 / -1;
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: var(--panel);
}

.artist-page-state {
    max-width: 760px;
}

.artist-page-state h1 {
    margin-bottom: 24px;
}

.artist-page-state > p:not(.eyebrow) {
    margin-bottom: 28px;
    font-size: 1.08rem;
}

.artist-work-section {
    background: var(--bg);
}

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

.artist-work-card {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: var(--panel);
}

@media (max-width: 850px) {
    .artist-profile-grid,
    .artist-work-grid {
        grid-template-columns: 1fr;
    }

    .artist-profile-photo {
        min-height: 400px;
    }

    .artist-profile-photo img {
        min-height: 400px;
    }
}

@media (max-width: 640px) {
    .artist-profile-hero {
        padding: 52px 0;
    }

    .footer-links {
        flex-wrap: wrap;
    }
}
