:root {
  --navy: #0d1b2a;
  --steel: #1e3a5f;
  --gold: #c9a84c;
  --cream: #f7f3ee;
  --white: #ffffff;
  --grey: #6b7280;
  --light: #e8e2d9;
}

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

html { scroll-behavior: smooth; }

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

/* ── NAV ── */
nav {
  position: fixed; top: 0; width: 100%; z-index: 100;
  background: var(--navy);
  display: flex; justify-content: space-between; align-items: center;
  padding: 0 60px;
  height: 72px;
  border-bottom: 2px solid var(--gold);
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 700;
  color: var(--white); letter-spacing: 0.04em;
  text-decoration: none;
  display: flex; align-items: center;
}
.nav-logo span { color: var(--gold); }
.nav-logo img { height: 50px; width: auto; display: block; }
.nav-burger {
  display: none; background: none; border: none;
  color: var(--gold); font-size: 1.9rem; line-height: 1;
  cursor: pointer; padding: 4px 6px;
}
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  color: rgba(255,255,255,0.75);
  text-decoration: none; font-size: 0.85rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a.active { color: var(--gold); }
.nav-cta {
  background: var(--gold) !important; color: var(--navy) !important;
  padding: 10px 22px; font-weight: 500;
  border-radius: 2px;
}
.nav-phone {
  color: var(--gold) !important;
  font-weight: 500; font-size: 0.9rem !important;
}

/* ── BUTTONS ── */
.btn-primary {
  background: var(--gold); color: var(--navy);
  padding: 16px 32px; font-size: 0.9rem; font-weight: 500;
  letter-spacing: 0.05em; text-decoration: none;
  border-radius: 2px; transition: all 0.25s;
  display: inline-block; border: none; cursor: pointer;
}
.btn-primary:hover { background: #e0bb58; transform: translateY(-1px); }
.btn-ghost {
  border: 1.5px solid rgba(255,255,255,0.3); color: var(--white);
  padding: 16px 32px; font-size: 0.9rem;
  text-decoration: none; border-radius: 2px;
  transition: all 0.25s; display: inline-block;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

/* ── HERO (home) ── */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center;
  padding-top: 72px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 50%; height: 100%;
  background: linear-gradient(135deg, var(--steel) 0%, #0a1628 100%);
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0% 100%);
}
.hero-text { padding: 80px 60px 80px 80px; position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,0.15); border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold); padding: 6px 14px;
  font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase;
  border-radius: 2px; margin-bottom: 32px;
}
.hero-badge::before { content: '●'; font-size: 0.5rem; }
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  line-height: 1.15; font-weight: 900;
  color: var(--white); margin-bottom: 24px;
}
.hero h1 em { color: var(--gold); font-style: normal; }
.hero-sub {
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem; line-height: 1.7;
  max-width: 440px; margin-bottom: 44px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-credentials {
  display: flex; gap: 32px; margin-top: 56px;
  padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.1);
}
.cred-item { text-align: left; }
.cred-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem; font-weight: 700; color: var(--gold);
}
.cred-label {
  font-size: 0.75rem; color: rgba(255,255,255,0.5);
  text-transform: uppercase; letter-spacing: 0.08em; margin-top: 2px;
}
.hero-image {
  position: relative; z-index: 2;
  padding: 80px 80px 80px 40px;
  display: flex; flex-direction: column; gap: 16px;
}
.hero-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px; padding: 28px 32px;
  backdrop-filter: blur(10px);
}
.hero-card-icon { font-size: 1.8rem; margin-bottom: 12px; }
.hero-card h3 { color: var(--white); font-size: 1rem; font-weight: 500; margin-bottom: 6px; }
.hero-card p { color: rgba(255,255,255,0.5); font-size: 0.85rem; line-height: 1.5; }
.hero-card.highlight { background: var(--gold); border-color: var(--gold); }
.hero-card.highlight h3 { color: var(--navy); }
.hero-card.highlight p { color: rgba(13,27,42,0.7); }

