/* ============================================
   RUN INK TATTOO BANGKOK — Design System
   Luxury Greco-Roman | Black & White + Gold
   ============================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;800;900&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=Inter:wght@300;400;500&display=swap');

/* --- CSS Custom Properties --- */
:root {
    --color-black: #000000;
    --color-dark: #0a0a0a;
    --color-dark-2: #111111;
    --color-dark-3: #1a1a1a;
    --color-dark-4: #222222;
    --color-gray: #333333;
    --color-gray-2: #555555;
    --color-gray-3: #888888;
    --color-gray-4: #aaaaaa;
    --color-light: #cccccc;
    --color-white: #ffffff;
    --color-gold: #C9A84C;
    --color-gold-light: #E0C96B;
    --color-gold-dark: #9E8339;

    --font-heading: 'Cinzel', 'Times New Roman', serif;
    --font-body: 'Cormorant Garamond', 'Georgia', serif;
    --font-ui: 'Inter', 'Arial', sans-serif;

    --header-height: 80px;
    --max-width: 1200px;
    --section-padding: 100px 0;
    --card-radius: 4px;

    --transition-fast: 0.2s ease;
    --transition-base: 0.4s ease;
    --transition-slow: 0.8s ease;

    /* Greek Key Border as SVG data URI */
    --greek-key: url("data:image/svg+xml,%3Csvg width='40' height='12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 6h8v6h4v-6h4V0h4v6h8v6h4v-6h4V0h4v6' fill='none' stroke='%23C9A84C' stroke-width='1'/%3E%3C/svg%3E");
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-light);
    background-color: var(--color-black);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--color-gold);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--color-gold-light);
}

ul,
ol {
    list-style: none;
}

/* --- Typography --- */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-white);
    letter-spacing: 0.04em;
}

h1 {
    font-size: clamp(2.2rem, 5vw, 4rem);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

h2 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

h3 {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
}

h4 {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
}

h5 {
    font-size: 1.1rem;
    font-weight: 600;
}

h6 {
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-gold);
}

p {
    margin-bottom: 1rem;
    color: var(--color-gray-4);
}

/* --- Decorative Elements --- */
.greek-divider {
    width: 100%;
    max-width: 400px;
    height: 12px;
    margin: 20px auto;
    background: var(--greek-key);
    background-repeat: repeat-x;
    opacity: 0.6;
}

.gold-line {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    margin: 16px auto;
}

.section-subtitle {
    font-family: var(--font-ui);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--color-gold);
    display: block;
    margin-bottom: 10px;
}

/* --- Layout --- */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: var(--section-padding);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 40px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border: 2px solid var(--color-gold);
    color: var(--color-gold);
    background: transparent;
    cursor: pointer;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    border-radius: 50px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--color-gold);
    transition: left var(--transition-base);
    z-index: -1;
}

.btn:hover {
    color: var(--color-black);
}

.btn:hover::before {
    left: 0;
}

.btn-primary {
    background: var(--color-gold);
    color: var(--color-black);
}

.btn-primary::before {
    background: var(--color-white);
}

.btn-sm {
    padding: 10px 24px;
    font-size: 0.75rem;
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
    transition: all var(--transition-base);
}

.site-header.scrolled {
    background: rgba(0, 0, 0, 0.97);
    box-shadow: 0 2px 40px rgba(0, 0, 0, 0.6);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.header-logo img {
    height: 55px;
    width: auto;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.main-nav a {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-light);
    position: relative;
    padding: 4px 0;
    transition: color var(--transition-fast);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-gold);
    transition: width var(--transition-base);
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--color-gold);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-cta .btn {
    padding: 10px 24px;
    font-size: 0.7rem;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--color-white);
    transition: all var(--transition-fast);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* Mobile Nav */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.mobile-nav-overlay.open {
    display: flex;
    opacity: 1;
    visibility: visible;
}

.mobile-nav-overlay a {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-white);
    transition: color var(--transition-fast);
}

