:root {
    --tt-ink: #0d0d0c;
    --tt-charcoal: #171614;
    --tt-ash: #57534c;
    --tt-ivory: #f7f4ee;
    --tt-paper: #ffffff;
    --tt-line: rgba(18, 18, 18, 0.12);
    --tt-gold: #c7a14a;
    --tt-bone: #e9e3d8;
    --tt-red: #8f2c24;
    --tt-heading: 'Bebas Neue', sans-serif;
    --tt-serif: 'Cormorant Garamond', serif;
    --tt-body: 'Inter', 'Poppins', sans-serif;
    --tt-page-border-y: 20px;
    --tt-page-border-x: 20px;
    --tt-page-border-color: #ffffff;
}

body {
    background: var(--tt-ivory);
    color: var(--tt-ink);
    font-family: var(--tt-body);
    letter-spacing: 0;
}

body > section {
    position: relative;
    box-sizing: border-box;
    border-style: solid;
    border-color: var(--tt-page-border-color);
    border-width: var(--tt-page-border-y) var(--tt-page-border-x);
}

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

a {
    color: inherit;
}

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

.section-padding {
    padding: 110px 0;
}

.bg-dark {
    background:
        linear-gradient(135deg, rgba(143, 44, 36, 0.12), transparent 34%),
        linear-gradient(180deg, #11100f 0%, #1c1a17 100%);
    color: var(--tt-paper);
}

.gold,
.section-label,
.timeline-year,
.stars {
    color: var(--tt-gold);
}

.page-hero,
.blog-single-header {
    position: relative;
    min-height: 540px;
    padding: 115px 0 64px;
    display: flex;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
    background: #12110f;
}

.page-hero::before,
.blog-single-header::before {
    content: '';
    position: absolute;
    inset: 14px;
    z-index: -2;
    background:
        linear-gradient(90deg, rgba(247, 244, 238, 0.96) 0%, rgba(247, 244, 238, 0.86) 34%, rgba(13, 13, 12, 0.28) 70%),
        url('../images/hero.png') center right / cover no-repeat;
}

.page-hero::after,
.blog-single-header::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    border: 14px solid #fff;
    pointer-events: none;
}

.page-hero .container,
.blog-single-header .container {
    margin-left: max(40px, calc((100vw - 1180px) / 2));
    max-width: 560px;
    width: calc(100% - 80px);
    padding: 46px 42px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(17, 17, 17, 0.08);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.page-title,
.blog-single-title,
.section-title,
.book-cta-content h2,
.cta-content h2,
.booking-info h2 {
    font-family: var(--tt-heading);
    font-weight: 400;
    line-height: 0.95;
    letter-spacing: 0;
    text-transform: uppercase;
}

.page-title {
    font-size: clamp(3.2rem, 8vw, 6.7rem);
}

.blog-single-title {
    font-size: clamp(2.9rem, 7vw, 5.8rem);
}

.page-subtitle {
    margin-top: 18px;
    color: var(--tt-ash);
    font-family: var(--tt-serif);
    font-size: clamp(1.25rem, 2.2vw, 1.75rem);
    line-height: 1.25;
}

.gold-line,
.gold-line-center {
    width: 84px;
    height: 3px;
    margin: 22px 0;
    background: linear-gradient(90deg, var(--tt-gold), var(--tt-red));
}

.gold-line-center {
    margin-left: 0;
}

.section-header {
    max-width: 760px;
    margin: 0 auto 52px;
    text-align: center;
}

.section-header .gold-line-center {
    margin-left: auto;
    margin-right: auto;
}

.section-label {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.section-title {
    font-size: clamp(2.8rem, 6vw, 5.2rem);
}

.story-grid,
.booking-wrapper {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.88fr);
    gap: 54px;
    align-items: center;
}

.story-content {
    max-width: 650px;
}

.story-content p,
.desc-content p,
.blog-single-content p,
.timeline-content p,
.testimonial-text,
.blog-excerpt,
.booking-steps p,
.cta-content p,
.book-cta-content p {
    color: var(--tt-ash);
    font-size: 1rem;
    line-height: 1.85;
}

.story-image,
.booking-form-wrapper,
.booking-info,
.desc-content,
.testimonial-card,
.blog-card {
    background: var(--tt-paper);
    border: 1px solid var(--tt-line);
    box-shadow: 0 20px 60px rgba(24, 20, 16, 0.09);
}

.story-image {
    aspect-ratio: 4 / 5;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.timeline {
    position: relative;
    max-width: 880px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 120px;
    width: 1px;
    background: rgba(255, 255, 255, 0.18);
}

.timeline-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 34px;
    padding: 26px 0;
}

.timeline-year {
    font-family: var(--tt-heading);
    font-size: 2.6rem;
    line-height: 1;
}

.timeline-content {
    padding: 28px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.timeline-content h3,
.testimonial-name,
.blog-title,
.booking-steps h4,
.booking-contact h3,
.category-overlay h3 {
    font-family: var(--tt-serif);
    font-weight: 700;
}

.testimonial-grid,
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

.testimonial-card {
    padding: 34px;
}

.stars {
    margin-bottom: 18px;
    letter-spacing: 0.1em;
}

.testimonial-name {
    margin-top: 20px;
    font-size: 1.35rem;
}

.blog-card {
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 75px rgba(24, 20, 16, 0.15);
}

.blog-image {
    width: 100%;
    height: 285px;
    object-fit: cover;
}

.blog-content {
    padding: 26px;
}

.blog-meta {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    color: #7a746c;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
}

.blog-title {
    margin: 16px 0 12px;
    font-size: 1.55rem;
    line-height: 1.1;
}

.blog-title a,
.read-more {
    text-decoration: none;
}

.read-more,
.btn-black,
.btn-gold,
.btn-submit,
.view-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 12px 22px;
    border: 1px solid var(--tt-ink);
    background: var(--tt-ink);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.read-more {
    margin-top: 18px;
}

.read-more:hover,
.btn-black:hover,
.btn-submit:hover {
    transform: translateY(-2px);
    background: var(--tt-gold);
    border-color: var(--tt-gold);
    color: var(--tt-ink);
}

.btn-gold {
    border-color: var(--tt-gold);
    background: var(--tt-gold);
    color: var(--tt-ink);
}

.btn-gold:hover {
    transform: translateY(-2px);
    background: #fff;
    border-color: #fff;
}

.masonry-grid,
.masonry-gallery {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.masonry-item:nth-child(2n) {
    transform: translateY(36px);
}

.masonry-item a {
    text-decoration: none;
}

.category-card-full,
.category-image,
.gallery-item {
    position: relative;
    overflow: hidden;
    background: #111;
}

.category-image {
    aspect-ratio: 3 / 4;
}

.category-image img,
.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.category-overlay,
.gallery-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    color: #fff;
    background: linear-gradient(180deg, transparent 28%, rgba(0, 0, 0, 0.82) 100%);
}

.category-overlay h3 {
    font-size: 1.7rem;
    line-height: 1;
}

.category-overlay p {
    margin: 8px 0 16px;
    color: rgba(255, 255, 255, 0.74);
}

.category-card-full:hover img,
.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item {
    aspect-ratio: 1 / 1.2;
}

.gallery-overlay {
    align-items: center;
    justify-content: center;
    opacity: 0;
    background: rgba(0, 0, 0, 0.42);
    transition: opacity 0.3s ease;
    font-size: 1.4rem;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-section.bg-dark {
    position: relative;
    background: #ffffff;
    color: #111111;
    padding: 44px;
}

.gallery-section.bg-dark::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 44px solid #ffffff;
    pointer-events: none;
    z-index: 2;
}

.gallery-section.bg-dark .container {
    width: 100%;
    max-width: none;
    padding: 0;
}

.gallery-section.bg-dark .masonry-gallery {
    columns: 4 260px;
    column-gap: 8px;
    display: block;
}

.gallery-section.bg-dark .gallery-item {
    aspect-ratio: auto;
    border: 0;
    margin: 0 0 8px;
    break-inside: avoid;
    background: #111111;
    min-height: 0;
}

.gallery-section.bg-dark .gallery-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    background: #111111;
}

.gallery-section.bg-dark .gallery-overlay {
    display: none;
}

.category-description {
    padding-bottom: 80px;
}

.desc-content {
    max-width: 920px;
    margin: 0 auto;
    padding: 42px;
}

.breadcrumb {
    margin-bottom: 18px;
    color: #756e64;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.breadcrumb a {
    text-decoration: none;
    color: var(--tt-ink);
}

.blog-single-content {
    width: min(860px, calc(100% - 40px));
    margin: 0 auto;
    padding: 100px 0;
}

.blog-single-content h2 {
    margin: 42px 0 16px;
    font-family: var(--tt-serif);
    font-size: 2.1rem;
}

.blog-single-content ul {
    margin: 18px 0 24px 22px;
    color: var(--tt-ash);
    line-height: 1.8;
}

.category-hero::before {
    background-image:
        linear-gradient(90deg, rgba(255,255,255,0.72) 0%, rgba(255,255,255,0.36) 42%, rgba(0,0,0,0.08) 100%),
        var(--category-hero-image);
    background-position: center, center;
    background-size: cover, cover;
    background-repeat: no-repeat, no-repeat;
    background-attachment: fixed, fixed;
}

.category-description {
    position: relative;
    background-image:
        linear-gradient(90deg, rgba(255,255,255,0.86), rgba(255,255,255,0.52)),
        var(--category-hero-image);
    background-position: center, center;
    background-size: cover, cover;
    background-repeat: no-repeat, no-repeat;
    background-attachment: fixed, fixed;
    overflow: hidden;
}

.cat-detail-intro {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
    gap: 34px;
    align-items: stretch;
}

.cat-detail-intro .desc-content {
    margin: 0;
    max-width: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cat-detail-intro .desc-content .btn-black {
    width: fit-content;
    margin-top: 24px;
}

.cat-detail-image {
    min-height: 480px;
    border: 1px solid var(--tt-line);
    overflow: hidden;
    background: #111111;
}

.cat-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cat-manual-slider {
    position: relative;
    width: min(1180px, 100%);
    margin: 0 auto;
    padding: 34px;
    background: rgba(255,255,255,0.94);
}

.cat-manual-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 24px;
}

.cat-manual-head h2 {
    margin: 0;
    font-family: var(--tt-body);
    font-size: clamp(2rem, 3vw, 3.2rem);
    font-weight: 900;
    line-height: 1.05;
}

.cat-manual-controls {
    display: flex;
    gap: 10px;
}

.cat-manual-arrow {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #111111;
    background: #111111;
    color: #ffffff;
    cursor: pointer;
}

.cat-manual-arrow:hover {
    background: #ffffff;
    color: #111111;
}

.cat-manual-viewport {
    overflow-x: auto;
    overflow-y: hidden;
    cursor: grab;
    user-select: none;
    scrollbar-width: none;
}

.cat-manual-viewport::-webkit-scrollbar {
    display: none;
}

.cat-manual-viewport.is-dragging {
    cursor: grabbing;
}

.cat-manual-track {
    display: flex;
    gap: 18px;
    transition: transform 0.35s ease;
    will-change: transform;
}

.cat-manual-slide {
    flex: 0 0 min(72vw, 720px);
    height: 460px;
    background: #111111;
    overflow: hidden;
}

.cat-manual-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.cat-image-slider-section {
    background: #ffffff;
}

.cat-image-slider {
    position: relative;
    overflow: hidden;
    background: #111111;
}

.cat-image-viewport {
    overflow: hidden;
}

.cat-image-viewport.is-dragging {
    cursor: grabbing;
}

.cat-image-track {
    display: flex;
    width: max-content;
    animation: catImageMarquee 34s linear infinite;
}

.cat-image-slide {
    flex: 0 0 52vw;
    height: 520px;
    border-right: 1px solid #ffffff;
    background: #111111;
    overflow: hidden;
}

.cat-image-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

@keyframes catImageMarquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.cat-faq-section {
    background: #ffffff;
}

.cat-faq-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    width: 100%;
}

