Spaces:
Running
Running
| :root { | |
| --gold: #C9A96E; | |
| --gold-light: #E8C98A; | |
| --gold-dark: #A07840; | |
| --black: #0A0A0A; | |
| --dark: #111111; | |
| --dark2: #1A1A1A; | |
| --dark3: #242424; | |
| --gray: #888888; | |
| --gray-light: #BBBBBB; | |
| --white: #FFFFFF; | |
| --white-off: #F8F6F2; | |
| --font-serif: 'Cormorant Garamond', Georgia, serif; | |
| --font-display: 'Playfair Display', Georgia, serif; | |
| --font-sans: 'Inter', system-ui, sans-serif; | |
| --ease: cubic-bezier(0.16, 1, 0.3, 1); | |
| --ease2: cubic-bezier(0.25, 0.46, 0.45, 0.94); | |
| } | |
| *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; } | |
| html { scroll-behavior: smooth; font-size: 16px; } | |
| body { | |
| background-color: var(--black); | |
| color: var(--white); | |
| font-family: var(--font-sans); | |
| overflow-x: hidden; | |
| cursor: none; | |
| } | |
| /* ── SCROLLBAR ── */ | |
| ::-webkit-scrollbar { width: 4px; } | |
| ::-webkit-scrollbar-track { background: var(--dark); } | |
| ::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; } | |
| /* ── SELECTION ── */ | |
| ::selection { background: var(--gold); color: var(--black); } | |
| /* ── CURSOR ── */ | |
| .cursor { | |
| width: 8px; height: 8px; | |
| background: var(--gold); | |
| border-radius: 50%; | |
| position: fixed; top: 0; left: 0; | |
| pointer-events: none; z-index: 9999; | |
| transform: translate(-50%, -50%); | |
| transition: transform 0.1s; | |
| } | |
| .cursor-follower { | |
| width: 36px; height: 36px; | |
| border: 1px solid rgba(201,169,110,0.5); | |
| border-radius: 50%; | |
| position: fixed; top: 0; left: 0; | |
| pointer-events: none; z-index: 9998; | |
| transform: translate(-50%, -50%); | |
| transition: transform 0.15s var(--ease), width 0.3s var(--ease), height 0.3s var(--ease), opacity 0.3s; | |
| } | |
| body:hover .cursor-follower { opacity: 1; } | |
| /* ── LOADER ── */ | |
| .loader { | |
| position: fixed; inset: 0; | |
| background: var(--black); | |
| z-index: 10000; | |
| display: flex; align-items: center; justify-content: center; | |
| transition: opacity 0.8s var(--ease), visibility 0.8s; | |
| } | |
| .loader.hidden { opacity: 0; visibility: hidden; } | |
| .loader-inner { text-align: center; } | |
| .loader-line { | |
| width: 0; height: 1px; | |
| background: var(--gold); | |
| margin: 0 auto 16px; | |
| animation: loaderLine 1.5s var(--ease) forwards; | |
| } | |
| @keyframes loaderLine { to { width: 80px; } } | |
| .loader-text { | |
| font-family: var(--font-serif); | |
| font-size: 2rem; | |
| font-weight: 300; | |
| letter-spacing: 0.5em; | |
| color: var(--white); | |
| opacity: 0; | |
| animation: fadeIn 0.6s 0.3s ease forwards; | |
| } | |
| @keyframes fadeIn { to { opacity: 1; } } | |
| /* ── CONTAINER ── */ | |
| .container { max-width: 1280px; margin: 0 auto; padding: 0 40px; } | |
| /* ── NAVIGATION ── */ | |
| .nav { | |
| position: fixed; top: 0; left: 0; right: 0; z-index: 1000; | |
| display: flex; align-items: center; justify-content: space-between; | |
| padding: 24px 48px; | |
| transition: padding 0.4s var(--ease), background 0.4s, backdrop-filter 0.4s; | |
| } | |
| .nav.scrolled { | |
| padding: 16px 48px; | |
| background: rgba(10,10,10,0.85); | |
| backdrop-filter: blur(20px); | |
| border-bottom: 1px solid rgba(201,169,110,0.1); | |
| } | |
| .nav-logo { display: flex; flex-direction: column; line-height: 1; } | |
| .logo-text { | |
| font-family: var(--font-serif); | |
| font-size: 1.5rem; | |
| font-weight: 600; | |
| letter-spacing: 0.15em; | |
| color: var(--white); | |
| } | |
| .logo-sub { | |
| font-size: 0.55rem; | |
| font-weight: 500; | |
| letter-spacing: 0.4em; | |
| color: var(--gold); | |
| text-transform: uppercase; | |
| } | |
| .nav-links { display: flex; align-items: center; gap: 40px; } | |
| .nav-link { | |
| font-size: 0.8rem; | |
| font-weight: 400; | |
| letter-spacing: 0.12em; | |
| text-transform: uppercase; | |
| color: var(--gray-light); | |
| text-decoration: none; | |
| transition: color 0.3s; | |
| position: relative; | |
| } | |
| .nav-link::after { | |
| content: ''; position: absolute; bottom: -4px; left: 0; right: 0; | |
| height: 1px; background: var(--gold); transform: scaleX(0); | |
| transform-origin: right; transition: transform 0.3s var(--ease); | |
| } | |
| .nav-link:hover { color: var(--white); } | |
| .nav-link:hover::after { transform: scaleX(1); transform-origin: left; } | |
| .nav-cta { | |
| padding: 10px 22px; | |
| border: 1px solid var(--gold); | |
| color: var(--gold) ; | |
| border-radius: 2px; | |
| transition: background 0.3s, color 0.3s ; | |
| } | |
| .nav-cta::after { display: none; } | |
| .nav-cta:hover { background: var(--gold); color: var(--black) ; } | |
| .nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; } | |
| .nav-hamburger span { display: block; width: 24px; height: 1px; background: var(--white); transition: 0.3s; } | |
| /* ── BUTTONS ── */ | |
| .btn-primary { | |
| display: inline-flex; align-items: center; gap: 10px; | |
| padding: 14px 28px; | |
| background: var(--gold); | |
| color: var(--black); | |
| font-size: 0.8rem; | |
| font-weight: 500; | |
| letter-spacing: 0.1em; | |
| text-transform: uppercase; | |
| text-decoration: none; | |
| border: none; cursor: pointer; | |
| border-radius: 2px; | |
| transition: background 0.3s, transform 0.3s var(--ease), box-shadow 0.3s; | |
| position: relative; overflow: hidden; | |
| } | |
| .btn-primary::before { | |
| content: ''; position: absolute; inset: 0; | |
| background: var(--gold-light); | |
| transform: scaleX(0); transform-origin: left; | |
| transition: transform 0.4s var(--ease); | |
| } | |
| .btn-primary:hover::before { transform: scaleX(1); } | |
| .btn-primary span, .btn-primary svg { position: relative; z-index: 1; } | |
| .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(201,169,110,0.3); } | |
| .btn-primary.full { width: 100%; justify-content: center; } | |
| .btn-primary.light { background: var(--white); color: var(--black); } | |
| .btn-primary.light::before { background: var(--white-off); } | |
| .btn-secondary { | |
| display: inline-flex; align-items: center; | |
| padding: 14px 28px; | |
| background: transparent; | |
| color: var(--white); | |
| font-size: 0.8rem; | |
| font-weight: 400; | |
| letter-spacing: 0.1em; | |
| text-transform: uppercase; | |
| text-decoration: none; | |
| border: 1px solid rgba(255,255,255,0.2); | |
| border-radius: 2px; | |
| transition: border-color 0.3s, background 0.3s; | |
| } | |
| .btn-secondary:hover { border-color: var(--white); background: rgba(255,255,255,0.05); } | |
| .btn-outline { | |
| display: inline-flex; align-items: center; gap: 8px; | |
| padding: 12px 24px; | |
| background: transparent; | |
| color: var(--gold); | |
| font-size: 0.78rem; | |
| font-weight: 500; | |
| letter-spacing: 0.12em; | |
| text-transform: uppercase; | |
| text-decoration: none; | |
| border: 1px solid var(--gold); | |
| border-radius: 2px; | |
| transition: background 0.3s, color 0.3s; | |
| } | |
| .btn-outline:hover { background: var(--gold); color: var(--black); } | |
| /* ── SECTION COMMON ── */ | |
| .section-label { | |
| font-size: 0.7rem; | |
| font-weight: 500; | |
| letter-spacing: 0.3em; | |
| text-transform: uppercase; | |
| color: var(--gold); | |
| margin-bottom: 16px; | |
| display: block; | |
| } | |
| .section-label.light { color: rgba(201,169,110,0.8); } | |
| .section-title { | |
| font-family: var(--font-serif); | |
| font-size: clamp(2.4rem, 4vw, 3.6rem); | |
| font-weight: 300; | |
| line-height: 1.1; | |
| color: var(--white); | |
| margin-bottom: 24px; | |
| } | |
| .section-title em { font-style: italic; color: var(--gold); } | |
| .section-desc { | |
| font-size: 1rem; | |
| font-weight: 300; | |
| color: var(--gray); | |
| line-height: 1.8; | |
| max-width: 480px; | |
| } | |
| .section-header { margin-bottom: 64px; } | |
| .section-header.center { text-align: center; } | |
| .section-header.center .section-desc { margin: 0 auto; } | |
| /* ── HERO ── */ | |
| .hero { | |
| min-height: 100vh; | |
| display: flex; | |
| align-items: center; | |
| position: relative; | |
| overflow: hidden; | |
| padding: 120px 48px 80px; | |
| gap: 80px; | |
| } | |
| .hero-bg { | |
| position: absolute; inset: 0; | |
| z-index: 0; | |
| } | |
| .hero-gradient { | |
| position: absolute; inset: 0; | |
| background: radial-gradient(ellipse 80% 60% at 60% 50%, rgba(201,169,110,0.06) 0%, transparent 60%), | |
| radial-gradient(ellipse 50% 50% at 10% 80%, rgba(100,60,20,0.08) 0%, transparent 50%); | |
| } | |
| .hero-grid { | |
| position: absolute; inset: 0; | |
| background-image: | |
| linear-gradient(rgba(201,169,110,0.04) 1px, transparent 1px), | |
| linear-gradient(90deg, rgba(201,169,110,0.04) 1px, transparent 1px); | |
| background-size: 80px 80px; | |
| mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%); | |
| } | |
| .hero-orb { | |
| position: absolute; | |
| border-radius: 50%; | |
| filter: blur(80px); | |
| animation: orbFloat 8s ease-in-out infinite; | |
| } | |
| .orb-1 { width: 400px; height: 400px; background: rgba(201,169,110,0.07); top: 10%; right: 30%; animation-delay: 0s; } | |
| .orb-2 { width: 300px; height: 300px; background: rgba(150,100,40,0.06); bottom: 20%; right: 10%; animation-delay: -3s; } | |
| .orb-3 { width: 200px; height: 200px; background: rgba(201,169,110,0.05); top: 60%; left: 20%; animation-delay: -5s; } | |
| @keyframes orbFloat { | |
| 0%, 100% { transform: translateY(0) scale(1); } | |
| 50% { transform: translateY(-30px) scale(1.05); } | |
| } | |
| .hero-content { | |
| position: relative; z-index: 1; | |
| flex: 1; | |
| max-width: 600px; | |
| } | |
| .hero-badge { | |
| display: inline-flex; align-items: center; gap: 8px; | |
| font-size: 0.7rem; | |
| font-weight: 500; | |
| letter-spacing: 0.25em; | |
| text-transform: uppercase; | |
| color: var(--gold); | |
| border: 1px solid rgba(201,169,110,0.3); | |
| padding: 6px 16px; | |
| border-radius: 100px; | |
| margin-bottom: 32px; | |
| background: rgba(201,169,110,0.05); | |
| opacity: 0; | |
| animation: slideUp 0.8s 1.8s var(--ease) forwards; | |
| } | |
| .hero-title { | |
| font-family: var(--font-serif); | |
| font-size: clamp(3rem, 5.5vw, 5.5rem); | |
| font-weight: 300; | |
| line-height: 1.05; | |
| color: var(--white); | |
| margin-bottom: 28px; | |
| overflow: hidden; | |
| } | |
| .title-line { | |
| display: block; | |
| opacity: 0; | |
| transform: translateY(40px); | |
| animation: titleReveal 0.9s var(--ease) forwards; | |
| } | |
| .title-line:nth-child(1) { animation-delay: 2s; } | |
| .title-line:nth-child(2) { animation-delay: 2.15s; } | |
| .title-line:nth-child(3) { animation-delay: 2.3s; } | |
| .title-line.italic { font-style: italic; color: var(--gold); } | |
| @keyframes titleReveal { | |
| to { opacity: 1; transform: translateY(0); } | |
| } | |
| @keyframes slideUp { | |
| to { opacity: 1; transform: translateY(0); } | |
| } | |
| .hero-desc { | |
| font-size: 1rem; | |
| font-weight: 300; | |
| color: var(--gray-light); | |
| line-height: 1.8; | |
| margin-bottom: 40px; | |
| opacity: 0; | |
| animation: slideUp 0.8s 2.5s var(--ease) forwards; | |
| } | |
| .hero-actions { | |
| display: flex; gap: 16px; flex-wrap: wrap; | |
| margin-bottom: 56px; | |
| opacity: 0; | |
| animation: slideUp 0.8s 2.7s var(--ease) forwards; | |
| } | |
| .hero-stats { | |
| display: flex; align-items: center; gap: 32px; | |
| opacity: 0; | |
| animation: slideUp 0.8s 2.9s var(--ease) forwards; | |
| } | |
| .stat { display: flex; flex-direction: column; } | |
| .stat-num { | |
| font-family: var(--font-serif); | |
| font-size: 2.4rem; | |
| font-weight: 300; | |
| color: var(--white); | |
| line-height: 1; | |
| } | |
| .stat-label { | |
| font-size: 0.7rem; | |
| color: var(--gray); | |
| letter-spacing: 0.05em; | |
| margin-top: 4px; | |
| } | |
| .stat-divider { width: 1px; height: 40px; background: rgba(201,169,110,0.2); } | |
| .hero-visual { | |
| position: relative; z-index: 1; | |
| flex: 1; | |
| max-width: 560px; | |
| opacity: 0; | |
| animation: slideUp 1s 2.2s var(--ease) forwards; | |
| } | |
| .hero-image-frame { | |
| position: relative; | |
| border-radius: 4px; | |
| overflow: visible; | |
| } | |
| .hero-image-inner { | |
| border-radius: 4px; | |
| overflow: hidden; | |
| position: relative; | |
| } | |
| .hero-img { | |
| width: 100%; | |
| height: 500px; | |
| object-fit: cover; | |
| display: block; | |
| transition: transform 8s var(--ease2); | |
| } | |
| .hero-img:hover { transform: scale(1.04); } | |
| .hero-image-overlay { | |
| position: absolute; inset: 0; | |
| background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.4)); | |
| } | |
| .hero-image-badge { | |
| position: absolute; | |
| bottom: -20px; left: -20px; | |
| background: var(--dark2); | |
| border: 1px solid rgba(201,169,110,0.2); | |
| border-radius: 4px; | |
| padding: 14px 20px; | |
| display: flex; align-items: center; gap: 10px; | |
| font-size: 0.75rem; | |
| font-weight: 500; | |
| letter-spacing: 0.05em; | |
| color: var(--white); | |
| backdrop-filter: blur(10px); | |
| } | |
| .hero-float-card { | |
| position: absolute; | |
| top: 40px; right: -30px; | |
| background: rgba(26,26,26,0.9); | |
| backdrop-filter: blur(20px); | |
| border: 1px solid rgba(201,169,110,0.15); | |
| border-radius: 8px; | |
| padding: 12px; | |
| animation: floatCard 4s ease-in-out infinite; | |
| } | |
| @keyframes floatCard { | |
| 0%, 100% { transform: translateY(0); } | |
| 50% { transform: translateY(-10px); } | |
| } | |
| .float-card-content { display: flex; align-items: center; gap: 12px; } | |
| .float-img { width: 56px; height: 56px; object-fit: cover; border-radius: 4px; } | |
| .float-info { display: flex; flex-direction: column; } | |
| .float-title { font-size: 0.8rem; font-weight: 500; color: var(--white); } | |
| .float-year { font-size: 0.7rem; color: var(--gold); margin-top: 2px; } | |
| .hero-scroll { | |
| position: absolute; bottom: 40px; left: 48px; | |
| display: flex; align-items: center; gap: 12px; | |
| font-size: 0.65rem; | |
| letter-spacing: 0.2em; | |
| text-transform: uppercase; | |
| color: var(--gray); | |
| z-index: 1; | |
| opacity: 0; | |
| animation: slideUp 0.8s 3.2s var(--ease) forwards; | |
| } | |
| .scroll-line { | |
| width: 40px; height: 1px; | |
| background: var(--gray); | |
| position: relative; | |
| overflow: hidden; | |
| } | |
| .scroll-line::after { | |
| content: ''; | |
| position: absolute; top: 0; left: -100%; | |
| width: 100%; height: 100%; | |
| background: var(--gold); | |
| animation: scrollLine 2s 3.5s ease-in-out infinite; | |
| } | |
| @keyframes scrollLine { | |
| 0% { left: -100%; } | |
| 50%, 100% { left: 100%; } | |
| } | |
| /* ── MARQUEE ── */ | |
| .marquee-section { | |
| border-top: 1px solid rgba(201,169,110,0.1); | |
| border-bottom: 1px solid rgba(201,169,110,0.1); | |
| padding: 18px 0; | |
| overflow: hidden; | |
| background: rgba(201,169,110,0.02); | |
| } | |
| .marquee-track { display: flex; } | |
| .marquee-content { | |
| display: flex; align-items: center; gap: 40px; | |
| white-space: nowrap; | |
| animation: marquee 30s linear infinite; | |
| font-size: 0.72rem; | |
| font-weight: 400; | |
| letter-spacing: 0.18em; | |
| text-transform: uppercase; | |
| color: var(--gray); | |
| padding-right: 40px; | |
| } | |
| .marquee-content .dot { color: var(--gold); font-size: 0.5rem; } | |
| @keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } } | |
| /* ── ABOUT ── */ | |
| .about { padding: 120px 0; } | |
| .about-grid { | |
| display: grid; | |
| grid-template-columns: 1fr 1fr; | |
| gap: 80px; | |
| align-items: center; | |
| } | |
| .about-images { position: relative; } | |
| .about-img-main { | |
| position: relative; | |
| border-radius: 4px; | |
| overflow: hidden; | |
| } | |
| .about-img-main img { | |
| width: 100%; height: 520px; | |
| object-fit: cover; display: block; | |
| transition: transform 0.8s var(--ease2); | |
| } | |
| .about-img-main:hover img { transform: scale(1.04); } | |
| .about-img-accent { | |
| position: absolute; | |
| bottom: -12px; right: -12px; | |
| width: 100%; height: 100%; | |
| border: 1px solid rgba(201,169,110,0.2); | |
| border-radius: 4px; | |
| z-index: -1; | |
| } | |
| .about-img-secondary { | |
| position: absolute; | |
| bottom: -40px; right: -40px; | |
| width: 200px; | |
| border-radius: 4px; | |
| overflow: hidden; | |
| border: 3px solid var(--black); | |
| box-shadow: 0 20px 40px rgba(0,0,0,0.4); | |
| } | |
| .about-img-secondary img { | |
| width: 100%; height: 160px; | |
| object-fit: cover; display: block; | |
| } | |
| .about-years-badge { | |
| position: absolute; inset: 0; | |
| background: rgba(201,169,110,0.9); | |
| display: flex; flex-direction: column; | |
| align-items: center; justify-content: center; | |
| gap: 4px; | |
| } | |
| .years-num { | |
| font-family: var(--font-serif); | |
| font-size: 2rem; | |
| font-weight: 600; | |
| color: var(--black); | |
| line-height: 1; | |
| } | |
| .years-label { | |
| font-size: 0.7rem; | |
| font-weight: 500; | |
| letter-spacing: 0.1em; | |
| text-transform: uppercase; | |
| color: var(--black); | |
| text-align: center; | |
| line-height: 1.3; | |
| } | |
| .about-text { } | |
| .about-desc { | |
| font-size: 1rem; | |
| font-weight: 300; | |
| color: var(--gray-light); | |
| line-height: 1.9; | |
| margin-bottom: 20px; | |
| } | |
| .about-tags { | |
| display: flex; flex-wrap: wrap; gap: 10px; | |
| margin: 32px 0; | |
| } | |
| .tag { | |
| padding: 6px 16px; | |
| border: 1px solid rgba(201,169,110,0.3); | |
| border-radius: 100px; | |
| font-size: 0.72rem; | |
| font-weight: 400; | |
| letter-spacing: 0.08em; | |
| color: var(--gray-light); | |
| background: rgba(201,169,110,0.04); | |
| transition: border-color 0.3s, color 0.3s; | |
| } | |
| .tag:hover { border-color: var(--gold); color: var(--gold); } | |
| /* ── PORTFOLIO ── */ | |
| .portfolio { padding: 120px 0; background: var(--dark); } | |
| .portfolio-filter { | |
| display: flex; gap: 8px; | |
| margin-bottom: 48px; | |
| } | |
| .filter-btn { | |
| padding: 8px 20px; | |
| background: transparent; | |
| border: 1px solid rgba(255,255,255,0.1); | |
| color: var(--gray); | |
| font-size: 0.75rem; | |
| font-weight: 400; | |
| letter-spacing: 0.08em; | |
| border-radius: 100px; | |
| cursor: pointer; | |
| transition: all 0.3s; | |
| } | |
| .filter-btn.active, .filter-btn:hover { | |
| background: var(--gold); | |
| border-color: var(--gold); | |
| color: var(--black); | |
| } | |
| .portfolio-grid { | |
| display: grid; | |
| grid-template-columns: 1fr 1fr 1fr; | |
| grid-template-rows: auto auto; | |
| gap: 16px; | |
| } | |
| .portfolio-item { border-radius: 4px; overflow: hidden; } | |
| .portfolio-item.featured { | |
| grid-column: 1 / 3; | |
| grid-row: 1 / 2; | |
| } | |
| .portfolio-img-wrap { | |
| position: relative; | |
| overflow: hidden; | |
| height: 100%; | |
| min-height: 300px; | |
| } | |
| .portfolio-item.featured .portfolio-img-wrap { min-height: 480px; } | |
| .portfolio-img-wrap img { | |
| width: 100%; height: 100%; | |
| object-fit: cover; display: block; | |
| transition: transform 0.7s var(--ease2); | |
| } | |
| .portfolio-item:hover .portfolio-img-wrap img { transform: scale(1.06); } | |
| .portfolio-overlay { | |
| position: absolute; inset: 0; | |
| background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 50%, transparent 100%); | |
| display: flex; align-items: flex-end; justify-content: space-between; | |
| padding: 28px; | |
| opacity: 0; | |
| transition: opacity 0.4s var(--ease); | |
| } | |
| .portfolio-item:hover .portfolio-overlay { opacity: 1; } | |
| .portfolio-info { display: flex; flex-direction: column; gap: 4px; } | |
| .p-category { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); } | |
| .p-title { | |
| font-family: var(--font-serif); | |
| font-size: 1.5rem; | |
| font-weight: 300; | |
| color: var(--white); | |
| } | |
| .p-year { font-size: 0.75rem; color: rgba(255,255,255,0.6); } | |
| .p-arrow { | |
| width: 44px; height: 44px; | |
| border: 1px solid rgba(255,255,255,0.3); | |
| border-radius: 50%; | |
| display: flex; align-items: center; justify-content: center; | |
| transition: background 0.3s, border-color 0.3s; | |
| } | |
| .portfolio-item:hover .p-arrow { background: var(--gold); border-color: var(--gold); } | |
| .portfolio-item:hover .p-arrow svg path { stroke: var(--black); } | |
| .portfolio-cta { text-align: center; margin-top: 56px; } | |
| /* ── PROCESS ── */ | |
| .process { padding: 120px 0; } | |
| .process-steps { | |
| display: flex; | |
| align-items: flex-start; | |
| gap: 0; | |
| } | |
| .process-step { | |
| flex: 1; | |
| display: flex; flex-direction: column; | |
| align-items: center; text-align: center; | |
| padding: 0 24px; | |
| } | |
| .step-number { | |
| font-family: var(--font-serif); | |
| font-size: 4rem; | |
| font-weight: 300; | |
| color: rgba(201,169,110,0.1); | |
| line-height: 1; | |
| margin-bottom: 16px; | |
| } | |
| .step-icon { margin-bottom: 16px; } | |
| .step-title { | |
| font-family: var(--font-serif); | |
| font-size: 1.3rem; | |
| font-weight: 400; | |
| color: var(--white); | |
| margin-bottom: 12px; | |
| } | |
| .step-desc { | |
| font-size: 0.875rem; | |
| font-weight: 300; | |
| color: var(--gray); | |
| line-height: 1.8; | |
| } | |
| .process-connector { | |
| flex: 0 0 1px; | |
| height: 1px; | |
| background: linear-gradient(90deg, rgba(201,169,110,0.3), rgba(201,169,110,0.05)); | |
| align-self: center; | |
| margin-bottom: 60px; | |
| min-width: 40px; | |
| } | |
| /* ── FEATURED PROJECT ── */ | |
| .featured-project { | |
| position: relative; | |
| min-height: 70vh; | |
| display: flex; | |
| align-items: center; | |
| overflow: hidden; | |
| padding: 120px 48px; | |
| } | |
| .fp-image { | |
| position: absolute; inset: 0; | |
| } | |
| .fp-image img { | |
| width: 100%; height: 100%; | |
| object-fit: cover; display: block; | |
| } | |
| .fp-overlay { | |
| position: absolute; inset: 0; | |
| background: linear-gradient(90deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 60%, transparent 100%); | |
| } | |
| .fp-content { | |
| position: relative; z-index: 1; | |
| max-width: 520px; | |
| } | |
| .fp-title { | |
| font-family: var(--font-serif); | |
| font-size: clamp(3rem, 5vw, 5rem); | |
| font-weight: 300; | |
| color: var(--white); | |
| line-height: 1.05; | |
| margin-bottom: 24px; | |
| } | |
| .fp-title em { font-style: italic; color: var(--gold); } | |
| .fp-desc { | |
| font-size: 1rem; | |
| font-weight: 300; | |
| color: rgba(255,255,255,0.75); | |
| line-height: 1.8; | |
| margin-bottom: 40px; | |
| } | |
| .fp-details { | |
| display: flex; gap: 40px; | |
| margin-bottom: 40px; | |
| padding: 20px 0; | |
| border-top: 1px solid rgba(255,255,255,0.1); | |
| border-bottom: 1px solid rgba(255,255,255,0.1); | |
| } | |
| .fp-detail { display: flex; flex-direction: column; gap: 4px; } | |
| .fp-detail-label { font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.4); } | |
| .fp-detail-value { font-size: 0.9rem; font-weight: 400; color: var(--white); } | |
| /* ── TESTIMONIALS ── */ | |
| .testimonials { padding: 120px 0; background: var(--dark); } | |
| .testimonials-grid { | |
| display: grid; | |
| grid-template-columns: repeat(3, 1fr); | |
| gap: 24px; | |
| } | |
| .testimonial-card { | |
| padding: 40px; | |
| background: rgba(255,255,255,0.02); | |
| border: 1px solid rgba(255,255,255,0.06); | |
| border-radius: 4px; | |
| position: relative; | |
| transition: border-color 0.3s, transform 0.3s var(--ease); | |
| } | |
| .testimonial-card.featured { | |
| background: rgba(201,169,110,0.06); | |
| border-color: rgba(201,169,110,0.2); | |
| transform: translateY(-12px); | |
| } | |
| .testimonial-card:hover { | |
| border-color: rgba(201,169,110,0.25); | |
| transform: translateY(-4px); | |
| } | |
| .testimonial-card.featured:hover { transform: translateY(-16px); } | |
| .t-quote { | |
| font-family: var(--font-serif); | |
| font-size: 5rem; | |
| color: var(--gold); | |
| opacity: 0.3; | |
| line-height: 0.8; | |
| margin-bottom: 12px; | |
| } | |
| .t-text { | |
| font-size: 0.9rem; | |
| font-weight: 300; | |
| color: var(--gray-light); | |
| line-height: 1.8; | |
| margin-bottom: 28px; | |
| font-style: italic; | |
| } | |
| .t-author { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; } | |
| .t-avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(201,169,110,0.2); } | |
| .t-info { display: flex; flex-direction: column; gap: 2px; } | |
| .t-name { font-size: 0.85rem; font-weight: 500; color: var(--white); } | |
| .t-role { font-size: 0.72rem; color: var(--gray); } | |
| .t-stars { color: var(--gold); font-size: 0.75rem; letter-spacing: 2px; } | |
| /* ── AWARDS ── */ | |
| .awards { | |
| padding: 64px 0; | |
| border-top: 1px solid rgba(201,169,110,0.08); | |
| border-bottom: 1px solid rgba(201,169,110,0.08); | |
| } | |
| .awards-grid { | |
| display: flex; justify-content: space-around; align-items: center; | |
| flex-wrap: wrap; gap: 32px; | |
| } | |
| .award-item { | |
| display: flex; flex-direction: column; | |
| align-items: center; gap: 12px; | |
| opacity: 0.5; | |
| transition: opacity 0.3s; | |
| } | |
| .award-item:hover { opacity: 1; } | |
| .award-icon { width: 40px; height: 40px; } | |
| .award-name { | |
| font-size: 0.72rem; | |
| font-weight: 400; | |
| letter-spacing: 0.1em; | |
| text-transform: uppercase; | |
| color: var(--gray); | |
| text-align: center; | |
| } | |
| /* ── CONTACT ── */ | |
| .contact { padding: 120px 0; } | |
| .contact-grid { | |
| display: grid; | |
| grid-template-columns: 1fr 1.4fr; | |
| gap: 80px; | |
| align-items: start; | |
| } | |
| .contact-desc { | |
| font-size: 1rem; | |
| font-weight: 300; | |
| color: var(--gray-light); | |
| line-height: 1.8; | |
| margin-bottom: 48px; | |
| } | |
| .contact-details { display: flex; flex-direction: column; gap: 24px; } | |
| .contact-item { display: flex; align-items: flex-start; gap: 16px; } | |
| .contact-icon { | |
| width: 40px; height: 40px; | |
| border: 1px solid rgba(201,169,110,0.2); | |
| border-radius: 50%; | |
| display: flex; align-items: center; justify-content: center; | |
| flex-shrink: 0; | |
| background: rgba(201,169,110,0.04); | |
| } | |
| .contact-label { | |
| display: block; | |
| font-size: 0.65rem; | |
| letter-spacing: 0.15em; | |
| text-transform: uppercase; | |
| color: var(--gold); | |
| margin-bottom: 4px; | |
| } | |
| .contact-value { | |
| display: block; | |
| font-size: 0.9rem; | |
| color: var(--white); | |
| font-weight: 300; | |
| } | |
| /* Form */ | |
| .contact-form-wrap { | |
| background: rgba(255,255,255,0.02); | |
| border: 1px solid rgba(255,255,255,0.06); | |
| border-radius: 8px; | |
| padding: 48px; | |
| } | |
| .contact-form { display: flex; flex-direction: column; gap: 24px; } | |
| .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; } | |
| .form-group { display: flex; flex-direction: column; gap: 8px; } | |
| .form-group label { | |
| font-size: 0.72rem; | |
| font-weight: 500; | |
| letter-spacing: 0.1em; | |
| text-transform: uppercase; | |
| color: var(--gray); | |
| } | |
| .form-group input, | |
| .form-group select, | |
| .form-group textarea { | |
| background: rgba(255,255,255,0.03); | |
| border: 1px solid rgba(255,255,255,0.08); | |
| border-radius: 4px; | |
| padding: 14px 16px; | |
| color: var(--white); | |
| font-size: 0.9rem; | |
| font-family: var(--font-sans); | |
| font-weight: 300; | |
| outline: none; | |
| transition: border-color 0.3s; | |
| appearance: none; | |
| width: 100%; | |
| } | |
| .form-group input::placeholder, | |
| .form-group textarea::placeholder { color: rgba(255,255,255,0.2); } | |
| .form-group input:focus, | |
| .form-group select:focus, | |
| .form-group textarea:focus { border-color: var(--gold); } | |
| .form-group select { color: rgba(255,255,255,0.6); } | |
| .form-group select option { background: var(--dark2); } | |
| .form-group textarea { resize: none; line-height: 1.6; } | |
| /* ── FOOTER ── */ | |
| .footer { padding: 80px 0 0; background: var(--dark); } | |
| .footer-top { | |
| display: flex; justify-content: space-between; gap: 60px; | |
| padding-bottom: 60px; | |
| border-bottom: 1px solid rgba(255,255,255,0.06); | |
| } | |
| .footer-brand { max-width: 280px; } | |
| .footer-logo { display: flex; flex-direction: column; line-height: 1; margin-bottom: 16px; } | |
| .footer-tagline { | |
| font-size: 0.875rem; | |
| font-weight: 300; | |
| color: var(--gray); | |
| line-height: 1.7; | |
| margin-bottom: 24px; | |
| } | |
| .footer-social { display: flex; gap: 12px; } | |
| .social-link { | |
| width: 36px; height: 36px; | |
| border: 1px solid rgba(255,255,255,0.1); | |
| border-radius: 50%; | |
| display: flex; align-items: center; justify-content: center; | |
| color: var(--gray); | |
| text-decoration: none; | |
| transition: border-color 0.3s, color 0.3s; | |
| } | |
| .social-link:hover { border-color: var(--gold); color: var(--gold); } | |
| .footer-links { display: flex; gap: 60px; } | |
| .footer-col { display: flex; flex-direction: column; gap: 12px; } | |
| .footer-col h4 { | |
| font-size: 0.7rem; | |
| font-weight: 600; | |
| letter-spacing: 0.2em; | |
| text-transform: uppercase; | |
| color: var(--white); | |
| margin-bottom: 4px; | |
| } | |
| .footer-col a, .footer-col span { | |
| font-size: 0.875rem; | |
| font-weight: 300; | |
| color: var(--gray); | |
| text-decoration: none; | |
| transition: color 0.3s; | |
| } | |
| .footer-col a:hover { color: var(--gold); } | |
| .footer-bottom { | |
| display: flex; justify-content: space-between; align-items: center; | |
| padding: 24px 0; | |
| font-size: 0.72rem; | |
| color: rgba(255,255,255,0.25); | |
| letter-spacing: 0.05em; | |
| } | |
| /* ── SCROLL ANIMATIONS ── */ | |
| .reveal { | |
| opacity: 0; | |
| transform: translateY(30px); | |
| transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); | |
| } | |
| .reveal.visible { | |
| opacity: 1; | |
| transform: translateY(0); | |
| } | |
| .reveal-delay-1 { transition-delay: 0.1s; } | |
| .reveal-delay-2 { transition-delay: 0.2s; } | |
| .reveal-delay-3 { transition-delay: 0.3s; } | |
| .reveal-delay-4 { transition-delay: 0.4s; } | |
| /* ── MOBILE MENU ── */ | |
| .mobile-menu { | |
| position: fixed; inset: 0; | |
| background: rgba(10,10,10,0.98); | |
| backdrop-filter: blur(30px); | |
| z-index: 999; | |
| display: flex; | |
| flex-direction: column; | |
| align-items: center; | |
| justify-content: center; | |
| gap: 32px; | |
| opacity: 0; | |
| visibility: hidden; | |
| transition: opacity 0.4s, visibility 0.4s; | |
| } | |
| .mobile-menu.open { opacity: 1; visibility: visible; } | |
| .mobile-menu a { | |
| font-family: var(--font-serif); | |
| font-size: 2.5rem; | |
| font-weight: 300; | |
| color: var(--white); | |
| text-decoration: none; | |
| letter-spacing: 0.05em; | |
| transition: color 0.3s; | |
| } | |
| .mobile-menu a:hover { color: var(--gold); } | |
| /* ── RESPONSIVE ── */ | |
| @media (max-width: 1100px) { | |
| .hero { padding: 120px 32px 80px; gap: 48px; } | |
| .hero-visual { max-width: 420px; } | |
| .about-grid { grid-template-columns: 1fr; gap: 60px; } | |
| .contact-grid { grid-template-columns: 1fr; gap: 48px; } | |
| } | |
| @media (max-width: 900px) { | |
| .hero { flex-direction: column; text-align: center; padding-top: 100px; } | |
| .hero-stats { justify-content: center; } | |
| .hero-actions { justify-content: center; } | |
| .hero-visual { max-width: 100%; } | |
| .hero-float-card { display: none; } | |
| .portfolio-grid { grid-template-columns: 1fr 1fr; } | |
| .portfolio-item.featured { grid-column: 1 / 3; } | |
| .testimonials-grid { grid-template-columns: 1fr; } | |
| .testimonial-card.featured { transform: none; } | |
| .process-steps { flex-wrap: wrap; } | |
| .process-connector { display: none; } | |
| .nav-links { display: none; } | |
| .nav-hamburger { display: flex; } | |
| .footer-top { flex-wrap: wrap; } | |
| .footer-links { flex-wrap: wrap; } | |
| } | |
| @media (max-width: 600px) { | |
| .container { padding: 0 20px; } | |
| .nav { padding: 20px 24px; } | |
| .portfolio-grid { grid-template-columns: 1fr; } | |
| .portfolio-item.featured { grid-column: 1; } | |
| .form-row { grid-template-columns: 1fr; } | |
| .hero-stats { flex-wrap: wrap; gap: 20px; } | |
| .stat-divider { display: none; } | |
| .featured-project { padding: 80px 24px; } | |
| .fp-details { flex-wrap: wrap; gap: 20px; } | |
| .contact-form-wrap { padding: 28px; } | |
| .awards-grid { gap: 24px; } | |
| } |