.mobile-nav-overlay a:hover {
    color: var(--color-gold);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: var(--color-black);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(201, 168, 76, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(201, 168, 76, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse at center, rgba(0, 0, 0, 0.3) 0%, var(--color-black) 70%);
    z-index: 2;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
    filter: grayscale(100%);
}

/* Greco-Roman columns decoration */
.hero-columns {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 60px;
    z-index: 2;
    opacity: 0.08;
}

.hero-columns.left {
    left: 5%;
    background: repeating-linear-gradient(180deg,
            transparent 0px,
            transparent 20px,
            rgba(201, 168, 76, 0.3) 20px,
            rgba(201, 168, 76, 0.3) 22px);
    border-left: 2px solid rgba(201, 168, 76, 0.2);
    border-right: 2px solid rgba(201, 168, 76, 0.2);
}

.hero-columns.right {
    right: 5%;
    background: repeating-linear-gradient(180deg,
            transparent 0px,
            transparent 20px,
            rgba(201, 168, 76, 0.3) 20px,
            rgba(201, 168, 76, 0.3) 22px);
    border-left: 2px solid rgba(201, 168, 76, 0.2);
    border-right: 2px solid rgba(201, 168, 76, 0.2);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    padding: 0 24px;
}

.hero-logo {
    width: 220px;
    height: auto;
    margin: 0 auto 30px;
    filter: drop-shadow(0 0 40px rgba(201, 168, 76, 0.3));
    animation: heroLogoFloat 6s ease-in-out infinite;
}

@keyframes heroLogoFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.hero h1 {
    margin-bottom: 16px;
    text-shadow: 0 2px 40px rgba(0, 0, 0, 0.8);
}

.hero h1 .gold {
    color: var(--color-gold);
}

.hero-tagline {
    font-family: var(--font-body);
    font-size: 1.3rem;
    font-weight: 300;
    font-style: italic;
    color: var(--color-gray-4);
    margin-bottom: 10px;
    letter-spacing: 0.1em;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.5;
    animation: scrollPulse 2s ease infinite;
}

.hero-scroll-indicator span {
    font-family: var(--font-ui);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-gray-3);
}

.hero-scroll-indicator .arrow {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, var(--color-gold), transparent);
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 0.5;
        transform: translateX(-50%) translateY(0);
    }

    50% {
        opacity: 0.8;
        transform: translateX(-50%) translateY(5px);
    }
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    background: var(--color-dark);
    border-top: 1px solid rgba(201, 168, 76, 0.1);
    border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    filter: grayscale(30%);
    transition: filter var(--transition-slow);
}

.about-image:hover img {
    filter: grayscale(0%);
}

.about-image::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: 10px;
    bottom: 10px;
    border: 1px solid var(--color-gold);
    z-index: 1;
    opacity: 0.3;
    pointer-events: none;
}

.about-text h6 {
    margin-bottom: 8px;
}

.about-text h2 {
    margin-bottom: 20px;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.9;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(201, 168, 76, 0.15);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--color-gold);
    display: block;
}

.stat-label {
    font-family: var(--font-ui);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-gray-3);
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
    background: var(--color-black);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: linear-gradient(145deg, var(--color-dark-2), var(--color-dark));
    border: 1px solid rgba(201, 168, 76, 0.1);
    padding: 40px 30px;
    text-align: center;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(201, 168, 76, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
}

.service-card h3 {
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.service-card p {
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ============================================
   PORTFOLIO / GALLERY
   ============================================ */
.portfolio-section {
    background: var(--color-dark);
    border-top: 1px solid rgba(201, 168, 76, 0.1);
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 8px 20px;
    border: 1px solid var(--color-gray);
    background: transparent;
    color: var(--color-gray-4);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
    border-color: var(--color-gold);
    color: var(--color-gold);
    background: rgba(201, 168, 76, 0.05);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.portfolio-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    cursor: pointer;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all var(--transition-slow);
    filter: grayscale(40%);
}

.portfolio-item:hover img {
    transform: scale(1.08);
    filter: grayscale(0%);
}

.portfolio-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.6) 100%);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.portfolio-item:hover::after {
    opacity: 1;
}