/* ── PAGE HEADER (inner pages) ── */
.page-header {
  background: var(--navy);
  padding: 140px 80px 70px;
  position: relative; overflow: hidden;
  border-bottom: 2px solid var(--gold);
}
.page-header::before {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 45%; height: 100%;
  background: linear-gradient(135deg, var(--steel) 0%, #0a1628 100%);
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
  opacity: 0.7;
}
.page-header-inner { position: relative; z-index: 2; max-width: 760px; }
.page-header .section-label { color: var(--gold); }
.page-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900; color: var(--white);
  line-height: 1.15; margin-bottom: 18px;
}
.page-header h1 em { color: var(--gold); font-style: normal; }
.page-header p { color: rgba(255,255,255,0.65); font-size: 1.05rem; line-height: 1.7; max-width: 560px; }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--white);
  padding: 24px 80px;
  display: flex; gap: 48px; align-items: center; justify-content: center;
  border-bottom: 1px solid var(--light);
  flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.82rem; color: var(--grey);
  font-weight: 500; letter-spacing: 0.03em;
}
.trust-item span { font-size: 1.1rem; }

/* ── SECTION WRAPPER ── */
section { padding: 100px 80px; }
.section-label {
  font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); font-weight: 500; margin-bottom: 16px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700; line-height: 1.2; margin-bottom: 20px;
}
.section-sub { color: var(--grey); font-size: 1rem; line-height: 1.7; max-width: 560px; }

/* ── SERVICES GRID ── */
.services { background: var(--white); }
.services-header { margin-bottom: 60px; }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
  background: var(--light);
}
.service-card {
  background: var(--white); padding: 40px 36px;
  position: relative; overflow: hidden; transition: all 0.3s;
}
.service-card::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 3px; background: var(--gold); transition: width 0.3s;
}
.service-card:hover { background: var(--cream); }
.service-card:hover::after { width: 100%; }
.service-icon {
  width: 52px; height: 52px;
  background: rgba(201,168,76,0.12);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; margin-bottom: 24px;
}
.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; font-weight: 700; margin-bottom: 12px;
}
.service-card p { color: var(--grey); font-size: 0.9rem; line-height: 1.65; }

/* ── WHY US ── */
.why { background: var(--cream); }
.why-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: start; margin-top: 60px;
}
.why-points { display: flex; flex-direction: column; gap: 40px; }
.why-point { display: flex; gap: 24px; }
.why-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem; font-weight: 900;
  color: var(--light); line-height: 1; flex-shrink: 0; min-width: 60px;
}
.why-content h3 { font-size: 1.05rem; font-weight: 500; margin-bottom: 8px; }
.why-content p { color: var(--grey); font-size: 0.9rem; line-height: 1.65; }
.why-panel {
  background: var(--navy); color: var(--white);
  padding: 48px; border-radius: 4px; position: relative; overflow: hidden;
}
.why-panel::before {
  content: '"'; position: absolute; top: -20px; left: 30px;
  font-family: 'Playfair Display', serif;
  font-size: 12rem; color: rgba(201,168,76,0.08); line-height: 1;
}
.why-panel blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem; line-height: 1.6;
  font-style: italic; margin-bottom: 28px; position: relative; z-index: 1;
}
.why-panel cite { font-style: normal; font-size: 0.85rem; color: var(--gold); display: block; }
.why-panel .stars { color: var(--gold); font-size: 1rem; margin-bottom: 20px; letter-spacing: 2px; }

/* ── TESTIMONIALS ── */
.testimonials { background: var(--navy); }
.testimonials .section-title { color: var(--white); }
.testimonials .section-label { color: var(--gold); }
.testimonials .section-sub { color: rgba(255,255,255,0.5); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 60px; }
.testi-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px; padding: 36px 32px; transition: all 0.3s;
}
.testi-card:hover { background: rgba(255,255,255,0.09); border-color: rgba(201,168,76,0.3); }
.testi-stars { color: var(--gold); margin-bottom: 20px; font-size: 0.85rem; }
.testi-text { color: rgba(255,255,255,0.8); font-size: 0.95rem; line-height: 1.7; margin-bottom: 28px; font-style: italic; }
.testi-author { color: var(--gold); font-size: 0.85rem; font-weight: 500; }
.testi-role { color: rgba(255,255,255,0.35); font-size: 0.8rem; margin-top: 2px; }

