/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Montserrat:wght@300;400;600;700&display=swap');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --black: #000000;
    --off-black: #0a0a0a;
    --white: #ffffff;
    --gray: #888888;
    --light-gray: #cccccc;
    --accent: #d4af37;
    --accent-hover: #b8941f;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

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

/* Navigation */
.navbar {
    background-color: var(--off-black);
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--gray);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--white);
    text-decoration: none;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

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

/* Dropdown Menu */
.nav-dropdown {
    position: relative;
}

.nav-dropdown > a::after {
    content: " ▾";
    font-size: 0.7em;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--off-black);
    border: 1px solid var(--gray);
    border-radius: 4px;
    list-style: none;
    min-width: 200px;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1001;
    margin-top: 0.5rem;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--white);
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.dropdown-menu a:hover {
    background-color: var(--black);
    color: var(--accent);
}

/* Main Content */
main {
    flex: 1;
}

/* Hero Section */
.hero {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 10rem 0 8rem;
    text-align: center;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.6) 0%,
        rgba(0, 0, 0, 0.7) 50%,
        rgba(0, 0, 0, 0.8) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 5rem;
    letter-spacing: 6px;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.6rem;
    color: var(--light-gray);
    margin-bottom: 3rem;
    font-weight: 300;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

/* Buttons */
.cta-button {
    display: inline-block;
    background-color: var(--accent);
    color: var(--black);
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.cta-button-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--white);
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid var(--white);
    border-radius: 4px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button-secondary:hover {
    background-color: var(--white);
    color: var(--black);
}

/* Intro Section */
.intro {
    padding: 5rem 0;
    text-align: center;
}

.intro h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.intro-text {
    font-size: 1.2rem;
    color: var(--light-gray);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Quick Links */
.quick-links {
    padding: 5rem 0;
    background-color: var(--off-black);
}

.quick-links h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 3rem;
}

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

.link-card {
    background-color: var(--black);
    padding: 2.5rem;
    border: 1px solid var(--gray);
    border-radius: 8px;
    text-decoration: none;
    color: var(--white);
    transition: all 0.3s ease;
    display: block;
}

.link-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.2);
}

.link-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--accent);
}

.link-card p {
    color: var(--gray);
    line-height: 1.6;
}

/* Featured Artists */
.featured-artists {
    padding: 5rem 0;
}

.featured-artists h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 3rem;
}

.artists-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.artist-card-preview {
    background-color: var(--off-black);
    border: 1px solid var(--gray);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.artist-card-preview:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.2);
}

.artist-card-preview img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.artist-card-preview h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    padding: 1.5rem;
    margin: 0;
}

.view-portfolio {
    display: block;
    padding: 0 1.5rem 1.5rem;
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.view-portfolio:hover {
    color: var(--accent-hover);
}

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

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background-color: var(--off-black);
    text-align: center;
}

.cta-section h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 2rem;
}

/* Page Header */
.page-header {
    padding: 4rem 0 2rem;
    text-align: center;
    background-color: var(--off-black);
}

.page-header h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.2rem;
    color: var(--gray);
}

.back-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: var(--accent-hover);
}

/* Artists Gallery */
.artists-gallery {
    padding: 4rem 0;
}

/* New Artist Grid Layout */
.artists-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.artist-grid-card {
    background-color: var(--off-black);
    border: 1px solid var(--gray);
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    color: var(--white);
    transition: all 0.3s ease;
    display: block;
}

.artist-grid-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.2);
}

.artist-grid-image {
    aspect-ratio: 1;
    overflow: hidden;
    background-color: var(--black);
}

.artist-grid-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.3s ease;
}

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

.artist-grid-info {
    padding: 1.5rem;
    text-align: center;
}

.artist-grid-info h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.artist-grid-info p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.artist-grid-info .view-link {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.artist-grid-card:hover .view-link {
    color: var(--accent-hover);
}

/* Legacy artist grid styles */
.artists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.artist-card {
    background-color: var(--off-black);
    border: 1px solid var(--gray);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.artist-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.2);
}

.artist-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

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

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

/* Artist Card with Headshot */
.artist-images {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 0;
}

.artist-headshot {
    aspect-ratio: 1;
    overflow: hidden;
    border-right: 1px solid var(--gray);
}

.artist-headshot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.3s ease;
}

.artist-sample {
    aspect-ratio: 1;
    overflow: hidden;
}

.artist-sample img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.artist-card:hover .artist-headshot img,
.artist-card:hover .artist-sample img {
    transform: scale(1.05);
}

/* When only headshot exists, make it full width */
.artist-images .artist-headshot:only-child {
    grid-column: 1 / -1;
}

