/* ============================================
   AREA 740 TATTOO — Custom Styles
   Palette: Midnight Blue (#0a1628) + Mint (#a7f3d0)
   Fonts: Playfair Display (serif) + Inter (sans)
   ============================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #e2e8f0;
    background-color: #0a1628;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul, ol {
    list-style: none;
}

/* ---------- Utility ---------- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.serif-italic {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-weight: 400;
}

/* ---------- Section Headers ---------- */
.section__eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #a7f3d0;
    margin-bottom: 12px;
}

.section__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 700;
    line-height: 1.15;
    color: #f1f5f9;
    margin-bottom: 20px;
}

.section__header--center {
    text-align: center;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 14px 28px;
    border-radius: 4px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.btn--primary {
    background: #a7f3d0;
    color: #0a1628;
}

.btn--primary:hover {
    background: #6ee7b7;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(167, 243, 208, 0.25);
}

.btn--ghost {
    background: transparent;
    color: #f1f5f9;
    border: 1px solid rgba(241, 245, 249, 0.3);
}

.btn--ghost:hover {
    border-color: #a7f3d0;
    color: #a7f3d0;
    transform: translateY(-2px);
}

.btn--full {
    width: 100%;
    justify-content: center;
}

/* ========== NAVIGATION ========== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 24px;
    transition: background 0.4s ease, box-shadow 0.4s ease;
}

.nav.scrolled {
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(167, 243, 208, 0.1);
}

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

.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: #f1f5f9;
    z-index: 1001;
}

.nav__logo-mark {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #a7f3d0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #a7f3d0;
    border-radius: 4px;
}

.nav__logo-text {
    letter-spacing: 0.02em;
}

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

.nav__link {
    font-size: 0.875rem;
    font-weight: 500;
    color: #94a3b8;
    letter-spacing: 0.03em;
    transition: color 0.3s ease;
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: #a7f3d0;
    transition: width 0.3s ease;
}

.nav__link:hover {
    color: #f1f5f9;
}

.nav__link:hover::after {
    width: 100%;
}

.nav__link--cta {
    background: #a7f3d0;
    color: #0a1628;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.3s ease;
}

.nav__link--cta::after {
    display: none;
}

.nav__link--cta:hover {
    background: #6ee7b7;
    color: #0a1628;
    transform: translateY(-1px);
}

/* Hamburger */
.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    height: 28px;
    justify-content: center;
    align-items: flex-end;
    z-index: 1001;
    padding: 4px;
}

.nav__toggle-line {
    display: block;
    width: 100%;
    height: 2px;
    background: #f1f5f9;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.nav__toggle[aria-expanded="true"] .nav__toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(4px, 5px);
}

.nav__toggle[aria-expanded="true"] .nav__toggle-line:nth-child(2) {
    opacity: 0;
}

.nav__toggle[aria-expanded="true"] .nav__toggle-line:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: rgba(10, 22, 40, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu__link {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.75rem;
    color: #94a3b8;
    transition: color 0.3s ease;
}

.mobile-menu__link:hover {
    color: #a7f3d0;
}

.mobile-menu__link--cta {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    background: #a7f3d0;
    color: #0a1628;
    padding: 14px 32px;
    border-radius: 4px;
    margin-top: 16px;
    font-weight: 600;
}

/* ========== HERO ========== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 120px 24px 80px;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(135deg, 
            #0a1628 0%, 
            #0d2137 25%, 
            #0f2b4a 50%, 
            #0a3d3a 75%, 
            #0a1628 100%);
    background-size: 400% 400%;
    animation: heroGradient 12s ease infinite;
}

@keyframes heroGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 60% at 50% 40%, rgba(167, 243, 208, 0.06) 0%, transparent 70%),
        radial-gradient(ellipse 50% 40% at 80% 20%, rgba(14, 116, 144, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse 40% 30% at 10% 80%, rgba(167, 243, 208, 0.08) 0%, transparent 50%);
}

.hero__content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 820px;
}

.hero__eyebrow {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #a7f3d0;
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 0.2s;
}

.hero__headline {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 900;
    line-height: 1.08;
    color: #f1f5f9;
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 0.4s;
}

.hero__headline-accent {
    color: #a7f3d0;
    font-style: italic;
    font-weight: 400;
}

.hero__subheadline {
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.7;
    color: #94a3b8;
    max-width: 560px;
    margin: 0 auto 40px;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 0.6s;
}

.hero__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 0.8s;
}

.hero__trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin-top: 56px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 1s;
}

.hero__trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: #64748b;
    letter-spacing: 0.04em;
}

.hero__trust-item svg {
    color: #a7f3d0;
    flex-shrink: 0;
}

.hero__scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #475569;
    font-size: 0.6875rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeIn 0.8s ease forwards 1.4s;
}

.hero__scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, #a7f3d0, transparent);
    animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.4; transform: scaleY(0.6); }
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ========== SERVICES ========== */
.services {
    padding: 120px 0;
    background: #0a1628;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 56px;
}

.service-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(167, 243, 208, 0.08);
    border-radius: 8px;
    padding: 40px 32px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #a7f3d0, transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover {
    border-color: rgba(167, 243, 208, 0.2);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-4px);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card__icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(167, 243, 208, 0.2);
    border-radius: 8px;
    color: #a7f3d0;
    margin-bottom: 24px;
    transition: background 0.3s ease;
}

