/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-deep: #0A0A0F;
    --bg-dark: #101014;
    --bg-surface: #141418;
    --bg-card: #1A1A20;
    --bg-card-hover: #1E1E26;
    --gold: #C9A84C;
    --gold-light: #D4B96A;
    --gold-dim: #8B7535;
    --gold-glow: rgba(201, 168, 76, 0.15);
    --emerald: #1B6B4A;
    --emerald-light: #2A8F64;
    --ruby: #8B2252;
    --ruby-light: #A83068;
    --text-primary: #E8E4DD;
    --text-secondary: #9A9690;
    --text-dim: #5A5854;
    --border: rgba(201, 168, 76, 0.12);
    --border-light: rgba(201, 168, 76, 0.25);
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'PT Sans', Arial, sans-serif;
    --nav-height: 64px;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background: var(--bg-deep);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--gold-light);
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.fade-in {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 clamp(1.5rem, 4vw, 3rem);
    background: transparent;
    transition: background 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
}

.nav.scrolled {
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 var(--border);
}

.nav__logo {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.05em;
    white-space: nowrap;
}

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

.nav__links a {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--text-secondary);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
}

.nav__links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

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

.nav__links a:hover::after {
    width: 100%;
}

.nav__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
    z-index: 1001;
}

.nav__hamburger span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--gold);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav__hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 5px);
}

.nav__hamburger.active span:nth-child(2) {
    opacity: 0;
}

.nav__hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -5px);
}

/* ============================================
   DECORATIVE ELEMENTS
   ============================================ */
.ornament-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1rem 0;
    opacity: 0.5;
}

.ornament-divider__line {
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.ornament-divider__diamond {
    width: 8px;
    height: 8px;
    border: 1px solid var(--gold);
    transform: rotate(45deg);
}

.section-ornament {
    text-align: center;
    margin-bottom: 3rem;
}

.section-ornament svg {
    width: 120px;
    height: 20px;
    opacity: 0.4;
}

/* SVG Bull Skull */
.bull-skull {
    display: inline-block;
}

.bull-skull svg {
    fill: var(--gold);
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.bull-skull:hover svg {
    opacity: 1;
}

/* ============================================
   SECTIONS — COMMON
   ============================================ */
.section {
    padding: clamp(4rem, 8vw, 8rem) clamp(1.5rem, 4vw, 3rem);
    max-width: 1200px;
    margin: 0 auto;
}

.section--wide {
    max-width: 1400px;
}

.section__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 500;
    color: var(--gold);
    text-align: center;
    letter-spacing: 0.06em;
    margin-bottom: 1rem;
}

.section__subtitle {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-secondary);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

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

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 600px 400px at 50% 40%, rgba(201, 168, 76, 0.06) 0%, transparent 70%),
        radial-gradient(ellipse 300px 500px at 30% 60%, rgba(27, 107, 74, 0.04) 0%, transparent 60%),
        radial-gradient(ellipse 250px 400px at 70% 50%, rgba(139, 34, 82, 0.03) 0%, transparent 60%),
        radial-gradient(circle 800px at 50% 50%, rgba(201, 168, 76, 0.03) 0%, transparent 80%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 70%, var(--bg-deep) 100%);
    pointer-events: none;
}

/* Corner decorations */
.hero__corner {
    position: absolute;
    width: 120px;
    height: 120px;
    opacity: 0.15;
    pointer-events: none;
    z-index: 2;
}

.hero__corner--tl {
    top: 2rem;
    left: 2rem;
}

.hero__corner--tr {
    top: 2rem;
    right: 2rem;
    transform: scaleX(-1);
}

.hero__corner--bl {
    bottom: 2rem;
    left: 2rem;
    transform: scaleY(-1);
}

.hero__corner--br {
    bottom: 2rem;
    right: 2rem;
    transform: scale(-1);
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
}

.hero__skull {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.hero__skull img {
    width: 80px;
    height: auto;
    opacity: 0.85;
    filter: drop-shadow(0 0 15px rgba(201, 168, 76, 0.15));
    transition: opacity 0.4s ease, filter 0.4s ease;
}

.hero__skull:hover img {
    opacity: 1;
    filter: drop-shadow(0 0 25px rgba(201, 168, 76, 0.3));
}

.hero__ornament-top {
    margin-bottom: 1.5rem;
}

.hero__ornament-top svg {
    width: 200px;
    height: 30px;
    opacity: 0.35;
}

.hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 0.08em;
    line-height: 1.15;
    margin-bottom: 1rem;
    text-shadow: 0 0 80px rgba(201, 168, 76, 0.2);
}