.cat-faq-content {
    padding: 0 clamp(28px, 5vw, 88px) 0 0;
}

.cat-faq-empty {
    min-height: 1px;
}

.cat-faq-heading {
    max-width: 760px;
    margin: 0 0 36px 0;
    text-align: left;
}

.cat-faq-heading .gold-line-center {
    margin-left: 0;
    margin-right: auto;
}

.cat-faq-list {
    border-top: 1px solid #111111;
}

.cat-faq-item {
    border-bottom: 1px solid #111111;
    background: #ffffff;
}

.cat-faq-item summary {
    position: relative;
    padding: 24px 54px 24px 0;
    color: #111111;
    font-family: var(--tt-body);
    font-size: clamp(1rem, 1.5vw, 1.28rem);
    font-weight: 800;
    line-height: 1.35;
    cursor: pointer;
    list-style: none;
}

.cat-faq-item summary::-webkit-details-marker {
    display: none;
}

.cat-faq-item summary::after {
    content: '+';
    position: absolute;
    top: 22px;
    right: 10px;
    font-size: 1.6rem;
    line-height: 1;
    font-weight: 500;
}

.cat-faq-item[open] summary::after {
    content: '-';
}

.cat-faq-item p {
    max-width: 860px;
    padding: 0 54px 24px 0;
    color: #555555;
    line-height: 1.75;
}

.cat-related-slider {
    padding: 76px 0 90px;
    background: #ffffff;
    overflow: hidden;
}

.cat-related-slider h2 {
    margin-bottom: 34px;
    font-family: var(--tt-body);
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 900;
}

.cat-related-track {
    display: flex;
    gap: 16px;
    padding: 0 40px;
    width: max-content;
    overflow: visible;
    animation: catRelatedMarquee 38s linear infinite;
}

.cat-related-track:hover {
    animation-play-state: paused;
}

@keyframes catRelatedMarquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(calc(-50% - 8px));
    }
}

.cat-related-card {
    position: relative;
    flex: 0 0 282px;
    height: 376px;
    overflow: hidden;
    border-radius: 8px;
    color: #ffffff;
    text-decoration: none;
    background: #111111;
}

.cat-related-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.cat-related-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 28%, rgba(0,0,0,0.86) 100%);
}

.cat-related-card div {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 1;
}

.cat-related-card h3 {
    margin-bottom: 10px;
    font-family: var(--tt-body);
    font-size: 1.28rem;
    line-height: 1.08;
    font-weight: 900;
}

.cat-related-card p {
    margin-bottom: 22px;
    color: rgba(255,255,255,0.88);
    font-size: 0.78rem;
    line-height: 1.25;
}

.cat-related-card span {
    font-size: 0.78rem;
    font-weight: 800;
}

.cat-related-card:hover img {
    transform: scale(1.06);
}

.cat-booking-slot {
    min-height: 680px;
    padding: 0;
    display: flex;
    align-items: center;
    background:
        linear-gradient(90deg, rgba(0,0,0,0.46), rgba(0,0,0,0.08)),
        url('../images/mbragion-tattoo-artist-556036.jpg') center right / cover no-repeat;
}

.cat-booking-panel {
    width: min(520px, calc(100% - 88px));
    max-height: 440px;
    margin-left: max(44px, 4vw);
    overflow-y: auto;
    background: #ffffff;
    box-shadow: 0 24px 70px rgba(0,0,0,0.25);
}

.cat-booking-panel h2 {
    margin: 0;
    padding: 22px 20px;
    background: #f2f2f2;
    font-family: var(--tt-body);
    font-size: 1.45rem;
    font-weight: 500;
}

.cat-slot-form {
    padding: 20px;
}

.cat-slot-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 18px;
}

.cat-slot-form label {
    display: block;
}

.cat-slot-label,
.cat-slot-form label > span {
    display: block;
    margin-bottom: 8px;
    color: #111111;
    font-size: 0.78rem;
    font-weight: 500;
}

.cat-slot-form input,
.cat-slot-form select {
    width: 100%;
    min-height: 34px;
    padding: 7px 9px;
    border: 1px solid #cfcfcf;
    background: #ffffff;
    color: #111111;
    font-family: var(--tt-body);
    font-size: 0.82rem;
}

.cat-slot-form label label,
.cat-slot-form label span:last-child {
    margin-top: 5px;
}

.cat-slot-row label > span:not(.cat-slot-label) {
    margin-top: 5px;
    margin-bottom: 0;
    color: #555555;
    font-size: 0.68rem;
    font-weight: 400;
}

.cat-slot-form em {
    display: block;
    margin-top: 6px;
    color: #ff3158;
    font-size: 0.68rem;
    font-style: normal;
}

.cat-slot-upload {
    margin-bottom: 18px;
}

.cat-slot-upload label {
    padding: 14px;
    border: 1px dashed #bdbdbd;
    background: #fafafa;
    cursor: pointer;
}

.cat-slot-upload input {
    display: none;
}

.cat-slot-upload strong {
    display: block;
    color: #111111;
    font-size: 0.8rem;
    font-weight: 800;
}

.cat-slot-upload small {
    display: block;
    margin-top: 6px;
    color: #666666;
    font-size: 0.72rem;
}

.cat-slot-form button {
    width: 100%;
    min-height: 36px;
    border: 0;
    background: #000000;
    color: #ffffff;
    font-family: var(--tt-body);
    font-size: 0.78rem;
    font-weight: 800;
    cursor: pointer;
}

/* Category detail featured split section */
body.category-detail {
    background: #ffffff;
    --cat-detail-border-y: var(--tt-page-border-y);
    --cat-detail-border-x: var(--tt-page-border-x);
}

body.category-detail .category-hero,
body.category-detail .category-description,
body.category-detail .cat-image-slider-section,
body.category-detail .cat-feature-collection,
body.category-detail .gallery-section.bg-dark,
body.category-detail .cat-faq-section,
body.category-detail .cat-related-slider,
body.category-detail .cat-booking-slot,
body.category-detail .book-cta {
    border-style: solid;
    border-color: var(--tt-page-border-color);
    border-width: var(--cat-detail-border-y) var(--cat-detail-border-x);
}