/* When only sample exists, make it full width */
.artist-images .artist-sample:only-child {
    grid-column: 1 / -1;
}

.artist-info {
    padding: 2rem;
}

.artist-info h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.artist-bio-preview {
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.view-portfolio-btn {
    display: inline-block;
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.view-portfolio-btn:hover {
    color: var(--accent-hover);
}

/* Artist Portfolio Detail */
.artist-portfolio {
    padding: 4rem 0;
}

.artist-profile-section {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: start;
    margin-bottom: 4rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.artist-headshot-large {
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid var(--gray);
    aspect-ratio: 1;
    width: 300px;
}

.artist-headshot-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.artist-profile-section .artist-profile {
    margin-bottom: 0;
    max-width: none;
}

.artist-profile {
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.artist-profile h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.profile-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--light-gray);
}

.portfolio-gallery {
    margin-bottom: 4rem;
}

.portfolio-gallery h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid var(--gray);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    border-color: var(--accent);
    transform: scale(1.02);
}

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

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

.artist-cta {
    text-align: center;
    padding: 3rem;
    background-color: var(--off-black);
    border-radius: 8px;
    border: 1px solid var(--gray);
}

.artist-cta p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--light-gray);
}

/* Services */
.services {
    padding: 4rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    background-color: var(--off-black);
    padding: 2.5rem;
    border: 1px solid var(--gray);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.2);
}

.service-card h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--accent);
}

.pricing {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
}

.price-unit {
    font-size: 1rem;
    color: var(--gray);
    text-transform: lowercase;
}

.service-card p {
    color: var(--light-gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--gray);
    position: relative;
    padding-left: 1.5rem;
}

.service-features li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent);
}

.consultation-card {
    background-color: var(--off-black);
    padding: 3rem;
    border: 2px solid var(--accent);
    border-radius: 8px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.consultation-card h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.consultation-card .pricing {
    justify-content: center;
    margin-bottom: 1.5rem;
}

.consultation-card p {
    color: var(--light-gray);
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* Contact CTA Buttons */
.contact-cta {
    padding: 2rem 0;
    text-align: center;
}

.contact-intro {
    color: var(--light-gray);
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
}

.contact-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.whatsapp-btn {
    background: transparent;
    color: #25D366 !important;
    border-color: #25D366;
}

.whatsapp-btn:hover {
    background: #25D366;
    color: white !important;
}

.instagram-btn {
    background: transparent;
    color: var(--accent) !important;
    border-color: var(--accent);
}

.instagram-btn:hover {
    background: var(--accent);
    color: var(--black) !important;
}

.location-btn {
    background: transparent;
    color: #4285F4 !important;
    border-color: #4285F4;
}

.location-btn:hover {
    background: #4285F4;
    color: white !important;
}

a.contact-btn {
    text-decoration: none !important;
}

.secret-code {
    margin-top: 1.5rem;
    color: var(--gray);
    font-size: 0.9rem;
}

.secret-code em {
    color: var(--accent);
    font-style: normal;
    font-weight: 600;
}

/* Why Work With Us */
.why-work-with-us {
    padding: 2rem 0;
    background-color: var(--off-black);
}

.why-work-with-us h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--accent);
}

.benefits-list {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 0.75rem;
}

.benefits-list li {
    color: var(--light-gray);
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
    line-height: 1.6;
}

.benefits-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

.benefits-list .value {
    color: var(--accent);
    font-weight: 600;
}

/* Contact */
.contact {
    padding: 4rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.info-section h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--accent);
}

.address {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--light-gray);
    margin-bottom: 1rem;
}

.map-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.map-link:hover {
    color: var(--accent-hover);
}

.hours {
    font-size: 1.1rem;
    color: var(--light-gray);
}

.social-link-large {
    display: inline-block;
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.social-link-large:hover {
    color: var(--accent-hover);
}

.cta-text {
    font-size: 1.1rem;
    color: var(--accent);
    font-weight: 600;
    margin-top: 1rem;
}

.contact-method {
    font-size: 1.1rem;
    color: var(--light-gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-method-item {
    font-size: 1.1rem;
    color: var(--light-gray);
    line-height: 1.8;
}

.contact-method-item strong {
    color: var(--white);
    margin-right: 0.5rem;
}

.tbd-text {
    color: var(--gray);
    font-style: italic;
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--gray);
}

/* Footer */
.footer {
    background-color: var(--off-black);
    border-top: 1px solid var(--gray);
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent);
}

.footer-section p {
    color: var(--gray);
    line-height: 1.8;
}

.social-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--accent-hover);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--gray);
}