.hero__subtitle {
    font-family: var(--font-heading);
    font-size: clamp(1.1rem, 2.5vw, 1.6rem);
    font-weight: 400;
    font-style: italic;
    color: var(--text-primary);
    letter-spacing: 0.04em;
    margin-bottom: 0.75rem;
    opacity: 0.85;
}

.hero__location {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-secondary);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
}

.hero__ornament-bottom {
    margin-top: 0;
    margin-bottom: 2.5rem;
}

.hero__ornament-bottom svg {
    width: 160px;
    height: 20px;
    opacity: 0.3;
    transform: scaleY(-1);
}

.btn {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    padding: 0.9rem 2.5rem;
    border: 1px solid var(--gold);
    color: var(--gold);
    background: transparent;
    cursor: pointer;
    transition: all 0.4s ease;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
    z-index: -1;
}

.btn:hover {
    color: var(--bg-deep);
}

.btn:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.btn--ruby {
    border-color: var(--ruby);
    color: var(--text-primary);
}

.btn--ruby::before {
    background: var(--ruby);
}

.btn--ruby:hover {
    color: #fff;
}

.hero__scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.4;
    animation: scrollHint 2s ease-in-out infinite;
}

.hero__scroll-hint span {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.hero__scroll-hint svg {
    width: 16px;
    height: 16px;
    stroke: var(--gold);
}

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

/* ============================================
   PORTFOLIO
   ============================================ */
.portfolio {
    background: var(--bg-dark);
    padding-top: 0;
}

.portfolio__inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: clamp(4rem, 8vw, 8rem) clamp(1.5rem, 4vw, 3rem);
}

.portfolio__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.portfolio__card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 2px;
    padding: 14px;
    padding-bottom: 14px;
    background: var(--bg-deep);
    aspect-ratio: 4 / 5;
}

/* Thin gold frame on dark passepartout — outside the photo */
.portfolio__card-frame {
    position: absolute;
    inset: 6px;
    border: 0.5px solid var(--gold-dim);
    pointer-events: none;
    z-index: 2;
    transition: border-color 0.4s ease;
}

/* Corner accents */
.portfolio__card-frame::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    width: 18px;
    height: 18px;
    border-top: 1px solid var(--gold);
    border-left: 1px solid var(--gold);
    opacity: 0.4;
    transition: opacity 0.4s ease;
}

.portfolio__card-frame::after {
    content: '';
    position: absolute;
    bottom: -3px;
    right: -3px;
    width: 18px;
    height: 18px;
    border-bottom: 1px solid var(--gold);
    border-right: 1px solid var(--gold);
    opacity: 0.4;
    transition: opacity 0.4s ease;
}

.portfolio__card:hover .portfolio__card-frame {
    border-color: var(--gold);
}

.portfolio__card:hover .portfolio__card-frame::before,
.portfolio__card:hover .portfolio__card-frame::after {
    opacity: 0.8;
}

.portfolio__card img {
    position: absolute;
    inset: 14px;
    width: calc(100% - 28px);
    height: calc(100% - 28px);
    object-fit: cover;
    display: block;
    z-index: 1;
    transition: transform 0.6s ease;
}

.portfolio__card::after {
    content: '';
    position: absolute;
    inset: 14px;
    background: linear-gradient(180deg, transparent 50%, rgba(10, 10, 15, 0.7) 100%);
    opacity: 1;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.portfolio__card:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 30px rgba(201, 168, 76, 0.08);
}

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

.portfolio__card:hover::after {
    opacity: 1;
}

.portfolio__card-info {
    position: absolute;
    bottom: 14px;
    left: 14px;
    right: 14px;
    padding: 1rem 1.2rem;
    z-index: 2;
    transform: translateY(0);
    opacity: 1;
    transition: all 0.4s ease;
}

.portfolio__card:hover .portfolio__card-info {
    transform: translateY(0);
    opacity: 1;
}

.portfolio__card-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--gold);
    margin-bottom: 0.25rem;
}

.portfolio__card-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    letter-spacing: 0.05em;
}

