/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream: #FAF7F2;
  --dark: #2B2620;
  --dark2: #3D362C;
  --gold: #B8915A;
  --gold-light: #D4B483;
  --text: #3A3A2E;
  --text-muted: #7A7568;
  --white: #FFFFFF;
  --section-dark: #F0EAE0;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}

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

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250,247,242,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(184,145,90,0.2);
}

.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 32px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1;
}

.logo-img {
  height: 60px;
  width: auto;
  display: block;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-main {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 3px;
}

.logo-sub {
  font-size: 8px;
  font-weight: 300;
  color: rgba(200,169,110,0.6);
  letter-spacing: 2.5px;
  margin-top: 2px;
}

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

.nav-links a {
  color: rgba(58,58,46,0.75);
  text-decoration: none;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color 0.2s;
}

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

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--cream);
  padding: 16px 32px 24px;
  border-top: 1px solid rgba(184,145,90,0.15);
}

.mobile-menu.open { display: flex; }

.mm-link {
  color: rgba(58,58,46,0.8);
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 12px 0;
  border-bottom: 1px solid rgba(184,145,90,0.15);
  transition: color 0.2s;
}

.mm-link:last-child { border-bottom: none; }
.mm-link:hover { color: var(--gold); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: var(--cream);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 32px 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(184,145,90,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184,145,90,0.08) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 80% at 60% 50%, rgba(184,145,90,0.1) 0%, transparent 70%);
}

.hero-content {
  max-width: 1140px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 900;
  line-height: 1.0;
  color: var(--dark);
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
}

.hero-title .accent { color: var(--gold); }

.line {
  display: block;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.7s ease forwards;
}

.line:nth-child(1) { animation-delay: 0.2s; }
.line:nth-child(2) { animation-delay: 0.4s; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.hero-desc {
  max-width: 520px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(58,58,46,0.7);
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.6s forwards;
}

.hero-highlight {
  color: var(--gold);
  font-weight: 600;
}

.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px 36px;
  border: 2px solid var(--gold);
  transition: all 0.3s;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.8s forwards;
}

.btn-primary:hover {
  background: transparent;
  color: var(--gold);
}

.hero-badge {
  position: absolute;
  right: 80px;
  bottom: 80px;
  z-index: 2;
  width: 100px;
  height: 100px;
  border: 1px solid rgba(200,169,110,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  animation: fadeUp 0.7s ease 1s forwards;
}

.badge-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}

.badge-num {
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
}

.badge-year {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--cream);
}

/* ===== ABOUT ===== */
.about {
  padding: 120px 0;
  background: var(--cream);
}

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

.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.section-label.light { color: var(--gold); }
.section-label.light::before { background: var(--gold); }

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--dark);
}

.section-title.light { color: var(--dark); }

.about-text {
  font-size: 15px;
  line-height: 1.85;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.about-stats {
  display: flex;
  gap: 48px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(200,169,110,0.25);
}

.stat-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 900;
  color: var(--dark);
  line-height: 1;
}

.stat-pct {
  font-size: 18px;
  margin-left: 2px;
}

.stat-label {
  display: block;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 8px;
}

/* ===== SERVICES ===== */
.services {
  padding: 120px 0;
  background: var(--section-dark);
}

.services .section-title {
  margin-bottom: 60px;
  color: var(--dark);
}

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

.service-card {
  background: var(--white);
  border: 1px solid rgba(184,145,90,0.2);
  padding: 40px 32px;
  position: relative;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  border-color: rgba(184,145,90,0.5);
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(58,58,46,0.08);
}

.service-card.featured {
  background: rgba(184,145,90,0.06);
  border-color: rgba(184,145,90,0.4);
}

.service-icon {
  width: 48px;
  height: 48px;
  color: var(--gold);
  margin-bottom: 24px;
}

.service-icon svg {
  width: 100%;
  height: 100%;
}

.service-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
}

.service-desc {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-muted);
}

.service-tag {
  display: inline-block;
  margin-top: 20px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(184,145,90,0.4);
  padding: 5px 12px;
}

/* ===== PROJECTS ===== */
.projects {
  padding: 120px 0;
  background: var(--cream);
}

.projects .section-title {
  margin-bottom: 60px;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.project-card {
  display: flex;
  flex-direction: column;
}

.project-img {
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid rgba(184,145,90,0.2);
  margin-bottom: 20px;
  background: var(--white);
}

.project-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

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

.project-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.project-loc {
  font-size: 13px;
  letter-spacing: 1px;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* ===== CONTACT ===== */
.contact {
  padding: 120px 0;
  background: var(--cream);
}

.contact-centered {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.section-label.center {
  justify-content: center;
}

.section-title.center {
  text-align: center;
}

.contact-desc.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.contact-desc {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-top: 20px;
  margin-bottom: 48px;
}

.contact-info-row {
  display: flex;
  justify-content: center;
  gap: 64px;
  flex-wrap: wrap;
}

.contact-item { display: flex; flex-direction: column; gap: 8px; align-items: center; }

.contact-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}

.contact-val {
  font-size: 15px;
  color: var(--text);
  line-height: 1.6;
}

.contact-link {
  text-decoration: none;
  transition: color 0.2s;
}

.contact-link:hover {
  color: var(--gold);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  padding: 48px 0;
  border-top: 1px solid rgba(200,169,110,0.15);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.footer-address,
.footer-copy {
  font-size: 13px;
  color: rgba(245,240,232,0.35);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .services-grid { grid-template-columns: 1fr; }
  .hero-badge { display: none; }
  .contact-info-row { gap: 40px; }
}

@media (max-width: 600px) {
  .projects-grid { grid-template-columns: 1fr; }
  .container { padding: 0 20px; }
  .hero { padding: 100px 20px 60px; }
  .about,
  .services,
  .contact { padding: 80px 0; }
}
