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

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

:root {
  --black: #111110;
  --charcoal: #1a1a19;
  --dark: #232321;
  --gold: #C8A96E;
  --gold-light: #dfc08e;
  --gold-dim: #8a7048;
  --white: #f5f3ef;
  --off-white: #ece9e3;
  --muted: #888880;
  --border: rgba(200,169,110,0.15);
  --border-light: rgba(255,255,255,0.08);
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { width: 100%; display: block; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 60px; height: 72px;
  background: rgba(17,17,16,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 0.5px solid var(--border);
}

.nav-logo {
  display: flex; align-items: center; gap: 14px;
}

.logo-mark {
  width: 40px; height: 40px; position: relative;
}

.logo-text-main {
  font-family: var(--font-body);
  font-size: 15px; font-weight: 500;
  letter-spacing: 5px;
  color: var(--white);
}

.logo-text-sub {
  font-family: var(--font-body);
  font-size: 8px; font-weight: 300;
  letter-spacing: 4px;
  color: var(--gold);
  display: block; margin-top: 2px;
}

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

.nav-links a {
  font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--muted); transition: color 0.2s;
}

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

.nav-cta {
  background: transparent;
  border: 0.5px solid var(--gold);
  color: var(--gold);
  padding: 9px 22px;
  font-family: var(--font-body);
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  cursor: pointer; transition: all 0.2s;
}

.nav-cta:hover { background: var(--gold); color: var(--black); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex; align-items: flex-end;
  padding: 0 60px 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1618221195710-dd6b41faaea6?w=1600&q=80');
  background-size: cover; background-position: center;
}

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(17,17,16,0.95) 0%, rgba(17,17,16,0.4) 50%, rgba(17,17,16,0.2) 100%);
}

.hero-content { position: relative; z-index: 1; max-width: 680px; }

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

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

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 300; line-height: 1.05;
  letter-spacing: -1px;
  margin-bottom: 24px;
}

.hero-title em {
  font-style: italic; color: var(--gold);
}

.hero-sub {
  font-size: 15px; font-weight: 300;
  color: rgba(245,243,239,0.65);
  max-width: 440px; margin-bottom: 40px;
  line-height: 1.8;
}

.hero-actions { display: flex; gap: 16px; align-items: center; }

.btn-primary {
  background: var(--gold); color: var(--black);
  padding: 14px 32px;
  font-family: var(--font-body); font-size: 12px;
  letter-spacing: 2px; text-transform: uppercase; font-weight: 500;
  border: none; cursor: pointer; transition: background 0.2s;
  display: inline-block;
}

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

.btn-ghost {
  color: var(--white); font-size: 12px; letter-spacing: 2px;
  text-transform: uppercase;
  display: flex; align-items: center; gap: 8px;
  transition: color 0.2s;
}

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

.btn-ghost::after { content: '→'; }

.hero-stats {
  position: absolute; right: 60px; bottom: 80px; z-index: 1;
  display: flex; flex-direction: column; gap: 28px; text-align: right;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 36px; font-weight: 300; color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--muted); margin-top: 4px;
}

/* ── SECTIONS ── */
section { padding: 100px 60px; }

.section-eyebrow {
  font-size: 10px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300; line-height: 1.15;
}

.section-title em { font-style: italic; color: var(--gold); }

/* ── SERVICES ── */
.services { background: var(--charcoal); }

.services-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 64px;
}

.services-intro {
  font-size: 15px; color: var(--muted); max-width: 320px;
  line-height: 1.8;
}

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

.service-card {
  background: var(--charcoal);
  padding: 48px 40px;
  border: none; transition: background 0.3s;
  cursor: default;
}

.service-card:hover { background: var(--dark); }

.service-num {
  font-family: var(--font-display);
  font-size: 48px; font-weight: 300;
  color: var(--border);
  line-height: 1; margin-bottom: 24px;
  transition: color 0.3s;
}

.service-card:hover .service-num { color: var(--gold-dim); }

.service-name {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 400;
  margin-bottom: 14px;
}

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

.service-tag {
  display: inline-block;
  margin-top: 20px;
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); border-bottom: 0.5px solid var(--gold);
  padding-bottom: 2px;
}

/* ── PROJECTS ── */
.projects { background: var(--black); }

.projects-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 48px;
}

.filter-tabs {
  display: flex; gap: 4px;
}

.filter-btn {
  background: transparent; border: 0.5px solid var(--border-light);
  color: var(--muted); padding: 8px 18px;
  font-family: var(--font-body); font-size: 11px;
  letter-spacing: 1.5px; text-transform: uppercase;
  cursor: pointer; transition: all 0.2s;
}

.filter-btn.active, .filter-btn:hover {
  border-color: var(--gold); color: var(--gold);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 12px;
}

.project-item {
  position: relative; overflow: hidden; cursor: pointer;
}

