:root {
  --gold: #c9a84c;
  --gold-light: #e8d5a3;
  --cream: #f5f0e8;
  --dark: #0e0c09;
  --charcoal: #1c1a16;
  --mid: #2e2b24;
  --text-muted: #8a846f;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Tenor Sans", sans-serif;
  background: var(--dark);
  color: var(--cream);
  cursor: none;
  overflow-x: hidden;
}
.cursor {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition:
    width 0.3s,
    height 0.3s;
  mix-blend-mode: difference;
}
.cursor-ring {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition:
    left 0.12s,
    top 0.12s,
    width 0.3s,
    height 0.3s;
  opacity: 0.6;
}
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 28px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(201, 168, 76, 0.12);
  background: rgba(14, 12, 9, 0.88);
  backdrop-filter: blur(20px);
}
.nav-logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 0.22em;
  color: var(--gold-light);
  text-transform: uppercase;
}
.nav-logo span {
  color: var(--gold);
  font-weight: 600;
}
.nav-links {
  display: flex;
  gap: 44px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: var(--cream);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.7;
  transition:
    opacity 0.3s,
    color 0.3s;
}
.nav-links a:hover {
  opacity: 1;
  color: var(--gold);
}
.nav-cta {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 10px 24px;
  border: 1px solid var(--gold);
  color: var(--gold);
  text-decoration: none;
  transition:
    background 0.3s,
    color 0.3s;
}
.nav-cta:hover {
  background: var(--gold);
  color: var(--dark);
}
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 140px 60px 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 60% 80% at 70% 50%,
      rgba(201, 168, 76, 0.06) 0%,
      transparent 70%
    ),
    linear-gradient(135deg, #0e0c09 0%, #1a1710 50%, #0e0c09 100%);
}
.hero-line {
  position: absolute;
  left: 60px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--gold) 30%,
    var(--gold) 70%,
    transparent
  );
  opacity: 0.25;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}
