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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
/* ===== OBSIDIAN ARCHITECTS (LUXURY DARK) ===== */
.obsidian-page {
  background: #0d0d0d;
  color: #e5e5e5;
  font-family: 'Inter', sans-serif;
  min-height: 100vh;
}

.obsidian-container {
  position: relative;
}

.floating-nav {
  position: fixed;
  top: 2rem;
  left: 2rem;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.nav-orb {
  position: relative;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.orb-center {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #1a1a1a, #333);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #d4af37;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.brand-initial {
  font-size: 2rem;
  font-weight: bold;
  color: #d4af37;
}

.orb-ring {
  position: absolute;
  width: 80px;
  height: 80px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 50%;
  animation: rotate 10s linear infinite;
}

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

.nav-constellation {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.nav-star {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: #888;
  transition: all 0.3s ease;
  padding: 0.5rem;
}

.nav-star:hover {
  color: #d4af37;
}

.star-point {
  width: 8px;
  height: 8px;
  background: #888;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.nav-star:hover .star-point {
  background: #d4af37;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.star-label {
  font-size: 0.9rem;
  font-weight: 500;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.obsidian-main {
  margin-left: 120px;
}

.hero-obsidian {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 2rem;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.geometric-pattern {
  position: absolute;
  width: 100%;
  height: 100%;
}

.geo-shape {
  position: absolute;
  opacity: 0.1;
}

.triangle-1 {
  width: 0;
  height: 0;
  border-left: 100px solid transparent;
  border-right: 100px solid transparent;
  border-bottom: 173px solid #d4af37;
  top: 10%;
  right: 10%;
  animation: float 6s ease-in-out infinite;
}

.triangle-2 {
  width: 0;
  height: 0;
  border-left: 60px solid transparent;
  border-right: 60px solid transparent;
  border-bottom: 104px solid #d4af37;
  bottom: 20%;
  left: 15%;
  animation: float 8s ease-in-out infinite reverse;
}

.triangle-3 {
  width: 0;
  height: 0;
  border-left: 80px solid transparent;
  border-right: 80px solid transparent;
  border-bottom: 138px solid #d4af37;
  top: 60%;
  right: 30%;
  animation: float 7s ease-in-out infinite;
}

.circle-1 {
  width: 120px;
  height: 120px;
  border: 2px solid #d4af37;
  border-radius: 50%;
  top: 30%;
  left: 20%;
  animation: float 9s ease-in-out infinite;
}

.circle-2 {
  width: 80px;
  height: 80px;
  border: 2px solid #d4af37;
  border-radius: 50%;
  bottom: 30%;
  right: 20%;
  animation: float 5s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

.hero-content-obsidian {
  text-align: center;
  max-width: 800px;
  z-index: 1;
  position: relative;
}

.brand-showcase {
  margin-bottom: 3rem;
}

.obsidian-title {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 300;
  color: #e5e5e5;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.title-line {
  display: block;
}

.title-underline {
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #d4af37, transparent);
  margin: 0 auto;
}

.hero-statement {
  margin-bottom: 3rem;
}

.statement-text {
  font-size: 1.3rem;
  color: #bbb;
  line-height: 1.6;
  font-weight: 300;
}

.hero-metrics {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.metric-column {
  text-align: center;
}

.metric-number {
  font-size: 3rem;
  font-weight: bold;
  color: #d4af37;
  line-height: 1;
}

.metric-label {
  font-size: 0.9rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.metric-divider {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, #333, transparent);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.obsidian-btn {
  background: transparent;
  border: 2px solid #d4af37;
  color: #d4af37;
  padding: 1rem 2rem;
  font-family: inherit;
  font-size: 1rem;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.obsidian-btn.primary {
  background: #d4af37;
  color: #0d0d0d;
}

.obsidian-btn.large {
  padding: 1.5rem 3rem;
  font-size: 1.1rem;
}

.obsidian-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.btn-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.obsidian-btn:hover .btn-shine {
  left: 100%;
}

.vision-section,
.projects-section,
.studio-section,
.connect-section {
  padding: 6rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-intro {
  text-align: center;
  margin-bottom: 4rem;
}

.intro-marker {
  width: 60px;
  height: 2px;
  background: #d4af37;
  margin: 0 auto 2rem;
}

.section-title-obsidian {
  font-size: 2.5rem;
  font-weight: 300;
  color: #e5e5e5;
  margin-bottom: 1rem;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.philosophy-card {
  text-align: center;
  padding: 2rem;
  background: rgba(26, 26, 26, 0.5);
  border: 1px solid #333;
  transition: all 0.3s ease;
}

.philosophy-card.featured {
  border-color: #d4af37;
  background: rgba(212, 175, 55, 0.05);
}

.philosophy-card:hover {
  transform: translateY(-10px);
  border-color: #d4af37;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.card-icon {
  margin-bottom: 2rem;
}

.icon-shape {
  width: 60px;
  height: 60px;
  margin: 0 auto;
  border: 2px solid #d4af37;
}

.hexagon {
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.diamond {
  transform: rotate(45deg);
}

.octagon {
  clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
}

.card-title {
  font-size: 1.5rem;
  color: #e5e5e5;
  margin-bottom: 1rem;
  font-weight: 400;
}

.card-description {
  color: #bbb;
  line-height: 1.6;
}

.projects-showcase {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.project-feature {
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 2rem;
}

.project-visual {
  position: relative;
  overflow: hidden;
  background: #1a1a1a;
  min-height: 400px;
}

.project-image {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a1a1a, #333);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #666;
  margin-top:-22px;
}

.project-image.tower::before {
  content: '🏗️ ZENITH TOWER';
}

.project-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 2rem;
  color: white;
}

.project-name {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #d4af37;
}

.project-location,
.project-year {
  color: #ccc;
  margin-bottom: 0.25rem;
}

.project-details {
  background: rgba(26, 26, 26, 0.8);
  padding: 2rem;
  border: 1px solid #333;
}

.detail-stats {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: bold;
  color: #d4af37;
  display: block;
}

.stat-unit {
  font-size: 0.9rem;
  color: #888;
}

.project-description {
  color: #bbb;
  line-height: 1.6;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.project-card {
  position: relative;
  overflow: hidden;
  background: #1a1a1a;
  aspect-ratio: 1;
  transition: all 0.3s ease;
}

.project-card:hover {
  transform: scale(1.05);
}

.project-card .project-image {
  width: 100%;
  height: 100%;
}

.project-image.museum::before { content: '🏛️ MUSEUM'; }
.project-image.residence::before { content: '🏠 HOUSE'; }
.project-image.office::before { content: '🏢 OFFICE'; }
.project-image.pavilion::before { content: '🎪 PAVILION'; }

.project-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
  padding: 1rem;
  color: white;
}

.project-info h4 {
  color: #d4af37;
  margin-bottom: 0.25rem;
}

.project-type {
  font-size: 0.8rem;
  color: #888;
  text-transform: uppercase;
}

.team-constellation {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.architect-profile {
  background: rgba(26, 26, 26, 0.8);
  padding: 3rem;
  border: 1px solid #333;
}

.profile-frame {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto 2rem;
}

.profile-image {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #d4af37, #b8941f);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: bold;
  color: #0d0d0d;
}

.profile-ring {
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border: 2px solid rgba(212, 175, 55, 0.3);
  border-radius: 50%;
  animation: rotate 15s linear infinite;
}

.architect-name {
  font-size: 2rem;
  color: #e5e5e5;
  margin-bottom: 0.5rem;
  text-align: center;
}

.architect-title {
  color: #d4af37;
  text-align: center;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.architect-credentials {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.credential {
  background: rgba(212, 175, 55, 0.2);
  color: #d4af37;
  padding: 0.25rem 0.5rem;
  font-size: 0.8rem;
  border: 1px solid #d4af37;
}

.architect-bio {
  color: #bbb;
  line-height: 1.6;
  text-align: center;
}

.team-grid {
  display: grid;
  gap: 2rem;
}

.team-member {
  background: rgba(26, 26, 26, 0.5);
  padding: 2rem;
  border: 1px solid #333;
  text-align: center;
  transition: all 0.3s ease;
}

.team-member:hover {
  border-color: #d4af37;
  transform: translateY(-5px);
}

.member-avatar {
  width: 80px;
  height: 80px;
  margin: 0 auto 1rem;
}

.member-avatar .avatar-image {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #333, #555);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  color: #d4af37;
  border: 2px solid #d4af37;
}

.member-name {
  color: #e5e5e5;
  margin-bottom: 0.5rem;
}

.member-role {
  color: #d4af37;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.member-specialty {
  color: #888;
  font-size: 0.9rem;
}

.connect-section {
  background: rgba(26, 26, 26, 0.5);
  border-top: 1px solid #333;
}

.connect-container {
  max-width: 1000px;
  margin: 0 auto;
}

.connect-header {
  text-align: center;
  margin-bottom: 4rem;
}

.connect-title {
  font-size: 2.5rem;
  color: #e5e5e5;
  margin-bottom: 1rem;
  font-weight: 300;
}

.connect-subtitle {
  font-size: 1.2rem;
  color: #bbb;
  line-height: 1.6;
}

.connect-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.connect-method {
  background: rgba(0, 0, 0, 0.3);
  padding: 3rem;
  border: 1px solid #333;
  transition: all 0.3s ease;
}

.connect-method:hover {
  border-color: #d4af37;
  transform: translateY(-5px);
}

.method-icon-obsidian {
  width: 60px;
  height: 60px;
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-geometric {
  width: 40px;
  height: 40px;
  border: 2px solid #d4af37;
  transform: rotate(45deg);
}

.method-title {
  color: #e5e5e5;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  text-align: center;
}

.method-description {
  color: #bbb;
  margin-bottom: 2rem;
  text-align: center;
  line-height: 1.6;
}

.method-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.info-label {
  color: #888;
}

.info-value {
  color: #d4af37;
  text-align: right;
}

.connect-cta {
  text-align: center;
}
