/* ===========================
   DESIGN SYSTEM & VARIABLES
   =========================== */
:root {
    --black: #0a0a0a;
    --dark: #111111;
    --dark-2: #1a1a1a;
    --dark-3: #222222;
    --gray: #888888;
    --gray-light: #bbbbbb;
    --white: #ffffff;
    --off-white: #f5f4f0;
    --accent: #c4aa6a;
    --accent-light: #d4bb7a;
    --accent-dark: #a08848;

    --font-sans: 'Outfit', sans-serif;
    --font-serif: 'Playfair Display', serif;

    --max-w: 1200px;
    --section-py: 100px;

    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

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

body {
    font-family: var(--font-sans);
    background-color: var(--black);
    color: var(--white);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

ul {
    list-style: none;
}

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

.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: var(--section-py) 0;
}

.accent {
    color: var(--accent);
}

.accent-text {
    color: var(--accent);
}

/* ===========================
   SCROLL REVEAL ANIMATIONS
   =========================== */
.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}

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

.reveal:nth-child(2) {
    transition-delay: 0.1s;
}

.reveal:nth-child(3) {
    transition-delay: 0.2s;
}

.reveal:nth-child(4) {
    transition-delay: 0.3s;
}

.reveal:nth-child(5) {
    transition-delay: 0.15s;
}

.reveal:nth-child(6) {
    transition-delay: 0.25s;
}

/* ===========================
   BUTTONS
   =========================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    border-radius: 6px;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.02em;
    transition: all 0.3s var(--ease);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--accent);
    color: var(--black);
}

.btn-primary:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(196, 170, 106, 0.35);
}

.btn-ghost {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
}

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

.btn-large {
    padding: 18px 40px;
    font-size: 16px;
}

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

.btn-arrow {
    transition: transform 0.3s var(--ease);
}

.btn:hover .btn-arrow {
    transform: translateX(4px);
}

/* ===========================
   NAVBAR
   =========================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s var(--ease);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 14px 0;
}

.nav-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-size: 22px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: -0.02em;
}

.logo-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    display: inline-block;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-light);
    transition: color 0.25s;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.nav-links a:hover {
    color: var(--white);
}

.nav-cta {
    background: var(--accent) !important;
    color: var(--black) !important;
    padding: 10px 22px;
    border-radius: 5px;
    font-weight: 700 !important;
    transition: all 0.3s var(--ease) !important;
}

.nav-cta:hover {
    background: var(--accent-light) !important;
    transform: translateY(-1px);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s;
}

/* ===========================
   SECTION HEADERS
   =========================== */
.section-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-label::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 1.5px;
    background: var(--accent);
}

.section-title {
    font-family: var(--font-sans);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--white);
    margin-bottom: 20px;
}

.section-title em {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    color: var(--accent);
}

.section-subtitle {
    font-size: 17px;
    color: var(--gray);
    max-width: 560px;
    line-height: 1.7;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header .section-label {
    justify-content: center;
}

.section-header .section-label::before {
    display: none;
}

.section-header .section-subtitle {
    margin: 0 auto;
}

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

.hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(196, 170, 106, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(196, 170, 106, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 0;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    pointer-events: none;
}

.hero-orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(196, 170, 106, 0.12) 0%, transparent 70%);
    top: -100px;
    right: -100px;
}

.hero-orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(196, 170, 106, 0.08) 0%, transparent 70%);
    bottom: 0;
    left: -50px;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 780px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(196, 170, 106, 0.12);
    border: 1px solid rgba(196, 170, 106, 0.3);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.04em;
    margin-bottom: 28px;
}

.hero-title {
    font-size: clamp(44px, 7vw, 84px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    color: var(--white);
}

.hero-title em {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    color: var(--accent);
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 19px);
    color: var(--gray);
    max-width: 540px;
    line-height: 1.75;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.stat {
    text-align: left;
}

.stat-num {
    display: block;
    font-size: 32px;
    font-weight: 900;
    letter-spacing: -0.04em;
    color: var(--white);
    line-height: 1;
}

.stat-label {
    font-size: 13px;
    color: var(--gray);
    font-weight: 500;
    margin-top: 4px;
    display: block;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.12);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 1;
}