.service-card:hover .service-card__icon {
    background: rgba(167, 243, 208, 0.1);
}

.service-card__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.375rem;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 12px;
}

.service-card__desc {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #94a3b8;
}

/* ========== GALLERY ========== */
.gallery {
    padding: 120px 0;
    background: #070f1a;
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto;
    gap: 16px;
    margin-top: 56px;
}

.gallery__item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery__item:hover img {
    transform: scale(1.05);
}

.gallery__item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 22, 40, 0.85) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery__item:hover .gallery__item-overlay {
    opacity: 1;
}

.gallery__item-overlay span {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.125rem;
    color: #a7f3d0;
    font-style: italic;
}

.gallery__item--wide {
    grid-column: span 7;
}

.gallery__item:not(.gallery__item--wide) {
    grid-column: span 5;
}

/* ========== ABOUT ========== */
.about {
    padding: 120px 0;
    background: #0a1628;
}

.about__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about__image-wrapper {
    position: relative;
}

.about__image-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
}

.about__image-accent {
    position: absolute;
    top: -16px;
    left: -16px;
    right: 16px;
    bottom: 16px;
    border: 1px solid rgba(167, 243, 208, 0.2);
    border-radius: 8px;
    z-index: -1;
}

.about__content {
    max-width: 480px;
}

.about__body {
    font-size: 1rem;
    line-height: 1.8;
    color: #94a3b8;
    margin-bottom: 20px;
}

.about__stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(148, 163, 184, 0.15);
}

.about__stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.about__stat-number {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: #a7f3d0;
    line-height: 1;
}

.about__stat-label {
    font-size: 0.8125rem;
    color: #64748b;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* ========== PROCESS ========== */
.process {
    padding: 120px 0;
    background: #070f1a;
}

.process__steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 56px;
}

.process__step {
    position: relative;
    padding: 32px 24px;
}

.process__step-number {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 3rem;
    font-weight: 700;
    color: rgba(167, 243, 208, 0.12);
    line-height: 1;
    margin-bottom: 16px;
}

.process__step-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 12px;
}

.process__step-desc {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #94a3b8;
}