.portfolio-item .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    z-index: 2;
    transform: translateY(20px);
    opacity: 0;
    transition: all var(--transition-base);
}

.portfolio-item:hover .overlay {
    transform: translateY(0);
    opacity: 1;
}

.portfolio-item .overlay span {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-gold);
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border: 1px solid rgba(201, 168, 76, 0.2);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border: 1px solid var(--color-gold);
    background: transparent;
    color: var(--color-gold);
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.lightbox-close:hover {
    background: var(--color-gold);
    color: var(--color-black);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border: 1px solid rgba(201, 168, 76, 0.3);
    background: rgba(0, 0, 0, 0.5);
    color: var(--color-gold);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.lightbox-nav:hover {
    background: var(--color-gold);
    color: var(--color-black);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

/* ============================================
   REVIEWS SECTION
   ============================================ */
.reviews-section {
    background: var(--color-black);
    border-top: 1px solid rgba(201, 168, 76, 0.1);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.review-card {
    background: linear-gradient(145deg, var(--color-dark-2), var(--color-dark-3));
    border: 1px solid rgba(201, 168, 76, 0.08);
    padding: 36px;
    position: relative;
    transition: all var(--transition-base);
}

.review-card:hover {
    border-color: rgba(201, 168, 76, 0.2);
    transform: translateY(-3px);
}

.review-card .quote-mark {
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--color-gold);
    opacity: 0.2;
    line-height: 1;
    position: absolute;
    top: 20px;
    left: 24px;
}

.review-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 16px;
}

.review-stars .star {
    color: var(--color-gold);
    font-size: 0.9rem;
}

.review-text {
    font-size: 1rem;
    font-style: italic;
    line-height: 1.8;
    color: var(--color-gray-4);
    margin-bottom: 20px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--color-dark-4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--color-gold);
    border: 1px solid rgba(201, 168, 76, 0.2);
}

.review-author-info h5 {
    font-size: 0.9rem;
    color: var(--color-white);
}

.review-author-info span {
    font-family: var(--font-ui);
    font-size: 0.7rem;
    color: var(--color-gray-3);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: 100px 0;
    text-align: center;
    background:
        linear-gradient(180deg, var(--color-dark) 0%, var(--color-black) 100%);
    border-top: 1px solid rgba(201, 168, 76, 0.1);
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(201, 168, 76, 0.04) 0%, transparent 60%);
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-contact-info {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.cta-contact-item {
    text-align: center;
}

.cta-contact-item .icon {
    font-size: 1.5rem;
    margin-bottom: 8px;
    display: block;
}

.cta-contact-item h5 {
    font-size: 0.85rem;
    color: var(--color-gold);
    margin-bottom: 4px;
}

.cta-contact-item p {
    font-size: 0.9rem;
    color: var(--color-gray-4);
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    background: var(--color-dark);
    border-top: 1px solid rgba(201, 168, 76, 0.1);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    cursor: pointer;
    transition: color var(--transition-fast);
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-white);
    letter-spacing: 0.03em;
}

.faq-question:hover {
    color: var(--color-gold);
}

.faq-question .icon {
    font-size: 1.2rem;
    color: var(--color-gold);
    transition: transform var(--transition-fast);
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.active .faq-question .icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base), padding var(--transition-base);
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 24px;
}

.faq-answer p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-gray-4);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--color-dark-2);
    border-top: 1px solid rgba(201, 168, 76, 0.15);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-brand img {
    height: 60px;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--color-gray-3);
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gray-4);
    font-size: 1rem;
    transition: all var(--transition-fast);
}

.footer-social a:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
    background: rgba(201, 168, 76, 0.05);
}

.footer-column h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 20px;
    color: var(--color-gold);
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-gray-3);
    transition: color var(--transition-fast);
}

.footer-column ul li a:hover {
    color: var(--color-gold);
}