/* ============================================
   PROCESS — 8-step grid with art nouveau frames
   ============================================ */
.process__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-top: 3rem;
}

.process__card {
    position: relative;
    padding: 2rem 1.5rem 1.5rem;
    background: var(--bg-card);
    transition: all 0.4s ease;
}

/* Thin gold art-nouveau frame */
.process__card::before {
    content: '';
    position: absolute;
    inset: 6px;
    border: 0.5px solid var(--gold-dim);
    pointer-events: none;
    transition: border-color 0.4s ease;
}

/* Corner flourish accents — top-left and bottom-right */
.process__card::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    border-top: 1px solid var(--gold);
    border-left: 1px solid var(--gold);
    opacity: 0.4;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.process__card-corner {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 20px;
    height: 20px;
    border-bottom: 1px solid var(--gold);
    border-right: 1px solid var(--gold);
    opacity: 0.4;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.process__card:hover {
    background: var(--bg-card-hover);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.process__card:hover::before {
    border-color: var(--gold);
}

.process__card:hover::after,
.process__card:hover .process__card-corner {
    opacity: 0.8;
}

.process__number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 300;
    color: var(--gold);
    opacity: 0.35;
    line-height: 1;
    margin-bottom: 0.75rem;
    letter-spacing: 0.02em;
}

.process__card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    letter-spacing: 0.03em;
}

.process__card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.process__card-detail {
    margin-top: 0.75rem;
    font-size: 0.75rem;
    color: var(--gold-dim);
    font-style: italic;
    letter-spacing: 0.03em;
}

/* Connecting line between cards */
.process__flow {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.5rem 0;
    opacity: 0.3;
}

.process__flow svg {
    width: 100%;
    max-width: 800px;
    height: 12px;
}

/* Process journey — horizontal photo strip */
.process__journey {
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--border);
}

.process__journey-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--gold);
    text-align: center;
    letter-spacing: 0.08em;
    margin-bottom: 2rem;
    opacity: 0.7;
}

.process__journey-strip {
    display: flex;
    align-items: center;
    gap: 0;
    justify-content: center;
}

.process__journey-step {
    text-align: center;
    flex: 0 0 auto;
    width: 180px;
}

.process__journey-img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    border: 1px solid var(--gold-dim);
    margin: 0 auto 0.75rem;
    display: block;
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.process__journey-step:hover .process__journey-img {
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(201, 168, 76, 0.15);
}

.process__journey-label {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: var(--text-secondary);
    letter-spacing: 0.06em;
}

.process__journey-num {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    color: var(--gold-dim);
    letter-spacing: 0.15em;
    display: block;
    margin-bottom: 0.3rem;
}

.process__journey-arrow {
    flex: 0 0 40px;
    text-align: center;
    color: var(--gold);
    opacity: 0.25;
    font-size: 0.9rem;
    padding-bottom: 2rem;
}

.process__journey-arrow svg {
    width: 30px;
    height: 8px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1;
}

@media (max-width: 1024px) {
    .process__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .process__journey-strip {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    .process__journey-step {
        width: 140px;
    }
    .process__journey-img {
        width: 120px;
        height: 120px;
    }
    .process__journey-arrow {
        flex: 0 0 20px;
    }
}

@media (max-width: 768px) {
    .process__grid {
        grid-template-columns: 1fr;
    }
    .process__journey-strip {
        flex-direction: column;
        gap: 1rem;
    }
    .process__journey-arrow {
        padding-bottom: 0;
        transform: rotate(90deg);
    }
}

/* ============================================
   ABOUT
   ============================================ */
.about {
    background: var(--bg-dark);
}

.about__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: clamp(4rem, 8vw, 8rem) clamp(1.5rem, 4vw, 3rem);
}

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

.about__text {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.about__text + .about__text {
    margin-top: 1rem;
}

.about__quote {
    margin-top: 3rem;
    padding: 2rem 3rem;
    position: relative;
}

.about__quote::before,
.about__quote::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    left: 50%;
    transform: translateX(-50%);
}

.about__quote::before { top: 0; }
.about__quote::after { bottom: 0; }

.about__quote p {
    font-family: var(--font-heading);
    font-size: clamp(1.3rem, 3vw, 1.7rem);
    font-style: italic;
    font-weight: 400;
    color: var(--gold);
    line-height: 1.5;
    opacity: 0.85;
}