.footer-bottom p {
    color: var(--gray);
    font-size: 0.9rem;
}

/* No Content States */
.no-artists,
.no-portfolio {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--gray);
    font-size: 1.2rem;
}

/* Featured Works Section */
.featured-works {
    padding: 5rem 0;
    background-color: var(--off-black);
}

.featured-works h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 3rem;
}

.featured-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.featured-item {
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid var(--gray);
    aspect-ratio: 1;
    transition: all 0.3s ease;
}

.featured-item:hover {
    transform: scale(1.02);
    border-color: var(--accent);
}

.featured-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

/* Pricing Info Section */
.pricing-info {
    padding: 3rem 0;
}

.pricing-notice {
    background: linear-gradient(135deg, var(--off-black) 0%, rgba(212, 175, 55, 0.05) 100%);
    border: 2px solid var(--accent);
    border-radius: 12px;
    padding: 3rem;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.pricing-notice h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.pricing-notice p {
    color: var(--light-gray);
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.pricing-notice p:last-of-type {
    margin-bottom: 2rem;
}

.pricing-notice strong {
    color: var(--accent);
}

.pricing-notice .cta-button {
    margin-top: 0.5rem;
}

/* Aftercare Page Styles */
.aftercare-content {
    padding: 4rem 0;
}

.info-card-large {
    background-color: var(--off-black);
    border: 1px solid var(--gray);
    border-radius: 8px;
    padding: 3rem;
    margin-bottom: 3rem;
}

.info-card-large h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--accent);
}

.section-intro {
    font-size: 1.1rem;
    color: var(--light-gray);
    margin-bottom: 2rem;
    line-height: 1.8;
}

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

.tip-card {
    background-color: var(--black);
    border: 1px solid var(--gray);
    border-radius: 8px;
    padding: 1.5rem;
    transition: border-color 0.3s ease;
}

.tip-card:hover {
    border-color: var(--accent);
}

.tip-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--white);
}

.tip-card p {
    color: var(--gray);
    line-height: 1.6;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.aftercare-service {
    background-color: var(--black);
    border: 1px solid var(--gray);
    border-radius: 8px;
    padding: 2rem;
    transition: border-color 0.3s ease;
}

.aftercare-service:hover {
    border-color: var(--accent);
}

.aftercare-service h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
    color: var(--accent);
}

.aftercare-service p {
    color: var(--light-gray);
    line-height: 1.8;
}

.aftercare-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: var(--accent);
    color: var(--black);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 700;
}

.step-content h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.step-content p {
    color: var(--gray);
    line-height: 1.6;
}

.cta-card {
    background-color: var(--off-black);
    border: 2px solid var(--accent);
    border-radius: 8px;
    padding: 3rem;
    text-align: center;
}

.cta-card h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-card p {
    color: var(--gray);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Hygiene Page Styles */
.hygiene-content {
    padding: 4rem 0;
}

.hygiene-intro {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.hygiene-intro .intro-text {
    font-size: 1.2rem;
    color: var(--light-gray);
    line-height: 1.8;
}

.hygiene-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.hygiene-card {
    background-color: var(--off-black);
    border: 1px solid var(--gray);
    border-radius: 8px;
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.hygiene-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
}

.hygiene-icon {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.hygiene-card h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.hygiene-card p {
    color: var(--gray);
    line-height: 1.8;
}

.safety-commitment {
    background-color: var(--off-black);
    border: 1px solid var(--gray);
    border-radius: 8px;
    padding: 3rem;
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.safety-commitment h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--accent);
}

.safety-commitment p {
    color: var(--light-gray);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.safety-commitment p:last-child {
    margin-bottom: 0;
}

/* Service Intro Section */
.service-intro {
    padding: 4rem 0;
    background-color: var(--off-black);
}

.service-intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.service-intro-content h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--accent);
}

.service-intro-content p {
    font-size: 1.1rem;
    color: var(--light-gray);
    line-height: 1.8;
}

/* Tattoo Styles Grid */
.tattoo-styles {
    padding: 5rem 0;
}

.tattoo-styles h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
}

.styles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.style-card {
    background-color: var(--off-black);
    border: 1px solid var(--gray);
    border-radius: 8px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.style-card:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
}

.style-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--accent);
}

.style-card p {
    color: var(--gray);
    line-height: 1.6;
}

/* Tattoo Links Section */
.tattoo-links {
    padding: 5rem 0;
    background-color: var(--off-black);
}

.tattoo-links h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
}

/* Pricing Details */
.pricing-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.price-item {
    background-color: var(--black);
    border: 1px solid var(--gray);
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
}