.hero-scroll-indicator span {
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gray);
}

.scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 1;
        transform: scaleY(1);
    }

    50% {
        opacity: 0.4;
        transform: scaleY(0.7);
    }
}

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

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 80px;
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-img-card {
    position: relative;
    width: 360px;
}

.about-img-inner {
    width: 360px;
    height: 400px;
    border-radius: 20px;
    background: var(--dark-2);
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.08);
    /* Scales up slightly to crop the bottom right logo */
}

.designer-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 200px;
    height: 200px;
}

.dp-initials {
    font-size: 64px;
    font-weight: 900;
    color: var(--accent);
    letter-spacing: -0.04em;
    position: relative;
    z-index: 2;
}

.dp-ring {
    position: absolute;
    border-radius: 50%;
    border: 1.5px solid rgba(196, 170, 106, 0.2);
    animation: spin 10s linear infinite;
}

.dp-ring-1 {
    width: 180px;
    height: 180px;
}

.dp-ring-2 {
    width: 220px;
    height: 220px;
    border-style: dashed;
    animation-direction: reverse;
    animation-duration: 15s;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.about-badge-card {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--dark-3);
    border: 1px solid rgba(196, 170, 106, 0.25);
    border-radius: 12px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.badge-icon {
    font-size: 28px;
}

.about-badge-card strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
}

.about-badge-card span {
    font-size: 12px;
    color: var(--gray);
}

.about-tools {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 32px;
}

.tool-tag {
    padding: 6px 14px;
    background: rgba(196, 170, 106, 0.1);
    border: 1px solid rgba(196, 170, 106, 0.2);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.04em;
}

.about-text p {
    color: var(--gray-light);
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 1.75;
}

.about-text strong {
    color: var(--white);
}

.about-text em {
    color: var(--accent);
    font-style: italic;
}

.about-highlights {
    margin: 28px 0 36px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 15px;
    color: var(--gray-light);
}

.highlight-icon {
    color: var(--accent);
    font-size: 14px;
}

.about-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 32px;
}

/* ===========================
   SERVICES SECTION
   =========================== */
.services {
    background: var(--black);
}

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

.service-card {
    background: var(--dark);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 36px 30px;
    position: relative;
    transition: all 0.35s var(--ease);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(196, 170, 106, 0.06) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.35s;
}

.service-card:hover {
    border-color: rgba(196, 170, 106, 0.3);
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}

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

.service-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(196, 170, 106, 0.12);
    border: 1px solid rgba(196, 170, 106, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
}

.service-icon {
    font-size: 22px;
    color: var(--accent);
}