/* ============================================
   SERVICES
   ============================================ */
.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.services__card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

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

.services__card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-light);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.services__card:hover::before {
    opacity: 1;
}

.services__card-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.services__card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.services__card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
    background: var(--bg-dark);
}

.testimonials__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: clamp(4rem, 8vw, 8rem) clamp(1.5rem, 4vw, 3rem);
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.testimonials__card {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    padding: 2rem;
    position: relative;
}

.testimonials__card::before {
    content: '\201C';
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--gold);
    opacity: 0.2;
    position: absolute;
    top: 0.5rem;
    left: 1.5rem;
    line-height: 1;
}

.testimonials__card blockquote {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--text-primary);
    opacity: 0.9;
    margin-bottom: 1.5rem;
    padding-top: 1rem;
    font-style: italic;
}

.testimonials__author {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--gold);
    font-weight: 500;
}

.testimonials__role {
    font-size: 0.8rem;
    color: var(--text-dim);
    margin-top: 0.2rem;
}

/* FAQ */
.faq__list {
    max-width: 700px;
    margin: 0 auto;
}

.faq__item {
    border-bottom: 1px solid var(--border);
    padding: 1.2rem 0;
}

.faq__item summary {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--text-primary);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq__item summary::-webkit-details-marker { display: none; }

.faq__item summary::after {
    content: '+';
    font-size: 1.4rem;
    color: var(--gold-dim);
    transition: transform 0.3s ease;
}

.faq__item[open] summary::after {
    content: '−';
}

.faq__item p {
    margin-top: 0.8rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.faq__item a {
    color: var(--gold);
    text-decoration: none;
    border-bottom: 1px solid var(--gold-dim);
}

/* ============================================
   CONTACT
   ============================================ */
.contact__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: clamp(4rem, 8vw, 8rem) clamp(1.5rem, 4vw, 3rem);
}

.contact__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact__info h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

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

.contact__link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

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

.contact__link-icon {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.contact__link:hover .contact__link-icon {
    border-color: var(--gold);
    background: var(--gold-glow);
}

.contact__link-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.5;
}

.contact__address {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.contact__address p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.contact__form form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form__group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form__group label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.form__group input,
.form__group textarea {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-primary);
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 0.85rem 1rem;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form__group input:focus,
.form__group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px var(--gold-glow);
}

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

.form__submit {
    align-self: flex-start;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--bg-deep);
    border-top: 1px solid var(--border);
    padding: 3rem clamp(1.5rem, 4vw, 3rem);
}

.footer__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
}

.footer__brand {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 0.06em;
}

.footer__socials {
    display: flex;
    gap: 1rem;
}

.footer__social {
    width: 36px;
    height: 36px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.footer__social:hover {
    border-color: var(--gold);
    background: var(--gold-glow);
}

.footer__social svg {
    width: 16px;
    height: 16px;
    fill: var(--text-secondary);
    transition: fill 0.3s ease;
}

.footer__social:hover svg {
    fill: var(--gold);
}

.footer__copy {
    font-size: 0.8rem;
    color: var(--text-dim);
    letter-spacing: 0.05em;
}

/* ============================================
   MOBILE MENU OVERLAY
   ============================================ */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 15, 0.97);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

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

.mobile-menu a {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--text-primary);
    letter-spacing: 0.08em;
    transition: color 0.3s ease;
}

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

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .portfolio__grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .process__content {
        flex-direction: column;
    }

    .process__images {
        flex: none;
        flex-direction: row;
        width: 100%;
    }

    .process__images img {
        width: 50%;
    }
}

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

    .nav__hamburger {
        display: flex;
    }

    .hero__title {
        font-size: clamp(2rem, 8vw, 3.5rem);
    }

    .hero__corner {
        width: 60px;
        height: 60px;
    }

    .portfolio__grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .portfolio__card {
        aspect-ratio: 4 / 4;
    }

    .portfolio__card-info {
        opacity: 1;
        transform: translateY(0);
    }

    .portfolio__card::after {
        opacity: 1;
    }

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

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

    .contact__content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .process__images {
        flex-direction: column;
    }

    .process__images img {
        width: 100%;
    }

    .about__quote {
        padding: 2rem 1rem;
    }
}

/* ============================================
   PRINT
   ============================================ */