/* ── PROCESS ── */
.process { background: var(--white); }
.process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; margin-top: 60px; position: relative;
}
.process-steps::before {
  content: ''; position: absolute;
  top: 36px; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent); z-index: 0;
}
.step { text-align: center; padding: 0 24px; position: relative; z-index: 1; }
.step-num {
  width: 72px; height: 72px;
  border-radius: 50%; background: var(--navy);
  color: var(--gold); font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px; border: 3px solid var(--gold);
}
.step h3 { font-size: 1rem; font-weight: 500; margin-bottom: 10px; }
.step p { color: var(--grey); font-size: 0.85rem; line-height: 1.6; }

/* ── ABOUT PAGE ── */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center;
}
.about-portrait {
  background: linear-gradient(135deg, var(--steel) 0%, var(--navy) 100%);
  border-radius: 6px; min-height: 460px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.4); font-size: 0.9rem; text-align: center;
  border: 1px solid var(--light); position: relative; overflow: hidden;
}
.about-portrait img { width: 100%; height: 100%; object-fit: cover; }
.about-body p { color: var(--grey); font-size: 1rem; line-height: 1.8; margin-bottom: 20px; }
.about-body p strong { color: var(--navy); }
.creds-list {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px 28px; margin-top: 32px;
  list-style: none;
}
.creds-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.9rem; color: var(--navy); font-weight: 500;
}
.creds-list li::before { content: '◆'; color: var(--gold); font-size: 0.7rem; }

/* ── PROJECTS PAGE ── */
.projects-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 60px;
}
.project-card {
  background: var(--white); border: 1px solid var(--light);
  border-radius: 6px; overflow: hidden; transition: all 0.3s;
}
.project-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(13,27,42,0.1); }
.project-thumb {
  height: 200px; background: linear-gradient(135deg, var(--steel) 0%, var(--navy) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.4rem; color: rgba(201,168,76,0.6);
}
.project-thumb img { width: 100%; height: 100%; object-fit: cover; }
.project-info { padding: 26px 28px; }
.project-tag {
  font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin-bottom: 10px;
}
.project-info h3 { font-family: 'Playfair Display', serif; font-size: 1.15rem; margin-bottom: 8px; }
.project-info p { color: var(--grey); font-size: 0.88rem; line-height: 1.6; }
a.project-card { text-decoration: none; color: inherit; display: block; }
.project-view { margin-top: 14px; color: var(--gold); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.04em; }

/* ── REVIEWS PAGE ── */
.reviews-stats {
  display: flex; gap: 56px; flex-wrap: wrap; align-items: center;
  background: var(--white); border: 1px solid var(--light);
  border-radius: 6px; padding: 32px 40px; margin-bottom: 50px;
}
.rs-item .rs-num {
  font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 700; color: var(--navy);
}
.rs-item .rs-num .stars { color: var(--gold); }
.rs-item .rs-label { font-size: 0.8rem; color: var(--grey); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 2px; }
.reviews-grid { column-count: 3; column-gap: 24px; }
.review-card {
  background: var(--white); border: 1px solid var(--light); border-radius: 6px;
  padding: 28px 30px; margin-bottom: 24px; break-inside: avoid;
}
.review-card .stars { color: var(--gold); font-size: 0.95rem; letter-spacing: 2px; margin-bottom: 16px; }
.rc-text { color: var(--navy); font-size: 0.95rem; line-height: 1.65; margin-bottom: 20px; }
.rc-author { font-weight: 600; color: var(--navy); font-size: 0.95rem; }
.rc-sub { color: var(--grey); font-size: 0.82rem; margin-top: 2px; }
.rc-verified { display: inline-flex; align-items: center; gap: 5px; margin-top: 12px; font-size: 0.72rem; color: var(--steel); font-weight: 600; }
.rc-verified::before { content: '✔'; color: var(--gold); }

/* ── PROJECT DETAIL PAGE ── */
.pd-top { display: grid; grid-template-columns: 1.3fr 1fr; gap: 56px; align-items: start; }
.pd-hero-img { width: 100%; border-radius: 6px; border: 1px solid var(--light); display: block; }
.pd-body { }
.pd-back { display: inline-block; margin-bottom: 18px; color: var(--gold); text-decoration: none; font-size: 0.82rem; letter-spacing: 0.05em; font-weight: 600; }
.pd-back:hover { text-decoration: underline; }
.pd-body p { color: var(--grey); font-size: 1rem; line-height: 1.8; margin-bottom: 18px; }
.pd-meta { background: var(--white); border: 1px solid var(--light); border-radius: 6px; padding: 32px 34px; }
.pd-meta .row { padding: 14px 0; border-bottom: 1px solid var(--light); }
.pd-meta .row:first-child { padding-top: 0; }
.pd-meta .row:last-child { border-bottom: none; padding-bottom: 0; }
.pd-meta .k { font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 5px; }
.pd-meta .v { font-size: 1rem; color: var(--navy); font-weight: 500; }
.pd-gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 24px; }
.pd-gallery img { width: 100%; border-radius: 6px; border: 1px solid var(--light); display: block; }

