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

:root {
  --black: #0a0a0a;
  --white: #ffffff;
  --cream: #faf8f5;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --accent: #c8a97e;
  --accent-dark: #b08d5f;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  line-height: 1.7;
  background: var(--white);
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

img {
  max-width: 100%;
  display: block;
}

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 16px 60px;
  box-shadow: 0 1px 0 var(--gray-200);
}

.navbar-logo {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.5px;
}

.navbar.scrolled .navbar-logo {
  color: var(--black);
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.navbar-links a {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
}

.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.navbar-links a:hover::after,
.navbar-links a.active::after {
  width: 100%;
}

.navbar-links a:hover,
.navbar-links a.active {
  color: var(--white);
}

.navbar.scrolled .navbar-links a {
  color: var(--gray-500);
}

.navbar.scrolled .navbar-links a:hover,
.navbar.scrolled .navbar-links a.active {
  color: var(--black);
}

.navbar-cta {
  font-size: 14px;
  font-weight: 500;
  color: var(--white) !important;
  background: var(--accent);
  padding: 10px 24px;
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.navbar-cta:hover {
  background: var(--accent-dark);
}

.navbar-cta::after {
  display: none !important;
}

/* Mobile Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s ease;
}

.navbar.scrolled .menu-toggle span {
  background: var(--black);
}

/* ===== HERO ===== */
.hero {
  height: 100vh;
  min-height: 700px;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  opacity: 0.8;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 40px;
}

.hero-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
}

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

.hero-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.6);
  max-width: 600px;
  margin: 0 auto 40px;
  font-weight: 300;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--accent-dark);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.05);
}

.btn-dark {
  background: var(--black);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--gray-800);
}

/* ===== SECTIONS ===== */
.section {
  padding: 120px 60px;
}

.section-dark {
  background: var(--black);
  color: var(--white);
}

.section-cream {
  background: var(--cream);
}

.section-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--gray-500);
  max-width: 560px;
  font-weight: 300;
}

.section-dark .section-subtitle {
  color: rgba(255, 255, 255, 0.5);
}

/* ===== GRID LAYOUTS ===== */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

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

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

/* ===== CARDS ===== */
.card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: all 0.4s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.card-image {
  width: 100%;
  height: 280px;
  background: var(--gray-100);
  overflow: hidden;
}

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

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

.card-body {
  padding: 28px;
}

.card-tag {
  font-size: 11px;
  font-weight: 500;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.card-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 12px;
  line-height: 1.3;
}

.card-text {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ===== STATS ===== */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-item {
  padding: 40px 20px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 400;
  color: var(--accent);
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== SERVICES ===== */
.service-item {
  padding: 40px 0;
  border-bottom: 1px solid var(--gray-200);
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 32px;
  align-items: start;
}

.service-item:last-child {
  border-bottom: none;
}

.service-number {
  font-family: var(--font-heading);
  font-size: 32px;
  color: var(--accent);
  font-weight: 400;
}

.service-title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 12px;
}

.service-desc {
  font-size: 15px;
  color: var(--gray-500);
  max-width: 500px;
}

.service-arrow {
  font-size: 24px;
  color: var(--gray-400);
  transition: all 0.3s ease;
  cursor: pointer;
}

.service-item:hover .service-arrow {
  color: var(--accent);
  transform: translateX(4px);
}

/* ===== TEAM ===== */
.team-card {
  text-align: center;
}

.team-avatar {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--gray-100);
  margin: 0 auto 24px;
  overflow: hidden;
}

.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-name {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 4px;
}

.team-role {
  font-size: 14px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.team-bio {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ===== TESTIMONIALS ===== */
.testimonial-card {
  padding: 48px;
  background: var(--white);
  border: 1px solid var(--gray-200);
}

.testimonial-quote {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 32px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 600;
  font-size: 16px;
}

.testimonial-name {
  font-weight: 500;
  font-size: 15px;
}

.testimonial-company {
  font-size: 13px;
  color: var(--gray-500);
}

/* ===== BLOG ===== */
.blog-card {
  border: none;
  padding: 0;
}

.blog-date {
  font-size: 13px;
  color: var(--gray-400);
  margin-bottom: 12px;
}

.blog-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 12px;
  line-height: 1.4;
}

.blog-excerpt {
  font-size: 15px;
  color: var(--gray-500);
  margin-bottom: 20px;
}

.blog-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.blog-link:hover {
  gap: 12px;
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  color: var(--gray-700);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 14px 0;
  border: none;
  border-bottom: 1px solid var(--gray-300);
  font-size: 16px;
  font-family: var(--font-body);
  background: transparent;
  outline: none;
  transition: border-color 0.3s ease;
}

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

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

.contact-info-item {
  margin-bottom: 40px;
}

.contact-info-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.contact-info-value {
  font-size: 18px;
  color: var(--gray-800);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 80px 60px 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 16px;
}

.footer-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
  max-width: 300px;
  line-height: 1.7;
}

.footer-heading {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 24px;
  color: var(--accent);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
}

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

.footer-bottom {
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

.footer-social {
  display: flex;
  gap: 20px;
}

.footer-social a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
}

.footer-social a:hover {
  color: var(--accent);
}

/* ===== PAGE HEADER ===== */
.page-header {
  padding: 160px 60px 80px;
  background: var(--black);
  color: var(--white);
}

.page-header-title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 400;
  margin-bottom: 16px;
}

.page-header-subtitle {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.5);
  max-width: 500px;
  font-weight: 300;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .navbar { padding: 16px 30px; }
  .section { padding: 80px 30px; }
  .page-header { padding: 120px 30px 60px; }
  .footer { padding: 60px 30px 30px; }
  .grid-2 { gap: 40px; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .service-item { grid-template-columns: 40px 1fr; }
  .service-arrow { display: none; }
}

@media (max-width: 768px) {
  .navbar-links { display: none; }
  .menu-toggle { display: flex; }
  .navbar-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: var(--black);
    justify-content: center;
    align-items: center;
    gap: 24px;
    z-index: 999;
  }
  .navbar-links.open a {
    font-size: 20px;
    color: var(--white) !important;
  }
  .hero-title { font-size: 36px; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .service-item { grid-template-columns: 1fr; gap: 12px; }
  .service-number { font-size: 20px; }
}

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

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

/* ===== FEATURED WORK IMAGE ===== */
.featured-work-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.featured-work-item:hover .featured-work-image img {
  transform: scale(1.03);
}

/* ===== FEATURE WORK ===== */
.featured-work-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 0;
  border-bottom: 1px solid var(--gray-200);
}

.featured-work-item:last-child {
  border-bottom: none;
}

.featured-work-item.reverse {
  direction: rtl;
}

.featured-work-item.reverse > * {
  direction: ltr;
}

.featured-work-image {
  height: 400px;
  background: var(--gray-100);
  overflow: hidden;
}

.featured-work-tag {
  font-size: 11px;
  font-weight: 500;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.featured-work-title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 16px;
}

.featured-work-desc {
  font-size: 15px;
  color: var(--gray-500);
  margin-bottom: 24px;
  line-height: 1.7;
}

.featured-work-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.featured-work-link:hover {
  gap: 12px;
}

/* ===== PROCESS ===== */
.process-item {
  text-align: center;
  padding: 40px 24px;
}

.process-number {
  font-family: var(--font-heading);
  font-size: 48px;
  color: var(--accent);
  margin-bottom: 20px;
  opacity: 0.5;
}

.process-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 12px;
}

.process-desc {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.7;
}
