@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Montserrat:wght@300;400;500;600&display=swap');

:root {
  --black: #1a1a1a;
  --dark: #f8f8f8;
  --card: #f2f2f2;
  --border: #e0e0e0;
  --blue: #2d5986;
  --blue-light: #4a7fb5;
  --white: #ffffff;
  --bg: #ffffff;
  --grey: #888;
  --text: #222;
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Montserrat', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--text); font-family: var(--font-body); font-weight: 300; font-size: 14px; letter-spacing: 0.03em; overflow-x: hidden; }

nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 24px 48px; display: flex; align-items: center; justify-content: space-between; background: rgba(255,255,255,0.95); border-bottom: 1px solid var(--border); transition: all 0.3s; }
nav.scrolled { padding: 16px 48px; box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
.nav-logo { font-family: var(--font-display); font-size: 22px; font-weight: 400; color: var(--text); text-decoration: none; letter-spacing: 0.08em; }
.nav-logo span { color: var(--blue); }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a { color: var(--grey); text-decoration: none; font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; transition: color 0.3s; }
.nav-links a:hover, .nav-links a.active { color: var(--blue); }

.hero { min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr; align-items: center; padding: 120px 48px 80px; gap: 80px; position: relative; overflow: hidden; background: var(--white); }
.hero::before { content: ''; position: absolute; top: -200px; right: -200px; width: 600px; height: 600px; background: radial-gradient(circle, rgba(45,89,134,0.05) 0%, transparent 70%); pointer-events: none; }
.hero-text { animation: fadeUp 1s ease forwards; }
.hero-eyebrow { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--blue); margin-bottom: 24px; display: flex; align-items: center; gap: 12px; }
.hero-eyebrow::before { content: ''; width: 40px; height: 1px; background: var(--blue); }
.hero-title { font-family: var(--font-display); font-size: clamp(56px, 8vw, 96px); font-weight: 300; line-height: 1.0; margin-bottom: 32px; color: var(--black); }
.hero-title em { font-style: italic; color: var(--blue); }
.hero-desc { font-size: 13px; line-height: 1.9; color: var(--grey); max-width: 420px; margin-bottom: 48px; }
.btn { display: inline-block; padding: 14px 36px; border: 1px solid var(--blue); color: var(--blue); text-decoration: none; font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; transition: all 0.3s; font-family: var(--font-body); cursor: pointer; }
.btn:hover { background: var(--blue); color: white; }
.btn-solid { background: var(--blue); color: white; }
.btn-solid:hover { background: var(--blue-light); border-color: var(--blue-light); }
.hero-image { position: relative; animation: fadeIn 1.2s ease forwards; }
.hero-image img { width: 100%; height: 600px; object-fit: cover; display: block; }
.hero-image::before { content: ''; position: absolute; top: -12px; left: -12px; right: 12px; bottom: 12px; border: 1px solid var(--blue); opacity: 0.2; z-index: -1; }

section { padding: 100px 48px; }
.section-label { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--blue); margin-bottom: 16px; display: flex; align-items: center; gap: 12px; }
.section-label::before { content: ''; width: 30px; height: 1px; background: var(--blue); }
.section-title { font-family: var(--font-display); font-size: clamp(36px, 5vw, 60px); font-weight: 300; line-height: 1.1; margin-bottom: 24px; color: var(--black); }
.section-title em { font-style: italic; color: var(--blue); }
.section-desc { color: var(--grey); line-height: 1.9; max-width: 560px; margin-bottom: 48px; }

.projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.project-card { position: relative; overflow: hidden; cursor: pointer; text-decoration: none; display: block; }
.project-card img { width: 100%; height: 380px; object-fit: cover; display: block; transition: transform 0.6s ease, filter 0.6s ease; filter: brightness(0.85); }
.project-card:hover img { transform: scale(1.05); filter: brightness(0.5); }
.project-overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 32px 28px; background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%); }
.project-category { font-size: 9px; letter-spacing: 0.25em; text-transform: uppercase; color: #aac4e0; margin-bottom: 8px; }
.project-name { font-family: var(--font-display); font-size: 24px; font-weight: 400; color: white; }
.project-arrow { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%) scale(0); width: 50px; height: 50px; border: 1px solid white; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 18px; transition: transform 0.4s ease; }
.project-card:hover .project-arrow { transform: translate(-50%, -50%) scale(1); }

.about { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-image img { width: 100%; height: 580px; object-fit: cover; display: block; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 48px; padding-top: 48px; border-top: 1px solid var(--border); }
.stat-number { font-family: var(--font-display); font-size: 48px; font-weight: 300; color: var(--blue); line-height: 1; }
.stat-label { font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--grey); margin-top: 8px; }

.photo-grid { columns: 3; column-gap: 4px; }
.photo-grid img { width: 100%; margin-bottom: 4px; display: block; transition: filter 0.4s; }
.photo-grid img:hover { filter: brightness(0.85); }

.page-hero { padding: 160px 48px 80px; text-align: center; position: relative; background: var(--white); }
.page-hero::after { content: ''; position: absolute; bottom: 0; left: 48px; right: 48px; height: 1px; background: var(--border); }

.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 4px; }
.gallery-grid img { width: 100%; height: 300px; object-fit: cover; display: block; transition: filter 0.4s, transform 0.5s; cursor: zoom-in; }
.gallery-grid img:hover { filter: brightness(0.85); transform: scale(1.02); z-index: 1; position: relative; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-item { display: flex; flex-direction: column; gap: 6px; margin-bottom: 36px; padding-bottom: 36px; border-bottom: 1px solid var(--border); }
.contact-item-label { font-size: 9px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--blue); }
.contact-item-value { font-family: var(--font-display); font-size: 20px; color: var(--text); }
.contact-item-value a { color: var(--text); text-decoration: none; transition: color 0.3s; }
.contact-item-value a:hover { color: var(--blue); }
form { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--grey); }
.form-group input, .form-group textarea { background: var(--card); border: 1px solid var(--border); color: var(--text); padding: 14px 16px; font-family: var(--font-body); font-size: 13px; font-weight: 300; outline: none; transition: border-color 0.3s; resize: none; }
.form-group input:focus, .form-group textarea:focus { border-color: var(--blue); }
.form-group textarea { height: 140px; }

footer { padding: 48px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; background: var(--white); }
.footer-logo { font-family: var(--font-display); font-size: 18px; color: var(--text); text-decoration: none; }
.footer-logo span { color: var(--blue); }
.footer-tagline { font-size: 11px; color: var(--grey); letter-spacing: 0.05em; font-style: italic; font-family: var(--font-display); }
.footer-copy { font-size: 10px; color: var(--border); letter-spacing: 0.1em; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

@media (max-width: 768px) {
  nav { padding: 20px 24px; } .nav-links { display: none; }
  .hero { grid-template-columns: 1fr; padding: 100px 24px 60px; gap: 40px; }
  .hero-image { display: none; } section { padding: 60px 24px; }
  .projects-grid { grid-template-columns: 1fr; } .about { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; } footer { flex-direction: column; gap: 16px; text-align: center; padding: 32px 24px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); } .photo-grid { columns: 2; }
  .page-hero { padding: 120px 24px 60px; }
}