.price-label {
    display: block;
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-value {
    display: block;
    color: var(--accent);
    font-size: 1.3rem;
    font-weight: 700;
}

/* Piercing Styles */
.piercing-types {
    padding: 5rem 0;
}

.piercing-types h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
}

.piercing-category {
    margin-bottom: 3rem;
}

.piercing-category h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--accent);
    text-align: center;
}

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

.piercing-item {
    background-color: var(--off-black);
    border: 1px solid var(--gray);
    border-radius: 8px;
    padding: 1.5rem;
    transition: border-color 0.3s ease;
}

.piercing-item:hover {
    border-color: var(--accent);
}

.piercing-item h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.piercing-item p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Piercing Info Section */
.piercing-info {
    padding: 5rem 0;
    background-color: var(--off-black);
}

.piercing-info h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
}

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

.info-card {
    background-color: var(--black);
    border: 1px solid var(--gray);
    border-radius: 8px;
    padding: 2rem;
    transition: border-color 0.3s ease;
}

.info-card:hover {
    border-color: var(--accent);
}

.info-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent);
}

.info-card p {
    color: var(--gray);
    line-height: 1.7;
}

/* Safety Box */
.piercing-safety {
    padding: 5rem 0;
}

.safety-box {
    background-color: var(--off-black);
    border: 2px solid var(--accent);
    border-radius: 8px;
    padding: 3rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.safety-box h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.safety-list {
    list-style: none;
    text-align: left;
    max-width: 500px;
    margin: 0 auto 2rem;
}

.safety-list li {
    color: var(--light-gray);
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray);
    position: relative;
    padding-left: 1.5rem;
}

.safety-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
}

.safety-list li:last-child {
    border-bottom: none;
}

.learn-more-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.learn-more-link:hover {
    color: var(--accent-hover);
}

/* FAQ Section */
.piercing-faq,
.removal-faq {
    padding: 5rem 0;
    background-color: var(--off-black);
}

.piercing-faq h2,
.removal-faq h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
}

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

.faq-item {
    background-color: var(--black);
    border: 1px solid var(--gray);
    border-radius: 8px;
    padding: 2rem;
}

.faq-item h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--accent);
}

.faq-item p {
    color: var(--gray);
    line-height: 1.7;
}

.contact-for-pricing {
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--accent) !important;
}

/* Tattoo Removal Styles */
.removal-process {
    padding: 5rem 0;
}

.removal-process h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
}

.process-steps {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.process-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background-color: var(--off-black);
    border: 1px solid var(--gray);
    border-radius: 8px;
    padding: 2rem;
    transition: border-color 0.3s ease;
}

.process-step:hover {
    border-color: var(--accent);
}

.process-step .step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: var(--accent);
    color: var(--black);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 700;
}

.process-step .step-content h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.process-step .step-content p {
    color: var(--gray);
    line-height: 1.7;
}

/* Factors Grid */
.removal-factors {
    padding: 5rem 0;
    background-color: var(--off-black);
}

.removal-factors h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
}

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

.factor-card {
    background-color: var(--black);
    border: 1px solid var(--gray);
    border-radius: 8px;
    padding: 2rem;
    transition: border-color 0.3s ease;
}

.factor-card:hover {
    border-color: var(--accent);
}

.factor-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent);
}

.factor-card p {
    color: var(--gray);
    line-height: 1.7;
}

/* Removal Options */
.removal-options {
    padding: 5rem 0;
}

.removal-options h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
}

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

.option-card {
    background-color: var(--off-black);
    border: 1px solid var(--gray);
    border-radius: 8px;
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.option-card:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
}

.option-card.highlight {
    border-color: var(--accent);
    background-color: rgba(212, 175, 55, 0.05);
}

.option-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--accent);
}

.option-card p {
    color: var(--gray);
    line-height: 1.8;
}

/* Expectations Grid */
.removal-expectations {
    padding: 5rem 0;
    background-color: var(--off-black);
}

.removal-expectations h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
}

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

.expectation-item {
    background-color: var(--black);
    border: 1px solid var(--gray);
    border-radius: 8px;
    padding: 2rem;
}

.expectation-item h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--accent);
}

.expectation-item ul {
    list-style: none;
}

.expectation-item li {
    color: var(--gray);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.expectation-item li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent);
}

/* Google Reviews Section */
.google-reviews {
    padding: 5rem 0;
    background-color: var(--off-black);
}

.google-reviews h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 1rem;
}

.reviews-subtitle {
    text-align: center;
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.reviews-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.reviews-embed {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--gray);
}

.reviews-embed iframe {
    display: block;
    width: 100%;
    min-height: 450px;
}