body.category-detail .category-hero {
    min-height: 620px;
    background: #111111;
}

body.category-detail .category-hero::before,
body.category-detail .category-hero::after {
    display: none;
}

body.category-detail .cat-fixed-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

body.category-detail .category-hero .cat-fixed-bg {
    opacity: 0.9;
}

body.category-detail .category-hero::selection {
    background: #111111;
}

body.category-detail .category-hero .container,
body.category-detail .category-description .container {
    position: relative;
    z-index: 2;
}

body.category-detail .category-hero .container {
    background: rgba(255,255,255,0.94);
    padding: 36px 34px 42px;
}

body.category-detail .category-hero .breadcrumb {
    font-family: var(--tt-body);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.02em;
    margin-bottom: 18px;
}

body.category-detail .category-hero .page-title,
body.category-detail .category-description .section-title {
    font-family: var(--tt-body);
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.02;
    text-transform: none;
}

body.category-detail .category-hero .page-title {
    font-size: clamp(3.8rem, 7.2vw, 6.8rem);
    line-height: 0.92;
}

body.category-detail .category-description .section-title {
    font-size: clamp(2.85rem, 4.8vw, 4.8rem);
    line-height: 1.02;
}

body.category-detail .category-description .section-label {
    font-family: var(--tt-body);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.18em;
}

body.category-detail .category-description p {
    font-family: var(--tt-body);
    font-size: 0.98rem;
    font-weight: 500;
    line-height: 1.75;
}

body.category-detail .cat-detail-intro .desc-content {
    padding: clamp(34px, 5vw, 64px);
    background: rgba(255,255,255,0.95);
    border: 0;
    box-shadow: none;
}

body.category-detail .category-hero::before {
    display: none;
}

body.category-detail .category-hero .cat-fixed-bg::after,
body.category-detail .category-description .cat-fixed-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255,255,255,0.28), rgba(0,0,0,0.2));
}

body.category-detail .category-description {
    background: #111111;
    isolation: isolate;
}

body.category-detail .category-description .cat-fixed-bg {
    opacity: 0.42;
}

body.category-detail .category-description::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(255,255,255,0.62);
    pointer-events: none;
}

body.category-detail .gallery-section.bg-dark {
    padding: 0;
}

body.category-detail .gallery-section.bg-dark::before {
    display: none;
}

.cat-feature-collection {
    width: 100%;
    margin: 0 0 72px;
    overflow: hidden;
    background: #111111;
}

.cat-feature-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 416px;
    border-bottom: 1px solid rgba(255,255,255,0.9);
}

.cat-feature-copy {
    position: relative;
    min-height: 416px;
    padding: 64px clamp(34px, 6vw, 150px);
    display: flex;
    align-items: center;
    color: #ffffff;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    isolation: isolate;
}

.cat-feature-copy::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background: rgba(0,0,0,0.76);
}

.cat-feature-copy h2 {
    margin: 0 0 18px;
    font-family: var(--tt-body);
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 900;
    line-height: 1.05;
}

.cat-feature-copy h3 {
    max-width: 440px;
    margin: 0 0 26px;
    font-family: var(--tt-body);
    font-size: clamp(1.28rem, 2vw, 1.85rem);
    font-weight: 600;
    line-height: 1.25;
}

.cat-feature-copy p {
    max-width: 430px;
    margin-bottom: 26px;
    color: #ffffff;
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1.6;
}

.cat-feature-copy a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-size: 0.86rem;
    font-weight: 800;
    text-decoration: none;
}

.cat-feature-copy a span {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ffffff;
    border-radius: 50%;
}

.cat-feature-fixed {
    min-height: 416px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.cat-feature-slider {
    overflow: hidden;
    background: #111111;
}

.cat-feature-track {
    display: flex;
    width: max-content;
    animation: catFeatureMarquee 36s linear infinite;
}

.cat-feature-track:hover {
    animation-play-state: paused;
}

.cat-feature-slide {
    flex: 0 0 278px;
    height: 370px;
    border-right: 1px solid rgba(255,255,255,0.9);
    overflow: hidden;
}

.cat-feature-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes catFeatureMarquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.booking-wrapper {
    grid-template-columns: 0.82fr 1.18fr;
    align-items: start;
}

.booking-info,
.booking-form-wrapper {
    padding: 36px;
}

.booking-info h2 {
    margin-bottom: 22px;
    font-size: clamp(2.4rem, 4vw, 4rem);
}

.booking-steps {
    list-style: none;
}

.booking-steps li {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 18px;
    padding: 20px 0;
    border-bottom: 1px solid var(--tt-line);
}

.booking-steps i {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--tt-ink);
    color: var(--tt-gold);
}

.booking-contact {
    margin-top: 28px;
    padding: 24px;
    background: #f2ede4;
}

.booking-contact p {
    margin-top: 10px;
    color: var(--tt-ash);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.form-group {
    position: relative;
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    min-height: 54px;
    padding: 18px 15px 8px;
    border: 1px solid rgba(17, 17, 17, 0.18);
    border-radius: 0;
    background: #fbfaf7;
    color: var(--tt-ink);
    font: 600 0.92rem var(--tt-body);
    outline: none;
    transition: border-color 0.25s ease, background 0.25s ease;
}

.form-group textarea {
    min-height: 135px;
    resize: vertical;
}

.form-group label:not(.file-label) {
    position: absolute;
    top: 17px;
    left: 15px;
    color: #817970;
    font-size: 0.82rem;
    pointer-events: none;
    transition: transform 0.2s ease, font-size 0.2s ease, color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--tt-gold);
    background: #fff;
}

.form-group input:focus + label,
.form-group input:valid + label,
.form-group textarea:focus + label,
.form-group textarea:valid + label {
    transform: translateY(-10px);
    font-size: 0.68rem;
    color: var(--tt-gold);
}

.file-upload {
    padding: 20px;
    border: 1px dashed rgba(17, 17, 17, 0.24);
    background: #fbfaf7;
}

.file-label {
    display: flex;
    gap: 10px;
    align-items: center;
    color: var(--tt-ink);
    font-weight: 800;
    cursor: pointer;
}

.file-upload input {
    display: none;
}

.file-name {
    display: block;
    margin-top: 8px;
    color: var(--tt-ash);
    font-size: 0.82rem;
}

.btn-submit {
    width: 100%;
    min-height: 56px;
    cursor: pointer;
}

.form-message {
    margin-top: 16px;
    font-weight: 700;
}

.form-message.success {
    color: #25784f;
}

.form-message.error {
    color: var(--tt-red);
}

.book-cta,
.cta-section {
    position: relative;
    padding: 95px 0;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(13, 13, 12, 0.88), rgba(13, 13, 12, 0.52)),
        url('../images/gallery-bg.jpg') center / cover no-repeat;
    color: #fff;
}

.book-cta-content,
.cta-content {
    max-width: 760px;
}

.book-cta-content h2,
.cta-content h2 {
    font-size: clamp(2.8rem, 7vw, 5.5rem);
}

.book-cta-content p,
.cta-content p {
    margin: 14px 0 26px;
    color: rgba(255, 255, 255, 0.76);
}

.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 900;
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    font-size: 1.55rem;
    text-decoration: none;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.24);
}

footer {
    font-family: var(--tt-body) !important;
}

footer > div:first-child {
    max-width: 1180px;
    margin: 0 auto;
}

footer a {
    transition: color 0.2s ease;
}

footer a:hover {
    color: var(--tt-ink) !important;
}

