/* MAKEUP AYŞE - Luxury Portfolio Styles */

/* Import Brush Font - Parisienne */
@import url('https://fonts.googleapis.com/css2?family=Parisienne&display=swap');

/* CSS Variables */
:root {
    --ivory: #F6F3EE;
    --beige: #D8CFC4;
    --anthracite: #1C1C1C;
    --taupe: #A89F94;
    --gold: #C6A75E;
    --cream: #FAF8F5;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Manrope', sans-serif;
    background: var(--ivory);
    color: var(--anthracite);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    /* overflow-x: hidden KALDIRILDI — portfolio slider'ın kaymasını engelliyordu */
}

::selection {
    background: var(--gold);
    color: var(--ivory);
}

/* Scrollbar gizle — sadece body için değil global */
::-webkit-scrollbar {
    width: 0;
    height: 0;
}

.app-container {
    overflow-x: hidden; /* Yalnızca app-container kırpar, body değil */
}

/* Typography */
h1, h2, h3, h4, h5 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    line-height: 1.1;
}

em {
    font-style: italic;
    color: var(--taupe);
}

a {
    text-decoration: none;
    transition: color 0.4s ease;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

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

/* ================================================
   HEADER / NAVIGATION
   ================================================ */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    padding: 24px 40px;
}

@media (max-width: 768px) {
    .header { padding: 18px 20px; }
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Parisienne', cursive;
    font-size: 2rem;
    color: var(--gold);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    letter-spacing: 0.05em;
}

@media (max-width: 768px) {
    .logo { font-size: 1.6rem; }
}

.menu-btn {
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 4px;
    font-family: 'Manrope', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #fff;
    cursor: pointer;
    padding: 10px 15px;
    transition: all 0.3s;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.menu-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--anthracite);
    text-shadow: none;
}

/* ================================================
   MENU OVERLAY
   ================================================ */

.menu-overlay {
    position: fixed;
    inset: 0;
    background: var(--anthracite);
    z-index: 100;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px 60px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

@media (max-width: 768px) {
    .menu-overlay { padding: 80px 30px; }
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.menu-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.menu-item {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.menu-overlay.active .menu-item {
    opacity: 1;
    transform: translateX(0);
}

.menu-overlay.active .menu-item:nth-child(1) { transition-delay: 0.1s; }
.menu-overlay.active .menu-item:nth-child(2) { transition-delay: 0.15s; }
.menu-overlay.active .menu-item:nth-child(3) { transition-delay: 0.2s; }
.menu-overlay.active .menu-item:nth-child(4) { transition-delay: 0.25s; }
.menu-overlay.active .menu-item:nth-child(5) { transition-delay: 0.3s; }

.menu-item a {
    display: flex;
    align-items: baseline;
    gap: 20px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: all 0.4s ease;
}

.menu-item a:hover {
    padding-left: 20px;
    border-color: var(--gold);
}

.menu-number {
    font-family: 'Manrope', sans-serif;
    font-size: 0.75rem;
    color: var(--gold);
}

.menu-label {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 6vw, 4rem);
    color: var(--ivory);
    transition: color 0.3s;
}

.menu-item a:hover .menu-label {
    color: var(--gold);
}

.menu-footer {
    display: flex;
    justify-content: space-between;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    opacity: 0;
    transition: opacity 0.4s ease 0.35s;
}

.menu-overlay.active .menu-footer {
    opacity: 1;
}

.menu-footer a {
    font-size: 0.875rem;
    color: var(--taupe);
}

.menu-footer a:hover {
    color: var(--gold);
}

/* ================================================
   HERO SECTION
   ================================================ */

.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    inset: 0;
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    padding: 80px 40px;
    max-width: 900px;
}

@media (max-width: 768px) {
    .hero-content { padding: 50px 20px; }
}

.hero-tag {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--beige);
}

.hero-line {
    width: 50px;
    height: 1px;
    background: var(--gold);
}

.hero-title {
    font-size: clamp(2.8rem, 9vw, 7rem);
    color: var(--ivory);
    margin-bottom: 30px;
    line-height: 1;
}

.hero-title .reveal-line {
    display: block;
    overflow: hidden;
}

.hero-subtitle {
    font-size: 1.0625rem;
    color: var(--beige);
    max-width: 500px;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.8s forwards;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: var(--gold);
    color: var(--anthracite);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: all 0.4s ease;
    opacity: 0;
    animation: fadeInUp 0.8s ease 1s forwards;
}

.cta-btn:hover {
    background: var(--ivory);
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--beige);
    animation: bounce 2s ease infinite;
}