/* ============================================
   HERO SLIDESHOW
   ============================================ */
.hero__slideshow {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: heroSlide 32.5s infinite;
    will-change: opacity, transform;
}

.hero__slide:nth-child(1) {
    background-image: url('img/tulips.jpg');
    animation-delay: 0s;
}
.hero__slide:nth-child(2) {
    background-image: url('img/roses-art-nouveau.jpg');
    animation-delay: 6.5s;
}
.hero__slide:nth-child(3) {
    background-image: url('img/kingfisher.jpg');
    animation-delay: 13s;
}
.hero__slide:nth-child(4) {
    background-image: url('img/parrot.jpg');
    animation-delay: 19.5s;
}
.hero__slide:nth-child(5) {
    background-image: url('img/flowers-frame.jpg');
    animation-delay: 26s;
}

@keyframes heroSlide {
    0%      { opacity: 0; transform: scale(1); }
    4.6%    { opacity: 1; transform: scale(1); }
    20%     { opacity: 1; transform: scale(1.1); }
    24.6%   { opacity: 0; transform: scale(1.1); }
    100%    { opacity: 0; transform: scale(1); }
}

.hero__slideshow-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 15, 0.65);
    z-index: 1;
}

/* ============================================
   FLOATING WHATSAPP BUTTON
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--bg-deep);
    border: 1px solid var(--gold-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    transition: all 0.4s ease;
    animation: whatsappPulse 3s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.08);
    border-color: var(--gold);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(201, 168, 76, 0.15);
    animation: none;
}

.whatsapp-float svg {
    width: 24px;
    height: 24px;
    fill: var(--gold);
    transition: fill 0.3s ease;
}

.whatsapp-float:hover svg {
    fill: var(--gold-light);
}

@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5); }
    50% { box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 0 0 6px rgba(201, 168, 76, 0.1); }
}

/* ============================================
   ABOUT PHOTO
   ============================================ */
.about__photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold);
    margin: 0 auto 2rem;
    display: block;
    opacity: 0.9;
}

/* ============================================
   HOW TO ORDER
   ============================================ */
.how-to-order {
    background: var(--bg-dark);
}

.how-to-order__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: clamp(4rem, 8vw, 8rem) clamp(1.5rem, 4vw, 3rem);
}

.how-to-order__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
}

.how-to-order__grid::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 10%;
    right: 10%;
    height: 1px;
    border-top: 2px dashed var(--gold-dim);
    opacity: 0.4;
    z-index: 0;
}

.how-to-order__step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.how-to-order__number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--gold);
    background: var(--bg-dark);
    margin: 0 auto 1.2rem;
}

.how-to-order__step h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.how-to-order__step p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

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

.lightbox__overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 15, 0.92);
}

.lightbox__img {
    position: relative;
    z-index: 1;
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 2px;
}

.lightbox__title {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--gold);
    text-align: center;
    white-space: nowrap;
}

.lightbox__close {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    z-index: 2;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 2.5rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease;
}

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

/* ============================================
   SERVICES NOTE (replacing prices)
   ============================================ */
.services__note {
    text-align: center;
    margin-top: 2.5rem;
    font-style: italic;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

.services__note a {
    color: var(--gold);
    font-style: normal;
    font-weight: 500;
}

@media (max-width: 768px) {
    .how-to-order__grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .how-to-order__grid::before {
        top: 0;
        bottom: 0;
        left: 28px;
        right: auto;
        width: 1px;
        height: auto;
        border-top: none;
        border-left: 2px dashed var(--gold-dim);
    }

    .how-to-order__step {
        text-align: left;
        display: flex;
        gap: 1.2rem;
        align-items: flex-start;
    }

    .how-to-order__number {
        margin: 0;
        flex-shrink: 0;
    }
}

@media print {
    .nav, .mobile-menu, .hero__scroll-hint, .nav__hamburger, .whatsapp-float {
        display: none !important;
    }

    body {
        background: #fff;
        color: #111;
    }

    .hero {
        min-height: auto;
        padding: 2rem 0;
    }

    .hero::before, .hero::after, .hero__slideshow {
        display: none;
    }

    .hero__title, .section__title, .about__quote p {
        color: #111;
    }

    .contact__link {
        color: #111;
    }

    .contact__form {
        display: none;
    }
}