@media (max-width: 1040px) {
    .testimonial-grid,
    .blog-grid,
    .masonry-grid,
    .masonry-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .story-grid,
    .booking-wrapper {
        grid-template-columns: 1fr;
    }

    .gallery-section.bg-dark .masonry-gallery {
        columns: 3 220px;
    }

    footer > div:first-child {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 760px) {
    .container,
    .blog-single-content {
        width: min(100% - 28px, 1180px);
    }

    .section-padding {
        padding: 72px 0;
    }

    .page-hero,
    .blog-single-header {
        min-height: 480px;
        padding-top: 92px;
    }

    .page-hero::before,
    .blog-single-header::before {
        inset: 10px;
        background:
            linear-gradient(180deg, rgba(247, 244, 238, 0.96), rgba(247, 244, 238, 0.88)),
            url('../images/hero.png') center / cover no-repeat;
    }

    .category-hero::before,
    .category-description {
        background-attachment: scroll, scroll;
    }

    .page-hero::after,
    .blog-single-header::after {
        border-width: 10px;
    }

    .page-hero .container,
    .blog-single-header .container {
        width: calc(100% - 48px);
        margin: 0 auto;
        padding: 32px 24px;
    }

    .testimonial-grid,
    .blog-grid,
    .masonry-grid,
    .form-row {
        grid-template-columns: 1fr;
    }

    .gallery-section.bg-dark .masonry-gallery {
        columns: 2 150px;
        gap: 6px;
    }

    .gallery-section.bg-dark {
        padding: 10px;
    }

    .gallery-section.bg-dark::before {
        border-width: 10px;
    }


    .masonry-item:nth-child(2n) {
        transform: none;
    }

    .timeline::before {
        left: 0;
    }

    .timeline-item {
        grid-template-columns: 1fr;
        gap: 14px;
        padding-left: 24px;
    }

    .booking-info,
    .booking-form-wrapper,
    .desc-content,
    .testimonial-card {
        padding: 26px;
    }

    .cat-detail-intro {
        grid-template-columns: 1fr;
    }

    .cat-detail-image {
        min-height: 320px;
    }

    .cat-manual-slider {
        padding: 22px;
    }

    .cat-manual-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .cat-manual-slide {
        flex-basis: 82vw;
        height: 330px;
    }

    .cat-image-slide {
        flex-basis: 82vw;
        height: 360px;
    }

    .cat-faq-item summary {
        padding-right: 42px;
    }

    .cat-faq-layout {
        grid-template-columns: 1fr;
    }

    .cat-faq-content {
        padding-right: 0;
    }

    .cat-faq-empty {
        display: none;
    }

    .cat-faq-item p {
        padding-right: 0;
    }

    .cat-related-track {
        padding: 0 14px;
    }

    .cat-related-card {
        flex-basis: 282px;
        height: 376px;
    }

    .cat-booking-slot {
        min-height: auto;
        padding: 60px 0;
        background-position: center;
    }

    .cat-booking-panel {
        width: calc(100% - 28px);
        max-height: none;
        margin: 0 auto;
    }

    .cat-slot-row {
        grid-template-columns: 1fr;
    }

    body.category-detail {
        --cat-detail-border-y: 10px;
        --cat-detail-border-x: 10px;
    }

    body.category-detail .category-hero,
    body.category-detail .category-description {
        background-attachment: scroll;
    }

    body.category-detail .cat-fixed-bg {
        background-attachment: scroll;
    }

    .cat-feature-collection {
        width: 100%;
        margin: 0 0 54px;
    }

    .cat-feature-top {
        grid-template-columns: 1fr;
    }

    .cat-feature-copy,
    .cat-feature-fixed {
        min-height: 340px;
    }

    .cat-feature-copy {
        padding: 42px 26px;
    }

    .cat-feature-fixed {
        background-attachment: scroll;
    }

    .cat-feature-slide {
        flex-basis: 240px;
        height: 320px;
    }

    footer {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    footer > div:first-child {
        grid-template-columns: 1fr !important;
        gap: 26px !important;
    }

    footer > div:last-child {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 12px;
    }
}

/* Tattoo category showcase page */
body.category-showcase {
    --tt-gold: #111111;
    --tt-red: #111111;
    --tt-ivory: #ffffff;
    background: #ffffff;
    color: #111111;
}

body.category-showcase .gold,
body.category-showcase .section-label {
    color: #111111;
}

body.category-showcase .section-label {
    letter-spacing: 0.22em;
}

body.category-showcase .btn-black {
    background: #111111;
    border-color: #111111;
    color: #ffffff;
}

body.category-showcase .btn-black:hover {
    background: #ffffff;
    color: #111111;
}

body.category-showcase .btn-gold {
    background: #ffffff;
    border-color: #ffffff;
    color: #111111;
}

.tt-cat-hero {
    position: relative;
    min-height: 760px;
    height: 96vh;
    padding: 0;
    display: flex;
    align-items: center;
    background: #ffffff;
    overflow: hidden;
    isolation: isolate;
}

.tt-cat-hero-media {
    position: absolute;
    inset: 6px 44px 58px;
    background: #000000;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.08)),
        url('../images/gallery-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: -2;
}

body.piercing-showcase .tt-cat-hero-media {
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.16)),
        url('../images/gallery/2.jpg');
}

body.piercing-detail .cat-feature-copy h2,
body.piercing-detail .cat-related-slider h2 {
    text-transform: none;
}

.tt-cat-hero::after {
    content: '';
    position: absolute;
    inset: 6px 44px 58px;
    background:
        linear-gradient(90deg, rgba(255,255,255,0.04), transparent 32%, rgba(0,0,0,0.08)),
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: auto, calc(100% / 6) calc(100% / 3), calc(100% / 6) calc(100% / 3);
    pointer-events: none;
    z-index: -1;
}

.tt-cat-hero-patti {
    position: absolute;
    z-index: 2;
    background: #ffffff;
    pointer-events: none;
}

.tt-cat-hero-patti-top {
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
}

.tt-cat-hero-patti-bottom {
    left: 0;
    right: 0;
    bottom: 0;
    height: 58px;
}

.tt-cat-hero-patti-left {
    top: 0;
    bottom: 0;
    left: 0;
    width: 44px;
}

.tt-cat-hero-patti-right {
    top: 0;
    bottom: 0;
    right: 0;
    width: 44px;
}

.tt-cat-hero-panel {
    position: relative;
    z-index: 3;
    width: min(506px, calc(100% - 96px));
    margin-left: clamp(82px, 6.7vw, 130px);
    margin-top: 44px;
    padding: 50px 44px 56px;
    background: rgba(255, 255, 255, 0.92);
    border: 0;
    box-shadow: none;
}

.tt-cat-hero-panel h1 {
    margin: 0 0 24px;
    font-family: var(--tt-body);
    font-size: clamp(2.15rem, 3.2vw, 3rem);
    font-weight: 400;
    line-height: 1.16;
    text-transform: none;
}

.tt-cat-hero-panel h1 strong {
    font-weight: 900;
}

.tt-cat-hero-panel p,
.tt-cat-section-intro p,
.tt-featured-copy p,
.tt-cat-editorial-panel p,
.tt-cat-blackout p,
.tt-collection-card p {
    color: #4b4b4b;
    line-height: 1.8;
}

.tt-cat-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 38px;
}

.tt-cat-hero .btn-black {
    min-width: 192px;
    min-height: 38px;
    padding: 10px 18px;
    font-size: 0.78rem;
    text-transform: none;
    letter-spacing: 0;
    font-weight: 800;
}

.tt-cat-contact-stack {
    display: grid;
    gap: 10px;
}

.tt-cat-link {
    min-height: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    border: 0;
    color: #111111;
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
    text-decoration: none;
}

.tt-cat-link:hover {
    background: transparent;
    color: #111111;
    text-decoration: underline;
}

.tt-cat-link.whatsapp {
    color: #0b8f2a;
}

.tt-cat-section-intro {
    max-width: 760px;
    margin-bottom: 42px;
}

.tt-signature .tt-cat-section-intro {
    max-width: 720px;
    margin: 0 auto 74px;
    text-align: center;
}

.tt-signature .tt-cat-section-intro .section-label {
    display: none;
}

.tt-signature .tt-cat-section-intro h2 {
    margin-bottom: 26px;
    font-family: var(--tt-body);
    font-size: clamp(2.2rem, 3vw, 3rem);
    font-weight: 400;
    line-height: 1.1;
}

.tt-signature .tt-cat-section-intro h2 strong {
    font-weight: 900;
}

.tt-signature .tt-cat-section-intro p {
    max-width: 660px;
    margin: 0 auto;
    color: #111111;
    font-size: 0.92rem;
    line-height: 1.6;
}

.tt-cat-section-intro .section-title {
    margin-bottom: 14px;
}

.tt-signature {
    background: #ffffff;
    padding: 64px 0 0;
    display: flex;
    align-items: stretch;
}

.tt-signature .container {
    width: calc(100% - 80px);
    max-width: none;
    display: flex;
    flex-direction: column;
}

.tt-signature-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border: 0;
    gap: 0;
}

.tt-signature-card {
    aspect-ratio: 905 / 535;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 34px;
    overflow: hidden;
    color: #ffffff;
    text-decoration: none;
    border: 0;
}

.tt-signature-card:nth-child(odd) {
    border-right: 1px solid rgba(255,255,255,0.85);
}

.tt-signature-card:nth-child(-n+2) {
    border-bottom: 1px solid rgba(255,255,255,0.85);
}

.tt-signature-grid-six .tt-signature-card:nth-child(-n+4) {
    border-bottom: 1px solid rgba(255,255,255,0.85);
}

.tt-signature-alt {
    padding-top: 88px;
}

.tt-signature-card img,
.tt-more-card img,
.tt-collection-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tt-signature-card::after,
.tt-more-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.42);
    transition: background 0.35s ease;
}

.tt-signature-card span,
.tt-signature-card em,
.tt-more-card span,
.tt-more-card em {
    position: relative;
    z-index: 1;
}

.tt-signature-card span,
.tt-more-card span {
    font-family: var(--tt-serif);
    font-size: 1.7rem;
    font-weight: 700;
    line-height: 1.05;
}

.tt-signature-card span {
    max-width: 360px;
    font-family: var(--tt-body);
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 900;
    line-height: 1.08;
    text-align: center;
}