.hero-scroll span {
    font-size: 0.625rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(10px); }
}

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

/* ================================================
   SECTION BASE
   ================================================ */

.section {
    padding: 100px 0;
}

@media (min-width: 1024px) {
    .section { padding: 140px 0; }
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(2.2rem, 5vw, 4rem);
    margin-bottom: 40px;
}

/* ================================================
   STATS BANNER
   ================================================ */

.stats-banner {
    background: var(--anthracite);
    padding: 70px 40px;
}

@media (max-width: 768px) {
    .stats-banner { padding: 50px 20px; }
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .stats-grid { grid-template-columns: repeat(4, 1fr); }
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--gold);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--taupe);
}

/* ================================================
   SERVICES SECTION
   ================================================ */

.section-services {
    background: var(--ivory);
}

.services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 20px;
}

.view-all-btn {
    font-size: 0.875rem;
    color: var(--anthracite);
    border-bottom: 1px solid var(--gold);
    padding-bottom: 5px;
    transition: color 0.3s;
}

.view-all-btn:hover {
    color: var(--gold);
}

.services-showcase {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 1024px) {
    .services-showcase {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }
}

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

.service-item {
    border-bottom: 1px solid var(--beige);
    transition: all 0.3s ease;
}

.service-item a {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px 0;
    color: inherit;
}

.service-item:hover,
.service-item.active {
    border-color: var(--gold);
}

.service-item:hover a,
.service-item.active a {
    padding-left: 15px;
}

.service-icon-small {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.service-item-content {
    flex: 1;
}

.service-item-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.375rem;
    color: var(--anthracite);
    margin-bottom: 5px;
    transition: color 0.3s;
}

.service-item:hover .service-item-content h3,
.service-item.active .service-item-content h3 {
    color: var(--gold);
}

.service-item-content p {
    font-size: 0.875rem;
    color: var(--taupe);
}

.service-arrow {
    font-size: 1.25rem;
    color: var(--gold);
    opacity: 0;
    transition: all 0.3s;
}

.service-item:hover .service-arrow,
.service-item.active .service-arrow {
    opacity: 1;
}

.services-image-preview {
    aspect-ratio: 3/4;
    overflow: hidden;
    display: none;
}

@media (min-width: 1024px) {
    .services-image-preview { display: block; }
}

.services-image-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s ease;
}

/* ================================================
   PORTFOLIO SECTION
   ================================================ */

.section-portfolio {
    background: var(--anthracite);
    padding: 80px 0;
}

.section-portfolio + .section-portfolio {
    margin-top: 0;
    padding-top: 40px;
}

#series {
    margin-top: 50px;
}

.section-portfolio .section-tag,
.section-portfolio .section-title {
    color: var(--ivory);
}

.section-portfolio .section-title em {
    color: var(--taupe);
}

/* PORTFOLIO SLIDER */
.section-portfolio {
    overflow: hidden;
}

.section-portfolio .portfolio-gallery {
    display: flex;
    gap: 16px;
    padding: 20px 40px 40px;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    width: 100%;
    box-sizing: border-box;
    cursor: grab;
}

.section-portfolio .portfolio-gallery:active {
    cursor: grabbing;
}

.section-portfolio .portfolio-gallery::-webkit-scrollbar { display: none; }

/* MASAÜSTÜ: 6 kart görünür */
.section-portfolio .gallery-item {
    flex: 0 0 14vw;
    min-width: 120px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

.section-portfolio .gallery-item img {
    width: 100%;
    height: auto;
    aspect-ratio: 2/3;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.section-portfolio .gallery-item:hover img {
    transform: scale(1.06);
}

/* TABLET: 4 kart görünür */
@media (min-width: 769px) and (max-width: 1024px) {
    .section-portfolio .gallery-item {
        flex: 0 0 22vw;
    }
}

/* MOBİL: 3 kart tam sığar */
@media (max-width: 768px) {
    .section-portfolio .portfolio-gallery {
        gap: 10px;
        padding: 16px 16px 24px;
    }

    .section-portfolio .gallery-item {
        flex: 0 0 calc((100vw - 52px) / 3);
        min-width: 80px;
        border-radius: 10px;
    }

    .section-portfolio .gallery-item img {
        width: 100%;
        height: auto;
        aspect-ratio: 2/3;
        object-fit: cover;
        display: block;
    }
}

/* Gallery overlay */
.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.gallery-item {
    position: relative;
}

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

.gallery-overlay span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    color: var(--ivory);
}

/* ================================================
   LIGHTBOX
   ================================================ */

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    z-index: 9999;
}