.footer-bottom {
    border-top: 1px solid rgba(201, 168, 76, 0.1);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-family: var(--font-ui);
    font-size: 0.75rem;
    color: var(--color-gray-3);
    margin: 0;
}

.footer-bottom a {
    font-family: var(--font-ui);
    font-size: 0.75rem;
    color: var(--color-gray-3);
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

/* ============================================
   PAGE-LEVEL HERO (SUB-PAGES)
   ============================================ */
.page-hero {
    padding: 160px 0 80px;
    text-align: center;
    background: linear-gradient(180deg, var(--color-dark-2), var(--color-black));
    border-bottom: 1px solid rgba(201, 168, 76, 0.1);
    position: relative;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center top, rgba(201, 168, 76, 0.05), transparent 60%);
}

.page-hero h1 {
    position: relative;
    z-index: 2;
}

.page-hero p {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 16px auto 0;
    font-size: 1.1rem;
}

.breadcrumb {
    font-family: var(--font-ui);
    font-size: 0.75rem;
    color: var(--color-gray-3);
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.breadcrumb a {
    color: var(--color-gray-3);
}

.breadcrumb a:hover {
    color: var(--color-gold);
}

/* ============================================
   CONTENT PAGES (Privacy, etc)
   ============================================ */
.content-page {
    padding: 60px 0 100px;
    background: var(--color-dark);
}

.content-page .container {
    max-width: 800px;
}

.content-page h2 {
    font-size: 1.6rem;
    margin: 40px 0 16px;
    padding-top: 20px;
    border-top: 1px solid rgba(201, 168, 76, 0.1);
}

.content-page h3 {
    font-size: 1.2rem;
    margin: 24px 0 12px;
}

.content-page h4 {
    font-size: 1.05rem;
    margin: 20px 0 10px;
}

.content-page p,
.content-page li {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-gray-4);
}

.content-page ul {
    padding-left: 20px;
    margin-bottom: 16px;
}

.content-page ul li {
    list-style: disc;
    margin-bottom: 6px;
}

/* ============================================
   ERROR PAGES (404, 500)
   ============================================ */
.error-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
    background: var(--color-black);
}

.error-content h1 {
    font-size: clamp(5rem, 15vw, 12rem);
    color: rgba(201, 168, 76, 0.15);
    line-height: 1;
    margin-bottom: 0;
}

.error-content h2 {
    font-size: 1.6rem;
    margin-bottom: 16px;
}

.error-content p {
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto 30px;
}

/* ============================================
   SERVICES PAGE SPECIFIC
   ============================================ */
.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 60px 0;
    border-bottom: 1px solid rgba(201, 168, 76, 0.08);
}

.service-detail:nth-child(even) {
    direction: rtl;
}

.service-detail:nth-child(even)>* {
    direction: ltr;
}

.service-detail-image {
    aspect-ratio: 4/3;
    overflow: hidden;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%);
    transition: filter var(--transition-slow);
}

.service-detail-image:hover img {
    filter: grayscale(0%);
}

.service-detail-text h3 {
    margin-bottom: 12px;
}

.service-detail-text p {
    margin-bottom: 20px;
}

/* ============================================
   PORTFOLIO PAGE - MASONRY
   ============================================ */
.masonry-grid {
    columns: 4;
    column-gap: 8px;
}