.tt-signature-card em,
.tt-more-card em {
    margin-top: 14px;
    font-style: normal;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.tt-signature-card em {
    position: relative;
    padding-right: 18px;
    font-size: 0.78rem;
    letter-spacing: 0;
    text-transform: none;
    text-decoration: underline;
}

.tt-signature-card em::after {
    content: '>';
    position: absolute;
    right: 0;
    top: 0;
    text-decoration: none;
}

.tt-signature-card:hover img,
.tt-more-card:hover img,
.tt-collection-card:hover img {
    transform: scale(1.06);
}

.tt-signature-card:hover::after {
    background: rgba(0,0,0,0.54);
}

.tt-cat-editorial {
    padding: 80px 0;
    background: #f5f5f5;
}

.tt-cat-editorial-panel {
    display: grid;
    grid-template-columns: minmax(280px, 0.9fr) minmax(280px, 1.1fr);
    gap: 42px;
    align-items: start;
    padding: 52px;
    background: #ffffff;
    border: 1px solid #111111;
}

.tt-cat-editorial-panel h2,
.tt-cat-blackout h2,
.tt-featured-copy h2 {
    font-family: var(--tt-heading);
    font-weight: 400;
    line-height: 0.92;
    text-transform: uppercase;
}

.tt-cat-editorial-panel h2 {
    font-size: clamp(3rem, 6vw, 5.4rem);
}

.tt-featured-cats {
    background: #ffffff;
    padding: 60px 0;
}

.tt-featured-cats-after-cta {
    padding-top: 0;
}

.tt-featured-full {
    width: calc(100% - 88px);
    max-width: none;
    margin: 0 44px;
}

.tt-featured-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 470px;
    margin-bottom: 34px;
    background: #111111;
}

.tt-featured-copy h2 {
    margin: 0 0 22px;
    font-family: var(--tt-body);
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 900;
    line-height: 1.08;
    color: #ffffff;
    text-transform: none;
}

.tt-featured-copy {
    position: relative;
    min-height: 470px;
    padding: 70px clamp(34px, 6vw, 150px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    background-size: cover;
    background-position: center;
    color: #ffffff;
    overflow: hidden;
    isolation: isolate;
}

.tt-featured-copy::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background: rgba(0,0,0,0.58);
}

.tt-featured-copy p {
    max-width: 420px;
    color: #ffffff;
    font-size: 0.94rem;
    font-weight: 700;
    line-height: 1.55;
}

.tt-featured-copy .btn-black {
    min-width: 190px;
    margin-top: 28px;
    background: #ffffff;
    border-color: #111111;
    color: #111111;
    text-transform: none;
    letter-spacing: 0;
    font-weight: 900;
}

.tt-featured-media {
    position: relative;
    min-height: 470px;
    overflow: hidden;
    background: #222222;
}

.tt-featured-fixed {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.tt-style-cta {
    padding: 88px 0 72px;
    background: #ffffff;
    text-align: center;
}

.tt-style-cta .container {
    max-width: 760px;
}

.tt-style-cta h2 {
    margin: 0 auto 28px;
    font-family: var(--tt-body);
    font-size: clamp(2.15rem, 3vw, 3rem);
    font-weight: 400;
    line-height: 1.18;
}

.tt-style-cta h2 strong {
    font-weight: 900;
}

.tt-style-cta p {
    max-width: 680px;
    margin: 0 auto 30px;
    color: #111111;
    font-size: 0.9rem;
    line-height: 1.65;
}

.tt-style-cta .btn-black {
    min-width: 174px;
    min-height: 44px;
    text-transform: none;
    letter-spacing: 0;
    font-weight: 900;
}

.tt-cat-blackout {
    padding: 86px 0;
    background: #111111;
    color: #ffffff;
}

.tt-cat-blackout .container {
    display: grid;
    grid-template-columns: minmax(280px, 0.9fr) minmax(280px, 1fr) auto;
    gap: 38px;
    align-items: center;
}

.tt-cat-blackout .section-label,
.tt-cat-blackout .gold {
    color: #ffffff;
}

.tt-cat-blackout h2 {
    font-size: clamp(2.8rem, 6vw, 5.6rem);
}

.tt-cat-blackout p {
    color: rgba(255,255,255,0.78);
}

.tt-more-styles {
    background: #f5f5f5;
}

.tt-more-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.tt-more-card {
    min-height: 360px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    overflow: hidden;
    color: #ffffff;
    text-decoration: none;
    border: 1px solid #111111;
}

.tt-collections {
    background: #ffffff;
}

.tt-collections .section-title {
    max-width: 840px;
    margin-bottom: 46px;
}

.tt-collection-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.tt-collection-card {
    position: relative;
    min-height: 540px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    border: 1px solid #111111;
    background: #111111;
}

.tt-collection-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.9) 100%);
}

.tt-collection-card div {
    position: relative;
    z-index: 1;
    padding: 28px;
    color: #ffffff;
}

.tt-collection-card h3 {
    font-family: var(--tt-serif);
    font-size: 2rem;
    line-height: 1;
}

.tt-collection-card p {
    margin: 14px 0 20px;
    color: rgba(255,255,255,0.74);
}

.tt-collection-card a {
    color: #ffffff;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border-bottom: 1px solid #ffffff;
}

.tt-cat-trust {
    padding: 62px 0;
    background: #f5f5f5;
}

.tt-cat-trust .container {
    display: grid;
    grid-template-columns: repeat(3, 1fr) auto;
    gap: 16px;
    align-items: stretch;
}

.tt-trust-card {
    min-height: 128px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid #111111;
    background: #ffffff;
}

.tt-trust-card strong {
    font-family: var(--tt-heading);
    font-size: 3.2rem;
    line-height: 0.9;
    font-weight: 400;
}

.tt-trust-card span {
    margin-top: 8px;
    color: #555555;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.tt-cat-trust .btn-black {
    min-height: 128px;
    align-self: stretch;
    padding-inline: 30px;
}

@media (max-width: 1040px) {
    .tt-more-grid,
    .tt-collection-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tt-signature {
        min-height: auto;
    }

    .tt-signature .container {
        width: calc(100% - 40px);
    }

    .tt-signature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tt-cat-editorial-panel,
    .tt-cat-blackout .container,
    .tt-cat-trust .container {
        grid-template-columns: 1fr;
    }

    .tt-featured-row {
        grid-template-columns: 1fr;
        min-height: auto;
    }
}

@media (max-width: 760px) {
    :root {
        --tt-page-border-y: 10px;
        --tt-page-border-x: 10px;
    }

    .tt-featured-full {
        width: calc(100% - 20px);
        margin: 0 10px;
    }

    .tt-cat-hero {
        min-height: 620px;
        height: auto;
        padding: 96px 0 74px;
        align-items: center;
    }

    .tt-cat-hero-media,
    .tt-cat-hero::after {
        inset: 10px;
    }

    .tt-cat-hero::after {
        background:
            linear-gradient(180deg, rgba(0,0,0,0.08), rgba(0,0,0,0.18)),
            linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
            linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
        background-size: auto, 50% 33.33%, 50% 33.33%;
    }

    .tt-cat-hero-panel {
        width: calc(100% - 56px);
        margin: 0 auto;
        padding: 34px 26px;
    }

    .tt-cat-hero-patti-top,
    .tt-cat-hero-patti-bottom {
        height: 10px;
    }

    .tt-cat-hero-patti-left,
    .tt-cat-hero-patti-right {
        width: 10px;
    }

    .tt-cat-actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 16px;
    }

    .tt-more-grid,
    .tt-collection-grid {
        grid-template-columns: 1fr;
    }

    .tt-signature {
        padding-top: 54px;
    }

    .tt-signature .container {
        width: calc(100% - 20px);
    }

    .tt-signature .tt-cat-section-intro {
        margin-bottom: 40px;
        padding: 0 14px;
    }

    .tt-signature-grid {
        min-height: auto;
        grid-template-columns: 1fr;
    }

    .tt-signature-card,
    .tt-more-card {
        min-height: 320px;
    }

    .tt-signature-card {
        min-height: 0;
        aspect-ratio: 905 / 535;
    }

    .tt-signature-card:nth-child(odd),
    .tt-signature-card:nth-child(-n+2),
    .tt-signature-grid-six .tt-signature-card:nth-child(-n+4) {
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,0.85);
    }

    .tt-signature-card:last-child {
        border-bottom: 0;
    }

    .tt-cat-editorial-panel {
        padding: 28px;
    }

    .tt-featured-copy,
    .tt-featured-media {
        min-height: 360px;
    }

    .tt-featured-copy {
        padding: 46px 28px;
    }

    .tt-featured-fixed {
        background-attachment: scroll;
    }

    .tt-collection-card {
        min-height: 430px;
    }
}

/* About page: pure black and white theme */
body.about-monochrome {
    --tt-gold: #0d0d0c;
    --tt-red: #0d0d0c;
    --tt-ivory: #ffffff;
    --tt-bone: #f3f3f3;
    background: #ffffff;
    color: #0d0d0c;
}