.service-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.service-card p {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

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

.service-list li {
    font-size: 13px;
    color: var(--gray-light);
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-list li::before {
    content: '✓';
    color: var(--accent);
    font-size: 12px;
    font-weight: 700;
}

.service-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 4px 10px;
    background: rgba(196, 170, 106, 0.15);
    color: var(--accent);
    border: 1px solid rgba(196, 170, 106, 0.3);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.service-tag-accent {
    background: var(--accent);
    color: var(--black);
    border-color: var(--accent);
}

/* ===========================
   PORTFOLIO SECTION
   =========================== */
.portfolio {
    background: var(--dark);
}

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

.filter-btn {
    padding: 9px 22px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--gray);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.25s;
    cursor: pointer;
    background: transparent;
}

.filter-btn:hover {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
}

.filter-btn.active {
    background: var(--accent);
    color: var(--black);
    border-color: var(--accent);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.portfolio-item {
    background: var(--black);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.35s var(--ease);
}

.portfolio-item.hidden {
    display: none;
}

.portfolio-item:hover {
    border-color: rgba(196, 170, 106, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.portfolio-img-wrap {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.portfolio-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease);
}

.portfolio-item:hover .portfolio-img-wrap img {
    transform: scale(1.05);
}

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

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

.overlay-content {
    text-align: center;
}

.overlay-tag {
    display: inline-block;
    padding: 6px 14px;
    background: var(--accent);
    color: var(--black);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 12px;
}

.overlay-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
}

.portfolio-info {
    padding: 28px;
}

.portfolio-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.meta-tag {
    padding: 4px 12px;
    background: rgba(196, 170, 106, 0.12);
    color: var(--accent);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.meta-industry {
    font-size: 13px;
    color: var(--gray);
}

.portfolio-info h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
    line-height: 1.25;
}

.portfolio-info p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.65;
    margin-bottom: 20px;
}

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

.detail-item {
    display: flex;
    gap: 10px;
    font-size: 13px;
}

.detail-item strong {
    color: var(--accent);
    min-width: 60px;
}

.detail-item span {
    color: var(--gray-light);
}

/* Design Cards (for projects 7 & 8 without images) */
.design-card-wrap {
    background: var(--dark-2);
}

.design-card {
    width: 100%;
    height: 100%;
}

.design-card-youtube .yt-bg {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 32px;
    overflow: hidden;
}

.yt-bg::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 50%;
    background: linear-gradient(135deg, #e63946, #c41230);
    clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.yt-content {
    position: relative;
    z-index: 2;
}

.yt-label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #ffd700;
    margin-bottom: 8px;
}

.yt-title {
    font-size: 28px;
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 6px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.yt-subtitle {
    font-size: 18px;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 16px;
}

.yt-badge {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--white);
}

.design-card-ad .ad-bg {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2d1b69 0%, #753da0 50%, #e05b28 100%);
    display: flex;
    align-items: center;
    padding: 36px;
}

.ad-eyebrow {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
}

.ad-headline {
    font-size: 40px;
    font-weight: 900;
    color: var(--white);
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 12px;
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
}

.ad-sub {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
}

.ad-cta {
    display: inline-block;
    padding: 12px 24px;
    background: var(--white);
    color: #2d1b69;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.06em;
}

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

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

.testimonial-card {
    background: var(--dark);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 36px 30px;
    transition: all 0.35s var(--ease);
    position: relative;
}

.testimonial-card:hover {
    border-color: rgba(196, 170, 106, 0.25);
    transform: translateY(-4px);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 28px;
    font-family: var(--font-serif);
    font-size: 80px;
    color: rgba(196, 170, 106, 0.12);
    line-height: 1;
    pointer-events: none;
}

.testimonial-stars {
    color: var(--accent);
    letter-spacing: 2px;
    font-size: 16px;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 15px;
    color: var(--gray-light);
    line-height: 1.75;
    margin-bottom: 28px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-dark), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
    color: var(--black);
    flex-shrink: 0;
}

.author-info strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
}

.author-info span {
    font-size: 13px;
    color: var(--gray);
}

/* ===========================
   PROCESS SECTION
   =========================== */
.process {
    background: var(--dark);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}

.process-step {
    padding: 40px 32px;
    position: relative;
    text-align: center;
}

.step-number {
    font-size: 56px;
    font-weight: 900;
    letter-spacing: -0.05em;
    color: rgba(196, 170, 106, 0.15);
    line-height: 1;
    margin-bottom: 16px;
    font-variant-numeric: tabular-nums;
    transition: color 0.3s;
}

.process-step:hover .step-number {
    color: rgba(196, 170, 106, 0.4);
}

.step-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.step-content p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.7;
}

.step-connector {
    position: absolute;
    top: 60px;
    right: -1px;
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, rgba(196, 170, 106, 0.3), transparent);
}

.process-step:last-child .step-connector {
    display: none;
}

/* ===========================
   CTA SECTION
   =========================== */
.cta-section {
    background: var(--black);
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 120px 0;
}

