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

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
  --cream:       #f8f6f1;
  --cream-dark:  #f0ebe0;
  --ink:         #1a1612;
  --ink-light:   #6b6760;
  --gold:        #c9a84c;
  --gold-light:  #f0e8cc;
  --border:      #ddd9d0;
  --white:       #ffffff;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family:'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--ink);
    font-size: 16px;
    line-height: 1.7;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

.gold-line {
    width: 40px;
    height: 2px;
    background: var(--gold);
    margin-bottom: 24px;
    border-radius: 2px;
}

.section-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
    display: block;
}

nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(248, 246, 241, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 0.5px solid var(--border);
}

nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--ink);
    text-decoration: none;
    letter-spacing: -0.01em;
}

.nav-logo span {
    color: var(--gold);
}

.nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
}

.nav-links a {
    font-size: 13px;
    font-weight: 400;
    color: var(--ink-light);
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: color 0.2s;
}

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

.nav-cta {
    font-size: 13px;
    font-weight: 500;
    padding: 9px 20px;
    background:var(--ink);
    color: var(--cream) !important;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s;
}

.nav-cta:hover {
    background: #2e2822;
}

#hero {
    padding: 60px 0 100px;
    border-bottom: 0.5px solid var(--border)
}

.hero-inner {
    display: flex;
    gap: 48px;
    align-items: flex-start;
}

.hero-content {
    flex: 1;
}

.hero-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 5px 14px;
    background: var(--gold-light);
    color: #8a6a1f;
    border-radius: 20px;
    margin-bottom: 28px;
    border: 0.5px solid #c9a84c44;
}

.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 46px;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.hero h1 .gold {
    color: var(--gold)
}

.hero-sub {
    font-size: 16px;
    font-weight: 300;
    color: var(--ink-light);
    line-height: 1.75;
    margin-bottom: 40px;
    max-width: 420px;
}

.btn-row {
  display: flex;
  gap: 12px;
}

.btn-primary {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  padding: 13px 28px;
  background: var(--ink);
  color: var(--cream);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
}

.btn-primary:hover {
  background: #2e2822;
}

.btn-secondary {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  padding: 13px 28px;
  background: transparent;
  color: var(--ink);
  border: 0.5px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.2s;
}

.btn-secondary:hover {
  border-color: var(--gold);
}

.hero-cards {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.card-dark {
  grid-column: 1 / -1;
  background: var(--ink);
  border-radius: 12px;
  padding: 28px;
  border: 0.5px solid var(--ink);
}

.card-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.5;
  font-style: italic;
  margin-bottom: 10px;
}

.card-ref {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

.card-stat {
  background: var(--white);
  border: 0.5px solid var(--border);
  border-radius: 12px;
  padding: 24px;
}

.stat-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}

.stat-label {
  font-size: 13px;
  font-weight: 300;
  color: var(--ink-light);
  line-height: 1.6;
}

#services {
  padding: 60px 0;
  border-bottom: 0.5px solid var(--border);
}

.services-header {
  margin-bottom: 60px;
}

.services-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  max-width: 500px;
}

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

.service-card {
  background: var(--white);
  border: 0.5px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  transition: border-color 0.2s, transform 0.2s;
}

.service-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}

.service-card h3 {
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--ink);
}

.service-card p {
  font-size: 14px;
  font-weight: 300;
  color: var(--ink-light);
  line-height: 1.7;
}

#projects {
  padding: 60px 0;
  border-bottom: 0.5px solid var(--border);
}

.projects-header {
  margin-bottom: 60px;
}

.projects-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.project-card {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
  padding: 48px 0;
  border-top: 0.5px solid var(--border);
}

.project-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px;
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1;
}

.project-tag {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 12px;
}

.project-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.project-content p {
  font-size: 15px;
  font-weight: 300;
  color: var(--ink-light);
  line-height: 1.75;
}

#contact {
  padding: 60px 0;
}

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

.contact-left h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}

.contact-left p {
  font-size: 15px;
  font-weight: 300;
  color: var(--ink-light);
  line-height: 1.75;
}

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

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

.form-group label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-light);
}

.form-group input,
.form-group textarea {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 300;
  padding: 12px 16px;
  border: 0.5px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

.form-group textarea {
  height: 120px;
  resize: vertical;
}

.contact-form .btn-primary {
  width: fit-content;
}

footer {
  border-top: 0.5px solid var(--border);
  padding: 20px 0;
}

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

.footer-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
}

.footer-name span {
  color: var(--gold);
}

.footer-copy {
  font-size: 12px;
  font-weight: 300;
  color: var(--ink-light);
}

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

section {
  scroll-margin-top: 80px;
}

.honeypot {
  display: none;
}

@media (max-width: 768px) {
  
  nav .container {
    height: auto;
    padding: 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .nav-links {
    gap: 16px;
    flex-wrap: wrap;
  }

  .hero-inner {
    flex-direction: column;
    gap: 40px;
  }

  .hero-cards {
    width: 100%;
  }

  .hero h1 {
    font-size: 36px;
  }

  #hero {
    padding: 40px 0 60px;
  }

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

  .services-header h2 {
    font-size: 32px;
  }

  .project-card {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 32px 0;
  }

  .project-number {
    font-size: 40px;
  }

  .projects-header h2 {
    font-size: 32px;
  }

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

  .contact-left h2 {
    font-size: 32px;
  }

  section {
    scroll-margin-top: 120px;
  }
}