body.about-monochrome .page-hero,
body.about-monochrome .blog-single-header {
    background: #0d0d0c;
}

body.about-monochrome .page-hero::before {
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 42%, rgba(0, 0, 0, 0.18) 76%),
        url('../images/hero.png') center right / cover no-repeat;
    filter: grayscale(1);
}

body.about-monochrome .page-hero::after {
    border-color: #ffffff;
}

body.about-monochrome .page-hero .container,
body.about-monochrome .blog-single-header .container,
body.about-monochrome .story-image,
body.about-monochrome .booking-form-wrapper,
body.about-monochrome .booking-info,
body.about-monochrome .desc-content,
body.about-monochrome .testimonial-card,
body.about-monochrome .blog-card,
body.about-monochrome .about-feature-card,
body.about-monochrome .about-process-content {
    background: #ffffff;
    border: 1px solid #0d0d0c;
    box-shadow: none;
}

body.about-monochrome .gold,
body.about-monochrome .section-label,
body.about-monochrome .timeline-year,
body.about-monochrome .stars {
    color: #0d0d0c;
}

body.about-monochrome .gold-line,
body.about-monochrome .gold-line-center {
    background: #0d0d0c;
}

body.about-monochrome .bg-dark {
    background: #0d0d0c;
    color: #ffffff;
}

body.about-monochrome .bg-dark .gold,
body.about-monochrome .bg-dark .section-label,
body.about-monochrome .bg-dark .timeline-year {
    color: #ffffff;
}

body.about-monochrome .bg-dark .gold-line-center {
    background: #ffffff;
}

body.about-monochrome .timeline::before {
    background: rgba(255, 255, 255, 0.28);
}

body.about-monochrome .timeline-content {
    background: #ffffff;
    color: #0d0d0c;
    border: 1px solid #ffffff;
}

body.about-monochrome .timeline-content p {
    color: #333333;
}

.about-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.about-feature-card {
    min-height: 260px;
    padding: 34px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.about-feature-count {
    font-family: var(--tt-heading);
    font-size: 4rem;
    line-height: 0.8;
}

.about-feature-card h3,
.about-step span {
    font-family: var(--tt-serif);
    font-size: 1.6rem;
    line-height: 1.1;
}

.about-feature-card p,
.about-step p {
    color: #4b4b4b;
    line-height: 1.75;
}

.about-process {
    background: #f6f6f6;
}

.about-process-grid {
    display: grid;
    grid-template-columns: minmax(300px, 0.92fr) minmax(0, 1.08fr);
    gap: 0;
    align-items: stretch;
}

.about-process-image {
    min-height: 620px;
    background: #0d0d0c;
    overflow: hidden;
}

.about-process-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1);
}

.about-process-content {
    padding: clamp(34px, 6vw, 70px);
}

.about-step-list {
    display: grid;
    gap: 0;
    margin-top: 28px;
    border-top: 1px solid #0d0d0c;
}

.about-step {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 24px;
    padding: 24px 0;
    border-bottom: 1px solid #0d0d0c;
}

.about-expertise {
    background: #ffffff;
}

.about-expertise-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
    gap: 54px;
    align-items: start;
}

.about-style-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid #0d0d0c;
    border-left: 1px solid #0d0d0c;
}

.about-style-list span {
    min-height: 86px;
    padding: 24px;
    display: flex;
    align-items: center;
    border-right: 1px solid #0d0d0c;
    border-bottom: 1px solid #0d0d0c;
    font-family: var(--tt-serif);
    font-size: 1.45rem;
    font-weight: 700;
}

body.about-monochrome .testimonials-full {
    background: #ffffff;
}

body.about-monochrome .testimonial-card {
    border-color: #0d0d0c;
}

body.about-monochrome .book-cta {
    background: #0d0d0c;
    color: #ffffff;
}

body.about-monochrome .book-cta .gold {
    color: #ffffff;
}

body.about-monochrome .book-cta .btn-black {
    background: #ffffff;
    border-color: #ffffff;
    color: #0d0d0c;
}

body.about-monochrome footer {
    background: #ffffff !important;
    border-top: 1px solid #0d0d0c;
}

body.about-monochrome footer * {
    color: #0d0d0c !important;
}

body.about-monochrome footer a[aria-label] {
    border-color: #0d0d0c !important;
}

@media (max-width: 1040px) {
    .about-feature-grid,
    .about-process-grid,
    .about-expertise-layout {
        grid-template-columns: 1fr;
    }

    .about-process-image {
        min-height: 440px;
    }
}

@media (max-width: 760px) {
    body.about-monochrome .page-hero::before {
        background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.92)),
            url('../images/hero.png') center / cover no-repeat;
    }

    .about-feature-card {
        min-height: auto;
        gap: 34px;
        padding: 26px;
    }

    .about-step,
    .about-style-list {
        grid-template-columns: 1fr;
    }

    .about-process-image {
        min-height: 320px;
    }
}

/* Inkfluencer rewards page */
body.inkfluencer-page {
    background: #ffffff;
    color: #0d0d0c;
}

.ink-hero {
    position: relative;
    min-height: 760px;
    padding: 120px 44px 74px;
    display: flex;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
    background: #ffffff;
}

.ink-hero::before,
.ink-hero::after {
    content: '';
    position: absolute;
    pointer-events: none;
}

.ink-hero::before {
    inset: 0;
    border: 14px solid #ffffff;
    z-index: 3;
}

.ink-hero::after {
    inset: 14px;
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(0,0,0,0.72), rgba(0,0,0,0.18) 52%, rgba(255,255,255,0.12)),
        linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
    background-size: auto, 25% 33.33%, 25% 33.33%;
}

.ink-hero-bg {
    position: absolute;
    inset: 14px;
    z-index: -2;
    background:
        linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.08)),
        url('../images/gallery/bg3.jpg') center / cover fixed no-repeat;
    filter: grayscale(0.25);
}

.ink-hero-panel {
    position: relative;
    z-index: 4;
    width: min(620px, 100%);
    margin-left: clamp(20px, 6vw, 90px);
    padding: clamp(34px, 5vw, 58px);
    background: rgba(255,255,255,0.94);
    color: #0d0d0c;
}

.ink-hero-panel span,
.ink-section-head p,
.ink-copy-box p,
.ink-apply-content p,
.ink-step-card p,
.ink-term-item p,
.ink-review-card p {
    font-family: var(--tt-body);
    line-height: 1.75;
}

.ink-hero-panel span {
    display: block;
    margin-bottom: 18px;
    color: var(--tt-gold);
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ink-hero-panel h1,
.ink-cta h2 {
    font-family: var(--tt-heading);
    font-weight: 400;
    letter-spacing: 0;
    text-transform: uppercase;
}

.ink-hero-panel h1 {
    margin: 0 0 22px;
    font-size: clamp(4rem, 9vw, 8rem);
    line-height: 0.88;
}

.ink-hero-panel h1 strong {
    color: var(--tt-gold);
    font-weight: 400;
}

.ink-hero-panel p {
    max-width: 480px;
    margin: 0 0 30px;
    color: #333333;
}

.ink-two-col,
.ink-apply-grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
    gap: clamp(34px, 6vw, 76px);
    align-items: start;
}

.ink-about,
.ink-rewards,
.ink-terms {
    background: #ffffff;
}

.ink-copy-box {
    padding: clamp(30px, 5vw, 58px);
    border: 1px solid #0d0d0c;
    background: #ffffff;
}

.ink-copy-box p,
.ink-apply-content p,
.ink-section-head p {
    color: #444444;
}

.ink-how,
.ink-apply,
.ink-reviews {
    background: #f5f5f5;
}

body.inkfluencer-page .ink-hero,
body.inkfluencer-page .ink-about,
body.inkfluencer-page .ink-how,
body.inkfluencer-page .ink-rewards,
body.inkfluencer-page .ink-apply,
body.inkfluencer-page .ink-cta,
body.inkfluencer-page .ink-terms,
body.inkfluencer-page .ink-reviews {
    position: relative;
    overflow: hidden;
}

body.inkfluencer-page .ink-hero,
body.inkfluencer-page .ink-about,
body.inkfluencer-page .ink-apply,
body.inkfluencer-page .ink-cta,
body.inkfluencer-page .ink-reviews {
    box-shadow: none;
}

body.inkfluencer-page .ink-how,
body.inkfluencer-page .ink-rewards,
body.inkfluencer-page .ink-terms {
    box-shadow: none;
}

body.inkfluencer-page .ink-about,
body.inkfluencer-page .ink-apply,
body.inkfluencer-page .ink-reviews {
    isolation: isolate;
    color: #ffffff;
}