.cta-orb {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(196, 170, 106, 0.1) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.cta-title em {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    color: var(--accent);
}

.cta-subtitle {
    font-size: 17px;
    color: var(--gray);
    margin-bottom: 40px;
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.cta-note {
    font-size: 13px;
    color: var(--gray);
    letter-spacing: 0.06em;
}

/* ===========================
   CONTACT SECTION
   =========================== */
.contact {
    background: var(--dark);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 80px;
    align-items: start;
}

.contact-info p {
    color: var(--gray);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 36px;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    background: var(--black);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    transition: all 0.3s;
}

.contact-link:hover {
    border-color: rgba(196, 170, 106, 0.3);
    transform: translateX(4px);
}

.contact-link-icon {
    font-size: 22px;
    color: var(--accent);
}

.contact-link strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 2px;
}

.contact-link span {
    font-size: 13px;
    color: var(--gray);
}

.contact-form-wrap {
    background: var(--black);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-light);
    letter-spacing: 0.05em;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: var(--dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 14px 16px;
    color: var(--white);
    font-family: var(--font-sans);
    font-size: 15px;
    transition: border-color 0.25s;
    width: 100%;
    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

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

.form-group select {
    appearance: none;
    cursor: pointer;
}

.form-group select option {
    background: var(--dark-3);
}

.form-success {
    text-align: center;
    padding: 16px;
    background: rgba(196, 170, 106, 0.12);
    border: 1px solid rgba(196, 170, 106, 0.3);
    border-radius: 8px;
    color: var(--accent);
    font-weight: 600;
    gap: 10px;
}

/* ===========================
   FOOTER
   =========================== */
.footer {
    background: var(--black);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 40px 0;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-logo {
    font-size: 20px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: -0.02em;
    flex-wrap: wrap;
}

.footer-tagline {
    font-size: 12px;
    font-weight: 400;
    color: var(--gray);
    letter-spacing: 0.05em;
}

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

.footer-links a {
    font-size: 13px;
    color: var(--gray);
    transition: color 0.25s;
    letter-spacing: 0.05em;
}

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

.footer-copy {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.2);
}

/* ===========================
   NEW DESIGN CARDS (Projects 9-12)
   =========================== */

/* Bakery Logo Card */
.design-card-bakery .bakery-bg {
    width: 100%;
    height: 100%;
    background: linear-gradient(160deg, #fdf0f0 0%, #fce8dc 50%, #f9d5c5 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 32px;
}

.bakery-icon {
    font-size: 52px;
    line-height: 1;
    margin-bottom: 4px;
}

.bakery-name {
    font-family: var(--font-serif);
    font-size: 30px;
    font-weight: 700;
    color: #6b3a2a;
    letter-spacing: -0.01em;
}

.bakery-sub {
    font-size: 11px;
    letter-spacing: 0.22em;
    color: #a0614e;
    font-weight: 600;
    text-transform: uppercase;
}

.bakery-line {
    width: 48px;
    height: 1.5px;
    background: linear-gradient(to right, transparent, #c47a5a, transparent);
    margin: 4px 0;
}

.bakery-tagline {
    font-size: 13px;
    color: #b87362;
    font-style: italic;
}

/* Music Artist Card */
.design-card-music .music-bg {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0d0020 0%, #1a0040 40%, #001a33 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 32px;
    position: relative;
    overflow: hidden;
}

.music-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(120, 0, 200, 0.3) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 50%, rgba(0, 200, 255, 0.2) 0%, transparent 60%);
}

.music-waves {
    display: flex;
    align-items: flex-end;
    gap: 5px;
    height: 50px;
    position: relative;
    z-index: 2;
}

.music-waves span {
    display: block;
    width: 5px;
    border-radius: 5px;
    background: linear-gradient(to top, #7b00d4, #00c8ff);
    animation: wave 1.2s ease-in-out infinite alternate;
}

.music-waves span:nth-child(1) {
    height: 20px;
    animation-delay: 0s;
}

.music-waves span:nth-child(2) {
    height: 38px;
    animation-delay: 0.1s;
}

.music-waves span:nth-child(3) {
    height: 50px;
    animation-delay: 0.2s;
}

.music-waves span:nth-child(4) {
    height: 32px;
    animation-delay: 0.3s;
}

.music-waves span:nth-child(5) {
    height: 44px;
    animation-delay: 0.4s;
}

.music-waves span:nth-child(6) {
    height: 28px;
    animation-delay: 0.5s;
}

.music-waves span:nth-child(7) {
    height: 40px;
    animation-delay: 0.6s;
}

.music-waves span:nth-child(8) {
    height: 18px;
    animation-delay: 0.7s;
}

@keyframes wave {
    from {
        transform: scaleY(0.5);
    }

    to {
        transform: scaleY(1);
    }
}

.music-name {
    font-size: 48px;
    font-weight: 900;
    letter-spacing: 0.08em;
    color: var(--white);
    line-height: 1;
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, #fff, #00c8ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.music-sub {
    font-size: 10px;
    letter-spacing: 0.2em;
    color: rgba(0, 200, 255, 0.7);
    font-weight: 600;
    position: relative;
    z-index: 2;
}

/* Salon Social Card */
.design-card-salon .salon-bg {
    width: 100%;
    height: 100%;
    background: linear-gradient(160deg, #1a1510 0%, #2a2015 50%, #1a1510 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 32px;
    position: relative;
    overflow: hidden;
}

.salon-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 40%, rgba(212, 180, 100, 0.12) 0%, transparent 60%);
}

.salon-top-tag {
    font-size: 10px;
    letter-spacing: 0.22em;
    color: #c4aa6a;
    font-weight: 700;
    text-transform: uppercase;
    border: 1px solid rgba(196, 170, 106, 0.4);
    padding: 4px 14px;
    border-radius: 100px;
    margin-bottom: 8px;
}

.salon-name {
    font-family: var(--font-serif);
    font-size: 52px;
    font-weight: 700;
    color: #e8d49a;
    letter-spacing: 0.12em;
    line-height: 1;
}

.salon-sub {
    font-size: 12px;
    letter-spacing: 0.3em;
    color: rgba(196, 170, 106, 0.7);
    font-weight: 500;
    text-transform: uppercase;
}

.salon-divider {
    width: 60px;
    height: 1px;
    background: linear-gradient(to right, transparent, #c4aa6a, transparent);
    margin: 6px 0;
}

.salon-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.1em;
}

/* Food Delivery Ad Card */
.design-card-food .food-bg {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #c0392b 0%, #e74c3c 40%, #e67e22 100%);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 36px;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.food-bg::after {
    content: '';
    position: absolute;
    right: -30px;
    bottom: -30px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
}

.food-badge {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 4px;
    margin-bottom: 4px;
}

.food-headline {
    font-size: 32px;
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.food-sub {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    margin: 4px 0;
}

.food-cta {
    display: inline-block;
    padding: 10px 20px;
    background: var(--white);
    color: #c0392b;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.06em;
    margin-top: 4px;
}

.food-emojis {
    font-size: 22px;
    margin-top: 8px;
    letter-spacing: 4px;
}

/* Vintage Whiskey Label Card */
.design-card-whiskey .whiskey-bg {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1b261e 0%, #111a14 50%, #0a100d 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 24px;
    text-align: center;
    border: 8px solid #c8a97e;
    outline: 1px solid #111a14;
    outline-offset: -12px;
}

.whiskey-top {
    font-size: 10px;
    letter-spacing: 0.3em;
    color: rgba(200, 169, 126, 0.8);
    font-weight: 600;
}

.whiskey-ornament {
    font-size: 24px;
    color: #c8a97e;
    line-height: 0.5;
    margin: 4px 0;
}

.whiskey-name {
    font-family: var(--font-serif);
    font-size: 38px;
    font-weight: 700;
    color: #e6d3b3;
    line-height: 1;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.whiskey-rule {
    width: 40px;
    height: 1px;
    background: #c8a97e;
    margin: 4px 0;
}

.whiskey-sub {
    font-size: 11px;
    letter-spacing: 0.2em;
    color: rgba(230, 211, 179, 0.7);
    text-transform: uppercase;
}

.whiskey-aged {
    font-family: var(--font-serif);
    font-size: 12px;
    letter-spacing: 0.15em;
    color: #c8a97e;
    border-top: 1px solid rgba(200, 169, 126, 0.3);
    border-bottom: 1px solid rgba(200, 169, 126, 0.3);
    padding: 4px 12px;
    margin-top: 4px;
}

/* Classic Law Firm Branding Card */
.design-card-law .law-bg {
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #0a192f 0%, #061121 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 36px;
    text-align: center;
    border: 1px solid rgba(196, 170, 106, 0.2);
}

.law-icon {
    font-size: 36px;
    color: #c4aa6a;
    margin-bottom: 8px;
}

.law-name {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 700;
    color: #eef2f5;
    letter-spacing: 0.1em;
    line-height: 1.2;
    text-transform: uppercase;
}

.law-rule {
    width: 50px;
    height: 2px;
    background: #c4aa6a;
    margin: 12px 0;
}

.law-tagline {
    font-family: var(--font-serif);
    font-size: 16px;
    color: #c4aa6a;
    font-style: italic;
    letter-spacing: 0.05em;
}

.law-est {
    font-size: 9px;
    letter-spacing: 0.2em;
    color: rgba(238, 242, 245, 0.4);
    text-transform: uppercase;
    margin-top: 16px;
}

/* Vintage Travel Poster Card */
.design-card-travel .travel-bg {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0f4c5c 0%, #062d38 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 12px solid #e0ca9e;
}

.travel-stars {
    color: #e0ca9e;
    font-size: 14px;
    letter-spacing: 4px;
    margin-bottom: 8px;
}

.travel-destination {
    font-size: 64px;
    font-weight: 900;
    color: #e0ca9e;
    line-height: 0.9;
    letter-spacing: 0.05em;
    text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.3);
    transform: scaleY(1.2);
}

.travel-sub {
    font-family: var(--font-serif);
    font-size: 20px;
    color: #fdf5e6;
    font-style: italic;
    margin-top: 12px;
}

.travel-divider {
    width: 100px;
    height: 1px;
    background: linear-gradient(to right, transparent, #e0ca9e, transparent);
    margin: 16px 0;
}

.travel-country {
    font-size: 14px;
    letter-spacing: 0.4em;
    color: rgba(253, 245, 230, 0.8);
    text-transform: uppercase;
}

.travel-bottom {
    position: absolute;
    bottom: 16px;
    width: 100%;
    font-size: 9px;
    letter-spacing: 0.2em;
    color: rgba(224, 202, 158, 0.6);
    text-transform: uppercase;
}

/* Classic Book Cover Design Card */
.design-card-book .book-bg {
    width: 100%;
    height: 100%;
    background: #3e1b23;
    padding: 24px;
    position: relative;
}

.book-border {
    width: 100%;
    height: 100%;
    border: 1.5px solid rgba(212, 180, 100, 0.4);
    background: linear-gradient(135deg, #4a222a 0%, #2f1218 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 32px 20px;
    text-align: center;
}

.book-genre {
    font-size: 10px;
    letter-spacing: 0.3em;
    color: rgba(212, 180, 100, 0.8);
}

.book-title {
    font-family: var(--font-serif);
    font-size: 42px;
    font-weight: 700;
    color: #f2e3c6;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.book-ornament {
    font-size: 18px;
    color: #d4b464;
    letter-spacing: 2px;
}

.book-author {
    font-size: 12px;
    letter-spacing: 0.25em;
    color: #e6d3b3;
    font-weight: 500;
}

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

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

    .process-step {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
}

@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-img-card {
        width: 100%;
    }

    .about-img-inner {
        width: 100%;
    }

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

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

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

@media (max-width: 768px) {
    :root {
        --section-py: 64px;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.98);
        padding: 24px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        gap: 20px;
    }

    .nav-links.open {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    .hero-stats {
        gap: 20px;
    }

    .stat-divider {
        display: none;
    }

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

    .process-steps {
        grid-template-columns: 1fr;
    }

    .step-connector {
        display: none;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .footer-logo {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .cta-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-actions .btn {
        justify-content: center;
    }

    .portfolio-img-wrap {
        height: 220px;
    }

    .contact-form-wrap {
        padding: 24px;
    }
}