.hero-tag {
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.8;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.hero-tag::before {
  content: "";
  width: 40px;
  height: 1px;
  background: var(--gold);
}
.hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(58px, 7vw, 100px);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 32px;
  animation: fadeUp 1.2s ease both;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-desc {
  font-size: 15px;
  line-height: 1.8;
  opacity: 0.6;
  max-width: 460px;
  margin-bottom: 52px;
  animation: fadeUp 1.2s 0.2s ease both;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 32px;
  animation: fadeUp 1.2s 0.4s ease both;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 40px;
  background: var(--gold);
  color: var(--dark);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  font-family: "Tenor Sans", sans-serif;
  transition:
    background 0.3s,
    transform 0.2s;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}
.btn-ghost {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.6;
  text-decoration: none;
  transition: opacity 0.3s;
  display: flex;
  align-items: center;
  gap: 10px;
}
.btn-ghost:hover {
  opacity: 1;
}
.btn-ghost::after {
  content: "";
  width: 24px;
  height: 1px;
  background: currentColor;
}
.hero-stats {
  position: absolute;
  right: 120px;
  bottom: 60px;
  display: flex;
  gap: 48px;
}
.stat {
  text-align: center;
}
.stat-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 42px;
  font-weight: 300;
  color: var(--gold);
  display: block;
}
.stat-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.4;
}
.hero-scroll {
  position: absolute;
  right: 60px;
  bottom: 60px;
  writing-mode: vertical-rl;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.5;
  display: flex;
  align-items: center;
  gap: 16px;
}
.hero-scroll::after {
  content: "";
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2s infinite;
}
.marquee-wrap {
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  padding: 18px 0;
  overflow: hidden;
  background: rgba(201, 168, 76, 0.03);
}
.marquee-track {
  display: flex;
  animation: marquee 25s linear infinite;
  white-space: nowrap;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 32px;
  padding: 0 40px;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.5;
}
.marquee-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.5;
}
section {
  padding: 120px 60px;
}
.section-tag {
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.section-tag::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--gold);
}
.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 300;
  line-height: 1.1;
}
.section-title em {
  font-style: italic;
  color: var(--gold-light);
}
.services {
  background: var(--charcoal);
}
.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 80px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.service-card {
  background: var(--mid);
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
  transition: background 0.4s;
}
.service-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}
.service-card:hover {
  background: #252219;
}
.service-card:hover::before {
  transform: scaleX(1);
}
.service-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 72px;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.12;
  position: absolute;
  top: 24px;
  right: 32px;
  line-height: 1;
}
.service-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 32px;
  color: var(--gold);
}
.service-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 20px;
}
.service-card p {
  font-size: 14px;
  line-height: 1.8;
  opacity: 0.5;
  margin-bottom: 36px;
}
.service-link {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: gap 0.3s;
}
.service-link::after {
  content: "→";
  font-size: 14px;
}
.service-card:hover .service-link {
  gap: 20px;
}
.projects {
  background: var(--dark);
}
.projects-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
}
.projects-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: auto auto;
  gap: 2px;
}
.project-card {
  position: relative;
  overflow: hidden;
}
.project-card:first-child {
  grid-row: span 2;
}
.project-placeholder {
  width: 100%;
  height: 100%;
  transition: transform 0.7s ease;
}
.proj-p1 {
  min-height: 580px;
  background: linear-gradient(135deg, #1a1710 0%, #2a2318 40%, #1c1a14 100%);
}
.proj-p2 {
  min-height: 280px;
  background: linear-gradient(135deg, #201e17 0%, #2e2a1e 100%);
}
.proj-p3 {
  min-height: 280px;
  background: linear-gradient(135deg, #181610 0%, #24211a 100%);
}
.project-card:hover .project-placeholder {
  transform: scale(1.04);
}
.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14, 12, 9, 0.9) 0%, transparent 50%);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.project-cat {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.project-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  font-weight: 300;
  margin-bottom: 12px;
}
.project-desc {
  font-size: 13px;
  opacity: 0.5;
}
.process {
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}
.process-header {
  text-align: center;
  margin-bottom: 80px;
}
.process-header .section-tag {
  justify-content: center;
}
.process-header .section-tag::before {
  display: none;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
}
.process-steps::before {
  content: "";
  position: absolute;
  top: 32px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: linear-gradient(
    to right,
    var(--gold) 0%,
    rgba(201, 168, 76, 0.3) 100%
  );
}
.process-step {
  padding: 0 32px;
  text-align: center;
}
.step-num {
  width: 64px;
  height: 64px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 300;
  color: var(--gold);
  background: var(--charcoal);
  position: relative;
  z-index: 1;
}
.step-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 16px;
}
.step-desc {
  font-size: 13px;
  line-height: 1.8;
  opacity: 0.45;
}
.testimonials {
  background: var(--dark);
}
.testi-header {
  margin-bottom: 64px;
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.testi-card {
  background: var(--charcoal);
  padding: 48px 40px;
  border-top: 2px solid transparent;
  transition: border-color 0.3s;
}
.testi-card:hover {
  border-color: var(--gold);
}
.testi-quote {
  font-family: "Cormorant Garamond", serif;
  font-size: 64px;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.2;
  line-height: 0.6;
  margin-bottom: 24px;
}
.testi-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.7;
  opacity: 0.8;
  margin-bottom: 32px;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 16px;
}
.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--mid);
  border: 1px solid rgba(201, 168, 76, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  color: var(--gold);
}
.testi-name {
  font-size: 13px;
  letter-spacing: 0.1em;
}
.testi-loc {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
}
.cta-section {
  background: var(--charcoal);
  padding: 140px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 80% 60% at 50% 50%,
    rgba(201, 168, 76, 0.06) 0%,
    transparent 70%
  );
}
.cta-section .section-title {
  font-size: clamp(44px, 6vw, 80px);
  margin-bottom: 24px;
}
.cta-section p {
  font-size: 15px;
  opacity: 0.5;
  line-height: 1.8;
  max-width: 480px;
  margin: 0 auto 52px;
}
.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.contact {
  background: var(--dark);
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-info p {
  font-size: 15px;
  opacity: 0.5;
  line-height: 1.8;
  margin-bottom: 48px;
  margin-top: 24px;
}
.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.detail-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.detail-label {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
}
.detail-val {
  font-size: 15px;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-label {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
}
.form-input,
.form-select,
.form-textarea {
  background: var(--charcoal);
  border: 1px solid rgba(201, 168, 76, 0.2);
  color: var(--cream);
  padding: 16px 20px;
  font-family: "Tenor Sans", sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s;
  width: 100%;
  appearance: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold);
}
.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(245, 240, 232, 0.25);
}
.form-textarea {
  resize: vertical;
  min-height: 120px;
}
.form-select {
  color: rgba(245, 240, 232, 0.5);
}
.form-select option {
  background: var(--charcoal);
  color: var(--cream);
}
.btn-submit {
  padding: 18px 40px;
  background: var(--gold);
  color: var(--dark);
  font-family: "Tenor Sans", sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  align-self: flex-start;
  transition:
    background 0.3s,
    transform 0.2s;
}
.btn-submit:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}
footer {
  background: var(--charcoal);
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  padding: 60px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 0.2em;
  color: var(--gold-light);
}
.footer-copy {
  font-size: 11px;
  letter-spacing: 0.1em;
  opacity: 0.35;
}
.footer-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.footer-links a {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.4;
  text-decoration: none;
  transition: opacity 0.3s;
}
.footer-links a:hover {
  opacity: 1;
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes scrollLine {
  0%,
  100% {
    opacity: 0;
    transform: scaleY(0);
    transform-origin: top;
  }
  50% {
    opacity: 1;
    transform: scaleY(1);
    transform-origin: top;
  }
}
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 768px) {
  nav {
    padding: 20px 24px;
  }
  .nav-links,
  .nav-cta {
    display: none;
  }
  section {
    padding: 80px 24px;
  }
  .hero {
    padding: 120px 24px 80px;
  }
  .hero h1 {
    font-size: 52px;
  }
  .services-grid,
  .testi-grid,
  .process-steps {
    grid-template-columns: 1fr;
  }
  .projects-grid {
    grid-template-columns: 1fr;
  }
  .project-card:first-child {
    grid-row: span 1;
  }
  .proj-p1,
  .proj-p2,
  .proj-p3 {
    min-height: 260px;
  }
  .process-steps::before {
    display: none;
  }
  .contact-inner,
  .form-row {
    grid-template-columns: 1fr;
  }
  .hero-stats {
    display: none;
  }
  .footer-inner {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }
  .services-header,
  .projects-header {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
}
