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

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: #050b14;
  color: #f5f5f5;
  line-height: 1.6;
}

/* Colors */
:root {
  --navy: #050b14;
  --navy-soft: #101828;
  --gold: #d7b56d;
  --gold-soft: #c79a3a;
  --text-main: #f5f5f5;
  --text-muted: #d0d4e0;
}

/* Layout */
.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
  padding: 2.5rem 0;
}

.page-section {
  padding: 3.5rem 0 4.5rem;
}

/* Header / Nav (non-sticky) */
.site-header {
  background: rgba(5, 11, 20, 0.98);
  border-bottom: 1px solid rgba(215, 181, 109, 0.2);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo-mark {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.logo-top {
  height: 6px;
  width: 80px;
  border-radius: 20px;
  background: linear-gradient(90deg, var(--gold), #f5e1aa);
  position: relative;
  overflow: hidden;
}

.logo-top::after {
  content: "";
  position: absolute;
  right: -20px;
  top: -6px;
  width: 60px;
  height: 20px;
  background: var(--gold);
  transform: skewX(-20deg);
}

.logo-text-main {
  letter-spacing: 0.4rem;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  font-size: 1.1rem;
}

.logo-text-sub {
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.15rem;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  font-size: 0.95rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12rem;
  font-size: 0.8rem;
}

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

/* Hero */
.hero {
  padding: 4.5rem 0 5rem;
  background: radial-gradient(circle at top, rgba(215, 181, 109, 0.07), transparent 55%),
              radial-gradient(circle at bottom, rgba(0, 0, 0, 0.65), transparent 60%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

.hero-kicker {
  text-transform: uppercase;
  color: var(--gold);
  letter-spacing: 0.18rem;
  font-size: 0.73rem;
  margin-bottom: 0.9rem;
}

.hero-title {
  font-size: clamp(2rem, 3vw + 1rem, 2.8rem);
  font-weight: 500;
  margin-bottom: 1rem;
}

.hero-sub {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.hero-tags {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.8rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.14rem;
  text-decoration: none;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: #151515;
}

.btn-outline {
  border-color: rgba(215, 181, 109, 0.6);
  color: var(--text-main);
  background: transparent;
}

.btn-primary:hover {
  filter: brightness(1.07);
}

.btn-outline:hover {
  background: rgba(215, 181, 109, 0.1);
}

.hero-card {
  background: radial-gradient(circle at top left, rgba(215, 181, 109, 0.12), transparent 60%);
  border-radius: 18px;
  padding: 1.6rem 1.6rem 1.8rem;
  border: 1px solid rgba(215, 181, 109, 0.18);
}

.hero-card-title {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.18rem;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}

.hero-card-main {
  font-size: 0.95rem;
}

/* Typography utils */
.section-label {
  text-transform: uppercase;
  letter-spacing: 0.18rem;
  font-size: 0.75rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: 1.7rem;
  margin-bottom: 0.8rem;
}

.section-intro {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 620px;
}

/* About */
.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: 3rem;
}

.about-main p + p {
  margin-top: 0.9rem;
}

.team-list {
  margin-top: 1.2rem;
  list-style: none;
  font-size: 0.93rem;
}

.team-list li + li {
  margin-top: 0.6rem;
}

.team-name {
  font-weight: 600;
}

.team-role {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.4fr);
  gap: 2rem;
}

.service-item {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 1.2rem;
  margin-bottom: 1.6rem;
}

.service-thumb {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  background: linear-gradient(135deg, #7b5124, #c99252);
  overflow: hidden;
}

.service-title h1 {
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 0.3rem;
}

.service-text {
  font-size: 0.9rem;
  color: var(--text-muted);
}
.portfolio-item {
  background: none;
}


.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;


  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 2.5rem;
}

.contact-card {
  background: radial-gradient(circle at top, rgba(215, 181, 109, 0.18), transparent 65%);
  border-radius: 18px;
  padding: 1.8rem;
  border: 1px solid rgba(215, 181, 109, 0.3);
}

.contact-name {
  font-size: 1.2rem;
  margin-bottom: 0.2rem;
}

.contact-role {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.contact-line {
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
}

/* form */
.form-field {
  margin-bottom: 1rem;
}

.form-label {
  display: block;
  font-size: 0.8rem;
  margin-bottom: 0.3rem;
  text-transform: uppercase;
  letter-spacing: 0.12rem;
  color: var(--text-muted);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border-radius: 10px;
  border: 1px solid #283347;
  background: #050b14;
  color: var(--text-main);
  font-size: 0.9rem;
}

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

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

/* Footer */
.site-footer {
  border-top: 1px solid rgba(215, 181, 109, 0.15);
  padding: 1.4rem 0 2rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-grid,
  .about-layout,
  .services-grid,
  .contact-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero {
    padding-top: 3.2rem;
  }

  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .service-item {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }
}