.masonry-item {
    break-inside: avoid;
    margin-bottom: 8px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.masonry-item img {
    width: 100%;
    display: block;
    filter: grayscale(30%);
    transition: all var(--transition-slow);
}

.masonry-item:hover img {
    filter: grayscale(0%);
    transform: scale(1.03);
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info-card {
    background: linear-gradient(145deg, var(--color-dark-2), var(--color-dark-3));
    border: 1px solid rgba(201, 168, 76, 0.1);
    padding: 30px;
    margin-bottom: 20px;
    transition: all var(--transition-base);
}

.contact-info-card:hover {
    border-color: rgba(201, 168, 76, 0.25);
}

.contact-info-card .icon {
    font-size: 1.5rem;
    margin-bottom: 12px;
    display: block;
}

.contact-info-card h4 {
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.contact-info-card p {
    font-size: 0.95rem;
}

.contact-map {
    width: 100%;
    height: 400px;
    border: 1px solid rgba(201, 168, 76, 0.1);
    filter: grayscale(80%) brightness(0.8);
}

.contact-map:hover {
    filter: grayscale(40%) brightness(0.9);
    transition: filter var(--transition-slow);
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-story {
    padding: 80px 0;
}

.about-story-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-story-content p {
    font-size: 1.15rem;
    line-height: 2;
}

.hygiene-section {
    background: var(--color-dark);
    padding: 80px 0;
    border-top: 1px solid rgba(201, 168, 76, 0.1);
}

.hygiene-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.hygiene-card {
    text-align: center;
    padding: 40px 30px;
    background: linear-gradient(145deg, var(--color-dark-2), var(--color-dark-3));
    border: 1px solid rgba(201, 168, 76, 0.08);
}

.hygiene-card .icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
}

.hygiene-card h4 {
    margin-bottom: 10px;
}

/* ============================================
   REVIEWS PAGE
   ============================================ */
.reviews-page-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.review-summary {
    background: linear-gradient(145deg, var(--color-dark-2), var(--color-dark-3));
    border: 1px solid rgba(201, 168, 76, 0.15);
    padding: 40px;
    text-align: center;
    margin-bottom: 50px;
}

.review-summary .big-rating {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 800;
    color: var(--color-gold);
}

.review-summary .total-reviews {
    font-family: var(--font-ui);
    font-size: 0.85rem;
    color: var(--color-gray-3);
    margin-top: 8px;
}

/* ============================================
   ARTIST PROFILE COMPONENT
   ============================================ */
.artist-profile {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.artist-photo {
    position: relative;
}

.artist-photo img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    filter: grayscale(20%) contrast(1.1);
    transition: filter var(--transition-slow);
}

.artist-photo:hover img {
    filter: grayscale(0%) contrast(1.05);
}

.artist-photo-border {
    position: absolute;
    inset: -8px;
    border: 1px solid var(--color-gold);
    pointer-events: none;
}

.artist-photo-border::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    width: 30px;
    height: 30px;
    border-top: 2px solid var(--color-gold);
    border-left: 2px solid var(--color-gold);
}

.artist-photo-border::after {
    content: '';
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 30px;
    height: 30px;
    border-bottom: 2px solid var(--color-gold);
    border-right: 2px solid var(--color-gold);
}

.artist-info h3 {
    font-size: 2.2rem;
    margin-bottom: 4px;
}

.artist-title {
    color: var(--color-gold) !important;
    font-size: 0.85rem !important;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 20px !important;
}

.artist-exp {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 24px;
    padding: 16px 20px;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.08), transparent);
    border-left: 3px solid var(--color-gold);
}

.artist-exp .exp-number {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--color-gold);
    line-height: 1;
}

.artist-exp .exp-label {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-gray-4);
}

.artist-info p {
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 12px;
}

.artist-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.artist-skills span {
    font-family: var(--font-heading);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 6px 16px;
    border: 1px solid rgba(201, 168, 76, 0.25);
    color: var(--color-gold);
    background: rgba(201, 168, 76, 0.04);
    transition: all var(--transition-fast);
}

.artist-skills span:hover {
    background: rgba(201, 168, 76, 0.12);
    border-color: var(--color-gold);
}

/* ============================================
   SERVICE LOGOS GRID
   ============================================ */

.service-logos-section {
    padding: 60px 0 20px;
    background: var(--color-dark);
}

.service-logos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.service-logo-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(201, 168, 76, 0.1);
    border-radius: 16px;
    padding: 30px 20px 24px;
    text-decoration: none;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.service-logo-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-logo-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(201, 168, 76, 0.35);
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(201, 168, 76, 0.12);
}

.service-logo-card:hover::before {
    opacity: 1;
}