.reviews-cta {
    background-color: var(--black);
    border: 1px solid var(--gray);
    border-radius: 8px;
    padding: 2.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
}

.reviews-cta p {
    color: var(--light-gray);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

.reviews-cta .cta-button {
    margin-top: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        min-height: 60vh;
        padding: 6rem 0 4rem;
    }

    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 3px;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .navbar .container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.75rem;
        font-size: 0.8rem;
    }

    .nav-dropdown > a::after {
        content: "";
    }

    .dropdown-menu {
        position: static;
        transform: none;
        display: none;
        opacity: 1;
        visibility: visible;
        background: transparent;
        border: none;
        padding: 0.5rem 0 0;
        min-width: auto;
    }

    .nav-dropdown:hover .dropdown-menu {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
        justify-content: center;
    }

    .dropdown-menu a {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
        background-color: var(--off-black);
        border: 1px solid var(--gray);
        border-radius: 4px;
    }

    .logo {
        font-size: 1.5rem;
    }

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

    .benefits-list {
        grid-template-columns: 1fr;
    }

    .contact-buttons {
        flex-direction: row;
        justify-content: center;
    }

    .contact-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }

    .artists-grid,
    .artists-grid-new,
    .services-grid,
    .links-grid,
    .hygiene-grid,
    .tips-grid,
    .featured-gallery,
    .styles-grid,
    .piercing-grid,
    .info-grid,
    .faq-grid,
    .factors-grid,
    .options-grid,
    .expectations-grid,
    .pricing-details {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .info-card-large {
        padding: 2rem;
    }

    .step,
    .process-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .pricing-notice {
        padding: 1.5rem;
    }

    .safety-box {
        padding: 2rem;
    }

    .artist-images {
        grid-template-columns: 1fr;
    }

    .artist-headshot,
    .artist-sample {
        aspect-ratio: 1;
    }

    .artist-headshot {
        border-right: none;
        border-bottom: 1px solid var(--gray);
        max-width: 200px;
        margin: 0 auto;
    }

    .artist-profile-section {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .artist-headshot-large {
        width: 200px;
        margin: 0 auto;
    }

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

    .reviews-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .reviews-embed iframe {
        min-height: 350px;
    }

    .reviews-cta {
        padding: 2rem;
    }
}

@media (max-width: 500px) {
    .artists-grid-new {
        grid-template-columns: 1fr;
    }
}

/* Blog Styles */
.blog-content {
    padding: 4rem 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-card {
    background-color: var(--off-black);
    border: 1px solid var(--gray);
    border-radius: 8px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.blog-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.2);
}

.blog-card-content {
    padding: 2.5rem;
}

.blog-meta {
    margin-bottom: 1rem;
}

.blog-date {
    color: var(--gray);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-card h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.blog-card h2 a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card h2 a:hover {
    color: var(--accent);
}

.blog-excerpt {
    color: var(--light-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.blog-read-more {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    display: inline-block;
}

.blog-read-more:hover {
    color: var(--accent-hover);
}

/* Blog Article Styles */
.blog-article-content {
    padding: 4rem 0;
}

.article-content {
    max-width: 900px;
    margin: 0 auto;
}

.article-meta {
    margin-bottom: 2rem;
}

.article-date {
    color: var(--gray);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.article-body {
    background-color: var(--off-black);
    border: 1px solid var(--gray);
    border-radius: 8px;
    padding: 3rem;
}

.article-intro {
    font-size: 1.2rem;
    color: var(--light-gray);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.article-body h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.2rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: var(--accent);
    letter-spacing: 1px;
}

.article-body h2:first-of-type {
    margin-top: 0;
}

.article-body h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--white);
    letter-spacing: 1px;
}

.article-body p {
    color: var(--light-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.article-body ul,
.article-body ol {
    color: var(--light-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.article-body ul li,
.article-body ol li {
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
}

.article-body ul li strong,
.article-body ol li strong {
    color: var(--white);
    font-weight: 600;
}

.article-cta {
    background-color: var(--black);
    border: 2px solid var(--accent);
    border-radius: 8px;
    padding: 3rem;
    text-align: center;
    margin-top: 3rem;
}

.article-cta h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    margin-top: 0;
    color: var(--accent);
}

.article-cta p {
    color: var(--light-gray);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.cta-button-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--accent);
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border: 2px solid var(--accent);
    border-radius: 4px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button-secondary:hover {
    background-color: var(--accent);
    color: var(--black);
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .article-body {
        padding: 2rem;
    }
    
    .article-body h2 {
        font-size: 1.8rem;
    }
    
    .article-body h3 {
        font-size: 1.4rem;
    }
    
    .article-intro {
        font-size: 1.1rem;
    }
}