.project-item:nth-child(1) { grid-column: span 7; aspect-ratio: 16/10; }
.project-item:nth-child(2) { grid-column: span 5; aspect-ratio: 4/3; }
.project-item:nth-child(3) { grid-column: span 4; aspect-ratio: 4/3; }
.project-item:nth-child(4) { grid-column: span 4; aspect-ratio: 4/3; }
.project-item:nth-child(5) { grid-column: span 4; aspect-ratio: 4/3; }

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

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

.project-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(17,17,16,0.85) 0%, transparent 50%);
  opacity: 0; transition: opacity 0.3s;
  display: flex; align-items: flex-end;
  padding: 24px;
}

.project-item:hover .project-overlay { opacity: 1; }

.project-info-name {
  font-family: var(--font-display);
  font-size: 18px; font-weight: 400;
}

.project-info-meta {
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); margin-top: 4px;
}

/* ── CITIES ── */
.cities {
  background: var(--charcoal);
  padding: 80px 60px;
}

.cities-inner {
  display: flex; align-items: center; justify-content: space-between;
  border: 0.5px solid var(--border);
  padding: 60px;
}

.cities-label {
  font-size: 10px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--muted);
}

.cities-list {
  display: flex; gap: 60px;
}

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

.city-name {
  font-family: var(--font-display);
  font-size: 28px; font-weight: 300;
  color: var(--white);
}

.city-sub {
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); margin-top: 6px;
}

.cities-divider {
  width: 0.5px; height: 60px; background: var(--border);
}

/* ── ABOUT ── */
.about { background: var(--black); }

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

.about-img-wrap { position: relative; }

.about-img {
  width: 100%; aspect-ratio: 3/4;
  object-fit: cover;
}

.about-img-accent {
  position: absolute; bottom: -20px; right: -20px;
  width: 60%; aspect-ratio: 1;
  border: 0.5px solid var(--gold);
  pointer-events: none;
}

.about-content { padding-left: 20px; }

.about-body {
  font-size: 15px; color: var(--muted);
  line-height: 1.9; margin-top: 24px; margin-bottom: 40px;
}

.about-credentials {
  display: flex; flex-direction: column; gap: 16px;
  border-top: 0.5px solid var(--border);
  padding-top: 32px;
}

.credential {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px;
}

.credential-label { color: var(--muted); }
.credential-value { color: var(--gold); letter-spacing: 1px; }

/* ── CONTACT ── */
.contact { background: var(--charcoal); }

.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  margin-top: 60px;
}

.contact-info { display: flex; flex-direction: column; gap: 40px; }

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

.contact-block-value {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 300;
}

.contact-block-sub {
  font-size: 13px; color: var(--muted); margin-top: 4px;
}

.whatsapp-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: #25D366; color: #fff;
  padding: 14px 28px;
  font-family: var(--font-body); font-size: 13px; font-weight: 500;
  letter-spacing: 1px;
  margin-top: 8px; transition: opacity 0.2s;
}

.whatsapp-btn:hover { opacity: 0.88; }

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

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

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

.form-group label {
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--dark); border: 0.5px solid var(--border-light);
  color: var(--white); padding: 12px 16px;
  font-family: var(--font-body); font-size: 14px; font-weight: 300;
  outline: none; transition: border-color 0.2s;
  -webkit-appearance: none;
}

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

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

.form-submit {
  background: var(--gold); color: var(--black);
  border: none; padding: 14px 32px;
  font-family: var(--font-body); font-size: 12px;
  letter-spacing: 2px; text-transform: uppercase; font-weight: 500;
  cursor: pointer; transition: background 0.2s;
  align-self: flex-start;
}

.form-submit:hover { background: var(--gold-light); }

/* ── FOOTER ── */
footer {
  background: var(--black);
  border-top: 0.5px solid var(--border);
  padding: 48px 60px;
  display: flex; justify-content: space-between; align-items: center;
}

.footer-logo { display: flex; flex-direction: column; }

.footer-copy {
  font-size: 12px; color: var(--muted);
}

.footer-links {
  display: flex; gap: 32px; list-style: none;
}

.footer-links a {
  font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--muted); transition: color 0.2s;
}

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

/* ── MOBILE ── */
.hamburger { display: none; }

@media (max-width: 768px) {
  nav { padding: 0 24px; }
  section { padding: 64px 24px; }

  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: block; background: none; border: none; color: var(--white); font-size: 22px; cursor: pointer; }

  .hero { padding: 0 24px 60px; }
  .hero-stats { display: none; }

  .services-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .services-grid { grid-template-columns: 1fr; }

  .projects-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .projects-grid { grid-template-columns: 1fr; }
  .project-item:nth-child(n) { grid-column: span 1; aspect-ratio: 16/10; }

  .cities-inner { flex-direction: column; gap: 40px; padding: 40px 24px; }
  .cities-list { flex-wrap: wrap; gap: 32px; justify-content: center; }
  .cities-divider { display: none; }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-content { padding-left: 0; }

  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }

  footer { flex-direction: column; gap: 24px; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
}
