@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700;900&display=swap');

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

body {
  font-family: 'Roboto', sans-serif;
  background-color: #0a0f1e;
  color: #f1f5f9;
}

.container {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ── Header ── */
header {
  background-color: #0a0f1e;
  border-bottom: 1px solid #1e3a5f;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  padding-bottom: 16px;
}

.logo {
  font-size: 22px;
  font-weight: 700;
  color: #f1f5f9;
  letter-spacing: 0.5px;
}

nav {
  display: flex;
  gap: 28px;
}

nav a {
  font-size: 16px;
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.2s;
}

nav a:hover {
  color: #f1f5f9;
}

/* ── Hero ── */
.hero {
  background: linear-gradient(135deg, #0a0f1e 0%, #111827 60%, #1a1530 100%);
  padding: 100px 0;
}

.hero-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}

.hero-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-text h1 {
  font-size: 52px;
  font-weight: 900;
  color: #f1f5f9;
  line-height: 1.05;
}

.hero-tagline {
  font-size: 16px;
  font-weight: 400;
  color: #991b1b;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.hero-bio {
  font-size: 18px;
  color: #94a3b8;
  line-height: 1.6;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.headshot {
  width: 100%;
  max-width: 340px;
  border-radius: 8px;
  border: 3px solid #1e3a5f;
  object-fit: cover;
  display: block;
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 4px;
  font-size: 15px;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  align-self: flex-start;
  transition: opacity 0.2s, background-color 0.2s;
}

.btn:hover {
  opacity: 0.85;
}

.btn-red {
  background-color: #991b1b;
  color: #ffffff;
  border: none;
}

.btn-outlined {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.btn-white {
  background-color: #ffffff;
  color: #0a0f1e;
  border: none;
}

.btn-outlined-card {
  background-color: transparent;
  color: #94a3b8;
  border: 1px solid #1e3a5f;
  font-weight: 400;
  font-size: 14px;
  padding: 8px 20px;
  align-self: flex-start;
}

.btn-outlined-card:hover {
  border-color: #991b1b;
  color: #f1f5f9;
  opacity: 1;
}

/* ── Services Section ── */
.services {
  background-color: #111827;
  padding: 80px 0;
}

.services h2,
.portfolio h2 {
  font-size: 36px;
  font-weight: 900;
  color: #f1f5f9;
  text-align: center;
  margin-bottom: 48px;
}

.service-cards {
  display: flex;
  gap: 24px;
  justify-content: center;
}

.service-card {
  flex: 1;
  background-color: #0a0f1e;
  border-top: 3px solid #991b1b;
  border-radius: 6px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-icon {
  font-size: 28px;
}

.service-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: #f1f5f9;
}

.service-card p {
  font-size: 14px;
  color: #94a3b8;
  line-height: 1.6;
}

/* ── Portfolio Section ── */
.portfolio {
  background-color: #0a0f1e;
  padding: 80px 0;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.portfolio-card {
  background-color: #111827;
  border: 1px solid #1e3a5f;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s;
}

.portfolio-card:hover {
  border-color: #991b1b;
}

.portfolio-thumb {
  width: 100%;
  height: 250px;
  object-fit: cover;
  background-color: #1e3a5f;
  display: block;
}

.japan-thumb {
  background: linear-gradient(135deg, #1a1a3e 0%, #2d1b4e 50%, #1e3a5f 100%);
}

.placeholder-thumb {
  background: linear-gradient(135deg, #111827 0%, #1e3a5f 100%);
  opacity: 0.5;
}

.portfolio-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.portfolio-tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #991b1b;
}

.portfolio-info h3 {
  font-size: 18px;
  font-weight: 700;
  color: #f1f5f9;
}

.portfolio-info p {
  font-size: 14px;
  color: #94a3b8;
  line-height: 1.6;
  flex: 1;
}

/* ── About Section ── */
.about {
  background-color: #111827;
  padding: 80px 0;
}

blockquote {
  max-width: 720px;
  margin: 0 auto 40px;
  border-left: 4px solid #991b1b;
  padding-left: 28px;
}

blockquote p {
  font-size: 24px;
  font-weight: 300;
  color: #e2e8f0;
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 16px;
}

blockquote cite {
  display: block;
  font-size: 15px;
  font-weight: 700;
  font-style: normal;
  color: #94a3b8;
}

.about-text {
  max-width: 720px;
  margin: 0 auto;
  padding-left: 32px;
}

.about-text p {
  font-size: 16px;
  color: #94a3b8;
  line-height: 1.7;
}

.about-text strong {
  color: #f1f5f9;
  font-weight: 700;
}

/* ── CTA / Contact Section ── */
.cta-section {
  background-color: #0a0f1e;
  padding: 64px 0;
}

.cta-box {
  background-color: #991b1b;
  border-radius: 8px;
  padding: 48px 52px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}

.cta-text h3 {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.cta-text p {
  font-size: 15px;
  color: #fca5a5;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
}

/* ── Footer ── */
footer {
  background-color: #0a0f1e;
  border-top: 1px solid #1e3a5f;
  padding: 24px 0;
}

footer p {
  font-size: 14px;
  color: #94a3b8;
  text-align: center;
}

/* ── Hamburger Button ── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 200;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #f1f5f9;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Responsive — 768px ── */
@media (max-width: 768px) {

  /* Header & Nav */
  .hamburger {
    display: flex;
  }

  header nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #0a0f1e;
    border-bottom: 1px solid #1e3a5f;
    padding: 16px 32px;
    gap: 16px;
  }

  header nav.nav-open {
    display: flex;
  }

  .header-inner {
    position: relative;
  }

  /* Hero */
  .hero {
    padding: 60px 0;
  }

  .hero-inner {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .hero-text {
    align-items: center;
  }

  .hero-text h1 {
    font-size: 36px;
  }

  .hero-bio {
    font-size: 16px;
  }

  .btn {
    align-self: center;
  }

  .headshot {
    max-width: 260px;
  }

  /* Services */
  .services {
    padding: 60px 0;
  }

  .services h2,
  .portfolio h2 {
    font-size: 28px;
    margin-bottom: 32px;
  }

  .service-cards {
    flex-direction: column;
    gap: 16px;
  }

  /* Portfolio */
  .portfolio {
    padding: 60px 0;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .portfolio-thumb {
    height: 200px;
  }

  /* About */
  .about {
    padding: 60px 0;
  }

  blockquote {
    padding-left: 20px;
  }

  blockquote p {
    font-size: 20px;
  }

  .about-text {
    padding-left: 24px;
  }

  /* CTA */
  .cta-section {
    padding: 48px 0;
  }

  .cta-box {
    flex-direction: column;
    text-align: center;
    padding: 32px 24px;
  }

  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .cta-buttons .btn {
    width: 100%;
    text-align: center;
  }
}