/* ── CONTACT PAGE ── */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: start;
}
.contact-info-block { margin-bottom: 36px; }
.contact-info-block .label {
  font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin-bottom: 8px;
}
.contact-info-block a, .contact-info-block p {
  color: var(--navy); font-size: 1.15rem; text-decoration: none; font-weight: 500;
}
.contact-info-block a:hover { color: var(--gold); }
.contact-form { background: var(--white); padding: 44px; border-radius: 6px; border: 1px solid var(--light); }
.contact-form label {
  display: block; font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--grey); font-weight: 600; margin-bottom: 8px; margin-top: 22px;
}
.contact-form label:first-of-type { margin-top: 0; }
.contact-form input, .contact-form textarea {
  width: 100%; padding: 14px 16px; font-family: inherit; font-size: 0.95rem;
  border: 1px solid var(--light); border-radius: 3px; background: var(--cream);
  color: var(--navy); transition: border-color 0.2s;
}
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--gold); }
.contact-form textarea { resize: vertical; min-height: 130px; }
.contact-form button { margin-top: 28px; width: 100%; }

/* ── CTA ── */
.cta-band {
  background: linear-gradient(135deg, var(--steel) 0%, var(--navy) 100%);
  padding: 80px;
  display: grid; grid-template-columns: 1fr auto;
  align-items: center; gap: 60px;
}
.cta-band h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  color: var(--white); line-height: 1.3; margin-bottom: 12px;
}
.cta-band p { color: rgba(255,255,255,0.55); font-size: 0.95rem; }
.cta-actions { display: flex; gap: 16px; flex-direction: column; align-items: center; }
.cta-note { color: rgba(255,255,255,0.35); font-size: 0.78rem; }

/* ── FOOTER ── */
footer {
  background: #07111c; color: rgba(255,255,255,0.5);
  padding: 48px 80px; font-size: 0.82rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
footer a { color: var(--gold); text-decoration: none; }
.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1rem; color: var(--white); margin-bottom: 4px;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-text > * { animation: fadeUp 0.7s ease both; }
.hero-badge { animation-delay: 0.1s; }
.hero h1 { animation-delay: 0.2s; }
.hero-sub { animation-delay: 0.35s; }
.hero-actions { animation-delay: 0.5s; }
.hero-credentials { animation-delay: 0.65s; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  nav { padding: 0 24px; }
  .nav-burger { display: block; }
  .nav-links {
    display: none;
    position: absolute; top: 72px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--navy);
    padding: 8px 24px 18px;
    border-bottom: 2px solid var(--gold);
    box-shadow: 0 12px 24px rgba(0,0,0,0.25);
  }
  nav.open .nav-links { display: flex; }
  .nav-links a {
    padding: 14px 4px; width: 100%;
    font-size: 0.95rem; border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .nav-links a:last-child { border-bottom: none; }
  .nav-cta { text-align: center; margin-top: 12px; }
  .hero { grid-template-columns: 1fr; }
  .hero::before { display: none; }
  .hero-text { padding: 60px 24px 40px; }
  .hero-image { padding: 0 24px 60px; }
  section { padding: 60px 24px; }
  .page-header { padding: 110px 24px 50px; }
  .page-header::before { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .testi-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 40px; }
  .process-steps::before { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .creds-list { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .pd-top { grid-template-columns: 1fr; gap: 32px; }
  .pd-gallery { grid-template-columns: 1fr; }
  .reviews-grid { column-count: 1; }
  .reviews-stats { gap: 32px; padding: 24px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .cta-band { grid-template-columns: 1fr; }
  footer { flex-direction: column; align-items: flex-start; }
  .trust-bar { padding: 24px; gap: 24px; }
}