.lightbox.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 10px;
    object-fit: contain;
}

/* ================================================
   ABOUT SECTION
   ================================================ */

.section-about {
    display: grid;
    grid-template-columns: 1fr;
    background: var(--cream);
}

@media (min-width: 1024px) {
    .section-about {
        grid-template-columns: 1fr 1fr;
    }
}

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

@media (max-width: 1023px) {
    .about-image {
        aspect-ratio: 16/9;
        max-height: 60vw;
    }
}

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

.about-content {
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (min-width: 1024px) {
    .about-content { padding: 100px 80px; }
}

.about-content p {
    font-size: 1.0625rem;
    color: var(--taupe);
    margin-bottom: 25px;
    line-height: 1.8;
}

.about-signature {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.375rem !important;
    color: var(--anthracite) !important;
    margin-top: 20px;
}

/* ================================================
   CONTACT SECTION
   ================================================ */

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

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1.2fr;
        gap: 100px;
    }
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 40px;
}

.contact-link {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--beige);
    transition: all 0.3s;
}

.contact-link:hover {
    border-color: var(--gold);
}

.contact-label {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--taupe);
}

.contact-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--anthracite);
    transition: color 0.3s;
}

.contact-link:hover .contact-value {
    color: var(--gold);
}

/* Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 640px) {
    .form-row { grid-template-columns: 1fr 1fr; }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group.full {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--taupe);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--beige);
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
    color: var(--anthracite);
    transition: border-color 0.3s;
    border-radius: 0;
    -webkit-appearance: none;
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--taupe);
}

.form-group textarea {
    resize: none;
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 18px 48px;
    background: var(--anthracite);
    color: var(--ivory);
    border: none;
    font-family: 'Manrope', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s ease;
    margin-top: 20px;
    align-self: flex-start;
}

@media (max-width: 768px) {
    .submit-btn { align-self: stretch; text-align: center; }
}

.submit-btn:hover {
    background: var(--gold);
    color: var(--anthracite);
}

.form-success {
    background: var(--cream);
    padding: 60px 40px;
    text-align: center;
    border: 1px solid var(--gold);
}

@media (max-width: 768px) {
    .form-success { padding: 40px 24px; }
}

.form-success h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    margin-bottom: 15px;
}

.form-success p {
    color: var(--taupe);
}

/* ================================================
   FOOTER
   ================================================ */

.footer {
    background: var(--anthracite);
    padding: 60px 40px;
}

@media (max-width: 768px) {
    .footer { padding: 50px 20px; }
}

.footer-top {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 30px;
}

@media (min-width: 768px) {
    .footer-top {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }
}

.footer-logo {
    font-family: 'Parisienne', cursive;
    font-size: 2rem;
    letter-spacing: 0.05em;
    color: var(--gold);
    display: block;
    margin-bottom: 10px;
}

.footer-brand p {
    font-size: 0.875rem;
    color: var(--taupe);
}

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

.footer-links a {
    font-size: 0.875rem;
    color: var(--taupe);
}

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

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 0.75rem;
    color: var(--taupe);
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

/* ================================================
   SERVICES PAGE
   ================================================ */

.services-page {
    background: var(--ivory);
}

.services-page-hero {
    padding: 160px 0 80px;
    background: var(--cream);
    text-align: center;
}

@media (max-width: 768px) {
    .services-page-hero { padding: 120px 0 60px; }
}

.services-page-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 8vw, 5rem);
    color: var(--anthracite);
    margin-bottom: 20px;
}

.services-page-hero p {
    font-size: 1.125rem;
    color: var(--taupe);
}

.services-page-content {
    padding: 60px 0 100px;
}

.category-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 50px;
    justify-content: center;
}

.filter-btn {
    background: transparent;
    border: 1px solid var(--beige);
    padding: 12px 24px;
    font-family: 'Manrope', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    color: var(--anthracite);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--anthracite);
    border-color: var(--anthracite);
    color: var(--ivory);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 640px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .services-grid { grid-template-columns: repeat(3, 1fr); }
}

.service-card-link {
    display: block;
}

.service-card {
    background: var(--cream);
    transition: all 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.service-card-image {
    aspect-ratio: 4/3;
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.service-card-content {
    padding: 25px;
    position: relative;
}

.service-card-icon {
    font-size: 1.5rem;
    display: block;
    margin-bottom: 12px;
}

.service-card-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.375rem;
    color: var(--anthracite);
    margin-bottom: 8px;
}

.service-card-content p {
    font-size: 0.875rem;
    color: var(--taupe);
    line-height: 1.6;
}

.service-card-arrow {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 1.25rem;
    color: var(--gold);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s;
}

.service-card:hover .service-card-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* ================================================
   SERVICE DETAIL PAGE
   ================================================ */

.service-detail-page {
    background: var(--ivory);
}

.service-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.service-hero-image {
    position: absolute;
    inset: 0;
}

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

.service-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.2) 100%);
}