body.inkfluencer-page .ink-about::before,
body.inkfluencer-page .ink-apply::before,
body.inkfluencer-page .ink-reviews::before {
    content: '';
    position: absolute;
    inset: 14px;
    z-index: -2;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

body.inkfluencer-page .ink-about::after,
body.inkfluencer-page .ink-apply::after,
body.inkfluencer-page .ink-reviews::after {
    content: '';
    position: absolute;
    inset: 14px;
    z-index: -1;
    background: rgba(0,0,0,0.62);
    pointer-events: none;
}

body.inkfluencer-page .ink-about::before {
    background-image: url('../images/gallery/tattoo-1.jpg');
}

body.inkfluencer-page .ink-apply::before {
    background-image: url('../images/gallery/bg-1.jpg');
}

body.inkfluencer-page .ink-reviews::before {
    background-image: url('../images/gallery/ree.jpg');
}

body.inkfluencer-page .ink-about .container,
body.inkfluencer-page .ink-apply .container,
body.inkfluencer-page .ink-reviews .container {
    position: relative;
    z-index: 1;
}

body.inkfluencer-page .ink-about .section-title,
body.inkfluencer-page .ink-about .section-label,
body.inkfluencer-page .ink-apply .section-title,
body.inkfluencer-page .ink-apply .section-label,
body.inkfluencer-page .ink-reviews .section-title,
body.inkfluencer-page .ink-reviews .section-label {
    color: #ffffff;
}

body.inkfluencer-page .ink-about .gold,
body.inkfluencer-page .ink-apply .gold,
body.inkfluencer-page .ink-reviews .gold {
    color: #ffffff;
}

body.inkfluencer-page .ink-apply-content p,
body.inkfluencer-page .ink-apply-list li,
body.inkfluencer-page .ink-section-head p {
    color: rgba(255,255,255,0.82);
}

body.inkfluencer-page .ink-rewards .ink-section-head p,
body.inkfluencer-page .ink-how .ink-section-head p {
    color: #444444;
}

.ink-section-head {
    max-width: 760px;
    margin-bottom: 44px;
}

.ink-section-head p {
    max-width: 700px;
    margin-top: 14px;
}

.ink-step-grid,
.ink-review-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.ink-step-card,
.ink-review-card {
    min-height: 320px;
    padding: 34px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid #0d0d0c;
    background: #ffffff;
}

.ink-step-card span {
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    color: var(--tt-gold);
    text-transform: uppercase;
}

.ink-step-card h3 {
    margin: 30px 0 18px;
    font-family: var(--tt-serif);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    line-height: 1;
}

.ink-step-card p,
.ink-review-card p {
    color: #4f4f4f;
}

.ink-reward-table {
    border: 1px solid #0d0d0c;
    background: #ffffff;
}

.ink-table-row {
    display: grid;
    grid-template-columns: 1.1fr 0.8fr 0.8fr 1.5fr;
    border-bottom: 1px solid #0d0d0c;
}

.ink-table-row:last-child {
    border-bottom: 0;
}

.ink-table-row span {
    min-height: 74px;
    padding: 20px;
    display: flex;
    align-items: center;
    border-right: 1px solid #0d0d0c;
    font-weight: 700;
}

.ink-table-row span:last-child {
    border-right: 0;
}

.ink-table-head {
    background: #0d0d0c;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.78rem;
}

.ink-table-head span {
    border-right-color: rgba(255,255,255,0.22);
}

.ink-apply-content {
    position: sticky;
    top: 90px;
}

.ink-apply-list {
    display: grid;
    gap: 14px;
    margin: 28px 0 34px;
    padding-left: 20px;
}

.ink-apply-list li {
    padding-left: 8px;
    line-height: 1.7;
    color: #343434;
}

.ink-form-card {
    padding: clamp(28px, 5vw, 48px);
    border: 1px solid #0d0d0c;
    background: #ffffff;
    color: #0d0d0c;
    box-shadow: 18px 18px 0 #0d0d0c;
}

.ink-form-card h3 {
    margin: 0 0 26px;
    font-family: var(--tt-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1;
}

.inkfluencer-form {
    display: grid;
    gap: 18px;
}

.inkfluencer-form label {
    display: grid;
    gap: 8px;
}

.inkfluencer-form label span {
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    color: #0d0d0c;
}

.inkfluencer-form input,
.inkfluencer-form select {
    width: 100%;
    height: 48px;
    padding: 0 14px;
    border: 1px solid #0d0d0c;
    background: #ffffff;
    color: #0d0d0c;
    font-family: var(--tt-body);
    outline: none;
}

.inkfluencer-form input:focus,
.inkfluencer-form select:focus {
    box-shadow: 0 0 0 3px rgba(199,161,74,0.24);
}

.inkfluencer-form button {
    min-height: 48px;
    border: 1px solid #0d0d0c;
    background: #0d0d0c;
    color: #ffffff;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
}

.ink-cta {
    padding: 96px 0;
    background: #0d0d0c;
    color: #ffffff;
}

.ink-cta .container {
    display: grid;
    grid-template-columns: minmax(280px, 0.8fr) minmax(280px, 1fr) auto;
    gap: 34px;
    align-items: center;
}

.ink-cta h2 {
    font-size: clamp(4rem, 9vw, 8rem);
    line-height: 0.84;
}

.ink-cta p {
    color: rgba(255,255,255,0.76);
    line-height: 1.8;
}

.ink-terms-list {
    border-top: 1px solid #0d0d0c;
}

.ink-term-item {
    border-bottom: 1px solid #0d0d0c;
}

.ink-term-item summary {
    padding: 22px 0;
    font-weight: 900;
    cursor: pointer;
    list-style: none;
}

.ink-term-item summary::-webkit-details-marker {
    display: none;
}

.ink-term-item summary::after {
    content: '+';
    float: right;
}

.ink-term-item[open] summary::after {
    content: '-';
}

.ink-term-item p {
    margin: 0;
    padding: 0 0 22px;
    color: #444444;
}

.ink-review-card {
    min-height: 240px;
}

.ink-review-card .stars {
    letter-spacing: 0.16em;
}

.ink-review-card strong {
    margin-top: 18px;
    font-family: var(--tt-serif);
    font-size: 1.35rem;
}

@media (max-width: 1040px) {
    .ink-two-col,
    .ink-apply-grid,
    .ink-cta .container {
        grid-template-columns: 1fr;
    }

    .ink-apply-content {
        position: static;
    }

    .ink-step-grid,
    .ink-review-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .ink-hero {
        min-height: 640px;
        padding: 92px 20px 54px;
    }

    .ink-hero::before {
        border-width: 10px;
    }

    .ink-hero::after,
    .ink-hero-bg {
        inset: 10px;
        background-attachment: scroll;
    }

    body.inkfluencer-page .ink-about::before,
    body.inkfluencer-page .ink-apply::before,
    body.inkfluencer-page .ink-reviews::before {
        inset: 10px;
        background-attachment: scroll;
    }

    body.inkfluencer-page .ink-about::after,
    body.inkfluencer-page .ink-apply::after,
    body.inkfluencer-page .ink-reviews::after {
        inset: 10px;
    }

    body.inkfluencer-page .ink-hero,
    body.inkfluencer-page .ink-about,
    body.inkfluencer-page .ink-apply,
    body.inkfluencer-page .ink-cta,
    body.inkfluencer-page .ink-reviews {
        box-shadow: none;
    }

    body.inkfluencer-page .ink-how,
    body.inkfluencer-page .ink-rewards,
    body.inkfluencer-page .ink-terms {
        box-shadow: none;
    }

    .ink-hero-panel {
        margin: 0 auto;
        padding: 30px 24px;
    }

    .ink-hero-panel h1,
    .ink-cta h2 {
        font-size: clamp(3.4rem, 18vw, 5.2rem);
    }

    .ink-copy-box,
    .ink-step-card,
    .ink-review-card {
        padding: 26px;
        min-height: auto;
    }

    .ink-table-head {
        display: none;
    }

    .ink-table-row {
        display: grid;
        grid-template-columns: 1fr;
        padding: 18px;
    }

    .ink-table-row span {
        min-height: auto;
        padding: 10px 0;
        border-right: 0;
        border-bottom: 1px solid rgba(13,13,12,0.12);
    }

    .ink-table-row span:last-child {
        border-bottom: 0;
    }

    .ink-table-row span::before {
        content: attr(data-label);
        min-width: 110px;
        margin-right: 14px;
        color: var(--tt-gold);
        font-size: 0.72rem;
        letter-spacing: 0.08em;
        text-transform: uppercase;
    }

    .ink-form-card {
        box-shadow: 8px 8px 0 #0d0d0c;
    }
}

/* Single page-frame normalization: only body > section border should create the outer frame. */
.page-hero::before,
.blog-single-header::before {
    inset: 0;
}

.page-hero::after,
.blog-single-header::after,
.gallery-section.bg-dark::before,
.tt-cat-hero-patti,
.ink-hero::before {
    display: none !important;
}

.gallery-section.bg-dark {
    padding: 0;
}

.tt-cat-hero-media,
.tt-cat-hero::after {
    inset: 0;
}

body.category-showcase .tt-signature .container {
    width: 100%;
}

body.category-showcase .tt-featured-full {
    width: 100%;
    margin: 0;
}

.ink-hero-bg,
.ink-hero::after,
body.inkfluencer-page .ink-about::before,
body.inkfluencer-page .ink-about::after,
body.inkfluencer-page .ink-apply::before,
body.inkfluencer-page .ink-apply::after,
body.inkfluencer-page .ink-reviews::before,
body.inkfluencer-page .ink-reviews::after {
    inset: 0;
}

/* Aftercare page */
body.aftercare-page {
    background: #ffffff;
}

.aftercare-hero {
    min-height: 720px;
    padding: 120px 44px 80px;
    display: flex;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
    background: #111111;
}

.aftercare-hero-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(90deg, rgba(0,0,0,0.7), rgba(0,0,0,0.18) 58%, rgba(0,0,0,0.42)),
        url('../images/gallery/bg3.jpg') center / cover fixed no-repeat;
}

.aftercare-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
    background-size: 25% 33.33%, 25% 33.33%;
    pointer-events: none;
}

