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

body {
  font-family: Georgia, 'Times New Roman', serif;
  background: #D6DCE1;
  color: #1a1a2e;
  min-height: 100vh;
}

/* ── HEADER & NAV ── */
header {
  background: #f0ede8;
  padding: 28px 0 0;
  text-align: center;
  border-bottom: 0px solid #ccc;
}

.site-title {
  font-family: Georgia, serif;
  font-size: 52px;
  font-weight: 700;
  color: #6b7a99;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

nav {
  display: flex;
  align-items: center;
}

.hamburger {
  padding: 10px 18px;
  cursor: pointer;
  font-size: 20px;
  color: #444;
  background: none;
  border: none;
  line-height: 1;
}

.nav-links {
  display: flex;
}

.nav-links a {
  display: block;
  padding: 10px 24px;
  font-family: Georgia, serif;
  font-size: 15px;
  color: #222;
  text-decoration: unset;
  cursor: pointer;
  transition: background 0.15s;
}

.nav-links a.active {
  background: #bfc8d4;
}

.nav-links a:hover {
  background: #c8d0d8;
}

/* ── FOOTER ── */
footer {
  text-align: center;
  padding: 24px;
}

/* ── SOCIAL ICONS ── */
.social-icons {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #6b7a99;
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
}

.social-icon:hover {
  background: #4a5568;
}

/* ── REEL PAGE ── */
.reel-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 48px 20px 20px;
  min-height: auto;
}

.reel-embed {
  width: 100%;
  max-width: 1080px;
  aspect-ratio: 16 / 9;
  background: #4a5568;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.reel-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
  position: absolute;
  top: 0;
  left: 0;
}

.reel-placeholder {
  color: #fff;
  font-family: Georgia, serif;
  font-size: 28px;
  letter-spacing: 3px;
  text-align: center;
}

/* ── PROJECTS PAGE ── */
.projects-wrapper {
  padding: 48px 40px;
  min-height: calc(100vh - 130px);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  max-width: 960px;
  margin: 0 auto 40px;
}

.project-card {
  aspect-ratio: 4 / 3;
  background: #4a5568;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  position: relative;
  overflow: hidden;
}

.project-card:hover {
  background: #3d4a5c;
  transform: scale(1.02);
}

.project-card span {
  color: #fff;
  font-family: Georgia, serif;
  font-size: 13px;
  letter-spacing: 2px;
  text-align: center;
  padding: 8px;
}

.project-card .play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s;
  color: #fff;
  font-size: 14px;
}

.project-card:hover .play-icon {
  opacity: 1;
}

/* ── CONTACT PAGE ── */
.contact-wrapper {
  padding: 48px 40px;
  min-height: calc(100vh - 130px);
}

.contact-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 48px;
  max-width: 960px;
  margin: 0 auto;
  align-items: start;
}

.contact-photo {
  width: 100%;
  aspect-ratio: 1;
  background: #0f172a;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 18px;
  font-weight: bold;
}

.contact-right h2 {
  font-family: Georgia, serif;
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 24px;
  color: #1a1a2e;
}

.contact-box {
  background: #c8d0d9;
  border: 1px solid #b0b8c4;
  border-radius: 4px;
  padding: 28px 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 32px;
}

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

.form-field {
  display: flex;
  flex-direction: column;
}

.form-field label {
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: bold;
  margin-bottom: 6px;
  color: #1a1a2e;
}

.form-field input,
.form-field textarea {
  background: transparent;
  border: none;
  border-bottom: 1.5px solid #6b7a99;
  padding: 4px 0;
  font-size: 14px;
  font-family: Arial, sans-serif;
  color: #1a1a2e;
  outline: none;
  resize: none;
}

.form-field input:focus,
.form-field textarea:focus {
  border-bottom-color: #1a1a2e;
}

.contact-btn {
  background: #1a1a2e;
  color: #fff;
  border: none;
  border-radius: 24px;
  padding: 12px 28px;
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  letter-spacing: 1px;
  margin-top: 8px;
  transition: background 0.2s;
  width: fit-content;
}

.contact-btn:hover {
  background: #2d2d50;
}

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

.info-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.info-block .info-label {
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: bold;
  color: #1a1a2e;
}

.info-block .info-value {
  font-family: Arial, sans-serif;
  font-size: 13px;
  color: #333;
}

.contact-info-section .social-icons {
  justify-content: flex-start;
  margin-top: 8px;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .site-title {
    font-size: 32px;
    letter-spacing: 2px;
  }

  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-box {
    grid-template-columns: 1fr;
  }
}