/* ========== TESTIMONIAL ========== */
.testimonial-strip {
    padding: 100px 0;
    background: linear-gradient(135deg, #0d2137 0%, #0a1628 100%);
    border-top: 1px solid rgba(167, 243, 208, 0.08);
    border-bottom: 1px solid rgba(167, 243, 208, 0.08);
}

.testimonial-strip__inner {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.testimonial-strip__quote {
    position: absolute;
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
    color: #a7f3d0;
}

.testimonial-strip__text {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-style: italic;
    line-height: 1.6;
    color: #e2e8f0;
    margin-bottom: 32px;
}

.testimonial-strip__attribution {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.testimonial-strip__name {
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #a7f3d0;
}

.testimonial-strip__location {
    font-size: 0.8125rem;
    color: #64748b;
}

/* ========== CONTACT ========== */
.contact {
    padding: 120px 0;
    background: #0a1628;
}

.contact__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.contact__body {
    font-size: 1rem;
    line-height: 1.8;
    color: #94a3b8;
    margin-bottom: 40px;
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact__detail {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact__detail-label {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #475569;
}

.contact__detail a {
    font-size: 1rem;
    color: #e2e8f0;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: color 0.3s ease;
}

.contact__detail a:hover {
    color: #a7f3d0;
}

.contact__detail svg {
    color: #a7f3d0;
    flex-shrink: 0;
}

/* Contact Form */
.contact__form-wrapper {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(167, 243, 208, 0.1);
    border-radius: 12px;
    padding: 40px;
}

.contact__form-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 32px;
}

.form__group {
    margin-bottom: 20px;
}

.form__label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 500;
    color: #94a3b8;
    margin-bottom: 8px;
    letter-spacing: 0.03em;
}

.form__input,
.form__textarea {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 6px;
    color: #f1f5f9;
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    line-height: 1.5;
    transition: border-color 0.3s ease, background 0.3s ease;
    outline: none;
}

.form__input::placeholder,
.form__textarea::placeholder {
    color: #475569;
}

.form__input:focus,
.form__textarea:focus {
    border-color: #a7f3d0;
    background: rgba(167, 243, 208, 0.04);
}

.form__textarea {
    resize: vertical;
    min-height: 120px;
}

.form__success {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    padding: 16px 20px;
    background: rgba(167, 243, 208, 0.08);
    border: 1px solid rgba(167, 243, 208, 0.2);
    border-radius: 6px;
    color: #a7f3d0;
    font-size: 0.9375rem;
    font-weight: 500;
}

/* ========== MAP ========== */
.map-section {
    border-top: 1px solid rgba(167, 243, 208, 0.08);
}

.map-section__inner {
    filter: saturate(0.4) brightness(0.7) contrast(1.2);
    transition: filter 0.4s ease;
}

.map-section__inner:hover {
    filter: saturate(0.6) brightness(0.8) contrast(1.1);
}

.map-section iframe {
    width: 100%;
    height: 400px;
}

/* ========== FOOTER ========== */
.footer {
    padding: 64px 0 32px;
    background: #070f1a;
    border-top: 1px solid rgba(148, 163, 184, 0.08);
}

.footer__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.footer__brand {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer__brand-name {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: #f1f5f9;
}

.footer__tagline {
    font-size: 0.875rem;
    color: #64748b;
    margin-top: 4px;
}

.footer__nav {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.footer__nav a {
    font-size: 0.875rem;
    color: #94a3b8;
    transition: color 0.3s ease;
}

.footer__nav a:hover {
    color: #a7f3d0;
}

.footer__bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(148, 163, 184, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer__bottom p {
    font-size: 0.8125rem;
    color: #475569;
}

/* ========== SCROLL ANIMATIONS ========== */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .about__layout {
        gap: 48px;
    }

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

    .gallery__item--wide {
        grid-column: span 12;
    }

    .gallery__item:not(.gallery__item--wide) {
        grid-column: span 6;
    }
}

@media (max-width: 768px) {
    .nav__menu {
        display: none;
    }

    .nav__toggle {
        display: flex;
    }

    .hero {
        padding: 100px 20px 80px;
    }

    .hero__trust {
        gap: 20px;
    }

    .services,
    .gallery,
    .about,
    .process,
    .contact {
        padding: 80px 0;
    }

    .about__layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about__image-wrapper img {
        height: 360px;
    }

    .about__image-accent {
        top: -12px;
        left: -12px;
        right: 12px;
        bottom: 12px;
    }

    .about__stats {
        gap: 24px;
    }

    .contact__layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .contact__form-wrapper {
        padding: 28px;
    }

    .process__steps {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .process__step {
        padding: 20px 0;
    }

    .gallery__item--wide,
    .gallery__item:not(.gallery__item--wide) {
        grid-column: span 12;
    }

    .gallery__grid {
        gap: 12px;
    }

    .footer__top {
        flex-direction: column;
        gap: 24px;
    }

    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero__actions {
        flex-direction: column;
        width: 100%;
    }

    .hero__actions .btn {
        width: 100%;
        justify-content: center;
    }

    .hero__trust {
        flex-direction: column;
        gap: 12px;
    }

    .service-card {
        padding: 28px 24px;
    }

    .about__stats {
        flex-direction: column;
        gap: 20px;
    }
}