.service-logo-img {
    width: 100px;
    height: 100px;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.service-logo-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
    filter: drop-shadow(0 0 8px rgba(201, 168, 76, 0.15));
}

.service-logo-card:hover .service-logo-img img {
    transform: scale(1.1);
    filter: drop-shadow(0 0 16px rgba(201, 168, 76, 0.3));
}

.service-logo-th {
    font-size: 1rem;
    color: var(--color-gold);
    font-weight: 600;
    letter-spacing: 0.03em;
    margin-bottom: 2px;
    position: relative;
    z-index: 1;
}

.service-logo-en {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

/* ============================================
   RESPONSIVE DESIGN — COMPREHENSIVE
   ============================================ */


/* ─── Large Tablets & Small Desktops (1200px) ─── */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }

    .artist-profile {
        gap: 40px;
    }
}

/* ─── Tablets (1024px) ─── */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .masonry-grid {
        columns: 3;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .hero h1 {
        font-size: clamp(2rem, 5vw, 3.2rem);
    }

    .artist-profile {
        gap: 30px;
    }

    .artist-info h3 {
        font-size: 1.8rem;
    }

    .artist-exp .exp-number {
        font-size: 2.2rem;
    }
}

/* ─── Tablets Portrait & Large Phones (768px) ─── */
@media (max-width: 768px) {
    :root {
        --header-height: 60px;
        --section-padding: 50px 0;
    }

    .container {
        padding: 0 20px;
    }

    /* Header */
    .main-nav,
    .header-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .header-logo img {
        width: 45px;
        height: 45px;
    }

    /* Hero */
    .hero {
        min-height: 500px;
        padding: 0 20px;
    }

    .hero-logo {
        width: 140px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero-tagline {
        font-size: 0.9rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .hero-buttons .btn {
        width: 75%;
        text-align: center;
    }

    .hero-scroll-indicator {
        display: none;
    }

    .hero-columns {
        display: none;
    }

    /* Sections */
    section {
        padding: var(--section-padding);
    }

    .section-header {
        margin-bottom: 30px;
    }

    .section-header h2,
    h2 {
        font-size: 1.6rem;
    }

    h3 {
        font-size: 1.2rem;
    }

    /* About */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-image img {
        height: 300px;
    }

    .about-stats {
        flex-wrap: wrap;
        gap: 16px;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .service-card {
        padding: 24px 20px;
    }

    /* Portfolio */
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }

    .masonry-grid {
        columns: 2;
        column-gap: 6px;
    }

    .masonry-item {
        margin-bottom: 6px;
    }

    /* Reviews */
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .reviews-page-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .review-card {
        padding: 24px 20px;
    }

    /* CTA */
    .cta-section {
        padding: 60px 0;
    }

    .cta-content p {
        font-size: 1rem;
    }

    .cta-contact-info {
        flex-direction: column;
        gap: 24px;
    }

    /* FAQ */
    .faq-question {
        font-size: 0.9rem;
        padding: 18px 0;
    }

    .faq-question h3 {
        font-size: 0.95rem;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    /* Services Page */
    .service-detail {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .service-logos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .service-logo-img {
        width: 80px;
        height: 80px;
    }

    .service-logo-th {
        font-size: 0.9rem;
    }

    .service-logo-en {
        font-size: 0.75rem;
    }

    .service-detail:nth-child(even) {
        direction: ltr;
    }

    /* Contact Page */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-map {
        min-height: 300px;
    }

    /* Page Hero */
    .page-hero {
        padding: 120px 20px 50px;
    }

    .page-hero h1 {
        font-size: 1.8rem;
    }

    /* Artist Profile */
    .artist-profile {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 500px;
    }

    .artist-photo {
        max-width: 350px;
        margin: 0 auto;
    }

    .artist-info {
        text-align: center;
    }

    .artist-skills {
        justify-content: center;
    }

    .artist-exp {
        justify-content: center;
        border-left: none;
        border-top: 2px solid var(--color-gold);
        padding: 16px;
    }

    /* Hygiene */
    .hygiene-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .hygiene-card {
        padding: 24px 20px;
    }

    /* Content Pages */
    .content-page .container {
        padding: 0 20px;
    }

    .content-page h2 {
        font-size: 1.3rem;
    }

    /* Lightbox */
    .lightbox img {
        max-width: 95vw;
        max-height: 85vh;
    }

    .lightbox-close {
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .lightbox-nav {
        width: 40px;
        height: 40px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }
}

/* ─── Medium Phones (600px) ─── */
@media (max-width: 600px) {
    .hero h1 {
        font-size: 1.6rem;
    }

    .hero-logo {
        width: 120px;
    }

    .hero-buttons .btn {
        width: 85%;
        padding: 12px 20px;
        font-size: 0.75rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .review-summary {
        padding: 24px 16px;
    }

    .review-summary .big-rating {
        font-size: 3rem;
    }

    .artist-info h3 {
        font-size: 1.6rem;
    }

    .artist-exp .exp-number {
        font-size: 2rem;
    }

    .contact-info-card {
        padding: 20px 16px;
    }
}

/* ─── Small Phones (480px) ─── */
@media (max-width: 480px) {
    :root {
        --header-height: 55px;
    }

    .container {
        padding: 0 16px;
    }

    h1 {
        font-size: 1.5rem;
    }

    h2,
    .section-header h2 {
        font-size: 1.3rem;
    }

    h3 {
        font-size: 1.05rem;
    }

    .hero {
        min-height: 460px;
    }

    .hero-logo {
        width: 110px;
    }

    .hero h1 {
        font-size: 1.4rem;
    }

    .hero-tagline {
        font-size: 0.8rem;
    }

    .hero-buttons .btn {
        width: 90%;
        padding: 11px 16px;
    }

    .about-image img {
        height: 250px;
    }

    .about-stats {
        gap: 12px;
    }

    .stat-item {
        flex: 1 1 40%;
        min-width: 0;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.65rem;
    }

    .service-card {
        padding: 20px 16px;
    }

    .service-logo-card {
        padding: 20px 14px 18px;
    }

    .service-logo-img {
        width: 70px;
        height: 70px;
    }

    .service-logo-th {
        font-size: 0.8rem;
    }

    .service-logo-en {
        font-size: 0.65rem;
    }

    .service-icon {
        font-size: 1.6rem;
    }

    .portfolio-filters {
        gap: 6px;
    }

    .filter-btn {
        padding: 6px 12px;
        font-size: 0.6rem;
    }

    .review-card {
        padding: 20px 16px;
    }

    .review-text {
        font-size: 0.9rem;
    }

    .review-card .quote-mark {
        font-size: 2.5rem;
        top: 12px;
        left: 12px;
    }

    .cta-section {
        padding: 50px 0;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
    }

    .page-hero {
        padding: 100px 16px 40px;
    }

    .page-hero h1 {
        font-size: 1.5rem;
    }

    .page-hero p {
        font-size: 0.9rem;
    }

    .artist-profile {
        max-width: 100%;
    }

    .artist-photo {
        max-width: 280px;
    }

    .artist-info h3 {
        font-size: 1.4rem;
    }

    .artist-exp {
        padding: 12px;
    }

    .artist-exp .exp-number {
        font-size: 1.8rem;
    }

    .artist-skills span {
        font-size: 0.55rem;
        padding: 5px 10px;
    }

    .hygiene-card {
        padding: 20px 16px;
    }

    .hygiene-card .icon {
        font-size: 2rem;
    }

    .error-content h1 {
        font-size: 5rem;
    }

    .error-content h2 {
        font-size: 1.2rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.7rem;
    }

    .btn-primary {
        padding: 11px 22px;
    }

    .gold-line {
        width: 40px;
    }

    .footer-column h4 {
        font-size: 0.75rem;
        margin-bottom: 12px;
    }

    .footer-column ul li a {
        font-size: 0.85rem;
    }

    .footer-brand img {
        height: 50px;
    }

    .footer-brand p {
        font-size: 0.85rem;
    }
}

/* ─── Extra Small Phones (360px & under) ─── */
@media (max-width: 360px) {
    :root {
        --header-height: 50px;
    }

    .container {
        padding: 0 12px;
    }

    h1 {
        font-size: 1.3rem;
    }

    h2,
    .section-header h2 {
        font-size: 1.15rem;
    }

    h3 {
        font-size: 0.95rem;
    }

    .header-logo img {
        width: 38px;
        height: 38px;
    }

    .hero {
        min-height: 420px;
    }

    .hero-logo {
        width: 90px;
    }

    .hero h1 {
        font-size: 1.2rem;
        letter-spacing: 0.05em;
    }

    .hero-tagline {
        font-size: 0.75rem;
    }

    .hero-buttons .btn {
        width: 95%;
        font-size: 0.65rem;
        padding: 10px 14px;
    }

    .about-image img {
        height: 220px;
    }

    .stat-number {
        font-size: 1.3rem;
    }

    .service-card {
        padding: 16px 12px;
    }

    .service-card h3 {
        font-size: 0.9rem;
    }

    .service-card p {
        font-size: 0.85rem;
    }

    .review-card {
        padding: 16px 12px;
    }

    .review-text {
        font-size: 0.85rem;
    }

    .review-author-avatar {
        width: 36px;
        height: 36px;
        font-size: 0.85rem;
    }

    .faq-question {
        font-size: 0.8rem;
        padding: 14px 0;
    }

    .faq-question h3 {
        font-size: 0.85rem;
    }

    .faq-answer p {
        font-size: 0.85rem;
    }

    .page-hero {
        padding: 90px 12px 30px;
    }

    .page-hero h1 {
        font-size: 1.3rem;
    }

    .page-hero p {
        font-size: 0.8rem;
    }

    .breadcrumb {
        font-size: 0.65rem;
    }

    .artist-photo {
        max-width: 240px;
    }

    .artist-info h3 {
        font-size: 1.2rem;
    }

    .artist-exp .exp-number {
        font-size: 1.5rem;
    }

    .artist-skills span {
        font-size: 0.5rem;
        padding: 4px 8px;
    }

    .contact-info-card {
        padding: 16px 12px;
    }

    .contact-map {
        min-height: 250px;
    }

    .btn {
        padding: 9px 16px;
        font-size: 0.65rem;
    }

    .btn.btn-sm {
        padding: 6px 12px;
        font-size: 0.6rem;
    }

    .footer-brand img {
        height: 40px;
    }

    .footer-column h4 {
        font-size: 0.7rem;
    }

    .footer-column ul li a {
        font-size: 0.8rem;
    }

    .footer-bottom p,
    .footer-bottom a {
        font-size: 0.65rem;
    }
}

/* ─── Mobile Nav Overlay Responsive ─── */
@media (max-width: 768px) {
    .mobile-nav-overlay a {
        font-size: 1.2rem;
        padding: 12px 0;
    }
}

@media (max-width: 480px) {
    .mobile-nav-overlay a {
        font-size: 1rem;
        padding: 10px 0;
    }
}

/* ─── Landscape Mode ─── */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        padding-top: var(--header-height);
    }

    .hero-logo {
        width: 80px;
    }

    .hero h1 {
        font-size: 1.4rem;
        margin-bottom: 6px;
    }

    .hero-buttons {
        flex-direction: row;
    }

    .hero-buttons .btn {
        width: auto;
    }

    .page-hero {
        padding: 90px 20px 30px;
    }
}

/* ─── Touch Device Optimizations ─── */
@media (hover: none) {
    .portfolio-item img {
        filter: grayscale(0%);
    }

    .masonry-item img {
        filter: grayscale(0%);
    }

    .portfolio-item .overlay {
        opacity: 1;
        transform: translateY(0);
    }

    .portfolio-item::after {
        opacity: 1;
    }
}