.service-hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 60px 40px;
}

@media (max-width: 768px) {
    .service-hero-content { padding: 40px 20px; }
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    color: var(--beige);
    font-family: 'Manrope', sans-serif;
    font-size: 0.875rem;
    cursor: pointer;
    margin-bottom: 30px;
    transition: color 0.3s;
    padding: 0;
}

.back-btn:hover {
    color: var(--gold);
}

.service-hero-text {
    max-width: 800px;
}

.service-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 20px;
}

.service-hero-text h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 6vw, 4rem);
    color: var(--ivory);
    margin-bottom: 15px;
}

.service-hero-desc {
    font-size: 1.125rem;
    color: var(--beige);
}

.service-content {
    padding: 80px 0 100px;
}

.service-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
}

@media (min-width: 1024px) {
    .service-grid {
        grid-template-columns: 1.5fr 1fr;
        gap: 80px;
    }
}

.service-main h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--anthracite);
    margin-bottom: 30px;
}

.service-description p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--taupe);
    margin-bottom: 25px;
}

.service-scope {
    background: var(--cream);
    padding: 40px;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .service-scope { padding: 30px 20px; }
}

.service-scope h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--anthracite);
    margin-bottom: 25px;
}

.service-scope ul {
    list-style: none;
}

.service-scope li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--beige);
    font-size: 0.9375rem;
    color: var(--anthracite);
}

.service-scope li:last-child {
    border-bottom: none;
}

.scope-check {
    color: var(--gold);
    font-weight: bold;
}

.service-cta-box {
    background: var(--anthracite);
    padding: 40px;
    text-align: center;
}

.service-cta-box h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    color: var(--ivory);
    margin-bottom: 20px;
}

.service-cta-btn {
    display: inline-block;
    padding: 15px 40px;
    background: var(--gold);
    color: var(--anthracite);
    font-family: 'Manrope', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: all 0.3s;
}

.service-cta-btn:hover {
    background: var(--ivory);
}

/* ================================================
   RELATED SERVICES
   ================================================ */

.related-services {
    padding: 80px 0;
    background: var(--cream);
}

.related-services h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--anthracite);
    margin-bottom: 40px;
}

.related-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 768px) {
    .related-grid { grid-template-columns: repeat(3, 1fr); }
}

.related-card {
    display: block;
    background: var(--ivory);
    transition: transform 0.3s;
}

.related-card:hover {
    transform: translateY(-5px);
}

.related-image {
    aspect-ratio: 4/3;
    overflow: hidden;
}

.related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.related-info {
    padding: 20px;
}

.related-icon {
    font-size: 1.5rem;
    display: block;
    margin-bottom: 10px;
}

.related-info h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    color: var(--anthracite);
}

/* ================================================
   HOMEPAGE FULL SERVICES GRID
   ================================================ */

.section-services-full {
    background: var(--ivory);
    padding: 100px 0;
}

.services-header-center {
    text-align: center;
    margin-bottom: 50px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--taupe);
    margin-top: 10px;
}

/* ================================================
   INSTAGRAM FEED SECTION
   ================================================ */

.section-instagram {
    background: var(--cream);
    padding: 80px 0;
}

.instagram-header {
    text-align: center;
    margin-bottom: 40px;
}

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

@media (min-width: 768px) {
    .instagram-grid { grid-template-columns: repeat(6, 1fr); }
}

.instagram-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    display: block;
}

.instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.instagram-item:hover img {
    transform: scale(1.1);
}

.instagram-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

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

.instagram-overlay span {
    color: #fff;
    font-size: 1.5rem;
}

.instagram-cta {
    text-align: center;
    margin-top: 40px;
}

.instagram-btn {
    display: inline-block;
    padding: 15px 40px;
    background: var(--anthracite);
    color: var(--ivory);
    font-family: 'Manrope', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: all 0.3s;
}

.instagram-btn:hover {
    background: var(--gold);
    color: var(--anthracite);
}

.instagram-widget-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.instagram-widget-container iframe {
    width: 100%;
    min-height: 400px;
}

/* ================================================
   ANIMATIONS & UTILITIES
   ================================================ */

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

.fade-in {
    animation: fadeIn 0.8s ease forwards;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.hidden {
    display: none !important;
}