.aftercare-hero-panel {
    width: min(620px, 100%);
    margin-left: clamp(20px, 6vw, 92px);
    padding: clamp(34px, 5vw, 58px);
    background: rgba(255,255,255,0.94);
}

.aftercare-hero-panel h1,
.aftercare-cta h2 {
    font-family: var(--tt-heading);
    font-weight: 400;
    line-height: 0.88;
    text-transform: uppercase;
}

.aftercare-hero-panel h1 {
    margin: 16px 0 22px;
    font-size: clamp(4.2rem, 9vw, 8rem);
}

.aftercare-hero-panel h1 strong {
    color: var(--tt-gold);
    font-weight: 400;
}

.aftercare-hero-panel p,
.aftercare-copy-card p,
.aftercare-section-head p,
.aftercare-step-card p,
.aftercare-piercing-list p,
.aftercare-dark-copy p,
.aftercare-time-grid p,
.aftercare-faq-item p,
.aftercare-cta p {
    line-height: 1.75;
    color: #444444;
}

.aftercare-hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 30px;
}

.aftercare-two-col {
    display: grid;
    grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
    gap: clamp(34px, 6vw, 72px);
    align-items: start;
}

.aftercare-intro,
.aftercare-avoid,
.aftercare-faq {
    background: #ffffff;
}

.aftercare-copy-card,
.aftercare-avoid-list,
.aftercare-faq-list {
    padding: clamp(30px, 5vw, 58px);
    border: 1px solid #111111;
    background: #ffffff;
}

.aftercare-copy-card p + p {
    margin-top: 18px;
}

.aftercare-steps,
.aftercare-timeline {
    background: #f5f5f5;
}

.aftercare-section-head {
    max-width: 760px;
    margin-bottom: 46px;
}

.aftercare-section-head p {
    margin-top: 14px;
}

.aftercare-step-grid,
.aftercare-time-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.aftercare-step-card,
.aftercare-time-grid article {
    min-height: 310px;
    padding: 30px;
    border: 1px solid #111111;
    background: #ffffff;
}

.aftercare-step-card span {
    color: var(--tt-gold);
    font-weight: 900;
    letter-spacing: 0.14em;
}

.aftercare-step-card h3,
.aftercare-piercing-list h3 {
    margin: 24px 0 14px;
    font-family: var(--tt-serif);
    font-size: clamp(1.7rem, 2.8vw, 2.35rem);
    line-height: 1;
}

.aftercare-piercing {
    isolation: isolate;
    background: #111111;
    color: #ffffff;
}

.aftercare-fixed-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(rgba(0,0,0,0.72), rgba(0,0,0,0.72)),
        url('../images/gallery/2.jpg') center / cover fixed no-repeat;
}

.aftercare-dark-copy .section-label,
.aftercare-dark-copy .section-title,
.aftercare-dark-copy .gold {
    color: #ffffff;
}

.aftercare-dark-copy p {
    color: rgba(255,255,255,0.78);
}

.aftercare-piercing-list {
    display: grid;
    gap: 0;
    border-top: 1px solid rgba(255,255,255,0.36);
}

.aftercare-piercing-list article {
    padding: 26px 0;
    border-bottom: 1px solid rgba(255,255,255,0.36);
}

.aftercare-piercing-list h3 {
    margin-top: 0;
    color: #ffffff;
}

.aftercare-piercing-list p {
    color: rgba(255,255,255,0.76);
}

.aftercare-avoid-list {
    list-style: none;
    display: grid;
    gap: 0;
}

.aftercare-avoid-list li {
    padding: 20px 0;
    border-bottom: 1px solid rgba(17,17,17,0.16);
    font-weight: 700;
    line-height: 1.6;
}

.aftercare-avoid-list li:last-child {
    border-bottom: 0;
}

.aftercare-avoid-list li::before {
    content: 'Avoid';
    display: inline-flex;
    margin-right: 14px;
    color: var(--tt-gold);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.aftercare-time-grid article {
    min-height: 250px;
}

.aftercare-time-grid strong {
    display: block;
    margin-bottom: 20px;
    font-family: var(--tt-heading);
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 0.9;
}

.aftercare-faq-list {
    padding-top: 16px;
    padding-bottom: 16px;
}

.aftercare-faq-item {
    border-bottom: 1px solid #111111;
}

.aftercare-faq-item:last-child {
    border-bottom: 0;
}

.aftercare-faq-item summary {
    padding: 22px 0;
    font-weight: 900;
    cursor: pointer;
    list-style: none;
}

.aftercare-faq-item summary::-webkit-details-marker {
    display: none;
}

.aftercare-faq-item summary::after {
    content: '+';
    float: right;
}

.aftercare-faq-item[open] summary::after {
    content: '-';
}

.aftercare-faq-item p {
    padding: 0 0 22px;
}

.aftercare-cta {
    padding: 86px 0;
    background: #111111;
    color: #ffffff;
}

.aftercare-cta .container {
    display: grid;
    grid-template-columns: minmax(280px, 0.9fr) minmax(280px, 1fr) auto;
    gap: 34px;
    align-items: center;
}

.aftercare-cta h2 {
    color: #ffffff;
    font-size: clamp(3.2rem, 7vw, 6rem);
}

.aftercare-cta p {
    color: rgba(255,255,255,0.78);
}

@media (max-width: 1040px) {
    .aftercare-two-col,
    .aftercare-cta .container {
        grid-template-columns: 1fr;
    }

    .aftercare-step-grid,
    .aftercare-time-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .aftercare-hero {
        min-height: 620px;
        padding: 92px 20px 56px;
    }

    .aftercare-hero-bg,
    .aftercare-fixed-bg {
        background-attachment: scroll;
    }

    .aftercare-hero-panel {
        margin: 0 auto;
        padding: 30px 24px;
    }

    .aftercare-hero-panel h1 {
        font-size: clamp(3.4rem, 18vw, 5rem);
    }

    .aftercare-step-grid,
    .aftercare-time-grid {
        grid-template-columns: 1fr;
    }

    .aftercare-step-card,
    .aftercare-time-grid article {
        min-height: auto;
        padding: 26px;
    }

    .aftercare-copy-card,
    .aftercare-avoid-list,
    .aftercare-faq-list {
        padding: 26px;
    }
}


/* =========================================================
   Tablet image crop fix - generated by ChatGPT
   Fixes over-zoomed fixed/background images on tablet screens.
   ========================================================= */
@media (min-width: 768px) and (max-width: 1180px) {
    .tt-cat-hero-media,
    .tt-featured-copy,
    .tt-featured-fixed,
    .cat-fixed-bg,
    .cat-feature-copy,
    .cat-feature-fixed,
    .aftercare-hero-bg,
    .aftercare-fixed-bg,
    .category-description .cat-fixed-bg,
    .category-hero .cat-fixed-bg {
        background-attachment: scroll !important;
        background-position: center center !important;
        background-size: cover !important;
    }

    .tt-featured-fixed,
    .cat-feature-fixed,
    body.category-detail .cat-fixed-bg,
    .aftercare-fixed-bg {
        background-size: contain !important;
        background-color: #111111 !important;
    }

    .tt-featured-row,
    .cat-feature-top,
    body.category-detail .category-hero,
    .aftercare-dark-panel,
    .aftercare-hero {
        min-height: 520px;
    }

    .tt-signature-card img,
    .cat-image-slide img,
    .cat-feature-slide img,
    .gallery-item img,
    .tt-more-card img,
    .blog-image,
    .collection-card img {
        object-fit: cover !important;
        object-position: center center !important;
    }
}

@media (min-width: 768px) and (max-width: 1180px) and (orientation: portrait) {
    .tt-featured-fixed,
    .cat-feature-fixed,
    body.category-detail .cat-fixed-bg,
    .aftercare-fixed-bg {
        background-size: auto 100% !important;
    }
}

@media (min-width: 768px) and (max-width: 1180px) and (orientation: landscape) {
    .tt-featured-fixed,
    .cat-feature-fixed,
    body.category-detail .cat-fixed-bg,
    .aftercare-fixed-bg {
        background-size: 100% auto !important;
    }
}
